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

33077 строки
831 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. "lucent-nargacuga": {
  1468. name: "Lucent Nargacuga",
  1469. parents: ["monster-hunter"]
  1470. },
  1471. "monster-hunter": {
  1472. name: "Monster Hunter",
  1473. parents: ["monster"]
  1474. },
  1475. }
  1476. //species
  1477. function getSpeciesInfo(speciesList) {
  1478. let result = new Set();
  1479. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1480. result.add(entry)
  1481. });
  1482. return Array.from(result);
  1483. };
  1484. function getSpeciesInfoHelper(species) {
  1485. if (!speciesData[species]) {
  1486. console.warn(species + " doesn't exist");
  1487. return [];
  1488. }
  1489. if (speciesData[species].parents) {
  1490. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1491. } else {
  1492. return [species];
  1493. }
  1494. }
  1495. characterMakers.push(() => makeCharacter(
  1496. {
  1497. name: "Fen",
  1498. species: ["crux"],
  1499. description: {
  1500. title: "Bio",
  1501. text: "Very furry. Sheds on everything."
  1502. },
  1503. tags: [
  1504. "anthro",
  1505. "goo"
  1506. ]
  1507. },
  1508. {
  1509. back: {
  1510. height: math.unit(2.2428, "meter"),
  1511. weight: math.unit(124.738, "kg"),
  1512. name: "Back",
  1513. image: {
  1514. source: "./media/characters/fen/back.svg",
  1515. extra: 2024 / 1867,
  1516. bottom: 13 / 2037
  1517. },
  1518. info: {
  1519. description: {
  1520. mode: "append",
  1521. text: "\n\nHe is not currently looking at you."
  1522. }
  1523. }
  1524. },
  1525. full: {
  1526. height: math.unit(1.34, "meter"),
  1527. weight: math.unit(225, "kg"),
  1528. name: "Full",
  1529. image: {
  1530. source: "./media/characters/fen/full.svg"
  1531. },
  1532. info: {
  1533. description: {
  1534. mode: "append",
  1535. text: "\n\nMunch."
  1536. }
  1537. }
  1538. },
  1539. kneeling: {
  1540. height: math.unit(5.4, "feet"),
  1541. weight: math.unit(124.738, "kg"),
  1542. name: "Kneeling",
  1543. image: {
  1544. source: "./media/characters/fen/kneeling.svg",
  1545. extra: 563 / 507
  1546. }
  1547. },
  1548. goo: {
  1549. height: math.unit(2.8, "feet"),
  1550. weight: math.unit(125, "kg"),
  1551. capacity: math.unit(1, "people"),
  1552. name: "Goo",
  1553. image: {
  1554. source: "./media/characters/fen/goo.svg",
  1555. bottom: 116 / 613
  1556. }
  1557. },
  1558. lounging: {
  1559. height: math.unit(6.5, "feet"),
  1560. weight: math.unit(125, "kg"),
  1561. name: "Lounging",
  1562. image: {
  1563. source: "./media/characters/fen/lounging.svg"
  1564. }
  1565. },
  1566. },
  1567. [
  1568. {
  1569. name: "Normal",
  1570. height: math.unit(2.2428, "meter")
  1571. },
  1572. {
  1573. name: "Big",
  1574. height: math.unit(12, "feet")
  1575. },
  1576. {
  1577. name: "Minimacro",
  1578. height: math.unit(40, "feet"),
  1579. default: true,
  1580. info: {
  1581. description: {
  1582. mode: "append",
  1583. text: "\n\nTOO DAMN BIG"
  1584. }
  1585. }
  1586. },
  1587. {
  1588. name: "Macro",
  1589. height: math.unit(100, "feet"),
  1590. info: {
  1591. description: {
  1592. mode: "append",
  1593. text: "\n\nTOO DAMN BIG"
  1594. }
  1595. }
  1596. },
  1597. {
  1598. name: "Macro+",
  1599. height: math.unit(300, "feet")
  1600. },
  1601. {
  1602. name: "Megamacro",
  1603. height: math.unit(2, "miles")
  1604. }
  1605. ]
  1606. ))
  1607. characterMakers.push(() => makeCharacter(
  1608. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1609. {
  1610. front: {
  1611. height: math.unit(183, "cm"),
  1612. weight: math.unit(80, "kg"),
  1613. name: "Front",
  1614. image: {
  1615. source: "./media/characters/sofia-fluttertail/front.svg",
  1616. bottom: 0.01,
  1617. extra: 2154 / 2081
  1618. }
  1619. },
  1620. frontAlt: {
  1621. height: math.unit(183, "cm"),
  1622. weight: math.unit(80, "kg"),
  1623. name: "Front (alt)",
  1624. image: {
  1625. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1626. }
  1627. },
  1628. back: {
  1629. height: math.unit(183, "cm"),
  1630. weight: math.unit(80, "kg"),
  1631. name: "Back",
  1632. image: {
  1633. source: "./media/characters/sofia-fluttertail/back.svg"
  1634. }
  1635. },
  1636. kneeling: {
  1637. height: math.unit(125, "cm"),
  1638. weight: math.unit(80, "kg"),
  1639. name: "Kneeling",
  1640. image: {
  1641. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1642. extra: 1033 / 977,
  1643. bottom: 23.7 / 1057
  1644. }
  1645. },
  1646. maw: {
  1647. height: math.unit(183 / 5, "cm"),
  1648. name: "Maw",
  1649. image: {
  1650. source: "./media/characters/sofia-fluttertail/maw.svg"
  1651. }
  1652. },
  1653. mawcloseup: {
  1654. height: math.unit(183 / 5 * 0.41, "cm"),
  1655. name: "Maw (Closeup)",
  1656. image: {
  1657. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1658. }
  1659. },
  1660. paws: {
  1661. height: math.unit(1.17, "feet"),
  1662. name: "Paws",
  1663. image: {
  1664. source: "./media/characters/sofia-fluttertail/paws.svg",
  1665. extra: 851 / 851,
  1666. bottom: 17 / 868
  1667. }
  1668. },
  1669. },
  1670. [
  1671. {
  1672. name: "Normal",
  1673. height: math.unit(1.83, "meter")
  1674. },
  1675. {
  1676. name: "Size Thief",
  1677. height: math.unit(18, "feet")
  1678. },
  1679. {
  1680. name: "50 Foot Collie",
  1681. height: math.unit(50, "feet")
  1682. },
  1683. {
  1684. name: "Macro",
  1685. height: math.unit(96, "feet"),
  1686. default: true
  1687. },
  1688. {
  1689. name: "Megamerger",
  1690. height: math.unit(650, "feet")
  1691. },
  1692. ]
  1693. ))
  1694. characterMakers.push(() => makeCharacter(
  1695. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1696. {
  1697. front: {
  1698. height: math.unit(7, "feet"),
  1699. weight: math.unit(100, "kg"),
  1700. name: "Front",
  1701. image: {
  1702. source: "./media/characters/march/front.svg",
  1703. extra: 1,
  1704. bottom: 0.015
  1705. }
  1706. },
  1707. foot: {
  1708. height: math.unit(0.9, "feet"),
  1709. name: "Foot",
  1710. image: {
  1711. source: "./media/characters/march/foot.svg"
  1712. }
  1713. },
  1714. },
  1715. [
  1716. {
  1717. name: "Normal",
  1718. height: math.unit(7.9, "feet")
  1719. },
  1720. {
  1721. name: "Macro",
  1722. height: math.unit(220, "meters")
  1723. },
  1724. {
  1725. name: "Megamacro",
  1726. height: math.unit(2.98, "km"),
  1727. default: true
  1728. },
  1729. {
  1730. name: "Gigamacro",
  1731. height: math.unit(15963, "km")
  1732. },
  1733. {
  1734. name: "Teramacro",
  1735. height: math.unit(2980000000, "km")
  1736. },
  1737. {
  1738. name: "Examacro",
  1739. height: math.unit(250, "parsecs")
  1740. },
  1741. ]
  1742. ))
  1743. characterMakers.push(() => makeCharacter(
  1744. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1745. {
  1746. front: {
  1747. height: math.unit(6, "feet"),
  1748. weight: math.unit(60, "kg"),
  1749. name: "Front",
  1750. image: {
  1751. source: "./media/characters/noir/front.svg",
  1752. extra: 1,
  1753. bottom: 0.032
  1754. }
  1755. },
  1756. },
  1757. [
  1758. {
  1759. name: "Normal",
  1760. height: math.unit(6.6, "feet")
  1761. },
  1762. {
  1763. name: "Macro",
  1764. height: math.unit(500, "feet")
  1765. },
  1766. {
  1767. name: "Megamacro",
  1768. height: math.unit(2.5, "km"),
  1769. default: true
  1770. },
  1771. {
  1772. name: "Gigamacro",
  1773. height: math.unit(22500, "km")
  1774. },
  1775. {
  1776. name: "Teramacro",
  1777. height: math.unit(2500000000, "km")
  1778. },
  1779. {
  1780. name: "Examacro",
  1781. height: math.unit(200, "parsecs")
  1782. },
  1783. ]
  1784. ))
  1785. characterMakers.push(() => makeCharacter(
  1786. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1787. {
  1788. front: {
  1789. height: math.unit(7, "feet"),
  1790. weight: math.unit(100, "kg"),
  1791. name: "Front",
  1792. image: {
  1793. source: "./media/characters/okuri/front.svg",
  1794. extra: 1,
  1795. bottom: 0.037
  1796. }
  1797. },
  1798. back: {
  1799. height: math.unit(7, "feet"),
  1800. weight: math.unit(100, "kg"),
  1801. name: "Back",
  1802. image: {
  1803. source: "./media/characters/okuri/back.svg",
  1804. extra: 1,
  1805. bottom: 0.007
  1806. }
  1807. },
  1808. },
  1809. [
  1810. {
  1811. name: "Megamacro",
  1812. height: math.unit(100, "miles"),
  1813. default: true
  1814. },
  1815. ]
  1816. ))
  1817. characterMakers.push(() => makeCharacter(
  1818. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1819. {
  1820. front: {
  1821. height: math.unit(7, "feet"),
  1822. weight: math.unit(100, "kg"),
  1823. name: "Front",
  1824. image: {
  1825. source: "./media/characters/manny/front.svg",
  1826. extra: 1,
  1827. bottom: 0.06
  1828. }
  1829. },
  1830. back: {
  1831. height: math.unit(7, "feet"),
  1832. weight: math.unit(100, "kg"),
  1833. name: "Back",
  1834. image: {
  1835. source: "./media/characters/manny/back.svg",
  1836. extra: 1,
  1837. bottom: 0.014
  1838. }
  1839. },
  1840. },
  1841. [
  1842. {
  1843. name: "Normal",
  1844. height: math.unit(7, "feet"),
  1845. },
  1846. {
  1847. name: "Macro",
  1848. height: math.unit(78, "feet"),
  1849. default: true
  1850. },
  1851. {
  1852. name: "Macro+",
  1853. height: math.unit(300, "meters")
  1854. },
  1855. {
  1856. name: "Macro++",
  1857. height: math.unit(2400, "meters")
  1858. },
  1859. {
  1860. name: "Megamacro",
  1861. height: math.unit(5167, "meters")
  1862. },
  1863. {
  1864. name: "Gigamacro",
  1865. height: math.unit(41769, "miles")
  1866. },
  1867. ]
  1868. ))
  1869. characterMakers.push(() => makeCharacter(
  1870. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1871. {
  1872. front: {
  1873. height: math.unit(7, "feet"),
  1874. weight: math.unit(100, "kg"),
  1875. name: "Front",
  1876. image: {
  1877. source: "./media/characters/adake/front-1.svg"
  1878. }
  1879. },
  1880. frontAlt: {
  1881. height: math.unit(7, "feet"),
  1882. weight: math.unit(100, "kg"),
  1883. name: "Front (Alt)",
  1884. image: {
  1885. source: "./media/characters/adake/front-2.svg",
  1886. extra: 1,
  1887. bottom: 0.01
  1888. }
  1889. },
  1890. back: {
  1891. height: math.unit(7, "feet"),
  1892. weight: math.unit(100, "kg"),
  1893. name: "Back",
  1894. image: {
  1895. source: "./media/characters/adake/back.svg",
  1896. }
  1897. },
  1898. kneel: {
  1899. height: math.unit(5.385, "feet"),
  1900. weight: math.unit(100, "kg"),
  1901. name: "Kneeling",
  1902. image: {
  1903. source: "./media/characters/adake/kneel.svg",
  1904. bottom: 0.052
  1905. }
  1906. },
  1907. },
  1908. [
  1909. {
  1910. name: "Normal",
  1911. height: math.unit(7, "feet"),
  1912. },
  1913. {
  1914. name: "Macro",
  1915. height: math.unit(78, "feet"),
  1916. default: true
  1917. },
  1918. {
  1919. name: "Macro+",
  1920. height: math.unit(300, "meters")
  1921. },
  1922. {
  1923. name: "Macro++",
  1924. height: math.unit(2400, "meters")
  1925. },
  1926. {
  1927. name: "Megamacro",
  1928. height: math.unit(5167, "meters")
  1929. },
  1930. {
  1931. name: "Gigamacro",
  1932. height: math.unit(41769, "miles")
  1933. },
  1934. ]
  1935. ))
  1936. characterMakers.push(() => makeCharacter(
  1937. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1938. {
  1939. front: {
  1940. height: math.unit(1.65, "meters"),
  1941. weight: math.unit(50, "kg"),
  1942. name: "Front",
  1943. image: {
  1944. source: "./media/characters/elijah/front.svg",
  1945. extra: 858 / 830,
  1946. bottom: 95.5 / 953.8559
  1947. }
  1948. },
  1949. back: {
  1950. height: math.unit(1.65, "meters"),
  1951. weight: math.unit(50, "kg"),
  1952. name: "Back",
  1953. image: {
  1954. source: "./media/characters/elijah/back.svg",
  1955. extra: 895 / 850,
  1956. bottom: 5.3 / 897.956
  1957. }
  1958. },
  1959. frontNsfw: {
  1960. height: math.unit(1.65, "meters"),
  1961. weight: math.unit(50, "kg"),
  1962. name: "Front (NSFW)",
  1963. image: {
  1964. source: "./media/characters/elijah/front-nsfw.svg",
  1965. extra: 858 / 830,
  1966. bottom: 95.5 / 953.8559
  1967. }
  1968. },
  1969. backNsfw: {
  1970. height: math.unit(1.65, "meters"),
  1971. weight: math.unit(50, "kg"),
  1972. name: "Back (NSFW)",
  1973. image: {
  1974. source: "./media/characters/elijah/back-nsfw.svg",
  1975. extra: 895 / 850,
  1976. bottom: 5.3 / 897.956
  1977. }
  1978. },
  1979. dick: {
  1980. height: math.unit(1, "feet"),
  1981. name: "Dick",
  1982. image: {
  1983. source: "./media/characters/elijah/dick.svg"
  1984. }
  1985. },
  1986. beakOpen: {
  1987. height: math.unit(1.25, "feet"),
  1988. name: "Beak (Open)",
  1989. image: {
  1990. source: "./media/characters/elijah/beak-open.svg"
  1991. }
  1992. },
  1993. beakShut: {
  1994. height: math.unit(1.25, "feet"),
  1995. name: "Beak (Shut)",
  1996. image: {
  1997. source: "./media/characters/elijah/beak-shut.svg"
  1998. }
  1999. },
  2000. footFlexing: {
  2001. height: math.unit(1.61, "feet"),
  2002. name: "Foot (Flexing)",
  2003. image: {
  2004. source: "./media/characters/elijah/foot-flexing.svg"
  2005. }
  2006. },
  2007. footStepping: {
  2008. height: math.unit(1.44, "feet"),
  2009. name: "Foot (Stepping)",
  2010. image: {
  2011. source: "./media/characters/elijah/foot-stepping.svg"
  2012. }
  2013. },
  2014. plantigradeLeg: {
  2015. height: math.unit(2.34, "feet"),
  2016. name: "Plantigrade Leg",
  2017. image: {
  2018. source: "./media/characters/elijah/plantigrade-leg.svg"
  2019. }
  2020. },
  2021. plantigradeFootLeft: {
  2022. height: math.unit(0.9, "feet"),
  2023. name: "Plantigrade Foot (Left)",
  2024. image: {
  2025. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2026. }
  2027. },
  2028. plantigradeFootRight: {
  2029. height: math.unit(0.9, "feet"),
  2030. name: "Plantigrade Foot (Right)",
  2031. image: {
  2032. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2033. }
  2034. },
  2035. },
  2036. [
  2037. {
  2038. name: "Normal",
  2039. height: math.unit(1.65, "meters")
  2040. },
  2041. {
  2042. name: "Macro",
  2043. height: math.unit(55, "meters"),
  2044. default: true
  2045. },
  2046. {
  2047. name: "Macro+",
  2048. height: math.unit(105, "meters")
  2049. },
  2050. ]
  2051. ))
  2052. characterMakers.push(() => makeCharacter(
  2053. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2054. {
  2055. front: {
  2056. height: math.unit(11, "feet"),
  2057. weight: math.unit(80, "kg"),
  2058. name: "Front",
  2059. image: {
  2060. source: "./media/characters/rai/front.svg",
  2061. extra: 1,
  2062. bottom: 0.03
  2063. }
  2064. },
  2065. side: {
  2066. height: math.unit(11, "feet"),
  2067. weight: math.unit(80, "kg"),
  2068. name: "Side",
  2069. image: {
  2070. source: "./media/characters/rai/side.svg"
  2071. }
  2072. },
  2073. back: {
  2074. height: math.unit(11, "feet"),
  2075. weight: math.unit(80, "lb"),
  2076. name: "Back",
  2077. image: {
  2078. source: "./media/characters/rai/back.svg",
  2079. extra: 1,
  2080. bottom: 0.01
  2081. }
  2082. },
  2083. feral: {
  2084. height: math.unit(11, "feet"),
  2085. weight: math.unit(800, "lb"),
  2086. name: "Feral",
  2087. image: {
  2088. source: "./media/characters/rai/feral.svg",
  2089. extra: 1050 / 659,
  2090. bottom: 0.07
  2091. }
  2092. },
  2093. dragon: {
  2094. height: math.unit(23, "feet"),
  2095. weight: math.unit(50000, "lb"),
  2096. name: "Dragon",
  2097. image: {
  2098. source: "./media/characters/rai/dragon.svg",
  2099. extra: 2498 / 2030,
  2100. bottom: 85.2 / 2584
  2101. }
  2102. },
  2103. maw: {
  2104. height: math.unit(6 / 3.81416, "feet"),
  2105. name: "Maw",
  2106. image: {
  2107. source: "./media/characters/rai/maw.svg"
  2108. }
  2109. },
  2110. },
  2111. [
  2112. {
  2113. name: "Normal",
  2114. height: math.unit(11, "feet")
  2115. },
  2116. {
  2117. name: "Macro",
  2118. height: math.unit(302, "feet"),
  2119. default: true
  2120. },
  2121. ]
  2122. ))
  2123. characterMakers.push(() => makeCharacter(
  2124. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2125. {
  2126. frontDressed: {
  2127. height: math.unit(216, "feet"),
  2128. weight: math.unit(7000000, "lb"),
  2129. name: "Front (Dressed)",
  2130. image: {
  2131. source: "./media/characters/jazzy/front-dressed.svg",
  2132. extra: 2738 / 2651,
  2133. bottom: 41.8 / 2786
  2134. }
  2135. },
  2136. backDressed: {
  2137. height: math.unit(216, "feet"),
  2138. weight: math.unit(7000000, "lb"),
  2139. name: "Back (Dressed)",
  2140. image: {
  2141. source: "./media/characters/jazzy/back-dressed.svg",
  2142. extra: 2775 / 2673,
  2143. bottom: 36.8 / 2817
  2144. }
  2145. },
  2146. front: {
  2147. height: math.unit(216, "feet"),
  2148. weight: math.unit(7000000, "lb"),
  2149. name: "Front",
  2150. image: {
  2151. source: "./media/characters/jazzy/front.svg",
  2152. extra: 2738 / 2651,
  2153. bottom: 41.8 / 2786
  2154. }
  2155. },
  2156. back: {
  2157. height: math.unit(216, "feet"),
  2158. weight: math.unit(7000000, "lb"),
  2159. name: "Back",
  2160. image: {
  2161. source: "./media/characters/jazzy/back.svg",
  2162. extra: 2775 / 2673,
  2163. bottom: 36.8 / 2817
  2164. }
  2165. },
  2166. maw: {
  2167. height: math.unit(20, "feet"),
  2168. name: "Maw",
  2169. image: {
  2170. source: "./media/characters/jazzy/maw.svg"
  2171. }
  2172. },
  2173. paws: {
  2174. height: math.unit(27.5, "feet"),
  2175. name: "Paws",
  2176. image: {
  2177. source: "./media/characters/jazzy/paws.svg"
  2178. }
  2179. },
  2180. eye: {
  2181. height: math.unit(4.4, "feet"),
  2182. name: "Eye",
  2183. image: {
  2184. source: "./media/characters/jazzy/eye.svg"
  2185. }
  2186. },
  2187. droneOffense: {
  2188. height: math.unit(9.5, "inches"),
  2189. name: "Drone (Offense)",
  2190. image: {
  2191. source: "./media/characters/jazzy/drone-offense.svg"
  2192. }
  2193. },
  2194. droneRecon: {
  2195. height: math.unit(9.5, "inches"),
  2196. name: "Drone (Recon)",
  2197. image: {
  2198. source: "./media/characters/jazzy/drone-recon.svg"
  2199. }
  2200. },
  2201. droneDefense: {
  2202. height: math.unit(9.5, "inches"),
  2203. name: "Drone (Defense)",
  2204. image: {
  2205. source: "./media/characters/jazzy/drone-defense.svg"
  2206. }
  2207. },
  2208. },
  2209. [
  2210. {
  2211. name: "Macro",
  2212. height: math.unit(216, "feet"),
  2213. default: true
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(7, "feet"),
  2222. weight: math.unit(80, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/flamm/front.svg",
  2226. extra: 1794 / 1677,
  2227. bottom: 31.7 / 1828.5
  2228. }
  2229. },
  2230. },
  2231. [
  2232. {
  2233. name: "Normal",
  2234. height: math.unit(9.5, "feet")
  2235. },
  2236. {
  2237. name: "Macro",
  2238. height: math.unit(200, "feet"),
  2239. default: true
  2240. },
  2241. ]
  2242. ))
  2243. characterMakers.push(() => makeCharacter(
  2244. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2245. {
  2246. front: {
  2247. height: math.unit(5 + 3/12, "feet"),
  2248. weight: math.unit(60, "kg"),
  2249. name: "Front",
  2250. image: {
  2251. source: "./media/characters/zephiro/front.svg",
  2252. extra: 2309 / 2162,
  2253. bottom: 0.069
  2254. }
  2255. },
  2256. side: {
  2257. height: math.unit(5 + 3/12, "feet"),
  2258. weight: math.unit(60, "kg"),
  2259. name: "Side",
  2260. image: {
  2261. source: "./media/characters/zephiro/side.svg",
  2262. extra: 2403 / 2279,
  2263. bottom: 0.015
  2264. }
  2265. },
  2266. back: {
  2267. height: math.unit(5 + 3/12, "feet"),
  2268. weight: math.unit(60, "kg"),
  2269. name: "Back",
  2270. image: {
  2271. source: "./media/characters/zephiro/back.svg",
  2272. extra: 2373 / 2244,
  2273. bottom: 0.013
  2274. }
  2275. },
  2276. hand: {
  2277. height: math.unit(0.68, "feet"),
  2278. name: "Hand",
  2279. image: {
  2280. source: "./media/characters/zephiro/hand.svg"
  2281. }
  2282. },
  2283. paw: {
  2284. height: math.unit(1, "feet"),
  2285. name: "Paw",
  2286. image: {
  2287. source: "./media/characters/zephiro/paw.svg"
  2288. }
  2289. },
  2290. beans: {
  2291. height: math.unit(0.93, "feet"),
  2292. name: "Beans",
  2293. image: {
  2294. source: "./media/characters/zephiro/beans.svg"
  2295. }
  2296. },
  2297. },
  2298. [
  2299. {
  2300. name: "Micro",
  2301. height: math.unit(3, "inches")
  2302. },
  2303. {
  2304. name: "Normal",
  2305. height: math.unit(5 + 3 / 12, "feet"),
  2306. default: true
  2307. },
  2308. {
  2309. name: "Macro",
  2310. height: math.unit(118, "feet")
  2311. },
  2312. ]
  2313. ))
  2314. characterMakers.push(() => makeCharacter(
  2315. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2316. {
  2317. front: {
  2318. height: math.unit(5, "feet"),
  2319. weight: math.unit(90, "kg"),
  2320. name: "Front",
  2321. image: {
  2322. source: "./media/characters/fory/front.svg",
  2323. extra: 2862 / 2674,
  2324. bottom: 180 / 3043.8
  2325. }
  2326. },
  2327. back: {
  2328. height: math.unit(5, "feet"),
  2329. weight: math.unit(90, "kg"),
  2330. name: "Back",
  2331. image: {
  2332. source: "./media/characters/fory/back.svg",
  2333. extra: 2962 / 2791,
  2334. bottom: 106 / 3071.8
  2335. }
  2336. },
  2337. foot: {
  2338. height: math.unit(2.14, "feet"),
  2339. name: "Foot",
  2340. image: {
  2341. source: "./media/characters/fory/foot.svg"
  2342. }
  2343. },
  2344. },
  2345. [
  2346. {
  2347. name: "Normal",
  2348. height: math.unit(5, "feet")
  2349. },
  2350. {
  2351. name: "Macro",
  2352. height: math.unit(50, "feet"),
  2353. default: true
  2354. },
  2355. {
  2356. name: "Megamacro",
  2357. height: math.unit(10, "miles")
  2358. },
  2359. {
  2360. name: "Gigamacro",
  2361. height: math.unit(5, "earths")
  2362. },
  2363. ]
  2364. ))
  2365. characterMakers.push(() => makeCharacter(
  2366. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2367. {
  2368. front: {
  2369. height: math.unit(7, "feet"),
  2370. weight: math.unit(90, "kg"),
  2371. name: "Front",
  2372. image: {
  2373. source: "./media/characters/kurrikage/front.svg",
  2374. extra: 1,
  2375. bottom: 0.035
  2376. }
  2377. },
  2378. back: {
  2379. height: math.unit(7, "feet"),
  2380. weight: math.unit(90, "lb"),
  2381. name: "Back",
  2382. image: {
  2383. source: "./media/characters/kurrikage/back.svg"
  2384. }
  2385. },
  2386. paw: {
  2387. height: math.unit(1.5, "feet"),
  2388. name: "Paw",
  2389. image: {
  2390. source: "./media/characters/kurrikage/paw.svg"
  2391. }
  2392. },
  2393. staff: {
  2394. height: math.unit(6.7, "feet"),
  2395. name: "Staff",
  2396. image: {
  2397. source: "./media/characters/kurrikage/staff.svg"
  2398. }
  2399. },
  2400. peek: {
  2401. height: math.unit(1.05, "feet"),
  2402. name: "Peeking",
  2403. image: {
  2404. source: "./media/characters/kurrikage/peek.svg",
  2405. bottom: 0.08
  2406. }
  2407. },
  2408. },
  2409. [
  2410. {
  2411. name: "Normal",
  2412. height: math.unit(12, "feet"),
  2413. default: true
  2414. },
  2415. {
  2416. name: "Big",
  2417. height: math.unit(20, "feet")
  2418. },
  2419. {
  2420. name: "Macro",
  2421. height: math.unit(500, "feet")
  2422. },
  2423. {
  2424. name: "Megamacro",
  2425. height: math.unit(20, "miles")
  2426. },
  2427. ]
  2428. ))
  2429. characterMakers.push(() => makeCharacter(
  2430. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2431. {
  2432. front: {
  2433. height: math.unit(6, "feet"),
  2434. weight: math.unit(75, "kg"),
  2435. name: "Front",
  2436. image: {
  2437. source: "./media/characters/shingo/front.svg",
  2438. extra: 706/681,
  2439. bottom: 11/717
  2440. }
  2441. },
  2442. frontAlt: {
  2443. height: math.unit(6, "feet"),
  2444. weight: math.unit(75, "kg"),
  2445. name: "Front (Alt)",
  2446. image: {
  2447. source: "./media/characters/shingo/front-alt.svg",
  2448. extra: 3511 / 3338,
  2449. bottom: 0.005
  2450. }
  2451. },
  2452. paw: {
  2453. height: math.unit(1, "feet"),
  2454. name: "Paw",
  2455. image: {
  2456. source: "./media/characters/shingo/paw.svg"
  2457. }
  2458. },
  2459. },
  2460. [
  2461. {
  2462. name: "Micro",
  2463. height: math.unit(4, "inches")
  2464. },
  2465. {
  2466. name: "Normal",
  2467. height: math.unit(6, "feet"),
  2468. default: true
  2469. },
  2470. {
  2471. name: "Macro",
  2472. height: math.unit(108, "feet")
  2473. },
  2474. {
  2475. name: "Macro+",
  2476. height: math.unit(1500, "feet")
  2477. },
  2478. ]
  2479. ))
  2480. characterMakers.push(() => makeCharacter(
  2481. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2482. {
  2483. side: {
  2484. height: math.unit(6, "feet"),
  2485. weight: math.unit(75, "kg"),
  2486. name: "Side",
  2487. image: {
  2488. source: "./media/characters/aigey/side.svg"
  2489. }
  2490. },
  2491. },
  2492. [
  2493. {
  2494. name: "Macro",
  2495. height: math.unit(200, "feet"),
  2496. default: true
  2497. },
  2498. {
  2499. name: "Megamacro",
  2500. height: math.unit(100, "miles")
  2501. },
  2502. ]
  2503. )
  2504. )
  2505. characterMakers.push(() => makeCharacter(
  2506. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2507. {
  2508. front: {
  2509. height: math.unit(5 + 5 / 12, "feet"),
  2510. weight: math.unit(75, "kg"),
  2511. name: "Front",
  2512. image: {
  2513. source: "./media/characters/natasha/front.svg",
  2514. extra: 859 / 824,
  2515. bottom: 23 / 879.6
  2516. }
  2517. },
  2518. frontNsfw: {
  2519. height: math.unit(5 + 5 / 12, "feet"),
  2520. weight: math.unit(75, "kg"),
  2521. name: "Front (NSFW)",
  2522. image: {
  2523. source: "./media/characters/natasha/front-nsfw.svg",
  2524. extra: 859 / 824,
  2525. bottom: 23 / 879.6
  2526. }
  2527. },
  2528. frontErect: {
  2529. height: math.unit(5 + 5 / 12, "feet"),
  2530. weight: math.unit(75, "kg"),
  2531. name: "Front (Erect)",
  2532. image: {
  2533. source: "./media/characters/natasha/front-erect.svg",
  2534. extra: 859 / 824,
  2535. bottom: 23 / 879.6
  2536. }
  2537. },
  2538. back: {
  2539. height: math.unit(5 + 5 / 12, "feet"),
  2540. weight: math.unit(75, "kg"),
  2541. name: "Back",
  2542. image: {
  2543. source: "./media/characters/natasha/back.svg",
  2544. extra: 887.9 / 852.6,
  2545. bottom: 9.7 / 896.4
  2546. }
  2547. },
  2548. backAlt: {
  2549. height: math.unit(5 + 5 / 12, "feet"),
  2550. weight: math.unit(75, "kg"),
  2551. name: "Back (Alt)",
  2552. image: {
  2553. source: "./media/characters/natasha/back-alt.svg",
  2554. extra: 1236.7 / 1192,
  2555. bottom: 22.3 / 1258.2
  2556. }
  2557. },
  2558. dick: {
  2559. height: math.unit(1.772, "feet"),
  2560. name: "Dick",
  2561. image: {
  2562. source: "./media/characters/natasha/dick.svg"
  2563. }
  2564. },
  2565. paw: {
  2566. height: math.unit(0.250, "meters"),
  2567. name: "Paw",
  2568. image: {
  2569. source: "./media/characters/natasha/paw.svg"
  2570. }
  2571. },
  2572. },
  2573. [
  2574. {
  2575. name: "Normal",
  2576. height: math.unit(5 + 5 / 12, "feet")
  2577. },
  2578. {
  2579. name: "Large",
  2580. height: math.unit(12, "feet")
  2581. },
  2582. {
  2583. name: "Macro",
  2584. height: math.unit(100, "feet"),
  2585. default: true
  2586. },
  2587. {
  2588. name: "Macro+",
  2589. height: math.unit(260, "feet")
  2590. },
  2591. {
  2592. name: "Macro++",
  2593. height: math.unit(1, "mile")
  2594. },
  2595. ]
  2596. ))
  2597. characterMakers.push(() => makeCharacter(
  2598. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2599. {
  2600. front: {
  2601. height: math.unit(6, "feet"),
  2602. weight: math.unit(75, "kg"),
  2603. name: "Front",
  2604. image: {
  2605. source: "./media/characters/malik/front.svg"
  2606. }
  2607. },
  2608. side: {
  2609. height: math.unit(6, "feet"),
  2610. weight: math.unit(75, "kg"),
  2611. name: "Side",
  2612. image: {
  2613. source: "./media/characters/malik/side.svg",
  2614. extra: 1.1539
  2615. }
  2616. },
  2617. back: {
  2618. height: math.unit(6, "feet"),
  2619. weight: math.unit(75, "kg"),
  2620. name: "Back",
  2621. image: {
  2622. source: "./media/characters/malik/back.svg"
  2623. }
  2624. },
  2625. },
  2626. [
  2627. {
  2628. name: "Macro",
  2629. height: math.unit(156, "feet"),
  2630. default: true
  2631. },
  2632. {
  2633. name: "Macro+",
  2634. height: math.unit(1188, "feet")
  2635. },
  2636. ]
  2637. ))
  2638. characterMakers.push(() => makeCharacter(
  2639. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2640. {
  2641. front: {
  2642. height: math.unit(6, "feet"),
  2643. weight: math.unit(75, "kg"),
  2644. name: "Front",
  2645. image: {
  2646. source: "./media/characters/sefer/front.svg",
  2647. extra: 848 / 659,
  2648. bottom: 28.3 / 876.442
  2649. }
  2650. },
  2651. back: {
  2652. height: math.unit(6, "feet"),
  2653. weight: math.unit(75, "kg"),
  2654. name: "Back",
  2655. image: {
  2656. source: "./media/characters/sefer/back.svg",
  2657. extra: 864 / 695,
  2658. bottom: 10 / 871
  2659. }
  2660. },
  2661. frontDressed: {
  2662. height: math.unit(6, "feet"),
  2663. weight: math.unit(75, "kg"),
  2664. name: "Front (Dressed)",
  2665. image: {
  2666. source: "./media/characters/sefer/front-dressed.svg",
  2667. extra: 839 / 653,
  2668. bottom: 37.6 / 878
  2669. }
  2670. },
  2671. },
  2672. [
  2673. {
  2674. name: "Normal",
  2675. height: math.unit(6, "feet"),
  2676. default: true
  2677. },
  2678. ]
  2679. ))
  2680. characterMakers.push(() => makeCharacter(
  2681. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2682. {
  2683. body: {
  2684. height: math.unit(2.2428, "meter"),
  2685. weight: math.unit(124.738, "kg"),
  2686. name: "Body",
  2687. image: {
  2688. extra: 1225 / 1050,
  2689. source: "./media/characters/north/front.svg"
  2690. }
  2691. }
  2692. },
  2693. [
  2694. {
  2695. name: "Micro",
  2696. height: math.unit(4, "inches")
  2697. },
  2698. {
  2699. name: "Macro",
  2700. height: math.unit(63, "meters")
  2701. },
  2702. {
  2703. name: "Megamacro",
  2704. height: math.unit(101, "miles"),
  2705. default: true
  2706. }
  2707. ]
  2708. ))
  2709. characterMakers.push(() => makeCharacter(
  2710. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2711. {
  2712. angled: {
  2713. height: math.unit(4, "meter"),
  2714. weight: math.unit(150, "kg"),
  2715. name: "Angled",
  2716. image: {
  2717. source: "./media/characters/talan/angled-sfw.svg",
  2718. bottom: 29 / 3734
  2719. }
  2720. },
  2721. angledNsfw: {
  2722. height: math.unit(4, "meter"),
  2723. weight: math.unit(150, "kg"),
  2724. name: "Angled (NSFW)",
  2725. image: {
  2726. source: "./media/characters/talan/angled-nsfw.svg",
  2727. bottom: 29 / 3734
  2728. }
  2729. },
  2730. frontNsfw: {
  2731. height: math.unit(4, "meter"),
  2732. weight: math.unit(150, "kg"),
  2733. name: "Front (NSFW)",
  2734. image: {
  2735. source: "./media/characters/talan/front-nsfw.svg",
  2736. bottom: 29 / 3734
  2737. }
  2738. },
  2739. sideNsfw: {
  2740. height: math.unit(4, "meter"),
  2741. weight: math.unit(150, "kg"),
  2742. name: "Side (NSFW)",
  2743. image: {
  2744. source: "./media/characters/talan/side-nsfw.svg",
  2745. bottom: 29 / 3734
  2746. }
  2747. },
  2748. back: {
  2749. height: math.unit(4, "meter"),
  2750. weight: math.unit(150, "kg"),
  2751. name: "Back",
  2752. image: {
  2753. source: "./media/characters/talan/back.svg"
  2754. }
  2755. },
  2756. dickBottom: {
  2757. height: math.unit(0.621, "meter"),
  2758. name: "Dick (Bottom)",
  2759. image: {
  2760. source: "./media/characters/talan/dick-bottom.svg"
  2761. }
  2762. },
  2763. dickTop: {
  2764. height: math.unit(0.621, "meter"),
  2765. name: "Dick (Top)",
  2766. image: {
  2767. source: "./media/characters/talan/dick-top.svg"
  2768. }
  2769. },
  2770. dickSide: {
  2771. height: math.unit(0.305, "meter"),
  2772. name: "Dick (Side)",
  2773. image: {
  2774. source: "./media/characters/talan/dick-side.svg"
  2775. }
  2776. },
  2777. dickFront: {
  2778. height: math.unit(0.305, "meter"),
  2779. name: "Dick (Front)",
  2780. image: {
  2781. source: "./media/characters/talan/dick-front.svg"
  2782. }
  2783. },
  2784. },
  2785. [
  2786. {
  2787. name: "Normal",
  2788. height: math.unit(4, "meters")
  2789. },
  2790. {
  2791. name: "Macro",
  2792. height: math.unit(100, "meters")
  2793. },
  2794. {
  2795. name: "Megamacro",
  2796. height: math.unit(2, "miles"),
  2797. default: true
  2798. },
  2799. {
  2800. name: "Gigamacro",
  2801. height: math.unit(5000, "miles")
  2802. },
  2803. {
  2804. name: "Teramacro",
  2805. height: math.unit(100, "parsecs")
  2806. }
  2807. ]
  2808. ))
  2809. characterMakers.push(() => makeCharacter(
  2810. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2811. {
  2812. front: {
  2813. height: math.unit(2, "meter"),
  2814. weight: math.unit(90, "kg"),
  2815. name: "Front",
  2816. image: {
  2817. source: "./media/characters/gael'rathus/front.svg"
  2818. }
  2819. },
  2820. frontAlt: {
  2821. height: math.unit(2, "meter"),
  2822. weight: math.unit(90, "kg"),
  2823. name: "Front (alt)",
  2824. image: {
  2825. source: "./media/characters/gael'rathus/front-alt.svg"
  2826. }
  2827. },
  2828. frontAlt2: {
  2829. height: math.unit(2, "meter"),
  2830. weight: math.unit(90, "kg"),
  2831. name: "Front (alt 2)",
  2832. image: {
  2833. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2834. }
  2835. }
  2836. },
  2837. [
  2838. {
  2839. name: "Normal",
  2840. height: math.unit(9, "feet"),
  2841. default: true
  2842. },
  2843. {
  2844. name: "Large",
  2845. height: math.unit(25, "feet")
  2846. },
  2847. {
  2848. name: "Macro",
  2849. height: math.unit(0.25, "miles")
  2850. },
  2851. {
  2852. name: "Megamacro",
  2853. height: math.unit(10, "miles")
  2854. }
  2855. ]
  2856. ))
  2857. characterMakers.push(() => makeCharacter(
  2858. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2859. {
  2860. side: {
  2861. height: math.unit(2, "meter"),
  2862. weight: math.unit(140, "kg"),
  2863. name: "Side",
  2864. image: {
  2865. source: "./media/characters/sosha/side.svg",
  2866. bottom: 0.042
  2867. }
  2868. },
  2869. },
  2870. [
  2871. {
  2872. name: "Normal",
  2873. height: math.unit(12, "feet"),
  2874. default: true
  2875. }
  2876. ]
  2877. ))
  2878. characterMakers.push(() => makeCharacter(
  2879. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2880. {
  2881. side: {
  2882. height: math.unit(5 + 5 / 12, "feet"),
  2883. weight: math.unit(170, "kg"),
  2884. name: "Side",
  2885. image: {
  2886. source: "./media/characters/runnola/side.svg",
  2887. extra: 741 / 448,
  2888. bottom: 0.05
  2889. }
  2890. },
  2891. },
  2892. [
  2893. {
  2894. name: "Small",
  2895. height: math.unit(3, "feet")
  2896. },
  2897. {
  2898. name: "Normal",
  2899. height: math.unit(5 + 5 / 12, "feet"),
  2900. default: true
  2901. },
  2902. {
  2903. name: "Big",
  2904. height: math.unit(10, "feet")
  2905. },
  2906. ]
  2907. ))
  2908. characterMakers.push(() => makeCharacter(
  2909. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2910. {
  2911. front: {
  2912. height: math.unit(2, "meter"),
  2913. weight: math.unit(50, "kg"),
  2914. name: "Front",
  2915. image: {
  2916. source: "./media/characters/kurribird/front.svg",
  2917. bottom: 0.015
  2918. }
  2919. },
  2920. frontAlt: {
  2921. height: math.unit(1.5, "meter"),
  2922. weight: math.unit(50, "kg"),
  2923. name: "Front (Alt)",
  2924. image: {
  2925. source: "./media/characters/kurribird/front-alt.svg",
  2926. extra: 1.45
  2927. }
  2928. },
  2929. },
  2930. [
  2931. {
  2932. name: "Normal",
  2933. height: math.unit(7, "feet")
  2934. },
  2935. {
  2936. name: "Big",
  2937. height: math.unit(12, "feet"),
  2938. default: true
  2939. },
  2940. {
  2941. name: "Macro",
  2942. height: math.unit(1500, "feet")
  2943. },
  2944. {
  2945. name: "Megamacro",
  2946. height: math.unit(2, "miles")
  2947. }
  2948. ]
  2949. ))
  2950. characterMakers.push(() => makeCharacter(
  2951. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2952. {
  2953. front: {
  2954. height: math.unit(2, "meter"),
  2955. weight: math.unit(80, "kg"),
  2956. name: "Front",
  2957. image: {
  2958. source: "./media/characters/elbial/front.svg",
  2959. extra: 1643 / 1556,
  2960. bottom: 60.2 / 1696
  2961. }
  2962. },
  2963. side: {
  2964. height: math.unit(2, "meter"),
  2965. weight: math.unit(80, "kg"),
  2966. name: "Side",
  2967. image: {
  2968. source: "./media/characters/elbial/side.svg",
  2969. extra: 1630 / 1565,
  2970. bottom: 71.5 / 1697
  2971. }
  2972. },
  2973. back: {
  2974. height: math.unit(2, "meter"),
  2975. weight: math.unit(80, "kg"),
  2976. name: "Back",
  2977. image: {
  2978. source: "./media/characters/elbial/back.svg",
  2979. extra: 1668 / 1595,
  2980. bottom: 5.6 / 1672
  2981. }
  2982. },
  2983. frontDressed: {
  2984. height: math.unit(2, "meter"),
  2985. weight: math.unit(80, "kg"),
  2986. name: "Front (Dressed)",
  2987. image: {
  2988. source: "./media/characters/elbial/front-dressed.svg",
  2989. extra: 1653 / 1584,
  2990. bottom: 57 / 1708
  2991. }
  2992. },
  2993. genitals: {
  2994. height: math.unit(2 / 3.367, "meter"),
  2995. name: "Genitals",
  2996. image: {
  2997. source: "./media/characters/elbial/genitals.svg"
  2998. }
  2999. },
  3000. },
  3001. [
  3002. {
  3003. name: "Large",
  3004. height: math.unit(100, "feet")
  3005. },
  3006. {
  3007. name: "Macro",
  3008. height: math.unit(500, "feet"),
  3009. default: true
  3010. },
  3011. {
  3012. name: "Megamacro",
  3013. height: math.unit(10, "miles")
  3014. },
  3015. {
  3016. name: "Gigamacro",
  3017. height: math.unit(25000, "miles")
  3018. },
  3019. {
  3020. name: "Full-Size",
  3021. height: math.unit(8000000, "gigaparsecs")
  3022. }
  3023. ]
  3024. ))
  3025. characterMakers.push(() => makeCharacter(
  3026. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3027. {
  3028. front: {
  3029. height: math.unit(2, "meter"),
  3030. weight: math.unit(60, "kg"),
  3031. name: "Front",
  3032. image: {
  3033. source: "./media/characters/noah/front.svg"
  3034. }
  3035. },
  3036. talons: {
  3037. height: math.unit(0.315, "meter"),
  3038. name: "Talons",
  3039. image: {
  3040. source: "./media/characters/noah/talons.svg"
  3041. }
  3042. }
  3043. },
  3044. [
  3045. {
  3046. name: "Large",
  3047. height: math.unit(50, "feet")
  3048. },
  3049. {
  3050. name: "Macro",
  3051. height: math.unit(750, "feet"),
  3052. default: true
  3053. },
  3054. {
  3055. name: "Megamacro",
  3056. height: math.unit(50, "miles")
  3057. },
  3058. {
  3059. name: "Gigamacro",
  3060. height: math.unit(100000, "miles")
  3061. },
  3062. {
  3063. name: "Full-Size",
  3064. height: math.unit(3000000000, "miles")
  3065. }
  3066. ]
  3067. ))
  3068. characterMakers.push(() => makeCharacter(
  3069. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3070. {
  3071. front: {
  3072. height: math.unit(2, "meter"),
  3073. weight: math.unit(80, "kg"),
  3074. name: "Front",
  3075. image: {
  3076. source: "./media/characters/natalya/front.svg"
  3077. }
  3078. },
  3079. back: {
  3080. height: math.unit(2, "meter"),
  3081. weight: math.unit(80, "kg"),
  3082. name: "Back",
  3083. image: {
  3084. source: "./media/characters/natalya/back.svg"
  3085. }
  3086. }
  3087. },
  3088. [
  3089. {
  3090. name: "Normal",
  3091. height: math.unit(150, "feet"),
  3092. default: true
  3093. },
  3094. {
  3095. name: "Megamacro",
  3096. height: math.unit(5, "miles")
  3097. },
  3098. {
  3099. name: "Full-Size",
  3100. height: math.unit(600, "kiloparsecs")
  3101. }
  3102. ]
  3103. ))
  3104. characterMakers.push(() => makeCharacter(
  3105. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3106. {
  3107. front: {
  3108. height: math.unit(2, "meter"),
  3109. weight: math.unit(50, "kg"),
  3110. name: "Front",
  3111. image: {
  3112. source: "./media/characters/erestrebah/front.svg",
  3113. extra: 208 / 193,
  3114. bottom: 0.055
  3115. }
  3116. },
  3117. back: {
  3118. height: math.unit(2, "meter"),
  3119. weight: math.unit(50, "kg"),
  3120. name: "Back",
  3121. image: {
  3122. source: "./media/characters/erestrebah/back.svg",
  3123. extra: 1.3
  3124. }
  3125. }
  3126. },
  3127. [
  3128. {
  3129. name: "Normal",
  3130. height: math.unit(10, "feet")
  3131. },
  3132. {
  3133. name: "Large",
  3134. height: math.unit(50, "feet"),
  3135. default: true
  3136. },
  3137. {
  3138. name: "Macro",
  3139. height: math.unit(300, "feet")
  3140. },
  3141. {
  3142. name: "Macro+",
  3143. height: math.unit(750, "feet")
  3144. },
  3145. {
  3146. name: "Megamacro",
  3147. height: math.unit(3, "miles")
  3148. }
  3149. ]
  3150. ))
  3151. characterMakers.push(() => makeCharacter(
  3152. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3153. {
  3154. front: {
  3155. height: math.unit(2, "meter"),
  3156. weight: math.unit(80, "kg"),
  3157. name: "Front",
  3158. image: {
  3159. source: "./media/characters/jennifer/front.svg",
  3160. bottom: 0.11,
  3161. extra: 1.16
  3162. }
  3163. },
  3164. frontAlt: {
  3165. height: math.unit(2, "meter"),
  3166. weight: math.unit(80, "kg"),
  3167. name: "Front (Alt)",
  3168. image: {
  3169. source: "./media/characters/jennifer/front-alt.svg"
  3170. }
  3171. }
  3172. },
  3173. [
  3174. {
  3175. name: "Canon Height",
  3176. height: math.unit(120, "feet"),
  3177. default: true
  3178. },
  3179. {
  3180. name: "Macro+",
  3181. height: math.unit(300, "feet")
  3182. },
  3183. {
  3184. name: "Megamacro",
  3185. height: math.unit(20000, "feet")
  3186. }
  3187. ]
  3188. ))
  3189. characterMakers.push(() => makeCharacter(
  3190. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3191. {
  3192. front: {
  3193. height: math.unit(2, "meter"),
  3194. weight: math.unit(50, "kg"),
  3195. name: "Front",
  3196. image: {
  3197. source: "./media/characters/kalista/front.svg",
  3198. extra: 1947 / 1700,
  3199. bottom: 76.6 / 1412.98
  3200. }
  3201. },
  3202. back: {
  3203. height: math.unit(2, "meter"),
  3204. weight: math.unit(50, "kg"),
  3205. name: "Back",
  3206. image: {
  3207. source: "./media/characters/kalista/back.svg",
  3208. extra: 1366 / 1156,
  3209. bottom: 33.9 / 1362.78
  3210. }
  3211. }
  3212. },
  3213. [
  3214. {
  3215. name: "Uncomfortably Small",
  3216. height: math.unit(10, "feet")
  3217. },
  3218. {
  3219. name: "Small",
  3220. height: math.unit(30, "feet")
  3221. },
  3222. {
  3223. name: "Macro",
  3224. height: math.unit(100, "feet"),
  3225. default: true
  3226. },
  3227. {
  3228. name: "Macro+",
  3229. height: math.unit(2000, "feet")
  3230. },
  3231. {
  3232. name: "True Form",
  3233. height: math.unit(8924, "miles")
  3234. }
  3235. ]
  3236. ))
  3237. characterMakers.push(() => makeCharacter(
  3238. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3239. {
  3240. front: {
  3241. height: math.unit(2, "meter"),
  3242. weight: math.unit(120, "kg"),
  3243. name: "Front",
  3244. image: {
  3245. source: "./media/characters/ggv/front.svg"
  3246. }
  3247. },
  3248. side: {
  3249. height: math.unit(2, "meter"),
  3250. weight: math.unit(120, "kg"),
  3251. name: "Side",
  3252. image: {
  3253. source: "./media/characters/ggv/side.svg"
  3254. }
  3255. }
  3256. },
  3257. [
  3258. {
  3259. name: "Extremely Puny",
  3260. height: math.unit(9 + 5 / 12, "feet")
  3261. },
  3262. {
  3263. name: "Horribly Small",
  3264. height: math.unit(47.7, "miles"),
  3265. default: true
  3266. },
  3267. {
  3268. name: "Reasonably Sized",
  3269. height: math.unit(25000, "parsecs")
  3270. },
  3271. {
  3272. name: "Slightly Uncompressed",
  3273. height: math.unit(7.77e31, "parsecs")
  3274. },
  3275. {
  3276. name: "Omniversal",
  3277. height: math.unit(1e300, "meters")
  3278. },
  3279. ]
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3283. {
  3284. front: {
  3285. height: math.unit(2, "meter"),
  3286. weight: math.unit(75, "lb"),
  3287. name: "Front",
  3288. image: {
  3289. source: "./media/characters/napalm/front.svg"
  3290. }
  3291. },
  3292. back: {
  3293. height: math.unit(2, "meter"),
  3294. weight: math.unit(75, "lb"),
  3295. name: "Back",
  3296. image: {
  3297. source: "./media/characters/napalm/back.svg"
  3298. }
  3299. }
  3300. },
  3301. [
  3302. {
  3303. name: "Standard",
  3304. height: math.unit(55, "feet"),
  3305. default: true
  3306. }
  3307. ]
  3308. ))
  3309. characterMakers.push(() => makeCharacter(
  3310. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3311. {
  3312. front: {
  3313. height: math.unit(7 + 5 / 6, "feet"),
  3314. weight: math.unit(325, "lb"),
  3315. name: "Front",
  3316. image: {
  3317. source: "./media/characters/asana/front.svg",
  3318. extra: 1133 / 1060,
  3319. bottom: 15.2 / 1148.6
  3320. }
  3321. },
  3322. back: {
  3323. height: math.unit(7 + 5 / 6, "feet"),
  3324. weight: math.unit(325, "lb"),
  3325. name: "Back",
  3326. image: {
  3327. source: "./media/characters/asana/back.svg",
  3328. extra: 1114 / 1043,
  3329. bottom: 5 / 1120
  3330. }
  3331. },
  3332. dressedDark: {
  3333. height: math.unit(7 + 5 / 6, "feet"),
  3334. weight: math.unit(325, "lb"),
  3335. name: "Dressed (Dark)",
  3336. image: {
  3337. source: "./media/characters/asana/dressed-dark.svg",
  3338. extra: 1133 / 1060,
  3339. bottom: 15.2 / 1148.6
  3340. }
  3341. },
  3342. dressedLight: {
  3343. height: math.unit(7 + 5 / 6, "feet"),
  3344. weight: math.unit(325, "lb"),
  3345. name: "Dressed (Light)",
  3346. image: {
  3347. source: "./media/characters/asana/dressed-light.svg",
  3348. extra: 1133 / 1060,
  3349. bottom: 15.2 / 1148.6
  3350. }
  3351. },
  3352. },
  3353. [
  3354. {
  3355. name: "Standard",
  3356. height: math.unit(7 + 5 / 6, "feet"),
  3357. default: true
  3358. },
  3359. {
  3360. name: "Large",
  3361. height: math.unit(10, "meters")
  3362. },
  3363. {
  3364. name: "Macro",
  3365. height: math.unit(2500, "meters")
  3366. },
  3367. {
  3368. name: "Megamacro",
  3369. height: math.unit(5e6, "meters")
  3370. },
  3371. {
  3372. name: "Examacro",
  3373. height: math.unit(5e12, "lightyears")
  3374. },
  3375. {
  3376. name: "Max Size",
  3377. height: math.unit(1e31, "lightyears")
  3378. }
  3379. ]
  3380. ))
  3381. characterMakers.push(() => makeCharacter(
  3382. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3383. {
  3384. front: {
  3385. height: math.unit(2, "meter"),
  3386. weight: math.unit(60, "kg"),
  3387. name: "Front",
  3388. image: {
  3389. source: "./media/characters/ebony/front.svg",
  3390. bottom: 0.03,
  3391. extra: 1045 / 810 + 0.03
  3392. }
  3393. },
  3394. side: {
  3395. height: math.unit(2, "meter"),
  3396. weight: math.unit(60, "kg"),
  3397. name: "Side",
  3398. image: {
  3399. source: "./media/characters/ebony/side.svg",
  3400. bottom: 0.03,
  3401. extra: 1045 / 810 + 0.03
  3402. }
  3403. },
  3404. back: {
  3405. height: math.unit(2, "meter"),
  3406. weight: math.unit(60, "kg"),
  3407. name: "Back",
  3408. image: {
  3409. source: "./media/characters/ebony/back.svg",
  3410. bottom: 0.01,
  3411. extra: 1045 / 810 + 0.01
  3412. }
  3413. },
  3414. },
  3415. [
  3416. // TODO check why I did this lol
  3417. {
  3418. name: "Standard",
  3419. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3420. default: true
  3421. },
  3422. {
  3423. name: "Macro",
  3424. height: math.unit(200, "feet")
  3425. },
  3426. {
  3427. name: "Gigamacro",
  3428. height: math.unit(13000, "km")
  3429. }
  3430. ]
  3431. ))
  3432. characterMakers.push(() => makeCharacter(
  3433. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3434. {
  3435. front: {
  3436. height: math.unit(6, "feet"),
  3437. weight: math.unit(175, "lb"),
  3438. name: "Front",
  3439. image: {
  3440. source: "./media/characters/mountain/front.svg",
  3441. extra: 972 / 955,
  3442. bottom: 64 / 1036.6
  3443. }
  3444. },
  3445. back: {
  3446. height: math.unit(6, "feet"),
  3447. weight: math.unit(175, "lb"),
  3448. name: "Back",
  3449. image: {
  3450. source: "./media/characters/mountain/back.svg",
  3451. extra: 970 / 950,
  3452. bottom: 28.25 / 999
  3453. }
  3454. },
  3455. },
  3456. [
  3457. {
  3458. name: "Large",
  3459. height: math.unit(20, "meters")
  3460. },
  3461. {
  3462. name: "Macro",
  3463. height: math.unit(300, "meters")
  3464. },
  3465. {
  3466. name: "Gigamacro",
  3467. height: math.unit(10000, "km"),
  3468. default: true
  3469. },
  3470. {
  3471. name: "Examacro",
  3472. height: math.unit(10e9, "lightyears")
  3473. }
  3474. ]
  3475. ))
  3476. characterMakers.push(() => makeCharacter(
  3477. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3478. {
  3479. front: {
  3480. height: math.unit(8, "feet"),
  3481. weight: math.unit(500, "lb"),
  3482. name: "Front",
  3483. image: {
  3484. source: "./media/characters/rick/front.svg"
  3485. }
  3486. }
  3487. },
  3488. [
  3489. {
  3490. name: "Normal",
  3491. height: math.unit(8, "feet"),
  3492. default: true
  3493. },
  3494. {
  3495. name: "Macro",
  3496. height: math.unit(5, "km")
  3497. }
  3498. ]
  3499. ))
  3500. characterMakers.push(() => makeCharacter(
  3501. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3502. {
  3503. front: {
  3504. height: math.unit(8, "feet"),
  3505. weight: math.unit(120, "lb"),
  3506. name: "Front",
  3507. image: {
  3508. source: "./media/characters/ona/front.svg"
  3509. }
  3510. },
  3511. frontAlt: {
  3512. height: math.unit(8, "feet"),
  3513. weight: math.unit(120, "lb"),
  3514. name: "Front (Alt)",
  3515. image: {
  3516. source: "./media/characters/ona/front-alt.svg"
  3517. }
  3518. },
  3519. back: {
  3520. height: math.unit(8, "feet"),
  3521. weight: math.unit(120, "lb"),
  3522. name: "Back",
  3523. image: {
  3524. source: "./media/characters/ona/back.svg"
  3525. }
  3526. },
  3527. foot: {
  3528. height: math.unit(1.1, "feet"),
  3529. name: "Foot",
  3530. image: {
  3531. source: "./media/characters/ona/foot.svg"
  3532. }
  3533. }
  3534. },
  3535. [
  3536. {
  3537. name: "Megamacro",
  3538. height: math.unit(70, "km"),
  3539. default: true
  3540. },
  3541. {
  3542. name: "Gigamacro",
  3543. height: math.unit(681818, "miles")
  3544. },
  3545. {
  3546. name: "Examacro",
  3547. height: math.unit(3800000, "lightyears")
  3548. },
  3549. ]
  3550. ))
  3551. characterMakers.push(() => makeCharacter(
  3552. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3553. {
  3554. front: {
  3555. height: math.unit(12, "feet"),
  3556. weight: math.unit(3000, "lb"),
  3557. name: "Front",
  3558. image: {
  3559. source: "./media/characters/mech/front.svg",
  3560. extra: 2900 / 2770,
  3561. bottom: 110 / 3010
  3562. }
  3563. },
  3564. back: {
  3565. height: math.unit(12, "feet"),
  3566. weight: math.unit(3000, "lb"),
  3567. name: "Back",
  3568. image: {
  3569. source: "./media/characters/mech/back.svg",
  3570. extra: 3011 / 2890,
  3571. bottom: 94 / 3105
  3572. }
  3573. },
  3574. maw: {
  3575. height: math.unit(3.07, "feet"),
  3576. name: "Maw",
  3577. image: {
  3578. source: "./media/characters/mech/maw.svg"
  3579. }
  3580. },
  3581. head: {
  3582. height: math.unit(2.82, "feet"),
  3583. name: "Head",
  3584. image: {
  3585. source: "./media/characters/mech/head.svg"
  3586. }
  3587. },
  3588. dick: {
  3589. height: math.unit(1.43, "feet"),
  3590. name: "Dick",
  3591. image: {
  3592. source: "./media/characters/mech/dick.svg"
  3593. }
  3594. },
  3595. },
  3596. [
  3597. {
  3598. name: "Normal",
  3599. height: math.unit(12, "feet")
  3600. },
  3601. {
  3602. name: "Macro",
  3603. height: math.unit(300, "feet"),
  3604. default: true
  3605. },
  3606. {
  3607. name: "Macro+",
  3608. height: math.unit(1500, "feet")
  3609. },
  3610. ]
  3611. ))
  3612. characterMakers.push(() => makeCharacter(
  3613. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3614. {
  3615. front: {
  3616. height: math.unit(1.3, "meter"),
  3617. weight: math.unit(30, "kg"),
  3618. name: "Front",
  3619. image: {
  3620. source: "./media/characters/gregory/front.svg",
  3621. }
  3622. }
  3623. },
  3624. [
  3625. {
  3626. name: "Normal",
  3627. height: math.unit(1.3, "meter"),
  3628. default: true
  3629. },
  3630. {
  3631. name: "Macro",
  3632. height: math.unit(20, "meter")
  3633. }
  3634. ]
  3635. ))
  3636. characterMakers.push(() => makeCharacter(
  3637. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3638. {
  3639. front: {
  3640. height: math.unit(2.8, "meter"),
  3641. weight: math.unit(200, "kg"),
  3642. name: "Front",
  3643. image: {
  3644. source: "./media/characters/elory/front.svg",
  3645. }
  3646. }
  3647. },
  3648. [
  3649. {
  3650. name: "Normal",
  3651. height: math.unit(2.8, "meter"),
  3652. default: true
  3653. },
  3654. {
  3655. name: "Macro",
  3656. height: math.unit(38, "meter")
  3657. }
  3658. ]
  3659. ))
  3660. characterMakers.push(() => makeCharacter(
  3661. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3662. {
  3663. front: {
  3664. height: math.unit(470, "feet"),
  3665. weight: math.unit(924, "tons"),
  3666. name: "Front",
  3667. image: {
  3668. source: "./media/characters/angelpatamon/front.svg",
  3669. }
  3670. }
  3671. },
  3672. [
  3673. {
  3674. name: "Normal",
  3675. height: math.unit(470, "feet"),
  3676. default: true
  3677. },
  3678. {
  3679. name: "Deity Size I",
  3680. height: math.unit(28651.2, "km")
  3681. },
  3682. {
  3683. name: "Deity Size II",
  3684. height: math.unit(171907.2, "km")
  3685. }
  3686. ]
  3687. ))
  3688. characterMakers.push(() => makeCharacter(
  3689. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3690. {
  3691. side: {
  3692. height: math.unit(7.2, "meter"),
  3693. weight: math.unit(8.2, "tons"),
  3694. name: "Side",
  3695. image: {
  3696. source: "./media/characters/cryae/side.svg",
  3697. extra: 3500 / 1500
  3698. }
  3699. }
  3700. },
  3701. [
  3702. {
  3703. name: "Normal",
  3704. height: math.unit(7.2, "meter"),
  3705. default: true
  3706. }
  3707. ]
  3708. ))
  3709. characterMakers.push(() => makeCharacter(
  3710. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3711. {
  3712. front: {
  3713. height: math.unit(6, "feet"),
  3714. weight: math.unit(175, "lb"),
  3715. name: "Front",
  3716. image: {
  3717. source: "./media/characters/xera/front.svg",
  3718. extra: 2377 / 1972,
  3719. bottom: 75.5 / 2452
  3720. }
  3721. },
  3722. side: {
  3723. height: math.unit(6, "feet"),
  3724. weight: math.unit(175, "lb"),
  3725. name: "Side",
  3726. image: {
  3727. source: "./media/characters/xera/side.svg",
  3728. extra: 2345 / 2019,
  3729. bottom: 39.7 / 2384
  3730. }
  3731. },
  3732. back: {
  3733. height: math.unit(6, "feet"),
  3734. weight: math.unit(175, "lb"),
  3735. name: "Back",
  3736. image: {
  3737. source: "./media/characters/xera/back.svg",
  3738. extra: 2095 / 1984,
  3739. bottom: 67 / 2166
  3740. }
  3741. },
  3742. },
  3743. [
  3744. {
  3745. name: "Small",
  3746. height: math.unit(10, "feet")
  3747. },
  3748. {
  3749. name: "Macro",
  3750. height: math.unit(500, "meters"),
  3751. default: true
  3752. },
  3753. {
  3754. name: "Macro+",
  3755. height: math.unit(10, "km")
  3756. },
  3757. {
  3758. name: "Gigamacro",
  3759. height: math.unit(25000, "km")
  3760. },
  3761. {
  3762. name: "Teramacro",
  3763. height: math.unit(3e6, "km")
  3764. }
  3765. ]
  3766. ))
  3767. characterMakers.push(() => makeCharacter(
  3768. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3769. {
  3770. front: {
  3771. height: math.unit(6, "feet"),
  3772. weight: math.unit(175, "lb"),
  3773. name: "Front",
  3774. image: {
  3775. source: "./media/characters/nebula/front.svg",
  3776. extra: 2566 / 2362,
  3777. bottom: 81 / 2644
  3778. }
  3779. }
  3780. },
  3781. [
  3782. {
  3783. name: "Small",
  3784. height: math.unit(4.5, "meters")
  3785. },
  3786. {
  3787. name: "Macro",
  3788. height: math.unit(1500, "meters"),
  3789. default: true
  3790. },
  3791. {
  3792. name: "Megamacro",
  3793. height: math.unit(150, "km")
  3794. },
  3795. {
  3796. name: "Gigamacro",
  3797. height: math.unit(27000, "km")
  3798. }
  3799. ]
  3800. ))
  3801. characterMakers.push(() => makeCharacter(
  3802. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3803. {
  3804. front: {
  3805. height: math.unit(6, "feet"),
  3806. weight: math.unit(225, "lb"),
  3807. name: "Front",
  3808. image: {
  3809. source: "./media/characters/abysgar/front.svg"
  3810. }
  3811. }
  3812. },
  3813. [
  3814. {
  3815. name: "Small",
  3816. height: math.unit(4.5, "meters")
  3817. },
  3818. {
  3819. name: "Macro",
  3820. height: math.unit(1250, "meters"),
  3821. default: true
  3822. },
  3823. {
  3824. name: "Megamacro",
  3825. height: math.unit(125, "km")
  3826. },
  3827. {
  3828. name: "Gigamacro",
  3829. height: math.unit(26000, "km")
  3830. }
  3831. ]
  3832. ))
  3833. characterMakers.push(() => makeCharacter(
  3834. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3835. {
  3836. front: {
  3837. height: math.unit(6, "feet"),
  3838. weight: math.unit(180, "lb"),
  3839. name: "Front",
  3840. image: {
  3841. source: "./media/characters/yakuz/front.svg"
  3842. }
  3843. }
  3844. },
  3845. [
  3846. {
  3847. name: "Small",
  3848. height: math.unit(5, "meters")
  3849. },
  3850. {
  3851. name: "Macro",
  3852. height: math.unit(1500, "meters"),
  3853. default: true
  3854. },
  3855. {
  3856. name: "Megamacro",
  3857. height: math.unit(200, "km")
  3858. },
  3859. {
  3860. name: "Gigamacro",
  3861. height: math.unit(100000, "km")
  3862. }
  3863. ]
  3864. ))
  3865. characterMakers.push(() => makeCharacter(
  3866. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3867. {
  3868. front: {
  3869. height: math.unit(6, "feet"),
  3870. weight: math.unit(175, "lb"),
  3871. name: "Front",
  3872. image: {
  3873. source: "./media/characters/mirova/front.svg",
  3874. extra: 3334 / 3071,
  3875. bottom: 42 / 3375.6
  3876. }
  3877. }
  3878. },
  3879. [
  3880. {
  3881. name: "Small",
  3882. height: math.unit(5, "meters")
  3883. },
  3884. {
  3885. name: "Macro",
  3886. height: math.unit(900, "meters"),
  3887. default: true
  3888. },
  3889. {
  3890. name: "Megamacro",
  3891. height: math.unit(135, "km")
  3892. },
  3893. {
  3894. name: "Gigamacro",
  3895. height: math.unit(20000, "km")
  3896. }
  3897. ]
  3898. ))
  3899. characterMakers.push(() => makeCharacter(
  3900. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3901. {
  3902. side: {
  3903. height: math.unit(28.35, "feet"),
  3904. weight: math.unit(99.75, "tons"),
  3905. name: "Side",
  3906. image: {
  3907. source: "./media/characters/asana-mech/side.svg",
  3908. extra: 923 / 699,
  3909. bottom: 50 / 975
  3910. }
  3911. },
  3912. chaingun: {
  3913. height: math.unit(7, "feet"),
  3914. weight: math.unit(2400, "lb"),
  3915. name: "Chaingun",
  3916. image: {
  3917. source: "./media/characters/asana-mech/chaingun.svg"
  3918. }
  3919. },
  3920. laser: {
  3921. height: math.unit(7.12, "feet"),
  3922. weight: math.unit(2000, "lb"),
  3923. name: "Laser",
  3924. image: {
  3925. source: "./media/characters/asana-mech/laser.svg"
  3926. }
  3927. },
  3928. },
  3929. [
  3930. {
  3931. name: "Normal",
  3932. height: math.unit(28.35, "feet"),
  3933. default: true
  3934. },
  3935. {
  3936. name: "Macro",
  3937. height: math.unit(2500, "feet")
  3938. },
  3939. {
  3940. name: "Megamacro",
  3941. height: math.unit(25, "miles")
  3942. },
  3943. {
  3944. name: "Examacro",
  3945. height: math.unit(6e8, "lightyears")
  3946. },
  3947. ]
  3948. ))
  3949. characterMakers.push(() => makeCharacter(
  3950. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3951. {
  3952. front: {
  3953. height: math.unit(5, "meters"),
  3954. weight: math.unit(1000, "kg"),
  3955. name: "Front",
  3956. image: {
  3957. source: "./media/characters/asche/front.svg",
  3958. extra: 1258 / 1190,
  3959. bottom: 47 / 1305
  3960. }
  3961. },
  3962. frontUnderwear: {
  3963. height: math.unit(5, "meters"),
  3964. weight: math.unit(1000, "kg"),
  3965. name: "Front (Underwear)",
  3966. image: {
  3967. source: "./media/characters/asche/front-underwear.svg",
  3968. extra: 1258 / 1190,
  3969. bottom: 47 / 1305
  3970. }
  3971. },
  3972. frontDressed: {
  3973. height: math.unit(5, "meters"),
  3974. weight: math.unit(1000, "kg"),
  3975. name: "Front (Dressed)",
  3976. image: {
  3977. source: "./media/characters/asche/front-dressed.svg",
  3978. extra: 1258 / 1190,
  3979. bottom: 47 / 1305
  3980. }
  3981. },
  3982. frontArmor: {
  3983. height: math.unit(5, "meters"),
  3984. weight: math.unit(1000, "kg"),
  3985. name: "Front (Armored)",
  3986. image: {
  3987. source: "./media/characters/asche/front-armored.svg",
  3988. extra: 1374 / 1308,
  3989. bottom: 23 / 1397
  3990. }
  3991. },
  3992. mp724: {
  3993. height: math.unit(0.96, "meters"),
  3994. weight: math.unit(38, "kg"),
  3995. name: "H&K MP724",
  3996. image: {
  3997. source: "./media/characters/asche/h&k-mp724.svg"
  3998. }
  3999. },
  4000. side: {
  4001. height: math.unit(5, "meters"),
  4002. weight: math.unit(1000, "kg"),
  4003. name: "Side",
  4004. image: {
  4005. source: "./media/characters/asche/side.svg",
  4006. extra: 1717 / 1609,
  4007. bottom: 0.005
  4008. }
  4009. },
  4010. back: {
  4011. height: math.unit(5, "meters"),
  4012. weight: math.unit(1000, "kg"),
  4013. name: "Back",
  4014. image: {
  4015. source: "./media/characters/asche/back.svg",
  4016. extra: 1570 / 1501
  4017. }
  4018. },
  4019. },
  4020. [
  4021. {
  4022. name: "DEFCON 5",
  4023. height: math.unit(5, "meters")
  4024. },
  4025. {
  4026. name: "DEFCON 4",
  4027. height: math.unit(500, "meters"),
  4028. default: true
  4029. },
  4030. {
  4031. name: "DEFCON 3",
  4032. height: math.unit(5, "km")
  4033. },
  4034. {
  4035. name: "DEFCON 2",
  4036. height: math.unit(500, "km")
  4037. },
  4038. {
  4039. name: "DEFCON 1",
  4040. height: math.unit(500000, "km")
  4041. },
  4042. {
  4043. name: "DEFCON 0",
  4044. height: math.unit(3, "gigaparsecs")
  4045. },
  4046. ]
  4047. ))
  4048. characterMakers.push(() => makeCharacter(
  4049. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4050. {
  4051. front: {
  4052. height: math.unit(2, "meters"),
  4053. weight: math.unit(76, "kg"),
  4054. name: "Front",
  4055. image: {
  4056. source: "./media/characters/gale/front.svg"
  4057. }
  4058. },
  4059. frontAlt1: {
  4060. height: math.unit(2, "meters"),
  4061. weight: math.unit(76, "kg"),
  4062. name: "Front (Alt 1)",
  4063. image: {
  4064. source: "./media/characters/gale/front-alt-1.svg"
  4065. }
  4066. },
  4067. frontAlt2: {
  4068. height: math.unit(2, "meters"),
  4069. weight: math.unit(76, "kg"),
  4070. name: "Front (Alt 2)",
  4071. image: {
  4072. source: "./media/characters/gale/front-alt-2.svg"
  4073. }
  4074. },
  4075. },
  4076. [
  4077. {
  4078. name: "Normal",
  4079. height: math.unit(7, "feet")
  4080. },
  4081. {
  4082. name: "Macro",
  4083. height: math.unit(150, "feet"),
  4084. default: true
  4085. },
  4086. {
  4087. name: "Macro+",
  4088. height: math.unit(300, "feet")
  4089. },
  4090. ]
  4091. ))
  4092. characterMakers.push(() => makeCharacter(
  4093. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4094. {
  4095. front: {
  4096. height: math.unit(2, "meters"),
  4097. weight: math.unit(76, "kg"),
  4098. name: "Front",
  4099. image: {
  4100. source: "./media/characters/draylen/front.svg"
  4101. }
  4102. }
  4103. },
  4104. [
  4105. {
  4106. name: "Macro",
  4107. height: math.unit(150, "feet"),
  4108. default: true
  4109. }
  4110. ]
  4111. ))
  4112. characterMakers.push(() => makeCharacter(
  4113. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4114. {
  4115. front: {
  4116. height: math.unit(7 + 9 / 12, "feet"),
  4117. weight: math.unit(379, "lbs"),
  4118. name: "Front",
  4119. image: {
  4120. source: "./media/characters/chez/front.svg"
  4121. }
  4122. },
  4123. side: {
  4124. height: math.unit(7 + 9 / 12, "feet"),
  4125. weight: math.unit(379, "lbs"),
  4126. name: "Side",
  4127. image: {
  4128. source: "./media/characters/chez/side.svg"
  4129. }
  4130. }
  4131. },
  4132. [
  4133. {
  4134. name: "Normal",
  4135. height: math.unit(7 + 9 / 12, "feet"),
  4136. default: true
  4137. },
  4138. {
  4139. name: "God King",
  4140. height: math.unit(9750000, "meters")
  4141. }
  4142. ]
  4143. ))
  4144. characterMakers.push(() => makeCharacter(
  4145. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4146. {
  4147. front: {
  4148. height: math.unit(6, "feet"),
  4149. weight: math.unit(275, "lbs"),
  4150. name: "Front",
  4151. image: {
  4152. source: "./media/characters/kaylum/front.svg",
  4153. bottom: 0.01,
  4154. extra: 1166 / 1031
  4155. }
  4156. },
  4157. frontWingless: {
  4158. height: math.unit(6, "feet"),
  4159. weight: math.unit(275, "lbs"),
  4160. name: "Front (Wingless)",
  4161. image: {
  4162. source: "./media/characters/kaylum/front-wingless.svg",
  4163. bottom: 0.01,
  4164. extra: 1117 / 1031
  4165. }
  4166. }
  4167. },
  4168. [
  4169. {
  4170. name: "Normal",
  4171. height: math.unit(3.05, "meters")
  4172. },
  4173. {
  4174. name: "Master",
  4175. height: math.unit(5.5, "meters")
  4176. },
  4177. {
  4178. name: "Rampage",
  4179. height: math.unit(19, "meters")
  4180. },
  4181. {
  4182. name: "Macro Lite",
  4183. height: math.unit(37, "meters")
  4184. },
  4185. {
  4186. name: "Hyper Predator",
  4187. height: math.unit(61, "meters")
  4188. },
  4189. {
  4190. name: "Macro",
  4191. height: math.unit(138, "meters"),
  4192. default: true
  4193. }
  4194. ]
  4195. ))
  4196. characterMakers.push(() => makeCharacter(
  4197. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4198. {
  4199. front: {
  4200. height: math.unit(6, "feet"),
  4201. weight: math.unit(150, "lbs"),
  4202. name: "Front",
  4203. image: {
  4204. source: "./media/characters/geta/front.svg"
  4205. }
  4206. }
  4207. },
  4208. [
  4209. {
  4210. name: "Micro",
  4211. height: math.unit(3, "inches"),
  4212. default: true
  4213. },
  4214. {
  4215. name: "Normal",
  4216. height: math.unit(5 + 5 / 12, "feet")
  4217. }
  4218. ]
  4219. ))
  4220. characterMakers.push(() => makeCharacter(
  4221. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4222. {
  4223. front: {
  4224. height: math.unit(6, "feet"),
  4225. weight: math.unit(300, "lbs"),
  4226. name: "Front",
  4227. image: {
  4228. source: "./media/characters/tyrnn/front.svg"
  4229. }
  4230. }
  4231. },
  4232. [
  4233. {
  4234. name: "Main Height",
  4235. height: math.unit(355, "feet"),
  4236. default: true
  4237. },
  4238. {
  4239. name: "Fave. Height",
  4240. height: math.unit(2400, "feet")
  4241. }
  4242. ]
  4243. ))
  4244. characterMakers.push(() => makeCharacter(
  4245. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4246. {
  4247. front: {
  4248. height: math.unit(6, "feet"),
  4249. weight: math.unit(300, "lbs"),
  4250. name: "Front",
  4251. image: {
  4252. source: "./media/characters/appledectomy/front.svg"
  4253. }
  4254. }
  4255. },
  4256. [
  4257. {
  4258. name: "Macro",
  4259. height: math.unit(2500, "feet")
  4260. },
  4261. {
  4262. name: "Megamacro",
  4263. height: math.unit(50, "miles"),
  4264. default: true
  4265. },
  4266. {
  4267. name: "Gigamacro",
  4268. height: math.unit(5000, "miles")
  4269. },
  4270. {
  4271. name: "Teramacro",
  4272. height: math.unit(250000, "miles")
  4273. },
  4274. ]
  4275. ))
  4276. characterMakers.push(() => makeCharacter(
  4277. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4278. {
  4279. front: {
  4280. height: math.unit(6, "feet"),
  4281. weight: math.unit(200, "lbs"),
  4282. name: "Front",
  4283. image: {
  4284. source: "./media/characters/vulpes/front.svg",
  4285. extra: 573 / 543,
  4286. bottom: 0.033
  4287. }
  4288. },
  4289. side: {
  4290. height: math.unit(6, "feet"),
  4291. weight: math.unit(200, "lbs"),
  4292. name: "Side",
  4293. image: {
  4294. source: "./media/characters/vulpes/side.svg",
  4295. extra: 577 / 549,
  4296. bottom: 11 / 588
  4297. }
  4298. },
  4299. back: {
  4300. height: math.unit(6, "feet"),
  4301. weight: math.unit(200, "lbs"),
  4302. name: "Back",
  4303. image: {
  4304. source: "./media/characters/vulpes/back.svg",
  4305. extra: 573 / 549,
  4306. bottom: 20 / 593
  4307. }
  4308. },
  4309. feet: {
  4310. height: math.unit(1.276, "feet"),
  4311. name: "Feet",
  4312. image: {
  4313. source: "./media/characters/vulpes/feet.svg"
  4314. }
  4315. },
  4316. maw: {
  4317. height: math.unit(1.18, "feet"),
  4318. name: "Maw",
  4319. image: {
  4320. source: "./media/characters/vulpes/maw.svg"
  4321. }
  4322. },
  4323. },
  4324. [
  4325. {
  4326. name: "Micro",
  4327. height: math.unit(2, "inches")
  4328. },
  4329. {
  4330. name: "Normal",
  4331. height: math.unit(6.3, "feet")
  4332. },
  4333. {
  4334. name: "Macro",
  4335. height: math.unit(850, "feet")
  4336. },
  4337. {
  4338. name: "Megamacro",
  4339. height: math.unit(7500, "feet"),
  4340. default: true
  4341. },
  4342. {
  4343. name: "Gigamacro",
  4344. height: math.unit(570000, "miles")
  4345. }
  4346. ]
  4347. ))
  4348. characterMakers.push(() => makeCharacter(
  4349. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4350. {
  4351. front: {
  4352. height: math.unit(6, "feet"),
  4353. weight: math.unit(210, "lbs"),
  4354. name: "Front",
  4355. image: {
  4356. source: "./media/characters/rain-fallen/front.svg"
  4357. }
  4358. },
  4359. side: {
  4360. height: math.unit(6, "feet"),
  4361. weight: math.unit(210, "lbs"),
  4362. name: "Side",
  4363. image: {
  4364. source: "./media/characters/rain-fallen/side.svg"
  4365. }
  4366. },
  4367. back: {
  4368. height: math.unit(6, "feet"),
  4369. weight: math.unit(210, "lbs"),
  4370. name: "Back",
  4371. image: {
  4372. source: "./media/characters/rain-fallen/back.svg"
  4373. }
  4374. },
  4375. feral: {
  4376. height: math.unit(9, "feet"),
  4377. weight: math.unit(700, "lbs"),
  4378. name: "Feral",
  4379. image: {
  4380. source: "./media/characters/rain-fallen/feral.svg"
  4381. }
  4382. },
  4383. },
  4384. [
  4385. {
  4386. name: "Meddling with Mortals",
  4387. height: math.unit(8 + 8/12, "feet")
  4388. },
  4389. {
  4390. name: "Normal",
  4391. height: math.unit(5, "meter")
  4392. },
  4393. {
  4394. name: "Macro",
  4395. height: math.unit(150, "meter"),
  4396. default: true
  4397. },
  4398. {
  4399. name: "Megamacro",
  4400. height: math.unit(278e6, "meter")
  4401. },
  4402. {
  4403. name: "Gigamacro",
  4404. height: math.unit(2e9, "meter")
  4405. },
  4406. {
  4407. name: "Teramacro",
  4408. height: math.unit(8e12, "meter")
  4409. },
  4410. {
  4411. name: "Devourer",
  4412. height: math.unit(14, "zettameters")
  4413. },
  4414. {
  4415. name: "Scarlet King",
  4416. height: math.unit(18, "yottameters")
  4417. },
  4418. {
  4419. name: "Void",
  4420. height: math.unit(6.66e66, "yottameters")
  4421. }
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4426. {
  4427. standing: {
  4428. height: math.unit(6, "feet"),
  4429. weight: math.unit(180, "lbs"),
  4430. name: "Standing",
  4431. image: {
  4432. source: "./media/characters/zaakira/standing.svg"
  4433. }
  4434. },
  4435. laying: {
  4436. height: math.unit(3, "feet"),
  4437. weight: math.unit(180, "lbs"),
  4438. name: "Laying",
  4439. image: {
  4440. source: "./media/characters/zaakira/laying.svg"
  4441. }
  4442. },
  4443. },
  4444. [
  4445. {
  4446. name: "Normal",
  4447. height: math.unit(12, "feet")
  4448. },
  4449. {
  4450. name: "Macro",
  4451. height: math.unit(279, "feet"),
  4452. default: true
  4453. }
  4454. ]
  4455. ))
  4456. characterMakers.push(() => makeCharacter(
  4457. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4458. {
  4459. femSfw: {
  4460. height: math.unit(8, "feet"),
  4461. weight: math.unit(350, "lb"),
  4462. name: "Fem",
  4463. image: {
  4464. source: "./media/characters/sigvald/fem-sfw.svg",
  4465. extra: 182 / 164,
  4466. bottom: 8.7 / 190.5
  4467. }
  4468. },
  4469. femNsfw: {
  4470. height: math.unit(8, "feet"),
  4471. weight: math.unit(350, "lb"),
  4472. name: "Fem (NSFW)",
  4473. image: {
  4474. source: "./media/characters/sigvald/fem-nsfw.svg",
  4475. extra: 182 / 164,
  4476. bottom: 8.7 / 190.5
  4477. }
  4478. },
  4479. maleNsfw: {
  4480. height: math.unit(8, "feet"),
  4481. weight: math.unit(350, "lb"),
  4482. name: "Male (NSFW)",
  4483. image: {
  4484. source: "./media/characters/sigvald/male-nsfw.svg",
  4485. extra: 182 / 164,
  4486. bottom: 8.7 / 190.5
  4487. }
  4488. },
  4489. hermNsfw: {
  4490. height: math.unit(8, "feet"),
  4491. weight: math.unit(350, "lb"),
  4492. name: "Herm (NSFW)",
  4493. image: {
  4494. source: "./media/characters/sigvald/herm-nsfw.svg",
  4495. extra: 182 / 164,
  4496. bottom: 8.7 / 190.5
  4497. }
  4498. },
  4499. dick: {
  4500. height: math.unit(2.36, "feet"),
  4501. name: "Dick",
  4502. image: {
  4503. source: "./media/characters/sigvald/dick.svg"
  4504. }
  4505. },
  4506. eye: {
  4507. height: math.unit(0.31, "feet"),
  4508. name: "Eye",
  4509. image: {
  4510. source: "./media/characters/sigvald/eye.svg"
  4511. }
  4512. },
  4513. mouth: {
  4514. height: math.unit(0.92, "feet"),
  4515. name: "Mouth",
  4516. image: {
  4517. source: "./media/characters/sigvald/mouth.svg"
  4518. }
  4519. },
  4520. paws: {
  4521. height: math.unit(2.2, "feet"),
  4522. name: "Paws",
  4523. image: {
  4524. source: "./media/characters/sigvald/paws.svg"
  4525. }
  4526. }
  4527. },
  4528. [
  4529. {
  4530. name: "Normal",
  4531. height: math.unit(8, "feet")
  4532. },
  4533. {
  4534. name: "Large",
  4535. height: math.unit(12, "feet")
  4536. },
  4537. {
  4538. name: "Larger",
  4539. height: math.unit(20, "feet")
  4540. },
  4541. {
  4542. name: "Macro",
  4543. height: math.unit(150, "feet")
  4544. },
  4545. {
  4546. name: "Macro+",
  4547. height: math.unit(200, "feet"),
  4548. default: true
  4549. },
  4550. ]
  4551. ))
  4552. characterMakers.push(() => makeCharacter(
  4553. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4554. {
  4555. side: {
  4556. height: math.unit(12, "feet"),
  4557. weight: math.unit(2000, "kg"),
  4558. name: "Side",
  4559. image: {
  4560. source: "./media/characters/scott/side.svg",
  4561. extra: 754 / 724,
  4562. bottom: 0.069
  4563. }
  4564. },
  4565. upright: {
  4566. height: math.unit(12, "feet"),
  4567. weight: math.unit(2000, "kg"),
  4568. name: "Upright",
  4569. image: {
  4570. source: "./media/characters/scott/upright.svg",
  4571. extra: 3881 / 3722,
  4572. bottom: 0.05
  4573. }
  4574. },
  4575. },
  4576. [
  4577. {
  4578. name: "Normal",
  4579. height: math.unit(12, "feet"),
  4580. default: true
  4581. },
  4582. ]
  4583. ))
  4584. characterMakers.push(() => makeCharacter(
  4585. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4586. {
  4587. side: {
  4588. height: math.unit(8, "meters"),
  4589. weight: math.unit(84755, "lbs"),
  4590. name: "Side",
  4591. image: {
  4592. source: "./media/characters/tobias/side.svg",
  4593. extra: 1474 / 1096,
  4594. bottom: 38.9 / 1513.1235
  4595. }
  4596. },
  4597. },
  4598. [
  4599. {
  4600. name: "Normal",
  4601. height: math.unit(8, "meters"),
  4602. default: true
  4603. },
  4604. ]
  4605. ))
  4606. characterMakers.push(() => makeCharacter(
  4607. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4608. {
  4609. front: {
  4610. height: math.unit(5.5, "feet"),
  4611. weight: math.unit(400, "lbs"),
  4612. name: "Front",
  4613. image: {
  4614. source: "./media/characters/kieran/front.svg",
  4615. extra: 2694 / 2364,
  4616. bottom: 217 / 2908
  4617. }
  4618. },
  4619. side: {
  4620. height: math.unit(5.5, "feet"),
  4621. weight: math.unit(400, "lbs"),
  4622. name: "Side",
  4623. image: {
  4624. source: "./media/characters/kieran/side.svg",
  4625. extra: 875 / 777,
  4626. bottom: 84.6 / 959
  4627. }
  4628. },
  4629. },
  4630. [
  4631. {
  4632. name: "Normal",
  4633. height: math.unit(5.5, "feet"),
  4634. default: true
  4635. },
  4636. ]
  4637. ))
  4638. characterMakers.push(() => makeCharacter(
  4639. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4640. {
  4641. side: {
  4642. height: math.unit(2, "meters"),
  4643. weight: math.unit(70, "kg"),
  4644. name: "Side",
  4645. image: {
  4646. source: "./media/characters/sanya/side.svg",
  4647. bottom: 0.02,
  4648. extra: 1.02
  4649. }
  4650. },
  4651. },
  4652. [
  4653. {
  4654. name: "Small",
  4655. height: math.unit(2, "meters")
  4656. },
  4657. {
  4658. name: "Normal",
  4659. height: math.unit(3, "meters")
  4660. },
  4661. {
  4662. name: "Macro",
  4663. height: math.unit(16, "meters"),
  4664. default: true
  4665. },
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4670. {
  4671. front: {
  4672. height: math.unit(2, "meters"),
  4673. weight: math.unit(120, "kg"),
  4674. name: "Front",
  4675. image: {
  4676. source: "./media/characters/miranda/front.svg",
  4677. extra: 195 / 185,
  4678. bottom: 10.9 / 206.5
  4679. }
  4680. },
  4681. back: {
  4682. height: math.unit(2, "meters"),
  4683. weight: math.unit(120, "kg"),
  4684. name: "Back",
  4685. image: {
  4686. source: "./media/characters/miranda/back.svg",
  4687. extra: 201 / 193,
  4688. bottom: 2.3 / 203.7
  4689. }
  4690. },
  4691. },
  4692. [
  4693. {
  4694. name: "Normal",
  4695. height: math.unit(10, "feet"),
  4696. default: true
  4697. }
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "James", species: ["deer"], tags: ["anthro"] },
  4702. {
  4703. side: {
  4704. height: math.unit(2, "meters"),
  4705. weight: math.unit(100, "kg"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/james/front.svg",
  4709. extra: 10 / 8.5
  4710. }
  4711. },
  4712. },
  4713. [
  4714. {
  4715. name: "Normal",
  4716. height: math.unit(8.5, "feet"),
  4717. default: true
  4718. }
  4719. ]
  4720. ))
  4721. characterMakers.push(() => makeCharacter(
  4722. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4723. {
  4724. side: {
  4725. height: math.unit(9.5, "feet"),
  4726. weight: math.unit(2500, "lbs"),
  4727. name: "Side",
  4728. image: {
  4729. source: "./media/characters/heather/side.svg"
  4730. }
  4731. },
  4732. },
  4733. [
  4734. {
  4735. name: "Normal",
  4736. height: math.unit(9.5, "feet"),
  4737. default: true
  4738. }
  4739. ]
  4740. ))
  4741. characterMakers.push(() => makeCharacter(
  4742. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4743. {
  4744. side: {
  4745. height: math.unit(6.5, "feet"),
  4746. weight: math.unit(400, "lbs"),
  4747. name: "Side",
  4748. image: {
  4749. source: "./media/characters/lukas/side.svg",
  4750. extra: 7.25 / 6.5
  4751. }
  4752. },
  4753. },
  4754. [
  4755. {
  4756. name: "Normal",
  4757. height: math.unit(6.5, "feet"),
  4758. default: true
  4759. }
  4760. ]
  4761. ))
  4762. characterMakers.push(() => makeCharacter(
  4763. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4764. {
  4765. side: {
  4766. height: math.unit(5, "feet"),
  4767. weight: math.unit(3000, "lbs"),
  4768. name: "Side",
  4769. image: {
  4770. source: "./media/characters/louise/side.svg"
  4771. }
  4772. },
  4773. },
  4774. [
  4775. {
  4776. name: "Normal",
  4777. height: math.unit(5, "feet"),
  4778. default: true
  4779. }
  4780. ]
  4781. ))
  4782. characterMakers.push(() => makeCharacter(
  4783. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4784. {
  4785. side: {
  4786. height: math.unit(6, "feet"),
  4787. weight: math.unit(150, "lbs"),
  4788. name: "Side",
  4789. image: {
  4790. source: "./media/characters/ramona/side.svg"
  4791. }
  4792. },
  4793. },
  4794. [
  4795. {
  4796. name: "Normal",
  4797. height: math.unit(5.3, "meters"),
  4798. default: true
  4799. },
  4800. {
  4801. name: "Macro",
  4802. height: math.unit(20, "stories")
  4803. },
  4804. {
  4805. name: "Macro+",
  4806. height: math.unit(50, "stories")
  4807. },
  4808. ]
  4809. ))
  4810. characterMakers.push(() => makeCharacter(
  4811. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4812. {
  4813. standing: {
  4814. height: math.unit(5.75, "feet"),
  4815. weight: math.unit(160, "lbs"),
  4816. name: "Standing",
  4817. image: {
  4818. source: "./media/characters/deerpuff/standing.svg",
  4819. extra: 682 / 624
  4820. }
  4821. },
  4822. sitting: {
  4823. height: math.unit(5.75 / 1.79, "feet"),
  4824. weight: math.unit(160, "lbs"),
  4825. name: "Sitting",
  4826. image: {
  4827. source: "./media/characters/deerpuff/sitting.svg",
  4828. bottom: 44 / 400,
  4829. extra: 1
  4830. }
  4831. },
  4832. taurLaying: {
  4833. height: math.unit(6, "feet"),
  4834. weight: math.unit(400, "lbs"),
  4835. name: "Taur (Laying)",
  4836. image: {
  4837. source: "./media/characters/deerpuff/taur-laying.svg"
  4838. }
  4839. },
  4840. },
  4841. [
  4842. {
  4843. name: "Puffball",
  4844. height: math.unit(6, "inches")
  4845. },
  4846. {
  4847. name: "Normalpuff",
  4848. height: math.unit(5.75, "feet")
  4849. },
  4850. {
  4851. name: "Macropuff",
  4852. height: math.unit(1500, "feet"),
  4853. default: true
  4854. },
  4855. {
  4856. name: "Megapuff",
  4857. height: math.unit(500, "miles")
  4858. },
  4859. {
  4860. name: "Gigapuff",
  4861. height: math.unit(250000, "miles")
  4862. },
  4863. {
  4864. name: "Omegapuff",
  4865. height: math.unit(1000, "lightyears")
  4866. },
  4867. ]
  4868. ))
  4869. characterMakers.push(() => makeCharacter(
  4870. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4871. {
  4872. stomping: {
  4873. height: math.unit(6, "feet"),
  4874. weight: math.unit(170, "lbs"),
  4875. name: "Stomping",
  4876. image: {
  4877. source: "./media/characters/vivian/stomping.svg"
  4878. }
  4879. },
  4880. sitting: {
  4881. height: math.unit(6 / 1.75, "feet"),
  4882. weight: math.unit(170, "lbs"),
  4883. name: "Sitting",
  4884. image: {
  4885. source: "./media/characters/vivian/sitting.svg",
  4886. bottom: 1 / 6.4,
  4887. extra: 1,
  4888. }
  4889. },
  4890. },
  4891. [
  4892. {
  4893. name: "Normal",
  4894. height: math.unit(7, "feet"),
  4895. default: true
  4896. },
  4897. {
  4898. name: "Macro",
  4899. height: math.unit(10, "stories")
  4900. },
  4901. {
  4902. name: "Macro+",
  4903. height: math.unit(30, "stories")
  4904. },
  4905. {
  4906. name: "Megamacro",
  4907. height: math.unit(10, "miles")
  4908. },
  4909. {
  4910. name: "Megamacro+",
  4911. height: math.unit(2750000, "meters")
  4912. },
  4913. ]
  4914. ))
  4915. characterMakers.push(() => makeCharacter(
  4916. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4917. {
  4918. front: {
  4919. height: math.unit(6, "feet"),
  4920. weight: math.unit(160, "lbs"),
  4921. name: "Front",
  4922. image: {
  4923. source: "./media/characters/prince/front.svg",
  4924. extra: 3400 / 3000
  4925. }
  4926. },
  4927. jumping: {
  4928. height: math.unit(6, "feet"),
  4929. weight: math.unit(160, "lbs"),
  4930. name: "Jumping",
  4931. image: {
  4932. source: "./media/characters/prince/jump.svg",
  4933. extra: 2555 / 2134
  4934. }
  4935. },
  4936. },
  4937. [
  4938. {
  4939. name: "Normal",
  4940. height: math.unit(7.75, "feet"),
  4941. default: true
  4942. },
  4943. {
  4944. name: "Not cute",
  4945. height: math.unit(17, "feet")
  4946. },
  4947. {
  4948. name: "I said NOT",
  4949. height: math.unit(91, "feet")
  4950. },
  4951. {
  4952. name: "Please stop",
  4953. height: math.unit(560, "feet")
  4954. },
  4955. {
  4956. name: "What have you done",
  4957. height: math.unit(2200, "feet")
  4958. },
  4959. {
  4960. name: "Deer God",
  4961. height: math.unit(3.6, "miles")
  4962. },
  4963. ]
  4964. ))
  4965. characterMakers.push(() => makeCharacter(
  4966. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4967. {
  4968. standing: {
  4969. height: math.unit(6, "feet"),
  4970. weight: math.unit(300, "lbs"),
  4971. name: "Standing",
  4972. image: {
  4973. source: "./media/characters/psymon/standing.svg",
  4974. extra: 1888 / 1810,
  4975. bottom: 0.05
  4976. }
  4977. },
  4978. slithering: {
  4979. height: math.unit(6, "feet"),
  4980. weight: math.unit(300, "lbs"),
  4981. name: "Slithering",
  4982. image: {
  4983. source: "./media/characters/psymon/slithering.svg",
  4984. extra: 1330 / 1224
  4985. }
  4986. },
  4987. slitheringAlt: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(300, "lbs"),
  4990. name: "Slithering (Alt)",
  4991. image: {
  4992. source: "./media/characters/psymon/slithering-alt.svg",
  4993. extra: 1330 / 1224
  4994. }
  4995. },
  4996. },
  4997. [
  4998. {
  4999. name: "Normal",
  5000. height: math.unit(11.25, "feet"),
  5001. default: true
  5002. },
  5003. {
  5004. name: "Large",
  5005. height: math.unit(27, "feet")
  5006. },
  5007. {
  5008. name: "Giant",
  5009. height: math.unit(87, "feet")
  5010. },
  5011. {
  5012. name: "Macro",
  5013. height: math.unit(365, "feet")
  5014. },
  5015. {
  5016. name: "Megamacro",
  5017. height: math.unit(3, "miles")
  5018. },
  5019. {
  5020. name: "World Serpent",
  5021. height: math.unit(8000, "miles")
  5022. },
  5023. ]
  5024. ))
  5025. characterMakers.push(() => makeCharacter(
  5026. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5027. {
  5028. front: {
  5029. height: math.unit(6, "feet"),
  5030. weight: math.unit(180, "lbs"),
  5031. name: "Front",
  5032. image: {
  5033. source: "./media/characters/daimos/front.svg",
  5034. extra: 4160 / 3897,
  5035. bottom: 0.021
  5036. }
  5037. }
  5038. },
  5039. [
  5040. {
  5041. name: "Normal",
  5042. height: math.unit(8, "feet"),
  5043. default: true
  5044. },
  5045. {
  5046. name: "Big Dog",
  5047. height: math.unit(22, "feet")
  5048. },
  5049. {
  5050. name: "Macro",
  5051. height: math.unit(127, "feet")
  5052. },
  5053. {
  5054. name: "Megamacro",
  5055. height: math.unit(3600, "feet")
  5056. },
  5057. ]
  5058. ))
  5059. characterMakers.push(() => makeCharacter(
  5060. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5061. {
  5062. side: {
  5063. height: math.unit(6, "feet"),
  5064. weight: math.unit(180, "lbs"),
  5065. name: "Side",
  5066. image: {
  5067. source: "./media/characters/blake/side.svg",
  5068. extra: 1212 / 1120,
  5069. bottom: 0.05
  5070. }
  5071. },
  5072. crouched: {
  5073. height: math.unit(6 * 0.57, "feet"),
  5074. weight: math.unit(180, "lbs"),
  5075. name: "Crouched",
  5076. image: {
  5077. source: "./media/characters/blake/crouched.svg",
  5078. extra: 840 / 587,
  5079. bottom: 0.04
  5080. }
  5081. },
  5082. bent: {
  5083. height: math.unit(6 * 0.75, "feet"),
  5084. weight: math.unit(180, "lbs"),
  5085. name: "Bent",
  5086. image: {
  5087. source: "./media/characters/blake/bent.svg",
  5088. extra: 592 / 544,
  5089. bottom: 0.035
  5090. }
  5091. },
  5092. },
  5093. [
  5094. {
  5095. name: "Normal",
  5096. height: math.unit(8 + 1 / 6, "feet"),
  5097. default: true
  5098. },
  5099. {
  5100. name: "Big Backside",
  5101. height: math.unit(37, "feet")
  5102. },
  5103. {
  5104. name: "Subway Shredder",
  5105. height: math.unit(72, "feet")
  5106. },
  5107. {
  5108. name: "City Carver",
  5109. height: math.unit(1675, "feet")
  5110. },
  5111. {
  5112. name: "Tectonic Tweaker",
  5113. height: math.unit(2300, "miles")
  5114. },
  5115. ]
  5116. ))
  5117. characterMakers.push(() => makeCharacter(
  5118. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5119. {
  5120. front: {
  5121. height: math.unit(6, "feet"),
  5122. weight: math.unit(180, "lbs"),
  5123. name: "Front",
  5124. image: {
  5125. source: "./media/characters/guisetto/front.svg",
  5126. extra: 856 / 817,
  5127. bottom: 0.06
  5128. }
  5129. },
  5130. airborne: {
  5131. height: math.unit(6, "feet"),
  5132. weight: math.unit(180, "lbs"),
  5133. name: "Airborne",
  5134. image: {
  5135. source: "./media/characters/guisetto/airborne.svg",
  5136. extra: 584 / 525
  5137. }
  5138. },
  5139. },
  5140. [
  5141. {
  5142. name: "Normal",
  5143. height: math.unit(10 + 11 / 12, "feet"),
  5144. default: true
  5145. },
  5146. {
  5147. name: "Large",
  5148. height: math.unit(35, "feet")
  5149. },
  5150. {
  5151. name: "Macro",
  5152. height: math.unit(475, "feet")
  5153. },
  5154. ]
  5155. ))
  5156. characterMakers.push(() => makeCharacter(
  5157. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5158. {
  5159. front: {
  5160. height: math.unit(6, "feet"),
  5161. weight: math.unit(180, "lbs"),
  5162. name: "Front",
  5163. image: {
  5164. source: "./media/characters/luxor/front.svg",
  5165. extra: 2940 / 2152
  5166. }
  5167. },
  5168. back: {
  5169. height: math.unit(6, "feet"),
  5170. weight: math.unit(180, "lbs"),
  5171. name: "Back",
  5172. image: {
  5173. source: "./media/characters/luxor/back.svg",
  5174. extra: 1083 / 960
  5175. }
  5176. },
  5177. },
  5178. [
  5179. {
  5180. name: "Normal",
  5181. height: math.unit(5 + 5 / 6, "feet"),
  5182. default: true
  5183. },
  5184. {
  5185. name: "Lamp",
  5186. height: math.unit(50, "feet")
  5187. },
  5188. {
  5189. name: "Lämp",
  5190. height: math.unit(300, "feet")
  5191. },
  5192. {
  5193. name: "The sun is a lamp",
  5194. height: math.unit(250000, "miles")
  5195. },
  5196. ]
  5197. ))
  5198. characterMakers.push(() => makeCharacter(
  5199. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5200. {
  5201. front: {
  5202. height: math.unit(6, "feet"),
  5203. weight: math.unit(50, "lbs"),
  5204. name: "Front",
  5205. image: {
  5206. source: "./media/characters/huoyan/front.svg"
  5207. }
  5208. },
  5209. side: {
  5210. height: math.unit(6, "feet"),
  5211. weight: math.unit(180, "lbs"),
  5212. name: "Side",
  5213. image: {
  5214. source: "./media/characters/huoyan/side.svg"
  5215. }
  5216. },
  5217. },
  5218. [
  5219. {
  5220. name: "Chef",
  5221. height: math.unit(9, "feet")
  5222. },
  5223. {
  5224. name: "Normal",
  5225. height: math.unit(65, "feet"),
  5226. default: true
  5227. },
  5228. {
  5229. name: "Macro",
  5230. height: math.unit(780, "feet")
  5231. },
  5232. {
  5233. name: "Flaming Mountain",
  5234. height: math.unit(4.8, "miles")
  5235. },
  5236. {
  5237. name: "Celestial",
  5238. height: math.unit(765000, "miles")
  5239. },
  5240. ]
  5241. ))
  5242. characterMakers.push(() => makeCharacter(
  5243. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5244. {
  5245. front: {
  5246. height: math.unit(5 + 3 / 4, "feet"),
  5247. weight: math.unit(120, "lbs"),
  5248. name: "Front",
  5249. image: {
  5250. source: "./media/characters/tails/front.svg"
  5251. }
  5252. }
  5253. },
  5254. [
  5255. {
  5256. name: "Normal",
  5257. height: math.unit(5 + 3 / 4, "feet"),
  5258. default: true
  5259. }
  5260. ]
  5261. ))
  5262. characterMakers.push(() => makeCharacter(
  5263. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5264. {
  5265. front: {
  5266. height: math.unit(4, "feet"),
  5267. weight: math.unit(50, "lbs"),
  5268. name: "Front",
  5269. image: {
  5270. source: "./media/characters/rainy/front.svg"
  5271. }
  5272. }
  5273. },
  5274. [
  5275. {
  5276. name: "Macro",
  5277. height: math.unit(800, "feet"),
  5278. default: true
  5279. }
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(150, "lbs"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/rainier/front.svg"
  5291. }
  5292. }
  5293. },
  5294. [
  5295. {
  5296. name: "Micro",
  5297. height: math.unit(2, "mm"),
  5298. default: true
  5299. }
  5300. ]
  5301. ))
  5302. characterMakers.push(() => makeCharacter(
  5303. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5304. {
  5305. front: {
  5306. height: math.unit(6, "feet"),
  5307. weight: math.unit(180, "lbs"),
  5308. name: "Front",
  5309. image: {
  5310. source: "./media/characters/andy/front.svg"
  5311. }
  5312. }
  5313. },
  5314. [
  5315. {
  5316. name: "Normal",
  5317. height: math.unit(8, "feet"),
  5318. default: true
  5319. },
  5320. {
  5321. name: "Macro",
  5322. height: math.unit(1000, "feet")
  5323. },
  5324. {
  5325. name: "Megamacro",
  5326. height: math.unit(5, "miles")
  5327. },
  5328. {
  5329. name: "Gigamacro",
  5330. height: math.unit(5000, "miles")
  5331. },
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5336. {
  5337. front: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(210, "lbs"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/cimmaron/front-sfw.svg",
  5343. extra: 701 / 676,
  5344. bottom: 0.046
  5345. }
  5346. },
  5347. back: {
  5348. height: math.unit(6, "feet"),
  5349. weight: math.unit(210, "lbs"),
  5350. name: "Back",
  5351. image: {
  5352. source: "./media/characters/cimmaron/back-sfw.svg",
  5353. extra: 701 / 676,
  5354. bottom: 0.046
  5355. }
  5356. },
  5357. frontNsfw: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(210, "lbs"),
  5360. name: "Front (NSFW)",
  5361. image: {
  5362. source: "./media/characters/cimmaron/front-nsfw.svg",
  5363. extra: 701 / 676,
  5364. bottom: 0.046
  5365. }
  5366. },
  5367. backNsfw: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(210, "lbs"),
  5370. name: "Back (NSFW)",
  5371. image: {
  5372. source: "./media/characters/cimmaron/back-nsfw.svg",
  5373. extra: 701 / 676,
  5374. bottom: 0.046
  5375. }
  5376. },
  5377. dick: {
  5378. height: math.unit(1.714, "feet"),
  5379. name: "Dick",
  5380. image: {
  5381. source: "./media/characters/cimmaron/dick.svg"
  5382. }
  5383. },
  5384. },
  5385. [
  5386. {
  5387. name: "Normal",
  5388. height: math.unit(6, "feet"),
  5389. default: true
  5390. },
  5391. {
  5392. name: "Macro Mayor",
  5393. height: math.unit(350, "meters")
  5394. },
  5395. ]
  5396. ))
  5397. characterMakers.push(() => makeCharacter(
  5398. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5399. {
  5400. front: {
  5401. height: math.unit(6, "feet"),
  5402. weight: math.unit(200, "lbs"),
  5403. name: "Front",
  5404. image: {
  5405. source: "./media/characters/akari/front.svg",
  5406. extra: 962 / 901,
  5407. bottom: 0.04
  5408. }
  5409. }
  5410. },
  5411. [
  5412. {
  5413. name: "Micro",
  5414. height: math.unit(5, "inches"),
  5415. default: true
  5416. },
  5417. {
  5418. name: "Normal",
  5419. height: math.unit(7, "feet")
  5420. },
  5421. ]
  5422. ))
  5423. characterMakers.push(() => makeCharacter(
  5424. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5425. {
  5426. front: {
  5427. height: math.unit(6, "feet"),
  5428. weight: math.unit(140, "lbs"),
  5429. name: "Front",
  5430. image: {
  5431. source: "./media/characters/cynosura/front.svg",
  5432. extra: 896 / 847
  5433. }
  5434. },
  5435. back: {
  5436. height: math.unit(6, "feet"),
  5437. weight: math.unit(140, "lbs"),
  5438. name: "Back",
  5439. image: {
  5440. source: "./media/characters/cynosura/back.svg",
  5441. extra: 1365 / 1250
  5442. }
  5443. },
  5444. },
  5445. [
  5446. {
  5447. name: "Micro",
  5448. height: math.unit(4, "inches")
  5449. },
  5450. {
  5451. name: "Normal",
  5452. height: math.unit(5.75, "feet"),
  5453. default: true
  5454. },
  5455. {
  5456. name: "Tall",
  5457. height: math.unit(10, "feet")
  5458. },
  5459. {
  5460. name: "Big",
  5461. height: math.unit(20, "feet")
  5462. },
  5463. {
  5464. name: "Macro",
  5465. height: math.unit(50, "feet")
  5466. },
  5467. ]
  5468. ))
  5469. characterMakers.push(() => makeCharacter(
  5470. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5471. {
  5472. front: {
  5473. height: math.unit(6, "feet"),
  5474. weight: math.unit(170, "lbs"),
  5475. name: "Front",
  5476. image: {
  5477. source: "./media/characters/gin/front.svg",
  5478. extra: 1.053,
  5479. bottom: 0.025
  5480. }
  5481. },
  5482. foot: {
  5483. height: math.unit(6 / 4.25, "feet"),
  5484. name: "Foot",
  5485. image: {
  5486. source: "./media/characters/gin/foot.svg"
  5487. }
  5488. },
  5489. sole: {
  5490. height: math.unit(6 / 4.40, "feet"),
  5491. name: "Sole",
  5492. image: {
  5493. source: "./media/characters/gin/sole.svg"
  5494. }
  5495. },
  5496. },
  5497. [
  5498. {
  5499. name: "Normal",
  5500. height: math.unit(13 + 2 / 12, "feet")
  5501. },
  5502. {
  5503. name: "Macro",
  5504. height: math.unit(1500, "feet")
  5505. },
  5506. {
  5507. name: "Megamacro",
  5508. height: math.unit(200, "miles"),
  5509. default: true
  5510. },
  5511. {
  5512. name: "Gigamacro",
  5513. height: math.unit(500, "megameters")
  5514. },
  5515. {
  5516. name: "Teramacro",
  5517. height: math.unit(15, "lightyears")
  5518. }
  5519. ]
  5520. ))
  5521. characterMakers.push(() => makeCharacter(
  5522. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5523. {
  5524. front: {
  5525. height: math.unit(6 + 1 / 6, "feet"),
  5526. weight: math.unit(178, "lbs"),
  5527. name: "Front",
  5528. image: {
  5529. source: "./media/characters/guy/front.svg"
  5530. }
  5531. }
  5532. },
  5533. [
  5534. {
  5535. name: "Normal",
  5536. height: math.unit(6 + 1 / 6, "feet"),
  5537. default: true
  5538. },
  5539. {
  5540. name: "Large",
  5541. height: math.unit(25 + 7 / 12, "feet")
  5542. },
  5543. {
  5544. name: "Macro",
  5545. height: math.unit(60 + 9 / 12, "feet")
  5546. },
  5547. {
  5548. name: "Macro+",
  5549. height: math.unit(246, "feet")
  5550. },
  5551. {
  5552. name: "Macro++",
  5553. height: math.unit(878, "feet")
  5554. }
  5555. ]
  5556. ))
  5557. characterMakers.push(() => makeCharacter(
  5558. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5559. {
  5560. front: {
  5561. height: math.unit(9, "feet"),
  5562. weight: math.unit(800, "lbs"),
  5563. name: "Front",
  5564. image: {
  5565. source: "./media/characters/tiberius/front.svg",
  5566. extra: 2295 / 2071
  5567. }
  5568. },
  5569. back: {
  5570. height: math.unit(9, "feet"),
  5571. weight: math.unit(800, "lbs"),
  5572. name: "Back",
  5573. image: {
  5574. source: "./media/characters/tiberius/back.svg",
  5575. extra: 2373 / 2160
  5576. }
  5577. },
  5578. },
  5579. [
  5580. {
  5581. name: "Normal",
  5582. height: math.unit(9, "feet"),
  5583. default: true
  5584. }
  5585. ]
  5586. ))
  5587. characterMakers.push(() => makeCharacter(
  5588. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5589. {
  5590. front: {
  5591. height: math.unit(6, "feet"),
  5592. weight: math.unit(600, "lbs"),
  5593. name: "Front",
  5594. image: {
  5595. source: "./media/characters/surgo/front.svg",
  5596. extra: 3591 / 2227
  5597. }
  5598. },
  5599. back: {
  5600. height: math.unit(6, "feet"),
  5601. weight: math.unit(600, "lbs"),
  5602. name: "Back",
  5603. image: {
  5604. source: "./media/characters/surgo/back.svg",
  5605. extra: 3557 / 2228
  5606. }
  5607. },
  5608. laying: {
  5609. height: math.unit(6 * 0.85, "feet"),
  5610. weight: math.unit(600, "lbs"),
  5611. name: "Laying",
  5612. image: {
  5613. source: "./media/characters/surgo/laying.svg"
  5614. }
  5615. },
  5616. },
  5617. [
  5618. {
  5619. name: "Normal",
  5620. height: math.unit(6, "feet"),
  5621. default: true
  5622. }
  5623. ]
  5624. ))
  5625. characterMakers.push(() => makeCharacter(
  5626. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5627. {
  5628. side: {
  5629. height: math.unit(6, "feet"),
  5630. weight: math.unit(150, "lbs"),
  5631. name: "Side",
  5632. image: {
  5633. source: "./media/characters/cibus/side.svg",
  5634. extra: 800 / 400
  5635. }
  5636. },
  5637. },
  5638. [
  5639. {
  5640. name: "Normal",
  5641. height: math.unit(6, "feet"),
  5642. default: true
  5643. }
  5644. ]
  5645. ))
  5646. characterMakers.push(() => makeCharacter(
  5647. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5648. {
  5649. front: {
  5650. height: math.unit(6, "feet"),
  5651. weight: math.unit(240, "lbs"),
  5652. name: "Front",
  5653. image: {
  5654. source: "./media/characters/nibbles/front.svg"
  5655. }
  5656. },
  5657. side: {
  5658. height: math.unit(6, "feet"),
  5659. weight: math.unit(240, "lbs"),
  5660. name: "Side",
  5661. image: {
  5662. source: "./media/characters/nibbles/side.svg"
  5663. }
  5664. },
  5665. },
  5666. [
  5667. {
  5668. name: "Normal",
  5669. height: math.unit(9, "feet"),
  5670. default: true
  5671. }
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5676. {
  5677. side: {
  5678. height: math.unit(5 + 1 / 6, "feet"),
  5679. weight: math.unit(130, "lbs"),
  5680. name: "Side",
  5681. image: {
  5682. source: "./media/characters/rikky/side.svg",
  5683. extra: 851 / 801
  5684. }
  5685. },
  5686. },
  5687. [
  5688. {
  5689. name: "Normal",
  5690. height: math.unit(5 + 1 / 6, "feet")
  5691. },
  5692. {
  5693. name: "Macro",
  5694. height: math.unit(152, "feet"),
  5695. default: true
  5696. },
  5697. {
  5698. name: "Megamacro",
  5699. height: math.unit(7, "miles")
  5700. }
  5701. ]
  5702. ))
  5703. characterMakers.push(() => makeCharacter(
  5704. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5705. {
  5706. side: {
  5707. height: math.unit(370, "cm"),
  5708. weight: math.unit(350, "lbs"),
  5709. name: "Side",
  5710. image: {
  5711. source: "./media/characters/malfressa/side.svg"
  5712. }
  5713. },
  5714. walking: {
  5715. height: math.unit(370, "cm"),
  5716. weight: math.unit(350, "lbs"),
  5717. name: "Walking",
  5718. image: {
  5719. source: "./media/characters/malfressa/walking.svg"
  5720. }
  5721. },
  5722. feral: {
  5723. height: math.unit(2500, "cm"),
  5724. weight: math.unit(100000, "lbs"),
  5725. name: "Feral",
  5726. image: {
  5727. source: "./media/characters/malfressa/feral.svg",
  5728. extra: 2108 / 837,
  5729. bottom: 0.02
  5730. }
  5731. },
  5732. },
  5733. [
  5734. {
  5735. name: "Normal",
  5736. height: math.unit(370, "cm")
  5737. },
  5738. {
  5739. name: "Macro",
  5740. height: math.unit(300, "meters"),
  5741. default: true
  5742. }
  5743. ]
  5744. ))
  5745. characterMakers.push(() => makeCharacter(
  5746. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5747. {
  5748. front: {
  5749. height: math.unit(6, "feet"),
  5750. weight: math.unit(60, "kg"),
  5751. name: "Front",
  5752. image: {
  5753. source: "./media/characters/jaro/front.svg"
  5754. }
  5755. },
  5756. back: {
  5757. height: math.unit(6, "feet"),
  5758. weight: math.unit(60, "kg"),
  5759. name: "Back",
  5760. image: {
  5761. source: "./media/characters/jaro/back.svg"
  5762. }
  5763. },
  5764. },
  5765. [
  5766. {
  5767. name: "Micro",
  5768. height: math.unit(7, "inches")
  5769. },
  5770. {
  5771. name: "Normal",
  5772. height: math.unit(5.5, "feet"),
  5773. default: true
  5774. },
  5775. {
  5776. name: "Minimacro",
  5777. height: math.unit(20, "feet")
  5778. },
  5779. {
  5780. name: "Macro",
  5781. height: math.unit(200, "meters")
  5782. }
  5783. ]
  5784. ))
  5785. characterMakers.push(() => makeCharacter(
  5786. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5787. {
  5788. front: {
  5789. height: math.unit(6, "feet"),
  5790. weight: math.unit(195, "lb"),
  5791. name: "Front",
  5792. image: {
  5793. source: "./media/characters/rogue/front.svg"
  5794. }
  5795. },
  5796. },
  5797. [
  5798. {
  5799. name: "Macro",
  5800. height: math.unit(90, "feet"),
  5801. default: true
  5802. },
  5803. ]
  5804. ))
  5805. characterMakers.push(() => makeCharacter(
  5806. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5807. {
  5808. front: {
  5809. height: math.unit(5 + 8 / 12, "feet"),
  5810. weight: math.unit(140, "lb"),
  5811. name: "Front",
  5812. image: {
  5813. source: "./media/characters/piper/front.svg",
  5814. extra: 3948/3655,
  5815. bottom: 0/3948
  5816. }
  5817. },
  5818. },
  5819. [
  5820. {
  5821. name: "Micro",
  5822. height: math.unit(2, "inches")
  5823. },
  5824. {
  5825. name: "Normal",
  5826. height: math.unit(5 + 8 / 12, "feet")
  5827. },
  5828. {
  5829. name: "Macro",
  5830. height: math.unit(250, "feet"),
  5831. default: true
  5832. },
  5833. {
  5834. name: "Megamacro",
  5835. height: math.unit(7, "miles")
  5836. },
  5837. ]
  5838. ))
  5839. characterMakers.push(() => makeCharacter(
  5840. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5841. {
  5842. front: {
  5843. height: math.unit(6, "feet"),
  5844. weight: math.unit(220, "lb"),
  5845. name: "Front",
  5846. image: {
  5847. source: "./media/characters/gemini/front.svg"
  5848. }
  5849. },
  5850. back: {
  5851. height: math.unit(6, "feet"),
  5852. weight: math.unit(220, "lb"),
  5853. name: "Back",
  5854. image: {
  5855. source: "./media/characters/gemini/back.svg"
  5856. }
  5857. },
  5858. kneeling: {
  5859. height: math.unit(6 / 1.5, "feet"),
  5860. weight: math.unit(220, "lb"),
  5861. name: "Kneeling",
  5862. image: {
  5863. source: "./media/characters/gemini/kneeling.svg",
  5864. bottom: 0.02
  5865. }
  5866. },
  5867. },
  5868. [
  5869. {
  5870. name: "Macro",
  5871. height: math.unit(300, "meters"),
  5872. default: true
  5873. },
  5874. {
  5875. name: "Megamacro",
  5876. height: math.unit(6900, "meters")
  5877. },
  5878. ]
  5879. ))
  5880. characterMakers.push(() => makeCharacter(
  5881. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5882. {
  5883. anthro: {
  5884. height: math.unit(2.35, "meters"),
  5885. weight: math.unit(73, "kg"),
  5886. name: "Anthro",
  5887. image: {
  5888. source: "./media/characters/alicia/anthro.svg",
  5889. extra: 2571 / 2385,
  5890. bottom: 75 / 2648
  5891. }
  5892. },
  5893. paw: {
  5894. height: math.unit(1.32, "feet"),
  5895. name: "Paw",
  5896. image: {
  5897. source: "./media/characters/alicia/paw.svg"
  5898. }
  5899. },
  5900. feral: {
  5901. height: math.unit(1.69, "meters"),
  5902. weight: math.unit(73, "kg"),
  5903. name: "Feral",
  5904. image: {
  5905. source: "./media/characters/alicia/feral.svg",
  5906. extra: 2123 / 1715,
  5907. bottom: 222 / 2349
  5908. }
  5909. },
  5910. },
  5911. [
  5912. {
  5913. name: "Normal",
  5914. height: math.unit(2.35, "meters")
  5915. },
  5916. {
  5917. name: "Macro",
  5918. height: math.unit(60, "meters"),
  5919. default: true
  5920. },
  5921. {
  5922. name: "Megamacro",
  5923. height: math.unit(10000, "kilometers")
  5924. },
  5925. ]
  5926. ))
  5927. characterMakers.push(() => makeCharacter(
  5928. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5929. {
  5930. front: {
  5931. height: math.unit(7, "feet"),
  5932. weight: math.unit(250, "lbs"),
  5933. name: "Front",
  5934. image: {
  5935. source: "./media/characters/archy/front.svg"
  5936. }
  5937. }
  5938. },
  5939. [
  5940. {
  5941. name: "Micro",
  5942. height: math.unit(1, "inch")
  5943. },
  5944. {
  5945. name: "Shorty",
  5946. height: math.unit(5, "feet")
  5947. },
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(7, "feet")
  5951. },
  5952. {
  5953. name: "Macro",
  5954. height: math.unit(600, "meters"),
  5955. default: true
  5956. },
  5957. {
  5958. name: "Megamacro",
  5959. height: math.unit(1, "mile")
  5960. },
  5961. ]
  5962. ))
  5963. characterMakers.push(() => makeCharacter(
  5964. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5965. {
  5966. front: {
  5967. height: math.unit(1.65, "meters"),
  5968. weight: math.unit(74, "kg"),
  5969. name: "Front",
  5970. image: {
  5971. source: "./media/characters/berri/front.svg",
  5972. extra: 857 / 837,
  5973. bottom: 18 / 877
  5974. }
  5975. },
  5976. bum: {
  5977. height: math.unit(1.46, "feet"),
  5978. name: "Bum",
  5979. image: {
  5980. source: "./media/characters/berri/bum.svg"
  5981. }
  5982. },
  5983. mouth: {
  5984. height: math.unit(0.44, "feet"),
  5985. name: "Mouth",
  5986. image: {
  5987. source: "./media/characters/berri/mouth.svg"
  5988. }
  5989. },
  5990. paw: {
  5991. height: math.unit(0.826, "feet"),
  5992. name: "Paw",
  5993. image: {
  5994. source: "./media/characters/berri/paw.svg"
  5995. }
  5996. },
  5997. },
  5998. [
  5999. {
  6000. name: "Normal",
  6001. height: math.unit(1.65, "meters")
  6002. },
  6003. {
  6004. name: "Macro",
  6005. height: math.unit(60, "m"),
  6006. default: true
  6007. },
  6008. {
  6009. name: "Megamacro",
  6010. height: math.unit(9.213, "km")
  6011. },
  6012. {
  6013. name: "Planet Eater",
  6014. height: math.unit(489, "megameters")
  6015. },
  6016. {
  6017. name: "Teramacro",
  6018. height: math.unit(2471635000000, "meters")
  6019. },
  6020. {
  6021. name: "Examacro",
  6022. height: math.unit(8.0624e+26, "meters")
  6023. }
  6024. ]
  6025. ))
  6026. characterMakers.push(() => makeCharacter(
  6027. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6028. {
  6029. front: {
  6030. height: math.unit(1.72, "meters"),
  6031. weight: math.unit(68, "kg"),
  6032. name: "Front",
  6033. image: {
  6034. source: "./media/characters/lexi/front.svg"
  6035. }
  6036. }
  6037. },
  6038. [
  6039. {
  6040. name: "Very Smol",
  6041. height: math.unit(10, "mm")
  6042. },
  6043. {
  6044. name: "Micro",
  6045. height: math.unit(6.8, "cm"),
  6046. default: true
  6047. },
  6048. {
  6049. name: "Normal",
  6050. height: math.unit(1.72, "m")
  6051. }
  6052. ]
  6053. ))
  6054. characterMakers.push(() => makeCharacter(
  6055. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6056. {
  6057. front: {
  6058. height: math.unit(1.69, "meters"),
  6059. weight: math.unit(68, "kg"),
  6060. name: "Front",
  6061. image: {
  6062. source: "./media/characters/martin/front.svg",
  6063. extra: 596 / 581
  6064. }
  6065. }
  6066. },
  6067. [
  6068. {
  6069. name: "Micro",
  6070. height: math.unit(6.85, "cm"),
  6071. default: true
  6072. },
  6073. {
  6074. name: "Normal",
  6075. height: math.unit(1.69, "m")
  6076. }
  6077. ]
  6078. ))
  6079. characterMakers.push(() => makeCharacter(
  6080. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6081. {
  6082. front: {
  6083. height: math.unit(1.69, "meters"),
  6084. weight: math.unit(68, "kg"),
  6085. name: "Front",
  6086. image: {
  6087. source: "./media/characters/juno/front.svg"
  6088. }
  6089. }
  6090. },
  6091. [
  6092. {
  6093. name: "Micro",
  6094. height: math.unit(7, "cm")
  6095. },
  6096. {
  6097. name: "Normal",
  6098. height: math.unit(1.89, "m")
  6099. },
  6100. {
  6101. name: "Macro",
  6102. height: math.unit(353, "meters"),
  6103. default: true
  6104. }
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6109. {
  6110. front: {
  6111. height: math.unit(1.93, "meters"),
  6112. weight: math.unit(83, "kg"),
  6113. name: "Front",
  6114. image: {
  6115. source: "./media/characters/samantha/front.svg"
  6116. }
  6117. },
  6118. frontClothed: {
  6119. height: math.unit(1.93, "meters"),
  6120. weight: math.unit(83, "kg"),
  6121. name: "Front (Clothed)",
  6122. image: {
  6123. source: "./media/characters/samantha/front-clothed.svg"
  6124. }
  6125. },
  6126. back: {
  6127. height: math.unit(1.93, "meters"),
  6128. weight: math.unit(83, "kg"),
  6129. name: "Back",
  6130. image: {
  6131. source: "./media/characters/samantha/back.svg"
  6132. }
  6133. },
  6134. },
  6135. [
  6136. {
  6137. name: "Normal",
  6138. height: math.unit(1.93, "m")
  6139. },
  6140. {
  6141. name: "Macro",
  6142. height: math.unit(74, "meters"),
  6143. default: true
  6144. },
  6145. {
  6146. name: "Macro+",
  6147. height: math.unit(223, "meters"),
  6148. },
  6149. {
  6150. name: "Megamacro",
  6151. height: math.unit(8381, "meters"),
  6152. },
  6153. {
  6154. name: "Megamacro+",
  6155. height: math.unit(12000, "kilometers")
  6156. },
  6157. ]
  6158. ))
  6159. characterMakers.push(() => makeCharacter(
  6160. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6161. {
  6162. front: {
  6163. height: math.unit(1.92, "meters"),
  6164. weight: math.unit(80, "kg"),
  6165. name: "Front",
  6166. image: {
  6167. source: "./media/characters/dr-clay/front.svg"
  6168. }
  6169. },
  6170. frontClothed: {
  6171. height: math.unit(1.92, "meters"),
  6172. weight: math.unit(80, "kg"),
  6173. name: "Front (Clothed)",
  6174. image: {
  6175. source: "./media/characters/dr-clay/front-clothed.svg"
  6176. }
  6177. }
  6178. },
  6179. [
  6180. {
  6181. name: "Normal",
  6182. height: math.unit(1.92, "m")
  6183. },
  6184. {
  6185. name: "Macro",
  6186. height: math.unit(214, "meters"),
  6187. default: true
  6188. },
  6189. {
  6190. name: "Macro+",
  6191. height: math.unit(12.237, "meters"),
  6192. },
  6193. {
  6194. name: "Megamacro",
  6195. height: math.unit(557, "megameters"),
  6196. },
  6197. {
  6198. name: "Unimaginable",
  6199. height: math.unit(120e9, "lightyears")
  6200. },
  6201. ]
  6202. ))
  6203. characterMakers.push(() => makeCharacter(
  6204. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6205. {
  6206. front: {
  6207. height: math.unit(2, "meters"),
  6208. weight: math.unit(80, "kg"),
  6209. name: "Front",
  6210. image: {
  6211. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6212. }
  6213. }
  6214. },
  6215. [
  6216. {
  6217. name: "Teramacro",
  6218. height: math.unit(500000, "lightyears"),
  6219. default: true
  6220. },
  6221. ]
  6222. ))
  6223. characterMakers.push(() => makeCharacter(
  6224. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6225. {
  6226. front: {
  6227. height: math.unit(2, "meters"),
  6228. weight: math.unit(150, "kg"),
  6229. name: "Front",
  6230. image: {
  6231. source: "./media/characters/vemus/front.svg",
  6232. extra: 2384 / 2084,
  6233. bottom: 0.0123
  6234. }
  6235. }
  6236. },
  6237. [
  6238. {
  6239. name: "Normal",
  6240. height: math.unit(3.75, "meters"),
  6241. default: true
  6242. },
  6243. {
  6244. name: "Big",
  6245. height: math.unit(8, "meters")
  6246. },
  6247. {
  6248. name: "Macro",
  6249. height: math.unit(100, "meters")
  6250. },
  6251. {
  6252. name: "Macro+",
  6253. height: math.unit(1500, "meters")
  6254. },
  6255. {
  6256. name: "Stellar",
  6257. height: math.unit(14e8, "meters")
  6258. },
  6259. ]
  6260. ))
  6261. characterMakers.push(() => makeCharacter(
  6262. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6263. {
  6264. front: {
  6265. height: math.unit(2, "meters"),
  6266. weight: math.unit(70, "kg"),
  6267. name: "Front",
  6268. image: {
  6269. source: "./media/characters/beherit/front.svg",
  6270. extra: 1408 / 1242
  6271. }
  6272. }
  6273. },
  6274. [
  6275. {
  6276. name: "Normal",
  6277. height: math.unit(6, "feet")
  6278. },
  6279. {
  6280. name: "Lorg",
  6281. height: math.unit(25, "feet"),
  6282. default: true
  6283. },
  6284. {
  6285. name: "Lorger",
  6286. height: math.unit(75, "feet")
  6287. },
  6288. {
  6289. name: "Macro",
  6290. height: math.unit(200, "meters")
  6291. },
  6292. ]
  6293. ))
  6294. characterMakers.push(() => makeCharacter(
  6295. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6296. {
  6297. front: {
  6298. height: math.unit(2, "meters"),
  6299. weight: math.unit(150, "kg"),
  6300. name: "Front",
  6301. image: {
  6302. source: "./media/characters/everett/front.svg",
  6303. extra: 2038 / 1737,
  6304. bottom: 0.03
  6305. }
  6306. },
  6307. paw: {
  6308. height: math.unit(2 / 3.6, "meters"),
  6309. name: "Paw",
  6310. image: {
  6311. source: "./media/characters/everett/paw.svg"
  6312. }
  6313. },
  6314. },
  6315. [
  6316. {
  6317. name: "Normal",
  6318. height: math.unit(15, "feet"),
  6319. default: true
  6320. },
  6321. {
  6322. name: "Lorg",
  6323. height: math.unit(70, "feet"),
  6324. default: true
  6325. },
  6326. {
  6327. name: "Lorger",
  6328. height: math.unit(250, "feet")
  6329. },
  6330. {
  6331. name: "Macro",
  6332. height: math.unit(500, "meters")
  6333. },
  6334. ]
  6335. ))
  6336. characterMakers.push(() => makeCharacter(
  6337. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6338. {
  6339. front: {
  6340. height: math.unit(2, "meters"),
  6341. weight: math.unit(86, "kg"),
  6342. name: "Front",
  6343. image: {
  6344. source: "./media/characters/rose/front.svg",
  6345. extra: 350/335,
  6346. bottom: 10/360
  6347. }
  6348. },
  6349. frontAlt: {
  6350. height: math.unit(1.6, "meters"),
  6351. weight: math.unit(86, "kg"),
  6352. name: "Front (Alt)",
  6353. image: {
  6354. source: "./media/characters/rose/front-alt.svg",
  6355. extra: 299/283,
  6356. bottom: 3/302
  6357. }
  6358. },
  6359. plush: {
  6360. height: math.unit(2, "meters"),
  6361. weight: math.unit(86/3, "kg"),
  6362. name: "Plush",
  6363. image: {
  6364. source: "./media/characters/rose/plush.svg",
  6365. extra: 361/337,
  6366. bottom: 11/372
  6367. }
  6368. },
  6369. },
  6370. [
  6371. {
  6372. name: "Mini-Micro",
  6373. height: math.unit(1, "cm")
  6374. },
  6375. {
  6376. name: "Micro",
  6377. height: math.unit(3.5, "inches"),
  6378. default: true
  6379. },
  6380. {
  6381. name: "Normal",
  6382. height: math.unit(6 + 1 / 6, "feet")
  6383. },
  6384. {
  6385. name: "Mini-Macro",
  6386. height: math.unit(9 + 10 / 12, "feet")
  6387. },
  6388. ]
  6389. ))
  6390. characterMakers.push(() => makeCharacter(
  6391. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6392. {
  6393. front: {
  6394. height: math.unit(2, "meters"),
  6395. weight: math.unit(350, "lbs"),
  6396. name: "Front",
  6397. image: {
  6398. source: "./media/characters/regal/front.svg"
  6399. }
  6400. },
  6401. back: {
  6402. height: math.unit(2, "meters"),
  6403. weight: math.unit(350, "lbs"),
  6404. name: "Back",
  6405. image: {
  6406. source: "./media/characters/regal/back.svg"
  6407. }
  6408. },
  6409. },
  6410. [
  6411. {
  6412. name: "Macro",
  6413. height: math.unit(350, "feet"),
  6414. default: true
  6415. }
  6416. ]
  6417. ))
  6418. characterMakers.push(() => makeCharacter(
  6419. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6420. {
  6421. front: {
  6422. height: math.unit(4 + 11 / 12, "feet"),
  6423. weight: math.unit(100, "lbs"),
  6424. name: "Front",
  6425. image: {
  6426. source: "./media/characters/opal/front.svg"
  6427. }
  6428. },
  6429. frontAlt: {
  6430. height: math.unit(4 + 11 / 12, "feet"),
  6431. weight: math.unit(100, "lbs"),
  6432. name: "Front (Alt)",
  6433. image: {
  6434. source: "./media/characters/opal/front-alt.svg"
  6435. }
  6436. },
  6437. },
  6438. [
  6439. {
  6440. name: "Small",
  6441. height: math.unit(4 + 11 / 12, "feet")
  6442. },
  6443. {
  6444. name: "Normal",
  6445. height: math.unit(20, "feet"),
  6446. default: true
  6447. },
  6448. {
  6449. name: "Macro",
  6450. height: math.unit(120, "feet")
  6451. },
  6452. {
  6453. name: "Megamacro",
  6454. height: math.unit(80, "miles")
  6455. },
  6456. {
  6457. name: "True Size",
  6458. height: math.unit(100000, "lightyears")
  6459. },
  6460. ]
  6461. ))
  6462. characterMakers.push(() => makeCharacter(
  6463. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6464. {
  6465. front: {
  6466. height: math.unit(6, "feet"),
  6467. weight: math.unit(200, "lbs"),
  6468. name: "Front",
  6469. image: {
  6470. source: "./media/characters/vector-wuff/front.svg"
  6471. }
  6472. }
  6473. },
  6474. [
  6475. {
  6476. name: "Normal",
  6477. height: math.unit(2.8, "meters")
  6478. },
  6479. {
  6480. name: "Macro",
  6481. height: math.unit(450, "meters"),
  6482. default: true
  6483. },
  6484. {
  6485. name: "Megamacro",
  6486. height: math.unit(15, "kilometers")
  6487. }
  6488. ]
  6489. ))
  6490. characterMakers.push(() => makeCharacter(
  6491. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6492. {
  6493. front: {
  6494. height: math.unit(6, "feet"),
  6495. weight: math.unit(256, "lbs"),
  6496. name: "Front",
  6497. image: {
  6498. source: "./media/characters/dannik/front.svg"
  6499. }
  6500. }
  6501. },
  6502. [
  6503. {
  6504. name: "Macro",
  6505. height: math.unit(69.57, "meters"),
  6506. default: true
  6507. },
  6508. ]
  6509. ))
  6510. characterMakers.push(() => makeCharacter(
  6511. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6512. {
  6513. front: {
  6514. height: math.unit(6, "feet"),
  6515. weight: math.unit(120, "lbs"),
  6516. name: "Front",
  6517. image: {
  6518. source: "./media/characters/azura-saharah/front.svg"
  6519. }
  6520. },
  6521. back: {
  6522. height: math.unit(6, "feet"),
  6523. weight: math.unit(120, "lbs"),
  6524. name: "Back",
  6525. image: {
  6526. source: "./media/characters/azura-saharah/back.svg"
  6527. }
  6528. },
  6529. },
  6530. [
  6531. {
  6532. name: "Macro",
  6533. height: math.unit(100, "feet"),
  6534. default: true
  6535. },
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6540. {
  6541. side: {
  6542. height: math.unit(5 + 4 / 12, "feet"),
  6543. weight: math.unit(163, "lbs"),
  6544. name: "Side",
  6545. image: {
  6546. source: "./media/characters/kennedy/side.svg"
  6547. }
  6548. }
  6549. },
  6550. [
  6551. {
  6552. name: "Standard Doggo",
  6553. height: math.unit(5 + 4 / 12, "feet")
  6554. },
  6555. {
  6556. name: "Big Doggo",
  6557. height: math.unit(25 + 3 / 12, "feet"),
  6558. default: true
  6559. },
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(90, "lbs"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/odi-lunar/front.svg"
  6571. }
  6572. }
  6573. },
  6574. [
  6575. {
  6576. name: "Micro",
  6577. height: math.unit(3, "inches"),
  6578. default: true
  6579. },
  6580. {
  6581. name: "Normal",
  6582. height: math.unit(5.5, "feet")
  6583. }
  6584. ]
  6585. ))
  6586. characterMakers.push(() => makeCharacter(
  6587. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6588. {
  6589. back: {
  6590. height: math.unit(6, "feet"),
  6591. weight: math.unit(220, "lbs"),
  6592. name: "Back",
  6593. image: {
  6594. source: "./media/characters/mandake/back.svg"
  6595. }
  6596. }
  6597. },
  6598. [
  6599. {
  6600. name: "Normal",
  6601. height: math.unit(7, "feet"),
  6602. default: true
  6603. },
  6604. {
  6605. name: "Macro",
  6606. height: math.unit(78, "feet")
  6607. },
  6608. {
  6609. name: "Macro+",
  6610. height: math.unit(300, "meters")
  6611. },
  6612. {
  6613. name: "Macro++",
  6614. height: math.unit(2400, "feet")
  6615. },
  6616. {
  6617. name: "Megamacro",
  6618. height: math.unit(5167, "meters")
  6619. },
  6620. {
  6621. name: "Gigamacro",
  6622. height: math.unit(41769, "miles")
  6623. },
  6624. ]
  6625. ))
  6626. characterMakers.push(() => makeCharacter(
  6627. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6628. {
  6629. front: {
  6630. height: math.unit(6, "feet"),
  6631. weight: math.unit(120, "lbs"),
  6632. name: "Front",
  6633. image: {
  6634. source: "./media/characters/yozey/front.svg"
  6635. }
  6636. },
  6637. frontAlt: {
  6638. height: math.unit(6, "feet"),
  6639. weight: math.unit(120, "lbs"),
  6640. name: "Front (Alt)",
  6641. image: {
  6642. source: "./media/characters/yozey/front-alt.svg"
  6643. }
  6644. },
  6645. side: {
  6646. height: math.unit(6, "feet"),
  6647. weight: math.unit(120, "lbs"),
  6648. name: "Side",
  6649. image: {
  6650. source: "./media/characters/yozey/side.svg"
  6651. }
  6652. },
  6653. },
  6654. [
  6655. {
  6656. name: "Micro",
  6657. height: math.unit(3, "inches"),
  6658. default: true
  6659. },
  6660. {
  6661. name: "Normal",
  6662. height: math.unit(6, "feet")
  6663. }
  6664. ]
  6665. ))
  6666. characterMakers.push(() => makeCharacter(
  6667. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6668. {
  6669. front: {
  6670. height: math.unit(6, "feet"),
  6671. weight: math.unit(103, "lbs"),
  6672. name: "Front",
  6673. image: {
  6674. source: "./media/characters/valeska-voss/front.svg"
  6675. }
  6676. }
  6677. },
  6678. [
  6679. {
  6680. name: "Mini-Sized Sub",
  6681. height: math.unit(3.1, "inches")
  6682. },
  6683. {
  6684. name: "Mid-Sized Sub",
  6685. height: math.unit(6.2, "inches")
  6686. },
  6687. {
  6688. name: "Full-Sized Sub",
  6689. height: math.unit(9.3, "inches")
  6690. },
  6691. {
  6692. name: "Normal",
  6693. height: math.unit(5 + 2 / 12, "foot"),
  6694. default: true
  6695. },
  6696. ]
  6697. ))
  6698. characterMakers.push(() => makeCharacter(
  6699. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6700. {
  6701. front: {
  6702. height: math.unit(6, "feet"),
  6703. weight: math.unit(160, "lbs"),
  6704. name: "Front",
  6705. image: {
  6706. source: "./media/characters/gene-zeta/front.svg",
  6707. extra: 3006 / 2826,
  6708. bottom: 182 / 3188
  6709. }
  6710. }
  6711. },
  6712. [
  6713. {
  6714. name: "Micro",
  6715. height: math.unit(6, "inches")
  6716. },
  6717. {
  6718. name: "Normal",
  6719. height: math.unit(5 + 11 / 12, "foot"),
  6720. default: true
  6721. },
  6722. {
  6723. name: "Macro",
  6724. height: math.unit(140, "feet")
  6725. },
  6726. {
  6727. name: "Supercharged",
  6728. height: math.unit(2500, "feet")
  6729. },
  6730. ]
  6731. ))
  6732. characterMakers.push(() => makeCharacter(
  6733. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6734. {
  6735. front: {
  6736. height: math.unit(6, "feet"),
  6737. weight: math.unit(350, "lbs"),
  6738. name: "Front",
  6739. image: {
  6740. source: "./media/characters/razinox/front.svg",
  6741. extra: 1686 / 1548,
  6742. bottom: 28.2 / 1868
  6743. }
  6744. },
  6745. back: {
  6746. height: math.unit(6, "feet"),
  6747. weight: math.unit(350, "lbs"),
  6748. name: "Back",
  6749. image: {
  6750. source: "./media/characters/razinox/back.svg",
  6751. extra: 1660 / 1590,
  6752. bottom: 15 / 1665
  6753. }
  6754. },
  6755. },
  6756. [
  6757. {
  6758. name: "Normal",
  6759. height: math.unit(10 + 8 / 12, "foot")
  6760. },
  6761. {
  6762. name: "Minimacro",
  6763. height: math.unit(15, "foot")
  6764. },
  6765. {
  6766. name: "Macro",
  6767. height: math.unit(60, "foot"),
  6768. default: true
  6769. },
  6770. {
  6771. name: "Megamacro",
  6772. height: math.unit(5, "miles")
  6773. },
  6774. {
  6775. name: "Gigamacro",
  6776. height: math.unit(6000, "miles")
  6777. },
  6778. ]
  6779. ))
  6780. characterMakers.push(() => makeCharacter(
  6781. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6782. {
  6783. front: {
  6784. height: math.unit(6, "feet"),
  6785. weight: math.unit(150, "lbs"),
  6786. name: "Front",
  6787. image: {
  6788. source: "./media/characters/cobalt/front.svg"
  6789. }
  6790. }
  6791. },
  6792. [
  6793. {
  6794. name: "Normal",
  6795. height: math.unit(8 + 1 / 12, "foot")
  6796. },
  6797. {
  6798. name: "Macro",
  6799. height: math.unit(111, "foot"),
  6800. default: true
  6801. },
  6802. {
  6803. name: "Supracosmic",
  6804. height: math.unit(1e42, "feet")
  6805. },
  6806. ]
  6807. ))
  6808. characterMakers.push(() => makeCharacter(
  6809. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6810. {
  6811. front: {
  6812. height: math.unit(6, "feet"),
  6813. weight: math.unit(140, "lbs"),
  6814. name: "Front",
  6815. image: {
  6816. source: "./media/characters/amanda/front.svg"
  6817. }
  6818. }
  6819. },
  6820. [
  6821. {
  6822. name: "Micro",
  6823. height: math.unit(5, "inches"),
  6824. default: true
  6825. },
  6826. ]
  6827. ))
  6828. characterMakers.push(() => makeCharacter(
  6829. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6830. {
  6831. front: {
  6832. height: math.unit(2.75, "meters"),
  6833. weight: math.unit(1200, "lb"),
  6834. name: "Front",
  6835. image: {
  6836. source: "./media/characters/teal/front.svg",
  6837. extra: 2463 / 2320,
  6838. bottom: 166 / 2629
  6839. }
  6840. },
  6841. back: {
  6842. height: math.unit(2.75, "meters"),
  6843. weight: math.unit(1200, "lb"),
  6844. name: "Back",
  6845. image: {
  6846. source: "./media/characters/teal/back.svg",
  6847. extra: 2580 / 2489,
  6848. bottom: 151 / 2731
  6849. }
  6850. },
  6851. sitting: {
  6852. height: math.unit(1.9, "meters"),
  6853. weight: math.unit(1200, "lb"),
  6854. name: "Sitting",
  6855. image: {
  6856. source: "./media/characters/teal/sitting.svg",
  6857. extra: 623 / 590,
  6858. bottom: 121 / 744
  6859. }
  6860. },
  6861. standing: {
  6862. height: math.unit(2.75, "meters"),
  6863. weight: math.unit(1200, "lb"),
  6864. name: "Standing",
  6865. image: {
  6866. source: "./media/characters/teal/standing.svg",
  6867. extra: 923 / 893,
  6868. bottom: 60 / 983
  6869. }
  6870. },
  6871. stretching: {
  6872. height: math.unit(3.65, "meters"),
  6873. weight: math.unit(1200, "lb"),
  6874. name: "Stretching",
  6875. image: {
  6876. source: "./media/characters/teal/stretching.svg",
  6877. extra: 1276 / 1244,
  6878. bottom: 0 / 1276
  6879. }
  6880. },
  6881. legged: {
  6882. height: math.unit(1.3, "meters"),
  6883. weight: math.unit(100, "lb"),
  6884. name: "Legged",
  6885. image: {
  6886. source: "./media/characters/teal/legged.svg",
  6887. extra: 462 / 437,
  6888. bottom: 24 / 486
  6889. }
  6890. },
  6891. naga: {
  6892. height: math.unit(5.4, "meters"),
  6893. weight: math.unit(4000, "lb"),
  6894. name: "Naga",
  6895. image: {
  6896. source: "./media/characters/teal/naga.svg",
  6897. extra: 1902 / 1858,
  6898. bottom: 0 / 1902
  6899. }
  6900. },
  6901. hand: {
  6902. height: math.unit(0.52, "meters"),
  6903. name: "Hand",
  6904. image: {
  6905. source: "./media/characters/teal/hand.svg"
  6906. }
  6907. },
  6908. maw: {
  6909. height: math.unit(0.43, "meters"),
  6910. name: "Maw",
  6911. image: {
  6912. source: "./media/characters/teal/maw.svg"
  6913. }
  6914. },
  6915. slit: {
  6916. height: math.unit(0.25, "meters"),
  6917. name: "Slit",
  6918. image: {
  6919. source: "./media/characters/teal/slit.svg"
  6920. }
  6921. },
  6922. },
  6923. [
  6924. {
  6925. name: "Normal",
  6926. height: math.unit(2.75, "meters"),
  6927. default: true
  6928. },
  6929. {
  6930. name: "Macro",
  6931. height: math.unit(300, "feet")
  6932. },
  6933. {
  6934. name: "Macro+",
  6935. height: math.unit(2000, "feet")
  6936. },
  6937. ]
  6938. ))
  6939. characterMakers.push(() => makeCharacter(
  6940. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6941. {
  6942. frontCat: {
  6943. height: math.unit(6, "feet"),
  6944. weight: math.unit(180, "lbs"),
  6945. name: "Front (Cat)",
  6946. image: {
  6947. source: "./media/characters/ravin-amulet/front-cat.svg"
  6948. }
  6949. },
  6950. frontCatAlt: {
  6951. height: math.unit(6, "feet"),
  6952. weight: math.unit(180, "lbs"),
  6953. name: "Front (Alt, Cat)",
  6954. image: {
  6955. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6956. }
  6957. },
  6958. frontWerewolf: {
  6959. height: math.unit(6 * 1.2, "feet"),
  6960. weight: math.unit(225, "lbs"),
  6961. name: "Front (Werewolf)",
  6962. image: {
  6963. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6964. }
  6965. },
  6966. backWerewolf: {
  6967. height: math.unit(6 * 1.2, "feet"),
  6968. weight: math.unit(225, "lbs"),
  6969. name: "Back (Werewolf)",
  6970. image: {
  6971. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6972. }
  6973. },
  6974. },
  6975. [
  6976. {
  6977. name: "Nano",
  6978. height: math.unit(1, "micrometer")
  6979. },
  6980. {
  6981. name: "Micro",
  6982. height: math.unit(1, "inch")
  6983. },
  6984. {
  6985. name: "Normal",
  6986. height: math.unit(6, "feet"),
  6987. default: true
  6988. },
  6989. {
  6990. name: "Macro",
  6991. height: math.unit(60, "feet")
  6992. }
  6993. ]
  6994. ))
  6995. characterMakers.push(() => makeCharacter(
  6996. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6997. {
  6998. front: {
  6999. height: math.unit(6, "feet"),
  7000. weight: math.unit(165, "lbs"),
  7001. name: "Front",
  7002. image: {
  7003. source: "./media/characters/fluoresce/front.svg"
  7004. }
  7005. }
  7006. },
  7007. [
  7008. {
  7009. name: "Micro",
  7010. height: math.unit(6, "cm")
  7011. },
  7012. {
  7013. name: "Normal",
  7014. height: math.unit(5 + 7 / 12, "feet"),
  7015. default: true
  7016. },
  7017. {
  7018. name: "Macro",
  7019. height: math.unit(56, "feet")
  7020. },
  7021. {
  7022. name: "Megamacro",
  7023. height: math.unit(1.9, "miles")
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(9 + 6 / 12, "feet"),
  7032. weight: math.unit(523, "lbs"),
  7033. name: "Side",
  7034. image: {
  7035. source: "./media/characters/aurora/side.svg"
  7036. }
  7037. }
  7038. },
  7039. [
  7040. {
  7041. name: "Normal",
  7042. height: math.unit(9 + 6 / 12, "feet")
  7043. },
  7044. {
  7045. name: "Macro",
  7046. height: math.unit(96, "feet"),
  7047. default: true
  7048. },
  7049. {
  7050. name: "Macro+",
  7051. height: math.unit(243, "feet")
  7052. },
  7053. ]
  7054. ))
  7055. characterMakers.push(() => makeCharacter(
  7056. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7057. {
  7058. front: {
  7059. height: math.unit(194, "cm"),
  7060. weight: math.unit(90, "kg"),
  7061. name: "Front",
  7062. image: {
  7063. source: "./media/characters/ranek/front.svg"
  7064. }
  7065. },
  7066. side: {
  7067. height: math.unit(194, "cm"),
  7068. weight: math.unit(90, "kg"),
  7069. name: "Side",
  7070. image: {
  7071. source: "./media/characters/ranek/side.svg"
  7072. }
  7073. },
  7074. back: {
  7075. height: math.unit(194, "cm"),
  7076. weight: math.unit(90, "kg"),
  7077. name: "Back",
  7078. image: {
  7079. source: "./media/characters/ranek/back.svg"
  7080. }
  7081. },
  7082. feral: {
  7083. height: math.unit(30, "cm"),
  7084. weight: math.unit(1.6, "lbs"),
  7085. name: "Feral",
  7086. image: {
  7087. source: "./media/characters/ranek/feral.svg"
  7088. }
  7089. },
  7090. },
  7091. [
  7092. {
  7093. name: "Normal",
  7094. height: math.unit(194, "cm"),
  7095. default: true
  7096. },
  7097. {
  7098. name: "Macro",
  7099. height: math.unit(100, "meters")
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(5 + 6 / 12, "feet"),
  7108. weight: math.unit(153, "lbs"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/andrew-cooper/front.svg"
  7112. }
  7113. },
  7114. },
  7115. [
  7116. {
  7117. name: "Nano",
  7118. height: math.unit(1, "mm")
  7119. },
  7120. {
  7121. name: "Micro",
  7122. height: math.unit(2, "inches")
  7123. },
  7124. {
  7125. name: "Normal",
  7126. height: math.unit(5 + 6 / 12, "feet"),
  7127. default: true
  7128. }
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(180, "lbs"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/akane-sato/front.svg",
  7140. extra: 1219 / 1140
  7141. }
  7142. },
  7143. back: {
  7144. height: math.unit(6, "feet"),
  7145. weight: math.unit(180, "lbs"),
  7146. name: "Back",
  7147. image: {
  7148. source: "./media/characters/akane-sato/back.svg",
  7149. extra: 1219 / 1170
  7150. }
  7151. },
  7152. },
  7153. [
  7154. {
  7155. name: "Normal",
  7156. height: math.unit(2.5, "meters")
  7157. },
  7158. {
  7159. name: "Macro",
  7160. height: math.unit(250, "meters"),
  7161. default: true
  7162. },
  7163. {
  7164. name: "Megamacro",
  7165. height: math.unit(25, "km")
  7166. },
  7167. ]
  7168. ))
  7169. characterMakers.push(() => makeCharacter(
  7170. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7171. {
  7172. front: {
  7173. height: math.unit(6, "feet"),
  7174. weight: math.unit(65, "kg"),
  7175. name: "Front",
  7176. image: {
  7177. source: "./media/characters/rook/front.svg",
  7178. extra: 960 / 950
  7179. }
  7180. }
  7181. },
  7182. [
  7183. {
  7184. name: "Normal",
  7185. height: math.unit(8.8, "feet")
  7186. },
  7187. {
  7188. name: "Macro",
  7189. height: math.unit(88, "feet"),
  7190. default: true
  7191. },
  7192. {
  7193. name: "Megamacro",
  7194. height: math.unit(8, "miles")
  7195. },
  7196. ]
  7197. ))
  7198. characterMakers.push(() => makeCharacter(
  7199. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7200. {
  7201. front: {
  7202. height: math.unit(12 + 2 / 12, "feet"),
  7203. weight: math.unit(808, "lbs"),
  7204. name: "Front",
  7205. image: {
  7206. source: "./media/characters/prodigy/front.svg"
  7207. }
  7208. }
  7209. },
  7210. [
  7211. {
  7212. name: "Normal",
  7213. height: math.unit(12 + 2 / 12, "feet"),
  7214. default: true
  7215. },
  7216. {
  7217. name: "Macro",
  7218. height: math.unit(143, "feet")
  7219. },
  7220. {
  7221. name: "Macro+",
  7222. height: math.unit(400, "feet")
  7223. },
  7224. ]
  7225. ))
  7226. characterMakers.push(() => makeCharacter(
  7227. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7228. {
  7229. front: {
  7230. height: math.unit(6, "feet"),
  7231. weight: math.unit(225, "lbs"),
  7232. name: "Front",
  7233. image: {
  7234. source: "./media/characters/daniel/front.svg"
  7235. }
  7236. },
  7237. leaning: {
  7238. height: math.unit(6, "feet"),
  7239. weight: math.unit(225, "lbs"),
  7240. name: "Leaning",
  7241. image: {
  7242. source: "./media/characters/daniel/leaning.svg"
  7243. }
  7244. },
  7245. },
  7246. [
  7247. {
  7248. name: "Macro",
  7249. height: math.unit(1000, "feet"),
  7250. default: true
  7251. },
  7252. ]
  7253. ))
  7254. characterMakers.push(() => makeCharacter(
  7255. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7256. {
  7257. front: {
  7258. height: math.unit(6, "feet"),
  7259. weight: math.unit(88, "lbs"),
  7260. name: "Front",
  7261. image: {
  7262. source: "./media/characters/chiros/front.svg",
  7263. extra: 306 / 226
  7264. }
  7265. },
  7266. side: {
  7267. height: math.unit(6, "feet"),
  7268. weight: math.unit(88, "lbs"),
  7269. name: "Side",
  7270. image: {
  7271. source: "./media/characters/chiros/side.svg",
  7272. extra: 306 / 226
  7273. }
  7274. },
  7275. },
  7276. [
  7277. {
  7278. name: "Normal",
  7279. height: math.unit(6, "cm"),
  7280. default: true
  7281. },
  7282. ]
  7283. ))
  7284. characterMakers.push(() => makeCharacter(
  7285. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7286. {
  7287. front: {
  7288. height: math.unit(6, "feet"),
  7289. weight: math.unit(100, "lbs"),
  7290. name: "Front",
  7291. image: {
  7292. source: "./media/characters/selka/front.svg",
  7293. extra: 947 / 887
  7294. }
  7295. }
  7296. },
  7297. [
  7298. {
  7299. name: "Normal",
  7300. height: math.unit(5, "cm"),
  7301. default: true
  7302. },
  7303. ]
  7304. ))
  7305. characterMakers.push(() => makeCharacter(
  7306. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7307. {
  7308. front: {
  7309. height: math.unit(8 + 3 / 12, "feet"),
  7310. weight: math.unit(424, "lbs"),
  7311. name: "Front",
  7312. image: {
  7313. source: "./media/characters/verin/front.svg",
  7314. extra: 1845 / 1550
  7315. }
  7316. },
  7317. frontArmored: {
  7318. height: math.unit(8 + 3 / 12, "feet"),
  7319. weight: math.unit(424, "lbs"),
  7320. name: "Front (Armored)",
  7321. image: {
  7322. source: "./media/characters/verin/front-armor.svg",
  7323. extra: 1845 / 1550,
  7324. bottom: 0.01
  7325. }
  7326. },
  7327. back: {
  7328. height: math.unit(8 + 3 / 12, "feet"),
  7329. weight: math.unit(424, "lbs"),
  7330. name: "Back",
  7331. image: {
  7332. source: "./media/characters/verin/back.svg",
  7333. bottom: 0.1,
  7334. extra: 1
  7335. }
  7336. },
  7337. foot: {
  7338. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7339. name: "Foot",
  7340. image: {
  7341. source: "./media/characters/verin/foot.svg"
  7342. }
  7343. },
  7344. },
  7345. [
  7346. {
  7347. name: "Normal",
  7348. height: math.unit(8 + 3 / 12, "feet")
  7349. },
  7350. {
  7351. name: "Minimacro",
  7352. height: math.unit(21, "feet"),
  7353. default: true
  7354. },
  7355. {
  7356. name: "Macro",
  7357. height: math.unit(626, "feet")
  7358. },
  7359. ]
  7360. ))
  7361. characterMakers.push(() => makeCharacter(
  7362. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7363. {
  7364. front: {
  7365. height: math.unit(2.718, "meters"),
  7366. weight: math.unit(150, "lbs"),
  7367. name: "Front",
  7368. image: {
  7369. source: "./media/characters/sovrim-terraquian/front.svg"
  7370. }
  7371. },
  7372. back: {
  7373. height: math.unit(2.718, "meters"),
  7374. weight: math.unit(150, "lbs"),
  7375. name: "Back",
  7376. image: {
  7377. source: "./media/characters/sovrim-terraquian/back.svg"
  7378. }
  7379. }
  7380. },
  7381. [
  7382. {
  7383. name: "Micro",
  7384. height: math.unit(2, "inches")
  7385. },
  7386. {
  7387. name: "Small",
  7388. height: math.unit(1, "meter")
  7389. },
  7390. {
  7391. name: "Normal",
  7392. height: math.unit(Math.E, "meters"),
  7393. default: true
  7394. },
  7395. {
  7396. name: "Macro",
  7397. height: math.unit(20, "meters")
  7398. },
  7399. {
  7400. name: "Macro+",
  7401. height: math.unit(400, "meters")
  7402. },
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7407. {
  7408. front: {
  7409. height: math.unit(7, "feet"),
  7410. weight: math.unit(489, "lbs"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/reece-silvermane/front.svg",
  7414. bottom: 0.02,
  7415. extra: 1
  7416. }
  7417. },
  7418. },
  7419. [
  7420. {
  7421. name: "Macro",
  7422. height: math.unit(1.5, "miles"),
  7423. default: true
  7424. },
  7425. ]
  7426. ))
  7427. characterMakers.push(() => makeCharacter(
  7428. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7429. {
  7430. front: {
  7431. height: math.unit(6, "feet"),
  7432. weight: math.unit(78, "kg"),
  7433. name: "Front",
  7434. image: {
  7435. source: "./media/characters/kane/front.svg",
  7436. extra: 978 / 899
  7437. }
  7438. },
  7439. },
  7440. [
  7441. {
  7442. name: "Normal",
  7443. height: math.unit(2.1, "m"),
  7444. },
  7445. {
  7446. name: "Macro",
  7447. height: math.unit(1, "km"),
  7448. default: true
  7449. },
  7450. ]
  7451. ))
  7452. characterMakers.push(() => makeCharacter(
  7453. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7454. {
  7455. front: {
  7456. height: math.unit(6, "feet"),
  7457. weight: math.unit(200, "kg"),
  7458. name: "Front",
  7459. image: {
  7460. source: "./media/characters/tegon/front.svg",
  7461. bottom: 0.01,
  7462. extra: 1
  7463. }
  7464. },
  7465. },
  7466. [
  7467. {
  7468. name: "Micro",
  7469. height: math.unit(1, "inch")
  7470. },
  7471. {
  7472. name: "Normal",
  7473. height: math.unit(6 + 3 / 12, "feet"),
  7474. default: true
  7475. },
  7476. {
  7477. name: "Macro",
  7478. height: math.unit(300, "feet")
  7479. },
  7480. {
  7481. name: "Megamacro",
  7482. height: math.unit(69, "miles")
  7483. },
  7484. ]
  7485. ))
  7486. characterMakers.push(() => makeCharacter(
  7487. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7488. {
  7489. side: {
  7490. height: math.unit(6, "feet"),
  7491. weight: math.unit(2304, "lbs"),
  7492. name: "Side",
  7493. image: {
  7494. source: "./media/characters/arcturax/side.svg",
  7495. extra: 790 / 376,
  7496. bottom: 0.01
  7497. }
  7498. },
  7499. },
  7500. [
  7501. {
  7502. name: "Micro",
  7503. height: math.unit(2, "inch")
  7504. },
  7505. {
  7506. name: "Normal",
  7507. height: math.unit(6, "feet")
  7508. },
  7509. {
  7510. name: "Macro",
  7511. height: math.unit(39, "feet"),
  7512. default: true
  7513. },
  7514. {
  7515. name: "Megamacro",
  7516. height: math.unit(7, "miles")
  7517. },
  7518. ]
  7519. ))
  7520. characterMakers.push(() => makeCharacter(
  7521. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7522. {
  7523. front: {
  7524. height: math.unit(6, "feet"),
  7525. weight: math.unit(50, "lbs"),
  7526. name: "Front",
  7527. image: {
  7528. source: "./media/characters/sentri/front.svg",
  7529. extra: 1750 / 1570,
  7530. bottom: 0.025
  7531. }
  7532. },
  7533. frontAlt: {
  7534. height: math.unit(6, "feet"),
  7535. weight: math.unit(50, "lbs"),
  7536. name: "Front (Alt)",
  7537. image: {
  7538. source: "./media/characters/sentri/front-alt.svg",
  7539. extra: 1750 / 1570,
  7540. bottom: 0.025
  7541. }
  7542. },
  7543. },
  7544. [
  7545. {
  7546. name: "Normal",
  7547. height: math.unit(15, "feet"),
  7548. default: true
  7549. },
  7550. {
  7551. name: "Macro",
  7552. height: math.unit(2500, "feet")
  7553. }
  7554. ]
  7555. ))
  7556. characterMakers.push(() => makeCharacter(
  7557. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7558. {
  7559. front: {
  7560. height: math.unit(5 + 8 / 12, "feet"),
  7561. weight: math.unit(130, "lbs"),
  7562. name: "Front",
  7563. image: {
  7564. source: "./media/characters/corvin/front.svg",
  7565. extra: 1803 / 1629
  7566. }
  7567. },
  7568. frontShirt: {
  7569. height: math.unit(5 + 8 / 12, "feet"),
  7570. weight: math.unit(130, "lbs"),
  7571. name: "Front (Shirt)",
  7572. image: {
  7573. source: "./media/characters/corvin/front-shirt.svg",
  7574. extra: 1803 / 1629
  7575. }
  7576. },
  7577. frontPoncho: {
  7578. height: math.unit(5 + 8 / 12, "feet"),
  7579. weight: math.unit(130, "lbs"),
  7580. name: "Front (Poncho)",
  7581. image: {
  7582. source: "./media/characters/corvin/front-poncho.svg",
  7583. extra: 1803 / 1629
  7584. }
  7585. },
  7586. side: {
  7587. height: math.unit(5 + 8 / 12, "feet"),
  7588. weight: math.unit(130, "lbs"),
  7589. name: "Side",
  7590. image: {
  7591. source: "./media/characters/corvin/side.svg",
  7592. extra: 1012 / 945
  7593. }
  7594. },
  7595. back: {
  7596. height: math.unit(5 + 8 / 12, "feet"),
  7597. weight: math.unit(130, "lbs"),
  7598. name: "Back",
  7599. image: {
  7600. source: "./media/characters/corvin/back.svg",
  7601. extra: 1803 / 1629
  7602. }
  7603. },
  7604. },
  7605. [
  7606. {
  7607. name: "Micro",
  7608. height: math.unit(3, "inches")
  7609. },
  7610. {
  7611. name: "Normal",
  7612. height: math.unit(5 + 8 / 12, "feet")
  7613. },
  7614. {
  7615. name: "Macro",
  7616. height: math.unit(300, "feet"),
  7617. default: true
  7618. },
  7619. {
  7620. name: "Megamacro",
  7621. height: math.unit(500, "miles")
  7622. }
  7623. ]
  7624. ))
  7625. characterMakers.push(() => makeCharacter(
  7626. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7627. {
  7628. front: {
  7629. height: math.unit(6, "feet"),
  7630. weight: math.unit(135, "lbs"),
  7631. name: "Front",
  7632. image: {
  7633. source: "./media/characters/q/front.svg",
  7634. extra: 854 / 752,
  7635. bottom: 0.005
  7636. }
  7637. },
  7638. back: {
  7639. height: math.unit(6, "feet"),
  7640. weight: math.unit(130, "lbs"),
  7641. name: "Back",
  7642. image: {
  7643. source: "./media/characters/q/back.svg",
  7644. extra: 854 / 752
  7645. }
  7646. },
  7647. },
  7648. [
  7649. {
  7650. name: "Macro",
  7651. height: math.unit(90, "feet"),
  7652. default: true
  7653. },
  7654. {
  7655. name: "Extra Macro",
  7656. height: math.unit(300, "feet"),
  7657. },
  7658. {
  7659. name: "BIG WALF",
  7660. height: math.unit(750, "feet"),
  7661. },
  7662. ]
  7663. ))
  7664. characterMakers.push(() => makeCharacter(
  7665. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7666. {
  7667. front: {
  7668. height: math.unit(6, "feet"),
  7669. weight: math.unit(150, "lbs"),
  7670. name: "Front",
  7671. image: {
  7672. source: "./media/characters/carley/front.svg",
  7673. extra: 3927 / 3540,
  7674. bottom: 29.2 / 735
  7675. }
  7676. }
  7677. },
  7678. [
  7679. {
  7680. name: "Normal",
  7681. height: math.unit(6 + 3 / 12, "feet")
  7682. },
  7683. {
  7684. name: "Macro",
  7685. height: math.unit(185, "feet"),
  7686. default: true
  7687. },
  7688. {
  7689. name: "Megamacro",
  7690. height: math.unit(8, "miles"),
  7691. },
  7692. ]
  7693. ))
  7694. characterMakers.push(() => makeCharacter(
  7695. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7696. {
  7697. front: {
  7698. height: math.unit(3, "feet"),
  7699. weight: math.unit(28, "lbs"),
  7700. name: "Front",
  7701. image: {
  7702. source: "./media/characters/citrine/front.svg"
  7703. }
  7704. }
  7705. },
  7706. [
  7707. {
  7708. name: "Normal",
  7709. height: math.unit(3, "feet"),
  7710. default: true
  7711. }
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7716. {
  7717. front: {
  7718. height: math.unit(14, "feet"),
  7719. weight: math.unit(1450, "kg"),
  7720. capacity: math.unit(15, "people"),
  7721. name: "Front",
  7722. image: {
  7723. source: "./media/characters/aura-starwind/front.svg",
  7724. extra: 1455 / 1335
  7725. }
  7726. },
  7727. side: {
  7728. height: math.unit(14, "feet"),
  7729. weight: math.unit(1450, "kg"),
  7730. capacity: math.unit(15, "people"),
  7731. name: "Side",
  7732. image: {
  7733. source: "./media/characters/aura-starwind/side.svg",
  7734. extra: 1654 / 1497
  7735. }
  7736. },
  7737. taur: {
  7738. height: math.unit(18, "feet"),
  7739. weight: math.unit(5500, "kg"),
  7740. capacity: math.unit(50, "people"),
  7741. name: "Taur",
  7742. image: {
  7743. source: "./media/characters/aura-starwind/taur.svg",
  7744. extra: 1760 / 1650
  7745. }
  7746. },
  7747. feral: {
  7748. height: math.unit(46, "feet"),
  7749. weight: math.unit(25000, "kg"),
  7750. capacity: math.unit(120, "people"),
  7751. name: "Feral",
  7752. image: {
  7753. source: "./media/characters/aura-starwind/feral.svg"
  7754. }
  7755. },
  7756. },
  7757. [
  7758. {
  7759. name: "Normal",
  7760. height: math.unit(14, "feet"),
  7761. default: true
  7762. },
  7763. {
  7764. name: "Macro",
  7765. height: math.unit(50, "meters")
  7766. },
  7767. {
  7768. name: "Megamacro",
  7769. height: math.unit(5000, "meters")
  7770. },
  7771. {
  7772. name: "Gigamacro",
  7773. height: math.unit(100000, "kilometers")
  7774. },
  7775. ]
  7776. ))
  7777. characterMakers.push(() => makeCharacter(
  7778. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7779. {
  7780. front: {
  7781. height: math.unit(2 + 7 / 12, "feet"),
  7782. weight: math.unit(32, "lbs"),
  7783. name: "Front",
  7784. image: {
  7785. source: "./media/characters/rivet/front.svg",
  7786. extra: 1716 / 1658,
  7787. bottom: 0.03
  7788. }
  7789. },
  7790. foot: {
  7791. height: math.unit(0.551, "feet"),
  7792. name: "Rivet's Foot",
  7793. image: {
  7794. source: "./media/characters/rivet/foot.svg"
  7795. },
  7796. rename: true
  7797. }
  7798. },
  7799. [
  7800. {
  7801. name: "Micro",
  7802. height: math.unit(1.5, "inches"),
  7803. },
  7804. {
  7805. name: "Normal",
  7806. height: math.unit(2 + 7 / 12, "feet"),
  7807. default: true
  7808. },
  7809. {
  7810. name: "Macro",
  7811. height: math.unit(85, "feet")
  7812. },
  7813. {
  7814. name: "Megamacro",
  7815. height: math.unit(2.2, "km")
  7816. }
  7817. ]
  7818. ))
  7819. characterMakers.push(() => makeCharacter(
  7820. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7821. {
  7822. front: {
  7823. height: math.unit(5 + 9 / 12, "feet"),
  7824. weight: math.unit(150, "lbs"),
  7825. name: "Front",
  7826. image: {
  7827. source: "./media/characters/coffee/front.svg",
  7828. extra: 3666 / 3032,
  7829. bottom: 0.04
  7830. }
  7831. },
  7832. foot: {
  7833. height: math.unit(1.29, "feet"),
  7834. name: "Foot",
  7835. image: {
  7836. source: "./media/characters/coffee/foot.svg"
  7837. }
  7838. },
  7839. },
  7840. [
  7841. {
  7842. name: "Micro",
  7843. height: math.unit(2, "inches"),
  7844. },
  7845. {
  7846. name: "Normal",
  7847. height: math.unit(5 + 9 / 12, "feet"),
  7848. default: true
  7849. },
  7850. {
  7851. name: "Macro",
  7852. height: math.unit(800, "feet")
  7853. },
  7854. {
  7855. name: "Megamacro",
  7856. height: math.unit(25, "miles")
  7857. }
  7858. ]
  7859. ))
  7860. characterMakers.push(() => makeCharacter(
  7861. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7862. {
  7863. front: {
  7864. height: math.unit(6, "feet"),
  7865. weight: math.unit(200, "lbs"),
  7866. name: "Front",
  7867. image: {
  7868. source: "./media/characters/chari-gal/front.svg",
  7869. extra: 1568 / 1385,
  7870. bottom: 0.047
  7871. }
  7872. },
  7873. gigantamax: {
  7874. height: math.unit(6 * 16, "feet"),
  7875. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7876. name: "Gigantamax",
  7877. image: {
  7878. source: "./media/characters/chari-gal/gigantamax.svg",
  7879. extra: 1124 / 888,
  7880. bottom: 0.03
  7881. }
  7882. },
  7883. },
  7884. [
  7885. {
  7886. name: "Normal",
  7887. height: math.unit(5 + 7 / 12, "feet")
  7888. },
  7889. {
  7890. name: "Macro",
  7891. height: math.unit(200, "feet"),
  7892. default: true
  7893. }
  7894. ]
  7895. ))
  7896. characterMakers.push(() => makeCharacter(
  7897. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7898. {
  7899. front: {
  7900. height: math.unit(6, "feet"),
  7901. weight: math.unit(150, "lbs"),
  7902. name: "Front",
  7903. image: {
  7904. source: "./media/characters/nova/front.svg",
  7905. extra: 5000 / 4722,
  7906. bottom: 0.02
  7907. }
  7908. }
  7909. },
  7910. [
  7911. {
  7912. name: "Micro-",
  7913. height: math.unit(0.8, "inches")
  7914. },
  7915. {
  7916. name: "Micro",
  7917. height: math.unit(2, "inches"),
  7918. default: true
  7919. },
  7920. ]
  7921. ))
  7922. characterMakers.push(() => makeCharacter(
  7923. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7924. {
  7925. front: {
  7926. height: math.unit(3 + 1 / 12, "feet"),
  7927. weight: math.unit(21.7, "lbs"),
  7928. name: "Front",
  7929. image: {
  7930. source: "./media/characters/argent/front.svg",
  7931. extra: 1471 / 1331,
  7932. bottom: 100.8 / 1575.5
  7933. }
  7934. }
  7935. },
  7936. [
  7937. {
  7938. name: "Micro",
  7939. height: math.unit(2, "inches")
  7940. },
  7941. {
  7942. name: "Normal",
  7943. height: math.unit(3 + 1 / 12, "feet"),
  7944. default: true
  7945. },
  7946. {
  7947. name: "Macro",
  7948. height: math.unit(120, "feet")
  7949. },
  7950. ]
  7951. ))
  7952. characterMakers.push(() => makeCharacter(
  7953. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7954. {
  7955. lamp: {
  7956. height: math.unit(7 * 1559 / 989, "feet"),
  7957. name: "Magic Lamp",
  7958. image: {
  7959. source: "./media/characters/mira-al-cul/lamp.svg",
  7960. extra: 1617 / 1559
  7961. }
  7962. },
  7963. front: {
  7964. height: math.unit(7, "feet"),
  7965. name: "Front",
  7966. image: {
  7967. source: "./media/characters/mira-al-cul/front.svg",
  7968. extra: 1044 / 990
  7969. }
  7970. },
  7971. },
  7972. [
  7973. {
  7974. name: "Heavily Restricted",
  7975. height: math.unit(7 * 1559 / 989, "feet")
  7976. },
  7977. {
  7978. name: "Freshly Freed",
  7979. height: math.unit(50 * 1559 / 989, "feet")
  7980. },
  7981. {
  7982. name: "World Encompassing",
  7983. height: math.unit(10000 * 1559 / 989, "miles")
  7984. },
  7985. {
  7986. name: "Galactic",
  7987. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7988. },
  7989. {
  7990. name: "Palmed Universe",
  7991. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7992. default: true
  7993. },
  7994. {
  7995. name: "Multiversal Matriarch",
  7996. height: math.unit(8.87e10, "yottameters")
  7997. },
  7998. {
  7999. name: "Void Mother",
  8000. height: math.unit(3.14e110, "yottaparsecs")
  8001. },
  8002. {
  8003. name: "Toying with Transcendence",
  8004. height: math.unit(1e307, "meters")
  8005. },
  8006. ]
  8007. ))
  8008. characterMakers.push(() => makeCharacter(
  8009. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8010. {
  8011. front: {
  8012. height: math.unit(17 + 1 / 12, "feet"),
  8013. weight: math.unit(476.2 * 5, "lbs"),
  8014. name: "Front",
  8015. image: {
  8016. source: "./media/characters/kuro-shi-uchū/front.svg",
  8017. extra: 2329 / 1835,
  8018. bottom: 0.02
  8019. }
  8020. },
  8021. },
  8022. [
  8023. {
  8024. name: "Micro",
  8025. height: math.unit(2, "inches")
  8026. },
  8027. {
  8028. name: "Normal",
  8029. height: math.unit(12, "meters")
  8030. },
  8031. {
  8032. name: "Planetary",
  8033. height: math.unit(0.00929, "AU"),
  8034. default: true
  8035. },
  8036. {
  8037. name: "Universal",
  8038. height: math.unit(20, "gigaparsecs")
  8039. },
  8040. ]
  8041. ))
  8042. characterMakers.push(() => makeCharacter(
  8043. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8044. {
  8045. front: {
  8046. height: math.unit(5 + 2 / 12, "feet"),
  8047. weight: math.unit(120, "lbs"),
  8048. name: "Front",
  8049. image: {
  8050. source: "./media/characters/katherine/front.svg",
  8051. extra: 2075 / 1969
  8052. }
  8053. },
  8054. dress: {
  8055. height: math.unit(5 + 2 / 12, "feet"),
  8056. weight: math.unit(120, "lbs"),
  8057. name: "Dress",
  8058. image: {
  8059. source: "./media/characters/katherine/dress.svg",
  8060. extra: 2258 / 2064
  8061. }
  8062. },
  8063. },
  8064. [
  8065. {
  8066. name: "Micro",
  8067. height: math.unit(1, "inches"),
  8068. default: true
  8069. },
  8070. {
  8071. name: "Normal",
  8072. height: math.unit(5 + 2 / 12, "feet")
  8073. },
  8074. {
  8075. name: "Macro",
  8076. height: math.unit(100, "meters")
  8077. },
  8078. {
  8079. name: "Megamacro",
  8080. height: math.unit(80, "miles")
  8081. },
  8082. ]
  8083. ))
  8084. characterMakers.push(() => makeCharacter(
  8085. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8086. {
  8087. front: {
  8088. height: math.unit(7 + 8 / 12, "feet"),
  8089. weight: math.unit(250, "lbs"),
  8090. name: "Front",
  8091. image: {
  8092. source: "./media/characters/yevis/front.svg",
  8093. extra: 1938 / 1755
  8094. }
  8095. }
  8096. },
  8097. [
  8098. {
  8099. name: "Mortal",
  8100. height: math.unit(7 + 8 / 12, "feet")
  8101. },
  8102. {
  8103. name: "Battle",
  8104. height: math.unit(25 + 11 / 12, "feet")
  8105. },
  8106. {
  8107. name: "Wrath",
  8108. height: math.unit(1654 + 11 / 12, "feet")
  8109. },
  8110. {
  8111. name: "Planet Destroyer",
  8112. height: math.unit(12000, "miles")
  8113. },
  8114. {
  8115. name: "Galaxy Conqueror",
  8116. height: math.unit(1.45, "zettameters"),
  8117. default: true
  8118. },
  8119. {
  8120. name: "Universal War",
  8121. height: math.unit(184, "gigaparsecs")
  8122. },
  8123. {
  8124. name: "Eternity War",
  8125. height: math.unit(1.98e55, "yottaparsecs")
  8126. },
  8127. ]
  8128. ))
  8129. characterMakers.push(() => makeCharacter(
  8130. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8131. {
  8132. front: {
  8133. height: math.unit(5 + 8 / 12, "feet"),
  8134. weight: math.unit(63, "kg"),
  8135. name: "Front",
  8136. image: {
  8137. source: "./media/characters/xavier/front.svg",
  8138. extra: 944 / 883
  8139. }
  8140. },
  8141. frontStretch: {
  8142. height: math.unit(5 + 8 / 12, "feet"),
  8143. weight: math.unit(63, "kg"),
  8144. name: "Stretching",
  8145. image: {
  8146. source: "./media/characters/xavier/front-stretch.svg",
  8147. extra: 962 / 820
  8148. }
  8149. },
  8150. },
  8151. [
  8152. {
  8153. name: "Normal",
  8154. height: math.unit(5 + 8 / 12, "feet")
  8155. },
  8156. {
  8157. name: "Macro",
  8158. height: math.unit(100, "meters"),
  8159. default: true
  8160. },
  8161. {
  8162. name: "McLargeHuge",
  8163. height: math.unit(10, "miles")
  8164. },
  8165. ]
  8166. ))
  8167. characterMakers.push(() => makeCharacter(
  8168. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8169. {
  8170. front: {
  8171. height: math.unit(5 + 5 / 12, "feet"),
  8172. weight: math.unit(150, "lb"),
  8173. name: "Front",
  8174. image: {
  8175. source: "./media/characters/joshii/front.svg",
  8176. extra: 765 / 653,
  8177. bottom: 51 / 816
  8178. }
  8179. },
  8180. foot: {
  8181. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8182. name: "Foot",
  8183. image: {
  8184. source: "./media/characters/joshii/foot.svg"
  8185. }
  8186. },
  8187. },
  8188. [
  8189. {
  8190. name: "Micro",
  8191. height: math.unit(2, "inches"),
  8192. default: true
  8193. },
  8194. {
  8195. name: "Normal",
  8196. height: math.unit(5 + 5 / 12, "feet")
  8197. },
  8198. {
  8199. name: "Macro",
  8200. height: math.unit(785, "feet")
  8201. },
  8202. {
  8203. name: "Megamacro",
  8204. height: math.unit(24.5, "miles")
  8205. },
  8206. ]
  8207. ))
  8208. characterMakers.push(() => makeCharacter(
  8209. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8210. {
  8211. front: {
  8212. height: math.unit(6, "feet"),
  8213. weight: math.unit(150, "lb"),
  8214. name: "Front",
  8215. image: {
  8216. source: "./media/characters/goddess-elizabeth/front.svg",
  8217. extra: 1800 / 1525,
  8218. bottom: 0.005
  8219. }
  8220. },
  8221. foot: {
  8222. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8223. name: "Foot",
  8224. image: {
  8225. source: "./media/characters/goddess-elizabeth/foot.svg"
  8226. }
  8227. },
  8228. mouth: {
  8229. height: math.unit(6, "feet"),
  8230. name: "Mouth",
  8231. image: {
  8232. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8233. }
  8234. },
  8235. },
  8236. [
  8237. {
  8238. name: "Micro",
  8239. height: math.unit(12, "feet")
  8240. },
  8241. {
  8242. name: "Normal",
  8243. height: math.unit(80, "miles"),
  8244. default: true
  8245. },
  8246. {
  8247. name: "Macro",
  8248. height: math.unit(15000, "parsecs")
  8249. },
  8250. ]
  8251. ))
  8252. characterMakers.push(() => makeCharacter(
  8253. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8254. {
  8255. front: {
  8256. height: math.unit(5 + 9 / 12, "feet"),
  8257. weight: math.unit(144, "lb"),
  8258. name: "Front",
  8259. image: {
  8260. source: "./media/characters/kara/front.svg"
  8261. }
  8262. },
  8263. feet: {
  8264. height: math.unit(6 / 6.765, "feet"),
  8265. name: "Kara's Feet",
  8266. rename: true,
  8267. image: {
  8268. source: "./media/characters/kara/feet.svg"
  8269. }
  8270. },
  8271. },
  8272. [
  8273. {
  8274. name: "Normal",
  8275. height: math.unit(5 + 9 / 12, "feet")
  8276. },
  8277. {
  8278. name: "Macro",
  8279. height: math.unit(174, "feet"),
  8280. default: true
  8281. },
  8282. ]
  8283. ))
  8284. characterMakers.push(() => makeCharacter(
  8285. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8286. {
  8287. front: {
  8288. height: math.unit(18, "feet"),
  8289. weight: math.unit(4050, "lb"),
  8290. name: "Front",
  8291. image: {
  8292. source: "./media/characters/tyrone/front.svg",
  8293. extra: 2405 / 2270,
  8294. bottom: 182 / 2587
  8295. }
  8296. },
  8297. },
  8298. [
  8299. {
  8300. name: "Normal",
  8301. height: math.unit(18, "feet"),
  8302. default: true
  8303. },
  8304. {
  8305. name: "Macro",
  8306. height: math.unit(300, "feet")
  8307. },
  8308. {
  8309. name: "Megamacro",
  8310. height: math.unit(15, "km")
  8311. },
  8312. {
  8313. name: "Gigamacro",
  8314. height: math.unit(500, "km")
  8315. },
  8316. {
  8317. name: "Teramacro",
  8318. height: math.unit(0.5, "gigameters")
  8319. },
  8320. {
  8321. name: "Omnimacro",
  8322. height: math.unit(1e252, "yottauniverse")
  8323. },
  8324. ]
  8325. ))
  8326. characterMakers.push(() => makeCharacter(
  8327. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8328. {
  8329. front: {
  8330. height: math.unit(7 + 8 / 12, "feet"),
  8331. weight: math.unit(120, "lb"),
  8332. name: "Front",
  8333. image: {
  8334. source: "./media/characters/danny/front.svg",
  8335. extra: 1490 / 1350
  8336. }
  8337. },
  8338. back: {
  8339. height: math.unit(7 + 8 / 12, "feet"),
  8340. weight: math.unit(120, "lb"),
  8341. name: "Back",
  8342. image: {
  8343. source: "./media/characters/danny/back.svg",
  8344. extra: 1490 / 1350
  8345. }
  8346. },
  8347. },
  8348. [
  8349. {
  8350. name: "Normal",
  8351. height: math.unit(7 + 8 / 12, "feet"),
  8352. default: true
  8353. },
  8354. ]
  8355. ))
  8356. characterMakers.push(() => makeCharacter(
  8357. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8358. {
  8359. front: {
  8360. height: math.unit(3.5, "inches"),
  8361. weight: math.unit(19, "grams"),
  8362. name: "Front",
  8363. image: {
  8364. source: "./media/characters/mallow/front.svg",
  8365. extra: 471 / 431
  8366. }
  8367. },
  8368. back: {
  8369. height: math.unit(3.5, "inches"),
  8370. weight: math.unit(19, "grams"),
  8371. name: "Back",
  8372. image: {
  8373. source: "./media/characters/mallow/back.svg",
  8374. extra: 471 / 431
  8375. }
  8376. },
  8377. },
  8378. [
  8379. {
  8380. name: "Normal",
  8381. height: math.unit(3.5, "inches"),
  8382. default: true
  8383. },
  8384. ]
  8385. ))
  8386. characterMakers.push(() => makeCharacter(
  8387. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8388. {
  8389. front: {
  8390. height: math.unit(9, "feet"),
  8391. weight: math.unit(230, "kg"),
  8392. name: "Front",
  8393. image: {
  8394. source: "./media/characters/starry-aqua/front.svg"
  8395. }
  8396. },
  8397. back: {
  8398. height: math.unit(9, "feet"),
  8399. weight: math.unit(230, "kg"),
  8400. name: "Back",
  8401. image: {
  8402. source: "./media/characters/starry-aqua/back.svg"
  8403. }
  8404. },
  8405. hand: {
  8406. height: math.unit(9 * 0.1168, "feet"),
  8407. name: "Hand",
  8408. image: {
  8409. source: "./media/characters/starry-aqua/hand.svg"
  8410. }
  8411. },
  8412. foot: {
  8413. height: math.unit(9 * 0.18, "feet"),
  8414. name: "Foot",
  8415. image: {
  8416. source: "./media/characters/starry-aqua/foot.svg"
  8417. }
  8418. }
  8419. },
  8420. [
  8421. {
  8422. name: "Micro",
  8423. height: math.unit(3, "inches")
  8424. },
  8425. {
  8426. name: "Normal",
  8427. height: math.unit(9, "feet")
  8428. },
  8429. {
  8430. name: "Macro",
  8431. height: math.unit(300, "feet"),
  8432. default: true
  8433. },
  8434. {
  8435. name: "Megamacro",
  8436. height: math.unit(3200, "feet")
  8437. }
  8438. ]
  8439. ))
  8440. characterMakers.push(() => makeCharacter(
  8441. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8442. {
  8443. front: {
  8444. height: math.unit(6, "feet"),
  8445. weight: math.unit(230, "lb"),
  8446. name: "Front",
  8447. image: {
  8448. source: "./media/characters/luka/front.svg",
  8449. extra: 1,
  8450. bottom: 0.025
  8451. }
  8452. },
  8453. },
  8454. [
  8455. {
  8456. name: "Normal",
  8457. height: math.unit(12 + 8 / 12, "feet"),
  8458. default: true
  8459. },
  8460. {
  8461. name: "Minimacro",
  8462. height: math.unit(20, "feet")
  8463. },
  8464. {
  8465. name: "Macro",
  8466. height: math.unit(250, "feet")
  8467. },
  8468. {
  8469. name: "Megamacro",
  8470. height: math.unit(5, "miles")
  8471. },
  8472. {
  8473. name: "Gigamacro",
  8474. height: math.unit(8000, "miles")
  8475. },
  8476. ]
  8477. ))
  8478. characterMakers.push(() => makeCharacter(
  8479. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8480. {
  8481. front: {
  8482. height: math.unit(6, "feet"),
  8483. weight: math.unit(150, "lb"),
  8484. name: "Front",
  8485. image: {
  8486. source: "./media/characters/natalie-nightring/front.svg",
  8487. extra: 1,
  8488. bottom: 0.06
  8489. }
  8490. },
  8491. },
  8492. [
  8493. {
  8494. name: "Uh Oh",
  8495. height: math.unit(0.1, "mm")
  8496. },
  8497. {
  8498. name: "Small",
  8499. height: math.unit(3, "inches")
  8500. },
  8501. {
  8502. name: "Human Scale",
  8503. height: math.unit(6, "feet")
  8504. },
  8505. {
  8506. name: "Librarian",
  8507. height: math.unit(50, "feet"),
  8508. default: true
  8509. },
  8510. {
  8511. name: "Immense",
  8512. height: math.unit(200, "miles")
  8513. },
  8514. ]
  8515. ))
  8516. characterMakers.push(() => makeCharacter(
  8517. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8518. {
  8519. front: {
  8520. height: math.unit(6, "feet"),
  8521. weight: math.unit(180, "lbs"),
  8522. name: "Front",
  8523. image: {
  8524. source: "./media/characters/danni-rosie/front.svg",
  8525. extra: 1260 / 1128,
  8526. bottom: 0.022
  8527. }
  8528. },
  8529. },
  8530. [
  8531. {
  8532. name: "Micro",
  8533. height: math.unit(2, "inches"),
  8534. default: true
  8535. },
  8536. ]
  8537. ))
  8538. characterMakers.push(() => makeCharacter(
  8539. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8540. {
  8541. front: {
  8542. height: math.unit(5 + 9 / 12, "feet"),
  8543. weight: math.unit(220, "lb"),
  8544. name: "Front",
  8545. image: {
  8546. source: "./media/characters/samantha-kruse/front.svg",
  8547. extra: (985 / 935),
  8548. bottom: 0.03
  8549. }
  8550. },
  8551. frontUndressed: {
  8552. height: math.unit(5 + 9 / 12, "feet"),
  8553. weight: math.unit(220, "lb"),
  8554. name: "Front (Undressed)",
  8555. image: {
  8556. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8557. extra: (973 / 923),
  8558. bottom: 0.025
  8559. }
  8560. },
  8561. fat: {
  8562. height: math.unit(5 + 9 / 12, "feet"),
  8563. weight: math.unit(900, "lb"),
  8564. name: "Front (Fat)",
  8565. image: {
  8566. source: "./media/characters/samantha-kruse/fat.svg",
  8567. extra: 2688 / 2561
  8568. }
  8569. },
  8570. },
  8571. [
  8572. {
  8573. name: "Normal",
  8574. height: math.unit(5 + 9 / 12, "feet"),
  8575. default: true
  8576. }
  8577. ]
  8578. ))
  8579. characterMakers.push(() => makeCharacter(
  8580. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8581. {
  8582. back: {
  8583. height: math.unit(5 + 4 / 12, "feet"),
  8584. weight: math.unit(4963, "lb"),
  8585. name: "Back",
  8586. image: {
  8587. source: "./media/characters/amelia-rosie/back.svg",
  8588. extra: 1113 / 963,
  8589. bottom: 0.01
  8590. }
  8591. },
  8592. },
  8593. [
  8594. {
  8595. name: "Level 0",
  8596. height: math.unit(5 + 4 / 12, "feet")
  8597. },
  8598. {
  8599. name: "Level 1",
  8600. height: math.unit(164597, "feet"),
  8601. default: true
  8602. },
  8603. {
  8604. name: "Level 2",
  8605. height: math.unit(956243, "miles")
  8606. },
  8607. {
  8608. name: "Level 3",
  8609. height: math.unit(29421709423, "miles")
  8610. },
  8611. {
  8612. name: "Level 4",
  8613. height: math.unit(154, "lightyears")
  8614. },
  8615. {
  8616. name: "Level 5",
  8617. height: math.unit(4738272, "lightyears")
  8618. },
  8619. {
  8620. name: "Level 6",
  8621. height: math.unit(145787152896, "lightyears")
  8622. },
  8623. ]
  8624. ))
  8625. characterMakers.push(() => makeCharacter(
  8626. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8627. {
  8628. front: {
  8629. height: math.unit(5 + 11 / 12, "feet"),
  8630. weight: math.unit(65, "kg"),
  8631. name: "Front",
  8632. image: {
  8633. source: "./media/characters/rook-kitara/front.svg",
  8634. extra: 1347 / 1274,
  8635. bottom: 0.005
  8636. }
  8637. },
  8638. },
  8639. [
  8640. {
  8641. name: "Totally Unfair",
  8642. height: math.unit(1.8, "mm")
  8643. },
  8644. {
  8645. name: "Lap Rookie",
  8646. height: math.unit(1.4, "feet")
  8647. },
  8648. {
  8649. name: "Normal",
  8650. height: math.unit(5 + 11 / 12, "feet"),
  8651. default: true
  8652. },
  8653. {
  8654. name: "How Did This Happen",
  8655. height: math.unit(80, "miles")
  8656. }
  8657. ]
  8658. ))
  8659. characterMakers.push(() => makeCharacter(
  8660. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8661. {
  8662. front: {
  8663. height: math.unit(7, "feet"),
  8664. weight: math.unit(300, "lb"),
  8665. name: "Front",
  8666. image: {
  8667. source: "./media/characters/pisces/front.svg",
  8668. extra: 2255 / 2115,
  8669. bottom: 0.03
  8670. }
  8671. },
  8672. back: {
  8673. height: math.unit(7, "feet"),
  8674. weight: math.unit(300, "lb"),
  8675. name: "Back",
  8676. image: {
  8677. source: "./media/characters/pisces/back.svg",
  8678. extra: 2146 / 2055,
  8679. bottom: 0.04
  8680. }
  8681. },
  8682. },
  8683. [
  8684. {
  8685. name: "Normal",
  8686. height: math.unit(7, "feet"),
  8687. default: true
  8688. },
  8689. {
  8690. name: "Swimming Pool",
  8691. height: math.unit(12.2, "meters")
  8692. },
  8693. {
  8694. name: "Olympic Swimming Pool",
  8695. height: math.unit(56.3, "meters")
  8696. },
  8697. {
  8698. name: "Lake Superior",
  8699. height: math.unit(93900, "meters")
  8700. },
  8701. {
  8702. name: "Mediterranean Sea",
  8703. height: math.unit(644457, "meters")
  8704. },
  8705. {
  8706. name: "World's Oceans",
  8707. height: math.unit(4567491, "meters")
  8708. },
  8709. ]
  8710. ))
  8711. characterMakers.push(() => makeCharacter(
  8712. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8713. {
  8714. front: {
  8715. height: math.unit(2.3, "meters"),
  8716. weight: math.unit(120, "kg"),
  8717. name: "Front",
  8718. image: {
  8719. source: "./media/characters/zelas/front.svg"
  8720. }
  8721. },
  8722. side: {
  8723. height: math.unit(2.3, "meters"),
  8724. weight: math.unit(120, "kg"),
  8725. name: "Side",
  8726. image: {
  8727. source: "./media/characters/zelas/side.svg"
  8728. }
  8729. },
  8730. back: {
  8731. height: math.unit(2.3, "meters"),
  8732. weight: math.unit(120, "kg"),
  8733. name: "Back",
  8734. image: {
  8735. source: "./media/characters/zelas/back.svg"
  8736. }
  8737. },
  8738. foot: {
  8739. height: math.unit(1.116, "feet"),
  8740. name: "Foot",
  8741. image: {
  8742. source: "./media/characters/zelas/foot.svg"
  8743. }
  8744. },
  8745. },
  8746. [
  8747. {
  8748. name: "Normal",
  8749. height: math.unit(2.3, "meters")
  8750. },
  8751. {
  8752. name: "Macro",
  8753. height: math.unit(30, "meters"),
  8754. default: true
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(1, "inch"),
  8763. weight: math.unit(0.21, "grams"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/talbot/front.svg",
  8767. extra: 594 / 544
  8768. }
  8769. },
  8770. },
  8771. [
  8772. {
  8773. name: "Micro",
  8774. height: math.unit(1, "inch"),
  8775. default: true
  8776. },
  8777. ]
  8778. ))
  8779. characterMakers.push(() => makeCharacter(
  8780. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8781. {
  8782. front: {
  8783. height: math.unit(3 + 3 / 12, "feet"),
  8784. weight: math.unit(51.8, "lb"),
  8785. name: "Front",
  8786. image: {
  8787. source: "./media/characters/fliss/front.svg",
  8788. extra: 840 / 640
  8789. }
  8790. },
  8791. },
  8792. [
  8793. {
  8794. name: "Teeny Tiny",
  8795. height: math.unit(1, "mm")
  8796. },
  8797. {
  8798. name: "Small",
  8799. height: math.unit(1, "inch"),
  8800. default: true
  8801. },
  8802. {
  8803. name: "Standard Sylveon",
  8804. height: math.unit(3 + 3 / 12, "feet")
  8805. },
  8806. {
  8807. name: "Large Nuisance",
  8808. height: math.unit(33, "feet")
  8809. },
  8810. {
  8811. name: "City Filler",
  8812. height: math.unit(3000, "feet")
  8813. },
  8814. {
  8815. name: "New Horizon",
  8816. height: math.unit(6000, "miles")
  8817. },
  8818. ]
  8819. ))
  8820. characterMakers.push(() => makeCharacter(
  8821. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8822. {
  8823. front: {
  8824. height: math.unit(5, "cm"),
  8825. weight: math.unit(1.94, "g"),
  8826. name: "Front",
  8827. image: {
  8828. source: "./media/characters/fleta/front.svg",
  8829. extra: 835 / 803
  8830. }
  8831. },
  8832. back: {
  8833. height: math.unit(5, "cm"),
  8834. weight: math.unit(1.94, "g"),
  8835. name: "Back",
  8836. image: {
  8837. source: "./media/characters/fleta/back.svg",
  8838. extra: 835 / 803
  8839. }
  8840. },
  8841. },
  8842. [
  8843. {
  8844. name: "Micro",
  8845. height: math.unit(5, "cm"),
  8846. default: true
  8847. },
  8848. ]
  8849. ))
  8850. characterMakers.push(() => makeCharacter(
  8851. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8852. {
  8853. front: {
  8854. height: math.unit(6, "feet"),
  8855. weight: math.unit(225, "lb"),
  8856. name: "Front",
  8857. image: {
  8858. source: "./media/characters/dominic/front.svg",
  8859. extra: 1770 / 1620,
  8860. bottom: 0.025
  8861. }
  8862. },
  8863. back: {
  8864. height: math.unit(6, "feet"),
  8865. weight: math.unit(225, "lb"),
  8866. name: "Back",
  8867. image: {
  8868. source: "./media/characters/dominic/back.svg",
  8869. extra: 1745 / 1620,
  8870. bottom: 0.065
  8871. }
  8872. },
  8873. },
  8874. [
  8875. {
  8876. name: "Nano",
  8877. height: math.unit(0.1, "mm")
  8878. },
  8879. {
  8880. name: "Micro-",
  8881. height: math.unit(1, "mm")
  8882. },
  8883. {
  8884. name: "Micro",
  8885. height: math.unit(4, "inches")
  8886. },
  8887. {
  8888. name: "Normal",
  8889. height: math.unit(6 + 4 / 12, "feet"),
  8890. default: true
  8891. },
  8892. {
  8893. name: "Macro",
  8894. height: math.unit(115, "feet")
  8895. },
  8896. {
  8897. name: "Macro+",
  8898. height: math.unit(955, "feet")
  8899. },
  8900. {
  8901. name: "Megamacro",
  8902. height: math.unit(8990, "feet")
  8903. },
  8904. {
  8905. name: "Gigmacro",
  8906. height: math.unit(9310, "miles")
  8907. },
  8908. {
  8909. name: "Teramacro",
  8910. height: math.unit(1567005010, "miles")
  8911. },
  8912. {
  8913. name: "Examacro",
  8914. height: math.unit(1425, "parsecs")
  8915. },
  8916. ]
  8917. ))
  8918. characterMakers.push(() => makeCharacter(
  8919. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8920. {
  8921. front: {
  8922. height: math.unit(400, "feet"),
  8923. weight: math.unit(44444444, "lb"),
  8924. name: "Front",
  8925. image: {
  8926. source: "./media/characters/major-colonel/front.svg"
  8927. }
  8928. },
  8929. back: {
  8930. height: math.unit(400, "feet"),
  8931. weight: math.unit(44444444, "lb"),
  8932. name: "Back",
  8933. image: {
  8934. source: "./media/characters/major-colonel/back.svg"
  8935. }
  8936. },
  8937. },
  8938. [
  8939. {
  8940. name: "Macro",
  8941. height: math.unit(400, "feet"),
  8942. default: true
  8943. },
  8944. ]
  8945. ))
  8946. characterMakers.push(() => makeCharacter(
  8947. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8948. {
  8949. catFront: {
  8950. height: math.unit(6, "feet"),
  8951. weight: math.unit(120, "lb"),
  8952. name: "Front (Cat Side)",
  8953. image: {
  8954. source: "./media/characters/axel-lycan/cat-front.svg",
  8955. extra: 430 / 402,
  8956. bottom: 43 / 472.35
  8957. }
  8958. },
  8959. catBack: {
  8960. height: math.unit(6, "feet"),
  8961. weight: math.unit(120, "lb"),
  8962. name: "Back (Cat Side)",
  8963. image: {
  8964. source: "./media/characters/axel-lycan/cat-back.svg",
  8965. extra: 447 / 419,
  8966. bottom: 23.3 / 469
  8967. }
  8968. },
  8969. wolfFront: {
  8970. height: math.unit(6, "feet"),
  8971. weight: math.unit(120, "lb"),
  8972. name: "Front (Wolf Side)",
  8973. image: {
  8974. source: "./media/characters/axel-lycan/wolf-front.svg",
  8975. extra: 485 / 456,
  8976. bottom: 19 / 504
  8977. }
  8978. },
  8979. wolfBack: {
  8980. height: math.unit(6, "feet"),
  8981. weight: math.unit(120, "lb"),
  8982. name: "Back (Wolf Side)",
  8983. image: {
  8984. source: "./media/characters/axel-lycan/wolf-back.svg",
  8985. extra: 475 / 438,
  8986. bottom: 39.2 / 514
  8987. }
  8988. },
  8989. },
  8990. [
  8991. {
  8992. name: "Macro",
  8993. height: math.unit(1, "km"),
  8994. default: true
  8995. },
  8996. ]
  8997. ))
  8998. characterMakers.push(() => makeCharacter(
  8999. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9000. {
  9001. front: {
  9002. height: math.unit(5 + 9 / 12, "feet"),
  9003. weight: math.unit(175, "lb"),
  9004. name: "Front",
  9005. image: {
  9006. source: "./media/characters/vanrel-hyena/front.svg",
  9007. extra: 1086 / 1010,
  9008. bottom: 0.04
  9009. }
  9010. },
  9011. },
  9012. [
  9013. {
  9014. name: "Normal",
  9015. height: math.unit(5 + 9 / 12, "feet"),
  9016. default: true
  9017. },
  9018. ]
  9019. ))
  9020. characterMakers.push(() => makeCharacter(
  9021. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9022. {
  9023. front: {
  9024. height: math.unit(6, "feet"),
  9025. weight: math.unit(103, "lb"),
  9026. name: "Front",
  9027. image: {
  9028. source: "./media/characters/abbott-absol/front.svg",
  9029. extra: 2010 / 1842
  9030. }
  9031. },
  9032. },
  9033. [
  9034. {
  9035. name: "Megamicro",
  9036. height: math.unit(0.1, "mm")
  9037. },
  9038. {
  9039. name: "Micro",
  9040. height: math.unit(1, "inch")
  9041. },
  9042. {
  9043. name: "Normal",
  9044. height: math.unit(6, "feet"),
  9045. default: true
  9046. },
  9047. ]
  9048. ))
  9049. characterMakers.push(() => makeCharacter(
  9050. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9051. {
  9052. front: {
  9053. height: math.unit(6, "feet"),
  9054. weight: math.unit(264, "lb"),
  9055. name: "Front",
  9056. image: {
  9057. source: "./media/characters/hector/front.svg",
  9058. extra: 2280 / 2130,
  9059. bottom: 0.07
  9060. }
  9061. },
  9062. },
  9063. [
  9064. {
  9065. name: "Normal",
  9066. height: math.unit(12.25, "foot"),
  9067. default: true
  9068. },
  9069. {
  9070. name: "Macro",
  9071. height: math.unit(160, "feet")
  9072. },
  9073. ]
  9074. ))
  9075. characterMakers.push(() => makeCharacter(
  9076. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9077. {
  9078. front: {
  9079. height: math.unit(6, "feet"),
  9080. weight: math.unit(150, "lb"),
  9081. name: "Front",
  9082. image: {
  9083. source: "./media/characters/sal/front.svg",
  9084. extra: 1846 / 1699,
  9085. bottom: 0.04
  9086. }
  9087. },
  9088. },
  9089. [
  9090. {
  9091. name: "Megamacro",
  9092. height: math.unit(10, "miles"),
  9093. default: true
  9094. },
  9095. ]
  9096. ))
  9097. characterMakers.push(() => makeCharacter(
  9098. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9099. {
  9100. front: {
  9101. height: math.unit(3, "meters"),
  9102. weight: math.unit(450, "kg"),
  9103. name: "front",
  9104. image: {
  9105. source: "./media/characters/ranger/front.svg",
  9106. extra: 2401 / 2243,
  9107. bottom: 0.05
  9108. }
  9109. },
  9110. },
  9111. [
  9112. {
  9113. name: "Normal",
  9114. height: math.unit(3, "meters"),
  9115. default: true
  9116. },
  9117. ]
  9118. ))
  9119. characterMakers.push(() => makeCharacter(
  9120. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9121. {
  9122. front: {
  9123. height: math.unit(14, "feet"),
  9124. weight: math.unit(800, "kg"),
  9125. name: "Front",
  9126. image: {
  9127. source: "./media/characters/theresa/front.svg",
  9128. extra: 3575 / 3346,
  9129. bottom: 0.03
  9130. }
  9131. },
  9132. },
  9133. [
  9134. {
  9135. name: "Normal",
  9136. height: math.unit(14, "feet"),
  9137. default: true
  9138. },
  9139. ]
  9140. ))
  9141. characterMakers.push(() => makeCharacter(
  9142. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9143. {
  9144. front: {
  9145. height: math.unit(6, "feet"),
  9146. weight: math.unit(3, "kg"),
  9147. name: "Front",
  9148. image: {
  9149. source: "./media/characters/ine/front.svg",
  9150. extra: 678 / 539,
  9151. bottom: 0.023
  9152. }
  9153. },
  9154. },
  9155. [
  9156. {
  9157. name: "Normal",
  9158. height: math.unit(2.265, "feet"),
  9159. default: true
  9160. },
  9161. ]
  9162. ))
  9163. characterMakers.push(() => makeCharacter(
  9164. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9165. {
  9166. front: {
  9167. height: math.unit(5, "feet"),
  9168. weight: math.unit(30, "kg"),
  9169. name: "Front",
  9170. image: {
  9171. source: "./media/characters/vial/front.svg",
  9172. extra: 1365 / 1277,
  9173. bottom: 0.04
  9174. }
  9175. },
  9176. },
  9177. [
  9178. {
  9179. name: "Normal",
  9180. height: math.unit(5, "feet"),
  9181. default: true
  9182. },
  9183. ]
  9184. ))
  9185. characterMakers.push(() => makeCharacter(
  9186. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9187. {
  9188. side: {
  9189. height: math.unit(3.4, "meters"),
  9190. weight: math.unit(1000, "lb"),
  9191. name: "Side",
  9192. image: {
  9193. source: "./media/characters/rovoska/side.svg",
  9194. extra: 4403 / 1515
  9195. }
  9196. },
  9197. },
  9198. [
  9199. {
  9200. name: "Normal",
  9201. height: math.unit(3.4, "meters"),
  9202. default: true
  9203. },
  9204. ]
  9205. ))
  9206. characterMakers.push(() => makeCharacter(
  9207. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9208. {
  9209. front: {
  9210. height: math.unit(8, "feet"),
  9211. weight: math.unit(315, "lb"),
  9212. name: "Front",
  9213. image: {
  9214. source: "./media/characters/gunner-rotthbauer/front.svg"
  9215. }
  9216. },
  9217. back: {
  9218. height: math.unit(8, "feet"),
  9219. weight: math.unit(315, "lb"),
  9220. name: "Back",
  9221. image: {
  9222. source: "./media/characters/gunner-rotthbauer/back.svg"
  9223. }
  9224. },
  9225. },
  9226. [
  9227. {
  9228. name: "Micro",
  9229. height: math.unit(3.5, "inches")
  9230. },
  9231. {
  9232. name: "Normal",
  9233. height: math.unit(8, "feet"),
  9234. default: true
  9235. },
  9236. {
  9237. name: "Macro",
  9238. height: math.unit(250, "feet")
  9239. },
  9240. {
  9241. name: "Megamacro",
  9242. height: math.unit(1, "AU")
  9243. },
  9244. ]
  9245. ))
  9246. characterMakers.push(() => makeCharacter(
  9247. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9248. {
  9249. front: {
  9250. height: math.unit(5 + 5 / 12, "feet"),
  9251. weight: math.unit(140, "lb"),
  9252. name: "Front",
  9253. image: {
  9254. source: "./media/characters/allatia/front.svg",
  9255. extra: 1227 / 1180,
  9256. bottom: 0.027
  9257. }
  9258. },
  9259. },
  9260. [
  9261. {
  9262. name: "Normal",
  9263. height: math.unit(5 + 5 / 12, "feet")
  9264. },
  9265. {
  9266. name: "Macro",
  9267. height: math.unit(250, "feet"),
  9268. default: true
  9269. },
  9270. {
  9271. name: "Megamacro",
  9272. height: math.unit(8, "miles")
  9273. }
  9274. ]
  9275. ))
  9276. characterMakers.push(() => makeCharacter(
  9277. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9278. {
  9279. front: {
  9280. height: math.unit(6, "feet"),
  9281. weight: math.unit(120, "lb"),
  9282. name: "Front",
  9283. image: {
  9284. source: "./media/characters/tene/front.svg",
  9285. extra: 1728 / 1578,
  9286. bottom: 0.022
  9287. }
  9288. },
  9289. stomping: {
  9290. height: math.unit(2.025, "meters"),
  9291. weight: math.unit(120, "lb"),
  9292. name: "Stomping",
  9293. image: {
  9294. source: "./media/characters/tene/stomping.svg",
  9295. extra: 938 / 873,
  9296. bottom: 0.01
  9297. }
  9298. },
  9299. sitting: {
  9300. height: math.unit(1, "meter"),
  9301. weight: math.unit(120, "lb"),
  9302. name: "Sitting",
  9303. image: {
  9304. source: "./media/characters/tene/sitting.svg",
  9305. extra: 437 / 415,
  9306. bottom: 0.1
  9307. }
  9308. },
  9309. feral: {
  9310. height: math.unit(3.9, "feet"),
  9311. weight: math.unit(250, "lb"),
  9312. name: "Feral",
  9313. image: {
  9314. source: "./media/characters/tene/feral.svg",
  9315. extra: 717 / 458,
  9316. bottom: 0.179
  9317. }
  9318. },
  9319. },
  9320. [
  9321. {
  9322. name: "Normal",
  9323. height: math.unit(6, "feet")
  9324. },
  9325. {
  9326. name: "Macro",
  9327. height: math.unit(300, "feet"),
  9328. default: true
  9329. },
  9330. {
  9331. name: "Megamacro",
  9332. height: math.unit(5, "miles")
  9333. },
  9334. ]
  9335. ))
  9336. characterMakers.push(() => makeCharacter(
  9337. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9338. {
  9339. side: {
  9340. height: math.unit(6, "feet"),
  9341. name: "Side",
  9342. image: {
  9343. source: "./media/characters/evander/side.svg",
  9344. extra: 877 / 477
  9345. }
  9346. },
  9347. },
  9348. [
  9349. {
  9350. name: "Normal",
  9351. height: math.unit(0.83, "meters"),
  9352. default: true
  9353. },
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9358. {
  9359. front: {
  9360. height: math.unit(12, "feet"),
  9361. weight: math.unit(1000, "lb"),
  9362. name: "Front",
  9363. image: {
  9364. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9365. extra: 1762 / 1611
  9366. }
  9367. },
  9368. back: {
  9369. height: math.unit(12, "feet"),
  9370. weight: math.unit(1000, "lb"),
  9371. name: "Back",
  9372. image: {
  9373. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9374. extra: 1762 / 1611
  9375. }
  9376. },
  9377. },
  9378. [
  9379. {
  9380. name: "Normal",
  9381. height: math.unit(12, "feet"),
  9382. default: true
  9383. },
  9384. {
  9385. name: "Kaiju",
  9386. height: math.unit(150, "feet")
  9387. },
  9388. ]
  9389. ))
  9390. characterMakers.push(() => makeCharacter(
  9391. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9392. {
  9393. front: {
  9394. height: math.unit(6, "feet"),
  9395. weight: math.unit(150, "lb"),
  9396. name: "Front",
  9397. image: {
  9398. source: "./media/characters/zero-alurus/front.svg"
  9399. }
  9400. },
  9401. back: {
  9402. height: math.unit(6, "feet"),
  9403. weight: math.unit(150, "lb"),
  9404. name: "Back",
  9405. image: {
  9406. source: "./media/characters/zero-alurus/back.svg"
  9407. }
  9408. },
  9409. },
  9410. [
  9411. {
  9412. name: "Normal",
  9413. height: math.unit(5 + 10 / 12, "feet")
  9414. },
  9415. {
  9416. name: "Macro",
  9417. height: math.unit(60, "feet"),
  9418. default: true
  9419. },
  9420. {
  9421. name: "Macro+",
  9422. height: math.unit(450, "feet")
  9423. },
  9424. ]
  9425. ))
  9426. characterMakers.push(() => makeCharacter(
  9427. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9428. {
  9429. front: {
  9430. height: math.unit(6, "feet"),
  9431. weight: math.unit(200, "lb"),
  9432. name: "Front",
  9433. image: {
  9434. source: "./media/characters/mega-shi/front.svg",
  9435. extra: 1279 / 1250,
  9436. bottom: 0.02
  9437. }
  9438. },
  9439. back: {
  9440. height: math.unit(6, "feet"),
  9441. weight: math.unit(200, "lb"),
  9442. name: "Back",
  9443. image: {
  9444. source: "./media/characters/mega-shi/back.svg",
  9445. extra: 1279 / 1250,
  9446. bottom: 0.02
  9447. }
  9448. },
  9449. },
  9450. [
  9451. {
  9452. name: "Micro",
  9453. height: math.unit(16 + 6 / 12, "feet")
  9454. },
  9455. {
  9456. name: "Third Dimension",
  9457. height: math.unit(40, "meters")
  9458. },
  9459. {
  9460. name: "Normal",
  9461. height: math.unit(660, "feet"),
  9462. default: true
  9463. },
  9464. {
  9465. name: "Megamacro",
  9466. height: math.unit(10, "miles")
  9467. },
  9468. {
  9469. name: "Planetary Launch",
  9470. height: math.unit(500, "miles")
  9471. },
  9472. {
  9473. name: "Interstellar",
  9474. height: math.unit(1e9, "miles")
  9475. },
  9476. {
  9477. name: "Leaving the Universe",
  9478. height: math.unit(1, "gigaparsec")
  9479. },
  9480. {
  9481. name: "Travelling Universes",
  9482. height: math.unit(30e15, "parsecs")
  9483. },
  9484. ]
  9485. ))
  9486. characterMakers.push(() => makeCharacter(
  9487. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9488. {
  9489. front: {
  9490. height: math.unit(6, "feet"),
  9491. weight: math.unit(150, "lb"),
  9492. name: "Front",
  9493. image: {
  9494. source: "./media/characters/odyssey/front.svg",
  9495. extra: 1782 / 1582,
  9496. bottom: 0.01
  9497. }
  9498. },
  9499. side: {
  9500. height: math.unit(5.7, "feet"),
  9501. weight: math.unit(140, "lb"),
  9502. name: "Side",
  9503. image: {
  9504. source: "./media/characters/odyssey/side.svg",
  9505. extra: 6462 / 5700
  9506. }
  9507. },
  9508. },
  9509. [
  9510. {
  9511. name: "Normal",
  9512. height: math.unit(5 + 4 / 12, "feet")
  9513. },
  9514. {
  9515. name: "Macro",
  9516. height: math.unit(1, "km")
  9517. },
  9518. {
  9519. name: "Megamacro",
  9520. height: math.unit(3000, "km")
  9521. },
  9522. {
  9523. name: "Gigamacro",
  9524. height: math.unit(1, "AU"),
  9525. default: true
  9526. },
  9527. {
  9528. name: "Omniversal",
  9529. height: math.unit(100e14, "lightyears")
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9535. {
  9536. front: {
  9537. height: math.unit(6, "feet"),
  9538. weight: math.unit(300, "lb"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/mekuto/front.svg",
  9542. extra: 921 / 832,
  9543. bottom: 0.03
  9544. }
  9545. },
  9546. hand: {
  9547. height: math.unit(6 / 10.24, "feet"),
  9548. name: "Hand",
  9549. image: {
  9550. source: "./media/characters/mekuto/hand.svg"
  9551. }
  9552. },
  9553. foot: {
  9554. height: math.unit(6 / 5.05, "feet"),
  9555. name: "Foot",
  9556. image: {
  9557. source: "./media/characters/mekuto/foot.svg"
  9558. }
  9559. },
  9560. },
  9561. [
  9562. {
  9563. name: "Minimicro",
  9564. height: math.unit(0.2, "inches")
  9565. },
  9566. {
  9567. name: "Micro",
  9568. height: math.unit(1.5, "inches")
  9569. },
  9570. {
  9571. name: "Normal",
  9572. height: math.unit(5 + 11 / 12, "feet"),
  9573. default: true
  9574. },
  9575. {
  9576. name: "Minimacro",
  9577. height: math.unit(17 + 9 / 12, "feet")
  9578. },
  9579. {
  9580. name: "Macro",
  9581. height: math.unit(177.5, "feet")
  9582. },
  9583. {
  9584. name: "Megamacro",
  9585. height: math.unit(152, "miles")
  9586. },
  9587. ]
  9588. ))
  9589. characterMakers.push(() => makeCharacter(
  9590. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9591. {
  9592. front: {
  9593. height: math.unit(6.5, "inches"),
  9594. weight: math.unit(13, "oz"),
  9595. name: "Front",
  9596. image: {
  9597. source: "./media/characters/dafydd-tomos/front.svg",
  9598. extra: 2990 / 2603,
  9599. bottom: 0.03
  9600. }
  9601. },
  9602. },
  9603. [
  9604. {
  9605. name: "Micro",
  9606. height: math.unit(6.5, "inches"),
  9607. default: true
  9608. },
  9609. ]
  9610. ))
  9611. characterMakers.push(() => makeCharacter(
  9612. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9613. {
  9614. front: {
  9615. height: math.unit(6, "feet"),
  9616. weight: math.unit(150, "lb"),
  9617. name: "Front",
  9618. image: {
  9619. source: "./media/characters/splinter/front.svg",
  9620. extra: 2990 / 2882,
  9621. bottom: 0.04
  9622. }
  9623. },
  9624. back: {
  9625. height: math.unit(6, "feet"),
  9626. weight: math.unit(150, "lb"),
  9627. name: "Back",
  9628. image: {
  9629. source: "./media/characters/splinter/back.svg",
  9630. extra: 2990 / 2882,
  9631. bottom: 0.04
  9632. }
  9633. },
  9634. },
  9635. [
  9636. {
  9637. name: "Normal",
  9638. height: math.unit(6, "feet")
  9639. },
  9640. {
  9641. name: "Macro",
  9642. height: math.unit(230, "meters"),
  9643. default: true
  9644. },
  9645. ]
  9646. ))
  9647. characterMakers.push(() => makeCharacter(
  9648. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9649. {
  9650. front: {
  9651. height: math.unit(4 + 10 / 12, "feet"),
  9652. weight: math.unit(480, "lb"),
  9653. name: "Front",
  9654. image: {
  9655. source: "./media/characters/snow-gabumon/front.svg",
  9656. extra: 1140 / 963,
  9657. bottom: 0.058
  9658. }
  9659. },
  9660. back: {
  9661. height: math.unit(4 + 10 / 12, "feet"),
  9662. weight: math.unit(480, "lb"),
  9663. name: "Back",
  9664. image: {
  9665. source: "./media/characters/snow-gabumon/back.svg",
  9666. extra: 1115 / 962,
  9667. bottom: 0.041
  9668. }
  9669. },
  9670. frontUndresed: {
  9671. height: math.unit(4 + 10 / 12, "feet"),
  9672. weight: math.unit(480, "lb"),
  9673. name: "Front (Undressed)",
  9674. image: {
  9675. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9676. extra: 1061 / 960,
  9677. bottom: 0.045
  9678. }
  9679. },
  9680. },
  9681. [
  9682. {
  9683. name: "Micro",
  9684. height: math.unit(1, "inch")
  9685. },
  9686. {
  9687. name: "Normal",
  9688. height: math.unit(4 + 10 / 12, "feet"),
  9689. default: true
  9690. },
  9691. {
  9692. name: "Macro",
  9693. height: math.unit(200, "feet")
  9694. },
  9695. {
  9696. name: "Megamacro",
  9697. height: math.unit(120, "miles")
  9698. },
  9699. {
  9700. name: "Gigamacro",
  9701. height: math.unit(9800, "miles")
  9702. },
  9703. ]
  9704. ))
  9705. characterMakers.push(() => makeCharacter(
  9706. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9707. {
  9708. front: {
  9709. height: math.unit(1.7, "meters"),
  9710. weight: math.unit(140, "lb"),
  9711. name: "Front",
  9712. image: {
  9713. source: "./media/characters/moody/front.svg",
  9714. extra: 3226 / 3007,
  9715. bottom: 0.087
  9716. }
  9717. },
  9718. },
  9719. [
  9720. {
  9721. name: "Micro",
  9722. height: math.unit(1, "mm")
  9723. },
  9724. {
  9725. name: "Normal",
  9726. height: math.unit(1.7, "meters"),
  9727. default: true
  9728. },
  9729. {
  9730. name: "Macro",
  9731. height: math.unit(80, "meters")
  9732. },
  9733. {
  9734. name: "Macro+",
  9735. height: math.unit(500, "meters")
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9741. {
  9742. front: {
  9743. height: math.unit(6, "feet"),
  9744. weight: math.unit(150, "lb"),
  9745. name: "Front",
  9746. image: {
  9747. source: "./media/characters/zyas/front.svg",
  9748. extra: 1180 / 1120,
  9749. bottom: 0.045
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Normal",
  9756. height: math.unit(10, "feet"),
  9757. default: true
  9758. },
  9759. {
  9760. name: "Macro",
  9761. height: math.unit(500, "feet")
  9762. },
  9763. {
  9764. name: "Megamacro",
  9765. height: math.unit(5, "miles")
  9766. },
  9767. {
  9768. name: "Teramacro",
  9769. height: math.unit(150000, "miles")
  9770. },
  9771. ]
  9772. ))
  9773. characterMakers.push(() => makeCharacter(
  9774. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9775. {
  9776. front: {
  9777. height: math.unit(6, "feet"),
  9778. weight: math.unit(150, "lb"),
  9779. name: "Front",
  9780. image: {
  9781. source: "./media/characters/cuon/front.svg",
  9782. extra: 1390 / 1320,
  9783. bottom: 0.008
  9784. }
  9785. },
  9786. },
  9787. [
  9788. {
  9789. name: "Micro",
  9790. height: math.unit(3, "inches")
  9791. },
  9792. {
  9793. name: "Normal",
  9794. height: math.unit(18 + 9 / 12, "feet"),
  9795. default: true
  9796. },
  9797. {
  9798. name: "Macro",
  9799. height: math.unit(360, "feet")
  9800. },
  9801. {
  9802. name: "Megamacro",
  9803. height: math.unit(360, "miles")
  9804. },
  9805. ]
  9806. ))
  9807. characterMakers.push(() => makeCharacter(
  9808. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9809. {
  9810. front: {
  9811. height: math.unit(2.4, "meters"),
  9812. weight: math.unit(70, "kg"),
  9813. name: "Front",
  9814. image: {
  9815. source: "./media/characters/nyanuxk/front.svg",
  9816. extra: 1172 / 1084,
  9817. bottom: 0.065
  9818. }
  9819. },
  9820. side: {
  9821. height: math.unit(2.4, "meters"),
  9822. weight: math.unit(70, "kg"),
  9823. name: "Side",
  9824. image: {
  9825. source: "./media/characters/nyanuxk/side.svg",
  9826. extra: 1190 / 1132,
  9827. bottom: 0.007
  9828. }
  9829. },
  9830. back: {
  9831. height: math.unit(2.4, "meters"),
  9832. weight: math.unit(70, "kg"),
  9833. name: "Back",
  9834. image: {
  9835. source: "./media/characters/nyanuxk/back.svg",
  9836. extra: 1200 / 1141,
  9837. bottom: 0.015
  9838. }
  9839. },
  9840. foot: {
  9841. height: math.unit(0.52, "meters"),
  9842. name: "Foot",
  9843. image: {
  9844. source: "./media/characters/nyanuxk/foot.svg"
  9845. }
  9846. },
  9847. },
  9848. [
  9849. {
  9850. name: "Micro",
  9851. height: math.unit(2, "cm")
  9852. },
  9853. {
  9854. name: "Normal",
  9855. height: math.unit(2.4, "meters"),
  9856. default: true
  9857. },
  9858. {
  9859. name: "Smaller Macro",
  9860. height: math.unit(120, "meters")
  9861. },
  9862. {
  9863. name: "Bigger Macro",
  9864. height: math.unit(1.2, "km")
  9865. },
  9866. {
  9867. name: "Megamacro",
  9868. height: math.unit(15, "kilometers")
  9869. },
  9870. {
  9871. name: "Gigamacro",
  9872. height: math.unit(2000, "km")
  9873. },
  9874. {
  9875. name: "Teramacro",
  9876. height: math.unit(500000, "km")
  9877. },
  9878. ]
  9879. ))
  9880. characterMakers.push(() => makeCharacter(
  9881. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9882. {
  9883. side: {
  9884. height: math.unit(6, "feet"),
  9885. name: "Side",
  9886. image: {
  9887. source: "./media/characters/ailbhe/side.svg",
  9888. extra: 757 / 464,
  9889. bottom: 0.041
  9890. }
  9891. },
  9892. },
  9893. [
  9894. {
  9895. name: "Normal",
  9896. height: math.unit(1.07, "meters"),
  9897. default: true
  9898. },
  9899. ]
  9900. ))
  9901. characterMakers.push(() => makeCharacter(
  9902. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9903. {
  9904. front: {
  9905. height: math.unit(6, "feet"),
  9906. weight: math.unit(120, "kg"),
  9907. name: "Front",
  9908. image: {
  9909. source: "./media/characters/zevulfius/front.svg",
  9910. extra: 965 / 903
  9911. }
  9912. },
  9913. side: {
  9914. height: math.unit(6, "feet"),
  9915. weight: math.unit(120, "kg"),
  9916. name: "Side",
  9917. image: {
  9918. source: "./media/characters/zevulfius/side.svg",
  9919. extra: 939 / 900
  9920. }
  9921. },
  9922. back: {
  9923. height: math.unit(6, "feet"),
  9924. weight: math.unit(120, "kg"),
  9925. name: "Back",
  9926. image: {
  9927. source: "./media/characters/zevulfius/back.svg",
  9928. extra: 918 / 854,
  9929. bottom: 0.005
  9930. }
  9931. },
  9932. foot: {
  9933. height: math.unit(6 / 3.72, "feet"),
  9934. name: "Foot",
  9935. image: {
  9936. source: "./media/characters/zevulfius/foot.svg"
  9937. }
  9938. },
  9939. },
  9940. [
  9941. {
  9942. name: "Macro",
  9943. height: math.unit(750, "meters")
  9944. },
  9945. {
  9946. name: "Megamacro",
  9947. height: math.unit(20, "km"),
  9948. default: true
  9949. },
  9950. {
  9951. name: "Gigamacro",
  9952. height: math.unit(2000, "km")
  9953. },
  9954. {
  9955. name: "Teramacro",
  9956. height: math.unit(250000, "km")
  9957. },
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9962. {
  9963. front: {
  9964. height: math.unit(100, "feet"),
  9965. weight: math.unit(350, "kg"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/rikes/front.svg",
  9969. extra: 1565 / 1483,
  9970. bottom: 0.017
  9971. }
  9972. },
  9973. },
  9974. [
  9975. {
  9976. name: "Macro",
  9977. height: math.unit(100, "feet"),
  9978. default: true
  9979. },
  9980. ]
  9981. ))
  9982. characterMakers.push(() => makeCharacter(
  9983. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9984. {
  9985. anthro: {
  9986. height: math.unit(8, "feet"),
  9987. weight: math.unit(120, "kg"),
  9988. name: "Anthro",
  9989. image: {
  9990. source: "./media/characters/adam-silver-mane/anthro.svg",
  9991. extra: 5743 / 5339,
  9992. bottom: 0.07
  9993. }
  9994. },
  9995. taur: {
  9996. height: math.unit(16, "feet"),
  9997. weight: math.unit(1500, "kg"),
  9998. name: "Taur",
  9999. image: {
  10000. source: "./media/characters/adam-silver-mane/taur.svg",
  10001. extra: 1713 / 1571,
  10002. bottom: 0.01
  10003. }
  10004. },
  10005. },
  10006. [
  10007. {
  10008. name: "Normal",
  10009. height: math.unit(8, "feet")
  10010. },
  10011. {
  10012. name: "Minimacro",
  10013. height: math.unit(80, "feet")
  10014. },
  10015. {
  10016. name: "Macro",
  10017. height: math.unit(800, "feet"),
  10018. default: true
  10019. },
  10020. {
  10021. name: "Megamacro",
  10022. height: math.unit(8000, "feet")
  10023. },
  10024. {
  10025. name: "Gigamacro",
  10026. height: math.unit(800, "miles")
  10027. },
  10028. {
  10029. name: "Teramacro",
  10030. height: math.unit(80000, "miles")
  10031. },
  10032. {
  10033. name: "Celestial",
  10034. height: math.unit(8e6, "miles")
  10035. },
  10036. {
  10037. name: "Star Dragon",
  10038. height: math.unit(800000, "parsecs")
  10039. },
  10040. {
  10041. name: "Godly",
  10042. height: math.unit(800, "teraparsecs")
  10043. },
  10044. ]
  10045. ))
  10046. characterMakers.push(() => makeCharacter(
  10047. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10048. {
  10049. front: {
  10050. height: math.unit(6, "feet"),
  10051. weight: math.unit(150, "lb"),
  10052. name: "Front",
  10053. image: {
  10054. source: "./media/characters/ky'owin/front.svg",
  10055. extra: 3888 / 3068,
  10056. bottom: 0.015
  10057. }
  10058. },
  10059. },
  10060. [
  10061. {
  10062. name: "Normal",
  10063. height: math.unit(6 + 8 / 12, "feet")
  10064. },
  10065. {
  10066. name: "Large",
  10067. height: math.unit(68, "feet")
  10068. },
  10069. {
  10070. name: "Macro",
  10071. height: math.unit(132, "feet")
  10072. },
  10073. {
  10074. name: "Macro+",
  10075. height: math.unit(340, "feet")
  10076. },
  10077. {
  10078. name: "Macro++",
  10079. height: math.unit(680, "feet"),
  10080. default: true
  10081. },
  10082. {
  10083. name: "Megamacro",
  10084. height: math.unit(1, "mile")
  10085. },
  10086. {
  10087. name: "Megamacro+",
  10088. height: math.unit(10, "miles")
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10094. {
  10095. front: {
  10096. height: math.unit(4, "feet"),
  10097. weight: math.unit(50, "lb"),
  10098. name: "Front",
  10099. image: {
  10100. source: "./media/characters/mal/front.svg",
  10101. extra: 785 / 724,
  10102. bottom: 0.07
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Micro",
  10109. height: math.unit(4, "inches")
  10110. },
  10111. {
  10112. name: "Normal",
  10113. height: math.unit(4, "feet"),
  10114. default: true
  10115. },
  10116. {
  10117. name: "Macro",
  10118. height: math.unit(200, "feet")
  10119. },
  10120. ]
  10121. ))
  10122. characterMakers.push(() => makeCharacter(
  10123. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10124. {
  10125. front: {
  10126. height: math.unit(6, "feet"),
  10127. weight: math.unit(150, "lb"),
  10128. name: "Front",
  10129. image: {
  10130. source: "./media/characters/jordan-deware/front.svg",
  10131. extra: 1191 / 1012
  10132. }
  10133. },
  10134. },
  10135. [
  10136. {
  10137. name: "Nano",
  10138. height: math.unit(0.01, "mm")
  10139. },
  10140. {
  10141. name: "Minimicro",
  10142. height: math.unit(1, "mm")
  10143. },
  10144. {
  10145. name: "Micro",
  10146. height: math.unit(0.5, "inches")
  10147. },
  10148. {
  10149. name: "Normal",
  10150. height: math.unit(4, "feet"),
  10151. default: true
  10152. },
  10153. {
  10154. name: "Minimacro",
  10155. height: math.unit(40, "meters")
  10156. },
  10157. {
  10158. name: "Small Macro",
  10159. height: math.unit(400, "meters")
  10160. },
  10161. {
  10162. name: "Macro",
  10163. height: math.unit(4, "miles")
  10164. },
  10165. {
  10166. name: "Megamacro",
  10167. height: math.unit(40, "miles")
  10168. },
  10169. {
  10170. name: "Megamacro+",
  10171. height: math.unit(400, "miles")
  10172. },
  10173. {
  10174. name: "Gigamacro",
  10175. height: math.unit(400000, "miles")
  10176. },
  10177. ]
  10178. ))
  10179. characterMakers.push(() => makeCharacter(
  10180. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10181. {
  10182. side: {
  10183. height: math.unit(6, "feet"),
  10184. weight: math.unit(150, "lb"),
  10185. name: "Side",
  10186. image: {
  10187. source: "./media/characters/kimiko/side.svg",
  10188. extra: 600 / 358
  10189. }
  10190. },
  10191. },
  10192. [
  10193. {
  10194. name: "Normal",
  10195. height: math.unit(15, "feet"),
  10196. default: true
  10197. },
  10198. {
  10199. name: "Macro",
  10200. height: math.unit(220, "feet")
  10201. },
  10202. {
  10203. name: "Macro+",
  10204. height: math.unit(1450, "feet")
  10205. },
  10206. {
  10207. name: "Megamacro",
  10208. height: math.unit(11500, "feet")
  10209. },
  10210. {
  10211. name: "Gigamacro",
  10212. height: math.unit(9500, "miles")
  10213. },
  10214. {
  10215. name: "Teramacro",
  10216. height: math.unit(2208005005, "miles")
  10217. },
  10218. {
  10219. name: "Examacro",
  10220. height: math.unit(2750, "parsecs")
  10221. },
  10222. {
  10223. name: "Zettamacro",
  10224. height: math.unit(101500, "parsecs")
  10225. },
  10226. ]
  10227. ))
  10228. characterMakers.push(() => makeCharacter(
  10229. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10230. {
  10231. front: {
  10232. height: math.unit(6, "feet"),
  10233. weight: math.unit(70, "kg"),
  10234. name: "Front",
  10235. image: {
  10236. source: "./media/characters/andrew-sleepy/front.svg"
  10237. }
  10238. },
  10239. side: {
  10240. height: math.unit(6, "feet"),
  10241. weight: math.unit(70, "kg"),
  10242. name: "Side",
  10243. image: {
  10244. source: "./media/characters/andrew-sleepy/side.svg"
  10245. }
  10246. },
  10247. },
  10248. [
  10249. {
  10250. name: "Micro",
  10251. height: math.unit(1, "mm"),
  10252. default: true
  10253. },
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10258. {
  10259. front: {
  10260. height: math.unit(6, "feet"),
  10261. weight: math.unit(150, "lb"),
  10262. name: "Front",
  10263. image: {
  10264. source: "./media/characters/judio/front.svg",
  10265. extra: 1258 / 1110
  10266. }
  10267. },
  10268. },
  10269. [
  10270. {
  10271. name: "Normal",
  10272. height: math.unit(5 + 6 / 12, "feet")
  10273. },
  10274. {
  10275. name: "Macro",
  10276. height: math.unit(1000, "feet"),
  10277. default: true
  10278. },
  10279. {
  10280. name: "Megamacro",
  10281. height: math.unit(10, "miles")
  10282. },
  10283. ]
  10284. ))
  10285. characterMakers.push(() => makeCharacter(
  10286. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10287. {
  10288. front: {
  10289. height: math.unit(6, "feet"),
  10290. weight: math.unit(68, "kg"),
  10291. name: "Front",
  10292. image: {
  10293. source: "./media/characters/nomaxice/front.svg",
  10294. extra: 1498 / 1073,
  10295. bottom: 0.075
  10296. }
  10297. },
  10298. foot: {
  10299. height: math.unit(1.1, "feet"),
  10300. name: "Foot",
  10301. image: {
  10302. source: "./media/characters/nomaxice/foot.svg"
  10303. }
  10304. },
  10305. },
  10306. [
  10307. {
  10308. name: "Micro",
  10309. height: math.unit(8, "cm")
  10310. },
  10311. {
  10312. name: "Norm",
  10313. height: math.unit(1.82, "m")
  10314. },
  10315. {
  10316. name: "Norm+",
  10317. height: math.unit(8.8, "feet")
  10318. },
  10319. {
  10320. name: "Big",
  10321. height: math.unit(8, "meters"),
  10322. default: true
  10323. },
  10324. {
  10325. name: "Macro",
  10326. height: math.unit(18, "meters")
  10327. },
  10328. {
  10329. name: "Macro+",
  10330. height: math.unit(88, "meters")
  10331. },
  10332. ]
  10333. ))
  10334. characterMakers.push(() => makeCharacter(
  10335. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10336. {
  10337. front: {
  10338. height: math.unit(12, "feet"),
  10339. weight: math.unit(1.5, "tons"),
  10340. name: "Front",
  10341. image: {
  10342. source: "./media/characters/dydros/front.svg",
  10343. extra: 863 / 800,
  10344. bottom: 0.015
  10345. }
  10346. },
  10347. back: {
  10348. height: math.unit(12, "feet"),
  10349. weight: math.unit(1.5, "tons"),
  10350. name: "Back",
  10351. image: {
  10352. source: "./media/characters/dydros/back.svg",
  10353. extra: 900 / 843,
  10354. bottom: 0.005
  10355. }
  10356. },
  10357. },
  10358. [
  10359. {
  10360. name: "Normal",
  10361. height: math.unit(12, "feet"),
  10362. default: true
  10363. },
  10364. ]
  10365. ))
  10366. characterMakers.push(() => makeCharacter(
  10367. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10368. {
  10369. front: {
  10370. height: math.unit(6, "feet"),
  10371. weight: math.unit(100, "kg"),
  10372. name: "Front",
  10373. image: {
  10374. source: "./media/characters/riggi/front.svg",
  10375. extra: 5787 / 5303
  10376. }
  10377. },
  10378. hyper: {
  10379. height: math.unit(6 * 5 / 3, "feet"),
  10380. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10381. name: "Hyper",
  10382. image: {
  10383. source: "./media/characters/riggi/hyper.svg",
  10384. extra: 3595 / 3485
  10385. }
  10386. },
  10387. },
  10388. [
  10389. {
  10390. name: "Small Macro",
  10391. height: math.unit(50, "feet")
  10392. },
  10393. {
  10394. name: "Default",
  10395. height: math.unit(200, "feet"),
  10396. default: true
  10397. },
  10398. {
  10399. name: "Loom",
  10400. height: math.unit(10000, "feet")
  10401. },
  10402. {
  10403. name: "Cruising Altitude",
  10404. height: math.unit(30000, "feet")
  10405. },
  10406. {
  10407. name: "Megamacro",
  10408. height: math.unit(100, "miles")
  10409. },
  10410. {
  10411. name: "Continent Sized",
  10412. height: math.unit(2800, "miles")
  10413. },
  10414. {
  10415. name: "Earth Sized",
  10416. height: math.unit(8000, "miles")
  10417. },
  10418. ]
  10419. ))
  10420. characterMakers.push(() => makeCharacter(
  10421. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10422. {
  10423. front: {
  10424. height: math.unit(6, "feet"),
  10425. weight: math.unit(250, "lb"),
  10426. name: "Front",
  10427. image: {
  10428. source: "./media/characters/alexi/front.svg",
  10429. extra: 3483 / 3291,
  10430. bottom: 0.04
  10431. }
  10432. },
  10433. back: {
  10434. height: math.unit(6, "feet"),
  10435. weight: math.unit(250, "lb"),
  10436. name: "Back",
  10437. image: {
  10438. source: "./media/characters/alexi/back.svg",
  10439. extra: 3533 / 3356,
  10440. bottom: 0.021
  10441. }
  10442. },
  10443. frontTransforming: {
  10444. height: math.unit(8.58, "feet"),
  10445. weight: math.unit(1300, "lb"),
  10446. name: "Transforming",
  10447. image: {
  10448. source: "./media/characters/alexi/front-transforming.svg",
  10449. extra: 437 / 409,
  10450. bottom: 19 / 458.66
  10451. }
  10452. },
  10453. frontTransformed: {
  10454. height: math.unit(12.5, "feet"),
  10455. weight: math.unit(4000, "lb"),
  10456. name: "Transformed",
  10457. image: {
  10458. source: "./media/characters/alexi/front-transformed.svg",
  10459. extra: 639 / 614,
  10460. bottom: 30.55 / 671
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Normal",
  10467. height: math.unit(14, "feet"),
  10468. default: true
  10469. },
  10470. {
  10471. name: "Minimacro",
  10472. height: math.unit(30, "meters")
  10473. },
  10474. {
  10475. name: "Macro",
  10476. height: math.unit(500, "meters")
  10477. },
  10478. {
  10479. name: "Megamacro",
  10480. height: math.unit(9000, "km")
  10481. },
  10482. {
  10483. name: "Teramacro",
  10484. height: math.unit(384000, "km")
  10485. },
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10490. {
  10491. front: {
  10492. height: math.unit(6, "feet"),
  10493. weight: math.unit(150, "lb"),
  10494. name: "Front",
  10495. image: {
  10496. source: "./media/characters/kayroo/front.svg",
  10497. extra: 1153 / 1038,
  10498. bottom: 0.06
  10499. }
  10500. },
  10501. foot: {
  10502. height: math.unit(6, "feet"),
  10503. weight: math.unit(150, "lb"),
  10504. name: "Foot",
  10505. image: {
  10506. source: "./media/characters/kayroo/foot.svg"
  10507. }
  10508. },
  10509. },
  10510. [
  10511. {
  10512. name: "Normal",
  10513. height: math.unit(8, "feet"),
  10514. default: true
  10515. },
  10516. {
  10517. name: "Minimacro",
  10518. height: math.unit(250, "feet")
  10519. },
  10520. {
  10521. name: "Macro",
  10522. height: math.unit(2800, "feet")
  10523. },
  10524. {
  10525. name: "Megamacro",
  10526. height: math.unit(5200, "feet")
  10527. },
  10528. {
  10529. name: "Gigamacro",
  10530. height: math.unit(27000, "feet")
  10531. },
  10532. {
  10533. name: "Omega",
  10534. height: math.unit(45000, "feet")
  10535. },
  10536. ]
  10537. ))
  10538. characterMakers.push(() => makeCharacter(
  10539. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10540. {
  10541. front: {
  10542. height: math.unit(18, "feet"),
  10543. weight: math.unit(5800, "lb"),
  10544. name: "Front",
  10545. image: {
  10546. source: "./media/characters/rhys/front.svg",
  10547. extra: 3386 / 3090,
  10548. bottom: 0.07
  10549. }
  10550. },
  10551. },
  10552. [
  10553. {
  10554. name: "Normal",
  10555. height: math.unit(18, "feet"),
  10556. default: true
  10557. },
  10558. {
  10559. name: "Working Size",
  10560. height: math.unit(200, "feet")
  10561. },
  10562. {
  10563. name: "Demolition Size",
  10564. height: math.unit(2000, "feet")
  10565. },
  10566. {
  10567. name: "Maximum Licensed Size",
  10568. height: math.unit(5, "miles")
  10569. },
  10570. {
  10571. name: "Maximum Observed Size",
  10572. height: math.unit(10, "yottameters")
  10573. },
  10574. ]
  10575. ))
  10576. characterMakers.push(() => makeCharacter(
  10577. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10578. {
  10579. front: {
  10580. height: math.unit(6, "feet"),
  10581. weight: math.unit(250, "lb"),
  10582. name: "Front",
  10583. image: {
  10584. source: "./media/characters/toto/front.svg",
  10585. extra: 527 / 479,
  10586. bottom: 0.05
  10587. }
  10588. },
  10589. },
  10590. [
  10591. {
  10592. name: "Micro",
  10593. height: math.unit(3, "feet")
  10594. },
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(10, "feet")
  10598. },
  10599. {
  10600. name: "Macro",
  10601. height: math.unit(150, "feet"),
  10602. default: true
  10603. },
  10604. {
  10605. name: "Megamacro",
  10606. height: math.unit(1200, "feet")
  10607. },
  10608. ]
  10609. ))
  10610. characterMakers.push(() => makeCharacter(
  10611. { name: "King", species: ["lion"], tags: ["anthro"] },
  10612. {
  10613. back: {
  10614. height: math.unit(6, "feet"),
  10615. weight: math.unit(150, "lb"),
  10616. name: "Back",
  10617. image: {
  10618. source: "./media/characters/king/back.svg"
  10619. }
  10620. },
  10621. },
  10622. [
  10623. {
  10624. name: "Micro",
  10625. height: math.unit(2, "inches")
  10626. },
  10627. {
  10628. name: "Normal",
  10629. height: math.unit(8, "feet")
  10630. },
  10631. {
  10632. name: "Macro",
  10633. height: math.unit(200, "feet"),
  10634. default: true
  10635. },
  10636. {
  10637. name: "Megamacro",
  10638. height: math.unit(50, "miles")
  10639. },
  10640. ]
  10641. ))
  10642. characterMakers.push(() => makeCharacter(
  10643. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10644. {
  10645. anthro: {
  10646. height: math.unit(6 + 5 / 12, "feet"),
  10647. weight: math.unit(280, "lb"),
  10648. name: "Anthro",
  10649. image: {
  10650. source: "./media/characters/cordite/anthro.svg",
  10651. extra: 1986 / 1905,
  10652. bottom: 0.025
  10653. }
  10654. },
  10655. feral: {
  10656. height: math.unit(2, "feet"),
  10657. weight: math.unit(90, "lb"),
  10658. name: "Feral",
  10659. image: {
  10660. source: "./media/characters/cordite/feral.svg",
  10661. extra: 1260 / 755,
  10662. bottom: 0.05
  10663. }
  10664. },
  10665. },
  10666. [
  10667. {
  10668. name: "Normal",
  10669. height: math.unit(6 + 5 / 12, "feet"),
  10670. default: true
  10671. },
  10672. ]
  10673. ))
  10674. characterMakers.push(() => makeCharacter(
  10675. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10676. {
  10677. front: {
  10678. height: math.unit(6, "feet"),
  10679. weight: math.unit(150, "lb"),
  10680. name: "Front",
  10681. image: {
  10682. source: "./media/characters/pianostrong/front.svg",
  10683. extra: 6577 / 6254,
  10684. bottom: 0.02
  10685. }
  10686. },
  10687. side: {
  10688. height: math.unit(6, "feet"),
  10689. weight: math.unit(150, "lb"),
  10690. name: "Side",
  10691. image: {
  10692. source: "./media/characters/pianostrong/side.svg",
  10693. extra: 6106 / 5730
  10694. }
  10695. },
  10696. back: {
  10697. height: math.unit(6, "feet"),
  10698. weight: math.unit(150, "lb"),
  10699. name: "Back",
  10700. image: {
  10701. source: "./media/characters/pianostrong/back.svg",
  10702. extra: 6085 / 5733,
  10703. bottom: 0.01
  10704. }
  10705. },
  10706. },
  10707. [
  10708. {
  10709. name: "Macro",
  10710. height: math.unit(100, "feet")
  10711. },
  10712. {
  10713. name: "Macro+",
  10714. height: math.unit(300, "feet"),
  10715. default: true
  10716. },
  10717. {
  10718. name: "Macro++",
  10719. height: math.unit(1000, "feet")
  10720. },
  10721. ]
  10722. ))
  10723. characterMakers.push(() => makeCharacter(
  10724. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10725. {
  10726. front: {
  10727. height: math.unit(6, "feet"),
  10728. weight: math.unit(150, "lb"),
  10729. name: "Front",
  10730. image: {
  10731. source: "./media/characters/kona/front.svg",
  10732. extra: 2960 / 2629,
  10733. bottom: 0.005
  10734. }
  10735. },
  10736. },
  10737. [
  10738. {
  10739. name: "Normal",
  10740. height: math.unit(11 + 8 / 12, "feet")
  10741. },
  10742. {
  10743. name: "Macro",
  10744. height: math.unit(850, "feet"),
  10745. default: true
  10746. },
  10747. {
  10748. name: "Macro+",
  10749. height: math.unit(1.5, "km"),
  10750. default: true
  10751. },
  10752. {
  10753. name: "Megamacro",
  10754. height: math.unit(80, "miles")
  10755. },
  10756. {
  10757. name: "Gigamacro",
  10758. height: math.unit(3500, "miles")
  10759. },
  10760. ]
  10761. ))
  10762. characterMakers.push(() => makeCharacter(
  10763. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10764. {
  10765. side: {
  10766. height: math.unit(1.9, "meters"),
  10767. weight: math.unit(326, "kg"),
  10768. name: "Side",
  10769. image: {
  10770. source: "./media/characters/levi/side.svg",
  10771. extra: 1704 / 1334,
  10772. bottom: 0.02
  10773. }
  10774. },
  10775. },
  10776. [
  10777. {
  10778. name: "Normal",
  10779. height: math.unit(1.9, "meters"),
  10780. default: true
  10781. },
  10782. {
  10783. name: "Macro",
  10784. height: math.unit(20, "meters")
  10785. },
  10786. {
  10787. name: "Macro+",
  10788. height: math.unit(200, "meters")
  10789. },
  10790. {
  10791. name: "Megamacro",
  10792. height: math.unit(2, "km")
  10793. },
  10794. {
  10795. name: "Megamacro+",
  10796. height: math.unit(20, "km")
  10797. },
  10798. {
  10799. name: "Gigamacro",
  10800. height: math.unit(2500, "km")
  10801. },
  10802. {
  10803. name: "Gigamacro+",
  10804. height: math.unit(120000, "km")
  10805. },
  10806. {
  10807. name: "Teramacro",
  10808. height: math.unit(7.77e6, "km")
  10809. },
  10810. ]
  10811. ))
  10812. characterMakers.push(() => makeCharacter(
  10813. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10814. {
  10815. front: {
  10816. height: math.unit(6 + 4 / 12, "feet"),
  10817. weight: math.unit(188, "lb"),
  10818. name: "Front",
  10819. image: {
  10820. source: "./media/characters/bmc/front.svg",
  10821. extra: 1067 / 1022,
  10822. bottom: 0.047
  10823. }
  10824. },
  10825. },
  10826. [
  10827. {
  10828. name: "Human-sized",
  10829. height: math.unit(6 + 4 / 12, "feet")
  10830. },
  10831. {
  10832. name: "Small",
  10833. height: math.unit(250, "feet")
  10834. },
  10835. {
  10836. name: "Normal",
  10837. height: math.unit(1250, "feet"),
  10838. default: true
  10839. },
  10840. {
  10841. name: "Good Day",
  10842. height: math.unit(88, "miles")
  10843. },
  10844. {
  10845. name: "Largest Measured Size",
  10846. height: math.unit(11.2e6, "lightyears")
  10847. },
  10848. ]
  10849. ))
  10850. characterMakers.push(() => makeCharacter(
  10851. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10852. {
  10853. front: {
  10854. height: math.unit(20, "feet"),
  10855. weight: math.unit(2016, "kg"),
  10856. name: "Front",
  10857. image: {
  10858. source: "./media/characters/sven-the-kaiju/front.svg",
  10859. extra: 1479 / 1449,
  10860. bottom: 0.05
  10861. }
  10862. },
  10863. },
  10864. [
  10865. {
  10866. name: "Fairy",
  10867. height: math.unit(6, "inches")
  10868. },
  10869. {
  10870. name: "Normal",
  10871. height: math.unit(20, "feet"),
  10872. default: true
  10873. },
  10874. {
  10875. name: "Rampage",
  10876. height: math.unit(200, "feet")
  10877. },
  10878. {
  10879. name: "Archfey Forest Guardian",
  10880. height: math.unit(1, "mile")
  10881. },
  10882. ]
  10883. ))
  10884. characterMakers.push(() => makeCharacter(
  10885. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10886. {
  10887. front: {
  10888. height: math.unit(4, "meters"),
  10889. weight: math.unit(2, "tons"),
  10890. name: "Front",
  10891. image: {
  10892. source: "./media/characters/marik/front.svg",
  10893. extra: 1057 / 1003,
  10894. bottom: 0.08
  10895. }
  10896. },
  10897. },
  10898. [
  10899. {
  10900. name: "Normal",
  10901. height: math.unit(4, "meters"),
  10902. default: true
  10903. },
  10904. {
  10905. name: "Macro",
  10906. height: math.unit(20, "meters")
  10907. },
  10908. {
  10909. name: "Megamacro",
  10910. height: math.unit(50, "km")
  10911. },
  10912. {
  10913. name: "Gigamacro",
  10914. height: math.unit(100, "km")
  10915. },
  10916. {
  10917. name: "Alpha Macro",
  10918. height: math.unit(7.88e7, "yottameters")
  10919. },
  10920. ]
  10921. ))
  10922. characterMakers.push(() => makeCharacter(
  10923. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10924. {
  10925. front: {
  10926. height: math.unit(6, "feet"),
  10927. weight: math.unit(110, "lb"),
  10928. name: "Front",
  10929. image: {
  10930. source: "./media/characters/mel/front.svg",
  10931. extra: 736 / 617,
  10932. bottom: 0.017
  10933. }
  10934. },
  10935. },
  10936. [
  10937. {
  10938. name: "Pico",
  10939. height: math.unit(3, "pm")
  10940. },
  10941. {
  10942. name: "Nano",
  10943. height: math.unit(3, "nm")
  10944. },
  10945. {
  10946. name: "Micro",
  10947. height: math.unit(0.3, "mm"),
  10948. default: true
  10949. },
  10950. {
  10951. name: "Micro+",
  10952. height: math.unit(3, "mm")
  10953. },
  10954. {
  10955. name: "Normal",
  10956. height: math.unit(5 + 10.5 / 12, "feet")
  10957. },
  10958. ]
  10959. ))
  10960. characterMakers.push(() => makeCharacter(
  10961. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10962. {
  10963. kaiju: {
  10964. height: math.unit(1.75, "meters"),
  10965. weight: math.unit(55, "kg"),
  10966. name: "Kaiju",
  10967. image: {
  10968. source: "./media/characters/lykonous/kaiju.svg",
  10969. extra: 1055 / 946,
  10970. bottom: 0.135
  10971. }
  10972. },
  10973. },
  10974. [
  10975. {
  10976. name: "Normal",
  10977. height: math.unit(2.5, "meters"),
  10978. default: true
  10979. },
  10980. {
  10981. name: "Kaiju Dragon",
  10982. height: math.unit(60, "meters")
  10983. },
  10984. {
  10985. name: "Mega Kaiju",
  10986. height: math.unit(120, "km")
  10987. },
  10988. {
  10989. name: "Giga Kaiju",
  10990. height: math.unit(200, "megameters")
  10991. },
  10992. {
  10993. name: "Terra Kaiju",
  10994. height: math.unit(400, "gigameters")
  10995. },
  10996. {
  10997. name: "Kaiju Dragon God",
  10998. height: math.unit(13000, "exaparsecs")
  10999. },
  11000. ]
  11001. ))
  11002. characterMakers.push(() => makeCharacter(
  11003. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11004. {
  11005. front: {
  11006. height: math.unit(6, "feet"),
  11007. weight: math.unit(150, "lb"),
  11008. name: "Front",
  11009. image: {
  11010. source: "./media/characters/blü/front.svg",
  11011. extra: 1883 / 1564,
  11012. bottom: 0.031
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(13, "feet"),
  11020. default: true
  11021. },
  11022. {
  11023. name: "Big Boi",
  11024. height: math.unit(150, "meters")
  11025. },
  11026. {
  11027. name: "Mini Stomper",
  11028. height: math.unit(300, "meters")
  11029. },
  11030. {
  11031. name: "Macro",
  11032. height: math.unit(1000, "meters")
  11033. },
  11034. {
  11035. name: "Megamacro",
  11036. height: math.unit(11000, "meters")
  11037. },
  11038. {
  11039. name: "Gigamacro",
  11040. height: math.unit(11000, "km")
  11041. },
  11042. {
  11043. name: "Teramacro",
  11044. height: math.unit(420000, "km")
  11045. },
  11046. {
  11047. name: "Examacro",
  11048. height: math.unit(120, "parsecs")
  11049. },
  11050. {
  11051. name: "God Tho",
  11052. height: math.unit(98000000000, "parsecs")
  11053. },
  11054. ]
  11055. ))
  11056. characterMakers.push(() => makeCharacter(
  11057. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11058. {
  11059. taurFront: {
  11060. height: math.unit(6, "feet"),
  11061. weight: math.unit(200, "lb"),
  11062. name: "Taur (Front)",
  11063. image: {
  11064. source: "./media/characters/scales/taur-front.svg",
  11065. extra: 1,
  11066. bottom: 0.05
  11067. }
  11068. },
  11069. taurBack: {
  11070. height: math.unit(6, "feet"),
  11071. weight: math.unit(200, "lb"),
  11072. name: "Taur (Back)",
  11073. image: {
  11074. source: "./media/characters/scales/taur-back.svg",
  11075. extra: 1,
  11076. bottom: 0.08
  11077. }
  11078. },
  11079. anthro: {
  11080. height: math.unit(6 * 7 / 12, "feet"),
  11081. weight: math.unit(100, "lb"),
  11082. name: "Anthro",
  11083. image: {
  11084. source: "./media/characters/scales/anthro.svg",
  11085. extra: 1,
  11086. bottom: 0.06
  11087. }
  11088. },
  11089. },
  11090. [
  11091. {
  11092. name: "Normal",
  11093. height: math.unit(12, "feet"),
  11094. default: true
  11095. },
  11096. ]
  11097. ))
  11098. characterMakers.push(() => makeCharacter(
  11099. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11100. {
  11101. front: {
  11102. height: math.unit(6, "feet"),
  11103. weight: math.unit(150, "lb"),
  11104. name: "Front",
  11105. image: {
  11106. source: "./media/characters/koragos/front.svg",
  11107. extra: 841 / 794,
  11108. bottom: 0.035
  11109. }
  11110. },
  11111. back: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(150, "lb"),
  11114. name: "Back",
  11115. image: {
  11116. source: "./media/characters/koragos/back.svg",
  11117. extra: 841 / 810,
  11118. bottom: 0.022
  11119. }
  11120. },
  11121. },
  11122. [
  11123. {
  11124. name: "Normal",
  11125. height: math.unit(6 + 11 / 12, "feet"),
  11126. default: true
  11127. },
  11128. {
  11129. name: "Macro",
  11130. height: math.unit(490, "feet")
  11131. },
  11132. {
  11133. name: "Megamacro",
  11134. height: math.unit(10, "miles")
  11135. },
  11136. {
  11137. name: "Gigamacro",
  11138. height: math.unit(50, "miles")
  11139. },
  11140. ]
  11141. ))
  11142. characterMakers.push(() => makeCharacter(
  11143. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11144. {
  11145. front: {
  11146. height: math.unit(6, "feet"),
  11147. weight: math.unit(250, "lb"),
  11148. name: "Front",
  11149. image: {
  11150. source: "./media/characters/xylrem/front.svg",
  11151. extra: 3323 / 3050,
  11152. bottom: 0.065
  11153. }
  11154. },
  11155. },
  11156. [
  11157. {
  11158. name: "Micro",
  11159. height: math.unit(4, "feet")
  11160. },
  11161. {
  11162. name: "Normal",
  11163. height: math.unit(16, "feet"),
  11164. default: true
  11165. },
  11166. {
  11167. name: "Macro",
  11168. height: math.unit(2720, "feet")
  11169. },
  11170. {
  11171. name: "Megamacro",
  11172. height: math.unit(25000, "miles")
  11173. },
  11174. ]
  11175. ))
  11176. characterMakers.push(() => makeCharacter(
  11177. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11178. {
  11179. front: {
  11180. height: math.unit(8, "feet"),
  11181. weight: math.unit(250, "kg"),
  11182. name: "Front",
  11183. image: {
  11184. source: "./media/characters/ikideru/front.svg",
  11185. extra: 930 / 870,
  11186. bottom: 0.087
  11187. }
  11188. },
  11189. back: {
  11190. height: math.unit(8, "feet"),
  11191. weight: math.unit(250, "kg"),
  11192. name: "Back",
  11193. image: {
  11194. source: "./media/characters/ikideru/back.svg",
  11195. extra: 919 / 852,
  11196. bottom: 0.055
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Rare",
  11203. height: math.unit(8, "feet"),
  11204. default: true
  11205. },
  11206. {
  11207. name: "Playful Loom",
  11208. height: math.unit(80, "feet")
  11209. },
  11210. {
  11211. name: "City Leaner",
  11212. height: math.unit(230, "feet")
  11213. },
  11214. {
  11215. name: "Megamacro",
  11216. height: math.unit(2500, "feet")
  11217. },
  11218. {
  11219. name: "Gigamacro",
  11220. height: math.unit(26400, "feet")
  11221. },
  11222. {
  11223. name: "Tectonic Shifter",
  11224. height: math.unit(1.7, "megameters")
  11225. },
  11226. {
  11227. name: "Planet Carer",
  11228. height: math.unit(21, "megameters")
  11229. },
  11230. {
  11231. name: "God",
  11232. height: math.unit(11157.22, "parsecs")
  11233. },
  11234. ]
  11235. ))
  11236. characterMakers.push(() => makeCharacter(
  11237. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11238. {
  11239. front: {
  11240. height: math.unit(6, "feet"),
  11241. weight: math.unit(120, "lb"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/neo/front.svg"
  11245. }
  11246. },
  11247. },
  11248. [
  11249. {
  11250. name: "Micro",
  11251. height: math.unit(2, "inches"),
  11252. default: true
  11253. },
  11254. {
  11255. name: "Human Size",
  11256. height: math.unit(5 + 8 / 12, "feet")
  11257. },
  11258. ]
  11259. ))
  11260. characterMakers.push(() => makeCharacter(
  11261. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11262. {
  11263. front: {
  11264. height: math.unit(13 + 10 / 12, "feet"),
  11265. weight: math.unit(5320, "lb"),
  11266. name: "Front",
  11267. image: {
  11268. source: "./media/characters/chauncey-chantz/front.svg",
  11269. extra: 1587 / 1435,
  11270. bottom: 0.02
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Normal",
  11277. height: math.unit(13 + 10 / 12, "feet"),
  11278. default: true
  11279. },
  11280. {
  11281. name: "Macro",
  11282. height: math.unit(45, "feet")
  11283. },
  11284. {
  11285. name: "Megamacro",
  11286. height: math.unit(250, "miles")
  11287. },
  11288. {
  11289. name: "Planetary",
  11290. height: math.unit(10000, "miles")
  11291. },
  11292. {
  11293. name: "Galactic",
  11294. height: math.unit(40000, "parsecs")
  11295. },
  11296. {
  11297. name: "Universal",
  11298. height: math.unit(1, "yottameter")
  11299. },
  11300. ]
  11301. ))
  11302. characterMakers.push(() => makeCharacter(
  11303. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11304. {
  11305. front: {
  11306. height: math.unit(6, "feet"),
  11307. weight: math.unit(150, "lb"),
  11308. name: "Front",
  11309. image: {
  11310. source: "./media/characters/epifox/front.svg",
  11311. extra: 1,
  11312. bottom: 0.075
  11313. }
  11314. },
  11315. },
  11316. [
  11317. {
  11318. name: "Micro",
  11319. height: math.unit(6, "inches")
  11320. },
  11321. {
  11322. name: "Normal",
  11323. height: math.unit(12, "feet"),
  11324. default: true
  11325. },
  11326. {
  11327. name: "Macro",
  11328. height: math.unit(3810, "feet")
  11329. },
  11330. {
  11331. name: "Megamacro",
  11332. height: math.unit(500, "miles")
  11333. },
  11334. ]
  11335. ))
  11336. characterMakers.push(() => makeCharacter(
  11337. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11338. {
  11339. front: {
  11340. height: math.unit(1.8796, "m"),
  11341. weight: math.unit(230, "lb"),
  11342. name: "Front",
  11343. image: {
  11344. source: "./media/characters/colin-t/front.svg",
  11345. extra: 1272 / 1193,
  11346. bottom: 0.07
  11347. }
  11348. },
  11349. },
  11350. [
  11351. {
  11352. name: "Micro",
  11353. height: math.unit(0.571, "meters")
  11354. },
  11355. {
  11356. name: "Normal",
  11357. height: math.unit(1.8796, "meters"),
  11358. default: true
  11359. },
  11360. {
  11361. name: "Tall",
  11362. height: math.unit(4, "meters")
  11363. },
  11364. {
  11365. name: "Macro",
  11366. height: math.unit(67.241, "meters")
  11367. },
  11368. {
  11369. name: "Megamacro",
  11370. height: math.unit(371.856, "meters")
  11371. },
  11372. {
  11373. name: "Planetary",
  11374. height: math.unit(12631.5689, "km")
  11375. },
  11376. ]
  11377. ))
  11378. characterMakers.push(() => makeCharacter(
  11379. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11380. {
  11381. front: {
  11382. height: math.unit(1.85, "meters"),
  11383. weight: math.unit(80, "kg"),
  11384. name: "Front",
  11385. image: {
  11386. source: "./media/characters/matvei/front.svg",
  11387. extra: 614 / 594,
  11388. bottom: 0.01
  11389. }
  11390. },
  11391. },
  11392. [
  11393. {
  11394. name: "Normal",
  11395. height: math.unit(1.85, "meters"),
  11396. default: true
  11397. },
  11398. ]
  11399. ))
  11400. characterMakers.push(() => makeCharacter(
  11401. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11402. {
  11403. front: {
  11404. height: math.unit(5 + 9 / 12, "feet"),
  11405. weight: math.unit(70, "lb"),
  11406. name: "Front",
  11407. image: {
  11408. source: "./media/characters/quincy/front.svg",
  11409. extra: 3041 / 2751
  11410. }
  11411. },
  11412. back: {
  11413. height: math.unit(5 + 9 / 12, "feet"),
  11414. weight: math.unit(70, "lb"),
  11415. name: "Back",
  11416. image: {
  11417. source: "./media/characters/quincy/back.svg",
  11418. extra: 3041 / 2751
  11419. }
  11420. },
  11421. flying: {
  11422. height: math.unit(5 + 4 / 12, "feet"),
  11423. weight: math.unit(70, "lb"),
  11424. name: "Flying",
  11425. image: {
  11426. source: "./media/characters/quincy/flying.svg",
  11427. extra: 1044 / 930
  11428. }
  11429. },
  11430. },
  11431. [
  11432. {
  11433. name: "Micro",
  11434. height: math.unit(3, "cm")
  11435. },
  11436. {
  11437. name: "Normal",
  11438. height: math.unit(5 + 9 / 12, "feet")
  11439. },
  11440. {
  11441. name: "Macro",
  11442. height: math.unit(200, "meters"),
  11443. default: true
  11444. },
  11445. {
  11446. name: "Megamacro",
  11447. height: math.unit(1000, "meters")
  11448. },
  11449. ]
  11450. ))
  11451. characterMakers.push(() => makeCharacter(
  11452. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11453. {
  11454. front: {
  11455. height: math.unit(4 + 7 / 12, "feet"),
  11456. weight: math.unit(50, "lb"),
  11457. name: "Front",
  11458. image: {
  11459. source: "./media/characters/vanrel/front.svg",
  11460. extra: 1,
  11461. bottom: 0.02
  11462. }
  11463. },
  11464. frontAlt: {
  11465. height: math.unit(4 + 7 / 12, "feet"),
  11466. weight: math.unit(50, "lb"),
  11467. name: "Front-alt",
  11468. image: {
  11469. source: "./media/characters/vanrel/front-alt.svg",
  11470. extra: 1,
  11471. bottom: 15 / 1511
  11472. }
  11473. },
  11474. elemental: {
  11475. height: math.unit(3, "feet"),
  11476. weight: math.unit(50, "lb"),
  11477. name: "Elemental",
  11478. image: {
  11479. source: "./media/characters/vanrel/elemental.svg",
  11480. extra: 192.3 / 162.8,
  11481. bottom: 1.79 / 194.17
  11482. }
  11483. },
  11484. side: {
  11485. height: math.unit(4 + 7 / 12, "feet"),
  11486. weight: math.unit(50, "lb"),
  11487. name: "Side",
  11488. image: {
  11489. source: "./media/characters/vanrel/side.svg",
  11490. extra: 1,
  11491. bottom: 0.025
  11492. }
  11493. },
  11494. tome: {
  11495. height: math.unit(1.35, "feet"),
  11496. weight: math.unit(10, "lb"),
  11497. name: "Vanrel's Tome",
  11498. rename: true,
  11499. image: {
  11500. source: "./media/characters/vanrel/tome.svg"
  11501. }
  11502. },
  11503. beans: {
  11504. height: math.unit(0.89, "feet"),
  11505. name: "Beans",
  11506. image: {
  11507. source: "./media/characters/vanrel/beans.svg"
  11508. }
  11509. },
  11510. },
  11511. [
  11512. {
  11513. name: "Normal",
  11514. height: math.unit(4 + 7 / 12, "feet"),
  11515. default: true
  11516. },
  11517. ]
  11518. ))
  11519. characterMakers.push(() => makeCharacter(
  11520. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11521. {
  11522. front: {
  11523. height: math.unit(7 + 5 / 12, "feet"),
  11524. weight: math.unit(150, "lb"),
  11525. name: "Front",
  11526. image: {
  11527. source: "./media/characters/kuiper-vanrel/front.svg",
  11528. extra: 1118 / 1068,
  11529. bottom: 0.09
  11530. }
  11531. },
  11532. foot: {
  11533. height: math.unit(0.55, "meters"),
  11534. name: "Foot",
  11535. image: {
  11536. source: "./media/characters/kuiper-vanrel/foot.svg",
  11537. }
  11538. },
  11539. battle: {
  11540. height: math.unit(6.824, "feet"),
  11541. weight: math.unit(150, "lb"),
  11542. name: "Battle",
  11543. image: {
  11544. source: "./media/characters/kuiper-vanrel/battle.svg",
  11545. extra: 1466 / 1327,
  11546. bottom: 29 / 1492.5
  11547. }
  11548. },
  11549. battleAlt: {
  11550. height: math.unit(6.824, "feet"),
  11551. weight: math.unit(150, "lb"),
  11552. name: "Battle (Alt)",
  11553. image: {
  11554. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11555. extra: 2081 / 1965,
  11556. bottom: 40 / 2121
  11557. }
  11558. },
  11559. },
  11560. [
  11561. {
  11562. name: "Normal",
  11563. height: math.unit(7 + 5 / 12, "feet"),
  11564. default: true
  11565. },
  11566. ]
  11567. ))
  11568. characterMakers.push(() => makeCharacter(
  11569. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11570. {
  11571. front: {
  11572. height: math.unit(8 + 5 / 12, "feet"),
  11573. weight: math.unit(150, "lb"),
  11574. name: "Front",
  11575. image: {
  11576. source: "./media/characters/keset-vanrel/front.svg",
  11577. extra: 1150 / 1084,
  11578. bottom: 0.05
  11579. }
  11580. },
  11581. hand: {
  11582. height: math.unit(0.6, "meters"),
  11583. name: "Hand",
  11584. image: {
  11585. source: "./media/characters/keset-vanrel/hand.svg"
  11586. }
  11587. },
  11588. foot: {
  11589. height: math.unit(0.94978, "meters"),
  11590. name: "Foot",
  11591. image: {
  11592. source: "./media/characters/keset-vanrel/foot.svg"
  11593. }
  11594. },
  11595. battle: {
  11596. height: math.unit(7.408, "feet"),
  11597. weight: math.unit(150, "lb"),
  11598. name: "Battle",
  11599. image: {
  11600. source: "./media/characters/keset-vanrel/battle.svg",
  11601. extra: 1890 / 1386,
  11602. bottom: 73.28 / 1970
  11603. }
  11604. },
  11605. },
  11606. [
  11607. {
  11608. name: "Normal",
  11609. height: math.unit(8 + 5 / 12, "feet"),
  11610. default: true
  11611. },
  11612. ]
  11613. ))
  11614. characterMakers.push(() => makeCharacter(
  11615. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11616. {
  11617. front: {
  11618. height: math.unit(6, "feet"),
  11619. weight: math.unit(150, "lb"),
  11620. name: "Front",
  11621. image: {
  11622. source: "./media/characters/neos/front.svg",
  11623. extra: 1696 / 992,
  11624. bottom: 0.14
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Normal",
  11631. height: math.unit(54, "cm"),
  11632. default: true
  11633. },
  11634. {
  11635. name: "Macro",
  11636. height: math.unit(100, "m")
  11637. },
  11638. {
  11639. name: "Megamacro",
  11640. height: math.unit(10, "km")
  11641. },
  11642. {
  11643. name: "Megamacro+",
  11644. height: math.unit(100, "km")
  11645. },
  11646. {
  11647. name: "Gigamacro",
  11648. height: math.unit(100, "Mm")
  11649. },
  11650. {
  11651. name: "Teramacro",
  11652. height: math.unit(100, "Gm")
  11653. },
  11654. {
  11655. name: "Examacro",
  11656. height: math.unit(100, "Em")
  11657. },
  11658. {
  11659. name: "Godly",
  11660. height: math.unit(10000, "Ym")
  11661. },
  11662. {
  11663. name: "Beyond Godly",
  11664. height: math.unit(25, "multiverses")
  11665. },
  11666. ]
  11667. ))
  11668. characterMakers.push(() => makeCharacter(
  11669. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11670. {
  11671. feminine: {
  11672. height: math.unit(5, "feet"),
  11673. weight: math.unit(100, "lb"),
  11674. name: "Feminine",
  11675. image: {
  11676. source: "./media/characters/sammy-mouse/feminine.svg",
  11677. extra: 2526 / 2425,
  11678. bottom: 0.123
  11679. }
  11680. },
  11681. masculine: {
  11682. height: math.unit(5, "feet"),
  11683. weight: math.unit(100, "lb"),
  11684. name: "Masculine",
  11685. image: {
  11686. source: "./media/characters/sammy-mouse/masculine.svg",
  11687. extra: 2526 / 2425,
  11688. bottom: 0.123
  11689. }
  11690. },
  11691. },
  11692. [
  11693. {
  11694. name: "Micro",
  11695. height: math.unit(5, "inches")
  11696. },
  11697. {
  11698. name: "Normal",
  11699. height: math.unit(5, "feet"),
  11700. default: true
  11701. },
  11702. {
  11703. name: "Macro",
  11704. height: math.unit(60, "feet")
  11705. },
  11706. ]
  11707. ))
  11708. characterMakers.push(() => makeCharacter(
  11709. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11710. {
  11711. front: {
  11712. height: math.unit(4, "feet"),
  11713. weight: math.unit(50, "lb"),
  11714. name: "Front",
  11715. image: {
  11716. source: "./media/characters/kole/front.svg",
  11717. extra: 1423 / 1303,
  11718. bottom: 0.025
  11719. }
  11720. },
  11721. back: {
  11722. height: math.unit(4, "feet"),
  11723. weight: math.unit(50, "lb"),
  11724. name: "Back",
  11725. image: {
  11726. source: "./media/characters/kole/back.svg",
  11727. extra: 1426 / 1280,
  11728. bottom: 0.02
  11729. }
  11730. },
  11731. },
  11732. [
  11733. {
  11734. name: "Normal",
  11735. height: math.unit(4, "feet"),
  11736. default: true
  11737. },
  11738. ]
  11739. ))
  11740. characterMakers.push(() => makeCharacter(
  11741. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11742. {
  11743. front: {
  11744. height: math.unit(2 + 6 / 12, "feet"),
  11745. weight: math.unit(20, "lb"),
  11746. name: "Front",
  11747. image: {
  11748. source: "./media/characters/rufran/front.svg",
  11749. extra: 2041 / 1839,
  11750. bottom: 0.055
  11751. }
  11752. },
  11753. back: {
  11754. height: math.unit(2 + 6 / 12, "feet"),
  11755. weight: math.unit(20, "lb"),
  11756. name: "Back",
  11757. image: {
  11758. source: "./media/characters/rufran/back.svg",
  11759. extra: 2054 / 1839,
  11760. bottom: 0.01
  11761. }
  11762. },
  11763. hand: {
  11764. height: math.unit(0.2166, "meters"),
  11765. name: "Hand",
  11766. image: {
  11767. source: "./media/characters/rufran/hand.svg"
  11768. }
  11769. },
  11770. foot: {
  11771. height: math.unit(0.185, "meters"),
  11772. name: "Foot",
  11773. image: {
  11774. source: "./media/characters/rufran/foot.svg"
  11775. }
  11776. },
  11777. },
  11778. [
  11779. {
  11780. name: "Micro",
  11781. height: math.unit(1, "inch")
  11782. },
  11783. {
  11784. name: "Normal",
  11785. height: math.unit(2 + 6 / 12, "feet"),
  11786. default: true
  11787. },
  11788. {
  11789. name: "Big",
  11790. height: math.unit(60, "feet")
  11791. },
  11792. {
  11793. name: "Macro",
  11794. height: math.unit(325, "feet")
  11795. },
  11796. ]
  11797. ))
  11798. characterMakers.push(() => makeCharacter(
  11799. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11800. {
  11801. front: {
  11802. height: math.unit(0.3, "meters"),
  11803. weight: math.unit(3.5, "kg"),
  11804. name: "Front",
  11805. image: {
  11806. source: "./media/characters/chip/front.svg",
  11807. extra: 748 / 674
  11808. }
  11809. },
  11810. },
  11811. [
  11812. {
  11813. name: "Micro",
  11814. height: math.unit(1, "inch"),
  11815. default: true
  11816. },
  11817. ]
  11818. ))
  11819. characterMakers.push(() => makeCharacter(
  11820. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11821. {
  11822. side: {
  11823. height: math.unit(2.3, "meters"),
  11824. weight: math.unit(3500, "lb"),
  11825. name: "Side",
  11826. image: {
  11827. source: "./media/characters/torvid/side.svg",
  11828. extra: 1972 / 722,
  11829. bottom: 0.035
  11830. }
  11831. },
  11832. },
  11833. [
  11834. {
  11835. name: "Normal",
  11836. height: math.unit(2.3, "meters"),
  11837. default: true
  11838. },
  11839. ]
  11840. ))
  11841. characterMakers.push(() => makeCharacter(
  11842. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11843. {
  11844. front: {
  11845. height: math.unit(2, "meters"),
  11846. weight: math.unit(150.5, "kg"),
  11847. name: "Front",
  11848. image: {
  11849. source: "./media/characters/susan/front.svg",
  11850. extra: 693 / 635,
  11851. bottom: 0.05
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Megamacro",
  11858. height: math.unit(505, "miles"),
  11859. default: true
  11860. },
  11861. ]
  11862. ))
  11863. characterMakers.push(() => makeCharacter(
  11864. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11865. {
  11866. front: {
  11867. height: math.unit(6, "feet"),
  11868. weight: math.unit(150, "lb"),
  11869. name: "Front",
  11870. image: {
  11871. source: "./media/characters/raindrops/front.svg",
  11872. extra: 2655 / 2461,
  11873. bottom: 49 / 2705
  11874. }
  11875. },
  11876. back: {
  11877. height: math.unit(6, "feet"),
  11878. weight: math.unit(150, "lb"),
  11879. name: "Back",
  11880. image: {
  11881. source: "./media/characters/raindrops/back.svg",
  11882. extra: 2574 / 2400,
  11883. bottom: 65 / 2634
  11884. }
  11885. },
  11886. },
  11887. [
  11888. {
  11889. name: "Micro",
  11890. height: math.unit(6, "inches")
  11891. },
  11892. {
  11893. name: "Normal",
  11894. height: math.unit(6 + 2 / 12, "feet")
  11895. },
  11896. {
  11897. name: "Macro",
  11898. height: math.unit(131, "feet"),
  11899. default: true
  11900. },
  11901. {
  11902. name: "Megamacro",
  11903. height: math.unit(15, "miles")
  11904. },
  11905. {
  11906. name: "Gigamacro",
  11907. height: math.unit(4000, "miles")
  11908. },
  11909. {
  11910. name: "Teramacro",
  11911. height: math.unit(315000, "miles")
  11912. },
  11913. ]
  11914. ))
  11915. characterMakers.push(() => makeCharacter(
  11916. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11917. {
  11918. front: {
  11919. height: math.unit(2.794, "meters"),
  11920. weight: math.unit(325, "kg"),
  11921. name: "Front",
  11922. image: {
  11923. source: "./media/characters/tezwa/front.svg",
  11924. extra: 2083 / 1906,
  11925. bottom: 0.031
  11926. }
  11927. },
  11928. foot: {
  11929. height: math.unit(0.687, "meters"),
  11930. name: "Foot",
  11931. image: {
  11932. source: "./media/characters/tezwa/foot.svg"
  11933. }
  11934. },
  11935. },
  11936. [
  11937. {
  11938. name: "Normal",
  11939. height: math.unit(9 + 2 / 12, "feet"),
  11940. default: true
  11941. },
  11942. ]
  11943. ))
  11944. characterMakers.push(() => makeCharacter(
  11945. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11946. {
  11947. front: {
  11948. height: math.unit(58, "feet"),
  11949. weight: math.unit(89000, "lb"),
  11950. name: "Front",
  11951. image: {
  11952. source: "./media/characters/typhus/front.svg",
  11953. extra: 816 / 800,
  11954. bottom: 0.065
  11955. }
  11956. },
  11957. },
  11958. [
  11959. {
  11960. name: "Macro",
  11961. height: math.unit(58, "feet"),
  11962. default: true
  11963. },
  11964. ]
  11965. ))
  11966. characterMakers.push(() => makeCharacter(
  11967. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11968. {
  11969. front: {
  11970. height: math.unit(12, "feet"),
  11971. weight: math.unit(6, "tonnes"),
  11972. name: "Front",
  11973. image: {
  11974. source: "./media/characters/lyra-von-wulf/front.svg",
  11975. extra: 1,
  11976. bottom: 0.10
  11977. }
  11978. },
  11979. frontMecha: {
  11980. height: math.unit(12, "feet"),
  11981. weight: math.unit(12, "tonnes"),
  11982. name: "Front (Mecha)",
  11983. image: {
  11984. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11985. extra: 1,
  11986. bottom: 0.042
  11987. }
  11988. },
  11989. maw: {
  11990. height: math.unit(2.2, "feet"),
  11991. name: "Maw",
  11992. image: {
  11993. source: "./media/characters/lyra-von-wulf/maw.svg"
  11994. }
  11995. },
  11996. },
  11997. [
  11998. {
  11999. name: "Normal",
  12000. height: math.unit(12, "feet"),
  12001. default: true
  12002. },
  12003. {
  12004. name: "Classic",
  12005. height: math.unit(50, "feet")
  12006. },
  12007. {
  12008. name: "Macro",
  12009. height: math.unit(500, "feet")
  12010. },
  12011. {
  12012. name: "Megamacro",
  12013. height: math.unit(1, "mile")
  12014. },
  12015. {
  12016. name: "Gigamacro",
  12017. height: math.unit(400, "miles")
  12018. },
  12019. {
  12020. name: "Teramacro",
  12021. height: math.unit(22000, "miles")
  12022. },
  12023. {
  12024. name: "Solarmacro",
  12025. height: math.unit(8600000, "miles")
  12026. },
  12027. {
  12028. name: "Galactic",
  12029. height: math.unit(1057000, "lightyears")
  12030. },
  12031. ]
  12032. ))
  12033. characterMakers.push(() => makeCharacter(
  12034. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12035. {
  12036. front: {
  12037. height: math.unit(6 + 10 / 12, "feet"),
  12038. weight: math.unit(150, "lb"),
  12039. name: "Front",
  12040. image: {
  12041. source: "./media/characters/dixon/front.svg",
  12042. extra: 3361 / 3209,
  12043. bottom: 0.01
  12044. }
  12045. },
  12046. },
  12047. [
  12048. {
  12049. name: "Normal",
  12050. height: math.unit(6 + 10 / 12, "feet"),
  12051. default: true
  12052. },
  12053. {
  12054. name: "Big",
  12055. height: math.unit(12, "meters")
  12056. },
  12057. {
  12058. name: "Macro",
  12059. height: math.unit(500, "meters")
  12060. },
  12061. {
  12062. name: "Megamacro",
  12063. height: math.unit(2, "km")
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12069. {
  12070. front: {
  12071. height: math.unit(185, "cm"),
  12072. weight: math.unit(68, "kg"),
  12073. name: "Front",
  12074. image: {
  12075. source: "./media/characters/kauko/front.svg",
  12076. extra: 1455 / 1421,
  12077. bottom: 0.03
  12078. }
  12079. },
  12080. back: {
  12081. height: math.unit(185, "cm"),
  12082. weight: math.unit(68, "kg"),
  12083. name: "Back",
  12084. image: {
  12085. source: "./media/characters/kauko/back.svg",
  12086. extra: 1455 / 1421,
  12087. bottom: 0.004
  12088. }
  12089. },
  12090. },
  12091. [
  12092. {
  12093. name: "Normal",
  12094. height: math.unit(185, "cm"),
  12095. default: true
  12096. },
  12097. ]
  12098. ))
  12099. characterMakers.push(() => makeCharacter(
  12100. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12101. {
  12102. front: {
  12103. height: math.unit(6, "feet"),
  12104. weight: math.unit(150, "kg"),
  12105. name: "Front",
  12106. image: {
  12107. source: "./media/characters/varg/front.svg",
  12108. extra: 1108 / 1018,
  12109. bottom: 0.0375
  12110. }
  12111. },
  12112. },
  12113. [
  12114. {
  12115. name: "Normal",
  12116. height: math.unit(5, "meters")
  12117. },
  12118. {
  12119. name: "Macro",
  12120. height: math.unit(200, "meters")
  12121. },
  12122. {
  12123. name: "Megamacro",
  12124. height: math.unit(20, "kilometers")
  12125. },
  12126. {
  12127. name: "True Size",
  12128. height: math.unit(211, "km"),
  12129. default: true
  12130. },
  12131. {
  12132. name: "Gigamacro",
  12133. height: math.unit(1000, "km")
  12134. },
  12135. {
  12136. name: "Gigamacro+",
  12137. height: math.unit(8000, "km")
  12138. },
  12139. {
  12140. name: "Teramacro",
  12141. height: math.unit(1000000, "km")
  12142. },
  12143. ]
  12144. ))
  12145. characterMakers.push(() => makeCharacter(
  12146. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12147. {
  12148. front: {
  12149. height: math.unit(7 + 7 / 12, "feet"),
  12150. weight: math.unit(267, "lb"),
  12151. name: "Front",
  12152. image: {
  12153. source: "./media/characters/dayza/front.svg",
  12154. extra: 1262 / 1200,
  12155. bottom: 0.035
  12156. }
  12157. },
  12158. side: {
  12159. height: math.unit(7 + 7 / 12, "feet"),
  12160. weight: math.unit(267, "lb"),
  12161. name: "Side",
  12162. image: {
  12163. source: "./media/characters/dayza/side.svg",
  12164. extra: 1295 / 1245,
  12165. bottom: 0.05
  12166. }
  12167. },
  12168. back: {
  12169. height: math.unit(7 + 7 / 12, "feet"),
  12170. weight: math.unit(267, "lb"),
  12171. name: "Back",
  12172. image: {
  12173. source: "./media/characters/dayza/back.svg",
  12174. extra: 1241 / 1170
  12175. }
  12176. },
  12177. },
  12178. [
  12179. {
  12180. name: "Normal",
  12181. height: math.unit(7 + 7 / 12, "feet"),
  12182. default: true
  12183. },
  12184. {
  12185. name: "Macro",
  12186. height: math.unit(155, "feet")
  12187. },
  12188. ]
  12189. ))
  12190. characterMakers.push(() => makeCharacter(
  12191. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12192. {
  12193. front: {
  12194. height: math.unit(6 + 5 / 12, "feet"),
  12195. weight: math.unit(160, "lb"),
  12196. name: "Front",
  12197. image: {
  12198. source: "./media/characters/xanthos/front.svg",
  12199. extra: 1,
  12200. bottom: 0.04
  12201. }
  12202. },
  12203. back: {
  12204. height: math.unit(6 + 5 / 12, "feet"),
  12205. weight: math.unit(160, "lb"),
  12206. name: "Back",
  12207. image: {
  12208. source: "./media/characters/xanthos/back.svg",
  12209. extra: 1,
  12210. bottom: 0.03
  12211. }
  12212. },
  12213. hand: {
  12214. height: math.unit(0.928, "feet"),
  12215. name: "Hand",
  12216. image: {
  12217. source: "./media/characters/xanthos/hand.svg"
  12218. }
  12219. },
  12220. foot: {
  12221. height: math.unit(1.286, "feet"),
  12222. name: "Foot",
  12223. image: {
  12224. source: "./media/characters/xanthos/foot.svg"
  12225. }
  12226. },
  12227. },
  12228. [
  12229. {
  12230. name: "Normal",
  12231. height: math.unit(6 + 5 / 12, "feet"),
  12232. default: true
  12233. },
  12234. {
  12235. name: "Normal+",
  12236. height: math.unit(6, "meters")
  12237. },
  12238. {
  12239. name: "Macro",
  12240. height: math.unit(40, "feet")
  12241. },
  12242. {
  12243. name: "Macro+",
  12244. height: math.unit(200, "meters")
  12245. },
  12246. {
  12247. name: "Megamacro",
  12248. height: math.unit(20, "km")
  12249. },
  12250. {
  12251. name: "Megamacro+",
  12252. height: math.unit(100, "km")
  12253. },
  12254. ]
  12255. ))
  12256. characterMakers.push(() => makeCharacter(
  12257. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12258. {
  12259. front: {
  12260. height: math.unit(6 + 3 / 12, "feet"),
  12261. weight: math.unit(215, "lb"),
  12262. name: "Front",
  12263. image: {
  12264. source: "./media/characters/grynn/front.svg",
  12265. extra: 4627 / 4209,
  12266. bottom: 0.047
  12267. }
  12268. },
  12269. },
  12270. [
  12271. {
  12272. name: "Micro",
  12273. height: math.unit(6, "inches")
  12274. },
  12275. {
  12276. name: "Normal",
  12277. height: math.unit(6 + 3 / 12, "feet"),
  12278. default: true
  12279. },
  12280. {
  12281. name: "Big",
  12282. height: math.unit(104, "feet")
  12283. },
  12284. {
  12285. name: "Macro",
  12286. height: math.unit(944, "feet")
  12287. },
  12288. {
  12289. name: "Macro+",
  12290. height: math.unit(9480, "feet")
  12291. },
  12292. {
  12293. name: "Megamacro",
  12294. height: math.unit(78752, "feet")
  12295. },
  12296. {
  12297. name: "Megamacro+",
  12298. height: math.unit(630128, "feet")
  12299. },
  12300. {
  12301. name: "Megamacro++",
  12302. height: math.unit(3150695, "feet")
  12303. },
  12304. ]
  12305. ))
  12306. characterMakers.push(() => makeCharacter(
  12307. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12308. {
  12309. front: {
  12310. height: math.unit(7 + 5 / 12, "feet"),
  12311. weight: math.unit(450, "lb"),
  12312. name: "Front",
  12313. image: {
  12314. source: "./media/characters/mocha-aura/front.svg",
  12315. extra: 1907 / 1817,
  12316. bottom: 0.04
  12317. }
  12318. },
  12319. back: {
  12320. height: math.unit(7 + 5 / 12, "feet"),
  12321. weight: math.unit(450, "lb"),
  12322. name: "Back",
  12323. image: {
  12324. source: "./media/characters/mocha-aura/back.svg",
  12325. extra: 1900 / 1825,
  12326. bottom: 0.045
  12327. }
  12328. },
  12329. },
  12330. [
  12331. {
  12332. name: "Nano",
  12333. height: math.unit(1, "nm")
  12334. },
  12335. {
  12336. name: "Megamicro",
  12337. height: math.unit(1, "mm")
  12338. },
  12339. {
  12340. name: "Micro",
  12341. height: math.unit(3, "inches")
  12342. },
  12343. {
  12344. name: "Normal",
  12345. height: math.unit(7 + 5 / 12, "feet"),
  12346. default: true
  12347. },
  12348. {
  12349. name: "Macro",
  12350. height: math.unit(30, "feet")
  12351. },
  12352. {
  12353. name: "Megamacro",
  12354. height: math.unit(3500, "feet")
  12355. },
  12356. {
  12357. name: "Teramacro",
  12358. height: math.unit(500000, "miles")
  12359. },
  12360. {
  12361. name: "Petamacro",
  12362. height: math.unit(50000000000000000, "parsecs")
  12363. },
  12364. ]
  12365. ))
  12366. characterMakers.push(() => makeCharacter(
  12367. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12368. {
  12369. front: {
  12370. height: math.unit(6, "feet"),
  12371. weight: math.unit(150, "lb"),
  12372. name: "Front",
  12373. image: {
  12374. source: "./media/characters/ilisha-devya/front.svg",
  12375. extra: 1,
  12376. bottom: 0.175
  12377. }
  12378. },
  12379. back: {
  12380. height: math.unit(6, "feet"),
  12381. weight: math.unit(150, "lb"),
  12382. name: "Back",
  12383. image: {
  12384. source: "./media/characters/ilisha-devya/back.svg",
  12385. extra: 1,
  12386. bottom: 0.015
  12387. }
  12388. },
  12389. },
  12390. [
  12391. {
  12392. name: "Macro",
  12393. height: math.unit(500, "feet"),
  12394. default: true
  12395. },
  12396. {
  12397. name: "Megamacro",
  12398. height: math.unit(10, "miles")
  12399. },
  12400. {
  12401. name: "Gigamacro",
  12402. height: math.unit(100000, "miles")
  12403. },
  12404. {
  12405. name: "Examacro",
  12406. height: math.unit(1e9, "lightyears")
  12407. },
  12408. {
  12409. name: "Omniversal",
  12410. height: math.unit(1e33, "lightyears")
  12411. },
  12412. {
  12413. name: "Beyond Infinite",
  12414. height: math.unit(1e100, "lightyears")
  12415. },
  12416. ]
  12417. ))
  12418. characterMakers.push(() => makeCharacter(
  12419. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12420. {
  12421. Side: {
  12422. height: math.unit(6, "feet"),
  12423. weight: math.unit(150, "lb"),
  12424. name: "Side",
  12425. image: {
  12426. source: "./media/characters/mira/side.svg",
  12427. extra: 900 / 799,
  12428. bottom: 0.02
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Human Size",
  12435. height: math.unit(6, "feet")
  12436. },
  12437. {
  12438. name: "Macro",
  12439. height: math.unit(100, "feet"),
  12440. default: true
  12441. },
  12442. {
  12443. name: "Megamacro",
  12444. height: math.unit(10, "miles")
  12445. },
  12446. {
  12447. name: "Gigamacro",
  12448. height: math.unit(25000, "miles")
  12449. },
  12450. {
  12451. name: "Teramacro",
  12452. height: math.unit(300, "AU")
  12453. },
  12454. {
  12455. name: "Full Size",
  12456. height: math.unit(4.5e10, "lightyears")
  12457. },
  12458. ]
  12459. ))
  12460. characterMakers.push(() => makeCharacter(
  12461. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12462. {
  12463. front: {
  12464. height: math.unit(6, "feet"),
  12465. weight: math.unit(150, "lb"),
  12466. name: "Front",
  12467. image: {
  12468. source: "./media/characters/holly/front.svg",
  12469. extra: 639 / 606
  12470. }
  12471. },
  12472. back: {
  12473. height: math.unit(6, "feet"),
  12474. weight: math.unit(150, "lb"),
  12475. name: "Back",
  12476. image: {
  12477. source: "./media/characters/holly/back.svg",
  12478. extra: 623 / 598
  12479. }
  12480. },
  12481. frontWorking: {
  12482. height: math.unit(6, "feet"),
  12483. weight: math.unit(150, "lb"),
  12484. name: "Front (Working)",
  12485. image: {
  12486. source: "./media/characters/holly/front-working.svg",
  12487. extra: 607 / 577,
  12488. bottom: 0.048
  12489. }
  12490. },
  12491. },
  12492. [
  12493. {
  12494. name: "Normal",
  12495. height: math.unit(12 + 3 / 12, "feet"),
  12496. default: true
  12497. },
  12498. ]
  12499. ))
  12500. characterMakers.push(() => makeCharacter(
  12501. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12502. {
  12503. front: {
  12504. height: math.unit(6, "feet"),
  12505. weight: math.unit(150, "lb"),
  12506. name: "Front",
  12507. image: {
  12508. source: "./media/characters/porter/front.svg",
  12509. extra: 1,
  12510. bottom: 0.01
  12511. }
  12512. },
  12513. frontRobes: {
  12514. height: math.unit(6, "feet"),
  12515. weight: math.unit(150, "lb"),
  12516. name: "Front (Robes)",
  12517. image: {
  12518. source: "./media/characters/porter/front-robes.svg",
  12519. extra: 1.01,
  12520. bottom: 0.01
  12521. }
  12522. },
  12523. },
  12524. [
  12525. {
  12526. name: "Normal",
  12527. height: math.unit(11 + 9 / 12, "feet"),
  12528. default: true
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12534. {
  12535. legendary: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(150, "lb"),
  12538. name: "Legendary",
  12539. image: {
  12540. source: "./media/characters/lucy/legendary.svg",
  12541. extra: 1355 / 1100,
  12542. bottom: 0.045
  12543. }
  12544. },
  12545. },
  12546. [
  12547. {
  12548. name: "Legendary",
  12549. height: math.unit(86882 * 2, "miles"),
  12550. default: true
  12551. },
  12552. ]
  12553. ))
  12554. characterMakers.push(() => makeCharacter(
  12555. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12556. {
  12557. front: {
  12558. height: math.unit(6, "feet"),
  12559. weight: math.unit(150, "lb"),
  12560. name: "Front",
  12561. image: {
  12562. source: "./media/characters/drusilla/front.svg",
  12563. extra: 678 / 635,
  12564. bottom: 0.03
  12565. }
  12566. },
  12567. back: {
  12568. height: math.unit(6, "feet"),
  12569. weight: math.unit(150, "lb"),
  12570. name: "Back",
  12571. image: {
  12572. source: "./media/characters/drusilla/back.svg",
  12573. extra: 678 / 635,
  12574. bottom: 0.005
  12575. }
  12576. },
  12577. },
  12578. [
  12579. {
  12580. name: "Macro",
  12581. height: math.unit(100, "feet")
  12582. },
  12583. {
  12584. name: "Canon Height",
  12585. height: math.unit(2000, "feet"),
  12586. default: true
  12587. },
  12588. ]
  12589. ))
  12590. characterMakers.push(() => makeCharacter(
  12591. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12592. {
  12593. front: {
  12594. height: math.unit(6, "feet"),
  12595. weight: math.unit(180, "lb"),
  12596. name: "Front",
  12597. image: {
  12598. source: "./media/characters/renard-thatch/front.svg",
  12599. extra: 2411 / 2275,
  12600. bottom: 0.01
  12601. }
  12602. },
  12603. frontPosing: {
  12604. height: math.unit(6, "feet"),
  12605. weight: math.unit(180, "lb"),
  12606. name: "Front (Posing)",
  12607. image: {
  12608. source: "./media/characters/renard-thatch/front-posing.svg",
  12609. extra: 2381 / 2261,
  12610. bottom: 0.01
  12611. }
  12612. },
  12613. back: {
  12614. height: math.unit(6, "feet"),
  12615. weight: math.unit(180, "lb"),
  12616. name: "Back",
  12617. image: {
  12618. source: "./media/characters/renard-thatch/back.svg",
  12619. extra: 2428 / 2288
  12620. }
  12621. },
  12622. },
  12623. [
  12624. {
  12625. name: "Micro",
  12626. height: math.unit(3, "inches")
  12627. },
  12628. {
  12629. name: "Default",
  12630. height: math.unit(6, "feet"),
  12631. default: true
  12632. },
  12633. {
  12634. name: "Macro",
  12635. height: math.unit(75, "feet")
  12636. },
  12637. ]
  12638. ))
  12639. characterMakers.push(() => makeCharacter(
  12640. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12641. {
  12642. front: {
  12643. height: math.unit(1450, "feet"),
  12644. weight: math.unit(1.21e6, "tons"),
  12645. name: "Front",
  12646. image: {
  12647. source: "./media/characters/sekvra/front.svg",
  12648. extra: 1,
  12649. bottom: 0.03
  12650. }
  12651. },
  12652. frontClothed: {
  12653. height: math.unit(1450, "feet"),
  12654. weight: math.unit(1.21e6, "tons"),
  12655. name: "Front (Clothed)",
  12656. image: {
  12657. source: "./media/characters/sekvra/front-clothed.svg",
  12658. extra: 1,
  12659. bottom: 0.03
  12660. }
  12661. },
  12662. side: {
  12663. height: math.unit(1450, "feet"),
  12664. weight: math.unit(1.21e6, "tons"),
  12665. name: "Side",
  12666. image: {
  12667. source: "./media/characters/sekvra/side.svg",
  12668. extra: 1,
  12669. bottom: 0.025
  12670. }
  12671. },
  12672. back: {
  12673. height: math.unit(1450, "feet"),
  12674. weight: math.unit(1.21e6, "tons"),
  12675. name: "Back",
  12676. image: {
  12677. source: "./media/characters/sekvra/back.svg",
  12678. extra: 1,
  12679. bottom: 0.005
  12680. }
  12681. },
  12682. },
  12683. [
  12684. {
  12685. name: "Macro",
  12686. height: math.unit(1450, "feet"),
  12687. default: true
  12688. },
  12689. {
  12690. name: "Megamacro",
  12691. height: math.unit(15000, "feet")
  12692. },
  12693. ]
  12694. ))
  12695. characterMakers.push(() => makeCharacter(
  12696. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12697. {
  12698. front: {
  12699. height: math.unit(6, "feet"),
  12700. weight: math.unit(150, "lb"),
  12701. name: "Front",
  12702. image: {
  12703. source: "./media/characters/carmine/front.svg",
  12704. extra: 1,
  12705. bottom: 0.035
  12706. }
  12707. },
  12708. frontArmor: {
  12709. height: math.unit(6, "feet"),
  12710. weight: math.unit(150, "lb"),
  12711. name: "Front (Armor)",
  12712. image: {
  12713. source: "./media/characters/carmine/front-armor.svg",
  12714. extra: 1,
  12715. bottom: 0.035
  12716. }
  12717. },
  12718. },
  12719. [
  12720. {
  12721. name: "Large",
  12722. height: math.unit(1, "mile")
  12723. },
  12724. {
  12725. name: "Huge",
  12726. height: math.unit(40, "miles"),
  12727. default: true
  12728. },
  12729. {
  12730. name: "Colossal",
  12731. height: math.unit(2500, "miles")
  12732. },
  12733. ]
  12734. ))
  12735. characterMakers.push(() => makeCharacter(
  12736. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12737. {
  12738. front: {
  12739. height: math.unit(6, "feet"),
  12740. weight: math.unit(150, "lb"),
  12741. name: "Front",
  12742. image: {
  12743. source: "./media/characters/elyssia/front.svg",
  12744. extra: 2201 / 2035,
  12745. bottom: 0.05
  12746. }
  12747. },
  12748. frontClothed: {
  12749. height: math.unit(6, "feet"),
  12750. weight: math.unit(150, "lb"),
  12751. name: "Front (Clothed)",
  12752. image: {
  12753. source: "./media/characters/elyssia/front-clothed.svg",
  12754. extra: 2201 / 2035,
  12755. bottom: 0.05
  12756. }
  12757. },
  12758. back: {
  12759. height: math.unit(6, "feet"),
  12760. weight: math.unit(150, "lb"),
  12761. name: "Back",
  12762. image: {
  12763. source: "./media/characters/elyssia/back.svg",
  12764. extra: 2201 / 2035,
  12765. bottom: 0.013
  12766. }
  12767. },
  12768. },
  12769. [
  12770. {
  12771. name: "Smaller",
  12772. height: math.unit(150, "feet")
  12773. },
  12774. {
  12775. name: "Standard",
  12776. height: math.unit(1400, "feet"),
  12777. default: true
  12778. },
  12779. {
  12780. name: "Distracted",
  12781. height: math.unit(15000, "feet")
  12782. },
  12783. ]
  12784. ))
  12785. characterMakers.push(() => makeCharacter(
  12786. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12787. {
  12788. front: {
  12789. height: math.unit(7 + 4 / 12, "feet"),
  12790. weight: math.unit(500, "lb"),
  12791. name: "Front",
  12792. image: {
  12793. source: "./media/characters/geno-maxwell/front.svg",
  12794. extra: 2207 / 2040,
  12795. bottom: 0.015
  12796. }
  12797. },
  12798. },
  12799. [
  12800. {
  12801. name: "Micro",
  12802. height: math.unit(3, "inches")
  12803. },
  12804. {
  12805. name: "Normal",
  12806. height: math.unit(7 + 4 / 12, "feet"),
  12807. default: true
  12808. },
  12809. {
  12810. name: "Macro",
  12811. height: math.unit(220, "feet")
  12812. },
  12813. {
  12814. name: "Megamacro",
  12815. height: math.unit(11, "miles")
  12816. },
  12817. ]
  12818. ))
  12819. characterMakers.push(() => makeCharacter(
  12820. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12821. {
  12822. front: {
  12823. height: math.unit(7 + 4 / 12, "feet"),
  12824. weight: math.unit(500, "lb"),
  12825. name: "Front",
  12826. image: {
  12827. source: "./media/characters/regena-maxwell/front.svg",
  12828. extra: 3115 / 2770,
  12829. bottom: 0.02
  12830. }
  12831. },
  12832. },
  12833. [
  12834. {
  12835. name: "Normal",
  12836. height: math.unit(7 + 4 / 12, "feet"),
  12837. default: true
  12838. },
  12839. {
  12840. name: "Macro",
  12841. height: math.unit(220, "feet")
  12842. },
  12843. {
  12844. name: "Megamacro",
  12845. height: math.unit(11, "miles")
  12846. },
  12847. ]
  12848. ))
  12849. characterMakers.push(() => makeCharacter(
  12850. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12851. {
  12852. front: {
  12853. height: math.unit(6, "feet"),
  12854. weight: math.unit(150, "lb"),
  12855. name: "Front",
  12856. image: {
  12857. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12858. extra: 860 / 690,
  12859. bottom: 0.03
  12860. }
  12861. },
  12862. },
  12863. [
  12864. {
  12865. name: "Normal",
  12866. height: math.unit(1.7, "meters"),
  12867. default: true
  12868. },
  12869. ]
  12870. ))
  12871. characterMakers.push(() => makeCharacter(
  12872. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12873. {
  12874. front: {
  12875. height: math.unit(6, "feet"),
  12876. weight: math.unit(150, "lb"),
  12877. name: "Front",
  12878. image: {
  12879. source: "./media/characters/quilly/front.svg",
  12880. extra: 890 / 776
  12881. }
  12882. },
  12883. },
  12884. [
  12885. {
  12886. name: "Gigamacro",
  12887. height: math.unit(404090, "miles"),
  12888. default: true
  12889. },
  12890. ]
  12891. ))
  12892. characterMakers.push(() => makeCharacter(
  12893. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12894. {
  12895. front: {
  12896. height: math.unit(7 + 8 / 12, "feet"),
  12897. weight: math.unit(350, "lb"),
  12898. name: "Front",
  12899. image: {
  12900. source: "./media/characters/tempest/front.svg",
  12901. extra: 1175 / 1086,
  12902. bottom: 0.02
  12903. }
  12904. },
  12905. },
  12906. [
  12907. {
  12908. name: "Normal",
  12909. height: math.unit(7 + 8 / 12, "feet"),
  12910. default: true
  12911. },
  12912. ]
  12913. ))
  12914. characterMakers.push(() => makeCharacter(
  12915. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12916. {
  12917. side: {
  12918. height: math.unit(4 + 5 / 12, "feet"),
  12919. weight: math.unit(80, "lb"),
  12920. name: "Side",
  12921. image: {
  12922. source: "./media/characters/rodger/side.svg",
  12923. extra: 1235 / 1118
  12924. }
  12925. },
  12926. },
  12927. [
  12928. {
  12929. name: "Micro",
  12930. height: math.unit(1, "inch")
  12931. },
  12932. {
  12933. name: "Normal",
  12934. height: math.unit(4 + 5 / 12, "feet"),
  12935. default: true
  12936. },
  12937. {
  12938. name: "Macro",
  12939. height: math.unit(120, "feet")
  12940. },
  12941. ]
  12942. ))
  12943. characterMakers.push(() => makeCharacter(
  12944. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12945. {
  12946. front: {
  12947. height: math.unit(6, "feet"),
  12948. weight: math.unit(150, "lb"),
  12949. name: "Front",
  12950. image: {
  12951. source: "./media/characters/danyel/front.svg",
  12952. extra: 1185 / 1123,
  12953. bottom: 0.05
  12954. }
  12955. },
  12956. },
  12957. [
  12958. {
  12959. name: "Shrunken",
  12960. height: math.unit(0.5, "mm")
  12961. },
  12962. {
  12963. name: "Micro",
  12964. height: math.unit(1, "mm"),
  12965. default: true
  12966. },
  12967. {
  12968. name: "Upsized",
  12969. height: math.unit(5 + 5 / 12, "feet")
  12970. },
  12971. ]
  12972. ))
  12973. characterMakers.push(() => makeCharacter(
  12974. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12975. {
  12976. front: {
  12977. height: math.unit(5 + 6 / 12, "feet"),
  12978. weight: math.unit(200, "lb"),
  12979. name: "Front",
  12980. image: {
  12981. source: "./media/characters/vivian-bijoux/front.svg",
  12982. extra: 1,
  12983. bottom: 0.072
  12984. }
  12985. },
  12986. },
  12987. [
  12988. {
  12989. name: "Normal",
  12990. height: math.unit(5 + 6 / 12, "feet"),
  12991. default: true
  12992. },
  12993. {
  12994. name: "Bad Dream",
  12995. height: math.unit(500, "feet")
  12996. },
  12997. {
  12998. name: "Nightmare",
  12999. height: math.unit(500, "miles")
  13000. },
  13001. ]
  13002. ))
  13003. characterMakers.push(() => makeCharacter(
  13004. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13005. {
  13006. front: {
  13007. height: math.unit(6 + 1 / 12, "feet"),
  13008. weight: math.unit(260, "lb"),
  13009. name: "Front",
  13010. image: {
  13011. source: "./media/characters/zeta/front.svg",
  13012. extra: 1968 / 1889,
  13013. bottom: 0.06
  13014. }
  13015. },
  13016. back: {
  13017. height: math.unit(6 + 1 / 12, "feet"),
  13018. weight: math.unit(260, "lb"),
  13019. name: "Back",
  13020. image: {
  13021. source: "./media/characters/zeta/back.svg",
  13022. extra: 1944 / 1858,
  13023. bottom: 0.03
  13024. }
  13025. },
  13026. hand: {
  13027. height: math.unit(1.112, "feet"),
  13028. name: "Hand",
  13029. image: {
  13030. source: "./media/characters/zeta/hand.svg"
  13031. }
  13032. },
  13033. foot: {
  13034. height: math.unit(1.48, "feet"),
  13035. name: "Foot",
  13036. image: {
  13037. source: "./media/characters/zeta/foot.svg"
  13038. }
  13039. },
  13040. },
  13041. [
  13042. {
  13043. name: "Micro",
  13044. height: math.unit(6, "inches")
  13045. },
  13046. {
  13047. name: "Normal",
  13048. height: math.unit(6 + 1 / 12, "feet"),
  13049. default: true
  13050. },
  13051. {
  13052. name: "Macro",
  13053. height: math.unit(20, "feet")
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13059. {
  13060. front: {
  13061. height: math.unit(6, "feet"),
  13062. weight: math.unit(150, "lb"),
  13063. name: "Front",
  13064. image: {
  13065. source: "./media/characters/jamie-larsen/front.svg",
  13066. extra: 962 / 933,
  13067. bottom: 0.02
  13068. }
  13069. },
  13070. back: {
  13071. height: math.unit(6, "feet"),
  13072. weight: math.unit(150, "lb"),
  13073. name: "Back",
  13074. image: {
  13075. source: "./media/characters/jamie-larsen/back.svg",
  13076. extra: 997 / 946
  13077. }
  13078. },
  13079. },
  13080. [
  13081. {
  13082. name: "Macro",
  13083. height: math.unit(28 + 7 / 12, "feet"),
  13084. default: true
  13085. },
  13086. {
  13087. name: "Macro+",
  13088. height: math.unit(180, "feet")
  13089. },
  13090. {
  13091. name: "Megamacro",
  13092. height: math.unit(10, "miles")
  13093. },
  13094. {
  13095. name: "Gigamacro",
  13096. height: math.unit(200000, "miles")
  13097. },
  13098. ]
  13099. ))
  13100. characterMakers.push(() => makeCharacter(
  13101. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13102. {
  13103. front: {
  13104. height: math.unit(6, "feet"),
  13105. weight: math.unit(120, "lb"),
  13106. name: "Front",
  13107. image: {
  13108. source: "./media/characters/vance/front.svg",
  13109. extra: 1980 / 1890,
  13110. bottom: 0.09
  13111. }
  13112. },
  13113. back: {
  13114. height: math.unit(6, "feet"),
  13115. weight: math.unit(120, "lb"),
  13116. name: "Back",
  13117. image: {
  13118. source: "./media/characters/vance/back.svg",
  13119. extra: 2081 / 1994,
  13120. bottom: 0.014
  13121. }
  13122. },
  13123. hand: {
  13124. height: math.unit(0.88, "feet"),
  13125. name: "Hand",
  13126. image: {
  13127. source: "./media/characters/vance/hand.svg"
  13128. }
  13129. },
  13130. foot: {
  13131. height: math.unit(0.64, "feet"),
  13132. name: "Foot",
  13133. image: {
  13134. source: "./media/characters/vance/foot.svg"
  13135. }
  13136. },
  13137. },
  13138. [
  13139. {
  13140. name: "Small",
  13141. height: math.unit(90, "feet"),
  13142. default: true
  13143. },
  13144. {
  13145. name: "Macro",
  13146. height: math.unit(100, "meters")
  13147. },
  13148. {
  13149. name: "Megamacro",
  13150. height: math.unit(15, "miles")
  13151. },
  13152. ]
  13153. ))
  13154. characterMakers.push(() => makeCharacter(
  13155. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13156. {
  13157. front: {
  13158. height: math.unit(6, "feet"),
  13159. weight: math.unit(180, "lb"),
  13160. name: "Front",
  13161. image: {
  13162. source: "./media/characters/xochitl/front.svg",
  13163. extra: 2297 / 2261,
  13164. bottom: 0.065
  13165. }
  13166. },
  13167. back: {
  13168. height: math.unit(6, "feet"),
  13169. weight: math.unit(180, "lb"),
  13170. name: "Back",
  13171. image: {
  13172. source: "./media/characters/xochitl/back.svg",
  13173. extra: 2386 / 2354,
  13174. bottom: 0.01
  13175. }
  13176. },
  13177. foot: {
  13178. height: math.unit(6 / 5 * 1.15, "feet"),
  13179. weight: math.unit(150, "lb"),
  13180. name: "Foot",
  13181. image: {
  13182. source: "./media/characters/xochitl/foot.svg"
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Macro",
  13189. height: math.unit(80, "feet")
  13190. },
  13191. {
  13192. name: "Macro+",
  13193. height: math.unit(400, "feet"),
  13194. default: true
  13195. },
  13196. {
  13197. name: "Gigamacro",
  13198. height: math.unit(80000, "miles")
  13199. },
  13200. {
  13201. name: "Gigamacro+",
  13202. height: math.unit(400000, "miles")
  13203. },
  13204. {
  13205. name: "Teramacro",
  13206. height: math.unit(300, "AU")
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(6, "feet"),
  13215. weight: math.unit(150, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/vincent/front.svg",
  13219. extra: 1130 / 1080,
  13220. bottom: 0.055
  13221. }
  13222. },
  13223. beak: {
  13224. height: math.unit(6 * 0.1, "feet"),
  13225. name: "Beak",
  13226. image: {
  13227. source: "./media/characters/vincent/beak.svg"
  13228. }
  13229. },
  13230. hand: {
  13231. height: math.unit(6 * 0.85, "feet"),
  13232. weight: math.unit(150, "lb"),
  13233. name: "Hand",
  13234. image: {
  13235. source: "./media/characters/vincent/hand.svg"
  13236. }
  13237. },
  13238. foot: {
  13239. height: math.unit(6 * 0.19, "feet"),
  13240. weight: math.unit(150, "lb"),
  13241. name: "Foot",
  13242. image: {
  13243. source: "./media/characters/vincent/foot.svg"
  13244. }
  13245. },
  13246. },
  13247. [
  13248. {
  13249. name: "Base",
  13250. height: math.unit(6 + 5 / 12, "feet"),
  13251. default: true
  13252. },
  13253. {
  13254. name: "Macro",
  13255. height: math.unit(300, "feet")
  13256. },
  13257. {
  13258. name: "Megamacro",
  13259. height: math.unit(2, "miles")
  13260. },
  13261. {
  13262. name: "Gigamacro",
  13263. height: math.unit(1000, "miles")
  13264. },
  13265. ]
  13266. ))
  13267. characterMakers.push(() => makeCharacter(
  13268. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13269. {
  13270. front: {
  13271. height: math.unit(6 + 2 / 12, "feet"),
  13272. weight: math.unit(265, "lb"),
  13273. name: "Front",
  13274. image: {
  13275. source: "./media/characters/jay/front.svg",
  13276. extra: 1510 / 1430,
  13277. bottom: 0.042
  13278. }
  13279. },
  13280. back: {
  13281. height: math.unit(6 + 2 / 12, "feet"),
  13282. weight: math.unit(265, "lb"),
  13283. name: "Back",
  13284. image: {
  13285. source: "./media/characters/jay/back.svg",
  13286. extra: 1510 / 1430,
  13287. bottom: 0.025
  13288. }
  13289. },
  13290. clothed: {
  13291. height: math.unit(6 + 2 / 12, "feet"),
  13292. weight: math.unit(265, "lb"),
  13293. name: "Front (Clothed)",
  13294. image: {
  13295. source: "./media/characters/jay/clothed.svg",
  13296. extra: 744 / 699,
  13297. bottom: 0.043
  13298. }
  13299. },
  13300. head: {
  13301. height: math.unit(1.772, "feet"),
  13302. name: "Head",
  13303. image: {
  13304. source: "./media/characters/jay/head.svg"
  13305. }
  13306. },
  13307. sizeRay: {
  13308. height: math.unit(1.331, "feet"),
  13309. name: "Size Ray",
  13310. image: {
  13311. source: "./media/characters/jay/size-ray.svg"
  13312. }
  13313. },
  13314. },
  13315. [
  13316. {
  13317. name: "Micro",
  13318. height: math.unit(1, "inch")
  13319. },
  13320. {
  13321. name: "Normal",
  13322. height: math.unit(6 + 2 / 12, "feet"),
  13323. default: true
  13324. },
  13325. {
  13326. name: "Macro",
  13327. height: math.unit(1, "mile")
  13328. },
  13329. {
  13330. name: "Megamacro",
  13331. height: math.unit(100, "miles")
  13332. },
  13333. ]
  13334. ))
  13335. characterMakers.push(() => makeCharacter(
  13336. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13337. {
  13338. front: {
  13339. height: math.unit(2, "meters"),
  13340. weight: math.unit(500, "kg"),
  13341. name: "Front",
  13342. image: {
  13343. source: "./media/characters/coatl/front.svg",
  13344. extra: 3948 / 3500,
  13345. bottom: 0.082
  13346. }
  13347. },
  13348. },
  13349. [
  13350. {
  13351. name: "Normal",
  13352. height: math.unit(4, "meters")
  13353. },
  13354. {
  13355. name: "Macro",
  13356. height: math.unit(100, "meters"),
  13357. default: true
  13358. },
  13359. {
  13360. name: "Macro+",
  13361. height: math.unit(300, "meters")
  13362. },
  13363. {
  13364. name: "Megamacro",
  13365. height: math.unit(3, "gigameters")
  13366. },
  13367. {
  13368. name: "Megamacro+",
  13369. height: math.unit(300, "terameters")
  13370. },
  13371. {
  13372. name: "Megamacro++",
  13373. height: math.unit(3, "lightyears")
  13374. },
  13375. ]
  13376. ))
  13377. characterMakers.push(() => makeCharacter(
  13378. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13379. {
  13380. front: {
  13381. height: math.unit(6, "feet"),
  13382. weight: math.unit(50, "kg"),
  13383. name: "front",
  13384. image: {
  13385. source: "./media/characters/shiroryu/front.svg",
  13386. extra: 1990 / 1935
  13387. }
  13388. },
  13389. },
  13390. [
  13391. {
  13392. name: "Mortal Mingling",
  13393. height: math.unit(3, "meters")
  13394. },
  13395. {
  13396. name: "Kaiju-ish",
  13397. height: math.unit(250, "meters")
  13398. },
  13399. {
  13400. name: "Somewhat Godly",
  13401. height: math.unit(400, "km"),
  13402. default: true
  13403. },
  13404. {
  13405. name: "Planetary",
  13406. height: math.unit(300, "megameters")
  13407. },
  13408. {
  13409. name: "Galaxy-dwarfing",
  13410. height: math.unit(450, "kiloparsecs")
  13411. },
  13412. {
  13413. name: "Universe Eater",
  13414. height: math.unit(150, "gigaparsecs")
  13415. },
  13416. {
  13417. name: "Almost Immeasurable",
  13418. height: math.unit(1.3e266, "yottaparsecs")
  13419. },
  13420. ]
  13421. ))
  13422. characterMakers.push(() => makeCharacter(
  13423. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13424. {
  13425. front: {
  13426. height: math.unit(6, "feet"),
  13427. weight: math.unit(150, "lb"),
  13428. name: "Front",
  13429. image: {
  13430. source: "./media/characters/umeko/front.svg",
  13431. extra: 1,
  13432. bottom: 0.019
  13433. }
  13434. },
  13435. frontArmored: {
  13436. height: math.unit(6, "feet"),
  13437. weight: math.unit(150, "lb"),
  13438. name: "Front (Armored)",
  13439. image: {
  13440. source: "./media/characters/umeko/front-armored.svg",
  13441. extra: 1,
  13442. bottom: 0.021
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Macro",
  13449. height: math.unit(220, "feet"),
  13450. default: true
  13451. },
  13452. {
  13453. name: "Guardian Dragon",
  13454. height: math.unit(50, "miles")
  13455. },
  13456. {
  13457. name: "Cosmic",
  13458. height: math.unit(800000, "miles")
  13459. },
  13460. ]
  13461. ))
  13462. characterMakers.push(() => makeCharacter(
  13463. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13464. {
  13465. front: {
  13466. height: math.unit(6, "feet"),
  13467. weight: math.unit(150, "lb"),
  13468. name: "Front",
  13469. image: {
  13470. source: "./media/characters/cassidy/front.svg",
  13471. extra: 1,
  13472. bottom: 0.043
  13473. }
  13474. },
  13475. },
  13476. [
  13477. {
  13478. name: "Canon Height",
  13479. height: math.unit(120, "feet"),
  13480. default: true
  13481. },
  13482. {
  13483. name: "Macro+",
  13484. height: math.unit(400, "feet")
  13485. },
  13486. {
  13487. name: "Macro++",
  13488. height: math.unit(4000, "feet")
  13489. },
  13490. {
  13491. name: "Megamacro",
  13492. height: math.unit(3, "miles")
  13493. },
  13494. ]
  13495. ))
  13496. characterMakers.push(() => makeCharacter(
  13497. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13498. {
  13499. front: {
  13500. height: math.unit(6, "feet"),
  13501. weight: math.unit(150, "lb"),
  13502. name: "Front",
  13503. image: {
  13504. source: "./media/characters/isaac/front.svg",
  13505. extra: 896 / 815,
  13506. bottom: 0.11
  13507. }
  13508. },
  13509. },
  13510. [
  13511. {
  13512. name: "Human Size",
  13513. height: math.unit(8, "feet"),
  13514. default: true
  13515. },
  13516. {
  13517. name: "Macro",
  13518. height: math.unit(400, "feet")
  13519. },
  13520. {
  13521. name: "Megamacro",
  13522. height: math.unit(50, "miles")
  13523. },
  13524. {
  13525. name: "Canon Height",
  13526. height: math.unit(200, "AU")
  13527. },
  13528. ]
  13529. ))
  13530. characterMakers.push(() => makeCharacter(
  13531. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13532. {
  13533. front: {
  13534. height: math.unit(6, "feet"),
  13535. weight: math.unit(72, "kg"),
  13536. name: "Front",
  13537. image: {
  13538. source: "./media/characters/sleekit/front.svg",
  13539. extra: 4693 / 4487,
  13540. bottom: 0.012
  13541. }
  13542. },
  13543. },
  13544. [
  13545. {
  13546. name: "Minimum Height",
  13547. height: math.unit(10, "meters")
  13548. },
  13549. {
  13550. name: "Smaller",
  13551. height: math.unit(25, "meters")
  13552. },
  13553. {
  13554. name: "Larger",
  13555. height: math.unit(38, "meters"),
  13556. default: true
  13557. },
  13558. {
  13559. name: "Maximum height",
  13560. height: math.unit(100, "meters")
  13561. },
  13562. ]
  13563. ))
  13564. characterMakers.push(() => makeCharacter(
  13565. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13566. {
  13567. front: {
  13568. height: math.unit(6, "feet"),
  13569. weight: math.unit(150, "lb"),
  13570. name: "Front",
  13571. image: {
  13572. source: "./media/characters/nillia/front.svg",
  13573. extra: 2195 / 2037,
  13574. bottom: 0.005
  13575. }
  13576. },
  13577. back: {
  13578. height: math.unit(6, "feet"),
  13579. weight: math.unit(150, "lb"),
  13580. name: "Back",
  13581. image: {
  13582. source: "./media/characters/nillia/back.svg",
  13583. extra: 2195 / 2037,
  13584. bottom: 0.005
  13585. }
  13586. },
  13587. },
  13588. [
  13589. {
  13590. name: "Canon Height",
  13591. height: math.unit(489, "feet"),
  13592. default: true
  13593. }
  13594. ]
  13595. ))
  13596. characterMakers.push(() => makeCharacter(
  13597. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13598. {
  13599. front: {
  13600. height: math.unit(6, "feet"),
  13601. weight: math.unit(150, "lb"),
  13602. name: "Front",
  13603. image: {
  13604. source: "./media/characters/mesmyriza/front.svg",
  13605. extra: 2067 / 1784,
  13606. bottom: 0.035
  13607. }
  13608. },
  13609. foot: {
  13610. height: math.unit(6 / (250 / 35), "feet"),
  13611. name: "Foot",
  13612. image: {
  13613. source: "./media/characters/mesmyriza/foot.svg"
  13614. }
  13615. },
  13616. },
  13617. [
  13618. {
  13619. name: "Macro",
  13620. height: math.unit(457, "meters"),
  13621. default: true
  13622. },
  13623. {
  13624. name: "Megamacro",
  13625. height: math.unit(8, "megameters")
  13626. },
  13627. ]
  13628. ))
  13629. characterMakers.push(() => makeCharacter(
  13630. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13631. {
  13632. front: {
  13633. height: math.unit(6, "feet"),
  13634. weight: math.unit(250, "lb"),
  13635. name: "Front",
  13636. image: {
  13637. source: "./media/characters/saudade/front.svg",
  13638. extra: 1172 / 1139,
  13639. bottom: 0.035
  13640. }
  13641. },
  13642. },
  13643. [
  13644. {
  13645. name: "Micro",
  13646. height: math.unit(3, "inches")
  13647. },
  13648. {
  13649. name: "Normal",
  13650. height: math.unit(6, "feet"),
  13651. default: true
  13652. },
  13653. {
  13654. name: "Macro",
  13655. height: math.unit(50, "feet")
  13656. },
  13657. {
  13658. name: "Megamacro",
  13659. height: math.unit(2800, "feet")
  13660. },
  13661. ]
  13662. ))
  13663. characterMakers.push(() => makeCharacter(
  13664. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13665. {
  13666. front: {
  13667. height: math.unit(5 + 4 / 12, "feet"),
  13668. weight: math.unit(100, "lb"),
  13669. name: "Front",
  13670. image: {
  13671. source: "./media/characters/keireer/front.svg",
  13672. extra: 716 / 666,
  13673. bottom: 0.05
  13674. }
  13675. },
  13676. },
  13677. [
  13678. {
  13679. name: "Normal",
  13680. height: math.unit(5 + 4 / 12, "feet"),
  13681. default: true
  13682. },
  13683. ]
  13684. ))
  13685. characterMakers.push(() => makeCharacter(
  13686. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13687. {
  13688. front: {
  13689. height: math.unit(6, "feet"),
  13690. weight: math.unit(90, "kg"),
  13691. name: "Front",
  13692. image: {
  13693. source: "./media/characters/mirja/front.svg",
  13694. extra: 1789 / 1683,
  13695. bottom: 0.05
  13696. }
  13697. },
  13698. frontDressed: {
  13699. height: math.unit(6, "feet"),
  13700. weight: math.unit(90, "lb"),
  13701. name: "Front (Dressed)",
  13702. image: {
  13703. source: "./media/characters/mirja/front-dressed.svg",
  13704. extra: 1789 / 1683,
  13705. bottom: 0.05
  13706. }
  13707. },
  13708. back: {
  13709. height: math.unit(6, "feet"),
  13710. weight: math.unit(90, "lb"),
  13711. name: "Back",
  13712. image: {
  13713. source: "./media/characters/mirja/back.svg",
  13714. extra: 953 / 917,
  13715. bottom: 0.017
  13716. }
  13717. },
  13718. },
  13719. [
  13720. {
  13721. name: "\"Incognito\"",
  13722. height: math.unit(3, "meters")
  13723. },
  13724. {
  13725. name: "Strolling Size",
  13726. height: math.unit(15, "km")
  13727. },
  13728. {
  13729. name: "Larger Strolling Size",
  13730. height: math.unit(400, "km")
  13731. },
  13732. {
  13733. name: "Preferred Size",
  13734. height: math.unit(5000, "km")
  13735. },
  13736. {
  13737. name: "True Size",
  13738. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13739. default: true
  13740. },
  13741. ]
  13742. ))
  13743. characterMakers.push(() => makeCharacter(
  13744. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13745. {
  13746. front: {
  13747. height: math.unit(15, "feet"),
  13748. weight: math.unit(880, "kg"),
  13749. name: "Front",
  13750. image: {
  13751. source: "./media/characters/nightraver/front.svg",
  13752. extra: 2444 / 2160,
  13753. bottom: 0.027
  13754. }
  13755. },
  13756. back: {
  13757. height: math.unit(15, "feet"),
  13758. weight: math.unit(880, "kg"),
  13759. name: "Back",
  13760. image: {
  13761. source: "./media/characters/nightraver/back.svg",
  13762. extra: 2309 / 2180,
  13763. bottom: 0.005
  13764. }
  13765. },
  13766. sole: {
  13767. height: math.unit(2.878, "feet"),
  13768. name: "Sole",
  13769. image: {
  13770. source: "./media/characters/nightraver/sole.svg"
  13771. }
  13772. },
  13773. foot: {
  13774. height: math.unit(2.285, "feet"),
  13775. name: "Foot",
  13776. image: {
  13777. source: "./media/characters/nightraver/foot.svg"
  13778. }
  13779. },
  13780. maw: {
  13781. height: math.unit(2.67, "feet"),
  13782. name: "Maw",
  13783. image: {
  13784. source: "./media/characters/nightraver/maw.svg"
  13785. }
  13786. },
  13787. },
  13788. [
  13789. {
  13790. name: "Micro",
  13791. height: math.unit(1, "cm")
  13792. },
  13793. {
  13794. name: "Normal",
  13795. height: math.unit(15, "feet"),
  13796. default: true
  13797. },
  13798. {
  13799. name: "Macro",
  13800. height: math.unit(300, "feet")
  13801. },
  13802. {
  13803. name: "Megamacro",
  13804. height: math.unit(300, "miles")
  13805. },
  13806. {
  13807. name: "Gigamacro",
  13808. height: math.unit(10000, "miles")
  13809. },
  13810. ]
  13811. ))
  13812. characterMakers.push(() => makeCharacter(
  13813. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13814. {
  13815. side: {
  13816. height: math.unit(2, "inches"),
  13817. weight: math.unit(5, "grams"),
  13818. name: "Side",
  13819. image: {
  13820. source: "./media/characters/arc/side.svg"
  13821. }
  13822. },
  13823. },
  13824. [
  13825. {
  13826. name: "Micro",
  13827. height: math.unit(2, "inches"),
  13828. default: true
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13834. {
  13835. front: {
  13836. height: math.unit(1.1938, "meters"),
  13837. weight: math.unit(54, "kg"),
  13838. name: "Front",
  13839. image: {
  13840. source: "./media/characters/nebula-shahar/front.svg",
  13841. extra: 1642 / 1436,
  13842. bottom: 0.06
  13843. }
  13844. },
  13845. },
  13846. [
  13847. {
  13848. name: "Megamicro",
  13849. height: math.unit(0.3, "mm")
  13850. },
  13851. {
  13852. name: "Micro",
  13853. height: math.unit(3, "cm")
  13854. },
  13855. {
  13856. name: "Normal",
  13857. height: math.unit(138, "cm"),
  13858. default: true
  13859. },
  13860. {
  13861. name: "Macro",
  13862. height: math.unit(30, "m")
  13863. },
  13864. ]
  13865. ))
  13866. characterMakers.push(() => makeCharacter(
  13867. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13868. {
  13869. front: {
  13870. height: math.unit(5.24, "feet"),
  13871. weight: math.unit(150, "lb"),
  13872. name: "Front",
  13873. image: {
  13874. source: "./media/characters/shayla/front.svg",
  13875. extra: 1512 / 1414,
  13876. bottom: 0.01
  13877. }
  13878. },
  13879. back: {
  13880. height: math.unit(5.24, "feet"),
  13881. weight: math.unit(150, "lb"),
  13882. name: "Back",
  13883. image: {
  13884. source: "./media/characters/shayla/back.svg",
  13885. extra: 1512 / 1414
  13886. }
  13887. },
  13888. hand: {
  13889. height: math.unit(0.7781496062992126, "feet"),
  13890. name: "Hand",
  13891. image: {
  13892. source: "./media/characters/shayla/hand.svg"
  13893. }
  13894. },
  13895. foot: {
  13896. height: math.unit(1.4206036745406823, "feet"),
  13897. name: "Foot",
  13898. image: {
  13899. source: "./media/characters/shayla/foot.svg"
  13900. }
  13901. },
  13902. },
  13903. [
  13904. {
  13905. name: "Micro",
  13906. height: math.unit(0.32, "feet")
  13907. },
  13908. {
  13909. name: "Normal",
  13910. height: math.unit(5.24, "feet"),
  13911. default: true
  13912. },
  13913. {
  13914. name: "Macro",
  13915. height: math.unit(492.12, "feet")
  13916. },
  13917. {
  13918. name: "Megamacro",
  13919. height: math.unit(186.41, "miles")
  13920. },
  13921. ]
  13922. ))
  13923. characterMakers.push(() => makeCharacter(
  13924. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13925. {
  13926. front: {
  13927. height: math.unit(2.2, "m"),
  13928. weight: math.unit(120, "kg"),
  13929. name: "Front",
  13930. image: {
  13931. source: "./media/characters/pia-jr/front.svg",
  13932. extra: 1000 / 970,
  13933. bottom: 0.035
  13934. }
  13935. },
  13936. hand: {
  13937. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13938. name: "Hand",
  13939. image: {
  13940. source: "./media/characters/pia-jr/hand.svg"
  13941. }
  13942. },
  13943. paw: {
  13944. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13945. name: "Paw",
  13946. image: {
  13947. source: "./media/characters/pia-jr/paw.svg"
  13948. }
  13949. },
  13950. },
  13951. [
  13952. {
  13953. name: "Micro",
  13954. height: math.unit(1.2, "cm")
  13955. },
  13956. {
  13957. name: "Normal",
  13958. height: math.unit(2.2, "m"),
  13959. default: true
  13960. },
  13961. {
  13962. name: "Macro",
  13963. height: math.unit(180, "m")
  13964. },
  13965. {
  13966. name: "Megamacro",
  13967. height: math.unit(420, "km")
  13968. },
  13969. ]
  13970. ))
  13971. characterMakers.push(() => makeCharacter(
  13972. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13973. {
  13974. front: {
  13975. height: math.unit(2, "m"),
  13976. weight: math.unit(115, "kg"),
  13977. name: "Front",
  13978. image: {
  13979. source: "./media/characters/pia-sr/front.svg",
  13980. extra: 760 / 730,
  13981. bottom: 0.015
  13982. }
  13983. },
  13984. back: {
  13985. height: math.unit(2, "m"),
  13986. weight: math.unit(115, "kg"),
  13987. name: "Back",
  13988. image: {
  13989. source: "./media/characters/pia-sr/back.svg",
  13990. extra: 760 / 730,
  13991. bottom: 0.01
  13992. }
  13993. },
  13994. hand: {
  13995. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13996. name: "Hand",
  13997. image: {
  13998. source: "./media/characters/pia-sr/hand.svg"
  13999. }
  14000. },
  14001. foot: {
  14002. height: math.unit(1.83, "feet"),
  14003. name: "Foot",
  14004. image: {
  14005. source: "./media/characters/pia-sr/foot.svg"
  14006. }
  14007. },
  14008. },
  14009. [
  14010. {
  14011. name: "Micro",
  14012. height: math.unit(88, "mm")
  14013. },
  14014. {
  14015. name: "Normal",
  14016. height: math.unit(2, "m"),
  14017. default: true
  14018. },
  14019. {
  14020. name: "Macro",
  14021. height: math.unit(200, "m")
  14022. },
  14023. {
  14024. name: "Megamacro",
  14025. height: math.unit(420, "km")
  14026. },
  14027. ]
  14028. ))
  14029. characterMakers.push(() => makeCharacter(
  14030. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14031. {
  14032. front: {
  14033. height: math.unit(8 + 2 / 12, "feet"),
  14034. weight: math.unit(300, "lb"),
  14035. name: "Front",
  14036. image: {
  14037. source: "./media/characters/kibibyte/front.svg",
  14038. extra: 2221 / 2098,
  14039. bottom: 0.04
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Normal",
  14046. height: math.unit(8 + 2 / 12, "feet"),
  14047. default: true
  14048. },
  14049. {
  14050. name: "Socialable Macro",
  14051. height: math.unit(50, "feet")
  14052. },
  14053. {
  14054. name: "Macro",
  14055. height: math.unit(300, "feet")
  14056. },
  14057. {
  14058. name: "Megamacro",
  14059. height: math.unit(500, "miles")
  14060. },
  14061. ]
  14062. ))
  14063. characterMakers.push(() => makeCharacter(
  14064. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14065. {
  14066. front: {
  14067. height: math.unit(6, "feet"),
  14068. weight: math.unit(150, "lb"),
  14069. name: "Front",
  14070. image: {
  14071. source: "./media/characters/felix/front.svg",
  14072. extra: 762 / 722,
  14073. bottom: 0.02
  14074. }
  14075. },
  14076. frontClothed: {
  14077. height: math.unit(6, "feet"),
  14078. weight: math.unit(150, "lb"),
  14079. name: "Front (Clothed)",
  14080. image: {
  14081. source: "./media/characters/felix/front-clothed.svg",
  14082. extra: 762 / 722,
  14083. bottom: 0.02
  14084. }
  14085. },
  14086. },
  14087. [
  14088. {
  14089. name: "Normal",
  14090. height: math.unit(6 + 8 / 12, "feet"),
  14091. default: true
  14092. },
  14093. {
  14094. name: "Macro",
  14095. height: math.unit(2600, "feet")
  14096. },
  14097. {
  14098. name: "Megamacro",
  14099. height: math.unit(450, "miles")
  14100. },
  14101. ]
  14102. ))
  14103. characterMakers.push(() => makeCharacter(
  14104. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14105. {
  14106. front: {
  14107. height: math.unit(6 + 1 / 12, "feet"),
  14108. weight: math.unit(250, "lb"),
  14109. name: "Front",
  14110. image: {
  14111. source: "./media/characters/tobo/front.svg",
  14112. extra: 608 / 586,
  14113. bottom: 0.023
  14114. }
  14115. },
  14116. back: {
  14117. height: math.unit(6 + 1 / 12, "feet"),
  14118. weight: math.unit(250, "lb"),
  14119. name: "Back",
  14120. image: {
  14121. source: "./media/characters/tobo/back.svg",
  14122. extra: 608 / 586
  14123. }
  14124. },
  14125. },
  14126. [
  14127. {
  14128. name: "Nano",
  14129. height: math.unit(2, "nm")
  14130. },
  14131. {
  14132. name: "Megamicro",
  14133. height: math.unit(0.1, "mm")
  14134. },
  14135. {
  14136. name: "Micro",
  14137. height: math.unit(1, "inch"),
  14138. default: true
  14139. },
  14140. {
  14141. name: "Human-sized",
  14142. height: math.unit(6 + 1 / 12, "feet")
  14143. },
  14144. {
  14145. name: "Macro",
  14146. height: math.unit(250, "feet")
  14147. },
  14148. {
  14149. name: "Megamacro",
  14150. height: math.unit(75, "miles")
  14151. },
  14152. {
  14153. name: "Texas-sized",
  14154. height: math.unit(750, "miles")
  14155. },
  14156. {
  14157. name: "Teramacro",
  14158. height: math.unit(50000, "miles")
  14159. },
  14160. ]
  14161. ))
  14162. characterMakers.push(() => makeCharacter(
  14163. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14164. {
  14165. front: {
  14166. height: math.unit(6, "feet"),
  14167. weight: math.unit(269, "lb"),
  14168. name: "Front",
  14169. image: {
  14170. source: "./media/characters/danny-kapowsky/front.svg",
  14171. extra: 766 / 736,
  14172. bottom: 0.044
  14173. }
  14174. },
  14175. back: {
  14176. height: math.unit(6, "feet"),
  14177. weight: math.unit(269, "lb"),
  14178. name: "Back",
  14179. image: {
  14180. source: "./media/characters/danny-kapowsky/back.svg",
  14181. extra: 797 / 760,
  14182. bottom: 0.025
  14183. }
  14184. },
  14185. },
  14186. [
  14187. {
  14188. name: "Macro",
  14189. height: math.unit(150, "feet"),
  14190. default: true
  14191. },
  14192. {
  14193. name: "Macro+",
  14194. height: math.unit(200, "feet")
  14195. },
  14196. {
  14197. name: "Macro++",
  14198. height: math.unit(300, "feet")
  14199. },
  14200. {
  14201. name: "Macro+++",
  14202. height: math.unit(400, "feet")
  14203. },
  14204. ]
  14205. ))
  14206. characterMakers.push(() => makeCharacter(
  14207. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14208. {
  14209. side: {
  14210. height: math.unit(6, "feet"),
  14211. weight: math.unit(170, "lb"),
  14212. name: "Side",
  14213. image: {
  14214. source: "./media/characters/finn/side.svg",
  14215. extra: 1953 / 1807,
  14216. bottom: 0.057
  14217. }
  14218. },
  14219. },
  14220. [
  14221. {
  14222. name: "Megamacro",
  14223. height: math.unit(14445, "feet"),
  14224. default: true
  14225. },
  14226. ]
  14227. ))
  14228. characterMakers.push(() => makeCharacter(
  14229. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14230. {
  14231. front: {
  14232. height: math.unit(5 + 6 / 12, "feet"),
  14233. weight: math.unit(125, "lb"),
  14234. name: "Front",
  14235. image: {
  14236. source: "./media/characters/roy/front.svg",
  14237. extra: 1,
  14238. bottom: 0.11
  14239. }
  14240. },
  14241. },
  14242. [
  14243. {
  14244. name: "Micro",
  14245. height: math.unit(3, "inches"),
  14246. default: true
  14247. },
  14248. {
  14249. name: "Normal",
  14250. height: math.unit(5 + 6 / 12, "feet")
  14251. },
  14252. {
  14253. name: "Lesser Macro",
  14254. height: math.unit(60, "feet")
  14255. },
  14256. {
  14257. name: "Greater Macro",
  14258. height: math.unit(120, "feet")
  14259. },
  14260. ]
  14261. ))
  14262. characterMakers.push(() => makeCharacter(
  14263. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14264. {
  14265. front: {
  14266. height: math.unit(6, "feet"),
  14267. weight: math.unit(100, "lb"),
  14268. name: "Front",
  14269. image: {
  14270. source: "./media/characters/aevsivs/front.svg",
  14271. extra: 1,
  14272. bottom: 0.03
  14273. }
  14274. },
  14275. back: {
  14276. height: math.unit(6, "feet"),
  14277. weight: math.unit(100, "lb"),
  14278. name: "Back",
  14279. image: {
  14280. source: "./media/characters/aevsivs/back.svg"
  14281. }
  14282. },
  14283. },
  14284. [
  14285. {
  14286. name: "Micro",
  14287. height: math.unit(2, "inches"),
  14288. default: true
  14289. },
  14290. {
  14291. name: "Normal",
  14292. height: math.unit(5, "feet")
  14293. },
  14294. ]
  14295. ))
  14296. characterMakers.push(() => makeCharacter(
  14297. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14298. {
  14299. front: {
  14300. height: math.unit(5 + 7 / 12, "feet"),
  14301. weight: math.unit(159, "lb"),
  14302. name: "Front",
  14303. image: {
  14304. source: "./media/characters/hildegard/front.svg",
  14305. extra: 289 / 269,
  14306. bottom: 7.63 / 297.8
  14307. }
  14308. },
  14309. back: {
  14310. height: math.unit(5 + 7 / 12, "feet"),
  14311. weight: math.unit(159, "lb"),
  14312. name: "Back",
  14313. image: {
  14314. source: "./media/characters/hildegard/back.svg",
  14315. extra: 280 / 260,
  14316. bottom: 2.3 / 282
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Normal",
  14323. height: math.unit(5 + 7 / 12, "feet"),
  14324. default: true
  14325. },
  14326. ]
  14327. ))
  14328. characterMakers.push(() => makeCharacter(
  14329. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14330. {
  14331. bernard: {
  14332. height: math.unit(2 + 7 / 12, "feet"),
  14333. weight: math.unit(66, "lb"),
  14334. name: "Bernard",
  14335. rename: true,
  14336. image: {
  14337. source: "./media/characters/bernard-wilder/bernard.svg",
  14338. extra: 192 / 128,
  14339. bottom: 0.05
  14340. }
  14341. },
  14342. wilder: {
  14343. height: math.unit(5 + 8 / 12, "feet"),
  14344. weight: math.unit(143, "lb"),
  14345. name: "Wilder",
  14346. rename: true,
  14347. image: {
  14348. source: "./media/characters/bernard-wilder/wilder.svg",
  14349. extra: 361 / 312,
  14350. bottom: 0.02
  14351. }
  14352. },
  14353. },
  14354. [
  14355. {
  14356. name: "Normal",
  14357. height: math.unit(2 + 7 / 12, "feet"),
  14358. default: true
  14359. },
  14360. ]
  14361. ))
  14362. characterMakers.push(() => makeCharacter(
  14363. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14364. {
  14365. anthro: {
  14366. height: math.unit(6 + 1 / 12, "feet"),
  14367. weight: math.unit(155, "lb"),
  14368. name: "Anthro",
  14369. image: {
  14370. source: "./media/characters/hearth/anthro.svg",
  14371. extra: 260 / 250,
  14372. bottom: 0.02
  14373. }
  14374. },
  14375. feral: {
  14376. height: math.unit(3.78, "feet"),
  14377. weight: math.unit(35, "kg"),
  14378. name: "Feral",
  14379. image: {
  14380. source: "./media/characters/hearth/feral.svg",
  14381. extra: 153 / 135,
  14382. bottom: 0.03
  14383. }
  14384. },
  14385. },
  14386. [
  14387. {
  14388. name: "Normal",
  14389. height: math.unit(6 + 1 / 12, "feet"),
  14390. default: true
  14391. },
  14392. ]
  14393. ))
  14394. characterMakers.push(() => makeCharacter(
  14395. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14396. {
  14397. front: {
  14398. height: math.unit(6, "feet"),
  14399. weight: math.unit(182, "lb"),
  14400. name: "Front",
  14401. image: {
  14402. source: "./media/characters/ingrid/front.svg",
  14403. extra: 294 / 268,
  14404. bottom: 0.027
  14405. }
  14406. },
  14407. },
  14408. [
  14409. {
  14410. name: "Normal",
  14411. height: math.unit(6, "feet"),
  14412. default: true
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14418. {
  14419. eevee: {
  14420. height: math.unit(2 + 10 / 12, "feet"),
  14421. weight: math.unit(86, "lb"),
  14422. name: "Malgam",
  14423. image: {
  14424. source: "./media/characters/malgam/eevee.svg",
  14425. extra: 218 / 180,
  14426. bottom: 0.2
  14427. }
  14428. },
  14429. sylveon: {
  14430. height: math.unit(4, "feet"),
  14431. weight: math.unit(101, "lb"),
  14432. name: "Future Malgam",
  14433. rename: true,
  14434. image: {
  14435. source: "./media/characters/malgam/sylveon.svg",
  14436. extra: 371 / 325,
  14437. bottom: 0.015
  14438. }
  14439. },
  14440. gigantamax: {
  14441. height: math.unit(50, "feet"),
  14442. name: "Gigantamax Malgam",
  14443. rename: true,
  14444. image: {
  14445. source: "./media/characters/malgam/gigantamax.svg"
  14446. }
  14447. },
  14448. },
  14449. [
  14450. {
  14451. name: "Normal",
  14452. height: math.unit(2 + 10 / 12, "feet"),
  14453. default: true
  14454. },
  14455. ]
  14456. ))
  14457. characterMakers.push(() => makeCharacter(
  14458. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14459. {
  14460. front: {
  14461. height: math.unit(5 + 11 / 12, "feet"),
  14462. weight: math.unit(188, "lb"),
  14463. name: "Front",
  14464. image: {
  14465. source: "./media/characters/fleur/front.svg",
  14466. extra: 309 / 283,
  14467. bottom: 0.007
  14468. }
  14469. },
  14470. },
  14471. [
  14472. {
  14473. name: "Normal",
  14474. height: math.unit(5 + 11 / 12, "feet"),
  14475. default: true
  14476. },
  14477. ]
  14478. ))
  14479. characterMakers.push(() => makeCharacter(
  14480. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14481. {
  14482. front: {
  14483. height: math.unit(5 + 4 / 12, "feet"),
  14484. weight: math.unit(122, "lb"),
  14485. name: "Front",
  14486. image: {
  14487. source: "./media/characters/jude/front.svg",
  14488. extra: 288 / 273,
  14489. bottom: 0.03
  14490. }
  14491. },
  14492. },
  14493. [
  14494. {
  14495. name: "Normal",
  14496. height: math.unit(5 + 4 / 12, "feet"),
  14497. default: true
  14498. },
  14499. ]
  14500. ))
  14501. characterMakers.push(() => makeCharacter(
  14502. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14503. {
  14504. front: {
  14505. height: math.unit(5 + 11 / 12, "feet"),
  14506. weight: math.unit(190, "lb"),
  14507. name: "Front",
  14508. image: {
  14509. source: "./media/characters/seara/front.svg",
  14510. extra: 1,
  14511. bottom: 0.05
  14512. }
  14513. },
  14514. },
  14515. [
  14516. {
  14517. name: "Normal",
  14518. height: math.unit(5 + 11 / 12, "feet"),
  14519. default: true
  14520. },
  14521. ]
  14522. ))
  14523. characterMakers.push(() => makeCharacter(
  14524. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14525. {
  14526. front: {
  14527. height: math.unit(16 + 5 / 12, "feet"),
  14528. weight: math.unit(524, "lb"),
  14529. name: "Front",
  14530. image: {
  14531. source: "./media/characters/caspian/front.svg",
  14532. extra: 1,
  14533. bottom: 0.04
  14534. }
  14535. },
  14536. },
  14537. [
  14538. {
  14539. name: "Normal",
  14540. height: math.unit(16 + 5 / 12, "feet"),
  14541. default: true
  14542. },
  14543. ]
  14544. ))
  14545. characterMakers.push(() => makeCharacter(
  14546. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14547. {
  14548. front: {
  14549. height: math.unit(5 + 7 / 12, "feet"),
  14550. weight: math.unit(170, "lb"),
  14551. name: "Front",
  14552. image: {
  14553. source: "./media/characters/mika/front.svg",
  14554. extra: 1,
  14555. bottom: 0.016
  14556. }
  14557. },
  14558. },
  14559. [
  14560. {
  14561. name: "Normal",
  14562. height: math.unit(5 + 7 / 12, "feet"),
  14563. default: true
  14564. },
  14565. ]
  14566. ))
  14567. characterMakers.push(() => makeCharacter(
  14568. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14569. {
  14570. front: {
  14571. height: math.unit(6 + 2 / 12, "feet"),
  14572. weight: math.unit(268, "lb"),
  14573. name: "Front",
  14574. image: {
  14575. source: "./media/characters/sol/front.svg",
  14576. extra: 247 / 231,
  14577. bottom: 0.05
  14578. }
  14579. },
  14580. },
  14581. [
  14582. {
  14583. name: "Normal",
  14584. height: math.unit(6 + 2 / 12, "feet"),
  14585. default: true
  14586. },
  14587. ]
  14588. ))
  14589. characterMakers.push(() => makeCharacter(
  14590. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14591. {
  14592. buizel: {
  14593. height: math.unit(2 + 5 / 12, "feet"),
  14594. weight: math.unit(87, "lb"),
  14595. name: "Buizel",
  14596. image: {
  14597. source: "./media/characters/umiko/buizel.svg",
  14598. extra: 172 / 157,
  14599. bottom: 0.01
  14600. }
  14601. },
  14602. floatzel: {
  14603. height: math.unit(5 + 9 / 12, "feet"),
  14604. weight: math.unit(250, "lb"),
  14605. name: "Floatzel",
  14606. image: {
  14607. source: "./media/characters/umiko/floatzel.svg",
  14608. extra: 262 / 248
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Normal",
  14615. height: math.unit(2 + 5 / 12, "feet"),
  14616. default: true
  14617. },
  14618. ]
  14619. ))
  14620. characterMakers.push(() => makeCharacter(
  14621. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14622. {
  14623. front: {
  14624. height: math.unit(6 + 2 / 12, "feet"),
  14625. weight: math.unit(146, "lb"),
  14626. name: "Front",
  14627. image: {
  14628. source: "./media/characters/iliac/front.svg",
  14629. extra: 389 / 365,
  14630. bottom: 0.035
  14631. }
  14632. },
  14633. },
  14634. [
  14635. {
  14636. name: "Normal",
  14637. height: math.unit(6 + 2 / 12, "feet"),
  14638. default: true
  14639. },
  14640. ]
  14641. ))
  14642. characterMakers.push(() => makeCharacter(
  14643. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14644. {
  14645. front: {
  14646. height: math.unit(6, "feet"),
  14647. weight: math.unit(170, "lb"),
  14648. name: "Front",
  14649. image: {
  14650. source: "./media/characters/topaz/front.svg",
  14651. extra: 317 / 303,
  14652. bottom: 0.055
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Normal",
  14659. height: math.unit(6, "feet"),
  14660. default: true
  14661. },
  14662. ]
  14663. ))
  14664. characterMakers.push(() => makeCharacter(
  14665. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14666. {
  14667. front: {
  14668. height: math.unit(5 + 11 / 12, "feet"),
  14669. weight: math.unit(144, "lb"),
  14670. name: "Front",
  14671. image: {
  14672. source: "./media/characters/gabriel/front.svg",
  14673. extra: 285 / 262,
  14674. bottom: 0.004
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "Normal",
  14681. height: math.unit(5 + 11 / 12, "feet"),
  14682. default: true
  14683. },
  14684. ]
  14685. ))
  14686. characterMakers.push(() => makeCharacter(
  14687. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14688. {
  14689. side: {
  14690. height: math.unit(6 + 5 / 12, "feet"),
  14691. weight: math.unit(300, "lb"),
  14692. name: "Side",
  14693. image: {
  14694. source: "./media/characters/tempest-suicune/side.svg",
  14695. extra: 195 / 154,
  14696. bottom: 0.04
  14697. }
  14698. },
  14699. },
  14700. [
  14701. {
  14702. name: "Normal",
  14703. height: math.unit(6 + 5 / 12, "feet"),
  14704. default: true
  14705. },
  14706. ]
  14707. ))
  14708. characterMakers.push(() => makeCharacter(
  14709. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14710. {
  14711. front: {
  14712. height: math.unit(7 + 2 / 12, "feet"),
  14713. weight: math.unit(322, "lb"),
  14714. name: "Front",
  14715. image: {
  14716. source: "./media/characters/vulcan/front.svg",
  14717. extra: 154 / 147,
  14718. bottom: 0.04
  14719. }
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Normal",
  14725. height: math.unit(7 + 2 / 12, "feet"),
  14726. default: true
  14727. },
  14728. ]
  14729. ))
  14730. characterMakers.push(() => makeCharacter(
  14731. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14732. {
  14733. front: {
  14734. height: math.unit(5 + 10 / 12, "feet"),
  14735. weight: math.unit(264, "lb"),
  14736. name: "Front",
  14737. image: {
  14738. source: "./media/characters/gault/front.svg",
  14739. extra: 161 / 140,
  14740. bottom: 0.028
  14741. }
  14742. },
  14743. },
  14744. [
  14745. {
  14746. name: "Normal",
  14747. height: math.unit(5 + 10 / 12, "feet"),
  14748. default: true
  14749. },
  14750. ]
  14751. ))
  14752. characterMakers.push(() => makeCharacter(
  14753. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14754. {
  14755. front: {
  14756. height: math.unit(6, "feet"),
  14757. weight: math.unit(150, "lb"),
  14758. name: "Front",
  14759. image: {
  14760. source: "./media/characters/shard/front.svg",
  14761. extra: 273 / 238,
  14762. bottom: 0.02
  14763. }
  14764. },
  14765. },
  14766. [
  14767. {
  14768. name: "Normal",
  14769. height: math.unit(3 + 6 / 12, "feet"),
  14770. default: true
  14771. },
  14772. ]
  14773. ))
  14774. characterMakers.push(() => makeCharacter(
  14775. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14776. {
  14777. front: {
  14778. height: math.unit(5 + 11 / 12, "feet"),
  14779. weight: math.unit(146, "lb"),
  14780. name: "Front",
  14781. image: {
  14782. source: "./media/characters/ashe/front.svg",
  14783. extra: 400 / 373,
  14784. bottom: 0.01
  14785. }
  14786. },
  14787. },
  14788. [
  14789. {
  14790. name: "Normal",
  14791. height: math.unit(5 + 11 / 12, "feet"),
  14792. default: true
  14793. },
  14794. ]
  14795. ))
  14796. characterMakers.push(() => makeCharacter(
  14797. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14798. {
  14799. front: {
  14800. height: math.unit(5 + 5 / 12, "feet"),
  14801. weight: math.unit(135, "lb"),
  14802. name: "Front",
  14803. image: {
  14804. source: "./media/characters/beatrix/front.svg",
  14805. extra: 392 / 379,
  14806. bottom: 0.01
  14807. }
  14808. },
  14809. },
  14810. [
  14811. {
  14812. name: "Normal",
  14813. height: math.unit(6, "feet"),
  14814. default: true
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14820. {
  14821. front: {
  14822. height: math.unit(6, "feet"),
  14823. weight: math.unit(150, "lb"),
  14824. name: "Front",
  14825. image: {
  14826. source: "./media/characters/ignatius/front.svg",
  14827. extra: 245 / 222,
  14828. bottom: 0.01
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Normal",
  14835. height: math.unit(5 + 5 / 12, "feet"),
  14836. default: true
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14842. {
  14843. front: {
  14844. height: math.unit(6 + 2 / 12, "feet"),
  14845. weight: math.unit(138, "lb"),
  14846. name: "Front",
  14847. image: {
  14848. source: "./media/characters/mei-li/front.svg",
  14849. extra: 237 / 229,
  14850. bottom: 0.03
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Normal",
  14857. height: math.unit(6 + 2 / 12, "feet"),
  14858. default: true
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14864. {
  14865. front: {
  14866. height: math.unit(2 + 4 / 12, "feet"),
  14867. weight: math.unit(62, "lb"),
  14868. name: "Front",
  14869. image: {
  14870. source: "./media/characters/puru/front.svg",
  14871. extra: 206 / 149,
  14872. bottom: 0.06
  14873. }
  14874. },
  14875. },
  14876. [
  14877. {
  14878. name: "Normal",
  14879. height: math.unit(2 + 4 / 12, "feet"),
  14880. default: true
  14881. },
  14882. ]
  14883. ))
  14884. characterMakers.push(() => makeCharacter(
  14885. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14886. {
  14887. taur: {
  14888. height: math.unit(11, "feet"),
  14889. weight: math.unit(500, "lb"),
  14890. name: "Taur",
  14891. image: {
  14892. source: "./media/characters/kee/taur.svg",
  14893. extra: 1,
  14894. bottom: 0.04
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Normal",
  14901. height: math.unit(11, "feet"),
  14902. default: true
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14908. {
  14909. anthro: {
  14910. height: math.unit(7, "feet"),
  14911. weight: math.unit(190, "lb"),
  14912. name: "Anthro",
  14913. image: {
  14914. source: "./media/characters/cobalt-dracha/anthro.svg",
  14915. extra: 231 / 225,
  14916. bottom: 0.04
  14917. }
  14918. },
  14919. feral: {
  14920. height: math.unit(9 + 7 / 12, "feet"),
  14921. weight: math.unit(294, "lb"),
  14922. name: "Feral",
  14923. image: {
  14924. source: "./media/characters/cobalt-dracha/feral.svg",
  14925. extra: 692 / 633,
  14926. bottom: 0.05
  14927. }
  14928. },
  14929. },
  14930. [
  14931. {
  14932. name: "Normal",
  14933. height: math.unit(7, "feet"),
  14934. default: true
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14940. {
  14941. fallen: {
  14942. height: math.unit(11 + 8 / 12, "feet"),
  14943. weight: math.unit(485, "lb"),
  14944. name: "Java (Fallen)",
  14945. rename: true,
  14946. image: {
  14947. source: "./media/characters/java/fallen.svg",
  14948. extra: 226 / 208,
  14949. bottom: 0.005
  14950. }
  14951. },
  14952. godkin: {
  14953. height: math.unit(10 + 6 / 12, "feet"),
  14954. weight: math.unit(328, "lb"),
  14955. name: "Java (Godkin)",
  14956. rename: true,
  14957. image: {
  14958. source: "./media/characters/java/godkin.svg",
  14959. extra: 270 / 262,
  14960. bottom: 0.02
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Normal",
  14967. height: math.unit(11 + 8 / 12, "feet"),
  14968. default: true
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(7 + 8 / 12, "feet"),
  14977. weight: math.unit(320, "lb"),
  14978. name: "Front",
  14979. image: {
  14980. source: "./media/characters/skoll/front.svg",
  14981. extra: 232 / 220,
  14982. bottom: 0.02
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(7 + 8 / 12, "feet"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14996. {
  14997. front: {
  14998. height: math.unit(5 + 9 / 12, "feet"),
  14999. weight: math.unit(170, "lb"),
  15000. name: "Front",
  15001. image: {
  15002. source: "./media/characters/purna/front.svg",
  15003. extra: 239 / 229,
  15004. bottom: 0.01
  15005. }
  15006. },
  15007. },
  15008. [
  15009. {
  15010. name: "Normal",
  15011. height: math.unit(5 + 9 / 12, "feet"),
  15012. default: true
  15013. },
  15014. ]
  15015. ))
  15016. characterMakers.push(() => makeCharacter(
  15017. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15018. {
  15019. front: {
  15020. height: math.unit(5 + 9 / 12, "feet"),
  15021. weight: math.unit(142, "lb"),
  15022. name: "Front",
  15023. image: {
  15024. source: "./media/characters/kuva/front.svg",
  15025. extra: 281 / 271,
  15026. bottom: 0.006
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Normal",
  15033. height: math.unit(5 + 9 / 12, "feet"),
  15034. default: true
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15040. {
  15041. anthro: {
  15042. height: math.unit(9 + 2 / 12, "feet"),
  15043. weight: math.unit(270, "lb"),
  15044. name: "Anthro",
  15045. image: {
  15046. source: "./media/characters/embra/anthro.svg",
  15047. extra: 200 / 187,
  15048. bottom: 0.02
  15049. }
  15050. },
  15051. feral: {
  15052. height: math.unit(18 + 8 / 12, "feet"),
  15053. weight: math.unit(576, "lb"),
  15054. name: "Feral",
  15055. image: {
  15056. source: "./media/characters/embra/feral.svg",
  15057. extra: 152 / 137,
  15058. bottom: 0.037
  15059. }
  15060. },
  15061. },
  15062. [
  15063. {
  15064. name: "Normal",
  15065. height: math.unit(9 + 2 / 12, "feet"),
  15066. default: true
  15067. },
  15068. ]
  15069. ))
  15070. characterMakers.push(() => makeCharacter(
  15071. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15072. {
  15073. anthro: {
  15074. height: math.unit(10 + 9 / 12, "feet"),
  15075. weight: math.unit(224, "lb"),
  15076. name: "Anthro",
  15077. image: {
  15078. source: "./media/characters/grottos/anthro.svg",
  15079. extra: 350 / 332,
  15080. bottom: 0.045
  15081. }
  15082. },
  15083. feral: {
  15084. height: math.unit(20 + 7 / 12, "feet"),
  15085. weight: math.unit(629, "lb"),
  15086. name: "Feral",
  15087. image: {
  15088. source: "./media/characters/grottos/feral.svg",
  15089. extra: 207 / 190,
  15090. bottom: 0.05
  15091. }
  15092. },
  15093. },
  15094. [
  15095. {
  15096. name: "Normal",
  15097. height: math.unit(10 + 9 / 12, "feet"),
  15098. default: true
  15099. },
  15100. ]
  15101. ))
  15102. characterMakers.push(() => makeCharacter(
  15103. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15104. {
  15105. anthro: {
  15106. height: math.unit(9 + 6 / 12, "feet"),
  15107. weight: math.unit(298, "lb"),
  15108. name: "Anthro",
  15109. image: {
  15110. source: "./media/characters/frifna/anthro.svg",
  15111. extra: 282 / 269,
  15112. bottom: 0.015
  15113. }
  15114. },
  15115. feral: {
  15116. height: math.unit(16 + 2 / 12, "feet"),
  15117. weight: math.unit(624, "lb"),
  15118. name: "Feral",
  15119. image: {
  15120. source: "./media/characters/frifna/feral.svg"
  15121. }
  15122. },
  15123. },
  15124. [
  15125. {
  15126. name: "Normal",
  15127. height: math.unit(9 + 6 / 12, "feet"),
  15128. default: true
  15129. },
  15130. ]
  15131. ))
  15132. characterMakers.push(() => makeCharacter(
  15133. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15134. {
  15135. front: {
  15136. height: math.unit(6 + 2 / 12, "feet"),
  15137. weight: math.unit(168, "lb"),
  15138. name: "Front",
  15139. image: {
  15140. source: "./media/characters/elise/front.svg",
  15141. extra: 276 / 271
  15142. }
  15143. },
  15144. },
  15145. [
  15146. {
  15147. name: "Normal",
  15148. height: math.unit(6 + 2 / 12, "feet"),
  15149. default: true
  15150. },
  15151. ]
  15152. ))
  15153. characterMakers.push(() => makeCharacter(
  15154. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15155. {
  15156. front: {
  15157. height: math.unit(5 + 10 / 12, "feet"),
  15158. weight: math.unit(210, "lb"),
  15159. name: "Front",
  15160. image: {
  15161. source: "./media/characters/glade/front.svg",
  15162. extra: 258 / 247,
  15163. bottom: 0.008
  15164. }
  15165. },
  15166. },
  15167. [
  15168. {
  15169. name: "Normal",
  15170. height: math.unit(5 + 10 / 12, "feet"),
  15171. default: true
  15172. },
  15173. ]
  15174. ))
  15175. characterMakers.push(() => makeCharacter(
  15176. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15177. {
  15178. front: {
  15179. height: math.unit(5 + 10 / 12, "feet"),
  15180. weight: math.unit(129, "lb"),
  15181. name: "Front",
  15182. image: {
  15183. source: "./media/characters/rina/front.svg",
  15184. extra: 266 / 255,
  15185. bottom: 0.005
  15186. }
  15187. },
  15188. },
  15189. [
  15190. {
  15191. name: "Normal",
  15192. height: math.unit(5 + 10 / 12, "feet"),
  15193. default: true
  15194. },
  15195. ]
  15196. ))
  15197. characterMakers.push(() => makeCharacter(
  15198. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15199. {
  15200. front: {
  15201. height: math.unit(6 + 1 / 12, "feet"),
  15202. weight: math.unit(192, "lb"),
  15203. name: "Front",
  15204. image: {
  15205. source: "./media/characters/veronica/front.svg",
  15206. extra: 319 / 309,
  15207. bottom: 0.005
  15208. }
  15209. },
  15210. },
  15211. [
  15212. {
  15213. name: "Normal",
  15214. height: math.unit(6 + 1 / 12, "feet"),
  15215. default: true
  15216. },
  15217. ]
  15218. ))
  15219. characterMakers.push(() => makeCharacter(
  15220. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15221. {
  15222. front: {
  15223. height: math.unit(9 + 3 / 12, "feet"),
  15224. weight: math.unit(1100, "lb"),
  15225. name: "Front",
  15226. image: {
  15227. source: "./media/characters/braxton/front.svg",
  15228. extra: 1057 / 984,
  15229. bottom: 0.05
  15230. }
  15231. },
  15232. },
  15233. [
  15234. {
  15235. name: "Normal",
  15236. height: math.unit(9 + 3 / 12, "feet")
  15237. },
  15238. {
  15239. name: "Giant",
  15240. height: math.unit(300, "feet"),
  15241. default: true
  15242. },
  15243. {
  15244. name: "Macro",
  15245. height: math.unit(700, "feet")
  15246. },
  15247. {
  15248. name: "Megamacro",
  15249. height: math.unit(6000, "feet")
  15250. },
  15251. ]
  15252. ))
  15253. characterMakers.push(() => makeCharacter(
  15254. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15255. {
  15256. front: {
  15257. height: math.unit(6 + 7 / 12, "feet"),
  15258. weight: math.unit(150, "lb"),
  15259. name: "Front",
  15260. image: {
  15261. source: "./media/characters/blue-feyonics/front.svg",
  15262. extra: 1403 / 1306,
  15263. bottom: 0.047
  15264. }
  15265. },
  15266. },
  15267. [
  15268. {
  15269. name: "Normal",
  15270. height: math.unit(6 + 7 / 12, "feet"),
  15271. default: true
  15272. },
  15273. ]
  15274. ))
  15275. characterMakers.push(() => makeCharacter(
  15276. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15277. {
  15278. front: {
  15279. height: math.unit(1.8, "meters"),
  15280. weight: math.unit(60, "kg"),
  15281. name: "Front",
  15282. image: {
  15283. source: "./media/characters/maxwell/front.svg",
  15284. extra: 2060 / 1873
  15285. }
  15286. },
  15287. },
  15288. [
  15289. {
  15290. name: "Micro",
  15291. height: math.unit(1, "mm")
  15292. },
  15293. {
  15294. name: "Normal",
  15295. height: math.unit(1.8, "meter"),
  15296. default: true
  15297. },
  15298. {
  15299. name: "Macro",
  15300. height: math.unit(30, "meters")
  15301. },
  15302. {
  15303. name: "Megamacro",
  15304. height: math.unit(10, "km")
  15305. },
  15306. ]
  15307. ))
  15308. characterMakers.push(() => makeCharacter(
  15309. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15310. {
  15311. front: {
  15312. height: math.unit(6, "feet"),
  15313. weight: math.unit(150, "lb"),
  15314. name: "Front",
  15315. image: {
  15316. source: "./media/characters/jack/front.svg",
  15317. extra: 1754 / 1640,
  15318. bottom: 0.01
  15319. }
  15320. },
  15321. },
  15322. [
  15323. {
  15324. name: "Normal",
  15325. height: math.unit(80000, "feet"),
  15326. default: true
  15327. },
  15328. {
  15329. name: "Max size",
  15330. height: math.unit(10, "lightyears")
  15331. },
  15332. ]
  15333. ))
  15334. characterMakers.push(() => makeCharacter(
  15335. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15336. {
  15337. upright: {
  15338. height: math.unit(7, "feet"),
  15339. weight: math.unit(170, "lb"),
  15340. name: "Upright",
  15341. image: {
  15342. source: "./media/characters/cafat/upright.svg",
  15343. bottom: 0.01
  15344. }
  15345. },
  15346. uprightFull: {
  15347. height: math.unit(7, "feet"),
  15348. weight: math.unit(170, "lb"),
  15349. name: "Upright (Full)",
  15350. image: {
  15351. source: "./media/characters/cafat/upright-full.svg",
  15352. bottom: 0.01
  15353. }
  15354. },
  15355. side: {
  15356. height: math.unit(5, "feet"),
  15357. weight: math.unit(150, "lb"),
  15358. name: "Side",
  15359. image: {
  15360. source: "./media/characters/cafat/side.svg"
  15361. }
  15362. },
  15363. },
  15364. [
  15365. {
  15366. name: "Small",
  15367. height: math.unit(7, "feet"),
  15368. default: true
  15369. },
  15370. {
  15371. name: "Large",
  15372. height: math.unit(15.5, "feet")
  15373. },
  15374. ]
  15375. ))
  15376. characterMakers.push(() => makeCharacter(
  15377. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15378. {
  15379. front: {
  15380. height: math.unit(6, "feet"),
  15381. weight: math.unit(150, "lb"),
  15382. name: "Front",
  15383. image: {
  15384. source: "./media/characters/verin-raharra/front.svg",
  15385. extra: 5019 / 4835,
  15386. bottom: 0.023
  15387. }
  15388. },
  15389. },
  15390. [
  15391. {
  15392. name: "Normal",
  15393. height: math.unit(7 + 5 / 12, "feet"),
  15394. default: true
  15395. },
  15396. {
  15397. name: "Upsized",
  15398. height: math.unit(20, "feet")
  15399. },
  15400. ]
  15401. ))
  15402. characterMakers.push(() => makeCharacter(
  15403. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15404. {
  15405. front: {
  15406. height: math.unit(7, "feet"),
  15407. weight: math.unit(230, "lb"),
  15408. name: "Front",
  15409. image: {
  15410. source: "./media/characters/nakata/front.svg",
  15411. extra: 1.005,
  15412. bottom: 0.01
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Normal",
  15419. height: math.unit(7, "feet"),
  15420. default: true
  15421. },
  15422. {
  15423. name: "Big",
  15424. height: math.unit(14, "feet")
  15425. },
  15426. {
  15427. name: "Macro",
  15428. height: math.unit(400, "feet")
  15429. },
  15430. ]
  15431. ))
  15432. characterMakers.push(() => makeCharacter(
  15433. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15434. {
  15435. front: {
  15436. height: math.unit(4.91, "feet"),
  15437. weight: math.unit(100, "lb"),
  15438. name: "Front",
  15439. image: {
  15440. source: "./media/characters/lily/front.svg",
  15441. extra: 1585 / 1415,
  15442. bottom: 0.02
  15443. }
  15444. },
  15445. },
  15446. [
  15447. {
  15448. name: "Normal",
  15449. height: math.unit(4.91, "feet"),
  15450. default: true
  15451. },
  15452. ]
  15453. ))
  15454. characterMakers.push(() => makeCharacter(
  15455. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15456. {
  15457. laying: {
  15458. height: math.unit(4 + 4 / 12, "feet"),
  15459. weight: math.unit(600, "lb"),
  15460. name: "Laying",
  15461. image: {
  15462. source: "./media/characters/sheila/laying.svg",
  15463. extra: 1333 / 1265,
  15464. bottom: 0.16
  15465. }
  15466. },
  15467. },
  15468. [
  15469. {
  15470. name: "Normal",
  15471. height: math.unit(4 + 4 / 12, "feet"),
  15472. default: true
  15473. },
  15474. ]
  15475. ))
  15476. characterMakers.push(() => makeCharacter(
  15477. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15478. {
  15479. front: {
  15480. height: math.unit(6, "feet"),
  15481. weight: math.unit(190, "lb"),
  15482. name: "Front",
  15483. image: {
  15484. source: "./media/characters/sax/front.svg",
  15485. extra: 1187 / 973,
  15486. bottom: 0.042
  15487. }
  15488. },
  15489. },
  15490. [
  15491. {
  15492. name: "Micro",
  15493. height: math.unit(4, "inches"),
  15494. default: true
  15495. },
  15496. ]
  15497. ))
  15498. characterMakers.push(() => makeCharacter(
  15499. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15500. {
  15501. front: {
  15502. height: math.unit(6, "feet"),
  15503. weight: math.unit(150, "lb"),
  15504. name: "Front",
  15505. image: {
  15506. source: "./media/characters/pandora/front.svg",
  15507. extra: 2720 / 2556,
  15508. bottom: 0.015
  15509. }
  15510. },
  15511. back: {
  15512. height: math.unit(6, "feet"),
  15513. weight: math.unit(150, "lb"),
  15514. name: "Back",
  15515. image: {
  15516. source: "./media/characters/pandora/back.svg",
  15517. extra: 2720 / 2556,
  15518. bottom: 0.01
  15519. }
  15520. },
  15521. beans: {
  15522. height: math.unit(6 / 8, "feet"),
  15523. name: "Beans",
  15524. image: {
  15525. source: "./media/characters/pandora/beans.svg"
  15526. }
  15527. },
  15528. skirt: {
  15529. height: math.unit(6, "feet"),
  15530. weight: math.unit(150, "lb"),
  15531. name: "Skirt",
  15532. image: {
  15533. source: "./media/characters/pandora/skirt.svg",
  15534. extra: 1622 / 1525,
  15535. bottom: 0.015
  15536. }
  15537. },
  15538. hoodie: {
  15539. height: math.unit(6, "feet"),
  15540. weight: math.unit(150, "lb"),
  15541. name: "Hoodie",
  15542. image: {
  15543. source: "./media/characters/pandora/hoodie.svg",
  15544. extra: 1622 / 1525,
  15545. bottom: 0.015
  15546. }
  15547. },
  15548. casual: {
  15549. height: math.unit(6, "feet"),
  15550. weight: math.unit(150, "lb"),
  15551. name: "Casual",
  15552. image: {
  15553. source: "./media/characters/pandora/casual.svg",
  15554. extra: 1622 / 1525,
  15555. bottom: 0.015
  15556. }
  15557. },
  15558. },
  15559. [
  15560. {
  15561. name: "Normal",
  15562. height: math.unit(6, "feet")
  15563. },
  15564. {
  15565. name: "Big Steppy",
  15566. height: math.unit(1, "km"),
  15567. default: true
  15568. },
  15569. ]
  15570. ))
  15571. characterMakers.push(() => makeCharacter(
  15572. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15573. {
  15574. side: {
  15575. height: math.unit(10, "feet"),
  15576. weight: math.unit(800, "kg"),
  15577. name: "Side",
  15578. image: {
  15579. source: "./media/characters/venio-darcony/side.svg",
  15580. extra: 1373 / 1003,
  15581. bottom: 0.037
  15582. }
  15583. },
  15584. front: {
  15585. height: math.unit(19, "feet"),
  15586. weight: math.unit(800, "kg"),
  15587. name: "Front",
  15588. image: {
  15589. source: "./media/characters/venio-darcony/front.svg"
  15590. }
  15591. },
  15592. back: {
  15593. height: math.unit(19, "feet"),
  15594. weight: math.unit(800, "kg"),
  15595. name: "Back",
  15596. image: {
  15597. source: "./media/characters/venio-darcony/back.svg"
  15598. }
  15599. },
  15600. sideNsfw: {
  15601. height: math.unit(10, "feet"),
  15602. weight: math.unit(800, "kg"),
  15603. name: "Side (NSFW)",
  15604. image: {
  15605. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15606. extra: 1373 / 1003,
  15607. bottom: 0.037
  15608. }
  15609. },
  15610. frontNsfw: {
  15611. height: math.unit(19, "feet"),
  15612. weight: math.unit(800, "kg"),
  15613. name: "Front (NSFW)",
  15614. image: {
  15615. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15616. }
  15617. },
  15618. backNsfw: {
  15619. height: math.unit(19, "feet"),
  15620. weight: math.unit(800, "kg"),
  15621. name: "Back (NSFW)",
  15622. image: {
  15623. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15624. }
  15625. },
  15626. sideArmored: {
  15627. height: math.unit(10, "feet"),
  15628. weight: math.unit(800, "kg"),
  15629. name: "Side (Armored)",
  15630. image: {
  15631. source: "./media/characters/venio-darcony/side-armored.svg",
  15632. extra: 1373 / 1003,
  15633. bottom: 0.037
  15634. }
  15635. },
  15636. frontArmored: {
  15637. height: math.unit(19, "feet"),
  15638. weight: math.unit(900, "kg"),
  15639. name: "Front (Armored)",
  15640. image: {
  15641. source: "./media/characters/venio-darcony/front-armored.svg"
  15642. }
  15643. },
  15644. backArmored: {
  15645. height: math.unit(19, "feet"),
  15646. weight: math.unit(900, "kg"),
  15647. name: "Back (Armored)",
  15648. image: {
  15649. source: "./media/characters/venio-darcony/back-armored.svg"
  15650. }
  15651. },
  15652. sword: {
  15653. height: math.unit(10, "feet"),
  15654. weight: math.unit(50, "lb"),
  15655. name: "Sword",
  15656. image: {
  15657. source: "./media/characters/venio-darcony/sword.svg"
  15658. }
  15659. },
  15660. },
  15661. [
  15662. {
  15663. name: "Normal",
  15664. height: math.unit(10, "feet")
  15665. },
  15666. {
  15667. name: "Macro",
  15668. height: math.unit(130, "feet"),
  15669. default: true
  15670. },
  15671. {
  15672. name: "Macro+",
  15673. height: math.unit(240, "feet")
  15674. },
  15675. ]
  15676. ))
  15677. characterMakers.push(() => makeCharacter(
  15678. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15679. {
  15680. front: {
  15681. height: math.unit(6, "feet"),
  15682. weight: math.unit(150, "lb"),
  15683. name: "Front",
  15684. image: {
  15685. source: "./media/characters/veski/front.svg",
  15686. extra: 1299 / 1225,
  15687. bottom: 0.04
  15688. }
  15689. },
  15690. back: {
  15691. height: math.unit(6, "feet"),
  15692. weight: math.unit(150, "lb"),
  15693. name: "Back",
  15694. image: {
  15695. source: "./media/characters/veski/back.svg",
  15696. extra: 1299 / 1225,
  15697. bottom: 0.008
  15698. }
  15699. },
  15700. maw: {
  15701. height: math.unit(1.5 * 1.21, "feet"),
  15702. name: "Maw",
  15703. image: {
  15704. source: "./media/characters/veski/maw.svg"
  15705. }
  15706. },
  15707. },
  15708. [
  15709. {
  15710. name: "Macro",
  15711. height: math.unit(2, "km"),
  15712. default: true
  15713. },
  15714. ]
  15715. ))
  15716. characterMakers.push(() => makeCharacter(
  15717. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15718. {
  15719. front: {
  15720. height: math.unit(5 + 7 / 12, "feet"),
  15721. name: "Front",
  15722. image: {
  15723. source: "./media/characters/isabelle/front.svg",
  15724. extra: 2130 / 1976,
  15725. bottom: 0.05
  15726. }
  15727. },
  15728. },
  15729. [
  15730. {
  15731. name: "Supermicro",
  15732. height: math.unit(10, "micrometers")
  15733. },
  15734. {
  15735. name: "Micro",
  15736. height: math.unit(1, "inch")
  15737. },
  15738. {
  15739. name: "Tiny",
  15740. height: math.unit(5, "inches")
  15741. },
  15742. {
  15743. name: "Standard",
  15744. height: math.unit(5 + 7 / 12, "inches")
  15745. },
  15746. {
  15747. name: "Macro",
  15748. height: math.unit(80, "meters"),
  15749. default: true
  15750. },
  15751. {
  15752. name: "Megamacro",
  15753. height: math.unit(250, "meters")
  15754. },
  15755. {
  15756. name: "Gigamacro",
  15757. height: math.unit(5, "km")
  15758. },
  15759. {
  15760. name: "Cosmic",
  15761. height: math.unit(2.5e6, "miles")
  15762. },
  15763. ]
  15764. ))
  15765. characterMakers.push(() => makeCharacter(
  15766. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15767. {
  15768. front: {
  15769. height: math.unit(6, "feet"),
  15770. weight: math.unit(150, "lb"),
  15771. name: "Front",
  15772. image: {
  15773. source: "./media/characters/hanzo/front.svg",
  15774. extra: 374 / 344,
  15775. bottom: 0.02
  15776. }
  15777. },
  15778. },
  15779. [
  15780. {
  15781. name: "Normal",
  15782. height: math.unit(8, "feet"),
  15783. default: true
  15784. },
  15785. ]
  15786. ))
  15787. characterMakers.push(() => makeCharacter(
  15788. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15789. {
  15790. front: {
  15791. height: math.unit(7, "feet"),
  15792. weight: math.unit(130, "lb"),
  15793. name: "Front",
  15794. image: {
  15795. source: "./media/characters/anna/front.svg",
  15796. extra: 169 / 145,
  15797. bottom: 0.06
  15798. }
  15799. },
  15800. full: {
  15801. height: math.unit(4.96, "feet"),
  15802. weight: math.unit(220, "lb"),
  15803. name: "Full",
  15804. image: {
  15805. source: "./media/characters/anna/full.svg",
  15806. extra: 138 / 114,
  15807. bottom: 0.15
  15808. }
  15809. },
  15810. tongue: {
  15811. height: math.unit(2.53, "feet"),
  15812. name: "Tongue",
  15813. image: {
  15814. source: "./media/characters/anna/tongue.svg"
  15815. }
  15816. },
  15817. },
  15818. [
  15819. {
  15820. name: "Normal",
  15821. height: math.unit(7, "feet"),
  15822. default: true
  15823. },
  15824. ]
  15825. ))
  15826. characterMakers.push(() => makeCharacter(
  15827. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15828. {
  15829. front: {
  15830. height: math.unit(7, "feet"),
  15831. weight: math.unit(150, "lb"),
  15832. name: "Front",
  15833. image: {
  15834. source: "./media/characters/ian-corvid/front.svg",
  15835. extra: 150 / 142,
  15836. bottom: 0.02
  15837. }
  15838. },
  15839. back: {
  15840. height: math.unit(7, "feet"),
  15841. weight: math.unit(150, "lb"),
  15842. name: "Back",
  15843. image: {
  15844. source: "./media/characters/ian-corvid/back.svg",
  15845. extra: 150 / 143,
  15846. bottom: 0.01
  15847. }
  15848. },
  15849. stomping: {
  15850. height: math.unit(7, "feet"),
  15851. weight: math.unit(150, "lb"),
  15852. name: "Stomping",
  15853. image: {
  15854. source: "./media/characters/ian-corvid/stomping.svg",
  15855. extra: 76 / 72
  15856. }
  15857. },
  15858. sitting: {
  15859. height: math.unit(7 / 1.8, "feet"),
  15860. weight: math.unit(150, "lb"),
  15861. name: "Sitting",
  15862. image: {
  15863. source: "./media/characters/ian-corvid/sitting.svg",
  15864. extra: 1400 / 1269,
  15865. bottom: 0.15
  15866. }
  15867. },
  15868. },
  15869. [
  15870. {
  15871. name: "Tiny Microw",
  15872. height: math.unit(1, "inch")
  15873. },
  15874. {
  15875. name: "Microw",
  15876. height: math.unit(6, "inches")
  15877. },
  15878. {
  15879. name: "Crow",
  15880. height: math.unit(7 + 1 / 12, "feet"),
  15881. default: true
  15882. },
  15883. {
  15884. name: "Macrow",
  15885. height: math.unit(176, "feet")
  15886. },
  15887. ]
  15888. ))
  15889. characterMakers.push(() => makeCharacter(
  15890. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15891. {
  15892. front: {
  15893. height: math.unit(5 + 7 / 12, "feet"),
  15894. weight: math.unit(147, "lb"),
  15895. name: "Front",
  15896. image: {
  15897. source: "./media/characters/natalie-kellon/front.svg",
  15898. extra: 1214 / 1141,
  15899. bottom: 0.02
  15900. }
  15901. },
  15902. },
  15903. [
  15904. {
  15905. name: "Micro",
  15906. height: math.unit(1 / 16, "inch")
  15907. },
  15908. {
  15909. name: "Tiny",
  15910. height: math.unit(4, "inches")
  15911. },
  15912. {
  15913. name: "Normal",
  15914. height: math.unit(5 + 7 / 12, "feet"),
  15915. default: true
  15916. },
  15917. {
  15918. name: "Amazon",
  15919. height: math.unit(12, "feet")
  15920. },
  15921. {
  15922. name: "Giantess",
  15923. height: math.unit(160, "meters")
  15924. },
  15925. {
  15926. name: "Titaness",
  15927. height: math.unit(800, "meters")
  15928. },
  15929. ]
  15930. ))
  15931. characterMakers.push(() => makeCharacter(
  15932. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15933. {
  15934. front: {
  15935. height: math.unit(6, "feet"),
  15936. weight: math.unit(150, "lb"),
  15937. name: "Front",
  15938. image: {
  15939. source: "./media/characters/alluria/front.svg",
  15940. extra: 806 / 738,
  15941. bottom: 0.01
  15942. }
  15943. },
  15944. side: {
  15945. height: math.unit(6, "feet"),
  15946. weight: math.unit(150, "lb"),
  15947. name: "Side",
  15948. image: {
  15949. source: "./media/characters/alluria/side.svg",
  15950. extra: 800 / 750,
  15951. }
  15952. },
  15953. back: {
  15954. height: math.unit(6, "feet"),
  15955. weight: math.unit(150, "lb"),
  15956. name: "Back",
  15957. image: {
  15958. source: "./media/characters/alluria/back.svg",
  15959. extra: 806 / 738,
  15960. }
  15961. },
  15962. frontMaid: {
  15963. height: math.unit(6, "feet"),
  15964. weight: math.unit(150, "lb"),
  15965. name: "Front (Maid)",
  15966. image: {
  15967. source: "./media/characters/alluria/front-maid.svg",
  15968. extra: 806 / 738,
  15969. bottom: 0.01
  15970. }
  15971. },
  15972. sideMaid: {
  15973. height: math.unit(6, "feet"),
  15974. weight: math.unit(150, "lb"),
  15975. name: "Side (Maid)",
  15976. image: {
  15977. source: "./media/characters/alluria/side-maid.svg",
  15978. extra: 800 / 750,
  15979. bottom: 0.005
  15980. }
  15981. },
  15982. backMaid: {
  15983. height: math.unit(6, "feet"),
  15984. weight: math.unit(150, "lb"),
  15985. name: "Back (Maid)",
  15986. image: {
  15987. source: "./media/characters/alluria/back-maid.svg",
  15988. extra: 806 / 738,
  15989. }
  15990. },
  15991. },
  15992. [
  15993. {
  15994. name: "Micro",
  15995. height: math.unit(6, "inches"),
  15996. default: true
  15997. },
  15998. ]
  15999. ))
  16000. characterMakers.push(() => makeCharacter(
  16001. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16002. {
  16003. front: {
  16004. height: math.unit(6, "feet"),
  16005. weight: math.unit(150, "lb"),
  16006. name: "Front",
  16007. image: {
  16008. source: "./media/characters/kyle/front.svg",
  16009. extra: 1069 / 962,
  16010. bottom: 77.228 / 1727.45
  16011. }
  16012. },
  16013. },
  16014. [
  16015. {
  16016. name: "Macro",
  16017. height: math.unit(150, "feet"),
  16018. default: true
  16019. },
  16020. ]
  16021. ))
  16022. characterMakers.push(() => makeCharacter(
  16023. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16024. {
  16025. front: {
  16026. height: math.unit(6, "feet"),
  16027. weight: math.unit(300, "lb"),
  16028. name: "Front",
  16029. image: {
  16030. source: "./media/characters/duncan/front.svg",
  16031. extra: 1650 / 1482,
  16032. bottom: 0.05
  16033. }
  16034. },
  16035. },
  16036. [
  16037. {
  16038. name: "Macro",
  16039. height: math.unit(100, "feet"),
  16040. default: true
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16046. {
  16047. front: {
  16048. height: math.unit(5 + 4 / 12, "feet"),
  16049. weight: math.unit(220, "lb"),
  16050. name: "Front",
  16051. image: {
  16052. source: "./media/characters/memory/front.svg",
  16053. extra: 3641 / 3545,
  16054. bottom: 0.03
  16055. }
  16056. },
  16057. back: {
  16058. height: math.unit(5 + 4 / 12, "feet"),
  16059. weight: math.unit(220, "lb"),
  16060. name: "Back",
  16061. image: {
  16062. source: "./media/characters/memory/back.svg",
  16063. extra: 3641 / 3545,
  16064. bottom: 0.025
  16065. }
  16066. },
  16067. frontSkirt: {
  16068. height: math.unit(5 + 4 / 12, "feet"),
  16069. weight: math.unit(220, "lb"),
  16070. name: "Front (Skirt)",
  16071. image: {
  16072. source: "./media/characters/memory/front-skirt.svg",
  16073. extra: 3641 / 3545,
  16074. bottom: 0.03
  16075. }
  16076. },
  16077. frontDress: {
  16078. height: math.unit(5 + 4 / 12, "feet"),
  16079. weight: math.unit(220, "lb"),
  16080. name: "Front (Dress)",
  16081. image: {
  16082. source: "./media/characters/memory/front-dress.svg",
  16083. extra: 3641 / 3545,
  16084. bottom: 0.03
  16085. }
  16086. },
  16087. },
  16088. [
  16089. {
  16090. name: "Micro",
  16091. height: math.unit(6, "inches"),
  16092. default: true
  16093. },
  16094. {
  16095. name: "Normal",
  16096. height: math.unit(5 + 4 / 12, "feet")
  16097. },
  16098. ]
  16099. ))
  16100. characterMakers.push(() => makeCharacter(
  16101. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16102. {
  16103. front: {
  16104. height: math.unit(4 + 11 / 12, "feet"),
  16105. weight: math.unit(100, "lb"),
  16106. name: "Front",
  16107. image: {
  16108. source: "./media/characters/luno/front.svg",
  16109. extra: 1535 / 1487,
  16110. bottom: 0.03
  16111. }
  16112. },
  16113. },
  16114. [
  16115. {
  16116. name: "Micro",
  16117. height: math.unit(3, "inches")
  16118. },
  16119. {
  16120. name: "Normal",
  16121. height: math.unit(4 + 11 / 12, "feet"),
  16122. default: true
  16123. },
  16124. {
  16125. name: "Macro",
  16126. height: math.unit(300, "feet")
  16127. },
  16128. {
  16129. name: "Megamacro",
  16130. height: math.unit(700, "miles")
  16131. },
  16132. ]
  16133. ))
  16134. characterMakers.push(() => makeCharacter(
  16135. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16136. {
  16137. front: {
  16138. height: math.unit(6 + 2 / 12, "feet"),
  16139. weight: math.unit(170, "lb"),
  16140. name: "Front",
  16141. image: {
  16142. source: "./media/characters/jamesy/front.svg",
  16143. extra: 440 / 382,
  16144. bottom: 0.005
  16145. }
  16146. },
  16147. },
  16148. [
  16149. {
  16150. name: "Micro",
  16151. height: math.unit(3, "inches")
  16152. },
  16153. {
  16154. name: "Normal",
  16155. height: math.unit(6 + 2 / 12, "feet"),
  16156. default: true
  16157. },
  16158. {
  16159. name: "Macro",
  16160. height: math.unit(300, "feet")
  16161. },
  16162. {
  16163. name: "Megamacro",
  16164. height: math.unit(700, "miles")
  16165. },
  16166. ]
  16167. ))
  16168. characterMakers.push(() => makeCharacter(
  16169. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16170. {
  16171. front: {
  16172. height: math.unit(6, "feet"),
  16173. weight: math.unit(160, "lb"),
  16174. name: "Front",
  16175. image: {
  16176. source: "./media/characters/mark/front.svg",
  16177. extra: 3300 / 3100,
  16178. bottom: 136.42 / 3440.47
  16179. }
  16180. },
  16181. },
  16182. [
  16183. {
  16184. name: "Macro",
  16185. height: math.unit(120, "meters")
  16186. },
  16187. {
  16188. name: "Bigger Macro",
  16189. height: math.unit(350, "meters")
  16190. },
  16191. {
  16192. name: "Megamacro",
  16193. height: math.unit(8, "km"),
  16194. default: true
  16195. },
  16196. {
  16197. name: "Continental",
  16198. height: math.unit(4550, "km")
  16199. },
  16200. {
  16201. name: "Planetary",
  16202. height: math.unit(65000, "km")
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(6, "feet"),
  16211. weight: math.unit(400, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/mac/front.svg",
  16215. extra: 1048 / 987.7,
  16216. bottom: 60 / 1107.6,
  16217. }
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Macro",
  16223. height: math.unit(500, "feet"),
  16224. default: true
  16225. },
  16226. ]
  16227. ))
  16228. characterMakers.push(() => makeCharacter(
  16229. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16230. {
  16231. front: {
  16232. height: math.unit(5 + 2 / 12, "feet"),
  16233. weight: math.unit(190, "lb"),
  16234. name: "Front",
  16235. image: {
  16236. source: "./media/characters/bari/front.svg",
  16237. extra: 3156 / 2880,
  16238. bottom: 0.03
  16239. }
  16240. },
  16241. back: {
  16242. height: math.unit(5 + 2 / 12, "feet"),
  16243. weight: math.unit(190, "lb"),
  16244. name: "Back",
  16245. image: {
  16246. source: "./media/characters/bari/back.svg",
  16247. extra: 3260 / 2834,
  16248. bottom: 0.025
  16249. }
  16250. },
  16251. frontPlush: {
  16252. height: math.unit(5 + 2 / 12, "feet"),
  16253. weight: math.unit(190, "lb"),
  16254. name: "Front (Plush)",
  16255. image: {
  16256. source: "./media/characters/bari/front-plush.svg",
  16257. extra: 1112 / 1061,
  16258. bottom: 0.002
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Micro",
  16265. height: math.unit(3, "inches")
  16266. },
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(5 + 2 / 12, "feet"),
  16270. default: true
  16271. },
  16272. {
  16273. name: "Macro",
  16274. height: math.unit(20, "feet")
  16275. },
  16276. ]
  16277. ))
  16278. characterMakers.push(() => makeCharacter(
  16279. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16280. {
  16281. front: {
  16282. height: math.unit(6 + 1 / 12, "feet"),
  16283. weight: math.unit(275, "lb"),
  16284. name: "Front",
  16285. image: {
  16286. source: "./media/characters/hunter-misha-raven/front.svg"
  16287. }
  16288. },
  16289. },
  16290. [
  16291. {
  16292. name: "Mortal",
  16293. height: math.unit(6 + 1 / 12, "feet")
  16294. },
  16295. {
  16296. name: "Divine",
  16297. height: math.unit(1.12134e34, "parsecs"),
  16298. default: true
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16304. {
  16305. front: {
  16306. height: math.unit(6 + 3 / 12, "feet"),
  16307. weight: math.unit(220, "lb"),
  16308. name: "Front",
  16309. image: {
  16310. source: "./media/characters/max-calore/front.svg",
  16311. extra: 1700 / 1648,
  16312. bottom: 0.01
  16313. }
  16314. },
  16315. back: {
  16316. height: math.unit(6 + 3 / 12, "feet"),
  16317. weight: math.unit(220, "lb"),
  16318. name: "Back",
  16319. image: {
  16320. source: "./media/characters/max-calore/back.svg",
  16321. extra: 1700 / 1648,
  16322. bottom: 0.01
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Normal",
  16329. height: math.unit(6 + 3 / 12, "feet"),
  16330. default: true
  16331. },
  16332. ]
  16333. ))
  16334. characterMakers.push(() => makeCharacter(
  16335. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16336. {
  16337. side: {
  16338. height: math.unit(2 + 8 / 12, "feet"),
  16339. weight: math.unit(99, "lb"),
  16340. name: "Side",
  16341. image: {
  16342. source: "./media/characters/aspen/side.svg",
  16343. extra: 152 / 138,
  16344. bottom: 0.032
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Normal",
  16351. height: math.unit(2 + 8 / 12, "feet"),
  16352. default: true
  16353. },
  16354. ]
  16355. ))
  16356. characterMakers.push(() => makeCharacter(
  16357. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16358. {
  16359. side: {
  16360. height: math.unit(3 + 2 / 12, "feet"),
  16361. weight: math.unit(224, "lb"),
  16362. name: "Side",
  16363. image: {
  16364. source: "./media/characters/sheila-feral-wolf/side.svg",
  16365. extra: 179 / 166,
  16366. bottom: 0.03
  16367. }
  16368. },
  16369. },
  16370. [
  16371. {
  16372. name: "Normal",
  16373. height: math.unit(3 + 2 / 12, "feet"),
  16374. default: true
  16375. },
  16376. ]
  16377. ))
  16378. characterMakers.push(() => makeCharacter(
  16379. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16380. {
  16381. side: {
  16382. height: math.unit(1 + 9 / 12, "feet"),
  16383. weight: math.unit(38, "lb"),
  16384. name: "Side",
  16385. image: {
  16386. source: "./media/characters/michelle/side.svg",
  16387. extra: 147 / 136.7,
  16388. bottom: 0.03
  16389. }
  16390. },
  16391. },
  16392. [
  16393. {
  16394. name: "Normal",
  16395. height: math.unit(1 + 9 / 12, "feet"),
  16396. default: true
  16397. },
  16398. ]
  16399. ))
  16400. characterMakers.push(() => makeCharacter(
  16401. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16402. {
  16403. front: {
  16404. height: math.unit(1 + 1 / 12, "feet"),
  16405. weight: math.unit(18, "lb"),
  16406. name: "Front",
  16407. image: {
  16408. source: "./media/characters/nino/front.svg"
  16409. }
  16410. },
  16411. },
  16412. [
  16413. {
  16414. name: "Normal",
  16415. height: math.unit(1 + 1 / 12, "feet"),
  16416. default: true
  16417. },
  16418. ]
  16419. ))
  16420. characterMakers.push(() => makeCharacter(
  16421. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16422. {
  16423. front: {
  16424. height: math.unit(1, "feet"),
  16425. weight: math.unit(16, "lb"),
  16426. name: "Front",
  16427. image: {
  16428. source: "./media/characters/viola/front.svg"
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(1, "feet"),
  16436. default: true
  16437. },
  16438. ]
  16439. ))
  16440. characterMakers.push(() => makeCharacter(
  16441. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16442. {
  16443. front: {
  16444. height: math.unit(6 + 5 / 12, "feet"),
  16445. weight: math.unit(580, "lb"),
  16446. name: "Front",
  16447. image: {
  16448. source: "./media/characters/atlas/front.svg",
  16449. extra: 298.5 / 290,
  16450. bottom: 0.015
  16451. }
  16452. },
  16453. },
  16454. [
  16455. {
  16456. name: "Normal",
  16457. height: math.unit(6 + 5 / 12, "feet"),
  16458. default: true
  16459. },
  16460. ]
  16461. ))
  16462. characterMakers.push(() => makeCharacter(
  16463. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16464. {
  16465. side: {
  16466. height: math.unit(1 + 10 / 12, "feet"),
  16467. weight: math.unit(25, "lb"),
  16468. name: "Side",
  16469. image: {
  16470. source: "./media/characters/davy/side.svg",
  16471. extra: 200 / 170,
  16472. bottom: 0.01
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(1 + 10 / 12, "feet"),
  16480. default: true
  16481. },
  16482. ]
  16483. ))
  16484. characterMakers.push(() => makeCharacter(
  16485. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16486. {
  16487. side: {
  16488. height: math.unit(4 + 8 / 12, "feet"),
  16489. weight: math.unit(166, "lb"),
  16490. name: "Side",
  16491. image: {
  16492. source: "./media/characters/fiona/side.svg",
  16493. extra: 232 / 220,
  16494. bottom: 0.03
  16495. }
  16496. },
  16497. },
  16498. [
  16499. {
  16500. name: "Normal",
  16501. height: math.unit(4 + 8 / 12, "feet"),
  16502. default: true
  16503. },
  16504. ]
  16505. ))
  16506. characterMakers.push(() => makeCharacter(
  16507. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16508. {
  16509. front: {
  16510. height: math.unit(2, "feet"),
  16511. weight: math.unit(62, "lb"),
  16512. name: "Front",
  16513. image: {
  16514. source: "./media/characters/lyla/front.svg",
  16515. bottom: 0.1
  16516. }
  16517. },
  16518. },
  16519. [
  16520. {
  16521. name: "Normal",
  16522. height: math.unit(2, "feet"),
  16523. default: true
  16524. },
  16525. ]
  16526. ))
  16527. characterMakers.push(() => makeCharacter(
  16528. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16529. {
  16530. side: {
  16531. height: math.unit(1.8, "feet"),
  16532. weight: math.unit(44, "lb"),
  16533. name: "Side",
  16534. image: {
  16535. source: "./media/characters/perseus/side.svg",
  16536. bottom: 0.21
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Normal",
  16543. height: math.unit(1.8, "feet"),
  16544. default: true
  16545. },
  16546. ]
  16547. ))
  16548. characterMakers.push(() => makeCharacter(
  16549. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16550. {
  16551. side: {
  16552. height: math.unit(4 + 2 / 12, "feet"),
  16553. weight: math.unit(20, "lb"),
  16554. name: "Side",
  16555. image: {
  16556. source: "./media/characters/remus/side.svg"
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(4 + 2 / 12, "feet"),
  16564. default: true
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16570. {
  16571. front: {
  16572. height: math.unit(4 + 11 / 12, "feet"),
  16573. weight: math.unit(114, "lb"),
  16574. name: "Front",
  16575. image: {
  16576. source: "./media/characters/raf/front.svg",
  16577. bottom: 20.5 / 1863
  16578. }
  16579. },
  16580. side: {
  16581. height: math.unit(4 + 11 / 12, "feet"),
  16582. weight: math.unit(114, "lb"),
  16583. name: "Side",
  16584. image: {
  16585. source: "./media/characters/raf/side.svg",
  16586. bottom: 22 / 1822
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Micro",
  16593. height: math.unit(2, "inches")
  16594. },
  16595. {
  16596. name: "Normal",
  16597. height: math.unit(4 + 11 / 12, "feet"),
  16598. default: true
  16599. },
  16600. {
  16601. name: "Macro",
  16602. height: math.unit(70, "feet")
  16603. },
  16604. ]
  16605. ))
  16606. characterMakers.push(() => makeCharacter(
  16607. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16608. {
  16609. front: {
  16610. height: math.unit(1.5, "meters"),
  16611. weight: math.unit(68, "kg"),
  16612. name: "Front",
  16613. image: {
  16614. source: "./media/characters/liam-einarr/front.svg",
  16615. extra: 2822 / 2666
  16616. }
  16617. },
  16618. back: {
  16619. height: math.unit(1.5, "meters"),
  16620. weight: math.unit(68, "kg"),
  16621. name: "Back",
  16622. image: {
  16623. source: "./media/characters/liam-einarr/back.svg",
  16624. extra: 2822 / 2666,
  16625. bottom: 0.015
  16626. }
  16627. },
  16628. },
  16629. [
  16630. {
  16631. name: "Normal",
  16632. height: math.unit(1.5, "meters"),
  16633. default: true
  16634. },
  16635. {
  16636. name: "Macro",
  16637. height: math.unit(150, "meters")
  16638. },
  16639. {
  16640. name: "Megamacro",
  16641. height: math.unit(35, "km")
  16642. },
  16643. ]
  16644. ))
  16645. characterMakers.push(() => makeCharacter(
  16646. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16647. {
  16648. front: {
  16649. height: math.unit(6, "feet"),
  16650. weight: math.unit(75, "kg"),
  16651. name: "Front",
  16652. image: {
  16653. source: "./media/characters/linda/front.svg",
  16654. extra: 930 / 874,
  16655. bottom: 0.004
  16656. }
  16657. },
  16658. },
  16659. [
  16660. {
  16661. name: "Normal",
  16662. height: math.unit(6, "feet"),
  16663. default: true
  16664. },
  16665. ]
  16666. ))
  16667. characterMakers.push(() => makeCharacter(
  16668. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16669. {
  16670. front: {
  16671. height: math.unit(6 + 8 / 12, "feet"),
  16672. weight: math.unit(220, "lb"),
  16673. name: "Front",
  16674. image: {
  16675. source: "./media/characters/caylex/front.svg",
  16676. extra: 821 / 772,
  16677. bottom: 0.07
  16678. }
  16679. },
  16680. back: {
  16681. height: math.unit(6 + 8 / 12, "feet"),
  16682. weight: math.unit(220, "lb"),
  16683. name: "Back",
  16684. image: {
  16685. source: "./media/characters/caylex/back.svg",
  16686. extra: 821 / 772,
  16687. bottom: 0.022
  16688. }
  16689. },
  16690. hand: {
  16691. height: math.unit(1.25, "feet"),
  16692. name: "Hand",
  16693. image: {
  16694. source: "./media/characters/caylex/hand.svg"
  16695. }
  16696. },
  16697. foot: {
  16698. height: math.unit(1.6, "feet"),
  16699. name: "Foot",
  16700. image: {
  16701. source: "./media/characters/caylex/foot.svg"
  16702. }
  16703. },
  16704. armored: {
  16705. height: math.unit(6 + 8 / 12, "feet"),
  16706. weight: math.unit(250, "lb"),
  16707. name: "Armored",
  16708. image: {
  16709. source: "./media/characters/caylex/armored.svg",
  16710. extra: 1420 / 1310,
  16711. bottom: 0.045
  16712. }
  16713. },
  16714. },
  16715. [
  16716. {
  16717. name: "Normal",
  16718. height: math.unit(6 + 8 / 12, "feet"),
  16719. default: true
  16720. },
  16721. {
  16722. name: "Normal+",
  16723. height: math.unit(12, "feet")
  16724. },
  16725. ]
  16726. ))
  16727. characterMakers.push(() => makeCharacter(
  16728. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16729. {
  16730. front: {
  16731. height: math.unit(7 + 6 / 12, "feet"),
  16732. weight: math.unit(288, "lb"),
  16733. name: "Front",
  16734. image: {
  16735. source: "./media/characters/alana/front.svg",
  16736. extra: 679 / 653,
  16737. bottom: 22.5 / 701
  16738. }
  16739. },
  16740. },
  16741. [
  16742. {
  16743. name: "Normal",
  16744. height: math.unit(7 + 6 / 12, "feet")
  16745. },
  16746. {
  16747. name: "Large",
  16748. height: math.unit(50, "feet")
  16749. },
  16750. {
  16751. name: "Macro",
  16752. height: math.unit(100, "feet"),
  16753. default: true
  16754. },
  16755. {
  16756. name: "Macro+",
  16757. height: math.unit(200, "feet")
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16763. {
  16764. front: {
  16765. height: math.unit(6 + 1 / 12, "feet"),
  16766. weight: math.unit(210, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/hasani/front.svg",
  16770. extra: 244 / 232,
  16771. bottom: 0.01
  16772. }
  16773. },
  16774. back: {
  16775. height: math.unit(6 + 1 / 12, "feet"),
  16776. weight: math.unit(210, "lb"),
  16777. name: "Back",
  16778. image: {
  16779. source: "./media/characters/hasani/back.svg",
  16780. extra: 244 / 232,
  16781. bottom: 0.01
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Normal",
  16788. height: math.unit(6 + 1 / 12, "feet")
  16789. },
  16790. {
  16791. name: "Macro",
  16792. height: math.unit(175, "feet"),
  16793. default: true
  16794. },
  16795. ]
  16796. ))
  16797. characterMakers.push(() => makeCharacter(
  16798. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16799. {
  16800. front: {
  16801. height: math.unit(1.82, "meters"),
  16802. weight: math.unit(140, "lb"),
  16803. name: "Front",
  16804. image: {
  16805. source: "./media/characters/nita/front.svg",
  16806. extra: 2473 / 2363,
  16807. bottom: 0.01
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(1.82, "m")
  16815. },
  16816. {
  16817. name: "Macro",
  16818. height: math.unit(300, "m")
  16819. },
  16820. {
  16821. name: "Mistake Canon",
  16822. height: math.unit(0.5, "miles"),
  16823. default: true
  16824. },
  16825. {
  16826. name: "Big Mistake",
  16827. height: math.unit(13, "miles")
  16828. },
  16829. {
  16830. name: "Playing God",
  16831. height: math.unit(2450, "miles")
  16832. },
  16833. ]
  16834. ))
  16835. characterMakers.push(() => makeCharacter(
  16836. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16837. {
  16838. front: {
  16839. height: math.unit(4, "feet"),
  16840. weight: math.unit(120, "lb"),
  16841. name: "Front",
  16842. image: {
  16843. source: "./media/characters/shiriko/front.svg",
  16844. extra: 195 / 188
  16845. }
  16846. },
  16847. },
  16848. [
  16849. {
  16850. name: "Normal",
  16851. height: math.unit(4, "feet"),
  16852. default: true
  16853. },
  16854. ]
  16855. ))
  16856. characterMakers.push(() => makeCharacter(
  16857. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16858. {
  16859. front: {
  16860. height: math.unit(6, "feet"),
  16861. name: "front",
  16862. image: {
  16863. source: "./media/characters/deja/front.svg",
  16864. extra: 926 / 840,
  16865. bottom: 0.07
  16866. }
  16867. },
  16868. },
  16869. [
  16870. {
  16871. name: "Planck Length",
  16872. height: math.unit(1.6e-35, "meters")
  16873. },
  16874. {
  16875. name: "Normal",
  16876. height: math.unit(30.48, "meters"),
  16877. default: true
  16878. },
  16879. {
  16880. name: "Universal",
  16881. height: math.unit(8.8e26, "meters")
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16887. {
  16888. side: {
  16889. height: math.unit(8, "feet"),
  16890. weight: math.unit(6300, "lb"),
  16891. name: "Side",
  16892. image: {
  16893. source: "./media/characters/anima/side.svg",
  16894. bottom: 0.035
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Normal",
  16901. height: math.unit(8, "feet"),
  16902. default: true
  16903. },
  16904. ]
  16905. ))
  16906. characterMakers.push(() => makeCharacter(
  16907. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16908. {
  16909. front: {
  16910. height: math.unit(8, "feet"),
  16911. weight: math.unit(350, "lb"),
  16912. name: "Front",
  16913. image: {
  16914. source: "./media/characters/bianca/front.svg",
  16915. extra: 234 / 225,
  16916. bottom: 0.03
  16917. }
  16918. },
  16919. },
  16920. [
  16921. {
  16922. name: "Normal",
  16923. height: math.unit(8, "feet"),
  16924. default: true
  16925. },
  16926. ]
  16927. ))
  16928. characterMakers.push(() => makeCharacter(
  16929. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16930. {
  16931. front: {
  16932. height: math.unit(6, "feet"),
  16933. weight: math.unit(150, "lb"),
  16934. name: "Front",
  16935. image: {
  16936. source: "./media/characters/adinia/front.svg",
  16937. extra: 1845 / 1672,
  16938. bottom: 0.02
  16939. }
  16940. },
  16941. back: {
  16942. height: math.unit(6, "feet"),
  16943. weight: math.unit(150, "lb"),
  16944. name: "Back",
  16945. image: {
  16946. source: "./media/characters/adinia/back.svg",
  16947. extra: 1845 / 1672,
  16948. bottom: 0.002
  16949. }
  16950. },
  16951. },
  16952. [
  16953. {
  16954. name: "Normal",
  16955. height: math.unit(11 + 5 / 12, "feet"),
  16956. default: true
  16957. },
  16958. ]
  16959. ))
  16960. characterMakers.push(() => makeCharacter(
  16961. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16962. {
  16963. front: {
  16964. height: math.unit(3, "meters"),
  16965. weight: math.unit(200, "kg"),
  16966. name: "Front",
  16967. image: {
  16968. source: "./media/characters/lykasa/front.svg",
  16969. extra: 1076 / 976,
  16970. bottom: 0.06
  16971. }
  16972. },
  16973. },
  16974. [
  16975. {
  16976. name: "Normal",
  16977. height: math.unit(3, "meters")
  16978. },
  16979. {
  16980. name: "Kaiju",
  16981. height: math.unit(120, "meters"),
  16982. default: true
  16983. },
  16984. {
  16985. name: "Mega Kaiju",
  16986. height: math.unit(240, "km")
  16987. },
  16988. {
  16989. name: "Giga Kaiju",
  16990. height: math.unit(400, "megameters")
  16991. },
  16992. {
  16993. name: "Tera Kaiju",
  16994. height: math.unit(800, "gigameters")
  16995. },
  16996. {
  16997. name: "Kaiju Dragon Goddess",
  16998. height: math.unit(26, "zettaparsecs")
  16999. },
  17000. ]
  17001. ))
  17002. characterMakers.push(() => makeCharacter(
  17003. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17004. {
  17005. side: {
  17006. height: math.unit(283 / 124 * 6, "feet"),
  17007. weight: math.unit(35000, "lb"),
  17008. name: "Side",
  17009. image: {
  17010. source: "./media/characters/malfaren/side.svg",
  17011. extra: 2500 / 1010,
  17012. bottom: 0.01
  17013. }
  17014. },
  17015. front: {
  17016. height: math.unit(22.36, "feet"),
  17017. weight: math.unit(35000, "lb"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/malfaren/front.svg",
  17021. extra: 1631 / 1476,
  17022. bottom: 0.01
  17023. }
  17024. },
  17025. maw: {
  17026. height: math.unit(6.9, "feet"),
  17027. name: "Maw",
  17028. image: {
  17029. source: "./media/characters/malfaren/maw.svg"
  17030. }
  17031. },
  17032. },
  17033. [
  17034. {
  17035. name: "Big",
  17036. height: math.unit(283 / 162 * 6, "feet"),
  17037. },
  17038. {
  17039. name: "Bigger",
  17040. height: math.unit(283 / 124 * 6, "feet")
  17041. },
  17042. {
  17043. name: "Massive",
  17044. height: math.unit(283 / 92 * 6, "feet"),
  17045. default: true
  17046. },
  17047. {
  17048. name: "👀💦",
  17049. height: math.unit(283 / 73 * 6, "feet"),
  17050. },
  17051. ]
  17052. ))
  17053. characterMakers.push(() => makeCharacter(
  17054. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17055. {
  17056. front: {
  17057. height: math.unit(1.7, "m"),
  17058. weight: math.unit(70, "kg"),
  17059. name: "Front",
  17060. image: {
  17061. source: "./media/characters/kernel/front.svg",
  17062. extra: 222 / 210,
  17063. bottom: 0.007
  17064. }
  17065. },
  17066. },
  17067. [
  17068. {
  17069. name: "Nano",
  17070. height: math.unit(17, "micrometers")
  17071. },
  17072. {
  17073. name: "Micro",
  17074. height: math.unit(1.7, "mm")
  17075. },
  17076. {
  17077. name: "Small",
  17078. height: math.unit(1.7, "cm")
  17079. },
  17080. {
  17081. name: "Normal",
  17082. height: math.unit(1.7, "m"),
  17083. default: true
  17084. },
  17085. ]
  17086. ))
  17087. characterMakers.push(() => makeCharacter(
  17088. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17089. {
  17090. front: {
  17091. height: math.unit(1.75, "meters"),
  17092. weight: math.unit(65, "kg"),
  17093. name: "Front",
  17094. image: {
  17095. source: "./media/characters/jayne-folest/front.svg",
  17096. extra: 2115 / 2007,
  17097. bottom: 0.02
  17098. }
  17099. },
  17100. back: {
  17101. height: math.unit(1.75, "meters"),
  17102. weight: math.unit(65, "kg"),
  17103. name: "Back",
  17104. image: {
  17105. source: "./media/characters/jayne-folest/back.svg",
  17106. extra: 2115 / 2007,
  17107. bottom: 0.005
  17108. }
  17109. },
  17110. frontClothed: {
  17111. height: math.unit(1.75, "meters"),
  17112. weight: math.unit(65, "kg"),
  17113. name: "Front (Clothed)",
  17114. image: {
  17115. source: "./media/characters/jayne-folest/front-clothed.svg",
  17116. extra: 2115 / 2007,
  17117. bottom: 0.035
  17118. }
  17119. },
  17120. hand: {
  17121. height: math.unit(1 / 1.260, "feet"),
  17122. name: "Hand",
  17123. image: {
  17124. source: "./media/characters/jayne-folest/hand.svg"
  17125. }
  17126. },
  17127. foot: {
  17128. height: math.unit(1 / 0.918, "feet"),
  17129. name: "Foot",
  17130. image: {
  17131. source: "./media/characters/jayne-folest/foot.svg"
  17132. }
  17133. },
  17134. },
  17135. [
  17136. {
  17137. name: "Micro",
  17138. height: math.unit(4, "cm")
  17139. },
  17140. {
  17141. name: "Normal",
  17142. height: math.unit(1.75, "meters")
  17143. },
  17144. {
  17145. name: "Macro",
  17146. height: math.unit(47.5, "meters"),
  17147. default: true
  17148. },
  17149. ]
  17150. ))
  17151. characterMakers.push(() => makeCharacter(
  17152. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17153. {
  17154. front: {
  17155. height: math.unit(180, "cm"),
  17156. weight: math.unit(70, "kg"),
  17157. name: "Front",
  17158. image: {
  17159. source: "./media/characters/algier/front.svg",
  17160. extra: 596 / 572,
  17161. bottom: 0.04
  17162. }
  17163. },
  17164. back: {
  17165. height: math.unit(180, "cm"),
  17166. weight: math.unit(70, "kg"),
  17167. name: "Back",
  17168. image: {
  17169. source: "./media/characters/algier/back.svg",
  17170. extra: 596 / 572,
  17171. bottom: 0.025
  17172. }
  17173. },
  17174. frontdressed: {
  17175. height: math.unit(180, "cm"),
  17176. weight: math.unit(150, "kg"),
  17177. name: "Front-dressed",
  17178. image: {
  17179. source: "./media/characters/algier/front-dressed.svg",
  17180. extra: 596 / 572,
  17181. bottom: 0.038
  17182. }
  17183. },
  17184. },
  17185. [
  17186. {
  17187. name: "Micro",
  17188. height: math.unit(5, "cm")
  17189. },
  17190. {
  17191. name: "Normal",
  17192. height: math.unit(180, "cm"),
  17193. default: true
  17194. },
  17195. {
  17196. name: "Macro",
  17197. height: math.unit(64, "m")
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17203. {
  17204. upright: {
  17205. height: math.unit(7, "feet"),
  17206. weight: math.unit(300, "lb"),
  17207. name: "Upright",
  17208. image: {
  17209. source: "./media/characters/pretzel/upright.svg",
  17210. extra: 534 / 522,
  17211. bottom: 0.065
  17212. }
  17213. },
  17214. sprawling: {
  17215. height: math.unit(3.75, "feet"),
  17216. weight: math.unit(300, "lb"),
  17217. name: "Sprawling",
  17218. image: {
  17219. source: "./media/characters/pretzel/sprawling.svg",
  17220. extra: 314 / 281,
  17221. bottom: 0.1
  17222. }
  17223. },
  17224. tongue: {
  17225. height: math.unit(2, "feet"),
  17226. name: "Tongue",
  17227. image: {
  17228. source: "./media/characters/pretzel/tongue.svg"
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(7, "feet"),
  17236. default: true
  17237. },
  17238. {
  17239. name: "Oversized",
  17240. height: math.unit(15, "feet")
  17241. },
  17242. {
  17243. name: "Huge",
  17244. height: math.unit(30, "feet")
  17245. },
  17246. {
  17247. name: "Macro",
  17248. height: math.unit(250, "feet")
  17249. },
  17250. ]
  17251. ))
  17252. characterMakers.push(() => makeCharacter(
  17253. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17254. {
  17255. sideFront: {
  17256. height: math.unit(5 + 2 / 12, "feet"),
  17257. weight: math.unit(120, "lb"),
  17258. name: "Front Side",
  17259. image: {
  17260. source: "./media/characters/roxi/side-front.svg",
  17261. extra: 2924 / 2717,
  17262. bottom: 0.08
  17263. }
  17264. },
  17265. sideBack: {
  17266. height: math.unit(5 + 2 / 12, "feet"),
  17267. weight: math.unit(120, "lb"),
  17268. name: "Back Side",
  17269. image: {
  17270. source: "./media/characters/roxi/side-back.svg",
  17271. extra: 2904 / 2693,
  17272. bottom: 0.06
  17273. }
  17274. },
  17275. front: {
  17276. height: math.unit(5 + 2 / 12, "feet"),
  17277. weight: math.unit(120, "lb"),
  17278. name: "Front",
  17279. image: {
  17280. source: "./media/characters/roxi/front.svg",
  17281. extra: 2028 / 1907,
  17282. bottom: 0.01
  17283. }
  17284. },
  17285. frontAlt: {
  17286. height: math.unit(5 + 2 / 12, "feet"),
  17287. weight: math.unit(120, "lb"),
  17288. name: "Front (Alt)",
  17289. image: {
  17290. source: "./media/characters/roxi/front-alt.svg",
  17291. extra: 1828 / 1798,
  17292. bottom: 0.01
  17293. }
  17294. },
  17295. sitting: {
  17296. height: math.unit(2.8, "feet"),
  17297. weight: math.unit(120, "lb"),
  17298. name: "Sitting",
  17299. image: {
  17300. source: "./media/characters/roxi/sitting.svg",
  17301. extra: 2660 / 2462,
  17302. bottom: 0.1
  17303. }
  17304. },
  17305. },
  17306. [
  17307. {
  17308. name: "Normal",
  17309. height: math.unit(5 + 2 / 12, "feet"),
  17310. default: true
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17316. {
  17317. side: {
  17318. height: math.unit(55, "feet"),
  17319. weight: math.unit(153, "tons"),
  17320. name: "Side",
  17321. image: {
  17322. source: "./media/characters/shadow/side.svg",
  17323. extra: 701 / 628,
  17324. bottom: 0.02
  17325. }
  17326. },
  17327. flying: {
  17328. height: math.unit(145, "feet"),
  17329. weight: math.unit(153, "tons"),
  17330. name: "Flying",
  17331. image: {
  17332. source: "./media/characters/shadow/flying.svg"
  17333. }
  17334. },
  17335. },
  17336. [
  17337. {
  17338. name: "Normal",
  17339. height: math.unit(55, "feet"),
  17340. default: true
  17341. },
  17342. ]
  17343. ))
  17344. characterMakers.push(() => makeCharacter(
  17345. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17346. {
  17347. front: {
  17348. height: math.unit(6, "feet"),
  17349. weight: math.unit(200, "lb"),
  17350. name: "Front",
  17351. image: {
  17352. source: "./media/characters/marcie/front.svg",
  17353. extra: 960 / 876,
  17354. bottom: 58 / 1017.87
  17355. }
  17356. },
  17357. },
  17358. [
  17359. {
  17360. name: "Macro",
  17361. height: math.unit(1, "mile"),
  17362. default: true
  17363. },
  17364. ]
  17365. ))
  17366. characterMakers.push(() => makeCharacter(
  17367. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17368. {
  17369. front: {
  17370. height: math.unit(7, "feet"),
  17371. weight: math.unit(200, "lb"),
  17372. name: "Front",
  17373. image: {
  17374. source: "./media/characters/kachina/front.svg",
  17375. extra: 1290.68 / 1119,
  17376. bottom: 36.5 / 1327.18
  17377. }
  17378. },
  17379. },
  17380. [
  17381. {
  17382. name: "Normal",
  17383. height: math.unit(7, "feet"),
  17384. default: true
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17390. {
  17391. looking: {
  17392. height: math.unit(2, "meters"),
  17393. weight: math.unit(300, "kg"),
  17394. name: "Looking",
  17395. image: {
  17396. source: "./media/characters/kash/looking.svg",
  17397. extra: 474 / 344,
  17398. bottom: 0.03
  17399. }
  17400. },
  17401. side: {
  17402. height: math.unit(2, "meters"),
  17403. weight: math.unit(300, "kg"),
  17404. name: "Side",
  17405. image: {
  17406. source: "./media/characters/kash/side.svg",
  17407. extra: 302 / 251,
  17408. bottom: 0.03
  17409. }
  17410. },
  17411. front: {
  17412. height: math.unit(2, "meters"),
  17413. weight: math.unit(300, "kg"),
  17414. name: "Front",
  17415. image: {
  17416. source: "./media/characters/kash/front.svg",
  17417. extra: 495 / 360,
  17418. bottom: 0.015
  17419. }
  17420. },
  17421. },
  17422. [
  17423. {
  17424. name: "Normal",
  17425. height: math.unit(2, "meters"),
  17426. default: true
  17427. },
  17428. {
  17429. name: "Big",
  17430. height: math.unit(3, "meters")
  17431. },
  17432. {
  17433. name: "Large",
  17434. height: math.unit(5, "meters")
  17435. },
  17436. ]
  17437. ))
  17438. characterMakers.push(() => makeCharacter(
  17439. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17440. {
  17441. feeding: {
  17442. height: math.unit(6.7, "feet"),
  17443. weight: math.unit(350, "lb"),
  17444. name: "Feeding",
  17445. image: {
  17446. source: "./media/characters/lalim/feeding.svg",
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(6.7, "feet"),
  17454. default: true
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17460. {
  17461. front: {
  17462. height: math.unit(9.5, "feet"),
  17463. weight: math.unit(600, "lb"),
  17464. name: "Front",
  17465. image: {
  17466. source: "./media/characters/de'vout/front.svg",
  17467. extra: 1443 / 1328,
  17468. bottom: 0.025
  17469. }
  17470. },
  17471. back: {
  17472. height: math.unit(9.5, "feet"),
  17473. weight: math.unit(600, "lb"),
  17474. name: "Back",
  17475. image: {
  17476. source: "./media/characters/de'vout/back.svg",
  17477. extra: 1443 / 1328
  17478. }
  17479. },
  17480. frontDressed: {
  17481. height: math.unit(9.5, "feet"),
  17482. weight: math.unit(600, "lb"),
  17483. name: "Front (Dressed",
  17484. image: {
  17485. source: "./media/characters/de'vout/front-dressed.svg",
  17486. extra: 1443 / 1328,
  17487. bottom: 0.025
  17488. }
  17489. },
  17490. backDressed: {
  17491. height: math.unit(9.5, "feet"),
  17492. weight: math.unit(600, "lb"),
  17493. name: "Back (Dressed",
  17494. image: {
  17495. source: "./media/characters/de'vout/back-dressed.svg",
  17496. extra: 1443 / 1328
  17497. }
  17498. },
  17499. },
  17500. [
  17501. {
  17502. name: "Normal",
  17503. height: math.unit(9.5, "feet"),
  17504. default: true
  17505. },
  17506. ]
  17507. ))
  17508. characterMakers.push(() => makeCharacter(
  17509. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17510. {
  17511. front: {
  17512. height: math.unit(8, "feet"),
  17513. weight: math.unit(225, "lb"),
  17514. name: "Front",
  17515. image: {
  17516. source: "./media/characters/talana/front.svg",
  17517. extra: 1410 / 1300,
  17518. bottom: 0.015
  17519. }
  17520. },
  17521. frontDressed: {
  17522. height: math.unit(8, "feet"),
  17523. weight: math.unit(225, "lb"),
  17524. name: "Front (Dressed",
  17525. image: {
  17526. source: "./media/characters/talana/front-dressed.svg",
  17527. extra: 1410 / 1300,
  17528. bottom: 0.015
  17529. }
  17530. },
  17531. },
  17532. [
  17533. {
  17534. name: "Normal",
  17535. height: math.unit(8, "feet"),
  17536. default: true
  17537. },
  17538. ]
  17539. ))
  17540. characterMakers.push(() => makeCharacter(
  17541. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17542. {
  17543. side: {
  17544. height: math.unit(7.2, "feet"),
  17545. weight: math.unit(150, "lb"),
  17546. name: "Side",
  17547. image: {
  17548. source: "./media/characters/xeauvok/side.svg",
  17549. extra: 1975 / 1523,
  17550. bottom: 0.07
  17551. }
  17552. },
  17553. },
  17554. [
  17555. {
  17556. name: "Normal",
  17557. height: math.unit(7.2, "feet"),
  17558. default: true
  17559. },
  17560. ]
  17561. ))
  17562. characterMakers.push(() => makeCharacter(
  17563. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17564. {
  17565. side: {
  17566. height: math.unit(10, "feet"),
  17567. weight: math.unit(900, "kg"),
  17568. name: "Side",
  17569. image: {
  17570. source: "./media/characters/zara/side.svg",
  17571. extra: 504 / 498
  17572. }
  17573. },
  17574. },
  17575. [
  17576. {
  17577. name: "Normal",
  17578. height: math.unit(10, "feet"),
  17579. default: true
  17580. },
  17581. ]
  17582. ))
  17583. characterMakers.push(() => makeCharacter(
  17584. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17585. {
  17586. side: {
  17587. height: math.unit(6, "feet"),
  17588. weight: math.unit(150, "lb"),
  17589. name: "Side",
  17590. image: {
  17591. source: "./media/characters/richard-dragon/side.svg",
  17592. extra: 845 / 340,
  17593. bottom: 0.017
  17594. }
  17595. },
  17596. maw: {
  17597. height: math.unit(2.97, "feet"),
  17598. name: "Maw",
  17599. image: {
  17600. source: "./media/characters/richard-dragon/maw.svg"
  17601. }
  17602. },
  17603. },
  17604. [
  17605. ]
  17606. ))
  17607. characterMakers.push(() => makeCharacter(
  17608. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17609. {
  17610. front: {
  17611. height: math.unit(4, "feet"),
  17612. weight: math.unit(100, "lb"),
  17613. name: "Front",
  17614. image: {
  17615. source: "./media/characters/richard-smeargle/front.svg",
  17616. extra: 2952 / 2820,
  17617. bottom: 0.028
  17618. }
  17619. },
  17620. },
  17621. [
  17622. {
  17623. name: "Normal",
  17624. height: math.unit(4, "feet"),
  17625. default: true
  17626. },
  17627. {
  17628. name: "Dynamax",
  17629. height: math.unit(20, "meters")
  17630. },
  17631. ]
  17632. ))
  17633. characterMakers.push(() => makeCharacter(
  17634. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17635. {
  17636. front: {
  17637. height: math.unit(6, "feet"),
  17638. weight: math.unit(110, "lb"),
  17639. name: "Front",
  17640. image: {
  17641. source: "./media/characters/klay/front.svg",
  17642. extra: 962 / 883,
  17643. bottom: 0.04
  17644. }
  17645. },
  17646. back: {
  17647. height: math.unit(6, "feet"),
  17648. weight: math.unit(110, "lb"),
  17649. name: "Back",
  17650. image: {
  17651. source: "./media/characters/klay/back.svg",
  17652. extra: 962 / 883
  17653. }
  17654. },
  17655. beans: {
  17656. height: math.unit(1.15, "feet"),
  17657. name: "Beans",
  17658. image: {
  17659. source: "./media/characters/klay/beans.svg"
  17660. }
  17661. },
  17662. },
  17663. [
  17664. {
  17665. name: "Micro",
  17666. height: math.unit(6, "inches")
  17667. },
  17668. {
  17669. name: "Mini",
  17670. height: math.unit(3, "feet")
  17671. },
  17672. {
  17673. name: "Normal",
  17674. height: math.unit(6, "feet"),
  17675. default: true
  17676. },
  17677. {
  17678. name: "Big",
  17679. height: math.unit(25, "feet")
  17680. },
  17681. {
  17682. name: "Macro",
  17683. height: math.unit(100, "feet")
  17684. },
  17685. {
  17686. name: "Megamacro",
  17687. height: math.unit(400, "feet")
  17688. },
  17689. ]
  17690. ))
  17691. characterMakers.push(() => makeCharacter(
  17692. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17693. {
  17694. front: {
  17695. height: math.unit(6, "feet"),
  17696. weight: math.unit(160, "lb"),
  17697. name: "Front",
  17698. image: {
  17699. source: "./media/characters/marcus/front.svg",
  17700. extra: 734 / 676,
  17701. bottom: 0.03
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Little",
  17708. height: math.unit(6, "feet")
  17709. },
  17710. {
  17711. name: "Normal",
  17712. height: math.unit(110, "feet"),
  17713. default: true
  17714. },
  17715. {
  17716. name: "Macro",
  17717. height: math.unit(250, "feet")
  17718. },
  17719. {
  17720. name: "Megamacro",
  17721. height: math.unit(1000, "feet")
  17722. },
  17723. ]
  17724. ))
  17725. characterMakers.push(() => makeCharacter(
  17726. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17727. {
  17728. front: {
  17729. height: math.unit(7, "feet"),
  17730. weight: math.unit(275, "lb"),
  17731. name: "Front",
  17732. image: {
  17733. source: "./media/characters/claude-delroute/front.svg",
  17734. extra: 230 / 214,
  17735. bottom: 0.007
  17736. }
  17737. },
  17738. side: {
  17739. height: math.unit(7, "feet"),
  17740. weight: math.unit(275, "lb"),
  17741. name: "Side",
  17742. image: {
  17743. source: "./media/characters/claude-delroute/side.svg",
  17744. extra: 222 / 214,
  17745. bottom: 0.01
  17746. }
  17747. },
  17748. back: {
  17749. height: math.unit(7, "feet"),
  17750. weight: math.unit(275, "lb"),
  17751. name: "Back",
  17752. image: {
  17753. source: "./media/characters/claude-delroute/back.svg",
  17754. extra: 230 / 214,
  17755. bottom: 0.015
  17756. }
  17757. },
  17758. maw: {
  17759. height: math.unit(0.6407, "meters"),
  17760. name: "Maw",
  17761. image: {
  17762. source: "./media/characters/claude-delroute/maw.svg"
  17763. }
  17764. },
  17765. },
  17766. [
  17767. {
  17768. name: "Normal",
  17769. height: math.unit(7, "feet"),
  17770. default: true
  17771. },
  17772. {
  17773. name: "Lorge",
  17774. height: math.unit(20, "feet")
  17775. },
  17776. ]
  17777. ))
  17778. characterMakers.push(() => makeCharacter(
  17779. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17780. {
  17781. front: {
  17782. height: math.unit(8 + 4 / 12, "feet"),
  17783. weight: math.unit(600, "lb"),
  17784. name: "Front",
  17785. image: {
  17786. source: "./media/characters/dragonien/front.svg",
  17787. extra: 100 / 94,
  17788. bottom: 3.3 / 103.3445
  17789. }
  17790. },
  17791. back: {
  17792. height: math.unit(8 + 4 / 12, "feet"),
  17793. weight: math.unit(600, "lb"),
  17794. name: "Back",
  17795. image: {
  17796. source: "./media/characters/dragonien/back.svg",
  17797. extra: 776 / 746,
  17798. bottom: 6.4 / 782.0616
  17799. }
  17800. },
  17801. foot: {
  17802. height: math.unit(1.54, "feet"),
  17803. name: "Foot",
  17804. image: {
  17805. source: "./media/characters/dragonien/foot.svg",
  17806. }
  17807. },
  17808. },
  17809. [
  17810. {
  17811. name: "Normal",
  17812. height: math.unit(8 + 4 / 12, "feet"),
  17813. default: true
  17814. },
  17815. {
  17816. name: "Macro",
  17817. height: math.unit(200, "feet")
  17818. },
  17819. {
  17820. name: "Megamacro",
  17821. height: math.unit(1, "mile")
  17822. },
  17823. {
  17824. name: "Gigamacro",
  17825. height: math.unit(1000, "miles")
  17826. },
  17827. ]
  17828. ))
  17829. characterMakers.push(() => makeCharacter(
  17830. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17831. {
  17832. front: {
  17833. height: math.unit(5 + 2 / 12, "feet"),
  17834. weight: math.unit(110, "lb"),
  17835. name: "Front",
  17836. image: {
  17837. source: "./media/characters/desta/front.svg",
  17838. extra: 767 / 726,
  17839. bottom: 11.7 / 779
  17840. }
  17841. },
  17842. back: {
  17843. height: math.unit(5 + 2 / 12, "feet"),
  17844. weight: math.unit(110, "lb"),
  17845. name: "Back",
  17846. image: {
  17847. source: "./media/characters/desta/back.svg",
  17848. extra: 777 / 728,
  17849. bottom: 6 / 784
  17850. }
  17851. },
  17852. frontAlt: {
  17853. height: math.unit(5 + 2 / 12, "feet"),
  17854. weight: math.unit(110, "lb"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/desta/front-alt.svg",
  17858. extra: 1482 / 1417
  17859. }
  17860. },
  17861. side: {
  17862. height: math.unit(5 + 2 / 12, "feet"),
  17863. weight: math.unit(110, "lb"),
  17864. name: "Side",
  17865. image: {
  17866. source: "./media/characters/desta/side.svg",
  17867. extra: 2579 / 2491,
  17868. bottom: 0.053
  17869. }
  17870. },
  17871. },
  17872. [
  17873. {
  17874. name: "Micro",
  17875. height: math.unit(6, "inches")
  17876. },
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(5 + 2 / 12, "feet"),
  17880. default: true
  17881. },
  17882. {
  17883. name: "Macro",
  17884. height: math.unit(62, "feet")
  17885. },
  17886. {
  17887. name: "Megamacro",
  17888. height: math.unit(1800, "feet")
  17889. },
  17890. ]
  17891. ))
  17892. characterMakers.push(() => makeCharacter(
  17893. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17894. {
  17895. front: {
  17896. height: math.unit(10, "feet"),
  17897. weight: math.unit(700, "lb"),
  17898. name: "Front",
  17899. image: {
  17900. source: "./media/characters/storm-alystar/front.svg",
  17901. extra: 2112 / 1898,
  17902. bottom: 0.034
  17903. }
  17904. },
  17905. },
  17906. [
  17907. {
  17908. name: "Micro",
  17909. height: math.unit(3.5, "inches")
  17910. },
  17911. {
  17912. name: "Normal",
  17913. height: math.unit(10, "feet"),
  17914. default: true
  17915. },
  17916. {
  17917. name: "Macro",
  17918. height: math.unit(400, "feet")
  17919. },
  17920. {
  17921. name: "Deific",
  17922. height: math.unit(60, "miles")
  17923. },
  17924. ]
  17925. ))
  17926. characterMakers.push(() => makeCharacter(
  17927. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17928. {
  17929. front: {
  17930. height: math.unit(2.35, "meters"),
  17931. weight: math.unit(119, "kg"),
  17932. name: "Front",
  17933. image: {
  17934. source: "./media/characters/ilia/front.svg",
  17935. extra: 1285 / 1255,
  17936. bottom: 0.06
  17937. }
  17938. },
  17939. },
  17940. [
  17941. {
  17942. name: "Normal",
  17943. height: math.unit(2.35, "meters")
  17944. },
  17945. {
  17946. name: "Macro",
  17947. height: math.unit(140, "meters"),
  17948. default: true
  17949. },
  17950. {
  17951. name: "Megamacro",
  17952. height: math.unit(100, "miles")
  17953. },
  17954. ]
  17955. ))
  17956. characterMakers.push(() => makeCharacter(
  17957. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17958. {
  17959. front: {
  17960. height: math.unit(6 + 5 / 12, "feet"),
  17961. weight: math.unit(190, "lb"),
  17962. name: "Front",
  17963. image: {
  17964. source: "./media/characters/kingdead/front.svg",
  17965. extra: 1228 / 1177
  17966. }
  17967. },
  17968. },
  17969. [
  17970. {
  17971. name: "Micro",
  17972. height: math.unit(7, "inches")
  17973. },
  17974. {
  17975. name: "Normal",
  17976. height: math.unit(6 + 5 / 12, "feet")
  17977. },
  17978. {
  17979. name: "Macro",
  17980. height: math.unit(150, "feet"),
  17981. default: true
  17982. },
  17983. {
  17984. name: "Megamacro",
  17985. height: math.unit(200, "miles")
  17986. },
  17987. ]
  17988. ))
  17989. characterMakers.push(() => makeCharacter(
  17990. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17991. {
  17992. front: {
  17993. height: math.unit(8, "feet"),
  17994. weight: math.unit(600, "lb"),
  17995. name: "Front",
  17996. image: {
  17997. source: "./media/characters/kyrehx/front.svg",
  17998. extra: 1195 / 1095,
  17999. bottom: 0.034
  18000. }
  18001. },
  18002. },
  18003. [
  18004. {
  18005. name: "Micro",
  18006. height: math.unit(2, "inches")
  18007. },
  18008. {
  18009. name: "Normal",
  18010. height: math.unit(8, "feet"),
  18011. default: true
  18012. },
  18013. {
  18014. name: "Macro",
  18015. height: math.unit(255, "feet")
  18016. },
  18017. ]
  18018. ))
  18019. characterMakers.push(() => makeCharacter(
  18020. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18021. {
  18022. front: {
  18023. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18024. weight: math.unit(184, "lb"),
  18025. name: "Front",
  18026. image: {
  18027. source: "./media/characters/xang/front.svg",
  18028. extra: 845 / 755
  18029. }
  18030. },
  18031. },
  18032. [
  18033. {
  18034. name: "Normal",
  18035. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18036. default: true
  18037. },
  18038. {
  18039. name: "Macro",
  18040. height: math.unit(0.935 * 146, "feet")
  18041. },
  18042. {
  18043. name: "Megamacro",
  18044. height: math.unit(0.935 * 3, "miles")
  18045. },
  18046. ]
  18047. ))
  18048. characterMakers.push(() => makeCharacter(
  18049. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18050. {
  18051. frontDressed: {
  18052. height: math.unit(5 + 7 / 12, "feet"),
  18053. weight: math.unit(140, "lb"),
  18054. name: "Front (Dressed)",
  18055. image: {
  18056. source: "./media/characters/doc-weardno/front-dressed.svg",
  18057. extra: 263 / 234
  18058. }
  18059. },
  18060. backDressed: {
  18061. height: math.unit(5 + 7 / 12, "feet"),
  18062. weight: math.unit(140, "lb"),
  18063. name: "Back (Dressed)",
  18064. image: {
  18065. source: "./media/characters/doc-weardno/back-dressed.svg",
  18066. extra: 266 / 238
  18067. }
  18068. },
  18069. front: {
  18070. height: math.unit(5 + 7 / 12, "feet"),
  18071. weight: math.unit(140, "lb"),
  18072. name: "Front",
  18073. image: {
  18074. source: "./media/characters/doc-weardno/front.svg",
  18075. extra: 254 / 233
  18076. }
  18077. },
  18078. },
  18079. [
  18080. {
  18081. name: "Micro",
  18082. height: math.unit(3, "inches")
  18083. },
  18084. {
  18085. name: "Normal",
  18086. height: math.unit(5 + 7 / 12, "feet"),
  18087. default: true
  18088. },
  18089. {
  18090. name: "Macro",
  18091. height: math.unit(25, "feet")
  18092. },
  18093. {
  18094. name: "Megamacro",
  18095. height: math.unit(2, "miles")
  18096. },
  18097. ]
  18098. ))
  18099. characterMakers.push(() => makeCharacter(
  18100. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18101. {
  18102. front: {
  18103. height: math.unit(6 + 2 / 12, "feet"),
  18104. weight: math.unit(153, "lb"),
  18105. name: "Front",
  18106. image: {
  18107. source: "./media/characters/seth-whilst/front.svg",
  18108. bottom: 0.07
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Micro",
  18115. height: math.unit(5, "inches")
  18116. },
  18117. {
  18118. name: "Normal",
  18119. height: math.unit(6 + 2 / 12, "feet"),
  18120. default: true
  18121. },
  18122. ]
  18123. ))
  18124. characterMakers.push(() => makeCharacter(
  18125. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18126. {
  18127. front: {
  18128. height: math.unit(3, "inches"),
  18129. weight: math.unit(8, "grams"),
  18130. name: "Front",
  18131. image: {
  18132. source: "./media/characters/pocket-jabari/front.svg",
  18133. extra: 1024 / 974,
  18134. bottom: 0.039
  18135. }
  18136. },
  18137. },
  18138. [
  18139. {
  18140. name: "Minimicro",
  18141. height: math.unit(8, "mm")
  18142. },
  18143. {
  18144. name: "Micro",
  18145. height: math.unit(3, "inches"),
  18146. default: true
  18147. },
  18148. {
  18149. name: "Normal",
  18150. height: math.unit(3, "feet")
  18151. },
  18152. ]
  18153. ))
  18154. characterMakers.push(() => makeCharacter(
  18155. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18156. {
  18157. front: {
  18158. height: math.unit(15, "feet"),
  18159. weight: math.unit(3280, "lb"),
  18160. name: "Front",
  18161. image: {
  18162. source: "./media/characters/sapphy/front.svg",
  18163. extra: 671 / 577,
  18164. bottom: 0.085
  18165. }
  18166. },
  18167. back: {
  18168. height: math.unit(15, "feet"),
  18169. weight: math.unit(3280, "lb"),
  18170. name: "Back",
  18171. image: {
  18172. source: "./media/characters/sapphy/back.svg",
  18173. extra: 631 / 607,
  18174. bottom: 0.045
  18175. }
  18176. },
  18177. },
  18178. [
  18179. {
  18180. name: "Normal",
  18181. height: math.unit(15, "feet")
  18182. },
  18183. {
  18184. name: "Casual Macro",
  18185. height: math.unit(120, "feet")
  18186. },
  18187. {
  18188. name: "Macro",
  18189. height: math.unit(2150, "feet"),
  18190. default: true
  18191. },
  18192. {
  18193. name: "Megamacro",
  18194. height: math.unit(8, "miles")
  18195. },
  18196. {
  18197. name: "Galaxy Mom",
  18198. height: math.unit(6, "megalightyears")
  18199. },
  18200. ]
  18201. ))
  18202. characterMakers.push(() => makeCharacter(
  18203. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18204. {
  18205. front: {
  18206. height: math.unit(6, "feet"),
  18207. weight: math.unit(170, "lb"),
  18208. name: "Front",
  18209. image: {
  18210. source: "./media/characters/kiro/front.svg",
  18211. extra: 1064 / 1012,
  18212. bottom: 0.052
  18213. }
  18214. },
  18215. },
  18216. [
  18217. {
  18218. name: "Micro",
  18219. height: math.unit(6, "inches")
  18220. },
  18221. {
  18222. name: "Normal",
  18223. height: math.unit(6, "feet"),
  18224. default: true
  18225. },
  18226. {
  18227. name: "Macro",
  18228. height: math.unit(72, "feet")
  18229. },
  18230. ]
  18231. ))
  18232. characterMakers.push(() => makeCharacter(
  18233. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18234. {
  18235. front: {
  18236. height: math.unit(5 + 9 / 12, "feet"),
  18237. weight: math.unit(175, "lb"),
  18238. name: "Front",
  18239. image: {
  18240. source: "./media/characters/irishfox/front.svg",
  18241. extra: 1912 / 1680,
  18242. bottom: 0.02
  18243. }
  18244. },
  18245. },
  18246. [
  18247. {
  18248. name: "Nano",
  18249. height: math.unit(1, "mm")
  18250. },
  18251. {
  18252. name: "Micro",
  18253. height: math.unit(2, "inches")
  18254. },
  18255. {
  18256. name: "Normal",
  18257. height: math.unit(5 + 9 / 12, "feet"),
  18258. default: true
  18259. },
  18260. {
  18261. name: "Macro",
  18262. height: math.unit(45, "feet")
  18263. },
  18264. ]
  18265. ))
  18266. characterMakers.push(() => makeCharacter(
  18267. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18268. {
  18269. front: {
  18270. height: math.unit(6 + 1 / 12, "feet"),
  18271. weight: math.unit(150, "lb"),
  18272. name: "Front",
  18273. image: {
  18274. source: "./media/characters/aronai-sieyes/front.svg",
  18275. extra: 1556 / 1480,
  18276. bottom: 0.015
  18277. }
  18278. },
  18279. side: {
  18280. height: math.unit(6 + 1 / 12, "feet"),
  18281. weight: math.unit(150, "lb"),
  18282. name: "Side",
  18283. image: {
  18284. source: "./media/characters/aronai-sieyes/side.svg",
  18285. extra: 1433 / 1390,
  18286. bottom: 0.0393
  18287. }
  18288. },
  18289. back: {
  18290. height: math.unit(6 + 1 / 12, "feet"),
  18291. weight: math.unit(150, "lb"),
  18292. name: "Back",
  18293. image: {
  18294. source: "./media/characters/aronai-sieyes/back.svg",
  18295. extra: 1544 / 1494,
  18296. bottom: 0.02
  18297. }
  18298. },
  18299. frontClothed: {
  18300. height: math.unit(6 + 1 / 12, "feet"),
  18301. weight: math.unit(150, "lb"),
  18302. name: "Front (Clothed)",
  18303. image: {
  18304. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18305. extra: 1582 / 1527
  18306. }
  18307. },
  18308. feral: {
  18309. height: math.unit(18, "feet"),
  18310. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18311. name: "Feral",
  18312. image: {
  18313. source: "./media/characters/aronai-sieyes/feral.svg",
  18314. extra: 1530 / 1240,
  18315. bottom: 0.035
  18316. }
  18317. },
  18318. },
  18319. [
  18320. {
  18321. name: "Micro",
  18322. height: math.unit(2, "inches")
  18323. },
  18324. {
  18325. name: "Normal",
  18326. height: math.unit(6 + 1 / 12, "feet"),
  18327. default: true
  18328. }
  18329. ]
  18330. ))
  18331. characterMakers.push(() => makeCharacter(
  18332. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18333. {
  18334. front: {
  18335. height: math.unit(12, "feet"),
  18336. weight: math.unit(410, "kg"),
  18337. name: "Front",
  18338. image: {
  18339. source: "./media/characters/xuna/front.svg",
  18340. extra: 2184 / 1980
  18341. }
  18342. },
  18343. side: {
  18344. height: math.unit(12, "feet"),
  18345. weight: math.unit(410, "kg"),
  18346. name: "Side",
  18347. image: {
  18348. source: "./media/characters/xuna/side.svg",
  18349. extra: 2184 / 1980
  18350. }
  18351. },
  18352. back: {
  18353. height: math.unit(12, "feet"),
  18354. weight: math.unit(410, "kg"),
  18355. name: "Back",
  18356. image: {
  18357. source: "./media/characters/xuna/back.svg",
  18358. extra: 2184 / 1980
  18359. }
  18360. },
  18361. },
  18362. [
  18363. {
  18364. name: "Nano glow",
  18365. height: math.unit(10, "nm")
  18366. },
  18367. {
  18368. name: "Micro floof",
  18369. height: math.unit(0.3, "m")
  18370. },
  18371. {
  18372. name: "Huggable softy boi",
  18373. height: math.unit(3.6576, "m"),
  18374. default: true
  18375. },
  18376. {
  18377. name: "Admirable floof",
  18378. height: math.unit(80, "meters")
  18379. },
  18380. {
  18381. name: "Gentle macro",
  18382. height: math.unit(300, "meters")
  18383. },
  18384. {
  18385. name: "Very careful floof",
  18386. height: math.unit(3200, "meters")
  18387. },
  18388. {
  18389. name: "The mega floof",
  18390. height: math.unit(36000, "meters")
  18391. },
  18392. {
  18393. name: "Giga-fur-Wicker",
  18394. height: math.unit(4800000, "meters")
  18395. },
  18396. {
  18397. name: "Licky world",
  18398. height: math.unit(20000000, "meters")
  18399. },
  18400. {
  18401. name: "Floofy cyan sun",
  18402. height: math.unit(1500000000, "meters")
  18403. },
  18404. {
  18405. name: "Milky Wicker",
  18406. height: math.unit(1000000000000000000000, "meters")
  18407. },
  18408. {
  18409. name: "The observing Wicker",
  18410. height: math.unit(999999999999999999999999999, "meters")
  18411. },
  18412. ]
  18413. ))
  18414. characterMakers.push(() => makeCharacter(
  18415. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18416. {
  18417. front: {
  18418. height: math.unit(5 + 9 / 12, "feet"),
  18419. weight: math.unit(150, "lb"),
  18420. name: "Front",
  18421. image: {
  18422. source: "./media/characters/arokha-sieyes/front.svg",
  18423. extra: 1425 / 1284,
  18424. bottom: 0.05
  18425. }
  18426. },
  18427. },
  18428. [
  18429. {
  18430. name: "Normal",
  18431. height: math.unit(5 + 9 / 12, "feet")
  18432. },
  18433. {
  18434. name: "Macro",
  18435. height: math.unit(30, "meters"),
  18436. default: true
  18437. },
  18438. ]
  18439. ))
  18440. characterMakers.push(() => makeCharacter(
  18441. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18442. {
  18443. front: {
  18444. height: math.unit(6, "feet"),
  18445. weight: math.unit(180, "lb"),
  18446. name: "Front",
  18447. image: {
  18448. source: "./media/characters/arokh-sieyes/front.svg",
  18449. extra: 1830 / 1769,
  18450. bottom: 0.01
  18451. }
  18452. },
  18453. },
  18454. [
  18455. {
  18456. name: "Normal",
  18457. height: math.unit(6, "feet")
  18458. },
  18459. {
  18460. name: "Macro",
  18461. height: math.unit(30, "meters"),
  18462. default: true
  18463. },
  18464. ]
  18465. ))
  18466. characterMakers.push(() => makeCharacter(
  18467. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18468. {
  18469. side: {
  18470. height: math.unit(13 + 1 / 12, "feet"),
  18471. weight: math.unit(8.5, "tonnes"),
  18472. name: "Side",
  18473. image: {
  18474. source: "./media/characters/goldeneye/side.svg",
  18475. extra: 1182 / 778,
  18476. bottom: 0.067
  18477. }
  18478. },
  18479. paw: {
  18480. height: math.unit(3.4, "feet"),
  18481. name: "Paw",
  18482. image: {
  18483. source: "./media/characters/goldeneye/paw.svg"
  18484. }
  18485. },
  18486. },
  18487. [
  18488. {
  18489. name: "Normal",
  18490. height: math.unit(13 + 1 / 12, "feet"),
  18491. default: true
  18492. },
  18493. ]
  18494. ))
  18495. characterMakers.push(() => makeCharacter(
  18496. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18497. {
  18498. front: {
  18499. height: math.unit(6 + 1 / 12, "feet"),
  18500. weight: math.unit(210, "lb"),
  18501. name: "Front",
  18502. image: {
  18503. source: "./media/characters/leonardo-lycheborne/front.svg",
  18504. extra: 390 / 365,
  18505. bottom: 0.032
  18506. }
  18507. },
  18508. side: {
  18509. height: math.unit(6 + 1 / 12, "feet"),
  18510. weight: math.unit(210, "lb"),
  18511. name: "Side",
  18512. image: {
  18513. source: "./media/characters/leonardo-lycheborne/side.svg",
  18514. extra: 390 / 365,
  18515. bottom: 0.005
  18516. }
  18517. },
  18518. back: {
  18519. height: math.unit(6 + 1 / 12, "feet"),
  18520. weight: math.unit(210, "lb"),
  18521. name: "Back",
  18522. image: {
  18523. source: "./media/characters/leonardo-lycheborne/back.svg",
  18524. extra: 392 / 366,
  18525. bottom: 0.01
  18526. }
  18527. },
  18528. hand: {
  18529. height: math.unit(1.08, "feet"),
  18530. name: "Hand",
  18531. image: {
  18532. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18533. }
  18534. },
  18535. foot: {
  18536. height: math.unit(1.32, "feet"),
  18537. name: "Foot",
  18538. image: {
  18539. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18540. }
  18541. },
  18542. were: {
  18543. height: math.unit(20, "feet"),
  18544. weight: math.unit(7800, "lb"),
  18545. name: "Were",
  18546. image: {
  18547. source: "./media/characters/leonardo-lycheborne/were.svg",
  18548. extra: 308 / 294,
  18549. bottom: 0.048
  18550. }
  18551. },
  18552. feral: {
  18553. height: math.unit(7.5, "feet"),
  18554. weight: math.unit(600, "lb"),
  18555. name: "Feral",
  18556. image: {
  18557. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18558. extra: 210 / 186,
  18559. bottom: 0.108
  18560. }
  18561. },
  18562. taur: {
  18563. height: math.unit(11, "feet"),
  18564. weight: math.unit(3300, "lb"),
  18565. name: "Taur",
  18566. image: {
  18567. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18568. extra: 320 / 303,
  18569. bottom: 0.025
  18570. }
  18571. },
  18572. barghest: {
  18573. height: math.unit(11, "feet"),
  18574. weight: math.unit(1300, "lb"),
  18575. name: "Barghest",
  18576. image: {
  18577. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18578. extra: 323 / 302,
  18579. bottom: 0.027
  18580. }
  18581. },
  18582. dick: {
  18583. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18584. name: "Dick",
  18585. image: {
  18586. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18587. }
  18588. },
  18589. dickWere: {
  18590. height: math.unit((20) / 3.8, "feet"),
  18591. name: "Dick (Were)",
  18592. image: {
  18593. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18594. }
  18595. },
  18596. },
  18597. [
  18598. {
  18599. name: "Normal",
  18600. height: math.unit(6 + 1 / 12, "feet"),
  18601. default: true
  18602. },
  18603. ]
  18604. ))
  18605. characterMakers.push(() => makeCharacter(
  18606. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18607. {
  18608. front: {
  18609. height: math.unit(10, "feet"),
  18610. weight: math.unit(350, "lb"),
  18611. name: "Front",
  18612. image: {
  18613. source: "./media/characters/jet/front.svg",
  18614. extra: 2050 / 1980,
  18615. bottom: 0.013
  18616. }
  18617. },
  18618. back: {
  18619. height: math.unit(10, "feet"),
  18620. weight: math.unit(350, "lb"),
  18621. name: "Back",
  18622. image: {
  18623. source: "./media/characters/jet/back.svg",
  18624. extra: 2050 / 1980,
  18625. bottom: 0.013
  18626. }
  18627. },
  18628. },
  18629. [
  18630. {
  18631. name: "Micro",
  18632. height: math.unit(6, "inches")
  18633. },
  18634. {
  18635. name: "Normal",
  18636. height: math.unit(10, "feet"),
  18637. default: true
  18638. },
  18639. {
  18640. name: "Macro",
  18641. height: math.unit(100, "feet")
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18647. {
  18648. front: {
  18649. height: math.unit(15, "feet"),
  18650. weight: math.unit(2800, "lb"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/tanarath/front.svg",
  18654. extra: 2392 / 2220,
  18655. bottom: 0.03
  18656. }
  18657. },
  18658. back: {
  18659. height: math.unit(15, "feet"),
  18660. weight: math.unit(2800, "lb"),
  18661. name: "Back",
  18662. image: {
  18663. source: "./media/characters/tanarath/back.svg",
  18664. extra: 2392 / 2220,
  18665. bottom: 0.03
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Normal",
  18672. height: math.unit(15, "feet"),
  18673. default: true
  18674. },
  18675. ]
  18676. ))
  18677. characterMakers.push(() => makeCharacter(
  18678. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18679. {
  18680. front: {
  18681. height: math.unit(7 + 1 / 12, "feet"),
  18682. weight: math.unit(175, "lb"),
  18683. name: "Front",
  18684. image: {
  18685. source: "./media/characters/patty-cattybatty/front.svg",
  18686. extra: 908 / 874,
  18687. bottom: 0.025
  18688. }
  18689. },
  18690. },
  18691. [
  18692. {
  18693. name: "Micro",
  18694. height: math.unit(1, "inch")
  18695. },
  18696. {
  18697. name: "Normal",
  18698. height: math.unit(7 + 1 / 12, "feet")
  18699. },
  18700. {
  18701. name: "Mini Macro",
  18702. height: math.unit(155, "feet")
  18703. },
  18704. {
  18705. name: "Macro",
  18706. height: math.unit(1077, "feet")
  18707. },
  18708. {
  18709. name: "Mega Macro",
  18710. height: math.unit(47650, "feet"),
  18711. default: true
  18712. },
  18713. {
  18714. name: "Giga Macro",
  18715. height: math.unit(440, "miles")
  18716. },
  18717. {
  18718. name: "Tera Macro",
  18719. height: math.unit(8700, "miles")
  18720. },
  18721. {
  18722. name: "Planetary Macro",
  18723. height: math.unit(32700, "miles")
  18724. },
  18725. {
  18726. name: "Solar Macro",
  18727. height: math.unit(550000, "miles")
  18728. },
  18729. {
  18730. name: "Celestial Macro",
  18731. height: math.unit(2.5, "AU")
  18732. },
  18733. ]
  18734. ))
  18735. characterMakers.push(() => makeCharacter(
  18736. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18737. {
  18738. front: {
  18739. height: math.unit(4 + 5 / 12, "feet"),
  18740. weight: math.unit(90, "lb"),
  18741. name: "Front",
  18742. image: {
  18743. source: "./media/characters/cappu/front.svg",
  18744. extra: 1247 / 1152,
  18745. bottom: 0.012
  18746. }
  18747. },
  18748. },
  18749. [
  18750. {
  18751. name: "Normal",
  18752. height: math.unit(4 + 5 / 12, "feet"),
  18753. default: true
  18754. },
  18755. ]
  18756. ))
  18757. characterMakers.push(() => makeCharacter(
  18758. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18759. {
  18760. frontDressed: {
  18761. height: math.unit(70, "cm"),
  18762. weight: math.unit(6, "kg"),
  18763. name: "Front (Dressed)",
  18764. image: {
  18765. source: "./media/characters/sebi/front-dressed.svg",
  18766. extra: 713.5 / 686.5,
  18767. bottom: 0.003
  18768. }
  18769. },
  18770. front: {
  18771. height: math.unit(70, "cm"),
  18772. weight: math.unit(5, "kg"),
  18773. name: "Front",
  18774. image: {
  18775. source: "./media/characters/sebi/front.svg",
  18776. extra: 713.5 / 686.5,
  18777. bottom: 0.003
  18778. }
  18779. }
  18780. },
  18781. [
  18782. {
  18783. name: "Normal",
  18784. height: math.unit(70, "cm"),
  18785. default: true
  18786. },
  18787. {
  18788. name: "Macro",
  18789. height: math.unit(8, "meters")
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18795. {
  18796. front: {
  18797. height: math.unit(6, "feet"),
  18798. weight: math.unit(150, "lb"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/typhek/front.svg",
  18802. extra: 1948 / 1929,
  18803. bottom: 0.025
  18804. }
  18805. },
  18806. side: {
  18807. height: math.unit(6, "feet"),
  18808. weight: math.unit(150, "lb"),
  18809. name: "Side",
  18810. image: {
  18811. source: "./media/characters/typhek/side.svg",
  18812. extra: 2034 / 2010,
  18813. bottom: 0.003
  18814. }
  18815. },
  18816. back: {
  18817. height: math.unit(6, "feet"),
  18818. weight: math.unit(150, "lb"),
  18819. name: "Back",
  18820. image: {
  18821. source: "./media/characters/typhek/back.svg",
  18822. extra: 2005 / 1978,
  18823. bottom: 0.004
  18824. }
  18825. },
  18826. palm: {
  18827. height: math.unit(1.2, "feet"),
  18828. name: "Palm",
  18829. image: {
  18830. source: "./media/characters/typhek/palm.svg"
  18831. }
  18832. },
  18833. fist: {
  18834. height: math.unit(1.1, "feet"),
  18835. name: "Fist",
  18836. image: {
  18837. source: "./media/characters/typhek/fist.svg"
  18838. }
  18839. },
  18840. foot: {
  18841. height: math.unit(1.57, "feet"),
  18842. name: "Foot",
  18843. image: {
  18844. source: "./media/characters/typhek/foot.svg"
  18845. }
  18846. },
  18847. sole: {
  18848. height: math.unit(2.05, "feet"),
  18849. name: "Sole",
  18850. image: {
  18851. source: "./media/characters/typhek/sole.svg"
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Macro",
  18858. height: math.unit(40, "stories"),
  18859. default: true
  18860. },
  18861. {
  18862. name: "Megamacro",
  18863. height: math.unit(1, "mile")
  18864. },
  18865. {
  18866. name: "Gigamacro",
  18867. height: math.unit(4000, "solarradii")
  18868. },
  18869. {
  18870. name: "Universal",
  18871. height: math.unit(1.1, "universes")
  18872. }
  18873. ]
  18874. ))
  18875. characterMakers.push(() => makeCharacter(
  18876. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18877. {
  18878. side: {
  18879. height: math.unit(5 + 7 / 12, "feet"),
  18880. weight: math.unit(150, "lb"),
  18881. name: "Side",
  18882. image: {
  18883. source: "./media/characters/kassy/side.svg",
  18884. extra: 1280 / 1225,
  18885. bottom: 0.002
  18886. }
  18887. },
  18888. front: {
  18889. height: math.unit(5 + 7 / 12, "feet"),
  18890. weight: math.unit(150, "lb"),
  18891. name: "Front",
  18892. image: {
  18893. source: "./media/characters/kassy/front.svg",
  18894. extra: 1280 / 1225,
  18895. bottom: 0.025
  18896. }
  18897. },
  18898. back: {
  18899. height: math.unit(5 + 7 / 12, "feet"),
  18900. weight: math.unit(150, "lb"),
  18901. name: "Back",
  18902. image: {
  18903. source: "./media/characters/kassy/back.svg",
  18904. extra: 1280 / 1225,
  18905. bottom: 0.002
  18906. }
  18907. },
  18908. foot: {
  18909. height: math.unit(1.266, "feet"),
  18910. name: "Foot",
  18911. image: {
  18912. source: "./media/characters/kassy/foot.svg"
  18913. }
  18914. },
  18915. },
  18916. [
  18917. {
  18918. name: "Normal",
  18919. height: math.unit(5 + 7 / 12, "feet")
  18920. },
  18921. {
  18922. name: "Macro",
  18923. height: math.unit(137, "feet"),
  18924. default: true
  18925. },
  18926. {
  18927. name: "Megamacro",
  18928. height: math.unit(1, "mile")
  18929. },
  18930. ]
  18931. ))
  18932. characterMakers.push(() => makeCharacter(
  18933. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18934. {
  18935. front: {
  18936. height: math.unit(6 + 1 / 12, "feet"),
  18937. weight: math.unit(200, "lb"),
  18938. name: "Front",
  18939. image: {
  18940. source: "./media/characters/neil/front.svg",
  18941. extra: 1326 / 1250,
  18942. bottom: 0.023
  18943. }
  18944. },
  18945. },
  18946. [
  18947. {
  18948. name: "Normal",
  18949. height: math.unit(6 + 1 / 12, "feet"),
  18950. default: true
  18951. },
  18952. {
  18953. name: "Macro",
  18954. height: math.unit(200, "feet")
  18955. },
  18956. ]
  18957. ))
  18958. characterMakers.push(() => makeCharacter(
  18959. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18960. {
  18961. front: {
  18962. height: math.unit(5 + 9 / 12, "feet"),
  18963. weight: math.unit(190, "lb"),
  18964. name: "Front",
  18965. image: {
  18966. source: "./media/characters/atticus/front.svg",
  18967. extra: 2934 / 2785,
  18968. bottom: 0.025
  18969. }
  18970. },
  18971. },
  18972. [
  18973. {
  18974. name: "Normal",
  18975. height: math.unit(5 + 9 / 12, "feet"),
  18976. default: true
  18977. },
  18978. {
  18979. name: "Macro",
  18980. height: math.unit(180, "feet")
  18981. },
  18982. ]
  18983. ))
  18984. characterMakers.push(() => makeCharacter(
  18985. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18986. {
  18987. side: {
  18988. height: math.unit(9, "feet"),
  18989. weight: math.unit(650, "lb"),
  18990. name: "Side",
  18991. image: {
  18992. source: "./media/characters/milo/side.svg",
  18993. extra: 2644 / 2310,
  18994. bottom: 0.032
  18995. }
  18996. },
  18997. },
  18998. [
  18999. {
  19000. name: "Normal",
  19001. height: math.unit(9, "feet"),
  19002. default: true
  19003. },
  19004. {
  19005. name: "Macro",
  19006. height: math.unit(300, "feet")
  19007. },
  19008. ]
  19009. ))
  19010. characterMakers.push(() => makeCharacter(
  19011. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19012. {
  19013. side: {
  19014. height: math.unit(8, "meters"),
  19015. weight: math.unit(90000, "kg"),
  19016. name: "Side",
  19017. image: {
  19018. source: "./media/characters/ijzer/side.svg",
  19019. extra: 2756 / 1600,
  19020. bottom: 0.01
  19021. }
  19022. },
  19023. },
  19024. [
  19025. {
  19026. name: "Small",
  19027. height: math.unit(3, "meters")
  19028. },
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(8, "meters"),
  19032. default: true
  19033. },
  19034. {
  19035. name: "Normal+",
  19036. height: math.unit(10, "meters")
  19037. },
  19038. {
  19039. name: "Bigger",
  19040. height: math.unit(24, "meters")
  19041. },
  19042. {
  19043. name: "Huge",
  19044. height: math.unit(80, "meters")
  19045. },
  19046. ]
  19047. ))
  19048. characterMakers.push(() => makeCharacter(
  19049. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19050. {
  19051. front: {
  19052. height: math.unit(6 + 2 / 12, "feet"),
  19053. weight: math.unit(153, "lb"),
  19054. name: "Front",
  19055. image: {
  19056. source: "./media/characters/luca-cervicum/front.svg",
  19057. extra: 370 / 327,
  19058. bottom: 0.015
  19059. }
  19060. },
  19061. back: {
  19062. height: math.unit(6 + 2 / 12, "feet"),
  19063. weight: math.unit(153, "lb"),
  19064. name: "Back",
  19065. image: {
  19066. source: "./media/characters/luca-cervicum/back.svg",
  19067. extra: 367 / 333,
  19068. bottom: 0.005
  19069. }
  19070. },
  19071. frontGear: {
  19072. height: math.unit(6 + 2 / 12, "feet"),
  19073. weight: math.unit(173, "lb"),
  19074. name: "Front (Gear)",
  19075. image: {
  19076. source: "./media/characters/luca-cervicum/front-gear.svg",
  19077. extra: 377 / 333,
  19078. bottom: 0.006
  19079. }
  19080. },
  19081. },
  19082. [
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(6 + 2 / 12, "feet"),
  19086. default: true
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19092. {
  19093. front: {
  19094. height: math.unit(6 + 1 / 12, "feet"),
  19095. weight: math.unit(304, "lb"),
  19096. name: "Front",
  19097. image: {
  19098. source: "./media/characters/oliver/front.svg",
  19099. extra: 157 / 143,
  19100. bottom: 0.08
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(6 + 1 / 12, "feet"),
  19108. default: true
  19109. },
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19114. {
  19115. front: {
  19116. height: math.unit(5 + 7 / 12, "feet"),
  19117. weight: math.unit(140, "lb"),
  19118. name: "Front",
  19119. image: {
  19120. source: "./media/characters/shane/front.svg",
  19121. extra: 304 / 289,
  19122. bottom: 0.005
  19123. }
  19124. },
  19125. },
  19126. [
  19127. {
  19128. name: "Normal",
  19129. height: math.unit(5 + 7 / 12, "feet"),
  19130. default: true
  19131. },
  19132. ]
  19133. ))
  19134. characterMakers.push(() => makeCharacter(
  19135. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19136. {
  19137. front: {
  19138. height: math.unit(5 + 9 / 12, "feet"),
  19139. weight: math.unit(178, "lb"),
  19140. name: "Front",
  19141. image: {
  19142. source: "./media/characters/shin/front.svg",
  19143. extra: 159 / 151,
  19144. bottom: 0.015
  19145. }
  19146. },
  19147. },
  19148. [
  19149. {
  19150. name: "Normal",
  19151. height: math.unit(5 + 9 / 12, "feet"),
  19152. default: true
  19153. },
  19154. ]
  19155. ))
  19156. characterMakers.push(() => makeCharacter(
  19157. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19158. {
  19159. front: {
  19160. height: math.unit(5 + 10 / 12, "feet"),
  19161. weight: math.unit(168, "lb"),
  19162. name: "Front",
  19163. image: {
  19164. source: "./media/characters/xerxes/front.svg",
  19165. extra: 282 / 260,
  19166. bottom: 0.045
  19167. }
  19168. },
  19169. },
  19170. [
  19171. {
  19172. name: "Normal",
  19173. height: math.unit(5 + 10 / 12, "feet"),
  19174. default: true
  19175. },
  19176. ]
  19177. ))
  19178. characterMakers.push(() => makeCharacter(
  19179. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19180. {
  19181. front: {
  19182. height: math.unit(6 + 7 / 12, "feet"),
  19183. weight: math.unit(208, "lb"),
  19184. name: "Front",
  19185. image: {
  19186. source: "./media/characters/chaska/front.svg",
  19187. extra: 332 / 319,
  19188. bottom: 0.015
  19189. }
  19190. },
  19191. },
  19192. [
  19193. {
  19194. name: "Normal",
  19195. height: math.unit(6 + 7 / 12, "feet"),
  19196. default: true
  19197. },
  19198. ]
  19199. ))
  19200. characterMakers.push(() => makeCharacter(
  19201. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19202. {
  19203. front: {
  19204. height: math.unit(5 + 8 / 12, "feet"),
  19205. weight: math.unit(208, "lb"),
  19206. name: "Front",
  19207. image: {
  19208. source: "./media/characters/enuk/front.svg",
  19209. extra: 437 / 406,
  19210. bottom: 0.02
  19211. }
  19212. },
  19213. },
  19214. [
  19215. {
  19216. name: "Normal",
  19217. height: math.unit(5 + 8 / 12, "feet"),
  19218. default: true
  19219. },
  19220. ]
  19221. ))
  19222. characterMakers.push(() => makeCharacter(
  19223. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19224. {
  19225. front: {
  19226. height: math.unit(5 + 10 / 12, "feet"),
  19227. weight: math.unit(252, "lb"),
  19228. name: "Front",
  19229. image: {
  19230. source: "./media/characters/bruun/front.svg",
  19231. extra: 197 / 187,
  19232. bottom: 0.012
  19233. }
  19234. },
  19235. },
  19236. [
  19237. {
  19238. name: "Normal",
  19239. height: math.unit(5 + 10 / 12, "feet"),
  19240. default: true
  19241. },
  19242. ]
  19243. ))
  19244. characterMakers.push(() => makeCharacter(
  19245. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19246. {
  19247. front: {
  19248. height: math.unit(6 + 10 / 12, "feet"),
  19249. weight: math.unit(255, "lb"),
  19250. name: "Front",
  19251. image: {
  19252. source: "./media/characters/alexeev/front.svg",
  19253. extra: 213 / 200,
  19254. bottom: 0.05
  19255. }
  19256. },
  19257. },
  19258. [
  19259. {
  19260. name: "Normal",
  19261. height: math.unit(6 + 10 / 12, "feet"),
  19262. default: true
  19263. },
  19264. ]
  19265. ))
  19266. characterMakers.push(() => makeCharacter(
  19267. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19268. {
  19269. front: {
  19270. height: math.unit(2 + 8 / 12, "feet"),
  19271. weight: math.unit(22, "lb"),
  19272. name: "Front",
  19273. image: {
  19274. source: "./media/characters/evelyn/front.svg",
  19275. extra: 208 / 180
  19276. }
  19277. },
  19278. },
  19279. [
  19280. {
  19281. name: "Normal",
  19282. height: math.unit(2 + 8 / 12, "feet"),
  19283. default: true
  19284. },
  19285. ]
  19286. ))
  19287. characterMakers.push(() => makeCharacter(
  19288. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19289. {
  19290. front: {
  19291. height: math.unit(5 + 9 / 12, "feet"),
  19292. weight: math.unit(139, "lb"),
  19293. name: "Front",
  19294. image: {
  19295. source: "./media/characters/inca/front.svg",
  19296. extra: 294 / 291,
  19297. bottom: 0.03
  19298. }
  19299. },
  19300. },
  19301. [
  19302. {
  19303. name: "Normal",
  19304. height: math.unit(5 + 9 / 12, "feet"),
  19305. default: true
  19306. },
  19307. ]
  19308. ))
  19309. characterMakers.push(() => makeCharacter(
  19310. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19311. {
  19312. front: {
  19313. height: math.unit(5 + 1 / 12, "feet"),
  19314. weight: math.unit(84, "lb"),
  19315. name: "Front",
  19316. image: {
  19317. source: "./media/characters/magdalene/front.svg",
  19318. extra: 293 / 273
  19319. }
  19320. },
  19321. },
  19322. [
  19323. {
  19324. name: "Normal",
  19325. height: math.unit(5 + 1 / 12, "feet"),
  19326. default: true
  19327. },
  19328. ]
  19329. ))
  19330. characterMakers.push(() => makeCharacter(
  19331. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19332. {
  19333. front: {
  19334. height: math.unit(6 + 3 / 12, "feet"),
  19335. weight: math.unit(185, "lb"),
  19336. name: "Front",
  19337. image: {
  19338. source: "./media/characters/mera/front.svg",
  19339. extra: 291 / 277,
  19340. bottom: 0.03
  19341. }
  19342. },
  19343. },
  19344. [
  19345. {
  19346. name: "Normal",
  19347. height: math.unit(6 + 3 / 12, "feet"),
  19348. default: true
  19349. },
  19350. ]
  19351. ))
  19352. characterMakers.push(() => makeCharacter(
  19353. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19354. {
  19355. front: {
  19356. height: math.unit(6 + 7 / 12, "feet"),
  19357. weight: math.unit(160, "lb"),
  19358. name: "Front",
  19359. image: {
  19360. source: "./media/characters/ceres/front.svg",
  19361. extra: 1023 / 950,
  19362. bottom: 0.027
  19363. }
  19364. },
  19365. back: {
  19366. height: math.unit(6 + 7 / 12, "feet"),
  19367. weight: math.unit(160, "lb"),
  19368. name: "Back",
  19369. image: {
  19370. source: "./media/characters/ceres/back.svg",
  19371. extra: 1023 / 950
  19372. }
  19373. },
  19374. },
  19375. [
  19376. {
  19377. name: "Normal",
  19378. height: math.unit(6 + 7 / 12, "feet"),
  19379. default: true
  19380. },
  19381. ]
  19382. ))
  19383. characterMakers.push(() => makeCharacter(
  19384. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19385. {
  19386. front: {
  19387. height: math.unit(5 + 10 / 12, "feet"),
  19388. weight: math.unit(150, "lb"),
  19389. name: "Front",
  19390. image: {
  19391. source: "./media/characters/kris/front.svg",
  19392. extra: 885 / 803,
  19393. bottom: 0.03
  19394. }
  19395. },
  19396. },
  19397. [
  19398. {
  19399. name: "Normal",
  19400. height: math.unit(5 + 10 / 12, "feet"),
  19401. default: true
  19402. },
  19403. ]
  19404. ))
  19405. characterMakers.push(() => makeCharacter(
  19406. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19407. {
  19408. front: {
  19409. height: math.unit(7, "feet"),
  19410. weight: math.unit(120, "kg"),
  19411. name: "Front",
  19412. image: {
  19413. source: "./media/characters/taluthus/front.svg",
  19414. extra: 903 / 833,
  19415. bottom: 0.015
  19416. }
  19417. },
  19418. },
  19419. [
  19420. {
  19421. name: "Normal",
  19422. height: math.unit(7, "feet"),
  19423. default: true
  19424. },
  19425. {
  19426. name: "Macro",
  19427. height: math.unit(300, "feet")
  19428. },
  19429. ]
  19430. ))
  19431. characterMakers.push(() => makeCharacter(
  19432. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19433. {
  19434. front: {
  19435. height: math.unit(5 + 9 / 12, "feet"),
  19436. weight: math.unit(145, "lb"),
  19437. name: "Front",
  19438. image: {
  19439. source: "./media/characters/dawn/front.svg",
  19440. extra: 2094 / 2016,
  19441. bottom: 0.025
  19442. }
  19443. },
  19444. back: {
  19445. height: math.unit(5 + 9 / 12, "feet"),
  19446. weight: math.unit(160, "lb"),
  19447. name: "Back",
  19448. image: {
  19449. source: "./media/characters/dawn/back.svg",
  19450. extra: 2112 / 2080,
  19451. bottom: 0.005
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Normal",
  19458. height: math.unit(6 + 7 / 12, "feet"),
  19459. default: true
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19465. {
  19466. anthro: {
  19467. height: math.unit(8 + 3 / 12, "feet"),
  19468. weight: math.unit(450, "lb"),
  19469. name: "Anthro",
  19470. image: {
  19471. source: "./media/characters/arador/anthro.svg",
  19472. extra: 1835 / 1718,
  19473. bottom: 0.025
  19474. }
  19475. },
  19476. feral: {
  19477. height: math.unit(4, "feet"),
  19478. weight: math.unit(200, "lb"),
  19479. name: "Feral",
  19480. image: {
  19481. source: "./media/characters/arador/feral.svg",
  19482. extra: 1683 / 1514,
  19483. bottom: 0.07
  19484. }
  19485. },
  19486. },
  19487. [
  19488. {
  19489. name: "Normal",
  19490. height: math.unit(8 + 3 / 12, "feet")
  19491. },
  19492. {
  19493. name: "Macro",
  19494. height: math.unit(82.5, "feet"),
  19495. default: true
  19496. },
  19497. ]
  19498. ))
  19499. characterMakers.push(() => makeCharacter(
  19500. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19501. {
  19502. front: {
  19503. height: math.unit(5 + 10 / 12, "feet"),
  19504. weight: math.unit(125, "lb"),
  19505. name: "Front",
  19506. image: {
  19507. source: "./media/characters/dharsi/front.svg",
  19508. extra: 716 / 630,
  19509. bottom: 0.035
  19510. }
  19511. },
  19512. },
  19513. [
  19514. {
  19515. name: "Nano",
  19516. height: math.unit(100, "nm")
  19517. },
  19518. {
  19519. name: "Micro",
  19520. height: math.unit(2, "inches")
  19521. },
  19522. {
  19523. name: "Normal",
  19524. height: math.unit(5 + 10 / 12, "feet"),
  19525. default: true
  19526. },
  19527. {
  19528. name: "Macro",
  19529. height: math.unit(1000, "feet")
  19530. },
  19531. {
  19532. name: "Megamacro",
  19533. height: math.unit(10, "miles")
  19534. },
  19535. {
  19536. name: "Gigamacro",
  19537. height: math.unit(3000, "miles")
  19538. },
  19539. {
  19540. name: "Teramacro",
  19541. height: math.unit(500000, "miles")
  19542. },
  19543. {
  19544. name: "Teramacro+",
  19545. height: math.unit(30, "galaxies")
  19546. },
  19547. ]
  19548. ))
  19549. characterMakers.push(() => makeCharacter(
  19550. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19551. {
  19552. front: {
  19553. height: math.unit(6, "feet"),
  19554. weight: math.unit(150, "lb"),
  19555. name: "Front",
  19556. image: {
  19557. source: "./media/characters/deathy/front.svg",
  19558. extra: 1552 / 1463,
  19559. bottom: 0.025
  19560. }
  19561. },
  19562. side: {
  19563. height: math.unit(6, "feet"),
  19564. weight: math.unit(150, "lb"),
  19565. name: "Side",
  19566. image: {
  19567. source: "./media/characters/deathy/side.svg",
  19568. extra: 1604 / 1455,
  19569. bottom: 0.025
  19570. }
  19571. },
  19572. back: {
  19573. height: math.unit(6, "feet"),
  19574. weight: math.unit(150, "lb"),
  19575. name: "Back",
  19576. image: {
  19577. source: "./media/characters/deathy/back.svg",
  19578. extra: 1580 / 1463,
  19579. bottom: 0.005
  19580. }
  19581. },
  19582. },
  19583. [
  19584. {
  19585. name: "Micro",
  19586. height: math.unit(5, "millimeters")
  19587. },
  19588. {
  19589. name: "Normal",
  19590. height: math.unit(6 + 5 / 12, "feet"),
  19591. default: true
  19592. },
  19593. ]
  19594. ))
  19595. characterMakers.push(() => makeCharacter(
  19596. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19597. {
  19598. front: {
  19599. height: math.unit(16, "feet"),
  19600. weight: math.unit(4000, "lb"),
  19601. name: "Front",
  19602. image: {
  19603. source: "./media/characters/juniper/front.svg",
  19604. bottom: 0.04
  19605. }
  19606. },
  19607. },
  19608. [
  19609. {
  19610. name: "Normal",
  19611. height: math.unit(16, "feet"),
  19612. default: true
  19613. },
  19614. ]
  19615. ))
  19616. characterMakers.push(() => makeCharacter(
  19617. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19618. {
  19619. front: {
  19620. height: math.unit(6, "feet"),
  19621. weight: math.unit(150, "lb"),
  19622. name: "Front",
  19623. image: {
  19624. source: "./media/characters/hipster/front.svg",
  19625. extra: 1312 / 1209,
  19626. bottom: 0.025
  19627. }
  19628. },
  19629. back: {
  19630. height: math.unit(6, "feet"),
  19631. weight: math.unit(150, "lb"),
  19632. name: "Back",
  19633. image: {
  19634. source: "./media/characters/hipster/back.svg",
  19635. extra: 1281 / 1196,
  19636. bottom: 0.01
  19637. }
  19638. },
  19639. },
  19640. [
  19641. {
  19642. name: "Micro",
  19643. height: math.unit(1, "mm")
  19644. },
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(4, "inches"),
  19648. default: true
  19649. },
  19650. {
  19651. name: "Macro",
  19652. height: math.unit(500, "feet")
  19653. },
  19654. {
  19655. name: "Megamacro",
  19656. height: math.unit(1000, "miles")
  19657. },
  19658. ]
  19659. ))
  19660. characterMakers.push(() => makeCharacter(
  19661. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19662. {
  19663. front: {
  19664. height: math.unit(6, "feet"),
  19665. weight: math.unit(150, "lb"),
  19666. name: "Front",
  19667. image: {
  19668. source: "./media/characters/tendirmuldr/front.svg",
  19669. extra: 1878 / 1772,
  19670. bottom: 0.015
  19671. }
  19672. },
  19673. },
  19674. [
  19675. {
  19676. name: "Megamacro",
  19677. height: math.unit(1500, "miles"),
  19678. default: true
  19679. },
  19680. ]
  19681. ))
  19682. characterMakers.push(() => makeCharacter(
  19683. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19684. {
  19685. front: {
  19686. height: math.unit(14, "feet"),
  19687. weight: math.unit(12000, "lb"),
  19688. name: "Front",
  19689. image: {
  19690. source: "./media/characters/mort/front.svg",
  19691. extra: 365 / 318,
  19692. bottom: 0.01
  19693. }
  19694. },
  19695. side: {
  19696. height: math.unit(14, "feet"),
  19697. weight: math.unit(12000, "lb"),
  19698. name: "Side",
  19699. image: {
  19700. source: "./media/characters/mort/side.svg",
  19701. extra: 365 / 318,
  19702. bottom: 0.052
  19703. },
  19704. default: true
  19705. },
  19706. back: {
  19707. height: math.unit(14, "feet"),
  19708. weight: math.unit(12000, "lb"),
  19709. name: "Back",
  19710. image: {
  19711. source: "./media/characters/mort/back.svg",
  19712. extra: 371 / 332,
  19713. bottom: 0.18
  19714. }
  19715. },
  19716. },
  19717. [
  19718. {
  19719. name: "Normal",
  19720. height: math.unit(14, "feet"),
  19721. default: true
  19722. },
  19723. ]
  19724. ))
  19725. characterMakers.push(() => makeCharacter(
  19726. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19727. {
  19728. front: {
  19729. height: math.unit(8, "feet"),
  19730. weight: math.unit(1, "ton"),
  19731. name: "Front",
  19732. image: {
  19733. source: "./media/characters/lycoa/front.svg",
  19734. extra: 1875 / 1789,
  19735. bottom: 0.022
  19736. }
  19737. },
  19738. back: {
  19739. height: math.unit(8, "feet"),
  19740. weight: math.unit(1, "ton"),
  19741. name: "Back",
  19742. image: {
  19743. source: "./media/characters/lycoa/back.svg",
  19744. extra: 1835 / 1781,
  19745. bottom: 0.03
  19746. }
  19747. },
  19748. head: {
  19749. height: math.unit(2.1, "feet"),
  19750. name: "Head",
  19751. image: {
  19752. source: "./media/characters/lycoa/head.svg"
  19753. }
  19754. },
  19755. tailmaw: {
  19756. height: math.unit(1.9, "feet"),
  19757. name: "Tailmaw",
  19758. image: {
  19759. source: "./media/characters/lycoa/tailmaw.svg"
  19760. }
  19761. },
  19762. tentacles: {
  19763. height: math.unit(2.1, "feet"),
  19764. name: "Tentacles",
  19765. image: {
  19766. source: "./media/characters/lycoa/tentacles.svg"
  19767. }
  19768. },
  19769. dick: {
  19770. height: math.unit(1.73, "feet"),
  19771. name: "Dick",
  19772. image: {
  19773. source: "./media/characters/lycoa/dick.svg"
  19774. }
  19775. },
  19776. },
  19777. [
  19778. {
  19779. name: "Normal",
  19780. height: math.unit(8, "feet"),
  19781. default: true
  19782. },
  19783. {
  19784. name: "Macro",
  19785. height: math.unit(30, "feet")
  19786. },
  19787. ]
  19788. ))
  19789. characterMakers.push(() => makeCharacter(
  19790. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19791. {
  19792. front: {
  19793. height: math.unit(4 + 2 / 12, "feet"),
  19794. weight: math.unit(70, "lb"),
  19795. name: "Front",
  19796. image: {
  19797. source: "./media/characters/naldara/front.svg",
  19798. extra: 841 / 720,
  19799. bottom: 0.04
  19800. }
  19801. },
  19802. naga: {
  19803. height: math.unit(23, "feet"),
  19804. weight: math.unit(15000, "kg"),
  19805. name: "Naga",
  19806. image: {
  19807. source: "./media/characters/naldara/naga.svg",
  19808. extra: 3290 / 2959,
  19809. bottom: 124 / 3432
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Normal",
  19816. height: math.unit(4 + 2 / 12, "feet"),
  19817. default: true
  19818. },
  19819. ]
  19820. ))
  19821. characterMakers.push(() => makeCharacter(
  19822. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19823. {
  19824. front: {
  19825. height: math.unit(13 + 7 / 12, "feet"),
  19826. weight: math.unit(1500, "lb"),
  19827. name: "Front",
  19828. image: {
  19829. source: "./media/characters/briar/front.svg",
  19830. extra: 626 / 596,
  19831. bottom: 0.08
  19832. }
  19833. },
  19834. },
  19835. [
  19836. {
  19837. name: "Normal",
  19838. height: math.unit(13 + 7 / 12, "feet"),
  19839. default: true
  19840. },
  19841. ]
  19842. ))
  19843. characterMakers.push(() => makeCharacter(
  19844. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19845. {
  19846. side: {
  19847. height: math.unit(10, "feet"),
  19848. weight: math.unit(500, "lb"),
  19849. name: "Side",
  19850. image: {
  19851. source: "./media/characters/vanguard/side.svg",
  19852. extra: 502 / 425,
  19853. bottom: 0.087
  19854. }
  19855. },
  19856. },
  19857. [
  19858. {
  19859. name: "Normal",
  19860. height: math.unit(10, "feet"),
  19861. default: true
  19862. },
  19863. ]
  19864. ))
  19865. characterMakers.push(() => makeCharacter(
  19866. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19867. {
  19868. front: {
  19869. height: math.unit(7.5, "feet"),
  19870. weight: math.unit(2, "lb"),
  19871. name: "Front",
  19872. image: {
  19873. source: "./media/characters/artemis/front.svg",
  19874. extra: 1192 / 1075,
  19875. bottom: 0.07
  19876. }
  19877. },
  19878. frontNsfw: {
  19879. height: math.unit(7.5, "feet"),
  19880. weight: math.unit(2, "lb"),
  19881. name: "Front (NSFW)",
  19882. image: {
  19883. source: "./media/characters/artemis/front-nsfw.svg",
  19884. extra: 1192 / 1075,
  19885. bottom: 0.07
  19886. }
  19887. },
  19888. frontNsfwer: {
  19889. height: math.unit(7.5, "feet"),
  19890. weight: math.unit(2, "lb"),
  19891. name: "Front (NSFW-er)",
  19892. image: {
  19893. source: "./media/characters/artemis/front-nsfwer.svg",
  19894. extra: 1192 / 1075,
  19895. bottom: 0.07
  19896. }
  19897. },
  19898. side: {
  19899. height: math.unit(7.5, "feet"),
  19900. weight: math.unit(2, "lb"),
  19901. name: "Side",
  19902. image: {
  19903. source: "./media/characters/artemis/side.svg",
  19904. extra: 1192 / 1075,
  19905. bottom: 0.07
  19906. }
  19907. },
  19908. sideNsfw: {
  19909. height: math.unit(7.5, "feet"),
  19910. weight: math.unit(2, "lb"),
  19911. name: "Side (NSFW)",
  19912. image: {
  19913. source: "./media/characters/artemis/side-nsfw.svg",
  19914. extra: 1192 / 1075,
  19915. bottom: 0.07
  19916. }
  19917. },
  19918. sideNsfwer: {
  19919. height: math.unit(7.5, "feet"),
  19920. weight: math.unit(2, "lb"),
  19921. name: "Side (NSFW-er)",
  19922. image: {
  19923. source: "./media/characters/artemis/side-nsfwer.svg",
  19924. extra: 1192 / 1075,
  19925. bottom: 0.07
  19926. }
  19927. },
  19928. maw: {
  19929. height: math.unit(1.1, "feet"),
  19930. name: "Maw",
  19931. image: {
  19932. source: "./media/characters/artemis/maw.svg"
  19933. }
  19934. },
  19935. stomach: {
  19936. height: math.unit(0.95, "feet"),
  19937. name: "Stomach",
  19938. image: {
  19939. source: "./media/characters/artemis/stomach.svg"
  19940. }
  19941. },
  19942. dickCanine: {
  19943. height: math.unit(1, "feet"),
  19944. name: "Dick (Canine)",
  19945. image: {
  19946. source: "./media/characters/artemis/dick-canine.svg"
  19947. }
  19948. },
  19949. dickEquine: {
  19950. height: math.unit(0.85, "feet"),
  19951. name: "Dick (Equine)",
  19952. image: {
  19953. source: "./media/characters/artemis/dick-equine.svg"
  19954. }
  19955. },
  19956. dickExotic: {
  19957. height: math.unit(0.85, "feet"),
  19958. name: "Dick (Exotic)",
  19959. image: {
  19960. source: "./media/characters/artemis/dick-exotic.svg"
  19961. }
  19962. },
  19963. },
  19964. [
  19965. {
  19966. name: "Normal",
  19967. height: math.unit(7.5, "feet"),
  19968. default: true
  19969. },
  19970. {
  19971. name: "Enlarged",
  19972. height: math.unit(12, "feet")
  19973. },
  19974. ]
  19975. ))
  19976. characterMakers.push(() => makeCharacter(
  19977. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19978. {
  19979. front: {
  19980. height: math.unit(5 + 3 / 12, "feet"),
  19981. weight: math.unit(160, "lb"),
  19982. name: "Front",
  19983. image: {
  19984. source: "./media/characters/kira/front.svg",
  19985. extra: 906 / 786,
  19986. bottom: 0.01
  19987. }
  19988. },
  19989. back: {
  19990. height: math.unit(5 + 3 / 12, "feet"),
  19991. weight: math.unit(160, "lb"),
  19992. name: "Back",
  19993. image: {
  19994. source: "./media/characters/kira/back.svg",
  19995. extra: 882 / 757,
  19996. bottom: 0.005
  19997. }
  19998. },
  19999. frontDressed: {
  20000. height: math.unit(5 + 3 / 12, "feet"),
  20001. weight: math.unit(160, "lb"),
  20002. name: "Front (Dressed)",
  20003. image: {
  20004. source: "./media/characters/kira/front-dressed.svg",
  20005. extra: 906 / 786,
  20006. bottom: 0.01
  20007. }
  20008. },
  20009. beans: {
  20010. height: math.unit(0.92, "feet"),
  20011. name: "Beans",
  20012. image: {
  20013. source: "./media/characters/kira/beans.svg"
  20014. }
  20015. },
  20016. },
  20017. [
  20018. {
  20019. name: "Normal",
  20020. height: math.unit(5 + 3 / 12, "feet"),
  20021. default: true
  20022. },
  20023. ]
  20024. ))
  20025. characterMakers.push(() => makeCharacter(
  20026. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20027. {
  20028. front: {
  20029. height: math.unit(5 + 4 / 12, "feet"),
  20030. weight: math.unit(145, "lb"),
  20031. name: "Front",
  20032. image: {
  20033. source: "./media/characters/scramble/front.svg",
  20034. extra: 763 / 727,
  20035. bottom: 0.05
  20036. }
  20037. },
  20038. back: {
  20039. height: math.unit(5 + 4 / 12, "feet"),
  20040. weight: math.unit(145, "lb"),
  20041. name: "Back",
  20042. image: {
  20043. source: "./media/characters/scramble/back.svg",
  20044. extra: 826 / 737,
  20045. bottom: 0.002
  20046. }
  20047. },
  20048. },
  20049. [
  20050. {
  20051. name: "Normal",
  20052. height: math.unit(5 + 4 / 12, "feet"),
  20053. default: true
  20054. },
  20055. ]
  20056. ))
  20057. characterMakers.push(() => makeCharacter(
  20058. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20059. {
  20060. side: {
  20061. height: math.unit(6 + 2 / 12, "feet"),
  20062. weight: math.unit(190, "lb"),
  20063. name: "Side",
  20064. image: {
  20065. source: "./media/characters/biscuit/side.svg",
  20066. extra: 858 / 791,
  20067. bottom: 0.044
  20068. }
  20069. },
  20070. },
  20071. [
  20072. {
  20073. name: "Normal",
  20074. height: math.unit(6 + 2 / 12, "feet"),
  20075. default: true
  20076. },
  20077. ]
  20078. ))
  20079. characterMakers.push(() => makeCharacter(
  20080. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20081. {
  20082. front: {
  20083. height: math.unit(5 + 2 / 12, "feet"),
  20084. weight: math.unit(120, "lb"),
  20085. name: "Front",
  20086. image: {
  20087. source: "./media/characters/poffin/front.svg",
  20088. extra: 786 / 680,
  20089. bottom: 0.005
  20090. }
  20091. },
  20092. },
  20093. [
  20094. {
  20095. name: "Normal",
  20096. height: math.unit(5 + 2 / 12, "feet"),
  20097. default: true
  20098. },
  20099. ]
  20100. ))
  20101. characterMakers.push(() => makeCharacter(
  20102. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20103. {
  20104. front: {
  20105. height: math.unit(6 + 3 / 12, "feet"),
  20106. weight: math.unit(519, "lb"),
  20107. name: "Front",
  20108. image: {
  20109. source: "./media/characters/dhari/front.svg",
  20110. extra: 1048 / 946,
  20111. bottom: 0.015
  20112. }
  20113. },
  20114. back: {
  20115. height: math.unit(6 + 3 / 12, "feet"),
  20116. weight: math.unit(519, "lb"),
  20117. name: "Back",
  20118. image: {
  20119. source: "./media/characters/dhari/back.svg",
  20120. extra: 1048 / 931,
  20121. bottom: 0.005
  20122. }
  20123. },
  20124. frontDressed: {
  20125. height: math.unit(6 + 3 / 12, "feet"),
  20126. weight: math.unit(519, "lb"),
  20127. name: "Front (Dressed)",
  20128. image: {
  20129. source: "./media/characters/dhari/front-dressed.svg",
  20130. extra: 1713 / 1546,
  20131. bottom: 0.02
  20132. }
  20133. },
  20134. backDressed: {
  20135. height: math.unit(6 + 3 / 12, "feet"),
  20136. weight: math.unit(519, "lb"),
  20137. name: "Back (Dressed)",
  20138. image: {
  20139. source: "./media/characters/dhari/back-dressed.svg",
  20140. extra: 1699 / 1537,
  20141. bottom: 0.01
  20142. }
  20143. },
  20144. maw: {
  20145. height: math.unit(0.95, "feet"),
  20146. name: "Maw",
  20147. image: {
  20148. source: "./media/characters/dhari/maw.svg"
  20149. }
  20150. },
  20151. wereFront: {
  20152. height: math.unit(12 + 8 / 12, "feet"),
  20153. weight: math.unit(4000, "lb"),
  20154. name: "Front (Were)",
  20155. image: {
  20156. source: "./media/characters/dhari/were-front.svg",
  20157. extra: 1065 / 969,
  20158. bottom: 0.015
  20159. }
  20160. },
  20161. wereBack: {
  20162. height: math.unit(12 + 8 / 12, "feet"),
  20163. weight: math.unit(4000, "lb"),
  20164. name: "Back (Were)",
  20165. image: {
  20166. source: "./media/characters/dhari/were-back.svg",
  20167. extra: 1065 / 969,
  20168. bottom: 0.012
  20169. }
  20170. },
  20171. wereMaw: {
  20172. height: math.unit(0.625, "meters"),
  20173. name: "Maw (Were)",
  20174. image: {
  20175. source: "./media/characters/dhari/were-maw.svg"
  20176. }
  20177. },
  20178. },
  20179. [
  20180. {
  20181. name: "Normal",
  20182. height: math.unit(6 + 3 / 12, "feet"),
  20183. default: true
  20184. },
  20185. ]
  20186. ))
  20187. characterMakers.push(() => makeCharacter(
  20188. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20189. {
  20190. anthro: {
  20191. height: math.unit(5 + 7 / 12, "feet"),
  20192. weight: math.unit(175, "lb"),
  20193. name: "Anthro",
  20194. image: {
  20195. source: "./media/characters/rena-dyne/anthro.svg",
  20196. extra: 1849 / 1785,
  20197. bottom: 0.005
  20198. }
  20199. },
  20200. taur: {
  20201. height: math.unit(15 + 6 / 12, "feet"),
  20202. weight: math.unit(8000, "lb"),
  20203. name: "Taur",
  20204. image: {
  20205. source: "./media/characters/rena-dyne/taur.svg",
  20206. extra: 2315 / 2234,
  20207. bottom: 0.033
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Normal",
  20214. height: math.unit(5 + 7 / 12, "feet"),
  20215. default: true
  20216. },
  20217. ]
  20218. ))
  20219. characterMakers.push(() => makeCharacter(
  20220. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20221. {
  20222. front: {
  20223. height: math.unit(8, "feet"),
  20224. weight: math.unit(600, "lb"),
  20225. name: "Front",
  20226. image: {
  20227. source: "./media/characters/weremeep/front.svg",
  20228. extra: 967 / 862,
  20229. bottom: 0.01
  20230. }
  20231. },
  20232. },
  20233. [
  20234. {
  20235. name: "Normal",
  20236. height: math.unit(8, "feet"),
  20237. default: true
  20238. },
  20239. {
  20240. name: "Lorg",
  20241. height: math.unit(12, "feet")
  20242. },
  20243. {
  20244. name: "Oh Lawd She Comin'",
  20245. height: math.unit(20, "feet")
  20246. },
  20247. ]
  20248. ))
  20249. characterMakers.push(() => makeCharacter(
  20250. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20251. {
  20252. front: {
  20253. height: math.unit(4, "feet"),
  20254. weight: math.unit(90, "lb"),
  20255. name: "Front",
  20256. image: {
  20257. source: "./media/characters/reza/front.svg",
  20258. extra: 1183 / 1111,
  20259. bottom: 0.017
  20260. }
  20261. },
  20262. back: {
  20263. height: math.unit(4, "feet"),
  20264. weight: math.unit(90, "lb"),
  20265. name: "Back",
  20266. image: {
  20267. source: "./media/characters/reza/back.svg",
  20268. extra: 1183 / 1111,
  20269. bottom: 0.01
  20270. }
  20271. },
  20272. drake: {
  20273. height: math.unit(30, "feet"),
  20274. weight: math.unit(246960, "lb"),
  20275. name: "Drake",
  20276. image: {
  20277. source: "./media/characters/reza/drake.svg",
  20278. extra: 2350 / 2024,
  20279. bottom: 60.7 / 2403
  20280. }
  20281. },
  20282. },
  20283. [
  20284. {
  20285. name: "Normal",
  20286. height: math.unit(4, "feet"),
  20287. default: true
  20288. },
  20289. ]
  20290. ))
  20291. characterMakers.push(() => makeCharacter(
  20292. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20293. {
  20294. side: {
  20295. height: math.unit(15, "feet"),
  20296. weight: math.unit(14, "tons"),
  20297. name: "Side",
  20298. image: {
  20299. source: "./media/characters/athea/side.svg",
  20300. extra: 960 / 540,
  20301. bottom: 0.003
  20302. }
  20303. },
  20304. sitting: {
  20305. height: math.unit(6 * 2.85, "feet"),
  20306. weight: math.unit(14, "tons"),
  20307. name: "Sitting",
  20308. image: {
  20309. source: "./media/characters/athea/sitting.svg",
  20310. extra: 621 / 581,
  20311. bottom: 0.075
  20312. }
  20313. },
  20314. maw: {
  20315. height: math.unit(7.59498031496063, "feet"),
  20316. name: "Maw",
  20317. image: {
  20318. source: "./media/characters/athea/maw.svg"
  20319. }
  20320. },
  20321. },
  20322. [
  20323. {
  20324. name: "Lap Cat",
  20325. height: math.unit(2.5, "feet")
  20326. },
  20327. {
  20328. name: "Minimacro",
  20329. height: math.unit(15, "feet"),
  20330. default: true
  20331. },
  20332. {
  20333. name: "Macro",
  20334. height: math.unit(120, "feet")
  20335. },
  20336. {
  20337. name: "Macro+",
  20338. height: math.unit(640, "feet")
  20339. },
  20340. {
  20341. name: "Colossus",
  20342. height: math.unit(2.2, "miles")
  20343. },
  20344. ]
  20345. ))
  20346. characterMakers.push(() => makeCharacter(
  20347. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20348. {
  20349. front: {
  20350. height: math.unit(8 + 8 / 12, "feet"),
  20351. weight: math.unit(130, "kg"),
  20352. name: "Front",
  20353. image: {
  20354. source: "./media/characters/seroko/front.svg",
  20355. extra: 1385 / 1280,
  20356. bottom: 0.025
  20357. }
  20358. },
  20359. back: {
  20360. height: math.unit(8 + 8 / 12, "feet"),
  20361. weight: math.unit(130, "kg"),
  20362. name: "Back",
  20363. image: {
  20364. source: "./media/characters/seroko/back.svg",
  20365. extra: 1369 / 1238,
  20366. bottom: 0.018
  20367. }
  20368. },
  20369. frontDressed: {
  20370. height: math.unit(8 + 8 / 12, "feet"),
  20371. weight: math.unit(130, "kg"),
  20372. name: "Front (Dressed)",
  20373. image: {
  20374. source: "./media/characters/seroko/front-dressed.svg",
  20375. extra: 1366 / 1275,
  20376. bottom: 0.03
  20377. }
  20378. },
  20379. },
  20380. [
  20381. {
  20382. name: "Normal",
  20383. height: math.unit(8 + 8 / 12, "feet"),
  20384. default: true
  20385. },
  20386. ]
  20387. ))
  20388. characterMakers.push(() => makeCharacter(
  20389. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20390. {
  20391. front: {
  20392. height: math.unit(5.5, "feet"),
  20393. weight: math.unit(160, "lb"),
  20394. name: "Front",
  20395. image: {
  20396. source: "./media/characters/quatzi/front.svg",
  20397. extra: 2346 / 2242,
  20398. bottom: 0.015
  20399. }
  20400. },
  20401. },
  20402. [
  20403. {
  20404. name: "Normal",
  20405. height: math.unit(5.5, "feet"),
  20406. default: true
  20407. },
  20408. {
  20409. name: "Big",
  20410. height: math.unit(7.7, "feet")
  20411. },
  20412. ]
  20413. ))
  20414. characterMakers.push(() => makeCharacter(
  20415. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20416. {
  20417. front: {
  20418. height: math.unit(5 + 11 / 12, "feet"),
  20419. weight: math.unit(180, "lb"),
  20420. name: "Front",
  20421. image: {
  20422. source: "./media/characters/sen/front.svg",
  20423. extra: 1321 / 1254,
  20424. bottom: 0.015
  20425. }
  20426. },
  20427. side: {
  20428. height: math.unit(5 + 11 / 12, "feet"),
  20429. weight: math.unit(180, "lb"),
  20430. name: "Side",
  20431. image: {
  20432. source: "./media/characters/sen/side.svg",
  20433. extra: 1321 / 1254,
  20434. bottom: 0.007
  20435. }
  20436. },
  20437. back: {
  20438. height: math.unit(5 + 11 / 12, "feet"),
  20439. weight: math.unit(180, "lb"),
  20440. name: "Back",
  20441. image: {
  20442. source: "./media/characters/sen/back.svg",
  20443. extra: 1321 / 1254
  20444. }
  20445. },
  20446. },
  20447. [
  20448. {
  20449. name: "Normal",
  20450. height: math.unit(5 + 11 / 12, "feet"),
  20451. default: true
  20452. },
  20453. ]
  20454. ))
  20455. characterMakers.push(() => makeCharacter(
  20456. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20457. {
  20458. front: {
  20459. height: math.unit(166.6, "cm"),
  20460. weight: math.unit(66.6, "kg"),
  20461. name: "Front",
  20462. image: {
  20463. source: "./media/characters/fruity/front.svg",
  20464. extra: 1510 / 1386,
  20465. bottom: 0.04
  20466. }
  20467. },
  20468. back: {
  20469. height: math.unit(166.6, "cm"),
  20470. weight: math.unit(66.6, "lb"),
  20471. name: "Back",
  20472. image: {
  20473. source: "./media/characters/fruity/back.svg",
  20474. extra: 1563 / 1435,
  20475. bottom: 0.005
  20476. }
  20477. },
  20478. },
  20479. [
  20480. {
  20481. name: "Normal",
  20482. height: math.unit(166.6, "cm"),
  20483. default: true
  20484. },
  20485. {
  20486. name: "Demonic",
  20487. height: math.unit(166.6, "feet")
  20488. },
  20489. ]
  20490. ))
  20491. characterMakers.push(() => makeCharacter(
  20492. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20493. {
  20494. side: {
  20495. height: math.unit(10, "feet"),
  20496. weight: math.unit(500, "lb"),
  20497. name: "Side",
  20498. image: {
  20499. source: "./media/characters/zost/side.svg",
  20500. extra: 966 / 880,
  20501. bottom: 0.075
  20502. }
  20503. },
  20504. mawFront: {
  20505. height: math.unit(1.08, "meters"),
  20506. name: "Maw (Front)",
  20507. image: {
  20508. source: "./media/characters/zost/maw-front.svg"
  20509. }
  20510. },
  20511. mawSide: {
  20512. height: math.unit(2.66, "feet"),
  20513. name: "Maw (Side)",
  20514. image: {
  20515. source: "./media/characters/zost/maw-side.svg"
  20516. }
  20517. },
  20518. },
  20519. [
  20520. {
  20521. name: "Normal",
  20522. height: math.unit(10, "feet"),
  20523. default: true
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20529. {
  20530. front: {
  20531. height: math.unit(5 + 4 / 12, "feet"),
  20532. weight: math.unit(120, "lb"),
  20533. name: "Front",
  20534. image: {
  20535. source: "./media/characters/luci/front.svg",
  20536. extra: 1985 / 1884,
  20537. bottom: 0.04
  20538. }
  20539. },
  20540. back: {
  20541. height: math.unit(5 + 4 / 12, "feet"),
  20542. weight: math.unit(120, "lb"),
  20543. name: "Back",
  20544. image: {
  20545. source: "./media/characters/luci/back.svg",
  20546. extra: 1892 / 1791,
  20547. bottom: 0.002
  20548. }
  20549. },
  20550. },
  20551. [
  20552. {
  20553. name: "Normal",
  20554. height: math.unit(5 + 4 / 12, "feet"),
  20555. default: true
  20556. },
  20557. ]
  20558. ))
  20559. characterMakers.push(() => makeCharacter(
  20560. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20561. {
  20562. front: {
  20563. height: math.unit(1500, "feet"),
  20564. weight: math.unit(3.8e6, "tons"),
  20565. name: "Front",
  20566. image: {
  20567. source: "./media/characters/2th/front.svg",
  20568. extra: 3489 / 3350,
  20569. bottom: 0.1
  20570. }
  20571. },
  20572. foot: {
  20573. height: math.unit(461, "feet"),
  20574. name: "Foot",
  20575. image: {
  20576. source: "./media/characters/2th/foot.svg"
  20577. }
  20578. },
  20579. },
  20580. [
  20581. {
  20582. name: "\"Micro\"",
  20583. height: math.unit(15 + 7 / 12, "feet")
  20584. },
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(1500, "feet"),
  20588. default: true
  20589. },
  20590. {
  20591. name: "Macro",
  20592. height: math.unit(5000, "feet")
  20593. },
  20594. {
  20595. name: "Megamacro",
  20596. height: math.unit(15, "miles")
  20597. },
  20598. {
  20599. name: "Gigamacro",
  20600. height: math.unit(4000, "miles")
  20601. },
  20602. {
  20603. name: "Galactic",
  20604. height: math.unit(50, "AU")
  20605. },
  20606. ]
  20607. ))
  20608. characterMakers.push(() => makeCharacter(
  20609. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20610. {
  20611. front: {
  20612. height: math.unit(5 + 6 / 12, "feet"),
  20613. weight: math.unit(220, "lb"),
  20614. name: "Front",
  20615. image: {
  20616. source: "./media/characters/amethyst/front.svg",
  20617. extra: 2078 / 2040,
  20618. bottom: 0.045
  20619. }
  20620. },
  20621. back: {
  20622. height: math.unit(5 + 6 / 12, "feet"),
  20623. weight: math.unit(220, "lb"),
  20624. name: "Back",
  20625. image: {
  20626. source: "./media/characters/amethyst/back.svg",
  20627. extra: 2021 / 1989,
  20628. bottom: 0.02
  20629. }
  20630. },
  20631. },
  20632. [
  20633. {
  20634. name: "Normal",
  20635. height: math.unit(5 + 6 / 12, "feet"),
  20636. default: true
  20637. },
  20638. ]
  20639. ))
  20640. characterMakers.push(() => makeCharacter(
  20641. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20642. {
  20643. front: {
  20644. height: math.unit(4 + 11 / 12, "feet"),
  20645. weight: math.unit(120, "lb"),
  20646. name: "Front",
  20647. image: {
  20648. source: "./media/characters/yumi-akiyama/front.svg",
  20649. extra: 1327 / 1235,
  20650. bottom: 0.02
  20651. }
  20652. },
  20653. back: {
  20654. height: math.unit(4 + 11 / 12, "feet"),
  20655. weight: math.unit(120, "lb"),
  20656. name: "Back",
  20657. image: {
  20658. source: "./media/characters/yumi-akiyama/back.svg",
  20659. extra: 1287 / 1245,
  20660. bottom: 0.002
  20661. }
  20662. },
  20663. },
  20664. [
  20665. {
  20666. name: "Galactic",
  20667. height: math.unit(50, "galaxies"),
  20668. default: true
  20669. },
  20670. {
  20671. name: "Universal",
  20672. height: math.unit(100, "universes")
  20673. },
  20674. ]
  20675. ))
  20676. characterMakers.push(() => makeCharacter(
  20677. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20678. {
  20679. front: {
  20680. height: math.unit(8, "feet"),
  20681. weight: math.unit(500, "lb"),
  20682. name: "Front",
  20683. image: {
  20684. source: "./media/characters/rifter-yrmori/front.svg",
  20685. extra: 1180 / 1125,
  20686. bottom: 0.02
  20687. }
  20688. },
  20689. back: {
  20690. height: math.unit(8, "feet"),
  20691. weight: math.unit(500, "lb"),
  20692. name: "Back",
  20693. image: {
  20694. source: "./media/characters/rifter-yrmori/back.svg",
  20695. extra: 1190 / 1145,
  20696. bottom: 0.001
  20697. }
  20698. },
  20699. wings: {
  20700. height: math.unit(7.75, "feet"),
  20701. weight: math.unit(500, "lb"),
  20702. name: "Wings",
  20703. image: {
  20704. source: "./media/characters/rifter-yrmori/wings.svg",
  20705. extra: 1357 / 1285
  20706. }
  20707. },
  20708. maw: {
  20709. height: math.unit(0.8, "feet"),
  20710. name: "Maw",
  20711. image: {
  20712. source: "./media/characters/rifter-yrmori/maw.svg"
  20713. }
  20714. },
  20715. mawfront: {
  20716. height: math.unit(1.45, "feet"),
  20717. name: "Maw (Front)",
  20718. image: {
  20719. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20720. }
  20721. },
  20722. },
  20723. [
  20724. {
  20725. name: "Normal",
  20726. height: math.unit(8, "feet"),
  20727. default: true
  20728. },
  20729. {
  20730. name: "Macro",
  20731. height: math.unit(42, "meters")
  20732. },
  20733. ]
  20734. ))
  20735. characterMakers.push(() => makeCharacter(
  20736. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20737. {
  20738. were: {
  20739. height: math.unit(25 + 6 / 12, "feet"),
  20740. weight: math.unit(10000, "lb"),
  20741. name: "Were",
  20742. image: {
  20743. source: "./media/characters/tahajin/were.svg",
  20744. extra: 801 / 770,
  20745. bottom: 0.042
  20746. }
  20747. },
  20748. aquatic: {
  20749. height: math.unit(6 + 4 / 12, "feet"),
  20750. weight: math.unit(160, "lb"),
  20751. name: "Aquatic",
  20752. image: {
  20753. source: "./media/characters/tahajin/aquatic.svg",
  20754. extra: 572 / 542,
  20755. bottom: 0.04
  20756. }
  20757. },
  20758. chow: {
  20759. height: math.unit(8 + 11 / 12, "feet"),
  20760. weight: math.unit(450, "lb"),
  20761. name: "Chow",
  20762. image: {
  20763. source: "./media/characters/tahajin/chow.svg",
  20764. extra: 660 / 640,
  20765. bottom: 0.015
  20766. }
  20767. },
  20768. demiNaga: {
  20769. height: math.unit(6 + 8 / 12, "feet"),
  20770. weight: math.unit(300, "lb"),
  20771. name: "Demi Naga",
  20772. image: {
  20773. source: "./media/characters/tahajin/demi-naga.svg",
  20774. extra: 643 / 615,
  20775. bottom: 0.1
  20776. }
  20777. },
  20778. data: {
  20779. height: math.unit(5, "inches"),
  20780. weight: math.unit(0.1, "lb"),
  20781. name: "Data",
  20782. image: {
  20783. source: "./media/characters/tahajin/data.svg"
  20784. }
  20785. },
  20786. fluu: {
  20787. height: math.unit(5 + 7 / 12, "feet"),
  20788. weight: math.unit(140, "lb"),
  20789. name: "Fluu",
  20790. image: {
  20791. source: "./media/characters/tahajin/fluu.svg",
  20792. extra: 628 / 592,
  20793. bottom: 0.02
  20794. }
  20795. },
  20796. starWarrior: {
  20797. height: math.unit(4 + 5 / 12, "feet"),
  20798. weight: math.unit(50, "lb"),
  20799. name: "Star Warrior",
  20800. image: {
  20801. source: "./media/characters/tahajin/star-warrior.svg"
  20802. }
  20803. },
  20804. },
  20805. [
  20806. {
  20807. name: "Normal",
  20808. height: math.unit(25 + 6 / 12, "feet"),
  20809. default: true
  20810. },
  20811. ]
  20812. ))
  20813. characterMakers.push(() => makeCharacter(
  20814. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20815. {
  20816. front: {
  20817. height: math.unit(8, "feet"),
  20818. weight: math.unit(350, "lb"),
  20819. name: "Front",
  20820. image: {
  20821. source: "./media/characters/gabira/front.svg",
  20822. extra: 608 / 580,
  20823. bottom: 0.03
  20824. }
  20825. },
  20826. back: {
  20827. height: math.unit(8, "feet"),
  20828. weight: math.unit(350, "lb"),
  20829. name: "Back",
  20830. image: {
  20831. source: "./media/characters/gabira/back.svg",
  20832. extra: 608 / 580,
  20833. bottom: 0.03
  20834. }
  20835. },
  20836. },
  20837. [
  20838. {
  20839. name: "Normal",
  20840. height: math.unit(8, "feet"),
  20841. default: true
  20842. },
  20843. ]
  20844. ))
  20845. characterMakers.push(() => makeCharacter(
  20846. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20847. {
  20848. front: {
  20849. height: math.unit(5 + 3 / 12, "feet"),
  20850. weight: math.unit(137, "lb"),
  20851. name: "Front",
  20852. image: {
  20853. source: "./media/characters/sasha-katraine/front.svg",
  20854. bottom: 0.045
  20855. }
  20856. },
  20857. },
  20858. [
  20859. {
  20860. name: "Micro",
  20861. height: math.unit(5, "inches")
  20862. },
  20863. {
  20864. name: "Normal",
  20865. height: math.unit(5 + 3 / 12, "feet"),
  20866. default: true
  20867. },
  20868. ]
  20869. ))
  20870. characterMakers.push(() => makeCharacter(
  20871. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20872. {
  20873. side: {
  20874. height: math.unit(4, "inches"),
  20875. weight: math.unit(200, "grams"),
  20876. name: "Side",
  20877. image: {
  20878. source: "./media/characters/der/side.svg",
  20879. extra: 719 / 400,
  20880. bottom: 30.6 / 749.9187
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Micro",
  20887. height: math.unit(4, "inches"),
  20888. default: true
  20889. },
  20890. ]
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20894. {
  20895. side: {
  20896. height: math.unit(30, "meters"),
  20897. weight: math.unit(700, "tonnes"),
  20898. name: "Side",
  20899. image: {
  20900. source: "./media/characters/fixerdragon/side.svg",
  20901. extra: (1293.0514 - 116.03) / 1106.86,
  20902. bottom: 116.03 / 1293.0514
  20903. }
  20904. },
  20905. },
  20906. [
  20907. {
  20908. name: "Planck",
  20909. height: math.unit(1.6e-35, "meters")
  20910. },
  20911. {
  20912. name: "Micro",
  20913. height: math.unit(0.4, "meters")
  20914. },
  20915. {
  20916. name: "Normal",
  20917. height: math.unit(30, "meters"),
  20918. default: true
  20919. },
  20920. {
  20921. name: "Megamacro",
  20922. height: math.unit(1.2, "megameters")
  20923. },
  20924. {
  20925. name: "Teramacro",
  20926. height: math.unit(130, "terameters")
  20927. },
  20928. {
  20929. name: "Yottamacro",
  20930. height: math.unit(6200, "yottameters")
  20931. },
  20932. ]
  20933. ));
  20934. characterMakers.push(() => makeCharacter(
  20935. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20936. {
  20937. front: {
  20938. height: math.unit(8, "feet"),
  20939. weight: math.unit(250, "lb"),
  20940. name: "Front",
  20941. image: {
  20942. source: "./media/characters/kite/front.svg",
  20943. extra: 2796 / 2659,
  20944. bottom: 0.002
  20945. }
  20946. },
  20947. },
  20948. [
  20949. {
  20950. name: "Normal",
  20951. height: math.unit(8, "feet"),
  20952. default: true
  20953. },
  20954. {
  20955. name: "Macro",
  20956. height: math.unit(360, "feet")
  20957. },
  20958. {
  20959. name: "Megamacro",
  20960. height: math.unit(1500, "feet")
  20961. },
  20962. ]
  20963. ))
  20964. characterMakers.push(() => makeCharacter(
  20965. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20966. {
  20967. front: {
  20968. height: math.unit(5 + 10 / 12, "feet"),
  20969. weight: math.unit(150, "lb"),
  20970. name: "Front",
  20971. image: {
  20972. source: "./media/characters/poojawa-vynar/front.svg",
  20973. extra: (1506.1547 - 55) / 1356.6,
  20974. bottom: 55 / 1506.1547
  20975. }
  20976. },
  20977. frontTailless: {
  20978. height: math.unit(5 + 10 / 12, "feet"),
  20979. weight: math.unit(150, "lb"),
  20980. name: "Front (Tailless)",
  20981. image: {
  20982. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20983. extra: (1506.1547 - 55) / 1356.6,
  20984. bottom: 55 / 1506.1547
  20985. }
  20986. },
  20987. },
  20988. [
  20989. {
  20990. name: "Normal",
  20991. height: math.unit(5 + 10 / 12, "feet"),
  20992. default: true
  20993. },
  20994. ]
  20995. ))
  20996. characterMakers.push(() => makeCharacter(
  20997. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20998. {
  20999. front: {
  21000. height: math.unit(293, "meters"),
  21001. weight: math.unit(70400, "tons"),
  21002. name: "Front",
  21003. image: {
  21004. source: "./media/characters/violette/front.svg",
  21005. extra: 1227 / 1180,
  21006. bottom: 0.005
  21007. }
  21008. },
  21009. back: {
  21010. height: math.unit(293, "meters"),
  21011. weight: math.unit(70400, "tons"),
  21012. name: "Back",
  21013. image: {
  21014. source: "./media/characters/violette/back.svg",
  21015. extra: 1227 / 1180,
  21016. bottom: 0.005
  21017. }
  21018. },
  21019. },
  21020. [
  21021. {
  21022. name: "Macro",
  21023. height: math.unit(293, "meters"),
  21024. default: true
  21025. },
  21026. ]
  21027. ))
  21028. characterMakers.push(() => makeCharacter(
  21029. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21030. {
  21031. front: {
  21032. height: math.unit(1050, "feet"),
  21033. weight: math.unit(200000, "tons"),
  21034. name: "Front",
  21035. image: {
  21036. source: "./media/characters/alessandra/front.svg",
  21037. extra: 960 / 912,
  21038. bottom: 0.06
  21039. }
  21040. },
  21041. },
  21042. [
  21043. {
  21044. name: "Macro",
  21045. height: math.unit(1050, "feet")
  21046. },
  21047. {
  21048. name: "Macro+",
  21049. height: math.unit(900, "meters"),
  21050. default: true
  21051. },
  21052. ]
  21053. ))
  21054. characterMakers.push(() => makeCharacter(
  21055. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21056. {
  21057. front: {
  21058. height: math.unit(5, "feet"),
  21059. weight: math.unit(187, "lb"),
  21060. name: "Front",
  21061. image: {
  21062. source: "./media/characters/person/front.svg",
  21063. extra: 3087 / 2945,
  21064. bottom: 91 / 3181
  21065. }
  21066. },
  21067. },
  21068. [
  21069. {
  21070. name: "Micro",
  21071. height: math.unit(3, "inches")
  21072. },
  21073. {
  21074. name: "Normal",
  21075. height: math.unit(5, "feet"),
  21076. default: true
  21077. },
  21078. {
  21079. name: "Macro",
  21080. height: math.unit(90, "feet")
  21081. },
  21082. {
  21083. name: "Max Size",
  21084. height: math.unit(280, "feet")
  21085. },
  21086. ]
  21087. ))
  21088. characterMakers.push(() => makeCharacter(
  21089. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21090. {
  21091. front: {
  21092. height: math.unit(4.5, "meters"),
  21093. weight: math.unit(3200, "lb"),
  21094. name: "Front",
  21095. image: {
  21096. source: "./media/characters/ty/front.svg",
  21097. extra: 1038 / 960,
  21098. bottom: 31.156 / 1068
  21099. }
  21100. },
  21101. back: {
  21102. height: math.unit(4.5, "meters"),
  21103. weight: math.unit(3200, "lb"),
  21104. name: "Back",
  21105. image: {
  21106. source: "./media/characters/ty/back.svg",
  21107. extra: 1044 / 966,
  21108. bottom: 7.48 / 1049
  21109. }
  21110. },
  21111. },
  21112. [
  21113. {
  21114. name: "Normal",
  21115. height: math.unit(4.5, "meters"),
  21116. default: true
  21117. },
  21118. ]
  21119. ))
  21120. characterMakers.push(() => makeCharacter(
  21121. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21122. {
  21123. front: {
  21124. height: math.unit(5 + 4 / 12, "feet"),
  21125. weight: math.unit(115, "lb"),
  21126. name: "Front",
  21127. image: {
  21128. source: "./media/characters/rocky/front.svg",
  21129. extra: 1012 / 975,
  21130. bottom: 54 / 1066
  21131. }
  21132. },
  21133. },
  21134. [
  21135. {
  21136. name: "Normal",
  21137. height: math.unit(5 + 4 / 12, "feet"),
  21138. default: true
  21139. },
  21140. ]
  21141. ))
  21142. characterMakers.push(() => makeCharacter(
  21143. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21144. {
  21145. upright: {
  21146. height: math.unit(6, "meters"),
  21147. weight: math.unit(4000, "kg"),
  21148. name: "Upright",
  21149. image: {
  21150. source: "./media/characters/ruin/upright.svg",
  21151. extra: 668 / 661,
  21152. bottom: 42 / 799.8396
  21153. }
  21154. },
  21155. },
  21156. [
  21157. {
  21158. name: "Normal",
  21159. height: math.unit(6, "meters"),
  21160. default: true
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21166. {
  21167. front: {
  21168. height: math.unit(5, "feet"),
  21169. weight: math.unit(106, "lb"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/robin/front.svg",
  21173. extra: 862 / 799,
  21174. bottom: 42.4 / 914.8856
  21175. }
  21176. },
  21177. },
  21178. [
  21179. {
  21180. name: "Normal",
  21181. height: math.unit(5, "feet"),
  21182. default: true
  21183. },
  21184. ]
  21185. ))
  21186. characterMakers.push(() => makeCharacter(
  21187. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21188. {
  21189. side: {
  21190. height: math.unit(3, "feet"),
  21191. weight: math.unit(225, "lb"),
  21192. name: "Side",
  21193. image: {
  21194. source: "./media/characters/saian/side.svg",
  21195. extra: 566 / 356,
  21196. bottom: 79.7 / 643
  21197. }
  21198. },
  21199. maw: {
  21200. height: math.unit(2.85, "feet"),
  21201. name: "Maw",
  21202. image: {
  21203. source: "./media/characters/saian/maw.svg"
  21204. }
  21205. },
  21206. },
  21207. [
  21208. {
  21209. name: "Normal",
  21210. height: math.unit(3, "feet"),
  21211. default: true
  21212. },
  21213. ]
  21214. ))
  21215. characterMakers.push(() => makeCharacter(
  21216. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21217. {
  21218. side: {
  21219. height: math.unit(8, "feet"),
  21220. weight: math.unit(300, "lb"),
  21221. name: "Side",
  21222. image: {
  21223. source: "./media/characters/equus-silvermane/side.svg",
  21224. extra: 2176 / 2050,
  21225. bottom: 65.7 / 2245
  21226. }
  21227. },
  21228. front: {
  21229. height: math.unit(8, "feet"),
  21230. weight: math.unit(300, "lb"),
  21231. name: "Front",
  21232. image: {
  21233. source: "./media/characters/equus-silvermane/front.svg",
  21234. extra: 4633 / 4400,
  21235. bottom: 71.3 / 4706.915
  21236. }
  21237. },
  21238. sideStepping: {
  21239. height: math.unit(8, "feet"),
  21240. weight: math.unit(300, "lb"),
  21241. name: "Side (Stepping)",
  21242. image: {
  21243. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21244. extra: 1968 / 1860,
  21245. bottom: 16.4 / 1989
  21246. }
  21247. },
  21248. },
  21249. [
  21250. {
  21251. name: "Normal",
  21252. height: math.unit(8, "feet")
  21253. },
  21254. {
  21255. name: "Minimacro",
  21256. height: math.unit(75, "feet"),
  21257. default: true
  21258. },
  21259. {
  21260. name: "Macro",
  21261. height: math.unit(150, "feet")
  21262. },
  21263. {
  21264. name: "Macro+",
  21265. height: math.unit(1000, "feet")
  21266. },
  21267. {
  21268. name: "Megamacro",
  21269. height: math.unit(1, "mile")
  21270. },
  21271. ]
  21272. ))
  21273. characterMakers.push(() => makeCharacter(
  21274. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21275. {
  21276. side: {
  21277. height: math.unit(20, "feet"),
  21278. weight: math.unit(30000, "kg"),
  21279. name: "Side",
  21280. image: {
  21281. source: "./media/characters/windar/side.svg",
  21282. extra: 1491 / 1248,
  21283. bottom: 82.56 / 1568
  21284. }
  21285. },
  21286. },
  21287. [
  21288. {
  21289. name: "Normal",
  21290. height: math.unit(20, "feet"),
  21291. default: true
  21292. },
  21293. ]
  21294. ))
  21295. characterMakers.push(() => makeCharacter(
  21296. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21297. {
  21298. side: {
  21299. height: math.unit(15.66, "feet"),
  21300. weight: math.unit(150, "lb"),
  21301. name: "Side",
  21302. image: {
  21303. source: "./media/characters/melody/side.svg",
  21304. extra: 1097 / 944,
  21305. bottom: 11.8 / 1109
  21306. }
  21307. },
  21308. sideOutfit: {
  21309. height: math.unit(15.66, "feet"),
  21310. weight: math.unit(150, "lb"),
  21311. name: "Side (Outfit)",
  21312. image: {
  21313. source: "./media/characters/melody/side-outfit.svg",
  21314. extra: 1097 / 944,
  21315. bottom: 11.8 / 1109
  21316. }
  21317. },
  21318. },
  21319. [
  21320. {
  21321. name: "Normal",
  21322. height: math.unit(15.66, "feet"),
  21323. default: true
  21324. },
  21325. ]
  21326. ))
  21327. characterMakers.push(() => makeCharacter(
  21328. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21329. {
  21330. front: {
  21331. height: math.unit(8, "feet"),
  21332. weight: math.unit(325, "lb"),
  21333. name: "Front",
  21334. image: {
  21335. source: "./media/characters/windera/front.svg",
  21336. extra: 3180 / 2845,
  21337. bottom: 178 / 3365
  21338. }
  21339. },
  21340. },
  21341. [
  21342. {
  21343. name: "Normal",
  21344. height: math.unit(8, "feet"),
  21345. default: true
  21346. },
  21347. ]
  21348. ))
  21349. characterMakers.push(() => makeCharacter(
  21350. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21351. {
  21352. front: {
  21353. height: math.unit(28.75, "feet"),
  21354. weight: math.unit(2000, "kg"),
  21355. name: "Front",
  21356. image: {
  21357. source: "./media/characters/sonear/front.svg",
  21358. extra: 1041.1 / 964.9,
  21359. bottom: 53.7 / 1096.6
  21360. }
  21361. },
  21362. },
  21363. [
  21364. {
  21365. name: "Normal",
  21366. height: math.unit(28.75, "feet"),
  21367. default: true
  21368. },
  21369. ]
  21370. ))
  21371. characterMakers.push(() => makeCharacter(
  21372. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21373. {
  21374. side: {
  21375. height: math.unit(25.5, "feet"),
  21376. weight: math.unit(23000, "kg"),
  21377. name: "Side",
  21378. image: {
  21379. source: "./media/characters/kanara/side.svg"
  21380. }
  21381. },
  21382. },
  21383. [
  21384. {
  21385. name: "Normal",
  21386. height: math.unit(25.5, "feet"),
  21387. default: true
  21388. },
  21389. ]
  21390. ))
  21391. characterMakers.push(() => makeCharacter(
  21392. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21393. {
  21394. side: {
  21395. height: math.unit(10, "feet"),
  21396. weight: math.unit(1000, "kg"),
  21397. name: "Side",
  21398. image: {
  21399. source: "./media/characters/ereus/side.svg",
  21400. extra: 1157 / 959,
  21401. bottom: 153 / 1312.5
  21402. }
  21403. },
  21404. },
  21405. [
  21406. {
  21407. name: "Normal",
  21408. height: math.unit(10, "feet"),
  21409. default: true
  21410. },
  21411. ]
  21412. ))
  21413. characterMakers.push(() => makeCharacter(
  21414. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21415. {
  21416. side: {
  21417. height: math.unit(4.5, "feet"),
  21418. weight: math.unit(500, "lb"),
  21419. name: "Side",
  21420. image: {
  21421. source: "./media/characters/e-ter/side.svg",
  21422. extra: 1550 / 1248,
  21423. bottom: 146 / 1694
  21424. }
  21425. },
  21426. },
  21427. [
  21428. {
  21429. name: "Normal",
  21430. height: math.unit(4.5, "feet"),
  21431. default: true
  21432. },
  21433. ]
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21437. {
  21438. side: {
  21439. height: math.unit(9.7, "feet"),
  21440. weight: math.unit(4000, "kg"),
  21441. name: "Side",
  21442. image: {
  21443. source: "./media/characters/yamie/side.svg"
  21444. }
  21445. },
  21446. },
  21447. [
  21448. {
  21449. name: "Normal",
  21450. height: math.unit(9.7, "feet"),
  21451. default: true
  21452. },
  21453. ]
  21454. ))
  21455. characterMakers.push(() => makeCharacter(
  21456. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21457. {
  21458. front: {
  21459. height: math.unit(50, "feet"),
  21460. weight: math.unit(50000, "kg"),
  21461. name: "Front",
  21462. image: {
  21463. source: "./media/characters/anders/front.svg",
  21464. extra: 570 / 539,
  21465. bottom: 14.7 / 586.7
  21466. }
  21467. },
  21468. },
  21469. [
  21470. {
  21471. name: "Large",
  21472. height: math.unit(50, "feet")
  21473. },
  21474. {
  21475. name: "Macro",
  21476. height: math.unit(2000, "feet"),
  21477. default: true
  21478. },
  21479. {
  21480. name: "Megamacro",
  21481. height: math.unit(12, "miles")
  21482. },
  21483. ]
  21484. ))
  21485. characterMakers.push(() => makeCharacter(
  21486. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21487. {
  21488. front: {
  21489. height: math.unit(7 + 2 / 12, "feet"),
  21490. weight: math.unit(300, "lb"),
  21491. name: "Front",
  21492. image: {
  21493. source: "./media/characters/reban/front.svg",
  21494. extra: 516 / 487,
  21495. bottom: 42.82 / 558.356
  21496. }
  21497. },
  21498. dick: {
  21499. height: math.unit(7 / 5, "feet"),
  21500. name: "Dick",
  21501. image: {
  21502. source: "./media/characters/reban/dick.svg"
  21503. }
  21504. },
  21505. },
  21506. [
  21507. {
  21508. name: "Natural Height",
  21509. height: math.unit(7 + 2 / 12, "feet")
  21510. },
  21511. {
  21512. name: "Macro",
  21513. height: math.unit(500, "feet"),
  21514. default: true
  21515. },
  21516. {
  21517. name: "Canon Height",
  21518. height: math.unit(50, "AU")
  21519. },
  21520. ]
  21521. ))
  21522. characterMakers.push(() => makeCharacter(
  21523. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21524. {
  21525. front: {
  21526. height: math.unit(6, "feet"),
  21527. weight: math.unit(150, "lb"),
  21528. name: "Front",
  21529. image: {
  21530. source: "./media/characters/terrance-keayes/front.svg",
  21531. extra: 1.005,
  21532. bottom: 151 / 1615
  21533. }
  21534. },
  21535. side: {
  21536. height: math.unit(6, "feet"),
  21537. weight: math.unit(150, "lb"),
  21538. name: "Side",
  21539. image: {
  21540. source: "./media/characters/terrance-keayes/side.svg",
  21541. extra: 1.005,
  21542. bottom: 129.4 / 1544
  21543. }
  21544. },
  21545. back: {
  21546. height: math.unit(6, "feet"),
  21547. weight: math.unit(150, "lb"),
  21548. name: "Back",
  21549. image: {
  21550. source: "./media/characters/terrance-keayes/back.svg",
  21551. extra: 1.005,
  21552. bottom: 58.4 / 1557.3
  21553. }
  21554. },
  21555. dick: {
  21556. height: math.unit(6 * 0.208, "feet"),
  21557. name: "Dick",
  21558. image: {
  21559. source: "./media/characters/terrance-keayes/dick.svg"
  21560. }
  21561. },
  21562. },
  21563. [
  21564. {
  21565. name: "Canon Height",
  21566. height: math.unit(35, "miles"),
  21567. default: true
  21568. },
  21569. ]
  21570. ))
  21571. characterMakers.push(() => makeCharacter(
  21572. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21573. {
  21574. front: {
  21575. height: math.unit(6, "feet"),
  21576. weight: math.unit(150, "lb"),
  21577. name: "Front",
  21578. image: {
  21579. source: "./media/characters/ofelia/front.svg",
  21580. extra: 546 / 541,
  21581. bottom: 39 / 583
  21582. }
  21583. },
  21584. back: {
  21585. height: math.unit(6, "feet"),
  21586. weight: math.unit(150, "lb"),
  21587. name: "Back",
  21588. image: {
  21589. source: "./media/characters/ofelia/back.svg",
  21590. extra: 564 / 559.5,
  21591. bottom: 8.69 / 573.02
  21592. }
  21593. },
  21594. maw: {
  21595. height: math.unit(1, "feet"),
  21596. name: "Maw",
  21597. image: {
  21598. source: "./media/characters/ofelia/maw.svg"
  21599. }
  21600. },
  21601. foot: {
  21602. height: math.unit(1.949, "feet"),
  21603. name: "Foot",
  21604. image: {
  21605. source: "./media/characters/ofelia/foot.svg"
  21606. }
  21607. },
  21608. },
  21609. [
  21610. {
  21611. name: "Canon Height",
  21612. height: math.unit(2000, "miles"),
  21613. default: true
  21614. },
  21615. ]
  21616. ))
  21617. characterMakers.push(() => makeCharacter(
  21618. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21619. {
  21620. front: {
  21621. height: math.unit(6, "feet"),
  21622. weight: math.unit(150, "lb"),
  21623. name: "Front",
  21624. image: {
  21625. source: "./media/characters/samuel/front.svg",
  21626. extra: 265 / 258,
  21627. bottom: 2 / 266.1566
  21628. }
  21629. },
  21630. },
  21631. [
  21632. {
  21633. name: "Macro",
  21634. height: math.unit(100, "feet"),
  21635. default: true
  21636. },
  21637. {
  21638. name: "Full Size",
  21639. height: math.unit(1000, "miles")
  21640. },
  21641. ]
  21642. ))
  21643. characterMakers.push(() => makeCharacter(
  21644. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21645. {
  21646. front: {
  21647. height: math.unit(6, "feet"),
  21648. weight: math.unit(300, "lb"),
  21649. name: "Front",
  21650. image: {
  21651. source: "./media/characters/beishir-kiel/front.svg",
  21652. extra: 569 / 547,
  21653. bottom: 41.9 / 609
  21654. }
  21655. },
  21656. maw: {
  21657. height: math.unit(6 * 0.202, "feet"),
  21658. name: "Maw",
  21659. image: {
  21660. source: "./media/characters/beishir-kiel/maw.svg"
  21661. }
  21662. },
  21663. },
  21664. [
  21665. {
  21666. name: "Macro",
  21667. height: math.unit(300, "feet"),
  21668. default: true
  21669. },
  21670. ]
  21671. ))
  21672. characterMakers.push(() => makeCharacter(
  21673. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21674. {
  21675. front: {
  21676. height: math.unit(5 + 8 / 12, "feet"),
  21677. weight: math.unit(120, "lb"),
  21678. name: "Front",
  21679. image: {
  21680. source: "./media/characters/logan-grey/front.svg",
  21681. extra: 2539 / 2393,
  21682. bottom: 97.6 / 2636.37
  21683. }
  21684. },
  21685. frontAlt: {
  21686. height: math.unit(5 + 8 / 12, "feet"),
  21687. weight: math.unit(120, "lb"),
  21688. name: "Front (Alt)",
  21689. image: {
  21690. source: "./media/characters/logan-grey/front-alt.svg",
  21691. extra: 958 / 893,
  21692. bottom: 15 / 970.768
  21693. }
  21694. },
  21695. back: {
  21696. height: math.unit(5 + 8 / 12, "feet"),
  21697. weight: math.unit(120, "lb"),
  21698. name: "Back",
  21699. image: {
  21700. source: "./media/characters/logan-grey/back.svg",
  21701. extra: 958 / 893,
  21702. bottom: 2.1881 / 970.9788
  21703. }
  21704. },
  21705. dick: {
  21706. height: math.unit(1.437, "feet"),
  21707. name: "Dick",
  21708. image: {
  21709. source: "./media/characters/logan-grey/dick.svg"
  21710. }
  21711. },
  21712. },
  21713. [
  21714. {
  21715. name: "Normal",
  21716. height: math.unit(5 + 8 / 12, "feet")
  21717. },
  21718. {
  21719. name: "The 500 Foot Femboy",
  21720. height: math.unit(500, "feet"),
  21721. default: true
  21722. },
  21723. {
  21724. name: "Megmacro",
  21725. height: math.unit(20, "miles")
  21726. },
  21727. ]
  21728. ))
  21729. characterMakers.push(() => makeCharacter(
  21730. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21731. {
  21732. front: {
  21733. height: math.unit(8 + 2 / 12, "feet"),
  21734. weight: math.unit(275, "lb"),
  21735. name: "Front",
  21736. image: {
  21737. source: "./media/characters/draganta/front.svg",
  21738. extra: 1177 / 1135,
  21739. bottom: 33.46 / 1212.1
  21740. }
  21741. },
  21742. },
  21743. [
  21744. {
  21745. name: "Normal",
  21746. height: math.unit(8 + 6 / 12, "feet"),
  21747. default: true
  21748. },
  21749. {
  21750. name: "Macro",
  21751. height: math.unit(150, "feet")
  21752. },
  21753. {
  21754. name: "Megamacro",
  21755. height: math.unit(1000, "miles")
  21756. },
  21757. ]
  21758. ))
  21759. characterMakers.push(() => makeCharacter(
  21760. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21761. {
  21762. front: {
  21763. height: math.unit(1.72, "m"),
  21764. weight: math.unit(80, "lb"),
  21765. name: "Front",
  21766. image: {
  21767. source: "./media/characters/voski/front.svg",
  21768. extra: 2076.22 / 2022.4,
  21769. bottom: 102.7 / 2177.3866
  21770. }
  21771. },
  21772. frontNsfw: {
  21773. height: math.unit(1.72, "m"),
  21774. weight: math.unit(80, "lb"),
  21775. name: "Front (NSFW)",
  21776. image: {
  21777. source: "./media/characters/voski/front-nsfw.svg",
  21778. extra: 2076.22 / 2022.4,
  21779. bottom: 102.7 / 2177.3866
  21780. }
  21781. },
  21782. back: {
  21783. height: math.unit(1.72, "m"),
  21784. weight: math.unit(80, "lb"),
  21785. name: "Back",
  21786. image: {
  21787. source: "./media/characters/voski/back.svg",
  21788. extra: 2104 / 2051,
  21789. bottom: 10.45 / 2113.63
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Normal",
  21796. height: math.unit(1.72, "m")
  21797. },
  21798. {
  21799. name: "Macro",
  21800. height: math.unit(55, "m"),
  21801. default: true
  21802. },
  21803. {
  21804. name: "Macro+",
  21805. height: math.unit(300, "m")
  21806. },
  21807. {
  21808. name: "Macro++",
  21809. height: math.unit(700, "m")
  21810. },
  21811. {
  21812. name: "Macro+++",
  21813. height: math.unit(4500, "m")
  21814. },
  21815. {
  21816. name: "Macro++++",
  21817. height: math.unit(45, "km")
  21818. },
  21819. {
  21820. name: "Macro+++++",
  21821. height: math.unit(1220, "km")
  21822. },
  21823. ]
  21824. ))
  21825. characterMakers.push(() => makeCharacter(
  21826. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21827. {
  21828. front: {
  21829. height: math.unit(2.3, "m"),
  21830. weight: math.unit(304, "kg"),
  21831. name: "Front",
  21832. image: {
  21833. source: "./media/characters/icowom-lee/front.svg",
  21834. extra: 985 / 955,
  21835. bottom: 25.4 / 1012
  21836. }
  21837. },
  21838. fronttentacles: {
  21839. height: math.unit(2.3, "m"),
  21840. weight: math.unit(304, "kg"),
  21841. name: "Front-tentacles",
  21842. image: {
  21843. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21844. extra: 985 / 955,
  21845. bottom: 25.4 / 1012
  21846. }
  21847. },
  21848. back: {
  21849. height: math.unit(2.3, "m"),
  21850. weight: math.unit(304, "kg"),
  21851. name: "Back",
  21852. image: {
  21853. source: "./media/characters/icowom-lee/back.svg",
  21854. extra: 975 / 954,
  21855. bottom: 9.5 / 985
  21856. }
  21857. },
  21858. backtentacles: {
  21859. height: math.unit(2.3, "m"),
  21860. weight: math.unit(304, "kg"),
  21861. name: "Back-tentacles",
  21862. image: {
  21863. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21864. extra: 975 / 954,
  21865. bottom: 9.5 / 985
  21866. }
  21867. },
  21868. frontDressed: {
  21869. height: math.unit(2.3, "m"),
  21870. weight: math.unit(304, "kg"),
  21871. name: "Front (Dressed)",
  21872. image: {
  21873. source: "./media/characters/icowom-lee/front-dressed.svg",
  21874. extra: 3076 / 2933,
  21875. bottom: 51.4 / 3125.1889
  21876. }
  21877. },
  21878. rump: {
  21879. height: math.unit(0.776, "meters"),
  21880. name: "Rump",
  21881. image: {
  21882. source: "./media/characters/icowom-lee/rump.svg"
  21883. }
  21884. },
  21885. genitals: {
  21886. height: math.unit(0.78, "meters"),
  21887. name: "Genitals",
  21888. image: {
  21889. source: "./media/characters/icowom-lee/genitals.svg"
  21890. }
  21891. },
  21892. },
  21893. [
  21894. {
  21895. name: "Normal",
  21896. height: math.unit(2.3, "meters"),
  21897. default: true
  21898. },
  21899. {
  21900. name: "Macro",
  21901. height: math.unit(94, "meters"),
  21902. default: true
  21903. },
  21904. ]
  21905. ))
  21906. characterMakers.push(() => makeCharacter(
  21907. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21908. {
  21909. front: {
  21910. height: math.unit(22, "meters"),
  21911. weight: math.unit(21000, "kg"),
  21912. name: "Front",
  21913. image: {
  21914. source: "./media/characters/shock-diamond/front.svg",
  21915. extra: 2204 / 2053,
  21916. bottom: 65 / 2239.47
  21917. }
  21918. },
  21919. frontNude: {
  21920. height: math.unit(22, "meters"),
  21921. weight: math.unit(21000, "kg"),
  21922. name: "Front (Nude)",
  21923. image: {
  21924. source: "./media/characters/shock-diamond/front-nude.svg",
  21925. extra: 2514 / 2285,
  21926. bottom: 13 / 2527.56
  21927. }
  21928. },
  21929. },
  21930. [
  21931. {
  21932. name: "Normal",
  21933. height: math.unit(3, "meters")
  21934. },
  21935. {
  21936. name: "Macro",
  21937. height: math.unit(22, "meters"),
  21938. default: true
  21939. },
  21940. ]
  21941. ))
  21942. characterMakers.push(() => makeCharacter(
  21943. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21944. {
  21945. front: {
  21946. height: math.unit(5 + 4 / 12, "feet"),
  21947. weight: math.unit(120, "lb"),
  21948. name: "Front",
  21949. image: {
  21950. source: "./media/characters/rory/front.svg",
  21951. extra: 589 / 556,
  21952. bottom: 45.7 / 635.76
  21953. }
  21954. },
  21955. frontNude: {
  21956. height: math.unit(5 + 4 / 12, "feet"),
  21957. weight: math.unit(120, "lb"),
  21958. name: "Front (Nude)",
  21959. image: {
  21960. source: "./media/characters/rory/front-nude.svg",
  21961. extra: 589 / 556,
  21962. bottom: 45.7 / 635.76
  21963. }
  21964. },
  21965. side: {
  21966. height: math.unit(5 + 4 / 12, "feet"),
  21967. weight: math.unit(120, "lb"),
  21968. name: "Side",
  21969. image: {
  21970. source: "./media/characters/rory/side.svg",
  21971. extra: 597 / 564,
  21972. bottom: 55 / 653
  21973. }
  21974. },
  21975. back: {
  21976. height: math.unit(5 + 4 / 12, "feet"),
  21977. weight: math.unit(120, "lb"),
  21978. name: "Back",
  21979. image: {
  21980. source: "./media/characters/rory/back.svg",
  21981. extra: 620 / 585,
  21982. bottom: 8.86 / 630.43
  21983. }
  21984. },
  21985. dick: {
  21986. height: math.unit(0.86, "feet"),
  21987. name: "Dick",
  21988. image: {
  21989. source: "./media/characters/rory/dick.svg"
  21990. }
  21991. },
  21992. },
  21993. [
  21994. {
  21995. name: "Normal",
  21996. height: math.unit(5 + 4 / 12, "feet"),
  21997. default: true
  21998. },
  21999. {
  22000. name: "Macro",
  22001. height: math.unit(100, "feet")
  22002. },
  22003. {
  22004. name: "Macro+",
  22005. height: math.unit(140, "feet")
  22006. },
  22007. {
  22008. name: "Macro++",
  22009. height: math.unit(300, "feet")
  22010. },
  22011. ]
  22012. ))
  22013. characterMakers.push(() => makeCharacter(
  22014. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22015. {
  22016. front: {
  22017. height: math.unit(5 + 9 / 12, "feet"),
  22018. weight: math.unit(190, "lb"),
  22019. name: "Front",
  22020. image: {
  22021. source: "./media/characters/sprisk/front.svg",
  22022. extra: 1225 / 1180,
  22023. bottom: 42.7 / 1266.4
  22024. }
  22025. },
  22026. frontNsfw: {
  22027. height: math.unit(5 + 9 / 12, "feet"),
  22028. weight: math.unit(190, "lb"),
  22029. name: "Front (NSFW)",
  22030. image: {
  22031. source: "./media/characters/sprisk/front-nsfw.svg",
  22032. extra: 1225 / 1180,
  22033. bottom: 42.7 / 1266.4
  22034. }
  22035. },
  22036. back: {
  22037. height: math.unit(5 + 9 / 12, "feet"),
  22038. weight: math.unit(190, "lb"),
  22039. name: "Back",
  22040. image: {
  22041. source: "./media/characters/sprisk/back.svg",
  22042. extra: 1247 / 1200,
  22043. bottom: 5.6 / 1253.04
  22044. }
  22045. },
  22046. },
  22047. [
  22048. {
  22049. name: "Tiny",
  22050. height: math.unit(2, "inches")
  22051. },
  22052. {
  22053. name: "Normal",
  22054. height: math.unit(5 + 9 / 12, "feet"),
  22055. default: true
  22056. },
  22057. {
  22058. name: "Mini Macro",
  22059. height: math.unit(18, "feet")
  22060. },
  22061. {
  22062. name: "Macro",
  22063. height: math.unit(100, "feet")
  22064. },
  22065. {
  22066. name: "MACRO",
  22067. height: math.unit(50, "miles")
  22068. },
  22069. {
  22070. name: "M A C R O",
  22071. height: math.unit(300, "miles")
  22072. },
  22073. ]
  22074. ))
  22075. characterMakers.push(() => makeCharacter(
  22076. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22077. {
  22078. side: {
  22079. height: math.unit(15.6, "meters"),
  22080. weight: math.unit(700000, "kg"),
  22081. name: "Side",
  22082. image: {
  22083. source: "./media/characters/bunsen/side.svg",
  22084. extra: 1644 / 358
  22085. }
  22086. },
  22087. foot: {
  22088. height: math.unit(1.611 * 1644 / 358, "meter"),
  22089. name: "Foot",
  22090. image: {
  22091. source: "./media/characters/bunsen/foot.svg"
  22092. }
  22093. },
  22094. },
  22095. [
  22096. {
  22097. name: "Small",
  22098. height: math.unit(10, "feet")
  22099. },
  22100. {
  22101. name: "Normal",
  22102. height: math.unit(15.6, "meters"),
  22103. default: true
  22104. },
  22105. ]
  22106. ))
  22107. characterMakers.push(() => makeCharacter(
  22108. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22109. {
  22110. front: {
  22111. height: math.unit(4 + 11 / 12, "feet"),
  22112. weight: math.unit(140, "lb"),
  22113. name: "Front",
  22114. image: {
  22115. source: "./media/characters/sesh/front.svg",
  22116. extra: 3420 / 3231,
  22117. bottom: 72 / 3949.5
  22118. }
  22119. },
  22120. },
  22121. [
  22122. {
  22123. name: "Normal",
  22124. height: math.unit(4 + 11 / 12, "feet")
  22125. },
  22126. {
  22127. name: "Grown",
  22128. height: math.unit(15, "feet"),
  22129. default: true
  22130. },
  22131. {
  22132. name: "Macro",
  22133. height: math.unit(1500, "feet")
  22134. },
  22135. {
  22136. name: "Megamacro",
  22137. height: math.unit(30, "miles")
  22138. },
  22139. {
  22140. name: "Continental",
  22141. height: math.unit(3000, "miles")
  22142. },
  22143. {
  22144. name: "Gravity Mass",
  22145. height: math.unit(300000, "miles")
  22146. },
  22147. {
  22148. name: "Planet Buster",
  22149. height: math.unit(30000000, "miles")
  22150. },
  22151. {
  22152. name: "Big",
  22153. height: math.unit(3000000000, "miles")
  22154. },
  22155. ]
  22156. ))
  22157. characterMakers.push(() => makeCharacter(
  22158. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22159. {
  22160. front: {
  22161. height: math.unit(9, "feet"),
  22162. weight: math.unit(350, "lb"),
  22163. name: "Front",
  22164. image: {
  22165. source: "./media/characters/pepper/front.svg",
  22166. extra: 1448 / 1312,
  22167. bottom: 9.4 / 1457.88
  22168. }
  22169. },
  22170. back: {
  22171. height: math.unit(9, "feet"),
  22172. weight: math.unit(350, "lb"),
  22173. name: "Back",
  22174. image: {
  22175. source: "./media/characters/pepper/back.svg",
  22176. extra: 1423 / 1300,
  22177. bottom: 4.6 / 1429
  22178. }
  22179. },
  22180. maw: {
  22181. height: math.unit(0.932, "feet"),
  22182. name: "Maw",
  22183. image: {
  22184. source: "./media/characters/pepper/maw.svg"
  22185. }
  22186. },
  22187. },
  22188. [
  22189. {
  22190. name: "Normal",
  22191. height: math.unit(9, "feet"),
  22192. default: true
  22193. },
  22194. ]
  22195. ))
  22196. characterMakers.push(() => makeCharacter(
  22197. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22198. {
  22199. front: {
  22200. height: math.unit(6, "feet"),
  22201. weight: math.unit(150, "lb"),
  22202. name: "Front",
  22203. image: {
  22204. source: "./media/characters/maelstrom/front.svg",
  22205. extra: 2100 / 1883,
  22206. bottom: 94 / 2196.7
  22207. }
  22208. },
  22209. },
  22210. [
  22211. {
  22212. name: "Less Kaiju",
  22213. height: math.unit(200, "feet")
  22214. },
  22215. {
  22216. name: "Kaiju",
  22217. height: math.unit(400, "feet"),
  22218. default: true
  22219. },
  22220. {
  22221. name: "Kaiju-er",
  22222. height: math.unit(600, "feet")
  22223. },
  22224. ]
  22225. ))
  22226. characterMakers.push(() => makeCharacter(
  22227. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22228. {
  22229. front: {
  22230. height: math.unit(6 + 5 / 12, "feet"),
  22231. weight: math.unit(180, "lb"),
  22232. name: "Front",
  22233. image: {
  22234. source: "./media/characters/lexir/front.svg",
  22235. extra: 180 / 172,
  22236. bottom: 12 / 192
  22237. }
  22238. },
  22239. back: {
  22240. height: math.unit(6 + 5 / 12, "feet"),
  22241. weight: math.unit(180, "lb"),
  22242. name: "Back",
  22243. image: {
  22244. source: "./media/characters/lexir/back.svg",
  22245. extra: 183.84 / 175.5,
  22246. bottom: 3.1 / 187
  22247. }
  22248. },
  22249. },
  22250. [
  22251. {
  22252. name: "Very Smal",
  22253. height: math.unit(1, "nm")
  22254. },
  22255. {
  22256. name: "Normal",
  22257. height: math.unit(6 + 5 / 12, "feet"),
  22258. default: true
  22259. },
  22260. {
  22261. name: "Macro",
  22262. height: math.unit(1, "mile")
  22263. },
  22264. {
  22265. name: "Megamacro",
  22266. height: math.unit(50, "miles")
  22267. },
  22268. ]
  22269. ))
  22270. characterMakers.push(() => makeCharacter(
  22271. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22272. {
  22273. front: {
  22274. height: math.unit(1.5, "meters"),
  22275. weight: math.unit(100, "lb"),
  22276. name: "Front",
  22277. image: {
  22278. source: "./media/characters/maksio/front.svg",
  22279. extra: 1549 / 1531,
  22280. bottom: 123.7 / 1674.5429
  22281. }
  22282. },
  22283. back: {
  22284. height: math.unit(1.5, "meters"),
  22285. weight: math.unit(100, "lb"),
  22286. name: "Back",
  22287. image: {
  22288. source: "./media/characters/maksio/back.svg",
  22289. extra: 1541 / 1509,
  22290. bottom: 97 / 1639
  22291. }
  22292. },
  22293. hand: {
  22294. height: math.unit(0.621, "feet"),
  22295. name: "Hand",
  22296. image: {
  22297. source: "./media/characters/maksio/hand.svg"
  22298. }
  22299. },
  22300. foot: {
  22301. height: math.unit(1.611, "feet"),
  22302. name: "Foot",
  22303. image: {
  22304. source: "./media/characters/maksio/foot.svg"
  22305. }
  22306. },
  22307. },
  22308. [
  22309. {
  22310. name: "Shrunken",
  22311. height: math.unit(10, "cm")
  22312. },
  22313. {
  22314. name: "Normal",
  22315. height: math.unit(150, "cm"),
  22316. default: true
  22317. },
  22318. ]
  22319. ))
  22320. characterMakers.push(() => makeCharacter(
  22321. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22322. {
  22323. front: {
  22324. height: math.unit(100, "feet"),
  22325. name: "Front",
  22326. image: {
  22327. source: "./media/characters/erza-bear/front.svg",
  22328. extra: 2449 / 2390,
  22329. bottom: 46 / 2494
  22330. }
  22331. },
  22332. back: {
  22333. height: math.unit(100, "feet"),
  22334. name: "Back",
  22335. image: {
  22336. source: "./media/characters/erza-bear/back.svg",
  22337. extra: 2489 / 2430,
  22338. bottom: 85.4 / 2480
  22339. }
  22340. },
  22341. tail: {
  22342. height: math.unit(42, "feet"),
  22343. name: "Tail",
  22344. image: {
  22345. source: "./media/characters/erza-bear/tail.svg"
  22346. }
  22347. },
  22348. tongue: {
  22349. height: math.unit(8, "feet"),
  22350. name: "Tongue",
  22351. image: {
  22352. source: "./media/characters/erza-bear/tongue.svg"
  22353. }
  22354. },
  22355. dick: {
  22356. height: math.unit(10.5, "feet"),
  22357. name: "Dick",
  22358. image: {
  22359. source: "./media/characters/erza-bear/dick.svg"
  22360. }
  22361. },
  22362. dickVertical: {
  22363. height: math.unit(16.9, "feet"),
  22364. name: "Dick (Vertical)",
  22365. image: {
  22366. source: "./media/characters/erza-bear/dick-vertical.svg"
  22367. }
  22368. },
  22369. },
  22370. [
  22371. {
  22372. name: "Macro",
  22373. height: math.unit(100, "feet"),
  22374. default: true
  22375. },
  22376. ]
  22377. ))
  22378. characterMakers.push(() => makeCharacter(
  22379. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22380. {
  22381. front: {
  22382. height: math.unit(172, "cm"),
  22383. weight: math.unit(73, "kg"),
  22384. name: "Front",
  22385. image: {
  22386. source: "./media/characters/violet-flor/front.svg",
  22387. extra: 1530 / 1442,
  22388. bottom: 61.9 / 1588.8
  22389. }
  22390. },
  22391. back: {
  22392. height: math.unit(180, "cm"),
  22393. weight: math.unit(73, "kg"),
  22394. name: "Back",
  22395. image: {
  22396. source: "./media/characters/violet-flor/back.svg",
  22397. extra: 1692 / 1630,
  22398. bottom: 20 / 1712
  22399. }
  22400. },
  22401. },
  22402. [
  22403. {
  22404. name: "Normal",
  22405. height: math.unit(172, "cm"),
  22406. default: true
  22407. },
  22408. ]
  22409. ))
  22410. characterMakers.push(() => makeCharacter(
  22411. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22412. {
  22413. front: {
  22414. height: math.unit(6, "feet"),
  22415. weight: math.unit(220, "lb"),
  22416. name: "Front",
  22417. image: {
  22418. source: "./media/characters/lynn-rhea/front.svg",
  22419. extra: 310 / 273
  22420. }
  22421. },
  22422. back: {
  22423. height: math.unit(6, "feet"),
  22424. weight: math.unit(220, "lb"),
  22425. name: "Back",
  22426. image: {
  22427. source: "./media/characters/lynn-rhea/back.svg",
  22428. extra: 310 / 273
  22429. }
  22430. },
  22431. dicks: {
  22432. height: math.unit(0.9, "feet"),
  22433. name: "Dicks",
  22434. image: {
  22435. source: "./media/characters/lynn-rhea/dicks.svg"
  22436. }
  22437. },
  22438. slit: {
  22439. height: math.unit(0.4, "feet"),
  22440. name: "Slit",
  22441. image: {
  22442. source: "./media/characters/lynn-rhea/slit.svg"
  22443. }
  22444. },
  22445. },
  22446. [
  22447. {
  22448. name: "Micro",
  22449. height: math.unit(1, "inch")
  22450. },
  22451. {
  22452. name: "Macro",
  22453. height: math.unit(60, "feet"),
  22454. default: true
  22455. },
  22456. {
  22457. name: "Megamacro",
  22458. height: math.unit(2, "miles")
  22459. },
  22460. {
  22461. name: "Gigamacro",
  22462. height: math.unit(3, "earths")
  22463. },
  22464. {
  22465. name: "Galactic",
  22466. height: math.unit(0.8, "galaxies")
  22467. },
  22468. ]
  22469. ))
  22470. characterMakers.push(() => makeCharacter(
  22471. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22472. {
  22473. front: {
  22474. height: math.unit(1600, "feet"),
  22475. weight: math.unit(85758785169, "kg"),
  22476. name: "Front",
  22477. image: {
  22478. source: "./media/characters/valathos/front.svg",
  22479. extra: 1451 / 1339
  22480. }
  22481. },
  22482. },
  22483. [
  22484. {
  22485. name: "Macro",
  22486. height: math.unit(1600, "feet"),
  22487. default: true
  22488. },
  22489. ]
  22490. ))
  22491. characterMakers.push(() => makeCharacter(
  22492. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22493. {
  22494. front: {
  22495. height: math.unit(7 + 5 / 12, "feet"),
  22496. weight: math.unit(300, "lb"),
  22497. name: "Front",
  22498. image: {
  22499. source: "./media/characters/azula/front.svg",
  22500. extra: 3208 / 2880,
  22501. bottom: 80.2 / 3277
  22502. }
  22503. },
  22504. back: {
  22505. height: math.unit(7 + 5 / 12, "feet"),
  22506. weight: math.unit(300, "lb"),
  22507. name: "Back",
  22508. image: {
  22509. source: "./media/characters/azula/back.svg",
  22510. extra: 3169 / 2822,
  22511. bottom: 150.6 / 3321
  22512. }
  22513. },
  22514. },
  22515. [
  22516. {
  22517. name: "Normal",
  22518. height: math.unit(7 + 5 / 12, "feet"),
  22519. default: true
  22520. },
  22521. {
  22522. name: "Big",
  22523. height: math.unit(20, "feet")
  22524. },
  22525. ]
  22526. ))
  22527. characterMakers.push(() => makeCharacter(
  22528. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22529. {
  22530. front: {
  22531. height: math.unit(5 + 1 / 12, "feet"),
  22532. weight: math.unit(110, "lb"),
  22533. name: "Front",
  22534. image: {
  22535. source: "./media/characters/rupert/front.svg",
  22536. extra: 1549 / 1495,
  22537. bottom: 54.2 / 1604.4
  22538. }
  22539. },
  22540. },
  22541. [
  22542. {
  22543. name: "Normal",
  22544. height: math.unit(5 + 1 / 12, "feet"),
  22545. default: true
  22546. },
  22547. ]
  22548. ))
  22549. characterMakers.push(() => makeCharacter(
  22550. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22551. {
  22552. front: {
  22553. height: math.unit(8 + 4 / 12, "feet"),
  22554. weight: math.unit(350, "lb"),
  22555. name: "Front",
  22556. image: {
  22557. source: "./media/characters/sheera-castellar/front.svg",
  22558. extra: 1957 / 1894,
  22559. bottom: 26.97 / 1975.017
  22560. }
  22561. },
  22562. side: {
  22563. height: math.unit(8 + 4 / 12, "feet"),
  22564. weight: math.unit(350, "lb"),
  22565. name: "Side",
  22566. image: {
  22567. source: "./media/characters/sheera-castellar/side.svg",
  22568. extra: 1957 / 1894
  22569. }
  22570. },
  22571. back: {
  22572. height: math.unit(8 + 4 / 12, "feet"),
  22573. weight: math.unit(350, "lb"),
  22574. name: "Back",
  22575. image: {
  22576. source: "./media/characters/sheera-castellar/back.svg",
  22577. extra: 1957 / 1894
  22578. }
  22579. },
  22580. angled: {
  22581. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22582. weight: math.unit(350, "lb"),
  22583. name: "Angled",
  22584. image: {
  22585. source: "./media/characters/sheera-castellar/angled.svg",
  22586. extra: 1807 / 1707,
  22587. bottom: 68 / 1875
  22588. }
  22589. },
  22590. genitals: {
  22591. height: math.unit(2.2, "feet"),
  22592. name: "Genitals",
  22593. image: {
  22594. source: "./media/characters/sheera-castellar/genitals.svg"
  22595. }
  22596. },
  22597. },
  22598. [
  22599. {
  22600. name: "Normal",
  22601. height: math.unit(8 + 4 / 12, "feet")
  22602. },
  22603. {
  22604. name: "Macro",
  22605. height: math.unit(150, "feet"),
  22606. default: true
  22607. },
  22608. {
  22609. name: "Macro+",
  22610. height: math.unit(800, "feet")
  22611. },
  22612. ]
  22613. ))
  22614. characterMakers.push(() => makeCharacter(
  22615. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22616. {
  22617. front: {
  22618. height: math.unit(6, "feet"),
  22619. weight: math.unit(150, "lb"),
  22620. name: "Front",
  22621. image: {
  22622. source: "./media/characters/jaipur/front.svg",
  22623. extra: 3860 / 3731,
  22624. bottom: 287 / 4140
  22625. }
  22626. },
  22627. back: {
  22628. height: math.unit(6, "feet"),
  22629. weight: math.unit(150, "lb"),
  22630. name: "Back",
  22631. image: {
  22632. source: "./media/characters/jaipur/back.svg",
  22633. extra: 4060 / 3930,
  22634. bottom: 151 / 4200
  22635. }
  22636. },
  22637. },
  22638. [
  22639. {
  22640. name: "Normal",
  22641. height: math.unit(1.85, "meters"),
  22642. default: true
  22643. },
  22644. {
  22645. name: "Macro",
  22646. height: math.unit(150, "meters")
  22647. },
  22648. {
  22649. name: "Macro+",
  22650. height: math.unit(0.5, "miles")
  22651. },
  22652. {
  22653. name: "Macro++",
  22654. height: math.unit(2.5, "miles")
  22655. },
  22656. {
  22657. name: "Macro+++",
  22658. height: math.unit(12, "miles")
  22659. },
  22660. {
  22661. name: "Macro++++",
  22662. height: math.unit(120, "miles")
  22663. },
  22664. {
  22665. name: "Macro+++++",
  22666. height: math.unit(1200, "miles")
  22667. },
  22668. ]
  22669. ))
  22670. characterMakers.push(() => makeCharacter(
  22671. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22672. {
  22673. front: {
  22674. height: math.unit(6, "feet"),
  22675. weight: math.unit(150, "lb"),
  22676. name: "Front",
  22677. image: {
  22678. source: "./media/characters/sheila-wolf/front.svg",
  22679. extra: 1931 / 1808,
  22680. bottom: 29.5 / 1960
  22681. }
  22682. },
  22683. dick: {
  22684. height: math.unit(1.464, "feet"),
  22685. name: "Dick",
  22686. image: {
  22687. source: "./media/characters/sheila-wolf/dick.svg"
  22688. }
  22689. },
  22690. muzzle: {
  22691. height: math.unit(0.513, "feet"),
  22692. name: "Muzzle",
  22693. image: {
  22694. source: "./media/characters/sheila-wolf/muzzle.svg"
  22695. }
  22696. },
  22697. },
  22698. [
  22699. {
  22700. name: "Macro",
  22701. height: math.unit(70, "feet"),
  22702. default: true
  22703. },
  22704. ]
  22705. ))
  22706. characterMakers.push(() => makeCharacter(
  22707. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22708. {
  22709. front: {
  22710. height: math.unit(32, "meters"),
  22711. weight: math.unit(300000, "kg"),
  22712. name: "Front",
  22713. image: {
  22714. source: "./media/characters/almor/front.svg",
  22715. extra: 1408 / 1322,
  22716. bottom: 94.6 / 1506.5
  22717. }
  22718. },
  22719. },
  22720. [
  22721. {
  22722. name: "Macro",
  22723. height: math.unit(32, "meters"),
  22724. default: true
  22725. },
  22726. ]
  22727. ))
  22728. characterMakers.push(() => makeCharacter(
  22729. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22730. {
  22731. front: {
  22732. height: math.unit(7, "feet"),
  22733. weight: math.unit(200, "lb"),
  22734. name: "Front",
  22735. image: {
  22736. source: "./media/characters/silver/front.svg",
  22737. extra: 472.1 / 450.5,
  22738. bottom: 26.5 / 499.424
  22739. }
  22740. },
  22741. },
  22742. [
  22743. {
  22744. name: "Normal",
  22745. height: math.unit(7, "feet"),
  22746. default: true
  22747. },
  22748. {
  22749. name: "Macro",
  22750. height: math.unit(800, "feet")
  22751. },
  22752. {
  22753. name: "Megamacro",
  22754. height: math.unit(250, "miles")
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22760. {
  22761. front: {
  22762. height: math.unit(6, "feet"),
  22763. weight: math.unit(150, "lb"),
  22764. name: "Front",
  22765. image: {
  22766. source: "./media/characters/pliskin/front.svg",
  22767. extra: 1469 / 1359,
  22768. bottom: 70 / 1540
  22769. }
  22770. },
  22771. },
  22772. [
  22773. {
  22774. name: "Micro",
  22775. height: math.unit(3, "inches")
  22776. },
  22777. {
  22778. name: "Normal",
  22779. height: math.unit(5 + 11 / 12, "feet"),
  22780. default: true
  22781. },
  22782. {
  22783. name: "Macro",
  22784. height: math.unit(120, "feet")
  22785. },
  22786. ]
  22787. ))
  22788. characterMakers.push(() => makeCharacter(
  22789. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22790. {
  22791. front: {
  22792. height: math.unit(6, "feet"),
  22793. weight: math.unit(150, "lb"),
  22794. name: "Front",
  22795. image: {
  22796. source: "./media/characters/sammy/front.svg",
  22797. extra: 1193 / 1089,
  22798. bottom: 30.5 / 1226
  22799. }
  22800. },
  22801. },
  22802. [
  22803. {
  22804. name: "Macro",
  22805. height: math.unit(1700, "feet"),
  22806. default: true
  22807. },
  22808. {
  22809. name: "Examacro",
  22810. height: math.unit(2.5e9, "lightyears")
  22811. },
  22812. ]
  22813. ))
  22814. characterMakers.push(() => makeCharacter(
  22815. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22816. {
  22817. front: {
  22818. height: math.unit(21, "meters"),
  22819. weight: math.unit(12, "tonnes"),
  22820. name: "Front",
  22821. image: {
  22822. source: "./media/characters/kuru/front.svg",
  22823. extra: 4301 / 3785,
  22824. bottom: 371.3 / 4691
  22825. }
  22826. },
  22827. },
  22828. [
  22829. {
  22830. name: "Macro",
  22831. height: math.unit(21, "meters"),
  22832. default: true
  22833. },
  22834. ]
  22835. ))
  22836. characterMakers.push(() => makeCharacter(
  22837. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22838. {
  22839. front: {
  22840. height: math.unit(23, "meters"),
  22841. weight: math.unit(12.2, "tonnes"),
  22842. name: "Front",
  22843. image: {
  22844. source: "./media/characters/rakka/front.svg",
  22845. extra: 4670 / 4169,
  22846. bottom: 301 / 4968.7
  22847. }
  22848. },
  22849. },
  22850. [
  22851. {
  22852. name: "Macro",
  22853. height: math.unit(23, "meters"),
  22854. default: true
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22860. {
  22861. front: {
  22862. height: math.unit(6, "feet"),
  22863. weight: math.unit(150, "lb"),
  22864. name: "Front",
  22865. image: {
  22866. source: "./media/characters/rhys-feline/front.svg",
  22867. extra: 2488 / 2308,
  22868. bottom: 35.67 / 2519.19
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Really Small",
  22875. height: math.unit(1, "nm")
  22876. },
  22877. {
  22878. name: "Micro",
  22879. height: math.unit(4, "inches")
  22880. },
  22881. {
  22882. name: "Normal",
  22883. height: math.unit(4 + 10 / 12, "feet"),
  22884. default: true
  22885. },
  22886. {
  22887. name: "Macro",
  22888. height: math.unit(100, "feet")
  22889. },
  22890. {
  22891. name: "Megamacto",
  22892. height: math.unit(50, "miles")
  22893. },
  22894. ]
  22895. ))
  22896. characterMakers.push(() => makeCharacter(
  22897. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22898. {
  22899. side: {
  22900. height: math.unit(30, "feet"),
  22901. weight: math.unit(35000, "kg"),
  22902. name: "Side",
  22903. image: {
  22904. source: "./media/characters/alydar/side.svg",
  22905. extra: 234 / 222,
  22906. bottom: 6.5 / 241
  22907. }
  22908. },
  22909. front: {
  22910. height: math.unit(30, "feet"),
  22911. weight: math.unit(35000, "kg"),
  22912. name: "Front",
  22913. image: {
  22914. source: "./media/characters/alydar/front.svg",
  22915. extra: 223.37 / 210.2,
  22916. bottom: 22.3 / 246.76
  22917. }
  22918. },
  22919. top: {
  22920. height: math.unit(64.54, "feet"),
  22921. weight: math.unit(35000, "kg"),
  22922. name: "Top",
  22923. image: {
  22924. source: "./media/characters/alydar/top.svg"
  22925. }
  22926. },
  22927. anthro: {
  22928. height: math.unit(30, "feet"),
  22929. weight: math.unit(9000, "kg"),
  22930. name: "Anthro",
  22931. image: {
  22932. source: "./media/characters/alydar/anthro.svg",
  22933. extra: 432 / 421,
  22934. bottom: 7.18 / 440
  22935. }
  22936. },
  22937. maw: {
  22938. height: math.unit(11.693, "feet"),
  22939. name: "Maw",
  22940. image: {
  22941. source: "./media/characters/alydar/maw.svg"
  22942. }
  22943. },
  22944. head: {
  22945. height: math.unit(11.693, "feet"),
  22946. name: "Head",
  22947. image: {
  22948. source: "./media/characters/alydar/head.svg"
  22949. }
  22950. },
  22951. headAlt: {
  22952. height: math.unit(12.861, "feet"),
  22953. name: "Head (Alt)",
  22954. image: {
  22955. source: "./media/characters/alydar/head-alt.svg"
  22956. }
  22957. },
  22958. wing: {
  22959. height: math.unit(20.712, "feet"),
  22960. name: "Wing",
  22961. image: {
  22962. source: "./media/characters/alydar/wing.svg"
  22963. }
  22964. },
  22965. wingFeather: {
  22966. height: math.unit(9.662, "feet"),
  22967. name: "Wing Feather",
  22968. image: {
  22969. source: "./media/characters/alydar/wing-feather.svg"
  22970. }
  22971. },
  22972. countourFeather: {
  22973. height: math.unit(4.154, "feet"),
  22974. name: "Contour Feather",
  22975. image: {
  22976. source: "./media/characters/alydar/contour-feather.svg"
  22977. }
  22978. },
  22979. },
  22980. [
  22981. {
  22982. name: "Diplomatic",
  22983. height: math.unit(13, "feet"),
  22984. default: true
  22985. },
  22986. {
  22987. name: "Small",
  22988. height: math.unit(30, "feet")
  22989. },
  22990. {
  22991. name: "Normal",
  22992. height: math.unit(95, "feet"),
  22993. default: true
  22994. },
  22995. {
  22996. name: "Large",
  22997. height: math.unit(285, "feet")
  22998. },
  22999. {
  23000. name: "Incomprehensible",
  23001. height: math.unit(450, "megameters")
  23002. },
  23003. ]
  23004. ))
  23005. characterMakers.push(() => makeCharacter(
  23006. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23007. {
  23008. side: {
  23009. height: math.unit(11, "feet"),
  23010. weight: math.unit(1750, "kg"),
  23011. name: "Side",
  23012. image: {
  23013. source: "./media/characters/selicia/side.svg",
  23014. extra: 440 / 396,
  23015. bottom: 24.8 / 465.979
  23016. }
  23017. },
  23018. maw: {
  23019. height: math.unit(4.665, "feet"),
  23020. name: "Maw",
  23021. image: {
  23022. source: "./media/characters/selicia/maw.svg"
  23023. }
  23024. },
  23025. },
  23026. [
  23027. {
  23028. name: "Normal",
  23029. height: math.unit(11, "feet"),
  23030. default: true
  23031. },
  23032. ]
  23033. ))
  23034. characterMakers.push(() => makeCharacter(
  23035. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23036. {
  23037. side: {
  23038. height: math.unit(2 + 6 / 12, "feet"),
  23039. weight: math.unit(30, "lb"),
  23040. name: "Side",
  23041. image: {
  23042. source: "./media/characters/layla/side.svg",
  23043. extra: 244 / 188,
  23044. bottom: 18.2 / 262.1
  23045. }
  23046. },
  23047. back: {
  23048. height: math.unit(2 + 6 / 12, "feet"),
  23049. weight: math.unit(30, "lb"),
  23050. name: "Back",
  23051. image: {
  23052. source: "./media/characters/layla/back.svg",
  23053. extra: 308 / 241.5,
  23054. bottom: 8.9 / 316.8
  23055. }
  23056. },
  23057. cumming: {
  23058. height: math.unit(2 + 6 / 12, "feet"),
  23059. weight: math.unit(30, "lb"),
  23060. name: "Cumming",
  23061. image: {
  23062. source: "./media/characters/layla/cumming.svg",
  23063. extra: 342 / 279,
  23064. bottom: 595 / 938
  23065. }
  23066. },
  23067. dickFlaccid: {
  23068. height: math.unit(2.595, "feet"),
  23069. name: "Flaccid Genitals",
  23070. image: {
  23071. source: "./media/characters/layla/dick-flaccid.svg"
  23072. }
  23073. },
  23074. dickErect: {
  23075. height: math.unit(2.359, "feet"),
  23076. name: "Erect Genitals",
  23077. image: {
  23078. source: "./media/characters/layla/dick-erect.svg"
  23079. }
  23080. },
  23081. },
  23082. [
  23083. {
  23084. name: "Micro",
  23085. height: math.unit(1, "inch")
  23086. },
  23087. {
  23088. name: "Small",
  23089. height: math.unit(1, "foot")
  23090. },
  23091. {
  23092. name: "Normal",
  23093. height: math.unit(2 + 6 / 12, "feet"),
  23094. default: true
  23095. },
  23096. {
  23097. name: "Macro",
  23098. height: math.unit(200, "feet")
  23099. },
  23100. {
  23101. name: "Megamacro",
  23102. height: math.unit(1000, "miles")
  23103. },
  23104. {
  23105. name: "Planetary",
  23106. height: math.unit(8000, "miles")
  23107. },
  23108. {
  23109. name: "True Layla",
  23110. height: math.unit(200000 * 7, "multiverses")
  23111. },
  23112. ]
  23113. ))
  23114. characterMakers.push(() => makeCharacter(
  23115. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23116. {
  23117. back: {
  23118. height: math.unit(10.5, "feet"),
  23119. weight: math.unit(800, "lb"),
  23120. name: "Back",
  23121. image: {
  23122. source: "./media/characters/knox/back.svg",
  23123. extra: 1486 / 1089,
  23124. bottom: 107 / 1601.4
  23125. }
  23126. },
  23127. side: {
  23128. height: math.unit(10.5, "feet"),
  23129. weight: math.unit(800, "lb"),
  23130. name: "Side",
  23131. image: {
  23132. source: "./media/characters/knox/side.svg",
  23133. extra: 244 / 218,
  23134. bottom: 14 / 260
  23135. }
  23136. },
  23137. },
  23138. [
  23139. {
  23140. name: "Compact",
  23141. height: math.unit(10.5, "feet"),
  23142. default: true
  23143. },
  23144. {
  23145. name: "Dynamax",
  23146. height: math.unit(210, "feet")
  23147. },
  23148. {
  23149. name: "Full Macro",
  23150. height: math.unit(850, "feet")
  23151. },
  23152. ]
  23153. ))
  23154. characterMakers.push(() => makeCharacter(
  23155. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23156. {
  23157. front: {
  23158. height: math.unit(6, "feet"),
  23159. weight: math.unit(152, "lb"),
  23160. name: "Front",
  23161. image: {
  23162. source: "./media/characters/shin-pikachu/front.svg",
  23163. extra: 1574 / 1480,
  23164. bottom: 53.3 / 1626
  23165. }
  23166. },
  23167. hand: {
  23168. height: math.unit(1.055, "feet"),
  23169. name: "Hand",
  23170. image: {
  23171. source: "./media/characters/shin-pikachu/hand.svg"
  23172. }
  23173. },
  23174. foot: {
  23175. height: math.unit(1.1, "feet"),
  23176. name: "Foot",
  23177. image: {
  23178. source: "./media/characters/shin-pikachu/foot.svg"
  23179. }
  23180. },
  23181. collar: {
  23182. height: math.unit(0.386, "feet"),
  23183. name: "Collar",
  23184. image: {
  23185. source: "./media/characters/shin-pikachu/collar.svg"
  23186. }
  23187. },
  23188. },
  23189. [
  23190. {
  23191. name: "Smallest",
  23192. height: math.unit(0.5, "inches")
  23193. },
  23194. {
  23195. name: "Micro",
  23196. height: math.unit(6, "inches")
  23197. },
  23198. {
  23199. name: "Normal",
  23200. height: math.unit(6, "feet"),
  23201. default: true
  23202. },
  23203. {
  23204. name: "Macro",
  23205. height: math.unit(150, "feet")
  23206. },
  23207. ]
  23208. ))
  23209. characterMakers.push(() => makeCharacter(
  23210. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23211. {
  23212. front: {
  23213. height: math.unit(28, "feet"),
  23214. weight: math.unit(10500, "lb"),
  23215. name: "Front",
  23216. image: {
  23217. source: "./media/characters/kayda/front.svg",
  23218. extra: 1536 / 1428,
  23219. bottom: 68.7 / 1603
  23220. }
  23221. },
  23222. back: {
  23223. height: math.unit(28, "feet"),
  23224. weight: math.unit(10500, "lb"),
  23225. name: "Back",
  23226. image: {
  23227. source: "./media/characters/kayda/back.svg",
  23228. extra: 1557 / 1464,
  23229. bottom: 39.5 / 1597.49
  23230. }
  23231. },
  23232. dick: {
  23233. height: math.unit(3.858, "feet"),
  23234. name: "Dick",
  23235. image: {
  23236. source: "./media/characters/kayda/dick.svg"
  23237. }
  23238. },
  23239. },
  23240. [
  23241. {
  23242. name: "Macro",
  23243. height: math.unit(28, "feet"),
  23244. default: true
  23245. },
  23246. ]
  23247. ))
  23248. characterMakers.push(() => makeCharacter(
  23249. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23250. {
  23251. front: {
  23252. height: math.unit(10 + 11 / 12, "feet"),
  23253. weight: math.unit(1400, "lb"),
  23254. name: "Front",
  23255. image: {
  23256. source: "./media/characters/brian/front.svg",
  23257. extra: 737 / 692,
  23258. bottom: 55.4 / 785
  23259. }
  23260. },
  23261. },
  23262. [
  23263. {
  23264. name: "Normal",
  23265. height: math.unit(10 + 11 / 12, "feet"),
  23266. default: true
  23267. },
  23268. ]
  23269. ))
  23270. characterMakers.push(() => makeCharacter(
  23271. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23272. {
  23273. front: {
  23274. height: math.unit(5 + 8 / 12, "feet"),
  23275. weight: math.unit(140, "lb"),
  23276. name: "Front",
  23277. image: {
  23278. source: "./media/characters/khemri/front.svg",
  23279. extra: 4780 / 4059,
  23280. bottom: 80.1 / 4859.25
  23281. }
  23282. },
  23283. },
  23284. [
  23285. {
  23286. name: "Micro",
  23287. height: math.unit(6, "inches")
  23288. },
  23289. {
  23290. name: "Normal",
  23291. height: math.unit(5 + 8 / 12, "feet"),
  23292. default: true
  23293. },
  23294. ]
  23295. ))
  23296. characterMakers.push(() => makeCharacter(
  23297. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23298. {
  23299. front: {
  23300. height: math.unit(13, "feet"),
  23301. weight: math.unit(1700, "lb"),
  23302. name: "Front",
  23303. image: {
  23304. source: "./media/characters/felix-braveheart/front.svg",
  23305. extra: 1222 / 1157,
  23306. bottom: 53.2 / 1280
  23307. }
  23308. },
  23309. back: {
  23310. height: math.unit(13, "feet"),
  23311. weight: math.unit(1700, "lb"),
  23312. name: "Back",
  23313. image: {
  23314. source: "./media/characters/felix-braveheart/back.svg",
  23315. extra: 1277 / 1203,
  23316. bottom: 50.2 / 1327
  23317. }
  23318. },
  23319. feral: {
  23320. height: math.unit(6, "feet"),
  23321. weight: math.unit(400, "lb"),
  23322. name: "Feral",
  23323. image: {
  23324. source: "./media/characters/felix-braveheart/feral.svg",
  23325. extra: 682 / 625,
  23326. bottom: 6.9 / 688
  23327. }
  23328. },
  23329. },
  23330. [
  23331. {
  23332. name: "Normal",
  23333. height: math.unit(13, "feet"),
  23334. default: true
  23335. },
  23336. ]
  23337. ))
  23338. characterMakers.push(() => makeCharacter(
  23339. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23340. {
  23341. side: {
  23342. height: math.unit(5 + 11 / 12, "feet"),
  23343. weight: math.unit(1400, "lb"),
  23344. name: "Side",
  23345. image: {
  23346. source: "./media/characters/shadow-blade/side.svg",
  23347. extra: 1726 / 1267,
  23348. bottom: 58.4 / 1785
  23349. }
  23350. },
  23351. },
  23352. [
  23353. {
  23354. name: "Normal",
  23355. height: math.unit(5 + 11 / 12, "feet"),
  23356. default: true
  23357. },
  23358. ]
  23359. ))
  23360. characterMakers.push(() => makeCharacter(
  23361. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23362. {
  23363. front: {
  23364. height: math.unit(1 + 6 / 12, "feet"),
  23365. weight: math.unit(25, "lb"),
  23366. name: "Front",
  23367. image: {
  23368. source: "./media/characters/karla-halldor/front.svg",
  23369. extra: 1459 / 1383,
  23370. bottom: 12 / 1472
  23371. }
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Normal",
  23377. height: math.unit(1 + 6 / 12, "feet"),
  23378. default: true
  23379. },
  23380. ]
  23381. ))
  23382. characterMakers.push(() => makeCharacter(
  23383. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23384. {
  23385. front: {
  23386. height: math.unit(6 + 2 / 12, "feet"),
  23387. weight: math.unit(160, "lb"),
  23388. name: "Front",
  23389. image: {
  23390. source: "./media/characters/ariam/front.svg",
  23391. extra: 714 / 617,
  23392. bottom: 23.4 / 737,
  23393. }
  23394. },
  23395. squatting: {
  23396. height: math.unit(4.1, "feet"),
  23397. weight: math.unit(160, "lb"),
  23398. name: "Squatting",
  23399. image: {
  23400. source: "./media/characters/ariam/squatting.svg",
  23401. extra: 2617 / 2112,
  23402. bottom: 61.2 / 2681,
  23403. }
  23404. },
  23405. },
  23406. [
  23407. {
  23408. name: "Normal",
  23409. height: math.unit(6 + 2 / 12, "feet"),
  23410. default: true
  23411. },
  23412. {
  23413. name: "Normal+",
  23414. height: math.unit(4, "meters")
  23415. },
  23416. {
  23417. name: "Macro",
  23418. height: math.unit(50, "meters")
  23419. },
  23420. {
  23421. name: "Macro+",
  23422. height: math.unit(100, "meters")
  23423. },
  23424. {
  23425. name: "Megamacro",
  23426. height: math.unit(20, "km")
  23427. },
  23428. ]
  23429. ))
  23430. characterMakers.push(() => makeCharacter(
  23431. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23432. {
  23433. front: {
  23434. height: math.unit(1.67, "meters"),
  23435. weight: math.unit(140, "lb"),
  23436. name: "Front",
  23437. image: {
  23438. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23439. extra: 438 / 410,
  23440. bottom: 0.75 / 439
  23441. }
  23442. },
  23443. },
  23444. [
  23445. {
  23446. name: "Shrunken",
  23447. height: math.unit(7.6, "cm")
  23448. },
  23449. {
  23450. name: "Human Scale",
  23451. height: math.unit(1.67, "meters")
  23452. },
  23453. {
  23454. name: "Wolxi Scale",
  23455. height: math.unit(36.7, "meters"),
  23456. default: true
  23457. },
  23458. ]
  23459. ))
  23460. characterMakers.push(() => makeCharacter(
  23461. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23462. {
  23463. front: {
  23464. height: math.unit(1.73, "meters"),
  23465. weight: math.unit(240, "lb"),
  23466. name: "Front",
  23467. image: {
  23468. source: "./media/characters/izue-two-mothers/front.svg",
  23469. extra: 469 / 437,
  23470. bottom: 1.24 / 470.6
  23471. }
  23472. },
  23473. },
  23474. [
  23475. {
  23476. name: "Shrunken",
  23477. height: math.unit(7.86, "cm")
  23478. },
  23479. {
  23480. name: "Human Scale",
  23481. height: math.unit(1.73, "meters")
  23482. },
  23483. {
  23484. name: "Wolxi Scale",
  23485. height: math.unit(38, "meters"),
  23486. default: true
  23487. },
  23488. ]
  23489. ))
  23490. characterMakers.push(() => makeCharacter(
  23491. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23492. {
  23493. front: {
  23494. height: math.unit(1.55, "meters"),
  23495. weight: math.unit(120, "lb"),
  23496. name: "Front",
  23497. image: {
  23498. source: "./media/characters/teeku-love-shack/front.svg",
  23499. extra: 387 / 362,
  23500. bottom: 1.51 / 388
  23501. }
  23502. },
  23503. },
  23504. [
  23505. {
  23506. name: "Shrunken",
  23507. height: math.unit(7, "cm")
  23508. },
  23509. {
  23510. name: "Human Scale",
  23511. height: math.unit(1.55, "meters")
  23512. },
  23513. {
  23514. name: "Wolxi Scale",
  23515. height: math.unit(34.1, "meters"),
  23516. default: true
  23517. },
  23518. ]
  23519. ))
  23520. characterMakers.push(() => makeCharacter(
  23521. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23522. {
  23523. front: {
  23524. height: math.unit(1.83, "meters"),
  23525. weight: math.unit(135, "lb"),
  23526. name: "Front",
  23527. image: {
  23528. source: "./media/characters/dejma-the-red/front.svg",
  23529. extra: 480 / 458,
  23530. bottom: 1.8 / 482
  23531. }
  23532. },
  23533. },
  23534. [
  23535. {
  23536. name: "Shrunken",
  23537. height: math.unit(8.3, "cm")
  23538. },
  23539. {
  23540. name: "Human Scale",
  23541. height: math.unit(1.83, "meters")
  23542. },
  23543. {
  23544. name: "Wolxi Scale",
  23545. height: math.unit(40, "meters"),
  23546. default: true
  23547. },
  23548. ]
  23549. ))
  23550. characterMakers.push(() => makeCharacter(
  23551. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23552. {
  23553. front: {
  23554. height: math.unit(1.78, "meters"),
  23555. weight: math.unit(65, "kg"),
  23556. name: "Front",
  23557. image: {
  23558. source: "./media/characters/aki/front.svg",
  23559. extra: 452 / 415
  23560. }
  23561. },
  23562. frontNsfw: {
  23563. height: math.unit(1.78, "meters"),
  23564. weight: math.unit(65, "kg"),
  23565. name: "Front (NSFW)",
  23566. image: {
  23567. source: "./media/characters/aki/front-nsfw.svg",
  23568. extra: 452 / 415
  23569. }
  23570. },
  23571. back: {
  23572. height: math.unit(1.78, "meters"),
  23573. weight: math.unit(65, "kg"),
  23574. name: "Back",
  23575. image: {
  23576. source: "./media/characters/aki/back.svg",
  23577. extra: 452 / 415
  23578. }
  23579. },
  23580. rump: {
  23581. height: math.unit(2.05, "feet"),
  23582. name: "Rump",
  23583. image: {
  23584. source: "./media/characters/aki/rump.svg"
  23585. }
  23586. },
  23587. dick: {
  23588. height: math.unit(0.95, "feet"),
  23589. name: "Dick",
  23590. image: {
  23591. source: "./media/characters/aki/dick.svg"
  23592. }
  23593. },
  23594. },
  23595. [
  23596. {
  23597. name: "Micro",
  23598. height: math.unit(15, "cm")
  23599. },
  23600. {
  23601. name: "Normal",
  23602. height: math.unit(178, "cm"),
  23603. default: true
  23604. },
  23605. {
  23606. name: "Macro",
  23607. height: math.unit(214, "m")
  23608. },
  23609. {
  23610. name: "Macro+",
  23611. height: math.unit(534, "m")
  23612. },
  23613. ]
  23614. ))
  23615. characterMakers.push(() => makeCharacter(
  23616. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23617. {
  23618. front: {
  23619. height: math.unit(5 + 5 / 12, "feet"),
  23620. weight: math.unit(120, "lb"),
  23621. name: "Front",
  23622. image: {
  23623. source: "./media/characters/ari/front.svg",
  23624. extra: 714.5 / 682,
  23625. bottom: 8 / 722.5
  23626. }
  23627. },
  23628. },
  23629. [
  23630. {
  23631. name: "Normal",
  23632. height: math.unit(5 + 5 / 12, "feet")
  23633. },
  23634. {
  23635. name: "Macro",
  23636. height: math.unit(100, "feet"),
  23637. default: true
  23638. },
  23639. {
  23640. name: "Megamacro",
  23641. height: math.unit(100, "miles")
  23642. },
  23643. {
  23644. name: "Gigamacro",
  23645. height: math.unit(80000, "miles")
  23646. },
  23647. ]
  23648. ))
  23649. characterMakers.push(() => makeCharacter(
  23650. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23651. {
  23652. side: {
  23653. height: math.unit(9, "feet"),
  23654. weight: math.unit(400, "kg"),
  23655. name: "Side",
  23656. image: {
  23657. source: "./media/characters/bolt/side.svg",
  23658. extra: 1126 / 896,
  23659. bottom: 60 / 1187.3,
  23660. }
  23661. },
  23662. },
  23663. [
  23664. {
  23665. name: "Micro",
  23666. height: math.unit(5, "inches")
  23667. },
  23668. {
  23669. name: "Normal",
  23670. height: math.unit(9, "feet"),
  23671. default: true
  23672. },
  23673. {
  23674. name: "Macro",
  23675. height: math.unit(700, "feet")
  23676. },
  23677. {
  23678. name: "Max Size",
  23679. height: math.unit(1.52e22, "yottameters")
  23680. },
  23681. ]
  23682. ))
  23683. characterMakers.push(() => makeCharacter(
  23684. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23685. {
  23686. front: {
  23687. height: math.unit(4.53, "meters"),
  23688. weight: math.unit(3, "tons"),
  23689. name: "Front",
  23690. image: {
  23691. source: "./media/characters/draekon-sylviar/front.svg",
  23692. extra: 1228 / 1068,
  23693. bottom: 41 / 1270
  23694. }
  23695. },
  23696. tail: {
  23697. height: math.unit(1.772, "meter"),
  23698. name: "Tail",
  23699. image: {
  23700. source: "./media/characters/draekon-sylviar/tail.svg"
  23701. }
  23702. },
  23703. head: {
  23704. height: math.unit(1.331, "meter"),
  23705. name: "Head",
  23706. image: {
  23707. source: "./media/characters/draekon-sylviar/head.svg"
  23708. }
  23709. },
  23710. hand: {
  23711. height: math.unit(0.564, "meter"),
  23712. name: "Hand",
  23713. image: {
  23714. source: "./media/characters/draekon-sylviar/hand.svg"
  23715. }
  23716. },
  23717. foot: {
  23718. height: math.unit(0.621, "meter"),
  23719. name: "Foot",
  23720. image: {
  23721. source: "./media/characters/draekon-sylviar/foot.svg",
  23722. bottom: 32 / 324
  23723. }
  23724. },
  23725. dick: {
  23726. height: math.unit(61, "cm"),
  23727. name: "Dick",
  23728. image: {
  23729. source: "./media/characters/draekon-sylviar/dick.svg"
  23730. }
  23731. },
  23732. dickseparated: {
  23733. height: math.unit(61, "cm"),
  23734. name: "Dick-separated",
  23735. image: {
  23736. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23737. }
  23738. },
  23739. },
  23740. [
  23741. {
  23742. name: "Small",
  23743. height: math.unit(4.53 / 2, "meters"),
  23744. default: true
  23745. },
  23746. {
  23747. name: "Normal",
  23748. height: math.unit(4.53, "meters"),
  23749. default: true
  23750. },
  23751. {
  23752. name: "Large",
  23753. height: math.unit(4.53 * 2, "meters"),
  23754. },
  23755. ]
  23756. ))
  23757. characterMakers.push(() => makeCharacter(
  23758. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23759. {
  23760. front: {
  23761. height: math.unit(6 + 2 / 12, "feet"),
  23762. weight: math.unit(180, "lb"),
  23763. name: "Front",
  23764. image: {
  23765. source: "./media/characters/brawler/front.svg",
  23766. extra: 3301 / 3027,
  23767. bottom: 138 / 3439
  23768. }
  23769. },
  23770. },
  23771. [
  23772. {
  23773. name: "Normal",
  23774. height: math.unit(6 + 2 / 12, "feet"),
  23775. default: true
  23776. },
  23777. ]
  23778. ))
  23779. characterMakers.push(() => makeCharacter(
  23780. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23781. {
  23782. front: {
  23783. height: math.unit(11, "feet"),
  23784. weight: math.unit(1000, "lb"),
  23785. name: "Front",
  23786. image: {
  23787. source: "./media/characters/alex/front.svg",
  23788. bottom: 44.5 / 620
  23789. }
  23790. },
  23791. },
  23792. [
  23793. {
  23794. name: "Micro",
  23795. height: math.unit(5, "inches")
  23796. },
  23797. {
  23798. name: "Normal",
  23799. height: math.unit(11, "feet"),
  23800. default: true
  23801. },
  23802. {
  23803. name: "Macro",
  23804. height: math.unit(9.5e9, "feet")
  23805. },
  23806. {
  23807. name: "Max Size",
  23808. height: math.unit(1.4e283, "yottameters")
  23809. },
  23810. ]
  23811. ))
  23812. characterMakers.push(() => makeCharacter(
  23813. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23814. {
  23815. female: {
  23816. height: math.unit(29.9, "m"),
  23817. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23818. name: "Female",
  23819. image: {
  23820. source: "./media/characters/zenari/female.svg",
  23821. extra: 3281.6 / 3217,
  23822. bottom: 72.2 / 3353
  23823. }
  23824. },
  23825. male: {
  23826. height: math.unit(27.7, "m"),
  23827. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23828. name: "Male",
  23829. image: {
  23830. source: "./media/characters/zenari/male.svg",
  23831. extra: 3008 / 2991,
  23832. bottom: 54.6 / 3069
  23833. }
  23834. },
  23835. },
  23836. [
  23837. {
  23838. name: "Macro",
  23839. height: math.unit(29.7, "meters"),
  23840. default: true
  23841. },
  23842. ]
  23843. ))
  23844. characterMakers.push(() => makeCharacter(
  23845. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23846. {
  23847. female: {
  23848. height: math.unit(23.8, "m"),
  23849. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23850. name: "Female",
  23851. image: {
  23852. source: "./media/characters/mactarian/female.svg",
  23853. extra: 2662 / 2569,
  23854. bottom: 73 / 2736
  23855. }
  23856. },
  23857. male: {
  23858. height: math.unit(23.8, "m"),
  23859. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23860. name: "Male",
  23861. image: {
  23862. source: "./media/characters/mactarian/male.svg",
  23863. extra: 2673 / 2600,
  23864. bottom: 76 / 2750
  23865. }
  23866. },
  23867. },
  23868. [
  23869. {
  23870. name: "Macro",
  23871. height: math.unit(23.8, "meters"),
  23872. default: true
  23873. },
  23874. ]
  23875. ))
  23876. characterMakers.push(() => makeCharacter(
  23877. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23878. {
  23879. female: {
  23880. height: math.unit(19.3, "m"),
  23881. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23882. name: "Female",
  23883. image: {
  23884. source: "./media/characters/umok/female.svg",
  23885. extra: 2186 / 2078,
  23886. bottom: 87 / 2277
  23887. }
  23888. },
  23889. male: {
  23890. height: math.unit(19.5, "m"),
  23891. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23892. name: "Male",
  23893. image: {
  23894. source: "./media/characters/umok/male.svg",
  23895. extra: 2233 / 2140,
  23896. bottom: 24.4 / 2258
  23897. }
  23898. },
  23899. },
  23900. [
  23901. {
  23902. name: "Macro",
  23903. height: math.unit(19.3, "meters"),
  23904. default: true
  23905. },
  23906. ]
  23907. ))
  23908. characterMakers.push(() => makeCharacter(
  23909. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23910. {
  23911. female: {
  23912. height: math.unit(26.15, "m"),
  23913. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23914. name: "Female",
  23915. image: {
  23916. source: "./media/characters/joraxian/female.svg",
  23917. extra: 2912 / 2824,
  23918. bottom: 36 / 2956
  23919. }
  23920. },
  23921. male: {
  23922. height: math.unit(25.4, "m"),
  23923. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23924. name: "Male",
  23925. image: {
  23926. source: "./media/characters/joraxian/male.svg",
  23927. extra: 2877 / 2721,
  23928. bottom: 82 / 2967
  23929. }
  23930. },
  23931. },
  23932. [
  23933. {
  23934. name: "Macro",
  23935. height: math.unit(26.15, "meters"),
  23936. default: true
  23937. },
  23938. ]
  23939. ))
  23940. characterMakers.push(() => makeCharacter(
  23941. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23942. {
  23943. female: {
  23944. height: math.unit(21.6, "m"),
  23945. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23946. name: "Female",
  23947. image: {
  23948. source: "./media/characters/sthara/female.svg",
  23949. extra: 2516 / 2347,
  23950. bottom: 21.5 / 2537
  23951. }
  23952. },
  23953. male: {
  23954. height: math.unit(24, "m"),
  23955. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23956. name: "Male",
  23957. image: {
  23958. source: "./media/characters/sthara/male.svg",
  23959. extra: 2732 / 2607,
  23960. bottom: 23 / 2732
  23961. }
  23962. },
  23963. },
  23964. [
  23965. {
  23966. name: "Macro",
  23967. height: math.unit(21.6, "meters"),
  23968. default: true
  23969. },
  23970. ]
  23971. ))
  23972. characterMakers.push(() => makeCharacter(
  23973. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23974. {
  23975. front: {
  23976. height: math.unit(6 + 4 / 12, "feet"),
  23977. weight: math.unit(175, "lb"),
  23978. name: "Front",
  23979. image: {
  23980. source: "./media/characters/luka-bryzant/front.svg",
  23981. extra: 311 / 289,
  23982. bottom: 4 / 315
  23983. }
  23984. },
  23985. back: {
  23986. height: math.unit(6 + 4 / 12, "feet"),
  23987. weight: math.unit(175, "lb"),
  23988. name: "Back",
  23989. image: {
  23990. source: "./media/characters/luka-bryzant/back.svg",
  23991. extra: 311 / 289,
  23992. bottom: 3.8 / 313.7
  23993. }
  23994. },
  23995. },
  23996. [
  23997. {
  23998. name: "Micro",
  23999. height: math.unit(10, "inches")
  24000. },
  24001. {
  24002. name: "Normal",
  24003. height: math.unit(6 + 4 / 12, "feet"),
  24004. default: true
  24005. },
  24006. {
  24007. name: "Large",
  24008. height: math.unit(12, "feet")
  24009. },
  24010. ]
  24011. ))
  24012. characterMakers.push(() => makeCharacter(
  24013. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24014. {
  24015. front: {
  24016. height: math.unit(5 + 7 / 12, "feet"),
  24017. weight: math.unit(185, "lb"),
  24018. name: "Front",
  24019. image: {
  24020. source: "./media/characters/aman-aquila/front.svg",
  24021. extra: 1013 / 976,
  24022. bottom: 45.6 / 1057
  24023. }
  24024. },
  24025. side: {
  24026. height: math.unit(5 + 7 / 12, "feet"),
  24027. weight: math.unit(185, "lb"),
  24028. name: "Side",
  24029. image: {
  24030. source: "./media/characters/aman-aquila/side.svg",
  24031. extra: 1054 / 1011,
  24032. bottom: 15 / 1070
  24033. }
  24034. },
  24035. back: {
  24036. height: math.unit(5 + 7 / 12, "feet"),
  24037. weight: math.unit(185, "lb"),
  24038. name: "Back",
  24039. image: {
  24040. source: "./media/characters/aman-aquila/back.svg",
  24041. extra: 1026 / 970,
  24042. bottom: 12 / 1039
  24043. }
  24044. },
  24045. head: {
  24046. height: math.unit(1.211, "feet"),
  24047. name: "Head",
  24048. image: {
  24049. source: "./media/characters/aman-aquila/head.svg",
  24050. }
  24051. },
  24052. },
  24053. [
  24054. {
  24055. name: "Minimicro",
  24056. height: math.unit(0.057, "inches")
  24057. },
  24058. {
  24059. name: "Micro",
  24060. height: math.unit(7, "inches")
  24061. },
  24062. {
  24063. name: "Mini",
  24064. height: math.unit(3 + 7 / 12, "feet")
  24065. },
  24066. {
  24067. name: "Normal",
  24068. height: math.unit(5 + 7 / 12, "feet"),
  24069. default: true
  24070. },
  24071. {
  24072. name: "Macro",
  24073. height: math.unit(157 + 7 / 12, "feet")
  24074. },
  24075. {
  24076. name: "Megamacro",
  24077. height: math.unit(1557 + 7 / 12, "feet")
  24078. },
  24079. {
  24080. name: "Gigamacro",
  24081. height: math.unit(15557 + 7 / 12, "feet")
  24082. },
  24083. ]
  24084. ))
  24085. characterMakers.push(() => makeCharacter(
  24086. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24087. {
  24088. front: {
  24089. height: math.unit(3 + 2 / 12, "inches"),
  24090. weight: math.unit(0.3, "ounces"),
  24091. name: "Front",
  24092. image: {
  24093. source: "./media/characters/hiphae/front.svg",
  24094. extra: 1931 / 1683,
  24095. bottom: 24 / 1955
  24096. }
  24097. },
  24098. },
  24099. [
  24100. {
  24101. name: "Normal",
  24102. height: math.unit(3 + 1 / 2, "inches"),
  24103. default: true
  24104. },
  24105. ]
  24106. ))
  24107. characterMakers.push(() => makeCharacter(
  24108. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24109. {
  24110. front: {
  24111. height: math.unit(5 + 10 / 12, "feet"),
  24112. weight: math.unit(165, "lb"),
  24113. name: "Front",
  24114. image: {
  24115. source: "./media/characters/nicky/front.svg",
  24116. extra: 3144 / 2886,
  24117. bottom: 45.6 / 3192
  24118. }
  24119. },
  24120. back: {
  24121. height: math.unit(5 + 10 / 12, "feet"),
  24122. weight: math.unit(165, "lb"),
  24123. name: "Back",
  24124. image: {
  24125. source: "./media/characters/nicky/back.svg",
  24126. extra: 3055 / 2804,
  24127. bottom: 28.4 / 3087
  24128. }
  24129. },
  24130. frontclothed: {
  24131. height: math.unit(5 + 10 / 12, "feet"),
  24132. weight: math.unit(165, "lb"),
  24133. name: "Front-clothed",
  24134. image: {
  24135. source: "./media/characters/nicky/front-clothed.svg",
  24136. extra: 3184.9 / 2926.9,
  24137. bottom: 86.5 / 3239.9
  24138. }
  24139. },
  24140. foot: {
  24141. height: math.unit(1.16, "feet"),
  24142. name: "Foot",
  24143. image: {
  24144. source: "./media/characters/nicky/foot.svg"
  24145. }
  24146. },
  24147. feet: {
  24148. height: math.unit(1.34, "feet"),
  24149. name: "Feet",
  24150. image: {
  24151. source: "./media/characters/nicky/feet.svg"
  24152. }
  24153. },
  24154. maw: {
  24155. height: math.unit(0.9, "feet"),
  24156. name: "Maw",
  24157. image: {
  24158. source: "./media/characters/nicky/maw.svg"
  24159. }
  24160. },
  24161. },
  24162. [
  24163. {
  24164. name: "Normal",
  24165. height: math.unit(5 + 10 / 12, "feet"),
  24166. default: true
  24167. },
  24168. {
  24169. name: "Macro",
  24170. height: math.unit(60, "feet")
  24171. },
  24172. {
  24173. name: "Megamacro",
  24174. height: math.unit(1, "mile")
  24175. },
  24176. ]
  24177. ))
  24178. characterMakers.push(() => makeCharacter(
  24179. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24180. {
  24181. side: {
  24182. height: math.unit(10, "feet"),
  24183. weight: math.unit(600, "lb"),
  24184. name: "Side",
  24185. image: {
  24186. source: "./media/characters/blair/side.svg",
  24187. bottom: 16.6 / 475,
  24188. extra: 458 / 431
  24189. }
  24190. },
  24191. },
  24192. [
  24193. {
  24194. name: "Micro",
  24195. height: math.unit(8, "inches")
  24196. },
  24197. {
  24198. name: "Normal",
  24199. height: math.unit(10, "feet"),
  24200. default: true
  24201. },
  24202. {
  24203. name: "Macro",
  24204. height: math.unit(180, "feet")
  24205. },
  24206. ]
  24207. ))
  24208. characterMakers.push(() => makeCharacter(
  24209. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24210. {
  24211. front: {
  24212. height: math.unit(5 + 4 / 12, "feet"),
  24213. weight: math.unit(125, "lb"),
  24214. name: "Front",
  24215. image: {
  24216. source: "./media/characters/fisher/front.svg",
  24217. extra: 444 / 390,
  24218. bottom: 2 / 444.8
  24219. }
  24220. },
  24221. },
  24222. [
  24223. {
  24224. name: "Micro",
  24225. height: math.unit(4, "inches")
  24226. },
  24227. {
  24228. name: "Normal",
  24229. height: math.unit(5 + 4 / 12, "feet"),
  24230. default: true
  24231. },
  24232. {
  24233. name: "Macro",
  24234. height: math.unit(100, "feet")
  24235. },
  24236. ]
  24237. ))
  24238. characterMakers.push(() => makeCharacter(
  24239. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24240. {
  24241. front: {
  24242. height: math.unit(6.71, "feet"),
  24243. weight: math.unit(200, "lb"),
  24244. capacity: math.unit(1000000, "people"),
  24245. name: "Front",
  24246. image: {
  24247. source: "./media/characters/gliss/front.svg",
  24248. extra: 2347 / 2231,
  24249. bottom: 113 / 2462
  24250. }
  24251. },
  24252. hammerspaceSize: {
  24253. height: math.unit(6.71 * 717, "feet"),
  24254. weight: math.unit(200, "lb"),
  24255. capacity: math.unit(1000000, "people"),
  24256. name: "Hammerspace Size",
  24257. image: {
  24258. source: "./media/characters/gliss/front.svg",
  24259. extra: 2347 / 2231,
  24260. bottom: 113 / 2462
  24261. }
  24262. },
  24263. },
  24264. [
  24265. {
  24266. name: "Normal",
  24267. height: math.unit(6.71, "feet"),
  24268. default: true
  24269. },
  24270. ]
  24271. ))
  24272. characterMakers.push(() => makeCharacter(
  24273. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24274. {
  24275. side: {
  24276. height: math.unit(1.44, "m"),
  24277. weight: math.unit(80, "kg"),
  24278. name: "Side",
  24279. image: {
  24280. source: "./media/characters/dune-anderson/side.svg",
  24281. bottom: 49 / 1426
  24282. }
  24283. },
  24284. },
  24285. [
  24286. {
  24287. name: "Wolf-sized",
  24288. height: math.unit(1.44, "meters")
  24289. },
  24290. {
  24291. name: "Normal",
  24292. height: math.unit(5.05, "meters"),
  24293. default: true
  24294. },
  24295. {
  24296. name: "Big",
  24297. height: math.unit(14.4, "meters")
  24298. },
  24299. {
  24300. name: "Huge",
  24301. height: math.unit(144, "meters")
  24302. },
  24303. ]
  24304. ))
  24305. characterMakers.push(() => makeCharacter(
  24306. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24307. {
  24308. front: {
  24309. height: math.unit(7, "feet"),
  24310. weight: math.unit(425, "lb"),
  24311. name: "Front",
  24312. image: {
  24313. source: "./media/characters/hind/front.svg",
  24314. extra: 2091 / 1860,
  24315. bottom: 129 / 2220
  24316. }
  24317. },
  24318. back: {
  24319. height: math.unit(7, "feet"),
  24320. weight: math.unit(425, "lb"),
  24321. name: "Back",
  24322. image: {
  24323. source: "./media/characters/hind/back.svg",
  24324. extra: 2091 / 1860,
  24325. bottom: 24.6 / 2309
  24326. }
  24327. },
  24328. tail: {
  24329. height: math.unit(2.8, "feet"),
  24330. name: "Tail",
  24331. image: {
  24332. source: "./media/characters/hind/tail.svg"
  24333. }
  24334. },
  24335. head: {
  24336. height: math.unit(2.55, "feet"),
  24337. name: "Head",
  24338. image: {
  24339. source: "./media/characters/hind/head.svg"
  24340. }
  24341. },
  24342. },
  24343. [
  24344. {
  24345. name: "XS",
  24346. height: math.unit(0.7, "feet")
  24347. },
  24348. {
  24349. name: "Normal",
  24350. height: math.unit(7, "feet"),
  24351. default: true
  24352. },
  24353. {
  24354. name: "XL",
  24355. height: math.unit(70, "feet")
  24356. },
  24357. ]
  24358. ))
  24359. characterMakers.push(() => makeCharacter(
  24360. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24361. {
  24362. front: {
  24363. height: math.unit(6, "feet"),
  24364. weight: math.unit(150, "lb"),
  24365. name: "Front",
  24366. image: {
  24367. source: "./media/characters/dylan-skaven/front.svg",
  24368. extra: 2318 / 2063,
  24369. bottom: 93.4 / 2410
  24370. }
  24371. },
  24372. },
  24373. [
  24374. {
  24375. name: "Nano",
  24376. height: math.unit(1, "mm")
  24377. },
  24378. {
  24379. name: "Micro",
  24380. height: math.unit(1, "cm")
  24381. },
  24382. {
  24383. name: "Normal",
  24384. height: math.unit(2.1, "meters"),
  24385. default: true
  24386. },
  24387. ]
  24388. ))
  24389. characterMakers.push(() => makeCharacter(
  24390. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24391. {
  24392. front: {
  24393. height: math.unit(7 + 5 / 12, "feet"),
  24394. weight: math.unit(357, "lb"),
  24395. name: "Front",
  24396. image: {
  24397. source: "./media/characters/solex-draconov/front.svg",
  24398. extra: 1993 / 1865,
  24399. bottom: 117 / 2111
  24400. }
  24401. },
  24402. },
  24403. [
  24404. {
  24405. name: "Natural Height",
  24406. height: math.unit(7 + 5 / 12, "feet"),
  24407. default: true
  24408. },
  24409. {
  24410. name: "Macro",
  24411. height: math.unit(350, "feet")
  24412. },
  24413. {
  24414. name: "Macro+",
  24415. height: math.unit(1000, "feet")
  24416. },
  24417. {
  24418. name: "Megamacro",
  24419. height: math.unit(20, "km")
  24420. },
  24421. {
  24422. name: "Megamacro+",
  24423. height: math.unit(1000, "km")
  24424. },
  24425. {
  24426. name: "Gigamacro",
  24427. height: math.unit(2.5, "Gm")
  24428. },
  24429. {
  24430. name: "Teramacro",
  24431. height: math.unit(15, "Tm")
  24432. },
  24433. {
  24434. name: "Galactic",
  24435. height: math.unit(30, "Zm")
  24436. },
  24437. {
  24438. name: "Universal",
  24439. height: math.unit(21000, "Ym")
  24440. },
  24441. {
  24442. name: "Omniversal",
  24443. height: math.unit(9.861e50, "Ym")
  24444. },
  24445. {
  24446. name: "Existential",
  24447. height: math.unit(1e300, "meters")
  24448. },
  24449. ]
  24450. ))
  24451. characterMakers.push(() => makeCharacter(
  24452. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24453. {
  24454. side: {
  24455. height: math.unit(25, "feet"),
  24456. weight: math.unit(90000, "lb"),
  24457. name: "Side",
  24458. image: {
  24459. source: "./media/characters/mandarax/side.svg",
  24460. extra: 614 / 332,
  24461. bottom: 55 / 630
  24462. }
  24463. },
  24464. head: {
  24465. height: math.unit(11.4, "feet"),
  24466. name: "Head",
  24467. image: {
  24468. source: "./media/characters/mandarax/head.svg"
  24469. }
  24470. },
  24471. belly: {
  24472. height: math.unit(33, "feet"),
  24473. name: "Belly",
  24474. capacity: math.unit(500, "people"),
  24475. image: {
  24476. source: "./media/characters/mandarax/belly.svg"
  24477. }
  24478. },
  24479. dick: {
  24480. height: math.unit(8.46, "feet"),
  24481. name: "Dick",
  24482. image: {
  24483. source: "./media/characters/mandarax/dick.svg"
  24484. }
  24485. },
  24486. top: {
  24487. height: math.unit(28, "meters"),
  24488. name: "Top",
  24489. image: {
  24490. source: "./media/characters/mandarax/top.svg"
  24491. }
  24492. },
  24493. },
  24494. [
  24495. {
  24496. name: "Normal",
  24497. height: math.unit(25, "feet"),
  24498. default: true
  24499. },
  24500. ]
  24501. ))
  24502. characterMakers.push(() => makeCharacter(
  24503. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24504. {
  24505. front: {
  24506. height: math.unit(5, "feet"),
  24507. weight: math.unit(90, "lb"),
  24508. name: "Front",
  24509. image: {
  24510. source: "./media/characters/pixil/front.svg",
  24511. extra: 2000 / 1618,
  24512. bottom: 12.3 / 2011
  24513. }
  24514. },
  24515. },
  24516. [
  24517. {
  24518. name: "Normal",
  24519. height: math.unit(5, "feet"),
  24520. default: true
  24521. },
  24522. {
  24523. name: "Megamacro",
  24524. height: math.unit(10, "miles"),
  24525. },
  24526. ]
  24527. ))
  24528. characterMakers.push(() => makeCharacter(
  24529. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24530. {
  24531. front: {
  24532. height: math.unit(7 + 2 / 12, "feet"),
  24533. weight: math.unit(200, "lb"),
  24534. name: "Front",
  24535. image: {
  24536. source: "./media/characters/angel/front.svg",
  24537. extra: 1830 / 1737,
  24538. bottom: 22.6 / 1854,
  24539. }
  24540. },
  24541. },
  24542. [
  24543. {
  24544. name: "Normal",
  24545. height: math.unit(7 + 2 / 12, "feet"),
  24546. default: true
  24547. },
  24548. {
  24549. name: "Macro",
  24550. height: math.unit(1000, "feet")
  24551. },
  24552. {
  24553. name: "Megamacro",
  24554. height: math.unit(2, "miles")
  24555. },
  24556. {
  24557. name: "Gigamacro",
  24558. height: math.unit(20, "earths")
  24559. },
  24560. ]
  24561. ))
  24562. characterMakers.push(() => makeCharacter(
  24563. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24564. {
  24565. front: {
  24566. height: math.unit(5, "feet"),
  24567. weight: math.unit(180, "lb"),
  24568. name: "Front",
  24569. image: {
  24570. source: "./media/characters/mekana/front.svg",
  24571. extra: 1671 / 1605,
  24572. bottom: 3.5 / 1691
  24573. }
  24574. },
  24575. side: {
  24576. height: math.unit(5, "feet"),
  24577. weight: math.unit(180, "lb"),
  24578. name: "Side",
  24579. image: {
  24580. source: "./media/characters/mekana/side.svg",
  24581. extra: 1671 / 1605,
  24582. bottom: 3.5 / 1691
  24583. }
  24584. },
  24585. back: {
  24586. height: math.unit(5, "feet"),
  24587. weight: math.unit(180, "lb"),
  24588. name: "Back",
  24589. image: {
  24590. source: "./media/characters/mekana/back.svg",
  24591. extra: 1671 / 1605,
  24592. bottom: 3.5 / 1691
  24593. }
  24594. },
  24595. },
  24596. [
  24597. {
  24598. name: "Normal",
  24599. height: math.unit(5, "feet"),
  24600. default: true
  24601. },
  24602. ]
  24603. ))
  24604. characterMakers.push(() => makeCharacter(
  24605. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24606. {
  24607. front: {
  24608. height: math.unit(4 + 6 / 12, "feet"),
  24609. weight: math.unit(80, "lb"),
  24610. name: "Front",
  24611. image: {
  24612. source: "./media/characters/pixie/front.svg",
  24613. extra: 1924 / 1825,
  24614. bottom: 22.4 / 1946
  24615. }
  24616. },
  24617. },
  24618. [
  24619. {
  24620. name: "Normal",
  24621. height: math.unit(4 + 6 / 12, "feet"),
  24622. default: true
  24623. },
  24624. {
  24625. name: "Macro",
  24626. height: math.unit(40, "feet")
  24627. },
  24628. ]
  24629. ))
  24630. characterMakers.push(() => makeCharacter(
  24631. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24632. {
  24633. front: {
  24634. height: math.unit(2.1, "meters"),
  24635. weight: math.unit(200, "lb"),
  24636. name: "Front",
  24637. image: {
  24638. source: "./media/characters/the-lascivious/front.svg",
  24639. extra: 1 / 0.893,
  24640. bottom: 3.5 / 573.7
  24641. }
  24642. },
  24643. },
  24644. [
  24645. {
  24646. name: "Human Scale",
  24647. height: math.unit(2.1, "meters")
  24648. },
  24649. {
  24650. name: "Wolxi Scale",
  24651. height: math.unit(46.2, "m"),
  24652. default: true
  24653. },
  24654. {
  24655. name: "Boinker of Buildings",
  24656. height: math.unit(10, "km")
  24657. },
  24658. {
  24659. name: "Shagger of Skyscrapers",
  24660. height: math.unit(40, "km")
  24661. },
  24662. {
  24663. name: "Banger of Boroughs",
  24664. height: math.unit(4000, "km")
  24665. },
  24666. {
  24667. name: "Screwer of States",
  24668. height: math.unit(100000, "km")
  24669. },
  24670. {
  24671. name: "Pounder of Planets",
  24672. height: math.unit(2000000, "km")
  24673. },
  24674. ]
  24675. ))
  24676. characterMakers.push(() => makeCharacter(
  24677. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24678. {
  24679. front: {
  24680. height: math.unit(6, "feet"),
  24681. weight: math.unit(150, "lb"),
  24682. name: "Front",
  24683. image: {
  24684. source: "./media/characters/aj/front.svg",
  24685. extra: 2039 / 1562,
  24686. bottom: 40 / 2079
  24687. }
  24688. },
  24689. },
  24690. [
  24691. {
  24692. name: "Normal",
  24693. height: math.unit(11 + 6 / 12, "feet"),
  24694. default: true
  24695. },
  24696. {
  24697. name: "Megamacro",
  24698. height: math.unit(60, "megameters")
  24699. },
  24700. ]
  24701. ))
  24702. characterMakers.push(() => makeCharacter(
  24703. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24704. {
  24705. side: {
  24706. height: math.unit(31 + 8 / 12, "feet"),
  24707. weight: math.unit(75000, "kg"),
  24708. name: "Side",
  24709. image: {
  24710. source: "./media/characters/koros/side.svg",
  24711. extra: 1442 / 1297,
  24712. bottom: 122.7 / 1562
  24713. }
  24714. },
  24715. dicksKingsCrown: {
  24716. height: math.unit(6, "feet"),
  24717. name: "Dicks (King's Crown)",
  24718. image: {
  24719. source: "./media/characters/koros/dicks-kings-crown.svg"
  24720. }
  24721. },
  24722. dicksTailSet: {
  24723. height: math.unit(3, "feet"),
  24724. name: "Dicks (Tail Set)",
  24725. image: {
  24726. source: "./media/characters/koros/dicks-tail-set.svg"
  24727. }
  24728. },
  24729. dickCumming: {
  24730. height: math.unit(7.98, "feet"),
  24731. name: "Dick (Cumming)",
  24732. image: {
  24733. source: "./media/characters/koros/dick-cumming.svg"
  24734. }
  24735. },
  24736. dicksBack: {
  24737. height: math.unit(5.9, "feet"),
  24738. name: "Dicks (Back)",
  24739. image: {
  24740. source: "./media/characters/koros/dicks-back.svg"
  24741. }
  24742. },
  24743. dicksFront: {
  24744. height: math.unit(3.72, "feet"),
  24745. name: "Dicks (Front)",
  24746. image: {
  24747. source: "./media/characters/koros/dicks-front.svg"
  24748. }
  24749. },
  24750. dicksPeeking: {
  24751. height: math.unit(3.0, "feet"),
  24752. name: "Dicks (Peeking)",
  24753. image: {
  24754. source: "./media/characters/koros/dicks-peeking.svg"
  24755. }
  24756. },
  24757. eye: {
  24758. height: math.unit(1.7, "feet"),
  24759. name: "Eye",
  24760. image: {
  24761. source: "./media/characters/koros/eye.svg"
  24762. }
  24763. },
  24764. headFront: {
  24765. height: math.unit(11.69, "feet"),
  24766. name: "Head (Front)",
  24767. image: {
  24768. source: "./media/characters/koros/head-front.svg"
  24769. }
  24770. },
  24771. headSide: {
  24772. height: math.unit(14, "feet"),
  24773. name: "Head (Side)",
  24774. image: {
  24775. source: "./media/characters/koros/head-side.svg"
  24776. }
  24777. },
  24778. leg: {
  24779. height: math.unit(17, "feet"),
  24780. name: "Leg",
  24781. image: {
  24782. source: "./media/characters/koros/leg.svg"
  24783. }
  24784. },
  24785. mawSide: {
  24786. height: math.unit(12.8, "feet"),
  24787. name: "Maw (Side)",
  24788. image: {
  24789. source: "./media/characters/koros/maw-side.svg"
  24790. }
  24791. },
  24792. mawSpitting: {
  24793. height: math.unit(17, "feet"),
  24794. name: "Maw (Spitting)",
  24795. image: {
  24796. source: "./media/characters/koros/maw-spitting.svg"
  24797. }
  24798. },
  24799. slit: {
  24800. height: math.unit(2.8, "feet"),
  24801. name: "Slit",
  24802. image: {
  24803. source: "./media/characters/koros/slit.svg"
  24804. }
  24805. },
  24806. stomach: {
  24807. height: math.unit(6.8, "feet"),
  24808. capacity: math.unit(20, "people"),
  24809. name: "Stomach",
  24810. image: {
  24811. source: "./media/characters/koros/stomach.svg"
  24812. }
  24813. },
  24814. wingspanBottom: {
  24815. height: math.unit(114, "feet"),
  24816. name: "Wingspan (Bottom)",
  24817. image: {
  24818. source: "./media/characters/koros/wingspan-bottom.svg"
  24819. }
  24820. },
  24821. wingspanTop: {
  24822. height: math.unit(104, "feet"),
  24823. name: "Wingspan (Top)",
  24824. image: {
  24825. source: "./media/characters/koros/wingspan-top.svg"
  24826. }
  24827. },
  24828. },
  24829. [
  24830. {
  24831. name: "Normal",
  24832. height: math.unit(31 + 8 / 12, "feet"),
  24833. default: true
  24834. },
  24835. ]
  24836. ))
  24837. characterMakers.push(() => makeCharacter(
  24838. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24839. {
  24840. front: {
  24841. height: math.unit(18 + 5 / 12, "feet"),
  24842. weight: math.unit(3750, "kg"),
  24843. name: "Front",
  24844. image: {
  24845. source: "./media/characters/vexx/front.svg",
  24846. extra: 426 / 396,
  24847. bottom: 31.5 / 458
  24848. }
  24849. },
  24850. maw: {
  24851. height: math.unit(6, "feet"),
  24852. name: "Maw",
  24853. image: {
  24854. source: "./media/characters/vexx/maw.svg"
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Normal",
  24861. height: math.unit(18 + 5 / 12, "feet"),
  24862. default: true
  24863. },
  24864. ]
  24865. ))
  24866. characterMakers.push(() => makeCharacter(
  24867. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24868. {
  24869. front: {
  24870. height: math.unit(17 + 6 / 12, "feet"),
  24871. weight: math.unit(150, "lb"),
  24872. name: "Front",
  24873. image: {
  24874. source: "./media/characters/baadra/front.svg",
  24875. extra: 3137 / 2890,
  24876. bottom: 168.4 / 3305
  24877. }
  24878. },
  24879. back: {
  24880. height: math.unit(17 + 6 / 12, "feet"),
  24881. weight: math.unit(150, "lb"),
  24882. name: "Back",
  24883. image: {
  24884. source: "./media/characters/baadra/back.svg",
  24885. extra: 3142 / 2890,
  24886. bottom: 220 / 3371
  24887. }
  24888. },
  24889. head: {
  24890. height: math.unit(5.45, "feet"),
  24891. name: "Head",
  24892. image: {
  24893. source: "./media/characters/baadra/head.svg"
  24894. }
  24895. },
  24896. headAngry: {
  24897. height: math.unit(4.95, "feet"),
  24898. name: "Head (Angry)",
  24899. image: {
  24900. source: "./media/characters/baadra/head-angry.svg"
  24901. }
  24902. },
  24903. headOpen: {
  24904. height: math.unit(6, "feet"),
  24905. name: "Head (Open)",
  24906. image: {
  24907. source: "./media/characters/baadra/head-open.svg"
  24908. }
  24909. },
  24910. },
  24911. [
  24912. {
  24913. name: "Normal",
  24914. height: math.unit(17 + 6 / 12, "feet"),
  24915. default: true
  24916. },
  24917. ]
  24918. ))
  24919. characterMakers.push(() => makeCharacter(
  24920. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24921. {
  24922. front: {
  24923. height: math.unit(7 + 3 / 12, "feet"),
  24924. weight: math.unit(180, "lb"),
  24925. name: "Front",
  24926. image: {
  24927. source: "./media/characters/juri/front.svg",
  24928. extra: 1401 / 1237,
  24929. bottom: 18.5 / 1418
  24930. }
  24931. },
  24932. side: {
  24933. height: math.unit(7 + 3 / 12, "feet"),
  24934. weight: math.unit(180, "lb"),
  24935. name: "Side",
  24936. image: {
  24937. source: "./media/characters/juri/side.svg",
  24938. extra: 1424 / 1242,
  24939. bottom: 18.5 / 1447
  24940. }
  24941. },
  24942. sitting: {
  24943. height: math.unit(6, "feet"),
  24944. weight: math.unit(180, "lb"),
  24945. name: "Sitting",
  24946. image: {
  24947. source: "./media/characters/juri/sitting.svg",
  24948. extra: 1270 / 1143,
  24949. bottom: 100 / 1343
  24950. }
  24951. },
  24952. back: {
  24953. height: math.unit(7 + 3 / 12, "feet"),
  24954. weight: math.unit(180, "lb"),
  24955. name: "Back",
  24956. image: {
  24957. source: "./media/characters/juri/back.svg",
  24958. extra: 1377 / 1240,
  24959. bottom: 23.7 / 1405
  24960. }
  24961. },
  24962. maw: {
  24963. height: math.unit(2.8, "feet"),
  24964. name: "Maw",
  24965. image: {
  24966. source: "./media/characters/juri/maw.svg"
  24967. }
  24968. },
  24969. stomach: {
  24970. height: math.unit(0.89, "feet"),
  24971. capacity: math.unit(4, "liters"),
  24972. name: "Stomach",
  24973. image: {
  24974. source: "./media/characters/juri/stomach.svg"
  24975. }
  24976. },
  24977. },
  24978. [
  24979. {
  24980. name: "Normal",
  24981. height: math.unit(7 + 3 / 12, "feet"),
  24982. default: true
  24983. },
  24984. ]
  24985. ))
  24986. characterMakers.push(() => makeCharacter(
  24987. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24988. {
  24989. fox: {
  24990. height: math.unit(5 + 6 / 12, "feet"),
  24991. weight: math.unit(140, "lb"),
  24992. name: "Fox",
  24993. image: {
  24994. source: "./media/characters/maxene-sita/fox.svg",
  24995. extra: 146 / 138,
  24996. bottom: 2.1 / 148.19
  24997. }
  24998. },
  24999. foxLaying: {
  25000. height: math.unit(1.70, "feet"),
  25001. weight: math.unit(140, "lb"),
  25002. name: "Fox (Laying)",
  25003. image: {
  25004. source: "./media/characters/maxene-sita/fox-laying.svg",
  25005. extra: 910 / 572,
  25006. bottom: 71 / 981
  25007. }
  25008. },
  25009. kitsune: {
  25010. height: math.unit(10, "feet"),
  25011. weight: math.unit(800, "lb"),
  25012. name: "Kitsune",
  25013. image: {
  25014. source: "./media/characters/maxene-sita/kitsune.svg",
  25015. extra: 185 / 176,
  25016. bottom: 4.7 / 189.9
  25017. }
  25018. },
  25019. hellhound: {
  25020. height: math.unit(10, "feet"),
  25021. weight: math.unit(700, "lb"),
  25022. name: "Hellhound",
  25023. image: {
  25024. source: "./media/characters/maxene-sita/hellhound.svg",
  25025. extra: 1600 / 1545,
  25026. bottom: 81 / 1681
  25027. }
  25028. },
  25029. },
  25030. [
  25031. {
  25032. name: "Normal",
  25033. height: math.unit(5 + 6 / 12, "feet"),
  25034. default: true
  25035. },
  25036. ]
  25037. ))
  25038. characterMakers.push(() => makeCharacter(
  25039. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25040. {
  25041. front: {
  25042. height: math.unit(3 + 4 / 12, "feet"),
  25043. weight: math.unit(70, "lb"),
  25044. name: "Front",
  25045. image: {
  25046. source: "./media/characters/maia/front.svg",
  25047. extra: 227 / 219.5,
  25048. bottom: 40 / 267
  25049. }
  25050. },
  25051. back: {
  25052. height: math.unit(3 + 4 / 12, "feet"),
  25053. weight: math.unit(70, "lb"),
  25054. name: "Back",
  25055. image: {
  25056. source: "./media/characters/maia/back.svg",
  25057. extra: 237 / 225
  25058. }
  25059. },
  25060. },
  25061. [
  25062. {
  25063. name: "Normal",
  25064. height: math.unit(3 + 4 / 12, "feet"),
  25065. default: true
  25066. },
  25067. ]
  25068. ))
  25069. characterMakers.push(() => makeCharacter(
  25070. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25071. {
  25072. front: {
  25073. height: math.unit(5 + 10 / 12, "feet"),
  25074. weight: math.unit(197, "lb"),
  25075. name: "Front",
  25076. image: {
  25077. source: "./media/characters/jabaro/front.svg",
  25078. extra: 225 / 216,
  25079. bottom: 5.06 / 230
  25080. }
  25081. },
  25082. back: {
  25083. height: math.unit(5 + 10 / 12, "feet"),
  25084. weight: math.unit(197, "lb"),
  25085. name: "Back",
  25086. image: {
  25087. source: "./media/characters/jabaro/back.svg",
  25088. extra: 225 / 219,
  25089. bottom: 1.9 / 227
  25090. }
  25091. },
  25092. },
  25093. [
  25094. {
  25095. name: "Normal",
  25096. height: math.unit(5 + 10 / 12, "feet"),
  25097. default: true
  25098. },
  25099. ]
  25100. ))
  25101. characterMakers.push(() => makeCharacter(
  25102. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25103. {
  25104. front: {
  25105. height: math.unit(5 + 8 / 12, "feet"),
  25106. weight: math.unit(139, "lb"),
  25107. name: "Front",
  25108. image: {
  25109. source: "./media/characters/risa/front.svg",
  25110. extra: 270 / 260,
  25111. bottom: 11.2 / 282
  25112. }
  25113. },
  25114. back: {
  25115. height: math.unit(5 + 8 / 12, "feet"),
  25116. weight: math.unit(139, "lb"),
  25117. name: "Back",
  25118. image: {
  25119. source: "./media/characters/risa/back.svg",
  25120. extra: 264 / 255,
  25121. bottom: 4 / 268
  25122. }
  25123. },
  25124. },
  25125. [
  25126. {
  25127. name: "Normal",
  25128. height: math.unit(5 + 8 / 12, "feet"),
  25129. default: true
  25130. },
  25131. ]
  25132. ))
  25133. characterMakers.push(() => makeCharacter(
  25134. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25135. {
  25136. front: {
  25137. height: math.unit(2 + 11 / 12, "feet"),
  25138. weight: math.unit(30, "lb"),
  25139. name: "Front",
  25140. image: {
  25141. source: "./media/characters/weatley/front.svg",
  25142. bottom: 10.7 / 414,
  25143. extra: 403.5 / 362
  25144. }
  25145. },
  25146. back: {
  25147. height: math.unit(2 + 11 / 12, "feet"),
  25148. weight: math.unit(30, "lb"),
  25149. name: "Back",
  25150. image: {
  25151. source: "./media/characters/weatley/back.svg",
  25152. bottom: 10.7 / 414,
  25153. extra: 403.5 / 362
  25154. }
  25155. },
  25156. },
  25157. [
  25158. {
  25159. name: "Normal",
  25160. height: math.unit(2 + 11 / 12, "feet"),
  25161. default: true
  25162. },
  25163. ]
  25164. ))
  25165. characterMakers.push(() => makeCharacter(
  25166. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25167. {
  25168. front: {
  25169. height: math.unit(5 + 2 / 12, "feet"),
  25170. weight: math.unit(50, "kg"),
  25171. name: "Front",
  25172. image: {
  25173. source: "./media/characters/mercury-crescent/front.svg",
  25174. extra: 1088 / 1033,
  25175. bottom: 18.9 / 1109
  25176. }
  25177. },
  25178. },
  25179. [
  25180. {
  25181. name: "Normal",
  25182. height: math.unit(5 + 2 / 12, "feet"),
  25183. default: true
  25184. },
  25185. ]
  25186. ))
  25187. characterMakers.push(() => makeCharacter(
  25188. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25189. {
  25190. front: {
  25191. height: math.unit(2, "feet"),
  25192. weight: math.unit(15, "kg"),
  25193. name: "Front",
  25194. image: {
  25195. source: "./media/characters/diamond-jones/front.svg",
  25196. bottom: 16 / 568
  25197. }
  25198. },
  25199. },
  25200. [
  25201. {
  25202. name: "Normal",
  25203. height: math.unit(2, "feet"),
  25204. default: true
  25205. },
  25206. ]
  25207. ))
  25208. characterMakers.push(() => makeCharacter(
  25209. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25210. {
  25211. front: {
  25212. height: math.unit(3, "feet"),
  25213. weight: math.unit(30, "kg"),
  25214. name: "Front",
  25215. image: {
  25216. source: "./media/characters/sweet-bit/front.svg",
  25217. extra: 675 / 567,
  25218. bottom: 27.7 / 703
  25219. }
  25220. },
  25221. },
  25222. [
  25223. {
  25224. name: "Normal",
  25225. height: math.unit(3, "feet"),
  25226. default: true
  25227. },
  25228. ]
  25229. ))
  25230. characterMakers.push(() => makeCharacter(
  25231. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25232. {
  25233. side: {
  25234. height: math.unit(9.178, "feet"),
  25235. weight: math.unit(500, "lb"),
  25236. name: "Side",
  25237. image: {
  25238. source: "./media/characters/umbrazen/side.svg",
  25239. extra: 1730 / 1473,
  25240. bottom: 34.6 / 1765
  25241. }
  25242. },
  25243. },
  25244. [
  25245. {
  25246. name: "Normal",
  25247. height: math.unit(9.178, "feet"),
  25248. default: true
  25249. },
  25250. ]
  25251. ))
  25252. characterMakers.push(() => makeCharacter(
  25253. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25254. {
  25255. front: {
  25256. height: math.unit(10, "feet"),
  25257. weight: math.unit(750, "lb"),
  25258. name: "Front",
  25259. image: {
  25260. source: "./media/characters/arlist/front.svg",
  25261. extra: 961 / 778,
  25262. bottom: 6.2 / 986
  25263. }
  25264. },
  25265. },
  25266. [
  25267. {
  25268. name: "Normal",
  25269. height: math.unit(10, "feet"),
  25270. default: true
  25271. },
  25272. ]
  25273. ))
  25274. characterMakers.push(() => makeCharacter(
  25275. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25276. {
  25277. front: {
  25278. height: math.unit(5 + 1 / 12, "feet"),
  25279. weight: math.unit(110, "lb"),
  25280. name: "Front",
  25281. image: {
  25282. source: "./media/characters/aradel/front.svg",
  25283. extra: 324 / 303,
  25284. bottom: 3.6 / 329.4
  25285. }
  25286. },
  25287. },
  25288. [
  25289. {
  25290. name: "Normal",
  25291. height: math.unit(5 + 1 / 12, "feet"),
  25292. default: true
  25293. },
  25294. ]
  25295. ))
  25296. characterMakers.push(() => makeCharacter(
  25297. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25298. {
  25299. front: {
  25300. height: math.unit(3 + 8 / 12, "feet"),
  25301. weight: math.unit(50, "lb"),
  25302. name: "Front",
  25303. image: {
  25304. source: "./media/characters/serryn/front.svg",
  25305. extra: 1792 / 1656,
  25306. bottom: 43.5 / 1840
  25307. }
  25308. },
  25309. },
  25310. [
  25311. {
  25312. name: "Normal",
  25313. height: math.unit(3 + 8 / 12, "feet"),
  25314. default: true
  25315. },
  25316. ]
  25317. ))
  25318. characterMakers.push(() => makeCharacter(
  25319. { name: "Xavier Thyme" },
  25320. {
  25321. front: {
  25322. height: math.unit(7 + 10 / 12, "feet"),
  25323. weight: math.unit(255, "lb"),
  25324. name: "Front",
  25325. image: {
  25326. source: "./media/characters/xavier-thyme/front.svg",
  25327. extra: 3733 / 3642,
  25328. bottom: 131 / 3869
  25329. }
  25330. },
  25331. frontRaven: {
  25332. height: math.unit(7 + 10 / 12, "feet"),
  25333. weight: math.unit(255, "lb"),
  25334. name: "Front (Raven)",
  25335. image: {
  25336. source: "./media/characters/xavier-thyme/front-raven.svg",
  25337. extra: 4385 / 3642,
  25338. bottom: 131 / 4517
  25339. }
  25340. },
  25341. },
  25342. [
  25343. {
  25344. name: "Normal",
  25345. height: math.unit(7 + 10 / 12, "feet"),
  25346. default: true
  25347. },
  25348. ]
  25349. ))
  25350. characterMakers.push(() => makeCharacter(
  25351. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25352. {
  25353. front: {
  25354. height: math.unit(1.6, "m"),
  25355. weight: math.unit(50, "kg"),
  25356. name: "Front",
  25357. image: {
  25358. source: "./media/characters/kiki/front.svg",
  25359. extra: 4682 / 3610,
  25360. bottom: 115 / 4777
  25361. }
  25362. },
  25363. },
  25364. [
  25365. {
  25366. name: "Normal",
  25367. height: math.unit(1.6, "meters"),
  25368. default: true
  25369. },
  25370. ]
  25371. ))
  25372. characterMakers.push(() => makeCharacter(
  25373. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25374. {
  25375. front: {
  25376. height: math.unit(50, "m"),
  25377. weight: math.unit(500, "tonnes"),
  25378. name: "Front",
  25379. image: {
  25380. source: "./media/characters/ryoko/front.svg",
  25381. extra: 4632 / 3926,
  25382. bottom: 193 / 4823
  25383. }
  25384. },
  25385. },
  25386. [
  25387. {
  25388. name: "Normal",
  25389. height: math.unit(50, "meters"),
  25390. default: true
  25391. },
  25392. ]
  25393. ))
  25394. characterMakers.push(() => makeCharacter(
  25395. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25396. {
  25397. front: {
  25398. height: math.unit(30, "m"),
  25399. weight: math.unit(22, "tonnes"),
  25400. name: "Front",
  25401. image: {
  25402. source: "./media/characters/elio/front.svg",
  25403. extra: 4582 / 3720,
  25404. bottom: 236 / 4828
  25405. }
  25406. },
  25407. },
  25408. [
  25409. {
  25410. name: "Normal",
  25411. height: math.unit(30, "meters"),
  25412. default: true
  25413. },
  25414. ]
  25415. ))
  25416. characterMakers.push(() => makeCharacter(
  25417. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25418. {
  25419. front: {
  25420. height: math.unit(6 + 3 / 12, "feet"),
  25421. weight: math.unit(120, "lb"),
  25422. name: "Front",
  25423. image: {
  25424. source: "./media/characters/azura/front.svg",
  25425. extra: 1149 / 1135,
  25426. bottom: 45 / 1194
  25427. }
  25428. },
  25429. frontClothed: {
  25430. height: math.unit(6 + 3 / 12, "feet"),
  25431. weight: math.unit(120, "lb"),
  25432. name: "Front (Clothed)",
  25433. image: {
  25434. source: "./media/characters/azura/front-clothed.svg",
  25435. extra: 1149 / 1135,
  25436. bottom: 45 / 1194
  25437. }
  25438. },
  25439. },
  25440. [
  25441. {
  25442. name: "Normal",
  25443. height: math.unit(6 + 3 / 12, "feet"),
  25444. default: true
  25445. },
  25446. {
  25447. name: "Macro",
  25448. height: math.unit(20 + 6 / 12, "feet")
  25449. },
  25450. {
  25451. name: "Megamacro",
  25452. height: math.unit(12, "miles")
  25453. },
  25454. {
  25455. name: "Gigamacro",
  25456. height: math.unit(10000, "miles")
  25457. },
  25458. {
  25459. name: "Teramacro",
  25460. height: math.unit(900000, "miles")
  25461. },
  25462. ]
  25463. ))
  25464. characterMakers.push(() => makeCharacter(
  25465. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25466. {
  25467. front: {
  25468. height: math.unit(12, "feet"),
  25469. weight: math.unit(1, "ton"),
  25470. capacity: math.unit(660000, "gallons"),
  25471. name: "Front",
  25472. image: {
  25473. source: "./media/characters/zeus/front.svg",
  25474. extra: 5005 / 4717,
  25475. bottom: 363 / 5388
  25476. }
  25477. },
  25478. },
  25479. [
  25480. {
  25481. name: "Normal",
  25482. height: math.unit(12, "feet")
  25483. },
  25484. {
  25485. name: "Preferred Size",
  25486. height: math.unit(0.5, "miles"),
  25487. default: true
  25488. },
  25489. {
  25490. name: "Giga Horse",
  25491. height: math.unit(300, "miles")
  25492. },
  25493. {
  25494. name: "Riding Planets",
  25495. height: math.unit(30, "megameters")
  25496. },
  25497. {
  25498. name: "Cosmic Giant",
  25499. height: math.unit(3, "zettameters")
  25500. },
  25501. {
  25502. name: "Breeding God",
  25503. height: math.unit(9.92e22, "yottameters")
  25504. },
  25505. ]
  25506. ))
  25507. characterMakers.push(() => makeCharacter(
  25508. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25509. {
  25510. side: {
  25511. height: math.unit(9, "feet"),
  25512. weight: math.unit(1500, "kg"),
  25513. name: "Side",
  25514. image: {
  25515. source: "./media/characters/fang/side.svg",
  25516. extra: 924 / 866,
  25517. bottom: 47.5 / 972.3
  25518. }
  25519. },
  25520. },
  25521. [
  25522. {
  25523. name: "Normal",
  25524. height: math.unit(9, "feet"),
  25525. default: true
  25526. },
  25527. {
  25528. name: "Macro",
  25529. height: math.unit(75 + 6 / 12, "feet")
  25530. },
  25531. {
  25532. name: "Teramacro",
  25533. height: math.unit(50000, "miles")
  25534. },
  25535. ]
  25536. ))
  25537. characterMakers.push(() => makeCharacter(
  25538. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25539. {
  25540. front: {
  25541. height: math.unit(10, "feet"),
  25542. weight: math.unit(2, "tons"),
  25543. name: "Front",
  25544. image: {
  25545. source: "./media/characters/rekhit/front.svg",
  25546. extra: 2796 / 2590,
  25547. bottom: 225 / 3022
  25548. }
  25549. },
  25550. },
  25551. [
  25552. {
  25553. name: "Normal",
  25554. height: math.unit(10, "feet"),
  25555. default: true
  25556. },
  25557. {
  25558. name: "Macro",
  25559. height: math.unit(500, "feet")
  25560. },
  25561. ]
  25562. ))
  25563. characterMakers.push(() => makeCharacter(
  25564. { name: "Dahlia Verrick" },
  25565. {
  25566. front: {
  25567. height: math.unit(7 + 6.451 / 12, "feet"),
  25568. weight: math.unit(310, "lb"),
  25569. name: "Front",
  25570. image: {
  25571. source: "./media/characters/dahlia-verrick/front.svg",
  25572. extra: 1488 / 1365,
  25573. bottom: 6.2 / 1495
  25574. }
  25575. },
  25576. back: {
  25577. height: math.unit(7 + 6.451 / 12, "feet"),
  25578. weight: math.unit(310, "lb"),
  25579. name: "Back",
  25580. image: {
  25581. source: "./media/characters/dahlia-verrick/back.svg",
  25582. extra: 1472 / 1351,
  25583. bottom: 5.28 / 1477
  25584. }
  25585. },
  25586. frontBusiness: {
  25587. height: math.unit(7 + 6.451 / 12, "feet"),
  25588. weight: math.unit(200, "lb"),
  25589. name: "Front (Business)",
  25590. image: {
  25591. source: "./media/characters/dahlia-verrick/front-business.svg",
  25592. extra: 1478 / 1381,
  25593. bottom: 5.5 / 1484
  25594. }
  25595. },
  25596. frontCasual: {
  25597. height: math.unit(7 + 6.451 / 12, "feet"),
  25598. weight: math.unit(200, "lb"),
  25599. name: "Front (Casual)",
  25600. image: {
  25601. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25602. extra: 1478 / 1381,
  25603. bottom: 5.5 / 1484
  25604. }
  25605. },
  25606. },
  25607. [
  25608. {
  25609. name: "Travel-Sized",
  25610. height: math.unit(7.45, "inches")
  25611. },
  25612. {
  25613. name: "Normal",
  25614. height: math.unit(7 + 6.451 / 12, "feet"),
  25615. default: true
  25616. },
  25617. {
  25618. name: "Hitting the Town",
  25619. height: math.unit(37 + 8 / 12, "feet")
  25620. },
  25621. {
  25622. name: "Stomp in the Suburbs",
  25623. height: math.unit(964 + 9.728 / 12, "feet")
  25624. },
  25625. {
  25626. name: "Sit on the City",
  25627. height: math.unit(61747 + 10.592 / 12, "feet")
  25628. },
  25629. {
  25630. name: "Glomp the Globe",
  25631. height: math.unit(252919327 + 4.832 / 12, "feet")
  25632. },
  25633. ]
  25634. ))
  25635. characterMakers.push(() => makeCharacter(
  25636. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25637. {
  25638. front: {
  25639. height: math.unit(6 + 4 / 12, "feet"),
  25640. weight: math.unit(320, "lb"),
  25641. name: "Front",
  25642. image: {
  25643. source: "./media/characters/balina-mahigan/front.svg",
  25644. extra: 447 / 428,
  25645. bottom: 18 / 466
  25646. }
  25647. },
  25648. back: {
  25649. height: math.unit(6 + 4 / 12, "feet"),
  25650. weight: math.unit(320, "lb"),
  25651. name: "Back",
  25652. image: {
  25653. source: "./media/characters/balina-mahigan/back.svg",
  25654. extra: 445 / 428,
  25655. bottom: 4.07 / 448
  25656. }
  25657. },
  25658. arm: {
  25659. height: math.unit(1.88, "feet"),
  25660. name: "Arm",
  25661. image: {
  25662. source: "./media/characters/balina-mahigan/arm.svg"
  25663. }
  25664. },
  25665. backPort: {
  25666. height: math.unit(0.685, "feet"),
  25667. name: "Back Port",
  25668. image: {
  25669. source: "./media/characters/balina-mahigan/back-port.svg"
  25670. }
  25671. },
  25672. hoofpaw: {
  25673. height: math.unit(1.41, "feet"),
  25674. name: "Hoofpaw",
  25675. image: {
  25676. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25677. }
  25678. },
  25679. leftHandBack: {
  25680. height: math.unit(0.938, "feet"),
  25681. name: "Left Hand (Back)",
  25682. image: {
  25683. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25684. }
  25685. },
  25686. leftHandFront: {
  25687. height: math.unit(0.938, "feet"),
  25688. name: "Left Hand (Front)",
  25689. image: {
  25690. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25691. }
  25692. },
  25693. rightHandBack: {
  25694. height: math.unit(0.95, "feet"),
  25695. name: "Right Hand (Back)",
  25696. image: {
  25697. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25698. }
  25699. },
  25700. rightHandFront: {
  25701. height: math.unit(0.95, "feet"),
  25702. name: "Right Hand (Front)",
  25703. image: {
  25704. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25705. }
  25706. },
  25707. },
  25708. [
  25709. {
  25710. name: "Normal",
  25711. height: math.unit(6 + 4 / 12, "feet"),
  25712. default: true
  25713. },
  25714. ]
  25715. ))
  25716. characterMakers.push(() => makeCharacter(
  25717. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25718. {
  25719. front: {
  25720. height: math.unit(6, "feet"),
  25721. weight: math.unit(320, "lb"),
  25722. name: "Front",
  25723. image: {
  25724. source: "./media/characters/balina-mejeri/front.svg",
  25725. extra: 517 / 488,
  25726. bottom: 44.2 / 561
  25727. }
  25728. },
  25729. },
  25730. [
  25731. {
  25732. name: "Normal",
  25733. height: math.unit(6 + 4 / 12, "feet")
  25734. },
  25735. {
  25736. name: "Business",
  25737. height: math.unit(155, "feet"),
  25738. default: true
  25739. },
  25740. ]
  25741. ))
  25742. characterMakers.push(() => makeCharacter(
  25743. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25744. {
  25745. kneeling: {
  25746. height: math.unit(6 + 4 / 12, "feet"),
  25747. weight: math.unit(300 * 20, "lb"),
  25748. name: "Kneeling",
  25749. image: {
  25750. source: "./media/characters/balbarian/kneeling.svg",
  25751. extra: 922 / 862,
  25752. bottom: 42.4 / 965
  25753. }
  25754. },
  25755. },
  25756. [
  25757. {
  25758. name: "Normal",
  25759. height: math.unit(6 + 4 / 12, "feet")
  25760. },
  25761. {
  25762. name: "Treasured",
  25763. height: math.unit(18 + 9 / 12, "feet"),
  25764. default: true
  25765. },
  25766. {
  25767. name: "Macro",
  25768. height: math.unit(900, "feet")
  25769. },
  25770. ]
  25771. ))
  25772. characterMakers.push(() => makeCharacter(
  25773. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25774. {
  25775. front: {
  25776. height: math.unit(6 + 4 / 12, "feet"),
  25777. weight: math.unit(325, "lb"),
  25778. name: "Front",
  25779. image: {
  25780. source: "./media/characters/balina-amarini/front.svg",
  25781. extra: 415 / 403,
  25782. bottom: 19 / 433.4
  25783. }
  25784. },
  25785. back: {
  25786. height: math.unit(6 + 4 / 12, "feet"),
  25787. weight: math.unit(325, "lb"),
  25788. name: "Back",
  25789. image: {
  25790. source: "./media/characters/balina-amarini/back.svg",
  25791. extra: 415 / 403,
  25792. bottom: 13.5 / 432
  25793. }
  25794. },
  25795. overdrive: {
  25796. height: math.unit(6 + 4 / 12, "feet"),
  25797. weight: math.unit(400, "lb"),
  25798. name: "Overdrive",
  25799. image: {
  25800. source: "./media/characters/balina-amarini/overdrive.svg",
  25801. extra: 269 / 259,
  25802. bottom: 12 / 282
  25803. }
  25804. },
  25805. },
  25806. [
  25807. {
  25808. name: "Boom",
  25809. height: math.unit(9 + 10 / 12, "feet"),
  25810. default: true
  25811. },
  25812. {
  25813. name: "Macro",
  25814. height: math.unit(280, "feet")
  25815. },
  25816. ]
  25817. ))
  25818. characterMakers.push(() => makeCharacter(
  25819. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25820. {
  25821. goddess: {
  25822. height: math.unit(600, "feet"),
  25823. weight: math.unit(2000000, "tons"),
  25824. name: "Goddess",
  25825. image: {
  25826. source: "./media/characters/lady-kubwa/goddess.svg",
  25827. extra: 1240.5 / 1223,
  25828. bottom: 22 / 1263
  25829. }
  25830. },
  25831. goddesser: {
  25832. height: math.unit(900, "feet"),
  25833. weight: math.unit(20000000, "lb"),
  25834. name: "Goddess-er",
  25835. image: {
  25836. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25837. extra: 899 / 888,
  25838. bottom: 12.6 / 912
  25839. }
  25840. },
  25841. },
  25842. [
  25843. {
  25844. name: "Macro",
  25845. height: math.unit(600, "feet"),
  25846. default: true
  25847. },
  25848. {
  25849. name: "Megamacro",
  25850. height: math.unit(250, "miles")
  25851. },
  25852. ]
  25853. ))
  25854. characterMakers.push(() => makeCharacter(
  25855. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25856. {
  25857. front: {
  25858. height: math.unit(7 + 7 / 12, "feet"),
  25859. weight: math.unit(250, "lb"),
  25860. name: "Front",
  25861. image: {
  25862. source: "./media/characters/tala-grovehorn/front.svg",
  25863. extra: 2636 / 2525,
  25864. bottom: 147 / 2781
  25865. }
  25866. },
  25867. back: {
  25868. height: math.unit(7 + 7 / 12, "feet"),
  25869. weight: math.unit(250, "lb"),
  25870. name: "Back",
  25871. image: {
  25872. source: "./media/characters/tala-grovehorn/back.svg",
  25873. extra: 2635 / 2539,
  25874. bottom: 100 / 2732.8
  25875. }
  25876. },
  25877. mouth: {
  25878. height: math.unit(1.15, "feet"),
  25879. name: "Mouth",
  25880. image: {
  25881. source: "./media/characters/tala-grovehorn/mouth.svg"
  25882. }
  25883. },
  25884. dick: {
  25885. height: math.unit(2.36, "feet"),
  25886. name: "Dick",
  25887. image: {
  25888. source: "./media/characters/tala-grovehorn/dick.svg"
  25889. }
  25890. },
  25891. slit: {
  25892. height: math.unit(0.61, "feet"),
  25893. name: "Slit",
  25894. image: {
  25895. source: "./media/characters/tala-grovehorn/slit.svg"
  25896. }
  25897. },
  25898. },
  25899. [
  25900. ]
  25901. ))
  25902. characterMakers.push(() => makeCharacter(
  25903. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25904. {
  25905. front: {
  25906. height: math.unit(7 + 7 / 12, "feet"),
  25907. weight: math.unit(225, "lb"),
  25908. name: "Front",
  25909. image: {
  25910. source: "./media/characters/epona/front.svg",
  25911. extra: 2445 / 2290,
  25912. bottom: 251 / 2696
  25913. }
  25914. },
  25915. back: {
  25916. height: math.unit(7 + 7 / 12, "feet"),
  25917. weight: math.unit(225, "lb"),
  25918. name: "Back",
  25919. image: {
  25920. source: "./media/characters/epona/back.svg",
  25921. extra: 2546 / 2408,
  25922. bottom: 44 / 2589
  25923. }
  25924. },
  25925. genitals: {
  25926. height: math.unit(1.5, "feet"),
  25927. name: "Genitals",
  25928. image: {
  25929. source: "./media/characters/epona/genitals.svg"
  25930. }
  25931. },
  25932. },
  25933. [
  25934. {
  25935. name: "Normal",
  25936. height: math.unit(7 + 7 / 12, "feet"),
  25937. default: true
  25938. },
  25939. ]
  25940. ))
  25941. characterMakers.push(() => makeCharacter(
  25942. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25943. {
  25944. front: {
  25945. height: math.unit(7, "feet"),
  25946. weight: math.unit(518, "lb"),
  25947. name: "Front",
  25948. image: {
  25949. source: "./media/characters/avia-bloodbourn/front.svg",
  25950. extra: 1466 / 1350,
  25951. bottom: 65 / 1527
  25952. }
  25953. },
  25954. },
  25955. [
  25956. ]
  25957. ))
  25958. characterMakers.push(() => makeCharacter(
  25959. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25960. {
  25961. front: {
  25962. height: math.unit(9.35, "feet"),
  25963. weight: math.unit(600, "lb"),
  25964. name: "Front",
  25965. image: {
  25966. source: "./media/characters/amera/front.svg",
  25967. extra: 891 / 818,
  25968. bottom: 30 / 922.7
  25969. }
  25970. },
  25971. back: {
  25972. height: math.unit(9.35, "feet"),
  25973. weight: math.unit(600, "lb"),
  25974. name: "Back",
  25975. image: {
  25976. source: "./media/characters/amera/back.svg",
  25977. extra: 876 / 824,
  25978. bottom: 6.8 / 884
  25979. }
  25980. },
  25981. dick: {
  25982. height: math.unit(2.14, "feet"),
  25983. name: "Dick",
  25984. image: {
  25985. source: "./media/characters/amera/dick.svg"
  25986. }
  25987. },
  25988. },
  25989. [
  25990. {
  25991. name: "Normal",
  25992. height: math.unit(9.35, "feet"),
  25993. default: true
  25994. },
  25995. ]
  25996. ))
  25997. characterMakers.push(() => makeCharacter(
  25998. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25999. {
  26000. kneeling: {
  26001. height: math.unit(3 + 4 / 12, "feet"),
  26002. weight: math.unit(90, "lb"),
  26003. name: "Kneeling",
  26004. image: {
  26005. source: "./media/characters/rosewen/kneeling.svg",
  26006. extra: 1835 / 1571,
  26007. bottom: 27.7 / 1862
  26008. }
  26009. },
  26010. },
  26011. [
  26012. {
  26013. name: "Normal",
  26014. height: math.unit(3 + 4 / 12, "feet"),
  26015. default: true
  26016. },
  26017. ]
  26018. ))
  26019. characterMakers.push(() => makeCharacter(
  26020. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26021. {
  26022. front: {
  26023. height: math.unit(5 + 10 / 12, "feet"),
  26024. weight: math.unit(200, "lb"),
  26025. name: "Front",
  26026. image: {
  26027. source: "./media/characters/sabah/front.svg",
  26028. extra: 849 / 763,
  26029. bottom: 33.9 / 881
  26030. }
  26031. },
  26032. },
  26033. [
  26034. {
  26035. name: "Normal",
  26036. height: math.unit(5 + 10 / 12, "feet"),
  26037. default: true
  26038. },
  26039. ]
  26040. ))
  26041. characterMakers.push(() => makeCharacter(
  26042. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26043. {
  26044. front: {
  26045. height: math.unit(3 + 5 / 12, "feet"),
  26046. weight: math.unit(40, "kg"),
  26047. name: "Front",
  26048. image: {
  26049. source: "./media/characters/purple-flame/front.svg",
  26050. extra: 1577 / 1412,
  26051. bottom: 97 / 1694
  26052. }
  26053. },
  26054. frontDressed: {
  26055. height: math.unit(3 + 5 / 12, "feet"),
  26056. weight: math.unit(40, "kg"),
  26057. name: "Front (Dressed)",
  26058. image: {
  26059. source: "./media/characters/purple-flame/front-dressed.svg",
  26060. extra: 1577 / 1412,
  26061. bottom: 97 / 1694
  26062. }
  26063. },
  26064. headphones: {
  26065. height: math.unit(0.85, "feet"),
  26066. name: "Headphones",
  26067. image: {
  26068. source: "./media/characters/purple-flame/headphones.svg"
  26069. }
  26070. },
  26071. },
  26072. [
  26073. {
  26074. name: "Really Small",
  26075. height: math.unit(5, "cm")
  26076. },
  26077. {
  26078. name: "Micro",
  26079. height: math.unit(1 + 5 / 12, "feet")
  26080. },
  26081. {
  26082. name: "Normal",
  26083. height: math.unit(3 + 5 / 12, "feet"),
  26084. default: true
  26085. },
  26086. {
  26087. name: "Minimacro",
  26088. height: math.unit(125, "feet")
  26089. },
  26090. {
  26091. name: "Macro",
  26092. height: math.unit(0.5, "miles")
  26093. },
  26094. {
  26095. name: "Megamacro",
  26096. height: math.unit(50, "miles")
  26097. },
  26098. {
  26099. name: "Gigantic",
  26100. height: math.unit(750, "miles")
  26101. },
  26102. {
  26103. name: "Planetary",
  26104. height: math.unit(15000, "miles")
  26105. },
  26106. ]
  26107. ))
  26108. characterMakers.push(() => makeCharacter(
  26109. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26110. {
  26111. front: {
  26112. height: math.unit(14, "feet"),
  26113. weight: math.unit(959, "lb"),
  26114. name: "Front",
  26115. image: {
  26116. source: "./media/characters/arsenal/front.svg",
  26117. extra: 2357 / 2157,
  26118. bottom: 93 / 2458
  26119. }
  26120. },
  26121. },
  26122. [
  26123. {
  26124. name: "Normal",
  26125. height: math.unit(14, "feet"),
  26126. default: true
  26127. },
  26128. ]
  26129. ))
  26130. characterMakers.push(() => makeCharacter(
  26131. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26132. {
  26133. front: {
  26134. height: math.unit(6, "feet"),
  26135. weight: math.unit(150, "lb"),
  26136. name: "Front",
  26137. image: {
  26138. source: "./media/characters/adira/front.svg",
  26139. extra: 1078 / 1029,
  26140. bottom: 87 / 1166
  26141. }
  26142. },
  26143. },
  26144. [
  26145. {
  26146. name: "Micro",
  26147. height: math.unit(4, "inches"),
  26148. default: true
  26149. },
  26150. {
  26151. name: "Macro",
  26152. height: math.unit(50, "feet")
  26153. },
  26154. ]
  26155. ))
  26156. characterMakers.push(() => makeCharacter(
  26157. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26158. {
  26159. front: {
  26160. height: math.unit(16, "feet"),
  26161. weight: math.unit(1000, "lb"),
  26162. name: "Front",
  26163. image: {
  26164. source: "./media/characters/grim/front.svg",
  26165. extra: 622 / 614,
  26166. bottom: 18.1 / 642
  26167. }
  26168. },
  26169. back: {
  26170. height: math.unit(16, "feet"),
  26171. weight: math.unit(1000, "lb"),
  26172. name: "Back",
  26173. image: {
  26174. source: "./media/characters/grim/back.svg",
  26175. extra: 610.6 / 602,
  26176. bottom: 40.8 / 652
  26177. }
  26178. },
  26179. hunched: {
  26180. height: math.unit(9.75, "feet"),
  26181. weight: math.unit(1000, "lb"),
  26182. name: "Hunched",
  26183. image: {
  26184. source: "./media/characters/grim/hunched.svg",
  26185. extra: 304 / 297,
  26186. bottom: 35.4 / 394
  26187. }
  26188. },
  26189. },
  26190. [
  26191. {
  26192. name: "Normal",
  26193. height: math.unit(16, "feet"),
  26194. default: true
  26195. },
  26196. ]
  26197. ))
  26198. characterMakers.push(() => makeCharacter(
  26199. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26200. {
  26201. front: {
  26202. height: math.unit(2.3, "meters"),
  26203. weight: math.unit(300, "lb"),
  26204. name: "Front",
  26205. image: {
  26206. source: "./media/characters/sinja/front-sfw.svg",
  26207. extra: 1393 / 1294,
  26208. bottom: 70 / 1463
  26209. }
  26210. },
  26211. frontNsfw: {
  26212. height: math.unit(2.3, "meters"),
  26213. weight: math.unit(300, "lb"),
  26214. name: "Front (NSFW)",
  26215. image: {
  26216. source: "./media/characters/sinja/front-nsfw.svg",
  26217. extra: 1393 / 1294,
  26218. bottom: 70 / 1463
  26219. }
  26220. },
  26221. back: {
  26222. height: math.unit(2.3, "meters"),
  26223. weight: math.unit(300, "lb"),
  26224. name: "Back",
  26225. image: {
  26226. source: "./media/characters/sinja/back.svg",
  26227. extra: 1393 / 1294,
  26228. bottom: 70 / 1463
  26229. }
  26230. },
  26231. head: {
  26232. height: math.unit(1.771, "feet"),
  26233. name: "Head",
  26234. image: {
  26235. source: "./media/characters/sinja/head.svg"
  26236. }
  26237. },
  26238. slit: {
  26239. height: math.unit(0.8, "feet"),
  26240. name: "Slit",
  26241. image: {
  26242. source: "./media/characters/sinja/slit.svg"
  26243. }
  26244. },
  26245. },
  26246. [
  26247. {
  26248. name: "Normal",
  26249. height: math.unit(2.3, "meters")
  26250. },
  26251. {
  26252. name: "Macro",
  26253. height: math.unit(91, "meters"),
  26254. default: true
  26255. },
  26256. {
  26257. name: "Megamacro",
  26258. height: math.unit(91440, "meters")
  26259. },
  26260. {
  26261. name: "Gigamacro",
  26262. height: math.unit(60960000, "meters")
  26263. },
  26264. {
  26265. name: "Teramacro",
  26266. height: math.unit(9144000000, "meters")
  26267. },
  26268. ]
  26269. ))
  26270. characterMakers.push(() => makeCharacter(
  26271. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26272. {
  26273. front: {
  26274. height: math.unit(1.7, "meters"),
  26275. weight: math.unit(130, "lb"),
  26276. name: "Front",
  26277. image: {
  26278. source: "./media/characters/kyu/front.svg",
  26279. extra: 415 / 395,
  26280. bottom: 5 / 420
  26281. }
  26282. },
  26283. head: {
  26284. height: math.unit(1.75, "feet"),
  26285. name: "Head",
  26286. image: {
  26287. source: "./media/characters/kyu/head.svg"
  26288. }
  26289. },
  26290. foot: {
  26291. height: math.unit(0.81, "feet"),
  26292. name: "Foot",
  26293. image: {
  26294. source: "./media/characters/kyu/foot.svg"
  26295. }
  26296. },
  26297. },
  26298. [
  26299. {
  26300. name: "Normal",
  26301. height: math.unit(1.7, "meters")
  26302. },
  26303. {
  26304. name: "Macro",
  26305. height: math.unit(131, "feet"),
  26306. default: true
  26307. },
  26308. {
  26309. name: "Megamacro",
  26310. height: math.unit(91440, "meters")
  26311. },
  26312. {
  26313. name: "Gigamacro",
  26314. height: math.unit(60960000, "meters")
  26315. },
  26316. {
  26317. name: "Teramacro",
  26318. height: math.unit(9144000000, "meters")
  26319. },
  26320. ]
  26321. ))
  26322. characterMakers.push(() => makeCharacter(
  26323. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26324. {
  26325. front: {
  26326. height: math.unit(7 + 1 / 12, "feet"),
  26327. weight: math.unit(250, "lb"),
  26328. name: "Front",
  26329. image: {
  26330. source: "./media/characters/joey/front.svg",
  26331. extra: 1791 / 1537,
  26332. bottom: 28 / 1816
  26333. }
  26334. },
  26335. },
  26336. [
  26337. {
  26338. name: "Micro",
  26339. height: math.unit(3, "inches")
  26340. },
  26341. {
  26342. name: "Normal",
  26343. height: math.unit(7 + 1 / 12, "feet"),
  26344. default: true
  26345. },
  26346. ]
  26347. ))
  26348. characterMakers.push(() => makeCharacter(
  26349. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26350. {
  26351. front: {
  26352. height: math.unit(165, "cm"),
  26353. weight: math.unit(140, "lb"),
  26354. name: "Front",
  26355. image: {
  26356. source: "./media/characters/sam-evans/front.svg",
  26357. extra: 3417 / 3230,
  26358. bottom: 41.3 / 3417
  26359. }
  26360. },
  26361. frontSixTails: {
  26362. height: math.unit(165, "cm"),
  26363. weight: math.unit(140, "lb"),
  26364. name: "Front-six-tails",
  26365. image: {
  26366. source: "./media/characters/sam-evans/front-six-tails.svg",
  26367. extra: 3417 / 3230,
  26368. bottom: 41.3 / 3417
  26369. }
  26370. },
  26371. back: {
  26372. height: math.unit(165, "cm"),
  26373. weight: math.unit(140, "lb"),
  26374. name: "Back",
  26375. image: {
  26376. source: "./media/characters/sam-evans/back.svg",
  26377. extra: 3227 / 3032,
  26378. bottom: 6.8 / 3234
  26379. }
  26380. },
  26381. face: {
  26382. height: math.unit(0.68, "feet"),
  26383. name: "Face",
  26384. image: {
  26385. source: "./media/characters/sam-evans/face.svg"
  26386. }
  26387. },
  26388. },
  26389. [
  26390. {
  26391. name: "Normal",
  26392. height: math.unit(165, "cm"),
  26393. default: true
  26394. },
  26395. {
  26396. name: "Macro",
  26397. height: math.unit(100, "meters")
  26398. },
  26399. {
  26400. name: "Macro+",
  26401. height: math.unit(800, "meters")
  26402. },
  26403. {
  26404. name: "Macro++",
  26405. height: math.unit(3, "km")
  26406. },
  26407. {
  26408. name: "Macro+++",
  26409. height: math.unit(30, "km")
  26410. },
  26411. ]
  26412. ))
  26413. characterMakers.push(() => makeCharacter(
  26414. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26415. {
  26416. front: {
  26417. height: math.unit(10, "feet"),
  26418. weight: math.unit(750, "lb"),
  26419. name: "Front",
  26420. image: {
  26421. source: "./media/characters/juliet-a/front.svg",
  26422. extra: 1766 / 1720,
  26423. bottom: 43 / 1809
  26424. }
  26425. },
  26426. back: {
  26427. height: math.unit(10, "feet"),
  26428. weight: math.unit(750, "lb"),
  26429. name: "Back",
  26430. image: {
  26431. source: "./media/characters/juliet-a/back.svg",
  26432. extra: 1781 / 1734,
  26433. bottom: 35 / 1810,
  26434. }
  26435. },
  26436. },
  26437. [
  26438. {
  26439. name: "Normal",
  26440. height: math.unit(10, "feet"),
  26441. default: true
  26442. },
  26443. {
  26444. name: "Dragon Form",
  26445. height: math.unit(250, "feet")
  26446. },
  26447. {
  26448. name: "Macro",
  26449. height: math.unit(1000, "feet")
  26450. },
  26451. {
  26452. name: "Megamacro",
  26453. height: math.unit(10000, "feet")
  26454. }
  26455. ]
  26456. ))
  26457. characterMakers.push(() => makeCharacter(
  26458. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26459. {
  26460. regular: {
  26461. height: math.unit(7 + 3 / 12, "feet"),
  26462. weight: math.unit(260, "lb"),
  26463. name: "Regular",
  26464. image: {
  26465. source: "./media/characters/wild/regular.svg",
  26466. extra: 97.45 / 92,
  26467. bottom: 6.8 / 104.3
  26468. }
  26469. },
  26470. biggums: {
  26471. height: math.unit(8 + 6 / 12, "feet"),
  26472. weight: math.unit(425, "lb"),
  26473. name: "Biggums",
  26474. image: {
  26475. source: "./media/characters/wild/biggums.svg",
  26476. extra: 97.45 / 92,
  26477. bottom: 7.5 / 132.34
  26478. }
  26479. },
  26480. mawRegular: {
  26481. height: math.unit(1.24, "feet"),
  26482. name: "Maw (Regular)",
  26483. image: {
  26484. source: "./media/characters/wild/maw.svg"
  26485. }
  26486. },
  26487. mawBiggums: {
  26488. height: math.unit(1.47, "feet"),
  26489. name: "Maw (Biggums)",
  26490. image: {
  26491. source: "./media/characters/wild/maw.svg"
  26492. }
  26493. },
  26494. },
  26495. [
  26496. {
  26497. name: "Normal",
  26498. height: math.unit(7 + 3 / 12, "feet"),
  26499. default: true
  26500. },
  26501. ]
  26502. ))
  26503. characterMakers.push(() => makeCharacter(
  26504. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26505. {
  26506. front: {
  26507. height: math.unit(2.5, "meters"),
  26508. weight: math.unit(200, "kg"),
  26509. name: "Front",
  26510. image: {
  26511. source: "./media/characters/vidar/front.svg",
  26512. extra: 2994 / 2795,
  26513. bottom: 56 / 3061
  26514. }
  26515. },
  26516. back: {
  26517. height: math.unit(2.5, "meters"),
  26518. weight: math.unit(200, "kg"),
  26519. name: "Back",
  26520. image: {
  26521. source: "./media/characters/vidar/back.svg",
  26522. extra: 3131 / 2928,
  26523. bottom: 13.5 / 3141.5
  26524. }
  26525. },
  26526. feral: {
  26527. height: math.unit(2.5, "meters"),
  26528. weight: math.unit(2000, "kg"),
  26529. name: "Feral",
  26530. image: {
  26531. source: "./media/characters/vidar/feral.svg",
  26532. extra: 2790 / 1765,
  26533. bottom: 6 / 2796
  26534. }
  26535. },
  26536. },
  26537. [
  26538. {
  26539. name: "Normal",
  26540. height: math.unit(2.5, "meters"),
  26541. default: true
  26542. },
  26543. {
  26544. name: "Macro",
  26545. height: math.unit(100, "meters")
  26546. },
  26547. ]
  26548. ))
  26549. characterMakers.push(() => makeCharacter(
  26550. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26551. {
  26552. front: {
  26553. height: math.unit(5 + 9 / 12, "feet"),
  26554. weight: math.unit(120, "lb"),
  26555. name: "Front",
  26556. image: {
  26557. source: "./media/characters/ash/front.svg",
  26558. extra: 2189 / 1961,
  26559. bottom: 5.2 / 2194
  26560. }
  26561. },
  26562. },
  26563. [
  26564. {
  26565. name: "Normal",
  26566. height: math.unit(5 + 9 / 12, "feet"),
  26567. default: true
  26568. },
  26569. ]
  26570. ))
  26571. characterMakers.push(() => makeCharacter(
  26572. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26573. {
  26574. front: {
  26575. height: math.unit(9, "feet"),
  26576. weight: math.unit(10000, "lb"),
  26577. name: "Front",
  26578. image: {
  26579. source: "./media/characters/gygabite/front.svg",
  26580. bottom: 31.7 / 537.8,
  26581. extra: 505 / 370
  26582. }
  26583. },
  26584. },
  26585. [
  26586. {
  26587. name: "Normal",
  26588. height: math.unit(9, "feet"),
  26589. default: true
  26590. },
  26591. ]
  26592. ))
  26593. characterMakers.push(() => makeCharacter(
  26594. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26595. {
  26596. front: {
  26597. height: math.unit(12, "feet"),
  26598. weight: math.unit(35000, "lb"),
  26599. name: "Front",
  26600. image: {
  26601. source: "./media/characters/p0tat0/front.svg",
  26602. extra: 1065 / 921,
  26603. bottom: 55.7 / 1121.25
  26604. }
  26605. },
  26606. },
  26607. [
  26608. {
  26609. name: "Normal",
  26610. height: math.unit(12, "feet"),
  26611. default: true
  26612. },
  26613. ]
  26614. ))
  26615. characterMakers.push(() => makeCharacter(
  26616. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26617. {
  26618. side: {
  26619. height: math.unit(6.5, "feet"),
  26620. weight: math.unit(800, "lb"),
  26621. name: "Side",
  26622. image: {
  26623. source: "./media/characters/dusk/side.svg",
  26624. extra: 615 / 373,
  26625. bottom: 53 / 664
  26626. }
  26627. },
  26628. sitting: {
  26629. height: math.unit(7, "feet"),
  26630. weight: math.unit(800, "lb"),
  26631. name: "Sitting",
  26632. image: {
  26633. source: "./media/characters/dusk/sitting.svg",
  26634. extra: 753 / 425,
  26635. bottom: 33 / 774
  26636. }
  26637. },
  26638. head: {
  26639. height: math.unit(6.1, "feet"),
  26640. name: "Head",
  26641. image: {
  26642. source: "./media/characters/dusk/head.svg"
  26643. }
  26644. },
  26645. },
  26646. [
  26647. {
  26648. name: "Normal",
  26649. height: math.unit(7, "feet"),
  26650. default: true
  26651. },
  26652. ]
  26653. ))
  26654. characterMakers.push(() => makeCharacter(
  26655. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26656. {
  26657. front: {
  26658. height: math.unit(15, "feet"),
  26659. weight: math.unit(7000, "lb"),
  26660. name: "Front",
  26661. image: {
  26662. source: "./media/characters/jay-direwolf/front.svg",
  26663. extra: 1810 / 1732,
  26664. bottom: 66 / 1892
  26665. }
  26666. },
  26667. },
  26668. [
  26669. {
  26670. name: "Normal",
  26671. height: math.unit(15, "feet"),
  26672. default: true
  26673. },
  26674. ]
  26675. ))
  26676. characterMakers.push(() => makeCharacter(
  26677. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26678. {
  26679. front: {
  26680. height: math.unit(4 + 9 / 12, "feet"),
  26681. weight: math.unit(130, "lb"),
  26682. name: "Front",
  26683. image: {
  26684. source: "./media/characters/anchovie/front.svg",
  26685. extra: 382 / 350,
  26686. bottom: 25 / 409
  26687. }
  26688. },
  26689. back: {
  26690. height: math.unit(4 + 9 / 12, "feet"),
  26691. weight: math.unit(130, "lb"),
  26692. name: "Back",
  26693. image: {
  26694. source: "./media/characters/anchovie/back.svg",
  26695. extra: 385 / 352,
  26696. bottom: 16.6 / 402
  26697. }
  26698. },
  26699. frontDressed: {
  26700. height: math.unit(4 + 9 / 12, "feet"),
  26701. weight: math.unit(130, "lb"),
  26702. name: "Front (Dressed)",
  26703. image: {
  26704. source: "./media/characters/anchovie/front-dressed.svg",
  26705. extra: 382 / 350,
  26706. bottom: 25 / 409
  26707. }
  26708. },
  26709. backDressed: {
  26710. height: math.unit(4 + 9 / 12, "feet"),
  26711. weight: math.unit(130, "lb"),
  26712. name: "Back (Dressed)",
  26713. image: {
  26714. source: "./media/characters/anchovie/back-dressed.svg",
  26715. extra: 385 / 352,
  26716. bottom: 16.6 / 402
  26717. }
  26718. },
  26719. },
  26720. [
  26721. {
  26722. name: "Micro",
  26723. height: math.unit(6.4, "inches")
  26724. },
  26725. {
  26726. name: "Normal",
  26727. height: math.unit(4 + 9 / 12, "feet"),
  26728. default: true
  26729. },
  26730. ]
  26731. ))
  26732. characterMakers.push(() => makeCharacter(
  26733. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26734. {
  26735. front: {
  26736. height: math.unit(2, "meters"),
  26737. weight: math.unit(180, "lb"),
  26738. name: "Front",
  26739. image: {
  26740. source: "./media/characters/acidrenamon/front.svg",
  26741. extra: 987 / 890,
  26742. bottom: 22.8 / 1009
  26743. }
  26744. },
  26745. back: {
  26746. height: math.unit(2, "meters"),
  26747. weight: math.unit(180, "lb"),
  26748. name: "Back",
  26749. image: {
  26750. source: "./media/characters/acidrenamon/back.svg",
  26751. extra: 983 / 891,
  26752. bottom: 8.4 / 992
  26753. }
  26754. },
  26755. head: {
  26756. height: math.unit(1.92, "feet"),
  26757. name: "Head",
  26758. image: {
  26759. source: "./media/characters/acidrenamon/head.svg"
  26760. }
  26761. },
  26762. rump: {
  26763. height: math.unit(1.72, "feet"),
  26764. name: "Rump",
  26765. image: {
  26766. source: "./media/characters/acidrenamon/rump.svg"
  26767. }
  26768. },
  26769. tail: {
  26770. height: math.unit(4.2, "feet"),
  26771. name: "Tail",
  26772. image: {
  26773. source: "./media/characters/acidrenamon/tail.svg"
  26774. }
  26775. },
  26776. },
  26777. [
  26778. {
  26779. name: "Normal",
  26780. height: math.unit(2, "meters"),
  26781. default: true
  26782. },
  26783. {
  26784. name: "Minimacro",
  26785. height: math.unit(7, "meters")
  26786. },
  26787. {
  26788. name: "Macro",
  26789. height: math.unit(200, "meters")
  26790. },
  26791. {
  26792. name: "Gigamacro",
  26793. height: math.unit(0.2, "earths")
  26794. },
  26795. ]
  26796. ))
  26797. characterMakers.push(() => makeCharacter(
  26798. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26799. {
  26800. front: {
  26801. height: math.unit(6, "feet"),
  26802. weight: math.unit(150, "lb"),
  26803. name: "Front",
  26804. image: {
  26805. source: "./media/characters/kenzie-lee/front.svg",
  26806. extra: 1525 / 1465,
  26807. bottom: 45 / 1570
  26808. }
  26809. },
  26810. side: {
  26811. height: math.unit(6, "feet"),
  26812. weight: math.unit(150, "lb"),
  26813. name: "Side",
  26814. image: {
  26815. source: "./media/characters/kenzie-lee/side.svg",
  26816. extra: 5505 / 5383,
  26817. bottom: 60 / 5573
  26818. }
  26819. },
  26820. paw: {
  26821. height: math.unit(6, "feet"),
  26822. name: "Paw",
  26823. image: {
  26824. source: "./media/characters/kenzie-lee/paw.svg"
  26825. }
  26826. },
  26827. },
  26828. [
  26829. {
  26830. name: "Normal",
  26831. height: math.unit(152, "feet"),
  26832. default: true
  26833. },
  26834. {
  26835. name: "Megamacro",
  26836. height: math.unit(7, "miles")
  26837. },
  26838. {
  26839. name: "Gigamacro",
  26840. height: math.unit(8000, "miles")
  26841. },
  26842. ]
  26843. ))
  26844. characterMakers.push(() => makeCharacter(
  26845. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26846. {
  26847. side: {
  26848. height: math.unit(6, "feet"),
  26849. weight: math.unit(150, "lb"),
  26850. name: "Side",
  26851. image: {
  26852. source: "./media/characters/withers/side.svg",
  26853. extra: 1830 / 1728,
  26854. bottom: 96 / 1927
  26855. }
  26856. },
  26857. front: {
  26858. height: math.unit(6, "feet"),
  26859. weight: math.unit(150, "lb"),
  26860. name: "Front",
  26861. image: {
  26862. source: "./media/characters/withers/front.svg",
  26863. extra: 1514 / 1438,
  26864. bottom: 118 / 1632
  26865. }
  26866. },
  26867. },
  26868. [
  26869. {
  26870. name: "Macro",
  26871. height: math.unit(168, "feet"),
  26872. default: true
  26873. },
  26874. {
  26875. name: "Megamacro",
  26876. height: math.unit(15, "miles")
  26877. }
  26878. ]
  26879. ))
  26880. characterMakers.push(() => makeCharacter(
  26881. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26882. {
  26883. front: {
  26884. height: math.unit(6 + 7 / 12, "feet"),
  26885. weight: math.unit(250, "lb"),
  26886. name: "Front",
  26887. image: {
  26888. source: "./media/characters/nemoskii/front.svg",
  26889. extra: 2270 / 1734,
  26890. bottom: 86 / 2354
  26891. }
  26892. },
  26893. back: {
  26894. height: math.unit(6 + 7 / 12, "feet"),
  26895. weight: math.unit(250, "lb"),
  26896. name: "Back",
  26897. image: {
  26898. source: "./media/characters/nemoskii/back.svg",
  26899. extra: 1845 / 1788,
  26900. bottom: 10.5 / 1852
  26901. }
  26902. },
  26903. head: {
  26904. height: math.unit(1.31, "feet"),
  26905. name: "Head",
  26906. image: {
  26907. source: "./media/characters/nemoskii/head.svg"
  26908. }
  26909. },
  26910. },
  26911. [
  26912. {
  26913. name: "Micro",
  26914. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  26915. },
  26916. {
  26917. name: "Normal",
  26918. height: math.unit(6 + 7 / 12, "feet"),
  26919. default: true
  26920. },
  26921. {
  26922. name: "Macro",
  26923. height: math.unit((6 + 7 / 12) * 150, "feet")
  26924. },
  26925. {
  26926. name: "Macro+",
  26927. height: math.unit((6 + 7 / 12) * 500, "feet")
  26928. },
  26929. {
  26930. name: "Megamacro",
  26931. height: math.unit((6 + 7 / 12) * 100000, "feet")
  26932. },
  26933. ]
  26934. ))
  26935. characterMakers.push(() => makeCharacter(
  26936. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26937. {
  26938. front: {
  26939. height: math.unit(1, "mile"),
  26940. weight: math.unit(265261.9, "lb"),
  26941. name: "Front",
  26942. image: {
  26943. source: "./media/characters/shui/front.svg",
  26944. extra: 1633 / 1564,
  26945. bottom: 91.5 / 1726
  26946. }
  26947. },
  26948. },
  26949. [
  26950. {
  26951. name: "Macro",
  26952. height: math.unit(1, "mile"),
  26953. default: true
  26954. },
  26955. ]
  26956. ))
  26957. characterMakers.push(() => makeCharacter(
  26958. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26959. {
  26960. front: {
  26961. height: math.unit(12 + 6 / 12, "feet"),
  26962. weight: math.unit(1342, "lb"),
  26963. name: "Front",
  26964. image: {
  26965. source: "./media/characters/arokh-takakura/front.svg",
  26966. extra: 1089 / 1043,
  26967. bottom: 77.4 / 1176.7
  26968. }
  26969. },
  26970. back: {
  26971. height: math.unit(12 + 6 / 12, "feet"),
  26972. weight: math.unit(1342, "lb"),
  26973. name: "Back",
  26974. image: {
  26975. source: "./media/characters/arokh-takakura/back.svg",
  26976. extra: 1046 / 1019,
  26977. bottom: 102 / 1150
  26978. }
  26979. },
  26980. },
  26981. [
  26982. {
  26983. name: "Big",
  26984. height: math.unit(12 + 6 / 12, "feet"),
  26985. default: true
  26986. },
  26987. ]
  26988. ))
  26989. characterMakers.push(() => makeCharacter(
  26990. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26991. {
  26992. front: {
  26993. height: math.unit(5 + 6 / 12, "feet"),
  26994. weight: math.unit(150, "lb"),
  26995. name: "Front",
  26996. image: {
  26997. source: "./media/characters/theo/front.svg",
  26998. extra: 1184 / 1131,
  26999. bottom: 7.4 / 1191
  27000. }
  27001. },
  27002. },
  27003. [
  27004. {
  27005. name: "Micro",
  27006. height: math.unit(5, "inches")
  27007. },
  27008. {
  27009. name: "Normal",
  27010. height: math.unit(5 + 6 / 12, "feet"),
  27011. default: true
  27012. },
  27013. ]
  27014. ))
  27015. characterMakers.push(() => makeCharacter(
  27016. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27017. {
  27018. front: {
  27019. height: math.unit(5 + 9 / 12, "feet"),
  27020. weight: math.unit(130, "lb"),
  27021. name: "Front",
  27022. image: {
  27023. source: "./media/characters/cecelia-swift/front.svg",
  27024. extra: 502 / 484,
  27025. bottom: 23 / 523
  27026. }
  27027. },
  27028. back: {
  27029. height: math.unit(5 + 9 / 12, "feet"),
  27030. weight: math.unit(130, "lb"),
  27031. name: "Back",
  27032. image: {
  27033. source: "./media/characters/cecelia-swift/back.svg",
  27034. extra: 499 / 485,
  27035. bottom: 12 / 511
  27036. }
  27037. },
  27038. head: {
  27039. height: math.unit(0.90, "feet"),
  27040. name: "Head",
  27041. image: {
  27042. source: "./media/characters/cecelia-swift/head.svg"
  27043. }
  27044. },
  27045. rump: {
  27046. height: math.unit(1.75, "feet"),
  27047. name: "Rump",
  27048. image: {
  27049. source: "./media/characters/cecelia-swift/rump.svg"
  27050. }
  27051. },
  27052. },
  27053. [
  27054. {
  27055. name: "Normal",
  27056. height: math.unit(5 + 9 / 12, "feet"),
  27057. default: true
  27058. },
  27059. {
  27060. name: "Big",
  27061. height: math.unit(50, "feet")
  27062. },
  27063. {
  27064. name: "Macro",
  27065. height: math.unit(100, "feet")
  27066. },
  27067. {
  27068. name: "Macro+",
  27069. height: math.unit(500, "feet")
  27070. },
  27071. {
  27072. name: "Macro++",
  27073. height: math.unit(1000, "feet")
  27074. },
  27075. ]
  27076. ))
  27077. characterMakers.push(() => makeCharacter(
  27078. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27079. {
  27080. front: {
  27081. height: math.unit(6, "feet"),
  27082. weight: math.unit(150, "lb"),
  27083. name: "Front",
  27084. image: {
  27085. source: "./media/characters/kaunan/front.svg",
  27086. extra: 2890 / 2523,
  27087. bottom: 49 / 2939
  27088. }
  27089. },
  27090. },
  27091. [
  27092. {
  27093. name: "Macro",
  27094. height: math.unit(150, "feet"),
  27095. default: true
  27096. },
  27097. ]
  27098. ))
  27099. characterMakers.push(() => makeCharacter(
  27100. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27101. {
  27102. front: {
  27103. height: math.unit(175, "cm"),
  27104. weight: math.unit(60, "kg"),
  27105. name: "Front",
  27106. image: {
  27107. source: "./media/characters/fei/front.svg",
  27108. extra: 2581 / 2400,
  27109. bottom: 82.2 / 2663
  27110. }
  27111. },
  27112. },
  27113. [
  27114. {
  27115. name: "Mortal",
  27116. height: math.unit(175, "cm")
  27117. },
  27118. {
  27119. name: "Normal",
  27120. height: math.unit(3500, "m"),
  27121. default: true
  27122. },
  27123. {
  27124. name: "Stroll",
  27125. height: math.unit(17.5, "km")
  27126. },
  27127. {
  27128. name: "Showoff",
  27129. height: math.unit(175, "km")
  27130. },
  27131. ]
  27132. ))
  27133. characterMakers.push(() => makeCharacter(
  27134. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27135. {
  27136. front: {
  27137. height: math.unit(7, "feet"),
  27138. weight: math.unit(1000, "kg"),
  27139. name: "Front",
  27140. image: {
  27141. source: "./media/characters/edrax/front.svg",
  27142. extra: 2838 / 2550,
  27143. bottom: 130 / 2968
  27144. }
  27145. },
  27146. },
  27147. [
  27148. {
  27149. name: "Small",
  27150. height: math.unit(7, "feet")
  27151. },
  27152. {
  27153. name: "Normal",
  27154. height: math.unit(1500, "meters")
  27155. },
  27156. {
  27157. name: "Mega",
  27158. height: math.unit(12000000, "km"),
  27159. default: true
  27160. },
  27161. {
  27162. name: "Megamacro",
  27163. height: math.unit(10600000, "lightyears")
  27164. },
  27165. {
  27166. name: "Hypermacro",
  27167. height: math.unit(256, "yottameters")
  27168. },
  27169. ]
  27170. ))
  27171. characterMakers.push(() => makeCharacter(
  27172. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27173. {
  27174. front: {
  27175. height: math.unit(10, "feet"),
  27176. weight: math.unit(750, "lb"),
  27177. name: "Front",
  27178. image: {
  27179. source: "./media/characters/clove/front.svg",
  27180. extra: 2031 / 1860,
  27181. bottom: 47.8 / 2080
  27182. }
  27183. },
  27184. back: {
  27185. height: math.unit(10, "feet"),
  27186. weight: math.unit(750, "lb"),
  27187. name: "Back",
  27188. image: {
  27189. source: "./media/characters/clove/back.svg",
  27190. extra: 2025 / 1859,
  27191. bottom: 46 / 2071
  27192. }
  27193. },
  27194. },
  27195. [
  27196. {
  27197. name: "Normal",
  27198. height: math.unit(10, "feet"),
  27199. default: true
  27200. },
  27201. ]
  27202. ))
  27203. characterMakers.push(() => makeCharacter(
  27204. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27205. {
  27206. front: {
  27207. height: math.unit(4, "feet"),
  27208. weight: math.unit(50, "lb"),
  27209. name: "Front",
  27210. image: {
  27211. source: "./media/characters/alex-rabbit/front.svg",
  27212. extra: 507 / 458,
  27213. bottom: 18.5 / 527
  27214. }
  27215. },
  27216. back: {
  27217. height: math.unit(4, "feet"),
  27218. weight: math.unit(50, "lb"),
  27219. name: "Back",
  27220. image: {
  27221. source: "./media/characters/alex-rabbit/back.svg",
  27222. extra: 502 / 460,
  27223. bottom: 18.9 / 521
  27224. }
  27225. },
  27226. },
  27227. [
  27228. {
  27229. name: "Normal",
  27230. height: math.unit(4, "feet"),
  27231. default: true
  27232. },
  27233. ]
  27234. ))
  27235. characterMakers.push(() => makeCharacter(
  27236. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27237. {
  27238. front: {
  27239. height: math.unit(1 + 3 / 12, "feet"),
  27240. weight: math.unit(80, "lb"),
  27241. name: "Front",
  27242. image: {
  27243. source: "./media/characters/zander-rose/front.svg",
  27244. extra: 916 / 797,
  27245. bottom: 17 / 933
  27246. }
  27247. },
  27248. back: {
  27249. height: math.unit(1 + 3 / 12, "feet"),
  27250. weight: math.unit(80, "lb"),
  27251. name: "Back",
  27252. image: {
  27253. source: "./media/characters/zander-rose/back.svg",
  27254. extra: 903 / 779,
  27255. bottom: 31 / 934
  27256. }
  27257. },
  27258. },
  27259. [
  27260. {
  27261. name: "Normal",
  27262. height: math.unit(1 + 3 / 12, "feet"),
  27263. default: true
  27264. },
  27265. ]
  27266. ))
  27267. characterMakers.push(() => makeCharacter(
  27268. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27269. {
  27270. anthro: {
  27271. height: math.unit(6, "feet"),
  27272. weight: math.unit(150, "lb"),
  27273. name: "Anthro",
  27274. image: {
  27275. source: "./media/characters/razz/anthro.svg",
  27276. extra: 1437 / 1343,
  27277. bottom: 48 / 1485
  27278. }
  27279. },
  27280. feral: {
  27281. height: math.unit(6, "feet"),
  27282. weight: math.unit(150, "lb"),
  27283. name: "Feral",
  27284. image: {
  27285. source: "./media/characters/razz/feral.svg",
  27286. extra: 2569 / 1385,
  27287. bottom: 95 / 2664
  27288. }
  27289. },
  27290. },
  27291. [
  27292. {
  27293. name: "Normal",
  27294. height: math.unit(6, "feet"),
  27295. default: true
  27296. },
  27297. ]
  27298. ))
  27299. characterMakers.push(() => makeCharacter(
  27300. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27301. {
  27302. front: {
  27303. height: math.unit(9 + 4 / 12, "feet"),
  27304. weight: math.unit(500, "lb"),
  27305. name: "Front",
  27306. image: {
  27307. source: "./media/characters/morrigan/front.svg",
  27308. extra: 2707 / 2579,
  27309. bottom: 156 / 2863
  27310. }
  27311. },
  27312. },
  27313. [
  27314. {
  27315. name: "Normal",
  27316. height: math.unit(9 + 4 / 12, "feet"),
  27317. default: true
  27318. },
  27319. ]
  27320. ))
  27321. characterMakers.push(() => makeCharacter(
  27322. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27323. {
  27324. front: {
  27325. height: math.unit(5, "stories"),
  27326. weight: math.unit(4000, "lb"),
  27327. name: "Front",
  27328. image: {
  27329. source: "./media/characters/jenene/front.svg",
  27330. extra: 1780 / 1710,
  27331. bottom: 57 / 1837
  27332. }
  27333. },
  27334. },
  27335. [
  27336. {
  27337. name: "Normal",
  27338. height: math.unit(5, "stories"),
  27339. default: true
  27340. },
  27341. ]
  27342. ))
  27343. characterMakers.push(() => makeCharacter(
  27344. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27345. {
  27346. front: {
  27347. height: math.unit(6, "feet"),
  27348. weight: math.unit(150, "lb"),
  27349. name: "Front",
  27350. image: {
  27351. source: "./media/characters/vix-archaser/front.svg",
  27352. extra: 2767 / 2562,
  27353. bottom: 36 / 2803
  27354. }
  27355. },
  27356. },
  27357. [
  27358. {
  27359. name: "Micro",
  27360. height: math.unit(1, "foot")
  27361. },
  27362. {
  27363. name: "Normal",
  27364. height: math.unit(6 + 5 / 12, "feet")
  27365. },
  27366. {
  27367. name: "Minimacro",
  27368. height: math.unit(500, "feet")
  27369. },
  27370. {
  27371. name: "Macro",
  27372. height: math.unit(4, "miles")
  27373. },
  27374. {
  27375. name: "Megamacro",
  27376. height: math.unit(250, "miles"),
  27377. default: true
  27378. },
  27379. {
  27380. name: "Gigamacro",
  27381. height: math.unit(1, "universe")
  27382. },
  27383. {
  27384. name: "Endgame",
  27385. height: math.unit(100, "multiverses")
  27386. }
  27387. ]
  27388. ))
  27389. characterMakers.push(() => makeCharacter(
  27390. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27391. {
  27392. taurSfw: {
  27393. height: math.unit(10, "meters"),
  27394. weight: math.unit(17500, "kg"),
  27395. name: "Taur",
  27396. image: {
  27397. source: "./media/characters/faey/taur-sfw.svg",
  27398. extra: 1200 / 968,
  27399. bottom: 41 / 1241
  27400. }
  27401. },
  27402. chestmaw: {
  27403. height: math.unit(2.01, "meters"),
  27404. name: "Chestmaw",
  27405. image: {
  27406. source: "./media/characters/faey/chestmaw.svg"
  27407. }
  27408. },
  27409. foot: {
  27410. height: math.unit(2.43, "meters"),
  27411. name: "Foot",
  27412. image: {
  27413. source: "./media/characters/faey/foot.svg"
  27414. }
  27415. },
  27416. jaws: {
  27417. height: math.unit(1.66, "meters"),
  27418. name: "Jaws",
  27419. image: {
  27420. source: "./media/characters/faey/jaws.svg"
  27421. }
  27422. },
  27423. tongues: {
  27424. height: math.unit(2.01, "meters"),
  27425. name: "Tongues",
  27426. image: {
  27427. source: "./media/characters/faey/tongues.svg"
  27428. }
  27429. },
  27430. },
  27431. [
  27432. {
  27433. name: "Small",
  27434. height: math.unit(10, "meters"),
  27435. default: true
  27436. },
  27437. {
  27438. name: "Big",
  27439. height: math.unit(500000, "km")
  27440. },
  27441. ]
  27442. ))
  27443. characterMakers.push(() => makeCharacter(
  27444. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27445. {
  27446. front: {
  27447. height: math.unit(7, "feet"),
  27448. weight: math.unit(275, "lb"),
  27449. name: "Front",
  27450. image: {
  27451. source: "./media/characters/roku/front.svg",
  27452. extra: 903 / 878,
  27453. bottom: 37 / 940
  27454. }
  27455. },
  27456. },
  27457. [
  27458. {
  27459. name: "Normal",
  27460. height: math.unit(7, "feet"),
  27461. default: true
  27462. },
  27463. {
  27464. name: "Macro",
  27465. height: math.unit(500, "feet")
  27466. },
  27467. {
  27468. name: "Megamacro",
  27469. height: math.unit(200, "miles")
  27470. },
  27471. ]
  27472. ))
  27473. characterMakers.push(() => makeCharacter(
  27474. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27475. {
  27476. front: {
  27477. height: math.unit(6 + 2 / 12, "feet"),
  27478. weight: math.unit(150, "lb"),
  27479. name: "Front",
  27480. image: {
  27481. source: "./media/characters/lira/front.svg",
  27482. extra: 1727 / 1605,
  27483. bottom: 26 / 1753
  27484. }
  27485. },
  27486. back: {
  27487. height: math.unit(6 + 2 / 12, "feet"),
  27488. weight: math.unit(150, "lb"),
  27489. name: "Back",
  27490. image: {
  27491. source: "./media/characters/lira/back.svg",
  27492. extra: 1713 / 159,
  27493. bottom: 20 / 1733
  27494. }
  27495. },
  27496. hand: {
  27497. height: math.unit(0.75, "feet"),
  27498. name: "Hand",
  27499. image: {
  27500. source: "./media/characters/lira/hand.svg"
  27501. }
  27502. },
  27503. maw: {
  27504. height: math.unit(0.65, "feet"),
  27505. name: "Maw",
  27506. image: {
  27507. source: "./media/characters/lira/maw.svg"
  27508. }
  27509. },
  27510. pawDigi: {
  27511. height: math.unit(1.6, "feet"),
  27512. name: "Paw Digi",
  27513. image: {
  27514. source: "./media/characters/lira/paw-digi.svg"
  27515. }
  27516. },
  27517. pawPlanti: {
  27518. height: math.unit(1.4, "feet"),
  27519. name: "Paw Planti",
  27520. image: {
  27521. source: "./media/characters/lira/paw-planti.svg"
  27522. }
  27523. },
  27524. },
  27525. [
  27526. {
  27527. name: "Normal",
  27528. height: math.unit(6 + 2 / 12, "feet"),
  27529. default: true
  27530. },
  27531. {
  27532. name: "Macro",
  27533. height: math.unit(100, "feet")
  27534. },
  27535. {
  27536. name: "Macro²",
  27537. height: math.unit(1600, "feet")
  27538. },
  27539. {
  27540. name: "Planetary",
  27541. height: math.unit(20, "earths")
  27542. },
  27543. ]
  27544. ))
  27545. characterMakers.push(() => makeCharacter(
  27546. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27547. {
  27548. front: {
  27549. height: math.unit(6, "feet"),
  27550. weight: math.unit(150, "lb"),
  27551. name: "Front",
  27552. image: {
  27553. source: "./media/characters/hadjet/front.svg",
  27554. extra: 1480 / 1346,
  27555. bottom: 26 / 1506
  27556. }
  27557. },
  27558. frontNsfw: {
  27559. height: math.unit(6, "feet"),
  27560. weight: math.unit(150, "lb"),
  27561. name: "Front (NSFW)",
  27562. image: {
  27563. source: "./media/characters/hadjet/front-nsfw.svg",
  27564. extra: 1440 / 1358,
  27565. bottom: 52 / 1492
  27566. }
  27567. },
  27568. },
  27569. [
  27570. {
  27571. name: "Macro",
  27572. height: math.unit(10, "stories"),
  27573. default: true
  27574. },
  27575. {
  27576. name: "Megamacro",
  27577. height: math.unit(1.5, "miles")
  27578. },
  27579. {
  27580. name: "Megamacro+",
  27581. height: math.unit(5, "miles")
  27582. },
  27583. ]
  27584. ))
  27585. characterMakers.push(() => makeCharacter(
  27586. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27587. {
  27588. side: {
  27589. height: math.unit(106, "feet"),
  27590. weight: math.unit(500, "tonnes"),
  27591. name: "Side",
  27592. image: {
  27593. source: "./media/characters/kodran/side.svg",
  27594. extra: 553 / 480,
  27595. bottom: 33 / 586
  27596. }
  27597. },
  27598. front: {
  27599. height: math.unit(132, "feet"),
  27600. weight: math.unit(500, "tonnes"),
  27601. name: "Front",
  27602. image: {
  27603. source: "./media/characters/kodran/front.svg",
  27604. extra: 667 / 643,
  27605. bottom: 42 / 709
  27606. }
  27607. },
  27608. flying: {
  27609. height: math.unit(350, "feet"),
  27610. weight: math.unit(500, "tonnes"),
  27611. name: "Flying",
  27612. image: {
  27613. source: "./media/characters/kodran/flying.svg"
  27614. }
  27615. },
  27616. foot: {
  27617. height: math.unit(33, "feet"),
  27618. name: "Foot",
  27619. image: {
  27620. source: "./media/characters/kodran/foot.svg"
  27621. }
  27622. },
  27623. footFront: {
  27624. height: math.unit(19, "feet"),
  27625. name: "Foot (Front)",
  27626. image: {
  27627. source: "./media/characters/kodran/foot-front.svg",
  27628. extra: 261 / 261,
  27629. bottom: 91 / 352
  27630. }
  27631. },
  27632. headFront: {
  27633. height: math.unit(53, "feet"),
  27634. name: "Head (Front)",
  27635. image: {
  27636. source: "./media/characters/kodran/head-front.svg"
  27637. }
  27638. },
  27639. headSide: {
  27640. height: math.unit(65, "feet"),
  27641. name: "Head (Side)",
  27642. image: {
  27643. source: "./media/characters/kodran/head-side.svg"
  27644. }
  27645. },
  27646. throat: {
  27647. height: math.unit(79, "feet"),
  27648. name: "Throat",
  27649. image: {
  27650. source: "./media/characters/kodran/throat.svg"
  27651. }
  27652. },
  27653. },
  27654. [
  27655. {
  27656. name: "Large",
  27657. height: math.unit(106, "feet"),
  27658. default: true
  27659. },
  27660. ]
  27661. ))
  27662. characterMakers.push(() => makeCharacter(
  27663. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27664. {
  27665. side: {
  27666. height: math.unit(11, "feet"),
  27667. weight: math.unit(150, "lb"),
  27668. name: "Side",
  27669. image: {
  27670. source: "./media/characters/pyxaron/side.svg",
  27671. extra: 305 / 195,
  27672. bottom: 17 / 322
  27673. }
  27674. },
  27675. },
  27676. [
  27677. {
  27678. name: "Normal",
  27679. height: math.unit(11, "feet"),
  27680. default: true
  27681. },
  27682. ]
  27683. ))
  27684. characterMakers.push(() => makeCharacter(
  27685. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27686. {
  27687. front: {
  27688. height: math.unit(6, "feet"),
  27689. weight: math.unit(150, "lb"),
  27690. name: "Front",
  27691. image: {
  27692. source: "./media/characters/meep/front.svg",
  27693. extra: 88 / 80,
  27694. bottom: 6 / 94
  27695. }
  27696. },
  27697. },
  27698. [
  27699. {
  27700. name: "Fun Sized",
  27701. height: math.unit(2, "inches"),
  27702. default: true
  27703. },
  27704. {
  27705. name: "Friend Sized",
  27706. height: math.unit(8, "inches")
  27707. },
  27708. ]
  27709. ))
  27710. characterMakers.push(() => makeCharacter(
  27711. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27712. {
  27713. front: {
  27714. height: math.unit(15, "feet"),
  27715. weight: math.unit(2500, "lb"),
  27716. name: "Front",
  27717. image: {
  27718. source: "./media/characters/holly-rabbit/front.svg",
  27719. extra: 1433 / 1233,
  27720. bottom: 125 / 1558
  27721. }
  27722. },
  27723. dick: {
  27724. height: math.unit(4.6, "feet"),
  27725. name: "Dick",
  27726. image: {
  27727. source: "./media/characters/holly-rabbit/dick.svg"
  27728. }
  27729. },
  27730. },
  27731. [
  27732. {
  27733. name: "Normal",
  27734. height: math.unit(15, "feet"),
  27735. default: true
  27736. },
  27737. {
  27738. name: "Macro",
  27739. height: math.unit(250, "feet")
  27740. },
  27741. {
  27742. name: "Macro+",
  27743. height: math.unit(2500, "feet")
  27744. },
  27745. ]
  27746. ))
  27747. characterMakers.push(() => makeCharacter(
  27748. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27749. {
  27750. front: {
  27751. height: math.unit(3.02, "meters"),
  27752. weight: math.unit(500, "kg"),
  27753. name: "Front",
  27754. image: {
  27755. source: "./media/characters/drena/front.svg",
  27756. extra: 282 / 243,
  27757. bottom: 8 / 290
  27758. }
  27759. },
  27760. side: {
  27761. height: math.unit(3.02, "meters"),
  27762. weight: math.unit(500, "kg"),
  27763. name: "Side",
  27764. image: {
  27765. source: "./media/characters/drena/side.svg",
  27766. extra: 280 / 245,
  27767. bottom: 10 / 290
  27768. }
  27769. },
  27770. back: {
  27771. height: math.unit(3.02, "meters"),
  27772. weight: math.unit(500, "kg"),
  27773. name: "Back",
  27774. image: {
  27775. source: "./media/characters/drena/back.svg",
  27776. extra: 278 / 243,
  27777. bottom: 2 / 280
  27778. }
  27779. },
  27780. foot: {
  27781. height: math.unit(0.75, "meters"),
  27782. name: "Foot",
  27783. image: {
  27784. source: "./media/characters/drena/foot.svg"
  27785. }
  27786. },
  27787. maw: {
  27788. height: math.unit(0.82, "meters"),
  27789. name: "Maw",
  27790. image: {
  27791. source: "./media/characters/drena/maw.svg"
  27792. }
  27793. },
  27794. rump: {
  27795. height: math.unit(0.93, "meters"),
  27796. name: "Rump",
  27797. image: {
  27798. source: "./media/characters/drena/rump.svg"
  27799. }
  27800. },
  27801. },
  27802. [
  27803. {
  27804. name: "Normal",
  27805. height: math.unit(3.02, "meters"),
  27806. default: true
  27807. },
  27808. ]
  27809. ))
  27810. characterMakers.push(() => makeCharacter(
  27811. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27812. {
  27813. front: {
  27814. height: math.unit(6 + 4 / 12, "feet"),
  27815. weight: math.unit(250, "lb"),
  27816. name: "Front",
  27817. image: {
  27818. source: "./media/characters/remmyzilla/front.svg",
  27819. extra: 4033 / 3588,
  27820. bottom: 123 / 4156
  27821. }
  27822. },
  27823. back: {
  27824. height: math.unit(6 + 4 / 12, "feet"),
  27825. weight: math.unit(250, "lb"),
  27826. name: "Back",
  27827. image: {
  27828. source: "./media/characters/remmyzilla/back.svg",
  27829. extra: 2687 / 2555,
  27830. bottom: 48 / 2735
  27831. }
  27832. },
  27833. frontFancy: {
  27834. height: math.unit(6 + 4 / 12, "feet"),
  27835. weight: math.unit(250, "lb"),
  27836. name: "Front (Fancy)",
  27837. image: {
  27838. source: "./media/characters/remmyzilla/front-fancy.svg",
  27839. extra: 4119 / 3419,
  27840. bottom: 237 / 4356
  27841. }
  27842. },
  27843. paw: {
  27844. height: math.unit(1.73, "feet"),
  27845. name: "Paw",
  27846. image: {
  27847. source: "./media/characters/remmyzilla/paw.svg"
  27848. }
  27849. },
  27850. maw: {
  27851. height: math.unit(1.73, "feet"),
  27852. name: "Maw",
  27853. image: {
  27854. source: "./media/characters/remmyzilla/maw.svg"
  27855. }
  27856. },
  27857. },
  27858. [
  27859. {
  27860. name: "Normal",
  27861. height: math.unit(6 + 4 / 12, "feet")
  27862. },
  27863. {
  27864. name: "Minimacro",
  27865. height: math.unit(12 + 8 / 12, "feet")
  27866. },
  27867. {
  27868. name: "Normal",
  27869. height: math.unit(640, "feet"),
  27870. default: true
  27871. },
  27872. {
  27873. name: "Megamacro",
  27874. height: math.unit(6400, "feet")
  27875. },
  27876. {
  27877. name: "Gigamacro",
  27878. height: math.unit(64000, "miles")
  27879. },
  27880. ]
  27881. ))
  27882. characterMakers.push(() => makeCharacter(
  27883. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27884. {
  27885. front: {
  27886. height: math.unit(2.5, "meters"),
  27887. weight: math.unit(300, "lb"),
  27888. name: "Front",
  27889. image: {
  27890. source: "./media/characters/lawrence/front.svg",
  27891. extra: 357 / 335,
  27892. bottom: 30 / 387
  27893. }
  27894. },
  27895. back: {
  27896. height: math.unit(2.5, "meters"),
  27897. weight: math.unit(300, "lb"),
  27898. name: "Back",
  27899. image: {
  27900. source: "./media/characters/lawrence/back.svg",
  27901. extra: 357 / 338,
  27902. bottom: 16 / 373
  27903. }
  27904. },
  27905. head: {
  27906. height: math.unit(0.9, "meter"),
  27907. name: "Head",
  27908. image: {
  27909. source: "./media/characters/lawrence/head.svg"
  27910. }
  27911. },
  27912. maw: {
  27913. height: math.unit(0.7, "meter"),
  27914. name: "Maw",
  27915. image: {
  27916. source: "./media/characters/lawrence/maw.svg"
  27917. }
  27918. },
  27919. footBottom: {
  27920. height: math.unit(0.5, "meter"),
  27921. name: "Foot (Bottom)",
  27922. image: {
  27923. source: "./media/characters/lawrence/foot-bottom.svg"
  27924. }
  27925. },
  27926. footTop: {
  27927. height: math.unit(0.5, "meter"),
  27928. name: "Foot (Top)",
  27929. image: {
  27930. source: "./media/characters/lawrence/foot-top.svg"
  27931. }
  27932. },
  27933. },
  27934. [
  27935. {
  27936. name: "Normal",
  27937. height: math.unit(2.5, "meters"),
  27938. default: true
  27939. },
  27940. {
  27941. name: "Macro",
  27942. height: math.unit(95, "meters")
  27943. },
  27944. {
  27945. name: "Megamacro",
  27946. height: math.unit(150, "km")
  27947. },
  27948. ]
  27949. ))
  27950. characterMakers.push(() => makeCharacter(
  27951. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27952. {
  27953. front: {
  27954. height: math.unit(4.2, "meters"),
  27955. name: "Front",
  27956. image: {
  27957. source: "./media/characters/sydney/front.svg",
  27958. extra: 1323 / 1277,
  27959. bottom: 111 / 1434
  27960. }
  27961. },
  27962. },
  27963. [
  27964. {
  27965. name: "Normal",
  27966. height: math.unit(4.2, "meters"),
  27967. default: true
  27968. },
  27969. ]
  27970. ))
  27971. characterMakers.push(() => makeCharacter(
  27972. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27973. {
  27974. back: {
  27975. height: math.unit(201, "feet"),
  27976. name: "Back",
  27977. image: {
  27978. source: "./media/characters/jessica/back.svg",
  27979. extra: 273 / 259,
  27980. bottom: 7 / 280
  27981. }
  27982. },
  27983. },
  27984. [
  27985. {
  27986. name: "Normal",
  27987. height: math.unit(201, "feet"),
  27988. default: true
  27989. },
  27990. {
  27991. name: "Megamacro",
  27992. height: math.unit(8, "miles")
  27993. },
  27994. ]
  27995. ))
  27996. characterMakers.push(() => makeCharacter(
  27997. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27998. {
  27999. side: {
  28000. height: math.unit(320, "cm"),
  28001. name: "Side",
  28002. image: {
  28003. source: "./media/characters/victoria/side.svg",
  28004. extra: 778 / 346,
  28005. bottom: 56 / 834
  28006. }
  28007. },
  28008. maw: {
  28009. height: math.unit(5.9, "feet"),
  28010. name: "Maw",
  28011. image: {
  28012. source: "./media/characters/victoria/maw.svg"
  28013. }
  28014. },
  28015. },
  28016. [
  28017. {
  28018. name: "Normal",
  28019. height: math.unit(320, "cm"),
  28020. default: true
  28021. },
  28022. ]
  28023. ))
  28024. characterMakers.push(() => makeCharacter(
  28025. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28026. {
  28027. front: {
  28028. height: math.unit(5 + 6 / 12, "feet"),
  28029. name: "Front",
  28030. image: {
  28031. source: "./media/characters/cat/front.svg",
  28032. extra: 1374 / 1257,
  28033. bottom: 59 / 1433
  28034. }
  28035. },
  28036. back: {
  28037. height: math.unit(5 + 6 / 12, "feet"),
  28038. name: "Back",
  28039. image: {
  28040. source: "./media/characters/cat/back.svg",
  28041. extra: 1337 / 1226,
  28042. bottom: 34 / 1371
  28043. }
  28044. },
  28045. taur: {
  28046. height: math.unit(7, "feet"),
  28047. name: "Taur",
  28048. image: {
  28049. source: "./media/characters/cat/taur.svg",
  28050. extra: 1345 / 1231,
  28051. bottom: 66 / 1411
  28052. }
  28053. },
  28054. lucario: {
  28055. height: math.unit(4, "feet"),
  28056. name: "Lucario",
  28057. image: {
  28058. source: "./media/characters/cat/lucario.svg",
  28059. extra: 1470 / 1318,
  28060. bottom: 65 / 1535
  28061. }
  28062. },
  28063. megaLucario: {
  28064. height: math.unit(4, "feet"),
  28065. name: "Mega Lucario",
  28066. image: {
  28067. source: "./media/characters/cat/mega-lucario.svg",
  28068. extra: 1515 / 1319,
  28069. bottom: 63 / 1578
  28070. }
  28071. },
  28072. nickit: {
  28073. height: math.unit(2, "feet"),
  28074. name: "Nickit",
  28075. image: {
  28076. source: "./media/characters/cat/nickit.svg",
  28077. extra: 1980 / 1585,
  28078. bottom: 102 / 2082
  28079. }
  28080. },
  28081. lopunnyFront: {
  28082. height: math.unit(5, "feet"),
  28083. name: "Lopunny (Front)",
  28084. image: {
  28085. source: "./media/characters/cat/lopunny-front.svg",
  28086. extra: 1782 / 1469,
  28087. bottom: 38 / 1820
  28088. }
  28089. },
  28090. lopunnyBack: {
  28091. height: math.unit(5, "feet"),
  28092. name: "Lopunny (Back)",
  28093. image: {
  28094. source: "./media/characters/cat/lopunny-back.svg",
  28095. extra: 1660 / 1490,
  28096. bottom: 25 / 1685
  28097. }
  28098. },
  28099. },
  28100. [
  28101. {
  28102. name: "Really small",
  28103. height: math.unit(1, "nm")
  28104. },
  28105. {
  28106. name: "Micro",
  28107. height: math.unit(5, "inches")
  28108. },
  28109. {
  28110. name: "Normal",
  28111. height: math.unit(5 + 6 / 12, "feet"),
  28112. default: true
  28113. },
  28114. {
  28115. name: "Macro",
  28116. height: math.unit(50, "feet")
  28117. },
  28118. {
  28119. name: "Macro+",
  28120. height: math.unit(150, "feet")
  28121. },
  28122. {
  28123. name: "Megamacro",
  28124. height: math.unit(100, "miles")
  28125. },
  28126. ]
  28127. ))
  28128. characterMakers.push(() => makeCharacter(
  28129. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28130. {
  28131. front: {
  28132. height: math.unit(63.4, "meters"),
  28133. weight: math.unit(3.28349e+6, "kilograms"),
  28134. name: "Front",
  28135. image: {
  28136. source: "./media/characters/kirina-violet/front.svg",
  28137. extra: 2812 / 2725,
  28138. bottom: 0 / 2812
  28139. }
  28140. },
  28141. back: {
  28142. height: math.unit(63.4, "meters"),
  28143. weight: math.unit(3.28349e+6, "kilograms"),
  28144. name: "Back",
  28145. image: {
  28146. source: "./media/characters/kirina-violet/back.svg",
  28147. extra: 2812 / 2725,
  28148. bottom: 0 / 2812
  28149. }
  28150. },
  28151. mouth: {
  28152. height: math.unit(4.35, "meters"),
  28153. name: "Mouth",
  28154. image: {
  28155. source: "./media/characters/kirina-violet/mouth.svg"
  28156. }
  28157. },
  28158. paw: {
  28159. height: math.unit(5.6, "meters"),
  28160. name: "Paw",
  28161. image: {
  28162. source: "./media/characters/kirina-violet/paw.svg"
  28163. }
  28164. },
  28165. tail: {
  28166. height: math.unit(18, "meters"),
  28167. name: "Tail",
  28168. image: {
  28169. source: "./media/characters/kirina-violet/tail.svg"
  28170. }
  28171. },
  28172. },
  28173. [
  28174. {
  28175. name: "Macro",
  28176. height: math.unit(63.4, "meters"),
  28177. default: true
  28178. },
  28179. ]
  28180. ))
  28181. characterMakers.push(() => makeCharacter(
  28182. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28183. {
  28184. front: {
  28185. height: math.unit(60, "feet"),
  28186. name: "Front",
  28187. image: {
  28188. source: "./media/characters/cat-gigachu/front.svg",
  28189. extra: 1024 / 780,
  28190. bottom: 23 / 1047
  28191. }
  28192. },
  28193. back: {
  28194. height: math.unit(60, "feet"),
  28195. name: "Back",
  28196. image: {
  28197. source: "./media/characters/cat-gigachu/back.svg",
  28198. extra: 1024 / 780,
  28199. bottom: 23 / 1047
  28200. }
  28201. },
  28202. },
  28203. [
  28204. {
  28205. name: "Dynamax",
  28206. height: math.unit(60, "feet"),
  28207. default: true
  28208. },
  28209. ]
  28210. ))
  28211. characterMakers.push(() => makeCharacter(
  28212. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28213. {
  28214. front: {
  28215. height: math.unit(6, "feet"),
  28216. weight: math.unit(150, "lb"),
  28217. name: "Front",
  28218. image: {
  28219. source: "./media/characters/sfaiyan/front.svg",
  28220. extra: 999 / 978,
  28221. bottom: 5 / 1004
  28222. }
  28223. },
  28224. },
  28225. [
  28226. {
  28227. name: "Normal",
  28228. height: math.unit(1.82, "meters")
  28229. },
  28230. {
  28231. name: "Giant",
  28232. height: math.unit(2.27, "km"),
  28233. default: true
  28234. },
  28235. ]
  28236. ))
  28237. characterMakers.push(() => makeCharacter(
  28238. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28239. {
  28240. front: {
  28241. height: math.unit(179, "cm"),
  28242. weight: math.unit(100, "kg"),
  28243. name: "Front",
  28244. image: {
  28245. source: "./media/characters/raunehkeli/front.svg",
  28246. extra: 1934 / 1926,
  28247. bottom: 0 / 1934
  28248. }
  28249. },
  28250. },
  28251. [
  28252. {
  28253. name: "Normal",
  28254. height: math.unit(179, "cm")
  28255. },
  28256. {
  28257. name: "Maximum",
  28258. height: math.unit(575, "meters"),
  28259. default: true
  28260. },
  28261. ]
  28262. ))
  28263. characterMakers.push(() => makeCharacter(
  28264. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28265. {
  28266. front: {
  28267. height: math.unit(6, "feet"),
  28268. weight: math.unit(150, "lb"),
  28269. name: "Front",
  28270. image: {
  28271. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28272. extra: 2625 / 2518,
  28273. bottom: 60 / 2685
  28274. }
  28275. },
  28276. },
  28277. [
  28278. {
  28279. name: "Normal",
  28280. height: math.unit(6 + 2 / 12, "feet"),
  28281. default: true
  28282. },
  28283. {
  28284. name: "Macro",
  28285. height: math.unit(1180, "feet")
  28286. },
  28287. ]
  28288. ))
  28289. characterMakers.push(() => makeCharacter(
  28290. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28291. {
  28292. front: {
  28293. height: math.unit(5 + 6 / 12, "feet"),
  28294. weight: math.unit(108, "lb"),
  28295. name: "Front",
  28296. image: {
  28297. source: "./media/characters/lilith-zott/front.svg",
  28298. extra: 2510 / 2238,
  28299. bottom: 100 / 2610
  28300. }
  28301. },
  28302. frontDressed: {
  28303. height: math.unit(5 + 6 / 12, "feet"),
  28304. weight: math.unit(108, "lb"),
  28305. name: "Front (Dressed)",
  28306. image: {
  28307. source: "./media/characters/lilith-zott/front-dressed.svg",
  28308. extra: 2510 / 2238,
  28309. bottom: 100 / 2610
  28310. }
  28311. },
  28312. },
  28313. [
  28314. {
  28315. name: "Normal",
  28316. height: math.unit(5 + 6 / 12, "feet")
  28317. },
  28318. {
  28319. name: "Macro",
  28320. height: math.unit(200, "feet"),
  28321. default: true
  28322. },
  28323. {
  28324. name: "Macro+",
  28325. height: math.unit(1030, "feet")
  28326. },
  28327. ]
  28328. ))
  28329. characterMakers.push(() => makeCharacter(
  28330. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28331. {
  28332. front: {
  28333. height: math.unit(6, "feet"),
  28334. weight: math.unit(150, "lb"),
  28335. name: "Front",
  28336. image: {
  28337. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28338. extra: 2567 / 2435,
  28339. bottom: 39 / 2606
  28340. }
  28341. },
  28342. frontSuper: {
  28343. height: math.unit(6, "feet"),
  28344. name: "Front (Super)",
  28345. image: {
  28346. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28347. extra: 2567 / 2435,
  28348. bottom: 39 / 2606
  28349. }
  28350. },
  28351. },
  28352. [
  28353. {
  28354. name: "Normal",
  28355. height: math.unit(5 + 10 / 12, "feet")
  28356. },
  28357. {
  28358. name: "Macro",
  28359. height: math.unit(220, "feet"),
  28360. default: true
  28361. },
  28362. {
  28363. name: "Macro+",
  28364. height: math.unit(1100, "feet")
  28365. },
  28366. ]
  28367. ))
  28368. characterMakers.push(() => makeCharacter(
  28369. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28370. {
  28371. front: {
  28372. height: math.unit(100, "miles"),
  28373. name: "Front",
  28374. image: {
  28375. source: "./media/characters/sona/front.svg",
  28376. extra: 2433 / 2201,
  28377. bottom: 53 / 2486
  28378. }
  28379. },
  28380. foot: {
  28381. height: math.unit(16.1, "miles"),
  28382. name: "Foot",
  28383. image: {
  28384. source: "./media/characters/sona/foot.svg"
  28385. }
  28386. },
  28387. },
  28388. [
  28389. {
  28390. name: "Macro",
  28391. height: math.unit(100, "miles"),
  28392. default: true
  28393. },
  28394. ]
  28395. ))
  28396. characterMakers.push(() => makeCharacter(
  28397. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28398. {
  28399. front: {
  28400. height: math.unit(6, "feet"),
  28401. weight: math.unit(150, "lb"),
  28402. name: "Front",
  28403. image: {
  28404. source: "./media/characters/bailey/front.svg",
  28405. extra: 1778 / 1724,
  28406. bottom: 30 / 1808
  28407. }
  28408. },
  28409. },
  28410. [
  28411. {
  28412. name: "Micro",
  28413. height: math.unit(4, "inches")
  28414. },
  28415. {
  28416. name: "Normal",
  28417. height: math.unit(5 + 5 / 12, "feet"),
  28418. default: true
  28419. },
  28420. {
  28421. name: "Macro",
  28422. height: math.unit(250, "feet")
  28423. },
  28424. {
  28425. name: "Megamacro",
  28426. height: math.unit(100, "miles")
  28427. },
  28428. ]
  28429. ))
  28430. characterMakers.push(() => makeCharacter(
  28431. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28432. {
  28433. front: {
  28434. height: math.unit(5 + 2 / 12, "feet"),
  28435. weight: math.unit(120, "lb"),
  28436. name: "Front",
  28437. image: {
  28438. source: "./media/characters/snaps/front.svg",
  28439. extra: 2370 / 2177,
  28440. bottom: 48 / 2418
  28441. }
  28442. },
  28443. back: {
  28444. height: math.unit(5 + 2 / 12, "feet"),
  28445. weight: math.unit(120, "lb"),
  28446. name: "Back",
  28447. image: {
  28448. source: "./media/characters/snaps/back.svg",
  28449. extra: 2408 / 2258,
  28450. bottom: 15 / 2423
  28451. }
  28452. },
  28453. },
  28454. [
  28455. {
  28456. name: "Micro",
  28457. height: math.unit(9, "inches")
  28458. },
  28459. {
  28460. name: "Normal",
  28461. height: math.unit(5 + 2 / 12, "feet"),
  28462. default: true
  28463. },
  28464. {
  28465. name: "Mini Macro",
  28466. height: math.unit(10, "feet")
  28467. },
  28468. ]
  28469. ))
  28470. characterMakers.push(() => makeCharacter(
  28471. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28472. {
  28473. front: {
  28474. height: math.unit(1.8, "meters"),
  28475. weight: math.unit(85, "kg"),
  28476. name: "Front",
  28477. image: {
  28478. source: "./media/characters/azteck/front.svg",
  28479. extra: 2815 / 2625,
  28480. bottom: 89 / 2904
  28481. }
  28482. },
  28483. back: {
  28484. height: math.unit(1.8, "meters"),
  28485. weight: math.unit(85, "kg"),
  28486. name: "Back",
  28487. image: {
  28488. source: "./media/characters/azteck/back.svg",
  28489. extra: 2856 / 2648,
  28490. bottom: 85 / 2941
  28491. }
  28492. },
  28493. frontDressed: {
  28494. height: math.unit(1.8, "meters"),
  28495. weight: math.unit(85, "kg"),
  28496. name: "Front (Dressed)",
  28497. image: {
  28498. source: "./media/characters/azteck/front-dressed.svg",
  28499. extra: 2147 / 2003,
  28500. bottom: 68 / 2215
  28501. }
  28502. },
  28503. head: {
  28504. height: math.unit(0.47, "meters"),
  28505. weight: math.unit(85, "kg"),
  28506. name: "Head",
  28507. image: {
  28508. source: "./media/characters/azteck/head.svg"
  28509. }
  28510. },
  28511. },
  28512. [
  28513. {
  28514. name: "Bite sized",
  28515. height: math.unit(16, "cm")
  28516. },
  28517. {
  28518. name: "Normal",
  28519. height: math.unit(1.8, "meters"),
  28520. default: true
  28521. },
  28522. ]
  28523. ))
  28524. characterMakers.push(() => makeCharacter(
  28525. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28526. {
  28527. front: {
  28528. height: math.unit(6, "feet"),
  28529. weight: math.unit(150, "lb"),
  28530. name: "Front",
  28531. image: {
  28532. source: "./media/characters/pidge/front.svg",
  28533. extra: 620 / 588,
  28534. bottom: 9 / 629
  28535. }
  28536. },
  28537. back: {
  28538. height: math.unit(6, "feet"),
  28539. weight: math.unit(150, "lb"),
  28540. name: "Back",
  28541. image: {
  28542. source: "./media/characters/pidge/back.svg",
  28543. extra: 620 / 588,
  28544. bottom: 9 / 629
  28545. }
  28546. },
  28547. },
  28548. [
  28549. {
  28550. name: "Macro",
  28551. height: math.unit(1, "mile"),
  28552. default: true
  28553. },
  28554. ]
  28555. ))
  28556. characterMakers.push(() => makeCharacter(
  28557. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28558. {
  28559. front: {
  28560. height: math.unit(6, "feet"),
  28561. weight: math.unit(150, "lb"),
  28562. name: "Front",
  28563. image: {
  28564. source: "./media/characters/en/front.svg",
  28565. extra: 1697 / 1563,
  28566. bottom: 103 / 1800
  28567. }
  28568. },
  28569. back: {
  28570. height: math.unit(6, "feet"),
  28571. weight: math.unit(150, "lb"),
  28572. name: "Back",
  28573. image: {
  28574. source: "./media/characters/en/back.svg",
  28575. extra: 1700 / 1570,
  28576. bottom: 51 / 1751
  28577. }
  28578. },
  28579. frontDressed: {
  28580. height: math.unit(6, "feet"),
  28581. weight: math.unit(150, "lb"),
  28582. name: "Front (Dressed)",
  28583. image: {
  28584. source: "./media/characters/en/front-dressed.svg",
  28585. extra: 1697 / 1563,
  28586. bottom: 103 / 1800
  28587. }
  28588. },
  28589. backDressed: {
  28590. height: math.unit(6, "feet"),
  28591. weight: math.unit(150, "lb"),
  28592. name: "Back (Dressed)",
  28593. image: {
  28594. source: "./media/characters/en/back-dressed.svg",
  28595. extra: 1700 / 1570,
  28596. bottom: 51 / 1751
  28597. }
  28598. },
  28599. },
  28600. [
  28601. {
  28602. name: "Macro",
  28603. height: math.unit(210, "feet"),
  28604. default: true
  28605. },
  28606. ]
  28607. ))
  28608. characterMakers.push(() => makeCharacter(
  28609. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28610. {
  28611. front: {
  28612. height: math.unit(6, "feet"),
  28613. weight: math.unit(150, "lb"),
  28614. name: "Front",
  28615. image: {
  28616. source: "./media/characters/haze-orris/front.svg",
  28617. extra: 3975 / 3525,
  28618. bottom: 137 / 4112
  28619. }
  28620. },
  28621. },
  28622. [
  28623. {
  28624. name: "Micro",
  28625. height: math.unit(150, "mm"),
  28626. default: true
  28627. },
  28628. ]
  28629. ))
  28630. characterMakers.push(() => makeCharacter(
  28631. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28632. {
  28633. front: {
  28634. height: math.unit(6, "feet"),
  28635. weight: math.unit(150, "lb"),
  28636. name: "Front",
  28637. image: {
  28638. source: "./media/characters/casselene-yaro/front.svg",
  28639. extra: 4721 / 4541,
  28640. bottom: 82 / 4803
  28641. }
  28642. },
  28643. back: {
  28644. height: math.unit(6, "feet"),
  28645. weight: math.unit(150, "lb"),
  28646. name: "Back",
  28647. image: {
  28648. source: "./media/characters/casselene-yaro/back.svg",
  28649. extra: 4569 / 4377,
  28650. bottom: 69 / 4638
  28651. }
  28652. },
  28653. frontDressed: {
  28654. height: math.unit(6, "feet"),
  28655. weight: math.unit(150, "lb"),
  28656. name: "Front-dressed",
  28657. image: {
  28658. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28659. extra: 4721 / 4541,
  28660. bottom: 82 / 4803
  28661. }
  28662. },
  28663. },
  28664. [
  28665. {
  28666. name: "Macro",
  28667. height: math.unit(190, "feet"),
  28668. default: true
  28669. },
  28670. ]
  28671. ))
  28672. characterMakers.push(() => makeCharacter(
  28673. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28674. {
  28675. front: {
  28676. height: math.unit(6, "feet"),
  28677. weight: math.unit(150, "lb"),
  28678. name: "Front",
  28679. image: {
  28680. source: "./media/characters/myra-rue-delore/front.svg",
  28681. extra: 1340 / 1308,
  28682. bottom: 67 / 1407
  28683. }
  28684. },
  28685. back: {
  28686. height: math.unit(6, "feet"),
  28687. weight: math.unit(150, "lb"),
  28688. name: "Back",
  28689. image: {
  28690. source: "./media/characters/myra-rue-delore/back.svg",
  28691. extra: 1341 / 1310,
  28692. bottom: 40 / 1381
  28693. }
  28694. },
  28695. frontDressed: {
  28696. height: math.unit(6, "feet"),
  28697. weight: math.unit(150, "lb"),
  28698. name: "Front (Dressed)",
  28699. image: {
  28700. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28701. extra: 1340 / 1308,
  28702. bottom: 67 / 1407
  28703. }
  28704. },
  28705. },
  28706. [
  28707. {
  28708. name: "Macro",
  28709. height: math.unit(150, "feet"),
  28710. default: true
  28711. },
  28712. ]
  28713. ))
  28714. characterMakers.push(() => makeCharacter(
  28715. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28716. {
  28717. front: {
  28718. height: math.unit(10, "feet"),
  28719. weight: math.unit(15015, "lb"),
  28720. name: "Front",
  28721. image: {
  28722. source: "./media/characters/fem!plat/front.svg",
  28723. extra: 2799 / 2604,
  28724. bottom: 149 / 2948
  28725. }
  28726. },
  28727. },
  28728. [
  28729. {
  28730. name: "Normal",
  28731. height: math.unit(10, "feet"),
  28732. default: true
  28733. },
  28734. {
  28735. name: "Macro",
  28736. height: math.unit(100, "feet")
  28737. },
  28738. {
  28739. name: "Megamacro",
  28740. height: math.unit(1000, "feet")
  28741. },
  28742. ]
  28743. ))
  28744. characterMakers.push(() => makeCharacter(
  28745. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28746. {
  28747. front: {
  28748. height: math.unit(15 + 5 / 12, "feet"),
  28749. weight: math.unit(4600, "lb"),
  28750. name: "Front",
  28751. image: {
  28752. source: "./media/characters/neapolitan-ananassa/front.svg",
  28753. extra: 2903 / 2736,
  28754. bottom: 0 / 2903
  28755. }
  28756. },
  28757. side: {
  28758. height: math.unit(15 + 5 / 12, "feet"),
  28759. weight: math.unit(4600, "lb"),
  28760. name: "Side",
  28761. image: {
  28762. source: "./media/characters/neapolitan-ananassa/side.svg",
  28763. extra: 2925 / 2719,
  28764. bottom: 0 / 2925
  28765. }
  28766. },
  28767. back: {
  28768. height: math.unit(15 + 5 / 12, "feet"),
  28769. weight: math.unit(4600, "lb"),
  28770. name: "Back",
  28771. image: {
  28772. source: "./media/characters/neapolitan-ananassa/back.svg",
  28773. extra: 2903 / 2736,
  28774. bottom: 0 / 2903
  28775. }
  28776. },
  28777. },
  28778. [
  28779. {
  28780. name: "Normal",
  28781. height: math.unit(15 + 5 / 12, "feet"),
  28782. default: true
  28783. },
  28784. {
  28785. name: "Post-Millenium",
  28786. height: math.unit(35 + 5 / 12, "feet")
  28787. },
  28788. {
  28789. name: "Post-Era",
  28790. height: math.unit(450 + 5 / 12, "feet")
  28791. },
  28792. ]
  28793. ))
  28794. characterMakers.push(() => makeCharacter(
  28795. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28796. {
  28797. front: {
  28798. height: math.unit(300, "meters"),
  28799. weight: math.unit(125000, "tonnes"),
  28800. name: "Front",
  28801. image: {
  28802. source: "./media/characters/pazuzu/front.svg",
  28803. extra: 877 / 794,
  28804. bottom: 47 / 924
  28805. }
  28806. },
  28807. },
  28808. [
  28809. {
  28810. name: "Macro",
  28811. height: math.unit(300, "meters"),
  28812. default: true
  28813. },
  28814. ]
  28815. ))
  28816. characterMakers.push(() => makeCharacter(
  28817. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28818. {
  28819. side: {
  28820. height: math.unit(10 + 7 / 12, "feet"),
  28821. weight: math.unit(2.5, "tons"),
  28822. name: "Side",
  28823. image: {
  28824. source: "./media/characters/aasha/side.svg",
  28825. extra: 1345 / 1245,
  28826. bottom: 111 / 1456
  28827. }
  28828. },
  28829. back: {
  28830. height: math.unit(10 + 7 / 12, "feet"),
  28831. weight: math.unit(2.5, "tons"),
  28832. name: "Back",
  28833. image: {
  28834. source: "./media/characters/aasha/back.svg",
  28835. extra: 1133 / 1057,
  28836. bottom: 257 / 1390
  28837. }
  28838. },
  28839. },
  28840. [
  28841. {
  28842. name: "Normal",
  28843. height: math.unit(10 + 7 / 12, "feet"),
  28844. default: true
  28845. },
  28846. ]
  28847. ))
  28848. characterMakers.push(() => makeCharacter(
  28849. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28850. {
  28851. front: {
  28852. height: math.unit(6 + 3 / 12, "feet"),
  28853. name: "Front",
  28854. image: {
  28855. source: "./media/characters/nevan/front.svg",
  28856. extra: 704 / 704,
  28857. bottom: 28 / 732
  28858. }
  28859. },
  28860. back: {
  28861. height: math.unit(6 + 3 / 12, "feet"),
  28862. name: "Back",
  28863. image: {
  28864. source: "./media/characters/nevan/back.svg",
  28865. extra: 714 / 714,
  28866. bottom: 21 / 735
  28867. }
  28868. },
  28869. frontFlaccid: {
  28870. height: math.unit(6 + 3 / 12, "feet"),
  28871. name: "Front (Flaccid)",
  28872. image: {
  28873. source: "./media/characters/nevan/front-flaccid.svg",
  28874. extra: 704 / 704,
  28875. bottom: 28 / 732
  28876. }
  28877. },
  28878. frontErect: {
  28879. height: math.unit(6 + 3 / 12, "feet"),
  28880. name: "Front (Erect)",
  28881. image: {
  28882. source: "./media/characters/nevan/front-erect.svg",
  28883. extra: 704 / 704,
  28884. bottom: 28 / 732
  28885. }
  28886. },
  28887. backFlaccid: {
  28888. height: math.unit(6 + 3 / 12, "feet"),
  28889. name: "Back (Flaccid)",
  28890. image: {
  28891. source: "./media/characters/nevan/back-flaccid.svg",
  28892. extra: 714 / 714,
  28893. bottom: 21 / 735
  28894. }
  28895. },
  28896. },
  28897. [
  28898. {
  28899. name: "Normal",
  28900. height: math.unit(6 + 3 / 12, "feet"),
  28901. default: true
  28902. },
  28903. ]
  28904. ))
  28905. characterMakers.push(() => makeCharacter(
  28906. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28907. {
  28908. front: {
  28909. height: math.unit(4, "feet"),
  28910. name: "Front",
  28911. image: {
  28912. source: "./media/characters/arhan/front.svg",
  28913. extra: 3368 / 3133,
  28914. bottom: 0 / 3368
  28915. }
  28916. },
  28917. side: {
  28918. height: math.unit(4, "feet"),
  28919. name: "Side",
  28920. image: {
  28921. source: "./media/characters/arhan/side.svg",
  28922. extra: 3347 / 3105,
  28923. bottom: 0 / 3347
  28924. }
  28925. },
  28926. tongue: {
  28927. height: math.unit(1.42, "feet"),
  28928. name: "Tongue",
  28929. image: {
  28930. source: "./media/characters/arhan/tongue.svg"
  28931. }
  28932. },
  28933. head: {
  28934. height: math.unit(0.85, "feet"),
  28935. name: "Head",
  28936. image: {
  28937. source: "./media/characters/arhan/head.svg"
  28938. }
  28939. },
  28940. },
  28941. [
  28942. {
  28943. name: "Normal",
  28944. height: math.unit(4, "feet"),
  28945. default: true
  28946. },
  28947. ]
  28948. ))
  28949. characterMakers.push(() => makeCharacter(
  28950. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28951. {
  28952. front: {
  28953. height: math.unit(5 + 7.5 / 12, "feet"),
  28954. weight: math.unit(120, "lb"),
  28955. name: "Front",
  28956. image: {
  28957. source: "./media/characters/digi-duncan/front.svg",
  28958. extra: 330 / 326,
  28959. bottom: 16 / 346
  28960. }
  28961. },
  28962. side: {
  28963. height: math.unit(5 + 7.5 / 12, "feet"),
  28964. weight: math.unit(120, "lb"),
  28965. name: "Side",
  28966. image: {
  28967. source: "./media/characters/digi-duncan/side.svg",
  28968. extra: 341 / 337,
  28969. bottom: 1 / 342
  28970. }
  28971. },
  28972. back: {
  28973. height: math.unit(5 + 7.5 / 12, "feet"),
  28974. weight: math.unit(120, "lb"),
  28975. name: "Back",
  28976. image: {
  28977. source: "./media/characters/digi-duncan/back.svg",
  28978. extra: 330 / 326,
  28979. bottom: 12 / 342
  28980. }
  28981. },
  28982. },
  28983. [
  28984. {
  28985. name: "Speck",
  28986. height: math.unit(0.25, "mm")
  28987. },
  28988. {
  28989. name: "Micro",
  28990. height: math.unit(5, "mm")
  28991. },
  28992. {
  28993. name: "Tiny",
  28994. height: math.unit(0.5, "inches"),
  28995. default: true
  28996. },
  28997. {
  28998. name: "Human",
  28999. height: math.unit(5 + 7.5 / 12, "feet")
  29000. },
  29001. {
  29002. name: "Minigiant",
  29003. height: math.unit(8 + 5.25, "feet")
  29004. },
  29005. {
  29006. name: "Giant",
  29007. height: math.unit(2000, "feet")
  29008. },
  29009. {
  29010. name: "Mega",
  29011. height: math.unit(371.1, "miles")
  29012. },
  29013. ]
  29014. ))
  29015. characterMakers.push(() => makeCharacter(
  29016. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29017. {
  29018. front: {
  29019. height: math.unit(2, "meters"),
  29020. weight: math.unit(350, "kg"),
  29021. name: "Front",
  29022. image: {
  29023. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29024. extra: 898 / 838,
  29025. bottom: 9 / 907
  29026. }
  29027. },
  29028. },
  29029. [
  29030. {
  29031. name: "Micro",
  29032. height: math.unit(8, "meters")
  29033. },
  29034. {
  29035. name: "Normal",
  29036. height: math.unit(50, "meters"),
  29037. default: true
  29038. },
  29039. {
  29040. name: "Macro",
  29041. height: math.unit(500, "meters")
  29042. },
  29043. ]
  29044. ))
  29045. characterMakers.push(() => makeCharacter(
  29046. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29047. {
  29048. front: {
  29049. height: math.unit(6 + 6 / 12, "feet"),
  29050. name: "Front",
  29051. image: {
  29052. source: "./media/characters/khardesh/front.svg",
  29053. extra: 888 / 797,
  29054. bottom: 25 / 913
  29055. }
  29056. },
  29057. },
  29058. [
  29059. {
  29060. name: "Normal",
  29061. height: math.unit(6 + 6 / 12, "feet"),
  29062. default: true
  29063. },
  29064. {
  29065. name: "Normal+",
  29066. height: math.unit(4, "meters")
  29067. },
  29068. {
  29069. name: "Macro",
  29070. height: math.unit(50, "meters")
  29071. },
  29072. {
  29073. name: "Macro+",
  29074. height: math.unit(100, "meters")
  29075. },
  29076. {
  29077. name: "Megamacro",
  29078. height: math.unit(20, "km")
  29079. },
  29080. ]
  29081. ))
  29082. characterMakers.push(() => makeCharacter(
  29083. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29084. {
  29085. front: {
  29086. height: math.unit(6, "feet"),
  29087. weight: math.unit(150, "lb"),
  29088. name: "Front",
  29089. image: {
  29090. source: "./media/characters/kosho/front.svg",
  29091. extra: 1847 / 1847,
  29092. bottom: 86 / 1933
  29093. }
  29094. },
  29095. },
  29096. [
  29097. {
  29098. name: "Second-stage micro",
  29099. height: math.unit(0.5, "inches")
  29100. },
  29101. {
  29102. name: "First-stage micro",
  29103. height: math.unit(6, "inches")
  29104. },
  29105. {
  29106. name: "Normal",
  29107. height: math.unit(6, "feet"),
  29108. default: true
  29109. },
  29110. {
  29111. name: "First-stage macro",
  29112. height: math.unit(72, "feet")
  29113. },
  29114. {
  29115. name: "Second-stage macro",
  29116. height: math.unit(864, "feet")
  29117. },
  29118. ]
  29119. ))
  29120. characterMakers.push(() => makeCharacter(
  29121. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29122. {
  29123. normal: {
  29124. height: math.unit(4 + 6 / 12, "feet"),
  29125. name: "Normal",
  29126. image: {
  29127. source: "./media/characters/hydra/normal.svg",
  29128. extra: 2833 / 2634,
  29129. bottom: 68 / 2901
  29130. }
  29131. },
  29132. smol: {
  29133. height: math.unit(0.705, "inches"),
  29134. name: "Smol",
  29135. image: {
  29136. source: "./media/characters/hydra/smol.svg",
  29137. extra: 2715 / 2540,
  29138. bottom: 0 / 2715
  29139. }
  29140. },
  29141. },
  29142. [
  29143. {
  29144. name: "Normal",
  29145. height: math.unit(4 + 6 / 12, "feet"),
  29146. default: true
  29147. }
  29148. ]
  29149. ))
  29150. characterMakers.push(() => makeCharacter(
  29151. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29152. {
  29153. front: {
  29154. height: math.unit(0.6, "cm"),
  29155. name: "Front",
  29156. image: {
  29157. source: "./media/characters/daz/front.svg",
  29158. extra: 1682 / 1164,
  29159. bottom: 42 / 1724
  29160. }
  29161. },
  29162. },
  29163. [
  29164. {
  29165. name: "Normal",
  29166. height: math.unit(0.6, "cm"),
  29167. default: true
  29168. },
  29169. ]
  29170. ))
  29171. characterMakers.push(() => makeCharacter(
  29172. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29173. {
  29174. front: {
  29175. height: math.unit(6, "feet"),
  29176. weight: math.unit(235, "lb"),
  29177. name: "Front",
  29178. image: {
  29179. source: "./media/characters/theo-pangolin/front.svg",
  29180. extra: 1996 / 1969,
  29181. bottom: 115 / 2111
  29182. }
  29183. },
  29184. back: {
  29185. height: math.unit(6, "feet"),
  29186. weight: math.unit(235, "lb"),
  29187. name: "Back",
  29188. image: {
  29189. source: "./media/characters/theo-pangolin/back.svg",
  29190. extra: 1979 / 1979,
  29191. bottom: 40 / 2019
  29192. }
  29193. },
  29194. feral: {
  29195. height: math.unit(2, "feet"),
  29196. weight: math.unit(30, "lb"),
  29197. name: "Feral",
  29198. image: {
  29199. source: "./media/characters/theo-pangolin/feral.svg",
  29200. extra: 803 / 791,
  29201. bottom: 181 / 984
  29202. }
  29203. },
  29204. footFive: {
  29205. height: math.unit(1.43, "feet"),
  29206. name: "Foot (Five Toes)",
  29207. image: {
  29208. source: "./media/characters/theo-pangolin/foot-five.svg"
  29209. }
  29210. },
  29211. footFour: {
  29212. height: math.unit(1.43, "feet"),
  29213. name: "Foot (Four Toes)",
  29214. image: {
  29215. source: "./media/characters/theo-pangolin/foot-four.svg"
  29216. }
  29217. },
  29218. handFour: {
  29219. height: math.unit(0.81, "feet"),
  29220. name: "Hand (Four Fingers)",
  29221. image: {
  29222. source: "./media/characters/theo-pangolin/hand-four.svg"
  29223. }
  29224. },
  29225. handThree: {
  29226. height: math.unit(0.81, "feet"),
  29227. name: "Hand (Three Fingers)",
  29228. image: {
  29229. source: "./media/characters/theo-pangolin/hand-three.svg"
  29230. }
  29231. },
  29232. headFront: {
  29233. height: math.unit(1.37, "feet"),
  29234. name: "Head (Front)",
  29235. image: {
  29236. source: "./media/characters/theo-pangolin/head-front.svg"
  29237. }
  29238. },
  29239. headSide: {
  29240. height: math.unit(1.43, "feet"),
  29241. name: "Head (Side)",
  29242. image: {
  29243. source: "./media/characters/theo-pangolin/head-side.svg"
  29244. }
  29245. },
  29246. tongue: {
  29247. height: math.unit(2.29, "feet"),
  29248. name: "Tongue",
  29249. image: {
  29250. source: "./media/characters/theo-pangolin/tongue.svg"
  29251. }
  29252. },
  29253. },
  29254. [
  29255. {
  29256. name: "Normal",
  29257. height: math.unit(6, "feet")
  29258. },
  29259. {
  29260. name: "Macro",
  29261. height: math.unit(400, "feet"),
  29262. default: true
  29263. },
  29264. ]
  29265. ))
  29266. characterMakers.push(() => makeCharacter(
  29267. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29268. {
  29269. front: {
  29270. height: math.unit(6, "inches"),
  29271. weight: math.unit(0.036, "kg"),
  29272. name: "Front",
  29273. image: {
  29274. source: "./media/characters/renée/front.svg",
  29275. extra: 900 / 886,
  29276. bottom: 8 / 908
  29277. }
  29278. },
  29279. },
  29280. [
  29281. {
  29282. name: "Nano",
  29283. height: math.unit(1, "nm")
  29284. },
  29285. {
  29286. name: "Micro",
  29287. height: math.unit(1, "mm")
  29288. },
  29289. {
  29290. name: "Normal",
  29291. height: math.unit(6, "inches")
  29292. },
  29293. {
  29294. name: "Macro",
  29295. height: math.unit(2000, "feet"),
  29296. default: true
  29297. },
  29298. {
  29299. name: "Megamacro",
  29300. height: math.unit(2, "km")
  29301. },
  29302. {
  29303. name: "Gigamacro",
  29304. height: math.unit(2000, "km")
  29305. },
  29306. {
  29307. name: "Teramacro",
  29308. height: math.unit(250000, "km")
  29309. },
  29310. ]
  29311. ))
  29312. characterMakers.push(() => makeCharacter(
  29313. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29314. {
  29315. front: {
  29316. height: math.unit(4, "meters"),
  29317. weight: math.unit(150, "kg"),
  29318. name: "Front",
  29319. image: {
  29320. source: "./media/characters/caledvwlch/front.svg",
  29321. extra: 1760 / 1551,
  29322. bottom: 28 / 1788
  29323. }
  29324. },
  29325. side: {
  29326. height: math.unit(4, "meters"),
  29327. weight: math.unit(150, "kg"),
  29328. name: "Side",
  29329. image: {
  29330. source: "./media/characters/caledvwlch/side.svg",
  29331. extra: 1605 / 1536,
  29332. bottom: 31 / 1636
  29333. }
  29334. },
  29335. back: {
  29336. height: math.unit(4, "meters"),
  29337. weight: math.unit(150, "kg"),
  29338. name: "Back",
  29339. image: {
  29340. source: "./media/characters/caledvwlch/back.svg",
  29341. extra: 1635 / 1565,
  29342. bottom: 27 / 1662
  29343. }
  29344. },
  29345. },
  29346. [
  29347. {
  29348. name: "\"Incognito\"",
  29349. height: math.unit(4, "meters")
  29350. },
  29351. {
  29352. name: "Small rampage",
  29353. height: math.unit(600, "meters")
  29354. },
  29355. {
  29356. name: "Mega",
  29357. height: math.unit(30, "km")
  29358. },
  29359. {
  29360. name: "Home-size",
  29361. height: math.unit(50, "km"),
  29362. default: true
  29363. },
  29364. {
  29365. name: "Giga",
  29366. height: math.unit(300, "km")
  29367. },
  29368. {
  29369. name: "Lounging",
  29370. height: math.unit(11000, "km")
  29371. },
  29372. {
  29373. name: "Planet snacking",
  29374. height: math.unit(2000000, "km")
  29375. },
  29376. ]
  29377. ))
  29378. characterMakers.push(() => makeCharacter(
  29379. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29380. {
  29381. front: {
  29382. height: math.unit(6, "feet"),
  29383. weight: math.unit(215, "lb"),
  29384. name: "Front",
  29385. image: {
  29386. source: "./media/characters/sapphire-svell/front.svg",
  29387. extra: 495 / 455,
  29388. bottom: 20 / 515
  29389. }
  29390. },
  29391. back: {
  29392. height: math.unit(6, "feet"),
  29393. weight: math.unit(216, "lb"),
  29394. name: "Back",
  29395. image: {
  29396. source: "./media/characters/sapphire-svell/back.svg",
  29397. extra: 497 / 477,
  29398. bottom: 7 / 504
  29399. }
  29400. },
  29401. maw: {
  29402. height: math.unit(1.57, "feet"),
  29403. name: "Maw",
  29404. image: {
  29405. source: "./media/characters/sapphire-svell/maw.svg"
  29406. }
  29407. },
  29408. foot: {
  29409. height: math.unit(1.07, "feet"),
  29410. name: "Foot",
  29411. image: {
  29412. source: "./media/characters/sapphire-svell/foot.svg"
  29413. }
  29414. },
  29415. toering: {
  29416. height: math.unit(1.7, "inch"),
  29417. name: "Toering",
  29418. image: {
  29419. source: "./media/characters/sapphire-svell/toering.svg"
  29420. }
  29421. },
  29422. },
  29423. [
  29424. {
  29425. name: "Normal",
  29426. height: math.unit(300, "feet"),
  29427. default: true
  29428. },
  29429. {
  29430. name: "Augmented",
  29431. height: math.unit(1250, "feet")
  29432. },
  29433. {
  29434. name: "Unleashed",
  29435. height: math.unit(3000, "feet")
  29436. },
  29437. ]
  29438. ))
  29439. characterMakers.push(() => makeCharacter(
  29440. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29441. {
  29442. side: {
  29443. height: math.unit(2 + 3 / 12, "feet"),
  29444. weight: math.unit(110, "lb"),
  29445. name: "Side",
  29446. image: {
  29447. source: "./media/characters/glitch-flux/side.svg",
  29448. extra: 997 / 805,
  29449. bottom: 20 / 1017
  29450. }
  29451. },
  29452. },
  29453. [
  29454. {
  29455. name: "Normal",
  29456. height: math.unit(2 + 3 / 12, "feet"),
  29457. default: true
  29458. },
  29459. ]
  29460. ))
  29461. characterMakers.push(() => makeCharacter(
  29462. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29463. {
  29464. front: {
  29465. height: math.unit(4, "meters"),
  29466. name: "Front",
  29467. image: {
  29468. source: "./media/characters/mid/front.svg",
  29469. extra: 507 / 476,
  29470. bottom: 17 / 524
  29471. }
  29472. },
  29473. back: {
  29474. height: math.unit(4, "meters"),
  29475. name: "Back",
  29476. image: {
  29477. source: "./media/characters/mid/back.svg",
  29478. extra: 519 / 487,
  29479. bottom: 7 / 526
  29480. }
  29481. },
  29482. stuck: {
  29483. height: math.unit(2.2, "meters"),
  29484. name: "Stuck",
  29485. image: {
  29486. source: "./media/characters/mid/stuck.svg",
  29487. extra: 1951 / 1869,
  29488. bottom: 88 / 2039
  29489. }
  29490. }
  29491. },
  29492. [
  29493. {
  29494. name: "Normal",
  29495. height: math.unit(4, "meters"),
  29496. default: true
  29497. },
  29498. {
  29499. name: "Big",
  29500. height: math.unit(10, "meters")
  29501. },
  29502. {
  29503. name: "Macro",
  29504. height: math.unit(800, "meters")
  29505. },
  29506. {
  29507. name: "Megamacro",
  29508. height: math.unit(100, "km")
  29509. },
  29510. {
  29511. name: "Overgrown",
  29512. height: math.unit(1, "parsec")
  29513. },
  29514. ]
  29515. ))
  29516. characterMakers.push(() => makeCharacter(
  29517. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29518. {
  29519. front: {
  29520. height: math.unit(2.5, "meters"),
  29521. weight: math.unit(225, "kg"),
  29522. name: "Front",
  29523. image: {
  29524. source: "./media/characters/iris/front.svg",
  29525. extra: 3348 / 3251,
  29526. bottom: 205 / 3553
  29527. }
  29528. },
  29529. maw: {
  29530. height: math.unit(0.56, "meter"),
  29531. name: "Maw",
  29532. image: {
  29533. source: "./media/characters/iris/maw.svg"
  29534. }
  29535. },
  29536. },
  29537. [
  29538. {
  29539. name: "Mewter cat",
  29540. height: math.unit(1.2, "meters")
  29541. },
  29542. {
  29543. name: "Minimacro",
  29544. height: math.unit(2.5, "meters"),
  29545. default: true
  29546. },
  29547. {
  29548. name: "Macro",
  29549. height: math.unit(180, "meters")
  29550. },
  29551. {
  29552. name: "Megamacro",
  29553. height: math.unit(2746, "meters")
  29554. },
  29555. ]
  29556. ))
  29557. characterMakers.push(() => makeCharacter(
  29558. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29559. {
  29560. front: {
  29561. height: math.unit(6, "feet"),
  29562. weight: math.unit(135, "lb"),
  29563. name: "Front",
  29564. image: {
  29565. source: "./media/characters/axel/front.svg",
  29566. extra: 908 / 908,
  29567. bottom: 58 / 966
  29568. }
  29569. },
  29570. side: {
  29571. height: math.unit(6, "feet"),
  29572. weight: math.unit(135, "lb"),
  29573. name: "Side",
  29574. image: {
  29575. source: "./media/characters/axel/side.svg",
  29576. extra: 958 / 958,
  29577. bottom: 11 / 969
  29578. }
  29579. },
  29580. back: {
  29581. height: math.unit(6, "feet"),
  29582. weight: math.unit(135, "lb"),
  29583. name: "Back",
  29584. image: {
  29585. source: "./media/characters/axel/back.svg",
  29586. extra: 887 / 887,
  29587. bottom: 34 / 921
  29588. }
  29589. },
  29590. head: {
  29591. height: math.unit(1.07, "feet"),
  29592. name: "Head",
  29593. image: {
  29594. source: "./media/characters/axel/head.svg"
  29595. }
  29596. },
  29597. beak: {
  29598. height: math.unit(1.4, "feet"),
  29599. name: "Beak",
  29600. image: {
  29601. source: "./media/characters/axel/beak.svg"
  29602. }
  29603. },
  29604. beakSide: {
  29605. height: math.unit(1.4, "feet"),
  29606. name: "Beak Side",
  29607. image: {
  29608. source: "./media/characters/axel/beak-side.svg"
  29609. }
  29610. },
  29611. sheath: {
  29612. height: math.unit(0.5, "feet"),
  29613. name: "Sheath",
  29614. image: {
  29615. source: "./media/characters/axel/sheath.svg"
  29616. }
  29617. },
  29618. dick: {
  29619. height: math.unit(0.98, "feet"),
  29620. name: "Dick",
  29621. image: {
  29622. source: "./media/characters/axel/dick.svg"
  29623. }
  29624. },
  29625. },
  29626. [
  29627. {
  29628. name: "Macro",
  29629. height: math.unit(68, "meters"),
  29630. default: true
  29631. },
  29632. ]
  29633. ))
  29634. characterMakers.push(() => makeCharacter(
  29635. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29636. {
  29637. front: {
  29638. height: math.unit(3.5, "meters"),
  29639. weight: math.unit(1200, "kg"),
  29640. name: "Front",
  29641. image: {
  29642. source: "./media/characters/joanna/front.svg",
  29643. extra: 1596 / 1488,
  29644. bottom: 29 / 1625
  29645. }
  29646. },
  29647. back: {
  29648. height: math.unit(3.5, "meters"),
  29649. weight: math.unit(1200, "kg"),
  29650. name: "Back",
  29651. image: {
  29652. source: "./media/characters/joanna/back.svg",
  29653. extra: 1594 / 1495,
  29654. bottom: 26 / 1620
  29655. }
  29656. },
  29657. frontShorts: {
  29658. height: math.unit(3.5, "meters"),
  29659. weight: math.unit(1200, "kg"),
  29660. name: "Front (Shorts)",
  29661. image: {
  29662. source: "./media/characters/joanna/front-shorts.svg",
  29663. extra: 1596 / 1488,
  29664. bottom: 29 / 1625
  29665. }
  29666. },
  29667. frontBiker: {
  29668. height: math.unit(3.5, "meters"),
  29669. weight: math.unit(1200, "kg"),
  29670. name: "Front (Biker)",
  29671. image: {
  29672. source: "./media/characters/joanna/front-biker.svg",
  29673. extra: 1596 / 1488,
  29674. bottom: 29 / 1625
  29675. }
  29676. },
  29677. backBiker: {
  29678. height: math.unit(3.5, "meters"),
  29679. weight: math.unit(1200, "kg"),
  29680. name: "Back (Biker)",
  29681. image: {
  29682. source: "./media/characters/joanna/back-biker.svg",
  29683. extra: 1594 / 1495,
  29684. bottom: 88 / 1682
  29685. }
  29686. },
  29687. bikeLeft: {
  29688. height: math.unit(2.4, "meters"),
  29689. weight: math.unit(1600, "kg"),
  29690. name: "Bike (Left)",
  29691. image: {
  29692. source: "./media/characters/joanna/bike-left.svg",
  29693. extra: 720 / 720,
  29694. bottom: 8 / 728
  29695. }
  29696. },
  29697. bikeRight: {
  29698. height: math.unit(2.4, "meters"),
  29699. weight: math.unit(1600, "kg"),
  29700. name: "Bike (Right)",
  29701. image: {
  29702. source: "./media/characters/joanna/bike-right.svg",
  29703. extra: 720 / 720,
  29704. bottom: 8 / 728
  29705. }
  29706. },
  29707. },
  29708. [
  29709. {
  29710. name: "Incognito",
  29711. height: math.unit(3.5, "meters")
  29712. },
  29713. {
  29714. name: "Casual Big",
  29715. height: math.unit(200, "meters")
  29716. },
  29717. {
  29718. name: "Macro",
  29719. height: math.unit(600, "meters")
  29720. },
  29721. {
  29722. name: "Original",
  29723. height: math.unit(20, "km"),
  29724. default: true
  29725. },
  29726. {
  29727. name: "Giga",
  29728. height: math.unit(400, "km")
  29729. },
  29730. {
  29731. name: "Lounging",
  29732. height: math.unit(1500, "km")
  29733. },
  29734. {
  29735. name: "Planetary",
  29736. height: math.unit(200000, "km")
  29737. },
  29738. ]
  29739. ))
  29740. characterMakers.push(() => makeCharacter(
  29741. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29742. {
  29743. front: {
  29744. height: math.unit(6, "feet"),
  29745. weight: math.unit(150, "lb"),
  29746. name: "Front",
  29747. image: {
  29748. source: "./media/characters/hugo-sigil/front.svg",
  29749. extra: 522 / 500,
  29750. bottom: 2 / 524
  29751. }
  29752. },
  29753. back: {
  29754. height: math.unit(6, "feet"),
  29755. weight: math.unit(150, "lb"),
  29756. name: "Back",
  29757. image: {
  29758. source: "./media/characters/hugo-sigil/back.svg",
  29759. extra: 519 / 495,
  29760. bottom: 5 / 524
  29761. }
  29762. },
  29763. maw: {
  29764. height: math.unit(1.4, "feet"),
  29765. weight: math.unit(150, "lb"),
  29766. name: "Maw",
  29767. image: {
  29768. source: "./media/characters/hugo-sigil/maw.svg"
  29769. }
  29770. },
  29771. feet: {
  29772. height: math.unit(1.56, "feet"),
  29773. weight: math.unit(150, "lb"),
  29774. name: "Feet",
  29775. image: {
  29776. source: "./media/characters/hugo-sigil/feet.svg",
  29777. extra: 177 / 177,
  29778. bottom: 12 / 189
  29779. }
  29780. },
  29781. },
  29782. [
  29783. {
  29784. name: "Normal",
  29785. height: math.unit(6, "feet")
  29786. },
  29787. {
  29788. name: "Macro",
  29789. height: math.unit(200, "feet"),
  29790. default: true
  29791. },
  29792. ]
  29793. ))
  29794. characterMakers.push(() => makeCharacter(
  29795. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29796. {
  29797. front: {
  29798. height: math.unit(6, "feet"),
  29799. weight: math.unit(150, "lb"),
  29800. name: "Front",
  29801. image: {
  29802. source: "./media/characters/peri/front.svg",
  29803. extra: 2354 / 2233,
  29804. bottom: 49 / 2403
  29805. }
  29806. },
  29807. },
  29808. [
  29809. {
  29810. name: "Really Small",
  29811. height: math.unit(1, "nm")
  29812. },
  29813. {
  29814. name: "Micro",
  29815. height: math.unit(4, "inches")
  29816. },
  29817. {
  29818. name: "Normal",
  29819. height: math.unit(7, "inches"),
  29820. default: true
  29821. },
  29822. {
  29823. name: "Macro",
  29824. height: math.unit(400, "feet")
  29825. },
  29826. {
  29827. name: "Megamacro",
  29828. height: math.unit(100, "miles")
  29829. },
  29830. ]
  29831. ))
  29832. characterMakers.push(() => makeCharacter(
  29833. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29834. {
  29835. frontSlim: {
  29836. height: math.unit(7, "feet"),
  29837. name: "Front (Slim)",
  29838. image: {
  29839. source: "./media/characters/issilora/front-slim.svg",
  29840. extra: 529 / 449,
  29841. bottom: 53 / 582
  29842. }
  29843. },
  29844. sideSlim: {
  29845. height: math.unit(7, "feet"),
  29846. name: "Side (Slim)",
  29847. image: {
  29848. source: "./media/characters/issilora/side-slim.svg",
  29849. extra: 570 / 480,
  29850. bottom: 30 / 600
  29851. }
  29852. },
  29853. backSlim: {
  29854. height: math.unit(7, "feet"),
  29855. name: "Back (Slim)",
  29856. image: {
  29857. source: "./media/characters/issilora/back-slim.svg",
  29858. extra: 537 / 455,
  29859. bottom: 46 / 583
  29860. }
  29861. },
  29862. frontBuff: {
  29863. height: math.unit(7, "feet"),
  29864. name: "Front (Buff)",
  29865. image: {
  29866. source: "./media/characters/issilora/front-buff.svg",
  29867. extra: 2310 / 2035,
  29868. bottom: 335 / 2645
  29869. }
  29870. },
  29871. head: {
  29872. height: math.unit(1.94, "feet"),
  29873. name: "Head",
  29874. image: {
  29875. source: "./media/characters/issilora/head.svg"
  29876. }
  29877. },
  29878. },
  29879. [
  29880. {
  29881. name: "Minimum",
  29882. height: math.unit(7, "feet")
  29883. },
  29884. {
  29885. name: "Comfortable",
  29886. height: math.unit(17, "feet")
  29887. },
  29888. {
  29889. name: "Fun Size",
  29890. height: math.unit(47, "feet")
  29891. },
  29892. {
  29893. name: "Natural Macro",
  29894. height: math.unit(137, "feet"),
  29895. default: true
  29896. },
  29897. {
  29898. name: "Maximum Kaiju",
  29899. height: math.unit(397, "feet")
  29900. },
  29901. ]
  29902. ))
  29903. characterMakers.push(() => makeCharacter(
  29904. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29905. {
  29906. front: {
  29907. height: math.unit(50 + 9/12, "feet"),
  29908. weight: math.unit(32.8, "tons"),
  29909. name: "Front",
  29910. image: {
  29911. source: "./media/characters/irb'iiritaahn/front.svg",
  29912. extra: 1878/1826,
  29913. bottom: 326/2204
  29914. }
  29915. },
  29916. back: {
  29917. height: math.unit(50 + 9/12, "feet"),
  29918. weight: math.unit(32.8, "tons"),
  29919. name: "Back",
  29920. image: {
  29921. source: "./media/characters/irb'iiritaahn/back.svg",
  29922. extra: 2052/2018,
  29923. bottom: 152/2204
  29924. }
  29925. },
  29926. head: {
  29927. height: math.unit(12.86, "feet"),
  29928. name: "Head",
  29929. image: {
  29930. source: "./media/characters/irb'iiritaahn/head.svg"
  29931. }
  29932. },
  29933. maw: {
  29934. height: math.unit(9.66, "feet"),
  29935. name: "Maw",
  29936. image: {
  29937. source: "./media/characters/irb'iiritaahn/maw.svg"
  29938. }
  29939. },
  29940. frontDick: {
  29941. height: math.unit(8.78461, "feet"),
  29942. name: "Front Dick",
  29943. image: {
  29944. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29945. }
  29946. },
  29947. rearDick: {
  29948. height: math.unit(8.78461, "feet"),
  29949. name: "Rear Dick",
  29950. image: {
  29951. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29952. }
  29953. },
  29954. rearDickUnfolded: {
  29955. height: math.unit(8.78, "feet"),
  29956. name: "Rear Dick (Unfolded)",
  29957. image: {
  29958. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29959. }
  29960. },
  29961. wings: {
  29962. height: math.unit(43, "feet"),
  29963. name: "Wings",
  29964. image: {
  29965. source: "./media/characters/irb'iiritaahn/wings.svg"
  29966. }
  29967. },
  29968. },
  29969. [
  29970. {
  29971. name: "Macro",
  29972. height: math.unit(50 + 9/12, "feet"),
  29973. default: true
  29974. },
  29975. ]
  29976. ))
  29977. characterMakers.push(() => makeCharacter(
  29978. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29979. {
  29980. front: {
  29981. height: math.unit(205, "cm"),
  29982. weight: math.unit(102, "kg"),
  29983. name: "Front",
  29984. image: {
  29985. source: "./media/characters/irbisgreif/front.svg",
  29986. extra: 785/706,
  29987. bottom: 13/798
  29988. }
  29989. },
  29990. back: {
  29991. height: math.unit(205, "cm"),
  29992. weight: math.unit(102, "kg"),
  29993. name: "Back",
  29994. image: {
  29995. source: "./media/characters/irbisgreif/back.svg",
  29996. extra: 713/701,
  29997. bottom: 26/739
  29998. }
  29999. },
  30000. frontDressed: {
  30001. height: math.unit(216, "cm"),
  30002. weight: math.unit(102, "kg"),
  30003. name: "Front-dressed",
  30004. image: {
  30005. source: "./media/characters/irbisgreif/front-dressed.svg",
  30006. extra: 902/776,
  30007. bottom: 14/916
  30008. }
  30009. },
  30010. sideDressed: {
  30011. height: math.unit(195, "cm"),
  30012. weight: math.unit(102, "kg"),
  30013. name: "Side-dressed",
  30014. image: {
  30015. source: "./media/characters/irbisgreif/side-dressed.svg",
  30016. extra: 788/688,
  30017. bottom: 21/809
  30018. }
  30019. },
  30020. backDressed: {
  30021. height: math.unit(216, "cm"),
  30022. weight: math.unit(102, "kg"),
  30023. name: "Back-dressed",
  30024. image: {
  30025. source: "./media/characters/irbisgreif/back-dressed.svg",
  30026. extra: 901/783,
  30027. bottom: 10/911
  30028. }
  30029. },
  30030. dick: {
  30031. height: math.unit(0.49, "feet"),
  30032. name: "Dick",
  30033. image: {
  30034. source: "./media/characters/irbisgreif/dick.svg"
  30035. }
  30036. },
  30037. wingTop: {
  30038. height: math.unit(1.93 , "feet"),
  30039. name: "Wing-top",
  30040. image: {
  30041. source: "./media/characters/irbisgreif/wing-top.svg"
  30042. }
  30043. },
  30044. wingBottom: {
  30045. height: math.unit(1.93 , "feet"),
  30046. name: "Wing-bottom",
  30047. image: {
  30048. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30049. }
  30050. },
  30051. },
  30052. [
  30053. {
  30054. name: "Normal",
  30055. height: math.unit(216, "cm"),
  30056. default: true
  30057. },
  30058. ]
  30059. ))
  30060. characterMakers.push(() => makeCharacter(
  30061. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30062. {
  30063. front: {
  30064. height: math.unit(6, "feet"),
  30065. weight: math.unit(150, "lb"),
  30066. name: "Front",
  30067. image: {
  30068. source: "./media/characters/pride/front.svg",
  30069. extra: 1299/1230,
  30070. bottom: 18/1317
  30071. }
  30072. },
  30073. },
  30074. [
  30075. {
  30076. name: "Normal",
  30077. height: math.unit(7, "feet")
  30078. },
  30079. {
  30080. name: "Mini-macro",
  30081. height: math.unit(11, "feet")
  30082. },
  30083. {
  30084. name: "Macro",
  30085. height: math.unit(15, "meters"),
  30086. default: true
  30087. },
  30088. {
  30089. name: "Macro+",
  30090. height: math.unit(40, "meters")
  30091. },
  30092. ]
  30093. ))
  30094. characterMakers.push(() => makeCharacter(
  30095. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30096. {
  30097. front: {
  30098. height: math.unit(4 + 2 / 12, "feet"),
  30099. weight: math.unit(95, "lb"),
  30100. name: "Front",
  30101. image: {
  30102. source: "./media/characters/vaelophis-nyx/front.svg",
  30103. extra: 2532/2330,
  30104. bottom: 0/2532
  30105. }
  30106. },
  30107. back: {
  30108. height: math.unit(4 + 2 / 12, "feet"),
  30109. weight: math.unit(95, "lb"),
  30110. name: "Back",
  30111. image: {
  30112. source: "./media/characters/vaelophis-nyx/back.svg",
  30113. extra: 2484/2361,
  30114. bottom: 0/2484
  30115. }
  30116. },
  30117. feralSide: {
  30118. height: math.unit(2 + 1/12, "feet"),
  30119. weight: math.unit(20, "lb"),
  30120. name: "Feral (Side)",
  30121. image: {
  30122. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30123. extra: 1721/1581,
  30124. bottom: 70/1791
  30125. }
  30126. },
  30127. feralLazing: {
  30128. height: math.unit(1.08, "feet"),
  30129. weight: math.unit(20, "lb"),
  30130. name: "Feral (Lazing)",
  30131. image: {
  30132. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30133. extra: 822/822,
  30134. bottom: 248/1070
  30135. }
  30136. },
  30137. ear: {
  30138. height: math.unit(0.416, "feet"),
  30139. name: "Ear",
  30140. image: {
  30141. source: "./media/characters/vaelophis-nyx/ear.svg"
  30142. }
  30143. },
  30144. eye: {
  30145. height: math.unit(0.0748, "feet"),
  30146. name: "Eye",
  30147. image: {
  30148. source: "./media/characters/vaelophis-nyx/eye.svg"
  30149. }
  30150. },
  30151. mouth: {
  30152. height: math.unit(0.378, "feet"),
  30153. name: "Mouth",
  30154. image: {
  30155. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30156. }
  30157. },
  30158. spade: {
  30159. height: math.unit(0.55, "feet"),
  30160. name: "Spade",
  30161. image: {
  30162. source: "./media/characters/vaelophis-nyx/spade.svg"
  30163. }
  30164. },
  30165. },
  30166. [
  30167. {
  30168. name: "Normal",
  30169. height: math.unit(4 + 2/12, "feet"),
  30170. default: true
  30171. },
  30172. ]
  30173. ))
  30174. characterMakers.push(() => makeCharacter(
  30175. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30176. {
  30177. front: {
  30178. height: math.unit(7, "feet"),
  30179. weight: math.unit(231, "lb"),
  30180. name: "Front",
  30181. image: {
  30182. source: "./media/characters/flux/front.svg",
  30183. extra: 919/871,
  30184. bottom: 0/919
  30185. }
  30186. },
  30187. back: {
  30188. height: math.unit(7, "feet"),
  30189. weight: math.unit(231, "lb"),
  30190. name: "Back",
  30191. image: {
  30192. source: "./media/characters/flux/back.svg",
  30193. extra: 1040/992,
  30194. bottom: 0/1040
  30195. }
  30196. },
  30197. frontDressed: {
  30198. height: math.unit(7, "feet"),
  30199. weight: math.unit(231, "lb"),
  30200. name: "Front (Dressed)",
  30201. image: {
  30202. source: "./media/characters/flux/front-dressed.svg",
  30203. extra: 919/871,
  30204. bottom: 0/919
  30205. }
  30206. },
  30207. feralSide: {
  30208. height: math.unit(5, "feet"),
  30209. weight: math.unit(150, "lb"),
  30210. name: "Feral (Side)",
  30211. image: {
  30212. source: "./media/characters/flux/feral-side.svg",
  30213. extra: 598/528,
  30214. bottom: 28/626
  30215. }
  30216. },
  30217. head: {
  30218. height: math.unit(1.585, "feet"),
  30219. name: "Head",
  30220. image: {
  30221. source: "./media/characters/flux/head.svg"
  30222. }
  30223. },
  30224. headSide: {
  30225. height: math.unit(1.74, "feet"),
  30226. name: "Head (Side)",
  30227. image: {
  30228. source: "./media/characters/flux/head-side.svg"
  30229. }
  30230. },
  30231. headSideFire: {
  30232. height: math.unit(1.76, "feet"),
  30233. name: "Head (Side, Fire)",
  30234. image: {
  30235. source: "./media/characters/flux/head-side-fire.svg"
  30236. }
  30237. },
  30238. },
  30239. [
  30240. {
  30241. name: "Normal",
  30242. height: math.unit(7, "feet"),
  30243. default: true
  30244. },
  30245. ]
  30246. ))
  30247. characterMakers.push(() => makeCharacter(
  30248. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30249. {
  30250. front: {
  30251. height: math.unit(9, "feet"),
  30252. weight: math.unit(1012, "lb"),
  30253. name: "Front",
  30254. image: {
  30255. source: "./media/characters/ulfra-lupae/front.svg",
  30256. extra: 1083/1011,
  30257. bottom: 67/1150
  30258. }
  30259. },
  30260. },
  30261. [
  30262. {
  30263. name: "Micro",
  30264. height: math.unit(6, "inches")
  30265. },
  30266. {
  30267. name: "Socializing",
  30268. height: math.unit(6 + 5/12, "feet")
  30269. },
  30270. {
  30271. name: "Normal",
  30272. height: math.unit(9, "feet"),
  30273. default: true
  30274. },
  30275. {
  30276. name: "Macro",
  30277. height: math.unit(150, "feet")
  30278. },
  30279. ]
  30280. ))
  30281. characterMakers.push(() => makeCharacter(
  30282. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30283. {
  30284. front: {
  30285. height: math.unit(5 + 2/12, "feet"),
  30286. weight: math.unit(120, "lb"),
  30287. name: "Front",
  30288. image: {
  30289. source: "./media/characters/timber/front.svg",
  30290. extra: 2814/2705,
  30291. bottom: 181/2995
  30292. }
  30293. },
  30294. },
  30295. [
  30296. {
  30297. name: "Normal",
  30298. height: math.unit(5 + 2/12, "feet"),
  30299. default: true
  30300. },
  30301. ]
  30302. ))
  30303. characterMakers.push(() => makeCharacter(
  30304. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30305. {
  30306. front: {
  30307. height: math.unit(5 + 7/12, "feet"),
  30308. weight: math.unit(220, "lb"),
  30309. name: "Front",
  30310. image: {
  30311. source: "./media/characters/nicki/front.svg",
  30312. extra: 453/419,
  30313. bottom: 7/460
  30314. }
  30315. },
  30316. frontAlt: {
  30317. height: math.unit(5 + 7/12, "feet"),
  30318. weight: math.unit(220, "lb"),
  30319. name: "Front-alt",
  30320. image: {
  30321. source: "./media/characters/nicki/front-alt.svg",
  30322. extra: 435/411,
  30323. bottom: 12/447
  30324. }
  30325. },
  30326. back: {
  30327. height: math.unit(5 + 7/12, "feet"),
  30328. weight: math.unit(220, "lb"),
  30329. name: "Back",
  30330. image: {
  30331. source: "./media/characters/nicki/back.svg",
  30332. extra: 440/413,
  30333. bottom: 19/459
  30334. }
  30335. },
  30336. taur: {
  30337. height: math.unit(7 + 6/12, "feet"),
  30338. weight: math.unit(700, "lb"),
  30339. name: "Taur",
  30340. image: {
  30341. source: "./media/characters/nicki/taur.svg",
  30342. extra: 975/773,
  30343. bottom: 0/975
  30344. }
  30345. },
  30346. frontNsfw: {
  30347. height: math.unit(5 + 7/12, "feet"),
  30348. weight: math.unit(220, "lb"),
  30349. name: "Front (NSFW)",
  30350. image: {
  30351. source: "./media/characters/nicki/front-nsfw.svg",
  30352. extra: 453/419,
  30353. bottom: 7/460
  30354. }
  30355. },
  30356. frontNsfwAlt: {
  30357. height: math.unit(5 + 7/12, "feet"),
  30358. weight: math.unit(220, "lb"),
  30359. name: "Front (Alt, NSFW)",
  30360. image: {
  30361. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30362. extra: 435/411,
  30363. bottom: 12/447
  30364. }
  30365. },
  30366. backNsfw: {
  30367. height: math.unit(5 + 7/12, "feet"),
  30368. weight: math.unit(220, "lb"),
  30369. name: "Back (NSFW)",
  30370. image: {
  30371. source: "./media/characters/nicki/back-nsfw.svg",
  30372. extra: 440/413,
  30373. bottom: 19/459
  30374. }
  30375. },
  30376. head: {
  30377. height: math.unit(2.1, "feet"),
  30378. name: "Head",
  30379. image: {
  30380. source: "./media/characters/nicki/head.svg"
  30381. }
  30382. },
  30383. paw: {
  30384. height: math.unit(1.88, "feet"),
  30385. name: "Paw",
  30386. image: {
  30387. source: "./media/characters/nicki/paw.svg"
  30388. }
  30389. },
  30390. },
  30391. [
  30392. {
  30393. name: "Normal",
  30394. height: math.unit(5 + 7/12, "feet"),
  30395. default: true
  30396. },
  30397. ]
  30398. ))
  30399. characterMakers.push(() => makeCharacter(
  30400. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30401. {
  30402. front: {
  30403. height: math.unit(7 + 10/12, "feet"),
  30404. weight: math.unit(3.5, "tons"),
  30405. name: "Front",
  30406. image: {
  30407. source: "./media/characters/lee/front.svg",
  30408. extra: 1773/1615,
  30409. bottom: 86/1859
  30410. }
  30411. },
  30412. hand: {
  30413. height: math.unit(1.78, "feet"),
  30414. name: "Hand",
  30415. image: {
  30416. source: "./media/characters/lee/hand.svg"
  30417. }
  30418. },
  30419. maw: {
  30420. height: math.unit(1.18, "feet"),
  30421. name: "Maw",
  30422. image: {
  30423. source: "./media/characters/lee/maw.svg"
  30424. }
  30425. },
  30426. },
  30427. [
  30428. {
  30429. name: "Normal",
  30430. height: math.unit(7 + 10/12, "feet"),
  30431. default: true
  30432. },
  30433. ]
  30434. ))
  30435. characterMakers.push(() => makeCharacter(
  30436. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30437. {
  30438. front: {
  30439. height: math.unit(9, "feet"),
  30440. name: "Front",
  30441. image: {
  30442. source: "./media/characters/guti/front.svg",
  30443. extra: 4551/4355,
  30444. bottom: 123/4674
  30445. }
  30446. },
  30447. tongue: {
  30448. height: math.unit(1, "feet"),
  30449. name: "Tongue",
  30450. image: {
  30451. source: "./media/characters/guti/tongue.svg"
  30452. }
  30453. },
  30454. paw: {
  30455. height: math.unit(1.18, "feet"),
  30456. name: "Paw",
  30457. image: {
  30458. source: "./media/characters/guti/paw.svg"
  30459. }
  30460. },
  30461. },
  30462. [
  30463. {
  30464. name: "Normal",
  30465. height: math.unit(9, "feet"),
  30466. default: true
  30467. },
  30468. ]
  30469. ))
  30470. characterMakers.push(() => makeCharacter(
  30471. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30472. {
  30473. side: {
  30474. height: math.unit(5, "meters"),
  30475. name: "Side",
  30476. image: {
  30477. source: "./media/characters/vesper/side.svg",
  30478. extra: 1605/1518,
  30479. bottom: 0/1605
  30480. }
  30481. },
  30482. },
  30483. [
  30484. {
  30485. name: "Small",
  30486. height: math.unit(5, "meters")
  30487. },
  30488. {
  30489. name: "Sage",
  30490. height: math.unit(100, "meters"),
  30491. default: true
  30492. },
  30493. {
  30494. name: "Fun Size",
  30495. height: math.unit(600, "meters")
  30496. },
  30497. {
  30498. name: "Goddess",
  30499. height: math.unit(20000, "km")
  30500. },
  30501. {
  30502. name: "Maximum",
  30503. height: math.unit(5, "galaxies")
  30504. },
  30505. ]
  30506. ))
  30507. characterMakers.push(() => makeCharacter(
  30508. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30509. {
  30510. front: {
  30511. height: math.unit(6 + 3/12, "feet"),
  30512. weight: math.unit(190, "lb"),
  30513. name: "Front",
  30514. image: {
  30515. source: "./media/characters/gawain/front.svg",
  30516. extra: 2222/2139,
  30517. bottom: 90/2312
  30518. }
  30519. },
  30520. back: {
  30521. height: math.unit(6 + 3/12, "feet"),
  30522. weight: math.unit(190, "lb"),
  30523. name: "Back",
  30524. image: {
  30525. source: "./media/characters/gawain/back.svg",
  30526. extra: 2199/2111,
  30527. bottom: 73/2272
  30528. }
  30529. },
  30530. },
  30531. [
  30532. {
  30533. name: "Normal",
  30534. height: math.unit(6 + 3/12, "feet"),
  30535. default: true
  30536. },
  30537. ]
  30538. ))
  30539. characterMakers.push(() => makeCharacter(
  30540. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30541. {
  30542. side: {
  30543. height: math.unit(3.5, "meters"),
  30544. weight: math.unit(16000, "lb"),
  30545. name: "Side",
  30546. image: {
  30547. source: "./media/characters/dascalti/side.svg",
  30548. extra: 392/273,
  30549. bottom: 47/439
  30550. }
  30551. },
  30552. breath: {
  30553. height: math.unit(7.4, "feet"),
  30554. name: "Breath",
  30555. image: {
  30556. source: "./media/characters/dascalti/breath.svg"
  30557. }
  30558. },
  30559. fed: {
  30560. height: math.unit(3.6, "meters"),
  30561. weight: math.unit(16000, "lb"),
  30562. name: "Fed",
  30563. image: {
  30564. source: "./media/characters/dascalti/fed.svg",
  30565. extra: 1419/820,
  30566. bottom: 95/1514
  30567. }
  30568. },
  30569. },
  30570. [
  30571. {
  30572. name: "Normal",
  30573. height: math.unit(3.5, "meters"),
  30574. default: true
  30575. },
  30576. ]
  30577. ))
  30578. characterMakers.push(() => makeCharacter(
  30579. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30580. {
  30581. front: {
  30582. height: math.unit(3 + 5/12, "feet"),
  30583. name: "Front",
  30584. image: {
  30585. source: "./media/characters/mauve/front.svg",
  30586. extra: 1126/1033,
  30587. bottom: 65/1191
  30588. }
  30589. },
  30590. side: {
  30591. height: math.unit(3 + 5/12, "feet"),
  30592. name: "Side",
  30593. image: {
  30594. source: "./media/characters/mauve/side.svg",
  30595. extra: 1089/1001,
  30596. bottom: 29/1118
  30597. }
  30598. },
  30599. back: {
  30600. height: math.unit(3 + 5/12, "feet"),
  30601. name: "Back",
  30602. image: {
  30603. source: "./media/characters/mauve/back.svg",
  30604. extra: 1173/1053,
  30605. bottom: 109/1282
  30606. }
  30607. },
  30608. },
  30609. [
  30610. {
  30611. name: "Normal",
  30612. height: math.unit(3 + 5/12, "feet"),
  30613. default: true
  30614. },
  30615. ]
  30616. ))
  30617. characterMakers.push(() => makeCharacter(
  30618. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30619. {
  30620. front: {
  30621. height: math.unit(6 + 3/12, "feet"),
  30622. weight: math.unit(430, "lb"),
  30623. name: "Front",
  30624. image: {
  30625. source: "./media/characters/carlos/front.svg",
  30626. extra: 1964/1913,
  30627. bottom: 70/2034
  30628. }
  30629. },
  30630. },
  30631. [
  30632. {
  30633. name: "Normal",
  30634. height: math.unit(6 + 3/12, "feet"),
  30635. default: true
  30636. },
  30637. ]
  30638. ))
  30639. characterMakers.push(() => makeCharacter(
  30640. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30641. {
  30642. back: {
  30643. height: math.unit(5 + 10/12, "feet"),
  30644. weight: math.unit(200, "lb"),
  30645. name: "Back",
  30646. image: {
  30647. source: "./media/characters/jax/back.svg",
  30648. extra: 764/739,
  30649. bottom: 25/789
  30650. }
  30651. },
  30652. },
  30653. [
  30654. {
  30655. name: "Normal",
  30656. height: math.unit(5 + 10/12, "feet"),
  30657. default: true
  30658. },
  30659. ]
  30660. ))
  30661. characterMakers.push(() => makeCharacter(
  30662. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30663. {
  30664. front: {
  30665. height: math.unit(8, "feet"),
  30666. weight: math.unit(250, "lb"),
  30667. name: "Front",
  30668. image: {
  30669. source: "./media/characters/eikthynir/front.svg",
  30670. extra: 1332/1166,
  30671. bottom: 82/1414
  30672. }
  30673. },
  30674. back: {
  30675. height: math.unit(8, "feet"),
  30676. weight: math.unit(250, "lb"),
  30677. name: "Back",
  30678. image: {
  30679. source: "./media/characters/eikthynir/back.svg",
  30680. extra: 1342/1190,
  30681. bottom: 19/1361
  30682. }
  30683. },
  30684. dick: {
  30685. height: math.unit(2.35, "feet"),
  30686. name: "Dick",
  30687. image: {
  30688. source: "./media/characters/eikthynir/dick.svg"
  30689. }
  30690. },
  30691. },
  30692. [
  30693. {
  30694. name: "Normal",
  30695. height: math.unit(8, "feet"),
  30696. default: true
  30697. },
  30698. ]
  30699. ))
  30700. characterMakers.push(() => makeCharacter(
  30701. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30702. {
  30703. front: {
  30704. height: math.unit(99, "meters"),
  30705. weight: math.unit(13000, "tons"),
  30706. name: "Front",
  30707. image: {
  30708. source: "./media/characters/zlmos/front.svg",
  30709. extra: 2202/1992,
  30710. bottom: 315/2517
  30711. }
  30712. },
  30713. },
  30714. [
  30715. {
  30716. name: "Macro",
  30717. height: math.unit(99, "meters"),
  30718. default: true
  30719. },
  30720. ]
  30721. ))
  30722. characterMakers.push(() => makeCharacter(
  30723. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30724. {
  30725. front: {
  30726. height: math.unit(6 + 5/12, "feet"),
  30727. name: "Front",
  30728. image: {
  30729. source: "./media/characters/purri/front.svg",
  30730. extra: 1698/1610,
  30731. bottom: 32/1730
  30732. }
  30733. },
  30734. frontAlt: {
  30735. height: math.unit(6 + 5/12, "feet"),
  30736. name: "Front (Alt)",
  30737. image: {
  30738. source: "./media/characters/purri/front-alt.svg",
  30739. extra: 450/420,
  30740. bottom: 26/476
  30741. }
  30742. },
  30743. boots: {
  30744. height: math.unit(5.5, "feet"),
  30745. name: "Boots",
  30746. image: {
  30747. source: "./media/characters/purri/boots.svg",
  30748. extra: 905/853,
  30749. bottom: 18/923
  30750. }
  30751. },
  30752. lying: {
  30753. height: math.unit(2, "feet"),
  30754. name: "Lying",
  30755. image: {
  30756. source: "./media/characters/purri/lying.svg",
  30757. extra: 940/843,
  30758. bottom: 146/1086
  30759. }
  30760. },
  30761. devious: {
  30762. height: math.unit(1.77, "feet"),
  30763. name: "Devious",
  30764. image: {
  30765. source: "./media/characters/purri/devious.svg",
  30766. extra: 1440/1155,
  30767. bottom: 147/1587
  30768. }
  30769. },
  30770. bean: {
  30771. height: math.unit(1.94, "feet"),
  30772. name: "Bean",
  30773. image: {
  30774. source: "./media/characters/purri/bean.svg"
  30775. }
  30776. },
  30777. },
  30778. [
  30779. {
  30780. name: "Micro",
  30781. height: math.unit(1, "mm")
  30782. },
  30783. {
  30784. name: "Normal",
  30785. height: math.unit(6 + 5/12, "feet"),
  30786. default: true
  30787. },
  30788. {
  30789. name: "Macro :3c",
  30790. height: math.unit(2, "miles")
  30791. },
  30792. ]
  30793. ))
  30794. characterMakers.push(() => makeCharacter(
  30795. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30796. {
  30797. front: {
  30798. height: math.unit(6 + 2/12, "feet"),
  30799. weight: math.unit(250, "lb"),
  30800. name: "Front",
  30801. image: {
  30802. source: "./media/characters/moonlight/front.svg",
  30803. extra: 1044/908,
  30804. bottom: 56/1100
  30805. }
  30806. },
  30807. paw: {
  30808. height: math.unit(1, "feet"),
  30809. name: "Paw",
  30810. image: {
  30811. source: "./media/characters/moonlight/paw.svg"
  30812. }
  30813. },
  30814. paws: {
  30815. height: math.unit(0.98, "feet"),
  30816. name: "Paws",
  30817. image: {
  30818. source: "./media/characters/moonlight/paws.svg",
  30819. extra: 939/939,
  30820. bottom: 50/989
  30821. }
  30822. },
  30823. mouth: {
  30824. height: math.unit(0.48, "feet"),
  30825. name: "Mouth",
  30826. image: {
  30827. source: "./media/characters/moonlight/mouth.svg"
  30828. }
  30829. },
  30830. dick: {
  30831. height: math.unit(1.46, "feet"),
  30832. name: "Dick",
  30833. image: {
  30834. source: "./media/characters/moonlight/dick.svg"
  30835. }
  30836. },
  30837. },
  30838. [
  30839. {
  30840. name: "Normal",
  30841. height: math.unit(6 + 2/12, "feet"),
  30842. default: true
  30843. },
  30844. {
  30845. name: "Macro",
  30846. height: math.unit(300, "feet")
  30847. },
  30848. {
  30849. name: "Macro+",
  30850. height: math.unit(1, "mile")
  30851. },
  30852. {
  30853. name: "Mt. Moon",
  30854. height: math.unit(5, "miles")
  30855. },
  30856. {
  30857. name: "Megamacro",
  30858. height: math.unit(15, "miles")
  30859. },
  30860. ]
  30861. ))
  30862. characterMakers.push(() => makeCharacter(
  30863. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30864. {
  30865. back: {
  30866. height: math.unit(6, "feet"),
  30867. weight: math.unit(150, "lb"),
  30868. name: "Back",
  30869. image: {
  30870. source: "./media/characters/sylen/back.svg",
  30871. extra: 1335/1273,
  30872. bottom: 107/1442
  30873. }
  30874. },
  30875. },
  30876. [
  30877. {
  30878. name: "Normal",
  30879. height: math.unit(5 + 5/12, "feet")
  30880. },
  30881. {
  30882. name: "Megamacro",
  30883. height: math.unit(3, "miles"),
  30884. default: true
  30885. },
  30886. ]
  30887. ))
  30888. characterMakers.push(() => makeCharacter(
  30889. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30890. {
  30891. front: {
  30892. height: math.unit(6, "feet"),
  30893. weight: math.unit(190, "lb"),
  30894. name: "Front",
  30895. image: {
  30896. source: "./media/characters/huttser/front.svg",
  30897. extra: 1152/1058,
  30898. bottom: 23/1175
  30899. }
  30900. },
  30901. side: {
  30902. height: math.unit(6, "feet"),
  30903. weight: math.unit(190, "lb"),
  30904. name: "Side",
  30905. image: {
  30906. source: "./media/characters/huttser/side.svg",
  30907. extra: 1174/1065,
  30908. bottom: 18/1192
  30909. }
  30910. },
  30911. back: {
  30912. height: math.unit(6, "feet"),
  30913. weight: math.unit(190, "lb"),
  30914. name: "Back",
  30915. image: {
  30916. source: "./media/characters/huttser/back.svg",
  30917. extra: 1158/1056,
  30918. bottom: 12/1170
  30919. }
  30920. },
  30921. },
  30922. [
  30923. ]
  30924. ))
  30925. characterMakers.push(() => makeCharacter(
  30926. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30927. {
  30928. side: {
  30929. height: math.unit(12 + 9/12, "feet"),
  30930. weight: math.unit(15000, "lb"),
  30931. name: "Side",
  30932. image: {
  30933. source: "./media/characters/faan/side.svg",
  30934. extra: 2747/2697,
  30935. bottom: 0/2747
  30936. }
  30937. },
  30938. front: {
  30939. height: math.unit(12 + 9/12, "feet"),
  30940. weight: math.unit(15000, "lb"),
  30941. name: "Front",
  30942. image: {
  30943. source: "./media/characters/faan/front.svg",
  30944. extra: 607/571,
  30945. bottom: 24/631
  30946. }
  30947. },
  30948. head: {
  30949. height: math.unit(2.85, "feet"),
  30950. name: "Head",
  30951. image: {
  30952. source: "./media/characters/faan/head.svg"
  30953. }
  30954. },
  30955. headAlt: {
  30956. height: math.unit(3.13, "feet"),
  30957. name: "Head-alt",
  30958. image: {
  30959. source: "./media/characters/faan/head-alt.svg"
  30960. }
  30961. },
  30962. },
  30963. [
  30964. {
  30965. name: "Normal",
  30966. height: math.unit(12 + 9/12, "feet"),
  30967. default: true
  30968. },
  30969. ]
  30970. ))
  30971. characterMakers.push(() => makeCharacter(
  30972. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30973. {
  30974. front: {
  30975. height: math.unit(6, "feet"),
  30976. weight: math.unit(300, "lb"),
  30977. name: "Front",
  30978. image: {
  30979. source: "./media/characters/tanio/front.svg",
  30980. extra: 711/673,
  30981. bottom: 25/736
  30982. }
  30983. },
  30984. },
  30985. [
  30986. {
  30987. name: "Normal",
  30988. height: math.unit(6, "feet"),
  30989. default: true
  30990. },
  30991. ]
  30992. ))
  30993. characterMakers.push(() => makeCharacter(
  30994. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  30995. {
  30996. front: {
  30997. height: math.unit(3, "inches"),
  30998. name: "Front",
  30999. image: {
  31000. source: "./media/characters/noboru/front.svg",
  31001. extra: 1039/932,
  31002. bottom: 18/1057
  31003. }
  31004. },
  31005. },
  31006. [
  31007. {
  31008. name: "Micro",
  31009. height: math.unit(3, "inches"),
  31010. default: true
  31011. },
  31012. ]
  31013. ))
  31014. characterMakers.push(() => makeCharacter(
  31015. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31016. {
  31017. front: {
  31018. height: math.unit(1.85, "meters"),
  31019. weight: math.unit(80, "kg"),
  31020. name: "Front",
  31021. image: {
  31022. source: "./media/characters/daniel-barrett/front.svg",
  31023. extra: 355/337,
  31024. bottom: 9/364
  31025. }
  31026. },
  31027. },
  31028. [
  31029. {
  31030. name: "Pico",
  31031. height: math.unit(0.0433, "mm")
  31032. },
  31033. {
  31034. name: "Nano",
  31035. height: math.unit(1.5, "mm")
  31036. },
  31037. {
  31038. name: "Micro",
  31039. height: math.unit(5.3, "cm"),
  31040. default: true
  31041. },
  31042. {
  31043. name: "Normal",
  31044. height: math.unit(1.85, "meters")
  31045. },
  31046. {
  31047. name: "Macro",
  31048. height: math.unit(64.7, "meters")
  31049. },
  31050. {
  31051. name: "Megamacro",
  31052. height: math.unit(2.26, "km")
  31053. },
  31054. {
  31055. name: "Gigamacro",
  31056. height: math.unit(79, "km")
  31057. },
  31058. {
  31059. name: "Teramacro",
  31060. height: math.unit(2765, "km")
  31061. },
  31062. {
  31063. name: "Petamacro",
  31064. height: math.unit(96678, "km")
  31065. },
  31066. ]
  31067. ))
  31068. characterMakers.push(() => makeCharacter(
  31069. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31070. {
  31071. front: {
  31072. height: math.unit(30, "meters"),
  31073. weight: math.unit(400, "tons"),
  31074. name: "Front",
  31075. image: {
  31076. source: "./media/characters/zeel/front.svg",
  31077. extra: 2599/2599,
  31078. bottom: 226/2825
  31079. }
  31080. },
  31081. },
  31082. [
  31083. {
  31084. name: "Macro",
  31085. height: math.unit(30, "meters"),
  31086. default: true
  31087. },
  31088. ]
  31089. ))
  31090. characterMakers.push(() => makeCharacter(
  31091. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31092. {
  31093. front: {
  31094. height: math.unit(6 + 7/12, "feet"),
  31095. weight: math.unit(210, "lb"),
  31096. name: "Front",
  31097. image: {
  31098. source: "./media/characters/tarn/front.svg",
  31099. extra: 3517/3220,
  31100. bottom: 91/3608
  31101. }
  31102. },
  31103. back: {
  31104. height: math.unit(6 + 7/12, "feet"),
  31105. weight: math.unit(210, "lb"),
  31106. name: "Back",
  31107. image: {
  31108. source: "./media/characters/tarn/back.svg",
  31109. extra: 3566/3241,
  31110. bottom: 34/3600
  31111. }
  31112. },
  31113. dick: {
  31114. height: math.unit(1.65, "feet"),
  31115. name: "Dick",
  31116. image: {
  31117. source: "./media/characters/tarn/dick.svg"
  31118. }
  31119. },
  31120. paw: {
  31121. height: math.unit(1.80, "feet"),
  31122. name: "Paw",
  31123. image: {
  31124. source: "./media/characters/tarn/paw.svg"
  31125. }
  31126. },
  31127. tongue: {
  31128. height: math.unit(0.97, "feet"),
  31129. name: "Tongue",
  31130. image: {
  31131. source: "./media/characters/tarn/tongue.svg"
  31132. }
  31133. },
  31134. },
  31135. [
  31136. {
  31137. name: "Micro",
  31138. height: math.unit(4, "inches")
  31139. },
  31140. {
  31141. name: "Normal",
  31142. height: math.unit(6 + 7/12, "feet"),
  31143. default: true
  31144. },
  31145. {
  31146. name: "Macro",
  31147. height: math.unit(300, "feet")
  31148. },
  31149. ]
  31150. ))
  31151. characterMakers.push(() => makeCharacter(
  31152. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31153. {
  31154. front: {
  31155. height: math.unit(5 + 7/12, "feet"),
  31156. weight: math.unit(80, "kg"),
  31157. name: "Front",
  31158. image: {
  31159. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31160. extra: 3023/2865,
  31161. bottom: 33/3056
  31162. }
  31163. },
  31164. back: {
  31165. height: math.unit(5 + 7/12, "feet"),
  31166. weight: math.unit(80, "kg"),
  31167. name: "Back",
  31168. image: {
  31169. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31170. extra: 3020/2886,
  31171. bottom: 30/3050
  31172. }
  31173. },
  31174. dick: {
  31175. height: math.unit(0.98, "feet"),
  31176. name: "Dick",
  31177. image: {
  31178. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31179. }
  31180. },
  31181. anatomy: {
  31182. height: math.unit(2.86, "feet"),
  31183. name: "Anatomy",
  31184. image: {
  31185. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31186. }
  31187. },
  31188. },
  31189. [
  31190. {
  31191. name: "Really Small",
  31192. height: math.unit(2, "inches")
  31193. },
  31194. {
  31195. name: "Micro",
  31196. height: math.unit(5.583, "inches")
  31197. },
  31198. {
  31199. name: "Normal",
  31200. height: math.unit(5 + 7/12, "feet"),
  31201. default: true
  31202. },
  31203. {
  31204. name: "Macro",
  31205. height: math.unit(67, "feet")
  31206. },
  31207. {
  31208. name: "Megamacro",
  31209. height: math.unit(134, "feet")
  31210. },
  31211. ]
  31212. ))
  31213. characterMakers.push(() => makeCharacter(
  31214. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31215. {
  31216. front: {
  31217. height: math.unit(9, "feet"),
  31218. weight: math.unit(120, "lb"),
  31219. name: "Front",
  31220. image: {
  31221. source: "./media/characters/sally/front.svg",
  31222. extra: 1506/1349,
  31223. bottom: 66/1572
  31224. }
  31225. },
  31226. },
  31227. [
  31228. {
  31229. name: "Normal",
  31230. height: math.unit(9, "feet"),
  31231. default: true
  31232. },
  31233. ]
  31234. ))
  31235. characterMakers.push(() => makeCharacter(
  31236. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31237. {
  31238. front: {
  31239. height: math.unit(8, "feet"),
  31240. weight: math.unit(900, "lb"),
  31241. name: "Front",
  31242. image: {
  31243. source: "./media/characters/owen/front.svg",
  31244. extra: 1761/1657,
  31245. bottom: 74/1835
  31246. }
  31247. },
  31248. side: {
  31249. height: math.unit(8, "feet"),
  31250. weight: math.unit(900, "lb"),
  31251. name: "Side",
  31252. image: {
  31253. source: "./media/characters/owen/side.svg",
  31254. extra: 1797/1734,
  31255. bottom: 30/1827
  31256. }
  31257. },
  31258. back: {
  31259. height: math.unit(8, "feet"),
  31260. weight: math.unit(900, "lb"),
  31261. name: "Back",
  31262. image: {
  31263. source: "./media/characters/owen/back.svg",
  31264. extra: 1796/1706,
  31265. bottom: 59/1855
  31266. }
  31267. },
  31268. maw: {
  31269. height: math.unit(1.76, "feet"),
  31270. name: "Maw",
  31271. image: {
  31272. source: "./media/characters/owen/maw.svg"
  31273. }
  31274. },
  31275. },
  31276. [
  31277. {
  31278. name: "Normal",
  31279. height: math.unit(8, "feet"),
  31280. default: true
  31281. },
  31282. ]
  31283. ))
  31284. characterMakers.push(() => makeCharacter(
  31285. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31286. {
  31287. front: {
  31288. height: math.unit(4, "feet"),
  31289. weight: math.unit(400, "lb"),
  31290. name: "Front",
  31291. image: {
  31292. source: "./media/characters/ryth/front.svg",
  31293. extra: 876/691,
  31294. bottom: 25/901
  31295. }
  31296. },
  31297. },
  31298. [
  31299. {
  31300. name: "Normal",
  31301. height: math.unit(4, "feet"),
  31302. default: true
  31303. },
  31304. ]
  31305. ))
  31306. characterMakers.push(() => makeCharacter(
  31307. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31308. {
  31309. front: {
  31310. height: math.unit(7, "feet"),
  31311. weight: math.unit(180, "lb"),
  31312. name: "Front",
  31313. image: {
  31314. source: "./media/characters/necrolance/front.svg",
  31315. extra: 1062/947,
  31316. bottom: 41/1103
  31317. }
  31318. },
  31319. back: {
  31320. height: math.unit(7, "feet"),
  31321. weight: math.unit(180, "lb"),
  31322. name: "Back",
  31323. image: {
  31324. source: "./media/characters/necrolance/back.svg",
  31325. extra: 1045/984,
  31326. bottom: 14/1059
  31327. }
  31328. },
  31329. wing: {
  31330. height: math.unit(2.67, "feet"),
  31331. name: "Wing",
  31332. image: {
  31333. source: "./media/characters/necrolance/wing.svg"
  31334. }
  31335. },
  31336. },
  31337. [
  31338. {
  31339. name: "Normal",
  31340. height: math.unit(7, "feet"),
  31341. default: true
  31342. },
  31343. ]
  31344. ))
  31345. characterMakers.push(() => makeCharacter(
  31346. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31347. {
  31348. front: {
  31349. height: math.unit(76, "meters"),
  31350. weight: math.unit(30000, "tons"),
  31351. name: "Front",
  31352. image: {
  31353. source: "./media/characters/tyler/front.svg",
  31354. extra: 1640/1640,
  31355. bottom: 114/1754
  31356. }
  31357. },
  31358. },
  31359. [
  31360. {
  31361. name: "Macro",
  31362. height: math.unit(76, "meters"),
  31363. default: true
  31364. },
  31365. ]
  31366. ))
  31367. characterMakers.push(() => makeCharacter(
  31368. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31369. {
  31370. front: {
  31371. height: math.unit(4 + 11/12, "feet"),
  31372. weight: math.unit(132, "lb"),
  31373. name: "Front",
  31374. image: {
  31375. source: "./media/characters/icey/front.svg",
  31376. extra: 2750/2550,
  31377. bottom: 33/2783
  31378. }
  31379. },
  31380. back: {
  31381. height: math.unit(4 + 11/12, "feet"),
  31382. weight: math.unit(132, "lb"),
  31383. name: "Back",
  31384. image: {
  31385. source: "./media/characters/icey/back.svg",
  31386. extra: 2624/2481,
  31387. bottom: 35/2659
  31388. }
  31389. },
  31390. },
  31391. [
  31392. {
  31393. name: "Normal",
  31394. height: math.unit(4 + 11/12, "feet"),
  31395. default: true
  31396. },
  31397. ]
  31398. ))
  31399. characterMakers.push(() => makeCharacter(
  31400. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31401. {
  31402. front: {
  31403. height: math.unit(100, "feet"),
  31404. weight: math.unit(0, "lb"),
  31405. name: "Front",
  31406. image: {
  31407. source: "./media/characters/smile/front.svg",
  31408. extra: 2983/2912,
  31409. bottom: 162/3145
  31410. }
  31411. },
  31412. back: {
  31413. height: math.unit(100, "feet"),
  31414. weight: math.unit(0, "lb"),
  31415. name: "Back",
  31416. image: {
  31417. source: "./media/characters/smile/back.svg",
  31418. extra: 3143/3031,
  31419. bottom: 91/3234
  31420. }
  31421. },
  31422. head: {
  31423. height: math.unit(26.3, "feet"),
  31424. weight: math.unit(0, "lb"),
  31425. name: "Head",
  31426. image: {
  31427. source: "./media/characters/smile/head.svg"
  31428. }
  31429. },
  31430. collar: {
  31431. height: math.unit(5.3, "feet"),
  31432. weight: math.unit(0, "lb"),
  31433. name: "Collar",
  31434. image: {
  31435. source: "./media/characters/smile/collar.svg"
  31436. }
  31437. },
  31438. },
  31439. [
  31440. {
  31441. name: "Macro",
  31442. height: math.unit(100, "feet"),
  31443. default: true
  31444. },
  31445. ]
  31446. ))
  31447. characterMakers.push(() => makeCharacter(
  31448. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31449. {
  31450. dragon: {
  31451. height: math.unit(26, "feet"),
  31452. weight: math.unit(36, "tons"),
  31453. name: "Dragon",
  31454. image: {
  31455. source: "./media/characters/arimphae/dragon.svg",
  31456. extra: 1574/983,
  31457. bottom: 357/1931
  31458. }
  31459. },
  31460. drake: {
  31461. height: math.unit(9, "feet"),
  31462. weight: math.unit(1.5, "tons"),
  31463. name: "Drake",
  31464. image: {
  31465. source: "./media/characters/arimphae/drake.svg",
  31466. extra: 1120/925,
  31467. bottom: 435/1555
  31468. }
  31469. },
  31470. },
  31471. [
  31472. {
  31473. name: "Small",
  31474. height: math.unit(26*5/9, "feet")
  31475. },
  31476. {
  31477. name: "Normal",
  31478. height: math.unit(26, "feet"),
  31479. default: true
  31480. },
  31481. ]
  31482. ))
  31483. characterMakers.push(() => makeCharacter(
  31484. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31485. {
  31486. front: {
  31487. height: math.unit(8 + 9/12, "feet"),
  31488. name: "Front",
  31489. image: {
  31490. source: "./media/characters/xander/front.svg",
  31491. extra: 848/673,
  31492. bottom: 62/910
  31493. }
  31494. },
  31495. },
  31496. [
  31497. {
  31498. name: "Normal",
  31499. height: math.unit(8 + 9/12, "feet"),
  31500. default: true
  31501. },
  31502. {
  31503. name: "Gaze Grabber",
  31504. height: math.unit(13 + 8/12, "feet")
  31505. },
  31506. {
  31507. name: "Jaw Dropper",
  31508. height: math.unit(27, "feet")
  31509. },
  31510. {
  31511. name: "Show Stopper",
  31512. height: math.unit(136, "feet")
  31513. },
  31514. {
  31515. name: "Superstar",
  31516. height: math.unit(1.9e6, "miles")
  31517. },
  31518. ]
  31519. ))
  31520. characterMakers.push(() => makeCharacter(
  31521. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31522. {
  31523. side: {
  31524. height: math.unit(2100, "feet"),
  31525. name: "Side",
  31526. image: {
  31527. source: "./media/characters/osiris/side.svg",
  31528. extra: 1105/939,
  31529. bottom: 167/1272
  31530. }
  31531. },
  31532. },
  31533. [
  31534. {
  31535. name: "Macro",
  31536. height: math.unit(2100, "feet"),
  31537. default: true
  31538. },
  31539. ]
  31540. ))
  31541. characterMakers.push(() => makeCharacter(
  31542. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31543. {
  31544. front: {
  31545. height: math.unit(6 + 8/12, "feet"),
  31546. weight: math.unit(225, "lb"),
  31547. name: "Front",
  31548. image: {
  31549. source: "./media/characters/rhys-londe/front.svg",
  31550. extra: 2258/2141,
  31551. bottom: 188/2446
  31552. }
  31553. },
  31554. back: {
  31555. height: math.unit(6 + 8/12, "feet"),
  31556. weight: math.unit(225, "lb"),
  31557. name: "Back",
  31558. image: {
  31559. source: "./media/characters/rhys-londe/back.svg",
  31560. extra: 2237/2137,
  31561. bottom: 63/2300
  31562. }
  31563. },
  31564. frontNsfw: {
  31565. height: math.unit(6 + 8/12, "feet"),
  31566. weight: math.unit(225, "lb"),
  31567. name: "Front (NSFW)",
  31568. image: {
  31569. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31570. extra: 2258/2141,
  31571. bottom: 188/2446
  31572. }
  31573. },
  31574. backNsfw: {
  31575. height: math.unit(6 + 8/12, "feet"),
  31576. weight: math.unit(225, "lb"),
  31577. name: "Back (NSFW)",
  31578. image: {
  31579. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31580. extra: 2237/2137,
  31581. bottom: 63/2300
  31582. }
  31583. },
  31584. dick: {
  31585. height: math.unit(30, "inches"),
  31586. name: "Dick",
  31587. image: {
  31588. source: "./media/characters/rhys-londe/dick.svg"
  31589. }
  31590. },
  31591. maw: {
  31592. height: math.unit(1.6, "feet"),
  31593. name: "Maw",
  31594. image: {
  31595. source: "./media/characters/rhys-londe/maw.svg"
  31596. }
  31597. },
  31598. },
  31599. [
  31600. {
  31601. name: "Normal",
  31602. height: math.unit(6 + 8/12, "feet"),
  31603. default: true
  31604. },
  31605. ]
  31606. ))
  31607. characterMakers.push(() => makeCharacter(
  31608. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31609. {
  31610. front: {
  31611. height: math.unit(3 + 10/12, "feet"),
  31612. weight: math.unit(90, "lb"),
  31613. name: "Front",
  31614. image: {
  31615. source: "./media/characters/taivas-ensim/front.svg",
  31616. extra: 1327/1216,
  31617. bottom: 96/1423
  31618. }
  31619. },
  31620. back: {
  31621. height: math.unit(3 + 10/12, "feet"),
  31622. weight: math.unit(90, "lb"),
  31623. name: "Back",
  31624. image: {
  31625. source: "./media/characters/taivas-ensim/back.svg",
  31626. extra: 1355/1247,
  31627. bottom: 11/1366
  31628. }
  31629. },
  31630. frontNsfw: {
  31631. height: math.unit(3 + 10/12, "feet"),
  31632. weight: math.unit(90, "lb"),
  31633. name: "Front (NSFW)",
  31634. image: {
  31635. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31636. extra: 1327/1216,
  31637. bottom: 96/1423
  31638. }
  31639. },
  31640. backNsfw: {
  31641. height: math.unit(3 + 10/12, "feet"),
  31642. weight: math.unit(90, "lb"),
  31643. name: "Back (NSFW)",
  31644. image: {
  31645. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31646. extra: 1355/1247,
  31647. bottom: 11/1366
  31648. }
  31649. },
  31650. },
  31651. [
  31652. {
  31653. name: "Normal",
  31654. height: math.unit(3 + 10/12, "feet"),
  31655. default: true
  31656. },
  31657. ]
  31658. ))
  31659. characterMakers.push(() => makeCharacter(
  31660. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31661. {
  31662. front: {
  31663. height: math.unit(9 + 6/12, "feet"),
  31664. weight: math.unit(940, "lb"),
  31665. name: "Front",
  31666. image: {
  31667. source: "./media/characters/byliss/front.svg",
  31668. extra: 1327/1290,
  31669. bottom: 82/1409
  31670. }
  31671. },
  31672. back: {
  31673. height: math.unit(9 + 6/12, "feet"),
  31674. weight: math.unit(940, "lb"),
  31675. name: "Back",
  31676. image: {
  31677. source: "./media/characters/byliss/back.svg",
  31678. extra: 1376/1349,
  31679. bottom: 9/1385
  31680. }
  31681. },
  31682. frontNsfw: {
  31683. height: math.unit(9 + 6/12, "feet"),
  31684. weight: math.unit(940, "lb"),
  31685. name: "Front (NSFW)",
  31686. image: {
  31687. source: "./media/characters/byliss/front-nsfw.svg",
  31688. extra: 1327/1290,
  31689. bottom: 82/1409
  31690. }
  31691. },
  31692. backNsfw: {
  31693. height: math.unit(9 + 6/12, "feet"),
  31694. weight: math.unit(940, "lb"),
  31695. name: "Back (NSFW)",
  31696. image: {
  31697. source: "./media/characters/byliss/back-nsfw.svg",
  31698. extra: 1376/1349,
  31699. bottom: 9/1385
  31700. }
  31701. },
  31702. },
  31703. [
  31704. {
  31705. name: "Normal",
  31706. height: math.unit(9 + 6/12, "feet"),
  31707. default: true
  31708. },
  31709. ]
  31710. ))
  31711. characterMakers.push(() => makeCharacter(
  31712. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31713. {
  31714. full: {
  31715. height: math.unit(5 + 2/12, "feet"),
  31716. weight: math.unit(164, "lb"),
  31717. name: "Full",
  31718. image: {
  31719. source: "./media/characters/noraly/full.svg",
  31720. extra: 1114/1059,
  31721. bottom: 35/1149
  31722. }
  31723. },
  31724. fuller: {
  31725. height: math.unit(5 + 2/12, "feet"),
  31726. weight: math.unit(230, "lb"),
  31727. name: "Fuller",
  31728. image: {
  31729. source: "./media/characters/noraly/fuller.svg",
  31730. extra: 1114/1059,
  31731. bottom: 35/1149
  31732. }
  31733. },
  31734. fullest: {
  31735. height: math.unit(5 + 2/12, "feet"),
  31736. weight: math.unit(300, "lb"),
  31737. name: "Fullest",
  31738. image: {
  31739. source: "./media/characters/noraly/fullest.svg",
  31740. extra: 1114/1059,
  31741. bottom: 35/1149
  31742. }
  31743. },
  31744. },
  31745. [
  31746. {
  31747. name: "Normal",
  31748. height: math.unit(5 + 2/12, "feet"),
  31749. default: true
  31750. },
  31751. ]
  31752. ))
  31753. characterMakers.push(() => makeCharacter(
  31754. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31755. {
  31756. front: {
  31757. height: math.unit(5 + 2/12, "feet"),
  31758. weight: math.unit(210, "lb"),
  31759. name: "Front",
  31760. image: {
  31761. source: "./media/characters/pera/front.svg",
  31762. extra: 1560/1531,
  31763. bottom: 165/1725
  31764. }
  31765. },
  31766. back: {
  31767. height: math.unit(5 + 2/12, "feet"),
  31768. weight: math.unit(210, "lb"),
  31769. name: "Back",
  31770. image: {
  31771. source: "./media/characters/pera/back.svg",
  31772. extra: 1523/1493,
  31773. bottom: 152/1675
  31774. }
  31775. },
  31776. dick: {
  31777. height: math.unit(2.4, "feet"),
  31778. name: "Dick",
  31779. image: {
  31780. source: "./media/characters/pera/dick.svg"
  31781. }
  31782. },
  31783. },
  31784. [
  31785. {
  31786. name: "Normal",
  31787. height: math.unit(5 + 2/12, "feet"),
  31788. default: true
  31789. },
  31790. ]
  31791. ))
  31792. characterMakers.push(() => makeCharacter(
  31793. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31794. {
  31795. front: {
  31796. height: math.unit(12, "feet"),
  31797. weight: math.unit(3200, "lb"),
  31798. name: "Front",
  31799. image: {
  31800. source: "./media/characters/julian/front.svg",
  31801. extra: 2962/2701,
  31802. bottom: 184/3146
  31803. }
  31804. },
  31805. maw: {
  31806. height: math.unit(5.35, "feet"),
  31807. name: "Maw",
  31808. image: {
  31809. source: "./media/characters/julian/maw.svg"
  31810. }
  31811. },
  31812. paw: {
  31813. height: math.unit(3.07, "feet"),
  31814. name: "Paw",
  31815. image: {
  31816. source: "./media/characters/julian/paw.svg"
  31817. }
  31818. },
  31819. },
  31820. [
  31821. {
  31822. name: "Default",
  31823. height: math.unit(12, "feet"),
  31824. default: true
  31825. },
  31826. {
  31827. name: "Big",
  31828. height: math.unit(50, "feet")
  31829. },
  31830. {
  31831. name: "Really Big",
  31832. height: math.unit(1, "mile")
  31833. },
  31834. {
  31835. name: "Extremely Big",
  31836. height: math.unit(100, "miles")
  31837. },
  31838. {
  31839. name: "Planet Hugger",
  31840. height: math.unit(200, "megameters")
  31841. },
  31842. {
  31843. name: "Unreasonably Big",
  31844. height: math.unit(1e300, "meters")
  31845. },
  31846. ]
  31847. ))
  31848. characterMakers.push(() => makeCharacter(
  31849. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31850. {
  31851. solgooleo: {
  31852. height: math.unit(4, "meters"),
  31853. weight: math.unit(6000*1.5, "kg"),
  31854. volume: math.unit(6000, "liters"),
  31855. name: "Solgooleo",
  31856. image: {
  31857. source: "./media/characters/pi/solgooleo.svg",
  31858. extra: 388/331,
  31859. bottom: 29/417
  31860. }
  31861. },
  31862. },
  31863. [
  31864. {
  31865. name: "Normal",
  31866. height: math.unit(4, "meters"),
  31867. default: true
  31868. },
  31869. ]
  31870. ))
  31871. characterMakers.push(() => makeCharacter(
  31872. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31873. {
  31874. front: {
  31875. height: math.unit(8 + 2/12, "feet"),
  31876. weight: math.unit(4, "tons"),
  31877. name: "Front",
  31878. image: {
  31879. source: "./media/characters/shaun/front.svg",
  31880. extra: 1550/1505,
  31881. bottom: 353/1903
  31882. }
  31883. },
  31884. },
  31885. [
  31886. {
  31887. name: "Lorg",
  31888. height: math.unit(8 + 2/12, "feet"),
  31889. default: true
  31890. },
  31891. ]
  31892. ))
  31893. characterMakers.push(() => makeCharacter(
  31894. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  31895. {
  31896. front: {
  31897. height: math.unit(7, "feet"),
  31898. name: "Front",
  31899. image: {
  31900. source: "./media/characters/sini/front.svg",
  31901. extra: 726/678,
  31902. bottom: 35/761
  31903. }
  31904. },
  31905. back: {
  31906. height: math.unit(7, "feet"),
  31907. name: "Back",
  31908. image: {
  31909. source: "./media/characters/sini/back.svg",
  31910. extra: 743/701,
  31911. bottom: 12/755
  31912. }
  31913. },
  31914. mawAnthro: {
  31915. height: math.unit(2.14, "feet"),
  31916. name: "Maw (Anthro)",
  31917. image: {
  31918. source: "./media/characters/sini/maw-anthro.svg"
  31919. }
  31920. },
  31921. dick: {
  31922. height: math.unit(1.45, "feet"),
  31923. name: "Dick (Anthro)",
  31924. image: {
  31925. source: "./media/characters/sini/dick-anthro.svg"
  31926. }
  31927. },
  31928. feral: {
  31929. height: math.unit(13, "feet"),
  31930. name: "Feral",
  31931. image: {
  31932. source: "./media/characters/sini/feral.svg",
  31933. extra: 814/605,
  31934. bottom: 11/825
  31935. }
  31936. },
  31937. mawFeral: {
  31938. height: math.unit(4.6, "feet"),
  31939. name: "Maw-feral",
  31940. image: {
  31941. source: "./media/characters/sini/maw-feral.svg"
  31942. }
  31943. },
  31944. footFeral: {
  31945. height: math.unit(4.2, "feet"),
  31946. name: "Foot-feral",
  31947. image: {
  31948. source: "./media/characters/sini/foot-feral.svg"
  31949. }
  31950. },
  31951. },
  31952. [
  31953. {
  31954. name: "Normal",
  31955. height: math.unit(7, "feet"),
  31956. default: true
  31957. },
  31958. ]
  31959. ))
  31960. characterMakers.push(() => makeCharacter(
  31961. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  31962. {
  31963. side: {
  31964. height: math.unit(13, "meters"),
  31965. weight: math.unit(9072, "kg"),
  31966. name: "Side",
  31967. image: {
  31968. source: "./media/characters/raylldo/side.svg",
  31969. extra: 403/344,
  31970. bottom: 42/445
  31971. }
  31972. },
  31973. leaping: {
  31974. height: math.unit(12.3, "meters"),
  31975. weight: math.unit(9072, "kg"),
  31976. name: "Leaping",
  31977. image: {
  31978. source: "./media/characters/raylldo/leaping.svg",
  31979. extra: 470/249,
  31980. bottom: 13/483
  31981. }
  31982. },
  31983. flying: {
  31984. height: math.unit(18, "meters"),
  31985. weight: math.unit(9072, "kg"),
  31986. name: "Flying",
  31987. image: {
  31988. source: "./media/characters/raylldo/flying.svg"
  31989. }
  31990. },
  31991. head: {
  31992. height: math.unit(5.85, "meters"),
  31993. name: "Head",
  31994. image: {
  31995. source: "./media/characters/raylldo/head.svg"
  31996. }
  31997. },
  31998. maw: {
  31999. height: math.unit(5.32, "meters"),
  32000. name: "Maw",
  32001. image: {
  32002. source: "./media/characters/raylldo/maw.svg"
  32003. }
  32004. },
  32005. eye: {
  32006. height: math.unit(0.54, "meters"),
  32007. name: "Eye",
  32008. image: {
  32009. source: "./media/characters/raylldo/eye.svg"
  32010. }
  32011. },
  32012. },
  32013. [
  32014. {
  32015. name: "Normal",
  32016. height: math.unit(13, "meters"),
  32017. default: true
  32018. },
  32019. ]
  32020. ))
  32021. characterMakers.push(() => makeCharacter(
  32022. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32023. {
  32024. anthroFront: {
  32025. height: math.unit(9, "feet"),
  32026. weight: math.unit(600, "lb"),
  32027. name: "Anthro (Front)",
  32028. image: {
  32029. source: "./media/characters/glint/anthro-front.svg",
  32030. extra: 1097/1018,
  32031. bottom: 28/1125
  32032. }
  32033. },
  32034. anthroBack: {
  32035. height: math.unit(9, "feet"),
  32036. weight: math.unit(600, "lb"),
  32037. name: "Anthro (Back)",
  32038. image: {
  32039. source: "./media/characters/glint/anthro-back.svg",
  32040. extra: 1154/997,
  32041. bottom: 36/1190
  32042. }
  32043. },
  32044. feral: {
  32045. height: math.unit(11, "feet"),
  32046. weight: math.unit(50000, "lb"),
  32047. name: "Feral",
  32048. image: {
  32049. source: "./media/characters/glint/feral.svg",
  32050. extra: 3035/1585,
  32051. bottom: 1169/4204
  32052. }
  32053. },
  32054. dickAnthro: {
  32055. height: math.unit(0.7, "meters"),
  32056. name: "Dick (Anthro)",
  32057. image: {
  32058. source: "./media/characters/glint/dick-anthro.svg"
  32059. }
  32060. },
  32061. dickFeral: {
  32062. height: math.unit(2.65, "meters"),
  32063. name: "Dick (Feral)",
  32064. image: {
  32065. source: "./media/characters/glint/dick-feral.svg"
  32066. }
  32067. },
  32068. slitHidden: {
  32069. height: math.unit(5.85, "meters"),
  32070. name: "Slit (Hidden)",
  32071. image: {
  32072. source: "./media/characters/glint/slit-hidden.svg"
  32073. }
  32074. },
  32075. slitErect: {
  32076. height: math.unit(5.85, "meters"),
  32077. name: "Slit (Erect)",
  32078. image: {
  32079. source: "./media/characters/glint/slit-erect.svg"
  32080. }
  32081. },
  32082. mawAnthro: {
  32083. height: math.unit(0.63, "meters"),
  32084. name: "Maw (Anthro)",
  32085. image: {
  32086. source: "./media/characters/glint/maw.svg"
  32087. }
  32088. },
  32089. mawFeral: {
  32090. height: math.unit(2.89, "meters"),
  32091. name: "Maw (Feral)",
  32092. image: {
  32093. source: "./media/characters/glint/maw.svg"
  32094. }
  32095. },
  32096. },
  32097. [
  32098. {
  32099. name: "Normal",
  32100. height: math.unit(9, "feet"),
  32101. default: true
  32102. },
  32103. ]
  32104. ))
  32105. characterMakers.push(() => makeCharacter(
  32106. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32107. {
  32108. side: {
  32109. height: math.unit(15, "feet"),
  32110. weight: math.unit(5000, "kg"),
  32111. name: "Side",
  32112. image: {
  32113. source: "./media/characters/kairne/side.svg",
  32114. extra: 979/811,
  32115. bottom: 13/992
  32116. }
  32117. },
  32118. front: {
  32119. height: math.unit(15, "feet"),
  32120. weight: math.unit(5000, "kg"),
  32121. name: "Front",
  32122. image: {
  32123. source: "./media/characters/kairne/front.svg",
  32124. extra: 908/814,
  32125. bottom: 26/934
  32126. }
  32127. },
  32128. sideNsfw: {
  32129. height: math.unit(15, "feet"),
  32130. weight: math.unit(5000, "kg"),
  32131. name: "Side (NSFW)",
  32132. image: {
  32133. source: "./media/characters/kairne/side-nsfw.svg",
  32134. extra: 979/811,
  32135. bottom: 13/992
  32136. }
  32137. },
  32138. frontNsfw: {
  32139. height: math.unit(15, "feet"),
  32140. weight: math.unit(5000, "kg"),
  32141. name: "Front (NSFW)",
  32142. image: {
  32143. source: "./media/characters/kairne/front-nsfw.svg",
  32144. extra: 908/814,
  32145. bottom: 26/934
  32146. }
  32147. },
  32148. dickCaged: {
  32149. height: math.unit(0.65, "meters"),
  32150. name: "Dick-caged",
  32151. image: {
  32152. source: "./media/characters/kairne/dick-caged.svg"
  32153. }
  32154. },
  32155. dick: {
  32156. height: math.unit(0.79, "meters"),
  32157. name: "Dick",
  32158. image: {
  32159. source: "./media/characters/kairne/dick.svg"
  32160. }
  32161. },
  32162. genitals: {
  32163. height: math.unit(1.29, "meters"),
  32164. name: "Genitals",
  32165. image: {
  32166. source: "./media/characters/kairne/genitals.svg"
  32167. }
  32168. },
  32169. maw: {
  32170. height: math.unit(1.73, "meters"),
  32171. name: "Maw",
  32172. image: {
  32173. source: "./media/characters/kairne/maw.svg"
  32174. }
  32175. },
  32176. },
  32177. [
  32178. {
  32179. name: "Normal",
  32180. height: math.unit(15, "feet"),
  32181. default: true
  32182. },
  32183. ]
  32184. ))
  32185. characterMakers.push(() => makeCharacter(
  32186. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32187. {
  32188. front: {
  32189. height: math.unit(5 + 8/12, "feet"),
  32190. weight: math.unit(139, "lb"),
  32191. name: "Front",
  32192. image: {
  32193. source: "./media/characters/biscuit-jackal/front.svg",
  32194. extra: 2106/1961,
  32195. bottom: 58/2164
  32196. }
  32197. },
  32198. back: {
  32199. height: math.unit(5 + 8/12, "feet"),
  32200. weight: math.unit(139, "lb"),
  32201. name: "Back",
  32202. image: {
  32203. source: "./media/characters/biscuit-jackal/back.svg",
  32204. extra: 2132/1976,
  32205. bottom: 57/2189
  32206. }
  32207. },
  32208. werejackal: {
  32209. height: math.unit(6 + 3/12, "feet"),
  32210. weight: math.unit(188, "lb"),
  32211. name: "Werejackal",
  32212. image: {
  32213. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32214. extra: 2373/2178,
  32215. bottom: 53/2426
  32216. }
  32217. },
  32218. },
  32219. [
  32220. {
  32221. name: "Normal",
  32222. height: math.unit(5 + 8/12, "feet"),
  32223. default: true
  32224. },
  32225. ]
  32226. ))
  32227. characterMakers.push(() => makeCharacter(
  32228. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32229. {
  32230. front: {
  32231. height: math.unit(140, "cm"),
  32232. weight: math.unit(45, "kg"),
  32233. name: "Front",
  32234. image: {
  32235. source: "./media/characters/tayra-white/front.svg",
  32236. extra: 2229/2192,
  32237. bottom: 75/2304
  32238. }
  32239. },
  32240. },
  32241. [
  32242. {
  32243. name: "Normal",
  32244. height: math.unit(140, "cm"),
  32245. default: true
  32246. },
  32247. ]
  32248. ))
  32249. //characters
  32250. function makeCharacters() {
  32251. const results = [];
  32252. characterMakers.forEach(character => {
  32253. results.push(character());
  32254. });
  32255. return results;
  32256. }