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

31286 строки
784 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon", "candy"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. "ant": {
  1380. name: "Ant",
  1381. parents: ["insect"]
  1382. },
  1383. "frog": {
  1384. name: "Frog",
  1385. parents: ["amphibian"]
  1386. },
  1387. "amphibian": {
  1388. name: "Amphibian",
  1389. parents: ["animal"]
  1390. },
  1391. "pangolin": {
  1392. name: "Pangolin",
  1393. parents: ["mammal"]
  1394. },
  1395. "uragi'viidorn": {
  1396. name: "Uragi'viidorn",
  1397. parents: ["avian", "bear"]
  1398. },
  1399. "gryphdelphais": {
  1400. name: "Gryphdelphais",
  1401. parents: ["dolphin", "gryphon"]
  1402. },
  1403. "plush": {
  1404. name: "Plush",
  1405. parents: ["construct"]
  1406. },
  1407. "draiger": {
  1408. name: "Draiger",
  1409. parents: ["dragon","tiger"]
  1410. },
  1411. "foxsky": {
  1412. name: "Foxsky",
  1413. parents: ["fox", "husky"]
  1414. },
  1415. }
  1416. //species
  1417. function getSpeciesInfo(speciesList) {
  1418. let result = new Set();
  1419. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1420. result.add(entry)
  1421. });
  1422. return Array.from(result);
  1423. };
  1424. function getSpeciesInfoHelper(species) {
  1425. if (!speciesData[species]) {
  1426. console.warn(species + " doesn't exist");
  1427. return [];
  1428. }
  1429. if (speciesData[species].parents) {
  1430. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1431. } else {
  1432. return [species];
  1433. }
  1434. }
  1435. characterMakers.push(() => makeCharacter(
  1436. {
  1437. name: "Fen",
  1438. species: ["crux"],
  1439. description: {
  1440. title: "Bio",
  1441. text: "Very furry. Sheds on everything."
  1442. },
  1443. tags: [
  1444. "anthro",
  1445. "goo"
  1446. ]
  1447. },
  1448. {
  1449. back: {
  1450. height: math.unit(2.2428, "meter"),
  1451. weight: math.unit(124.738, "kg"),
  1452. name: "Back",
  1453. image: {
  1454. source: "./media/characters/fen/back.svg",
  1455. extra: 2024 / 1867,
  1456. bottom: 13 / 2037
  1457. },
  1458. info: {
  1459. description: {
  1460. mode: "append",
  1461. text: "\n\nHe is not currently looking at you."
  1462. }
  1463. }
  1464. },
  1465. full: {
  1466. height: math.unit(1.34, "meter"),
  1467. weight: math.unit(225, "kg"),
  1468. name: "Full",
  1469. image: {
  1470. source: "./media/characters/fen/full.svg"
  1471. },
  1472. info: {
  1473. description: {
  1474. mode: "append",
  1475. text: "\n\nMunch."
  1476. }
  1477. }
  1478. },
  1479. kneeling: {
  1480. height: math.unit(5.4, "feet"),
  1481. weight: math.unit(124.738, "kg"),
  1482. name: "Kneeling",
  1483. image: {
  1484. source: "./media/characters/fen/kneeling.svg",
  1485. extra: 563 / 507
  1486. }
  1487. },
  1488. goo: {
  1489. height: math.unit(2.8, "feet"),
  1490. weight: math.unit(125, "kg"),
  1491. capacity: math.unit(1, "people"),
  1492. name: "Goo",
  1493. image: {
  1494. source: "./media/characters/fen/goo.svg",
  1495. bottom: 116 / 613
  1496. }
  1497. },
  1498. lounging: {
  1499. height: math.unit(6.5, "feet"),
  1500. weight: math.unit(125, "kg"),
  1501. name: "Lounging",
  1502. image: {
  1503. source: "./media/characters/fen/lounging.svg"
  1504. }
  1505. },
  1506. },
  1507. [
  1508. {
  1509. name: "Normal",
  1510. height: math.unit(2.2428, "meter")
  1511. },
  1512. {
  1513. name: "Big",
  1514. height: math.unit(12, "feet")
  1515. },
  1516. {
  1517. name: "Minimacro",
  1518. height: math.unit(40, "feet"),
  1519. default: true,
  1520. info: {
  1521. description: {
  1522. mode: "append",
  1523. text: "\n\nTOO DAMN BIG"
  1524. }
  1525. }
  1526. },
  1527. {
  1528. name: "Macro",
  1529. height: math.unit(100, "feet"),
  1530. info: {
  1531. description: {
  1532. mode: "append",
  1533. text: "\n\nTOO DAMN BIG"
  1534. }
  1535. }
  1536. },
  1537. {
  1538. name: "Macro+",
  1539. height: math.unit(300, "feet")
  1540. },
  1541. {
  1542. name: "Megamacro",
  1543. height: math.unit(2, "miles")
  1544. }
  1545. ]
  1546. ))
  1547. characterMakers.push(() => makeCharacter(
  1548. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1549. {
  1550. front: {
  1551. height: math.unit(183, "cm"),
  1552. weight: math.unit(80, "kg"),
  1553. name: "Front",
  1554. image: {
  1555. source: "./media/characters/sofia-fluttertail/front.svg",
  1556. bottom: 0.01,
  1557. extra: 2154 / 2081
  1558. }
  1559. },
  1560. frontAlt: {
  1561. height: math.unit(183, "cm"),
  1562. weight: math.unit(80, "kg"),
  1563. name: "Front (alt)",
  1564. image: {
  1565. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1566. }
  1567. },
  1568. back: {
  1569. height: math.unit(183, "cm"),
  1570. weight: math.unit(80, "kg"),
  1571. name: "Back",
  1572. image: {
  1573. source: "./media/characters/sofia-fluttertail/back.svg"
  1574. }
  1575. },
  1576. kneeling: {
  1577. height: math.unit(125, "cm"),
  1578. weight: math.unit(80, "kg"),
  1579. name: "Kneeling",
  1580. image: {
  1581. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1582. extra: 1033 / 977,
  1583. bottom: 23.7 / 1057
  1584. }
  1585. },
  1586. maw: {
  1587. height: math.unit(183 / 5, "cm"),
  1588. name: "Maw",
  1589. image: {
  1590. source: "./media/characters/sofia-fluttertail/maw.svg"
  1591. }
  1592. },
  1593. mawcloseup: {
  1594. height: math.unit(183 / 5 * 0.41, "cm"),
  1595. name: "Maw (Closeup)",
  1596. image: {
  1597. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1598. }
  1599. },
  1600. paws: {
  1601. height: math.unit(1.17, "feet"),
  1602. name: "Paws",
  1603. image: {
  1604. source: "./media/characters/sofia-fluttertail/paws.svg",
  1605. extra: 851 / 851,
  1606. bottom: 17 / 868
  1607. }
  1608. },
  1609. },
  1610. [
  1611. {
  1612. name: "Normal",
  1613. height: math.unit(1.83, "meter")
  1614. },
  1615. {
  1616. name: "Size Thief",
  1617. height: math.unit(18, "feet")
  1618. },
  1619. {
  1620. name: "50 Foot Collie",
  1621. height: math.unit(50, "feet")
  1622. },
  1623. {
  1624. name: "Macro",
  1625. height: math.unit(96, "feet"),
  1626. default: true
  1627. },
  1628. {
  1629. name: "Megamerger",
  1630. height: math.unit(650, "feet")
  1631. },
  1632. ]
  1633. ))
  1634. characterMakers.push(() => makeCharacter(
  1635. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1636. {
  1637. front: {
  1638. height: math.unit(7, "feet"),
  1639. weight: math.unit(100, "kg"),
  1640. name: "Front",
  1641. image: {
  1642. source: "./media/characters/march/front.svg",
  1643. extra: 1,
  1644. bottom: 0.015
  1645. }
  1646. },
  1647. foot: {
  1648. height: math.unit(0.9, "feet"),
  1649. name: "Foot",
  1650. image: {
  1651. source: "./media/characters/march/foot.svg"
  1652. }
  1653. },
  1654. },
  1655. [
  1656. {
  1657. name: "Normal",
  1658. height: math.unit(7.9, "feet")
  1659. },
  1660. {
  1661. name: "Macro",
  1662. height: math.unit(220, "meters")
  1663. },
  1664. {
  1665. name: "Megamacro",
  1666. height: math.unit(2.98, "km"),
  1667. default: true
  1668. },
  1669. {
  1670. name: "Gigamacro",
  1671. height: math.unit(15963, "km")
  1672. },
  1673. {
  1674. name: "Teramacro",
  1675. height: math.unit(2980000000, "km")
  1676. },
  1677. {
  1678. name: "Examacro",
  1679. height: math.unit(250, "parsecs")
  1680. },
  1681. ]
  1682. ))
  1683. characterMakers.push(() => makeCharacter(
  1684. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1685. {
  1686. front: {
  1687. height: math.unit(6, "feet"),
  1688. weight: math.unit(60, "kg"),
  1689. name: "Front",
  1690. image: {
  1691. source: "./media/characters/noir/front.svg",
  1692. extra: 1,
  1693. bottom: 0.032
  1694. }
  1695. },
  1696. },
  1697. [
  1698. {
  1699. name: "Normal",
  1700. height: math.unit(6.6, "feet")
  1701. },
  1702. {
  1703. name: "Macro",
  1704. height: math.unit(500, "feet")
  1705. },
  1706. {
  1707. name: "Megamacro",
  1708. height: math.unit(2.5, "km"),
  1709. default: true
  1710. },
  1711. {
  1712. name: "Gigamacro",
  1713. height: math.unit(22500, "km")
  1714. },
  1715. {
  1716. name: "Teramacro",
  1717. height: math.unit(2500000000, "km")
  1718. },
  1719. {
  1720. name: "Examacro",
  1721. height: math.unit(200, "parsecs")
  1722. },
  1723. ]
  1724. ))
  1725. characterMakers.push(() => makeCharacter(
  1726. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1727. {
  1728. front: {
  1729. height: math.unit(7, "feet"),
  1730. weight: math.unit(100, "kg"),
  1731. name: "Front",
  1732. image: {
  1733. source: "./media/characters/okuri/front.svg",
  1734. extra: 1,
  1735. bottom: 0.037
  1736. }
  1737. },
  1738. back: {
  1739. height: math.unit(7, "feet"),
  1740. weight: math.unit(100, "kg"),
  1741. name: "Back",
  1742. image: {
  1743. source: "./media/characters/okuri/back.svg",
  1744. extra: 1,
  1745. bottom: 0.007
  1746. }
  1747. },
  1748. },
  1749. [
  1750. {
  1751. name: "Megamacro",
  1752. height: math.unit(100, "miles"),
  1753. default: true
  1754. },
  1755. ]
  1756. ))
  1757. characterMakers.push(() => makeCharacter(
  1758. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1759. {
  1760. front: {
  1761. height: math.unit(7, "feet"),
  1762. weight: math.unit(100, "kg"),
  1763. name: "Front",
  1764. image: {
  1765. source: "./media/characters/manny/front.svg",
  1766. extra: 1,
  1767. bottom: 0.06
  1768. }
  1769. },
  1770. back: {
  1771. height: math.unit(7, "feet"),
  1772. weight: math.unit(100, "kg"),
  1773. name: "Back",
  1774. image: {
  1775. source: "./media/characters/manny/back.svg",
  1776. extra: 1,
  1777. bottom: 0.014
  1778. }
  1779. },
  1780. },
  1781. [
  1782. {
  1783. name: "Normal",
  1784. height: math.unit(7, "feet"),
  1785. },
  1786. {
  1787. name: "Macro",
  1788. height: math.unit(78, "feet"),
  1789. default: true
  1790. },
  1791. {
  1792. name: "Macro+",
  1793. height: math.unit(300, "meters")
  1794. },
  1795. {
  1796. name: "Macro++",
  1797. height: math.unit(2400, "meters")
  1798. },
  1799. {
  1800. name: "Megamacro",
  1801. height: math.unit(5167, "meters")
  1802. },
  1803. {
  1804. name: "Gigamacro",
  1805. height: math.unit(41769, "miles")
  1806. },
  1807. ]
  1808. ))
  1809. characterMakers.push(() => makeCharacter(
  1810. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1811. {
  1812. front: {
  1813. height: math.unit(7, "feet"),
  1814. weight: math.unit(100, "kg"),
  1815. name: "Front",
  1816. image: {
  1817. source: "./media/characters/adake/front-1.svg"
  1818. }
  1819. },
  1820. frontAlt: {
  1821. height: math.unit(7, "feet"),
  1822. weight: math.unit(100, "kg"),
  1823. name: "Front (Alt)",
  1824. image: {
  1825. source: "./media/characters/adake/front-2.svg",
  1826. extra: 1,
  1827. bottom: 0.01
  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/adake/back.svg",
  1836. }
  1837. },
  1838. kneel: {
  1839. height: math.unit(5.385, "feet"),
  1840. weight: math.unit(100, "kg"),
  1841. name: "Kneeling",
  1842. image: {
  1843. source: "./media/characters/adake/kneel.svg",
  1844. bottom: 0.052
  1845. }
  1846. },
  1847. },
  1848. [
  1849. {
  1850. name: "Normal",
  1851. height: math.unit(7, "feet"),
  1852. },
  1853. {
  1854. name: "Macro",
  1855. height: math.unit(78, "feet"),
  1856. default: true
  1857. },
  1858. {
  1859. name: "Macro+",
  1860. height: math.unit(300, "meters")
  1861. },
  1862. {
  1863. name: "Macro++",
  1864. height: math.unit(2400, "meters")
  1865. },
  1866. {
  1867. name: "Megamacro",
  1868. height: math.unit(5167, "meters")
  1869. },
  1870. {
  1871. name: "Gigamacro",
  1872. height: math.unit(41769, "miles")
  1873. },
  1874. ]
  1875. ))
  1876. characterMakers.push(() => makeCharacter(
  1877. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1878. {
  1879. front: {
  1880. height: math.unit(1.65, "meters"),
  1881. weight: math.unit(50, "kg"),
  1882. name: "Front",
  1883. image: {
  1884. source: "./media/characters/elijah/front.svg",
  1885. extra: 858 / 830,
  1886. bottom: 95.5 / 953.8559
  1887. }
  1888. },
  1889. back: {
  1890. height: math.unit(1.65, "meters"),
  1891. weight: math.unit(50, "kg"),
  1892. name: "Back",
  1893. image: {
  1894. source: "./media/characters/elijah/back.svg",
  1895. extra: 895 / 850,
  1896. bottom: 5.3 / 897.956
  1897. }
  1898. },
  1899. frontNsfw: {
  1900. height: math.unit(1.65, "meters"),
  1901. weight: math.unit(50, "kg"),
  1902. name: "Front (NSFW)",
  1903. image: {
  1904. source: "./media/characters/elijah/front-nsfw.svg",
  1905. extra: 858 / 830,
  1906. bottom: 95.5 / 953.8559
  1907. }
  1908. },
  1909. backNsfw: {
  1910. height: math.unit(1.65, "meters"),
  1911. weight: math.unit(50, "kg"),
  1912. name: "Back (NSFW)",
  1913. image: {
  1914. source: "./media/characters/elijah/back-nsfw.svg",
  1915. extra: 895 / 850,
  1916. bottom: 5.3 / 897.956
  1917. }
  1918. },
  1919. dick: {
  1920. height: math.unit(1, "feet"),
  1921. name: "Dick",
  1922. image: {
  1923. source: "./media/characters/elijah/dick.svg"
  1924. }
  1925. },
  1926. beakOpen: {
  1927. height: math.unit(1.25, "feet"),
  1928. name: "Beak (Open)",
  1929. image: {
  1930. source: "./media/characters/elijah/beak-open.svg"
  1931. }
  1932. },
  1933. beakShut: {
  1934. height: math.unit(1.25, "feet"),
  1935. name: "Beak (Shut)",
  1936. image: {
  1937. source: "./media/characters/elijah/beak-shut.svg"
  1938. }
  1939. },
  1940. footFlexing: {
  1941. height: math.unit(1.61, "feet"),
  1942. name: "Foot (Flexing)",
  1943. image: {
  1944. source: "./media/characters/elijah/foot-flexing.svg"
  1945. }
  1946. },
  1947. footStepping: {
  1948. height: math.unit(1.44, "feet"),
  1949. name: "Foot (Stepping)",
  1950. image: {
  1951. source: "./media/characters/elijah/foot-stepping.svg"
  1952. }
  1953. },
  1954. plantigradeLeg: {
  1955. height: math.unit(2.34, "feet"),
  1956. name: "Plantigrade Leg",
  1957. image: {
  1958. source: "./media/characters/elijah/plantigrade-leg.svg"
  1959. }
  1960. },
  1961. plantigradeFootLeft: {
  1962. height: math.unit(0.9, "feet"),
  1963. name: "Plantigrade Foot (Left)",
  1964. image: {
  1965. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1966. }
  1967. },
  1968. plantigradeFootRight: {
  1969. height: math.unit(0.9, "feet"),
  1970. name: "Plantigrade Foot (Right)",
  1971. image: {
  1972. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1973. }
  1974. },
  1975. },
  1976. [
  1977. {
  1978. name: "Normal",
  1979. height: math.unit(1.65, "meters")
  1980. },
  1981. {
  1982. name: "Macro",
  1983. height: math.unit(55, "meters"),
  1984. default: true
  1985. },
  1986. {
  1987. name: "Macro+",
  1988. height: math.unit(105, "meters")
  1989. },
  1990. ]
  1991. ))
  1992. characterMakers.push(() => makeCharacter(
  1993. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1994. {
  1995. front: {
  1996. height: math.unit(11, "feet"),
  1997. weight: math.unit(80, "kg"),
  1998. name: "Front",
  1999. image: {
  2000. source: "./media/characters/rai/front.svg",
  2001. extra: 1,
  2002. bottom: 0.03
  2003. }
  2004. },
  2005. side: {
  2006. height: math.unit(11, "feet"),
  2007. weight: math.unit(80, "kg"),
  2008. name: "Side",
  2009. image: {
  2010. source: "./media/characters/rai/side.svg"
  2011. }
  2012. },
  2013. back: {
  2014. height: math.unit(11, "feet"),
  2015. weight: math.unit(80, "lb"),
  2016. name: "Back",
  2017. image: {
  2018. source: "./media/characters/rai/back.svg",
  2019. extra: 1,
  2020. bottom: 0.01
  2021. }
  2022. },
  2023. feral: {
  2024. height: math.unit(11, "feet"),
  2025. weight: math.unit(800, "lb"),
  2026. name: "Feral",
  2027. image: {
  2028. source: "./media/characters/rai/feral.svg",
  2029. extra: 1050 / 659,
  2030. bottom: 0.07
  2031. }
  2032. },
  2033. dragon: {
  2034. height: math.unit(23, "feet"),
  2035. weight: math.unit(50000, "lb"),
  2036. name: "Dragon",
  2037. image: {
  2038. source: "./media/characters/rai/dragon.svg",
  2039. extra: 2498 / 2030,
  2040. bottom: 85.2 / 2584
  2041. }
  2042. },
  2043. maw: {
  2044. height: math.unit(6 / 3.81416, "feet"),
  2045. name: "Maw",
  2046. image: {
  2047. source: "./media/characters/rai/maw.svg"
  2048. }
  2049. },
  2050. },
  2051. [
  2052. {
  2053. name: "Normal",
  2054. height: math.unit(11, "feet")
  2055. },
  2056. {
  2057. name: "Macro",
  2058. height: math.unit(302, "feet"),
  2059. default: true
  2060. },
  2061. ]
  2062. ))
  2063. characterMakers.push(() => makeCharacter(
  2064. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2065. {
  2066. frontDressed: {
  2067. height: math.unit(216, "feet"),
  2068. weight: math.unit(7000000, "lb"),
  2069. name: "Front (Dressed)",
  2070. image: {
  2071. source: "./media/characters/jazzy/front-dressed.svg",
  2072. extra: 2738 / 2651,
  2073. bottom: 41.8 / 2786
  2074. }
  2075. },
  2076. backDressed: {
  2077. height: math.unit(216, "feet"),
  2078. weight: math.unit(7000000, "lb"),
  2079. name: "Back (Dressed)",
  2080. image: {
  2081. source: "./media/characters/jazzy/back-dressed.svg",
  2082. extra: 2775 / 2673,
  2083. bottom: 36.8 / 2817
  2084. }
  2085. },
  2086. front: {
  2087. height: math.unit(216, "feet"),
  2088. weight: math.unit(7000000, "lb"),
  2089. name: "Front",
  2090. image: {
  2091. source: "./media/characters/jazzy/front.svg",
  2092. extra: 2738 / 2651,
  2093. bottom: 41.8 / 2786
  2094. }
  2095. },
  2096. back: {
  2097. height: math.unit(216, "feet"),
  2098. weight: math.unit(7000000, "lb"),
  2099. name: "Back",
  2100. image: {
  2101. source: "./media/characters/jazzy/back.svg",
  2102. extra: 2775 / 2673,
  2103. bottom: 36.8 / 2817
  2104. }
  2105. },
  2106. maw: {
  2107. height: math.unit(20, "feet"),
  2108. name: "Maw",
  2109. image: {
  2110. source: "./media/characters/jazzy/maw.svg"
  2111. }
  2112. },
  2113. paws: {
  2114. height: math.unit(27.5, "feet"),
  2115. name: "Paws",
  2116. image: {
  2117. source: "./media/characters/jazzy/paws.svg"
  2118. }
  2119. },
  2120. eye: {
  2121. height: math.unit(4.4, "feet"),
  2122. name: "Eye",
  2123. image: {
  2124. source: "./media/characters/jazzy/eye.svg"
  2125. }
  2126. },
  2127. droneOffense: {
  2128. height: math.unit(9.5, "inches"),
  2129. name: "Drone (Offense)",
  2130. image: {
  2131. source: "./media/characters/jazzy/drone-offense.svg"
  2132. }
  2133. },
  2134. droneRecon: {
  2135. height: math.unit(9.5, "inches"),
  2136. name: "Drone (Recon)",
  2137. image: {
  2138. source: "./media/characters/jazzy/drone-recon.svg"
  2139. }
  2140. },
  2141. droneDefense: {
  2142. height: math.unit(9.5, "inches"),
  2143. name: "Drone (Defense)",
  2144. image: {
  2145. source: "./media/characters/jazzy/drone-defense.svg"
  2146. }
  2147. },
  2148. },
  2149. [
  2150. {
  2151. name: "Macro",
  2152. height: math.unit(216, "feet"),
  2153. default: true
  2154. },
  2155. ]
  2156. ))
  2157. characterMakers.push(() => makeCharacter(
  2158. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2159. {
  2160. front: {
  2161. height: math.unit(7, "feet"),
  2162. weight: math.unit(80, "kg"),
  2163. name: "Front",
  2164. image: {
  2165. source: "./media/characters/flamm/front.svg",
  2166. extra: 1794 / 1677,
  2167. bottom: 31.7 / 1828.5
  2168. }
  2169. },
  2170. },
  2171. [
  2172. {
  2173. name: "Normal",
  2174. height: math.unit(9.5, "feet")
  2175. },
  2176. {
  2177. name: "Macro",
  2178. height: math.unit(200, "feet"),
  2179. default: true
  2180. },
  2181. ]
  2182. ))
  2183. characterMakers.push(() => makeCharacter(
  2184. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2185. {
  2186. front: {
  2187. height: math.unit(7, "feet"),
  2188. weight: math.unit(80, "kg"),
  2189. name: "Front",
  2190. image: {
  2191. source: "./media/characters/zephiro/front.svg",
  2192. extra: 2309 / 2162,
  2193. bottom: 0.069
  2194. }
  2195. },
  2196. side: {
  2197. height: math.unit(7, "feet"),
  2198. weight: math.unit(80, "kg"),
  2199. name: "Side",
  2200. image: {
  2201. source: "./media/characters/zephiro/side.svg",
  2202. extra: 2403 / 2279,
  2203. bottom: 0.015
  2204. }
  2205. },
  2206. back: {
  2207. height: math.unit(7, "feet"),
  2208. weight: math.unit(80, "kg"),
  2209. name: "Back",
  2210. image: {
  2211. source: "./media/characters/zephiro/back.svg",
  2212. extra: 2373 / 2244,
  2213. bottom: 0.013
  2214. }
  2215. },
  2216. },
  2217. [
  2218. {
  2219. name: "Micro",
  2220. height: math.unit(3, "inches")
  2221. },
  2222. {
  2223. name: "Normal",
  2224. height: math.unit(5 + 3 / 12, "feet"),
  2225. default: true
  2226. },
  2227. {
  2228. name: "Macro",
  2229. height: math.unit(118, "feet")
  2230. },
  2231. ]
  2232. ))
  2233. characterMakers.push(() => makeCharacter(
  2234. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2235. {
  2236. front: {
  2237. height: math.unit(5, "feet"),
  2238. weight: math.unit(90, "kg"),
  2239. name: "Front",
  2240. image: {
  2241. source: "./media/characters/fory/front.svg",
  2242. extra: 2862 / 2674,
  2243. bottom: 180 / 3043.8
  2244. }
  2245. },
  2246. back: {
  2247. height: math.unit(5, "feet"),
  2248. weight: math.unit(90, "kg"),
  2249. name: "Back",
  2250. image: {
  2251. source: "./media/characters/fory/back.svg",
  2252. extra: 2962 / 2791,
  2253. bottom: 106 / 3071.8
  2254. }
  2255. },
  2256. foot: {
  2257. height: math.unit(2.14, "feet"),
  2258. name: "Foot",
  2259. image: {
  2260. source: "./media/characters/fory/foot.svg"
  2261. }
  2262. },
  2263. },
  2264. [
  2265. {
  2266. name: "Normal",
  2267. height: math.unit(5, "feet")
  2268. },
  2269. {
  2270. name: "Macro",
  2271. height: math.unit(50, "feet"),
  2272. default: true
  2273. },
  2274. {
  2275. name: "Megamacro",
  2276. height: math.unit(10, "miles")
  2277. },
  2278. {
  2279. name: "Gigamacro",
  2280. height: math.unit(5, "earths")
  2281. },
  2282. ]
  2283. ))
  2284. characterMakers.push(() => makeCharacter(
  2285. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2286. {
  2287. front: {
  2288. height: math.unit(7, "feet"),
  2289. weight: math.unit(90, "kg"),
  2290. name: "Front",
  2291. image: {
  2292. source: "./media/characters/kurrikage/front.svg",
  2293. extra: 1,
  2294. bottom: 0.035
  2295. }
  2296. },
  2297. back: {
  2298. height: math.unit(7, "feet"),
  2299. weight: math.unit(90, "lb"),
  2300. name: "Back",
  2301. image: {
  2302. source: "./media/characters/kurrikage/back.svg"
  2303. }
  2304. },
  2305. paw: {
  2306. height: math.unit(1.5, "feet"),
  2307. name: "Paw",
  2308. image: {
  2309. source: "./media/characters/kurrikage/paw.svg"
  2310. }
  2311. },
  2312. staff: {
  2313. height: math.unit(6.7, "feet"),
  2314. name: "Staff",
  2315. image: {
  2316. source: "./media/characters/kurrikage/staff.svg"
  2317. }
  2318. },
  2319. peek: {
  2320. height: math.unit(1.05, "feet"),
  2321. name: "Peeking",
  2322. image: {
  2323. source: "./media/characters/kurrikage/peek.svg",
  2324. bottom: 0.08
  2325. }
  2326. },
  2327. },
  2328. [
  2329. {
  2330. name: "Normal",
  2331. height: math.unit(12, "feet"),
  2332. default: true
  2333. },
  2334. {
  2335. name: "Big",
  2336. height: math.unit(20, "feet")
  2337. },
  2338. {
  2339. name: "Macro",
  2340. height: math.unit(500, "feet")
  2341. },
  2342. {
  2343. name: "Megamacro",
  2344. height: math.unit(20, "miles")
  2345. },
  2346. ]
  2347. ))
  2348. characterMakers.push(() => makeCharacter(
  2349. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2350. {
  2351. front: {
  2352. height: math.unit(6, "feet"),
  2353. weight: math.unit(75, "kg"),
  2354. name: "Front",
  2355. image: {
  2356. source: "./media/characters/shingo/front.svg",
  2357. extra: 3511 / 3338,
  2358. bottom: 0.005
  2359. }
  2360. },
  2361. paw: {
  2362. height: math.unit(1, "feet"),
  2363. name: "Paw",
  2364. image: {
  2365. source: "./media/characters/shingo/paw.svg"
  2366. }
  2367. },
  2368. },
  2369. [
  2370. {
  2371. name: "Micro",
  2372. height: math.unit(4, "inches")
  2373. },
  2374. {
  2375. name: "Normal",
  2376. height: math.unit(6, "feet"),
  2377. default: true
  2378. },
  2379. {
  2380. name: "Macro",
  2381. height: math.unit(108, "feet")
  2382. }
  2383. ]
  2384. ))
  2385. characterMakers.push(() => makeCharacter(
  2386. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2387. {
  2388. side: {
  2389. height: math.unit(6, "feet"),
  2390. weight: math.unit(75, "kg"),
  2391. name: "Side",
  2392. image: {
  2393. source: "./media/characters/aigey/side.svg"
  2394. }
  2395. },
  2396. },
  2397. [
  2398. {
  2399. name: "Macro",
  2400. height: math.unit(200, "feet"),
  2401. default: true
  2402. },
  2403. {
  2404. name: "Megamacro",
  2405. height: math.unit(100, "miles")
  2406. },
  2407. ]
  2408. )
  2409. )
  2410. characterMakers.push(() => makeCharacter(
  2411. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2412. {
  2413. front: {
  2414. height: math.unit(5 + 5 / 12, "feet"),
  2415. weight: math.unit(75, "kg"),
  2416. name: "Front",
  2417. image: {
  2418. source: "./media/characters/natasha/front.svg",
  2419. extra: 859 / 824,
  2420. bottom: 23 / 879.6
  2421. }
  2422. },
  2423. frontNsfw: {
  2424. height: math.unit(5 + 5 / 12, "feet"),
  2425. weight: math.unit(75, "kg"),
  2426. name: "Front (NSFW)",
  2427. image: {
  2428. source: "./media/characters/natasha/front-nsfw.svg",
  2429. extra: 859 / 824,
  2430. bottom: 23 / 879.6
  2431. }
  2432. },
  2433. frontErect: {
  2434. height: math.unit(5 + 5 / 12, "feet"),
  2435. weight: math.unit(75, "kg"),
  2436. name: "Front (Erect)",
  2437. image: {
  2438. source: "./media/characters/natasha/front-erect.svg",
  2439. extra: 859 / 824,
  2440. bottom: 23 / 879.6
  2441. }
  2442. },
  2443. back: {
  2444. height: math.unit(5 + 5 / 12, "feet"),
  2445. weight: math.unit(75, "kg"),
  2446. name: "Back",
  2447. image: {
  2448. source: "./media/characters/natasha/back.svg",
  2449. extra: 887.9 / 852.6,
  2450. bottom: 9.7 / 896.4
  2451. }
  2452. },
  2453. backAlt: {
  2454. height: math.unit(5 + 5 / 12, "feet"),
  2455. weight: math.unit(75, "kg"),
  2456. name: "Back (Alt)",
  2457. image: {
  2458. source: "./media/characters/natasha/back-alt.svg",
  2459. extra: 1236.7 / 1192,
  2460. bottom: 22.3 / 1258.2
  2461. }
  2462. },
  2463. dick: {
  2464. height: math.unit(1.772, "feet"),
  2465. name: "Dick",
  2466. image: {
  2467. source: "./media/characters/natasha/dick.svg"
  2468. }
  2469. },
  2470. paw: {
  2471. height: math.unit(0.250, "meters"),
  2472. name: "Paw",
  2473. image: {
  2474. source: "./media/characters/natasha/paw.svg"
  2475. }
  2476. },
  2477. },
  2478. [
  2479. {
  2480. name: "Normal",
  2481. height: math.unit(5 + 5 / 12, "feet")
  2482. },
  2483. {
  2484. name: "Large",
  2485. height: math.unit(12, "feet")
  2486. },
  2487. {
  2488. name: "Macro",
  2489. height: math.unit(100, "feet"),
  2490. default: true
  2491. },
  2492. {
  2493. name: "Macro+",
  2494. height: math.unit(260, "feet")
  2495. },
  2496. {
  2497. name: "Macro++",
  2498. height: math.unit(1, "mile")
  2499. },
  2500. ]
  2501. ))
  2502. characterMakers.push(() => makeCharacter(
  2503. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2504. {
  2505. front: {
  2506. height: math.unit(6, "feet"),
  2507. weight: math.unit(75, "kg"),
  2508. name: "Front",
  2509. image: {
  2510. source: "./media/characters/malik/front.svg"
  2511. }
  2512. },
  2513. side: {
  2514. height: math.unit(6, "feet"),
  2515. weight: math.unit(75, "kg"),
  2516. name: "Side",
  2517. image: {
  2518. source: "./media/characters/malik/side.svg",
  2519. extra: 1.1539
  2520. }
  2521. },
  2522. back: {
  2523. height: math.unit(6, "feet"),
  2524. weight: math.unit(75, "kg"),
  2525. name: "Back",
  2526. image: {
  2527. source: "./media/characters/malik/back.svg"
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Macro",
  2534. height: math.unit(156, "feet"),
  2535. default: true
  2536. },
  2537. {
  2538. name: "Macro+",
  2539. height: math.unit(1188, "feet")
  2540. },
  2541. ]
  2542. ))
  2543. characterMakers.push(() => makeCharacter(
  2544. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2545. {
  2546. front: {
  2547. height: math.unit(6, "feet"),
  2548. weight: math.unit(75, "kg"),
  2549. name: "Front",
  2550. image: {
  2551. source: "./media/characters/sefer/front.svg",
  2552. extra: 848 / 659,
  2553. bottom: 28.3 / 876.442
  2554. }
  2555. },
  2556. back: {
  2557. height: math.unit(6, "feet"),
  2558. weight: math.unit(75, "kg"),
  2559. name: "Back",
  2560. image: {
  2561. source: "./media/characters/sefer/back.svg",
  2562. extra: 864 / 695,
  2563. bottom: 10 / 871
  2564. }
  2565. },
  2566. frontDressed: {
  2567. height: math.unit(6, "feet"),
  2568. weight: math.unit(75, "kg"),
  2569. name: "Front (Dressed)",
  2570. image: {
  2571. source: "./media/characters/sefer/front-dressed.svg",
  2572. extra: 839 / 653,
  2573. bottom: 37.6 / 878
  2574. }
  2575. },
  2576. },
  2577. [
  2578. {
  2579. name: "Normal",
  2580. height: math.unit(6, "feet"),
  2581. default: true
  2582. },
  2583. ]
  2584. ))
  2585. characterMakers.push(() => makeCharacter(
  2586. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2587. {
  2588. body: {
  2589. height: math.unit(2.2428, "meter"),
  2590. weight: math.unit(124.738, "kg"),
  2591. name: "Body",
  2592. image: {
  2593. extra: 1225 / 1050,
  2594. source: "./media/characters/north/front.svg"
  2595. }
  2596. }
  2597. },
  2598. [
  2599. {
  2600. name: "Micro",
  2601. height: math.unit(4, "inches")
  2602. },
  2603. {
  2604. name: "Macro",
  2605. height: math.unit(63, "meters")
  2606. },
  2607. {
  2608. name: "Megamacro",
  2609. height: math.unit(101, "miles"),
  2610. default: true
  2611. }
  2612. ]
  2613. ))
  2614. characterMakers.push(() => makeCharacter(
  2615. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2616. {
  2617. angled: {
  2618. height: math.unit(4, "meter"),
  2619. weight: math.unit(150, "kg"),
  2620. name: "Angled",
  2621. image: {
  2622. source: "./media/characters/talan/angled-sfw.svg",
  2623. bottom: 29 / 3734
  2624. }
  2625. },
  2626. angledNsfw: {
  2627. height: math.unit(4, "meter"),
  2628. weight: math.unit(150, "kg"),
  2629. name: "Angled (NSFW)",
  2630. image: {
  2631. source: "./media/characters/talan/angled-nsfw.svg",
  2632. bottom: 29 / 3734
  2633. }
  2634. },
  2635. frontNsfw: {
  2636. height: math.unit(4, "meter"),
  2637. weight: math.unit(150, "kg"),
  2638. name: "Front (NSFW)",
  2639. image: {
  2640. source: "./media/characters/talan/front-nsfw.svg",
  2641. bottom: 29 / 3734
  2642. }
  2643. },
  2644. sideNsfw: {
  2645. height: math.unit(4, "meter"),
  2646. weight: math.unit(150, "kg"),
  2647. name: "Side (NSFW)",
  2648. image: {
  2649. source: "./media/characters/talan/side-nsfw.svg",
  2650. bottom: 29 / 3734
  2651. }
  2652. },
  2653. back: {
  2654. height: math.unit(4, "meter"),
  2655. weight: math.unit(150, "kg"),
  2656. name: "Back",
  2657. image: {
  2658. source: "./media/characters/talan/back.svg"
  2659. }
  2660. },
  2661. dickBottom: {
  2662. height: math.unit(0.621, "meter"),
  2663. name: "Dick (Bottom)",
  2664. image: {
  2665. source: "./media/characters/talan/dick-bottom.svg"
  2666. }
  2667. },
  2668. dickTop: {
  2669. height: math.unit(0.621, "meter"),
  2670. name: "Dick (Top)",
  2671. image: {
  2672. source: "./media/characters/talan/dick-top.svg"
  2673. }
  2674. },
  2675. dickSide: {
  2676. height: math.unit(0.305, "meter"),
  2677. name: "Dick (Side)",
  2678. image: {
  2679. source: "./media/characters/talan/dick-side.svg"
  2680. }
  2681. },
  2682. dickFront: {
  2683. height: math.unit(0.305, "meter"),
  2684. name: "Dick (Front)",
  2685. image: {
  2686. source: "./media/characters/talan/dick-front.svg"
  2687. }
  2688. },
  2689. },
  2690. [
  2691. {
  2692. name: "Normal",
  2693. height: math.unit(4, "meters")
  2694. },
  2695. {
  2696. name: "Macro",
  2697. height: math.unit(100, "meters")
  2698. },
  2699. {
  2700. name: "Megamacro",
  2701. height: math.unit(2, "miles"),
  2702. default: true
  2703. },
  2704. {
  2705. name: "Gigamacro",
  2706. height: math.unit(5000, "miles")
  2707. },
  2708. {
  2709. name: "Teramacro",
  2710. height: math.unit(100, "parsecs")
  2711. }
  2712. ]
  2713. ))
  2714. characterMakers.push(() => makeCharacter(
  2715. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2716. {
  2717. front: {
  2718. height: math.unit(2, "meter"),
  2719. weight: math.unit(90, "kg"),
  2720. name: "Front",
  2721. image: {
  2722. source: "./media/characters/gael'rathus/front.svg"
  2723. }
  2724. },
  2725. frontAlt: {
  2726. height: math.unit(2, "meter"),
  2727. weight: math.unit(90, "kg"),
  2728. name: "Front (alt)",
  2729. image: {
  2730. source: "./media/characters/gael'rathus/front-alt.svg"
  2731. }
  2732. },
  2733. frontAlt2: {
  2734. height: math.unit(2, "meter"),
  2735. weight: math.unit(90, "kg"),
  2736. name: "Front (alt 2)",
  2737. image: {
  2738. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2739. }
  2740. }
  2741. },
  2742. [
  2743. {
  2744. name: "Normal",
  2745. height: math.unit(9, "feet"),
  2746. default: true
  2747. },
  2748. {
  2749. name: "Large",
  2750. height: math.unit(25, "feet")
  2751. },
  2752. {
  2753. name: "Macro",
  2754. height: math.unit(0.25, "miles")
  2755. },
  2756. {
  2757. name: "Megamacro",
  2758. height: math.unit(10, "miles")
  2759. }
  2760. ]
  2761. ))
  2762. characterMakers.push(() => makeCharacter(
  2763. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2764. {
  2765. side: {
  2766. height: math.unit(2, "meter"),
  2767. weight: math.unit(140, "kg"),
  2768. name: "Side",
  2769. image: {
  2770. source: "./media/characters/sosha/side.svg",
  2771. bottom: 0.042
  2772. }
  2773. },
  2774. },
  2775. [
  2776. {
  2777. name: "Normal",
  2778. height: math.unit(12, "feet"),
  2779. default: true
  2780. }
  2781. ]
  2782. ))
  2783. characterMakers.push(() => makeCharacter(
  2784. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2785. {
  2786. side: {
  2787. height: math.unit(5 + 5 / 12, "feet"),
  2788. weight: math.unit(170, "kg"),
  2789. name: "Side",
  2790. image: {
  2791. source: "./media/characters/runnola/side.svg",
  2792. extra: 741 / 448,
  2793. bottom: 0.05
  2794. }
  2795. },
  2796. },
  2797. [
  2798. {
  2799. name: "Small",
  2800. height: math.unit(3, "feet")
  2801. },
  2802. {
  2803. name: "Normal",
  2804. height: math.unit(5 + 5 / 12, "feet"),
  2805. default: true
  2806. },
  2807. {
  2808. name: "Big",
  2809. height: math.unit(10, "feet")
  2810. },
  2811. ]
  2812. ))
  2813. characterMakers.push(() => makeCharacter(
  2814. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2815. {
  2816. front: {
  2817. height: math.unit(2, "meter"),
  2818. weight: math.unit(50, "kg"),
  2819. name: "Front",
  2820. image: {
  2821. source: "./media/characters/kurribird/front.svg",
  2822. bottom: 0.015
  2823. }
  2824. },
  2825. frontAlt: {
  2826. height: math.unit(1.5, "meter"),
  2827. weight: math.unit(50, "kg"),
  2828. name: "Front (Alt)",
  2829. image: {
  2830. source: "./media/characters/kurribird/front-alt.svg",
  2831. extra: 1.45
  2832. }
  2833. },
  2834. },
  2835. [
  2836. {
  2837. name: "Normal",
  2838. height: math.unit(7, "feet")
  2839. },
  2840. {
  2841. name: "Big",
  2842. height: math.unit(12, "feet"),
  2843. default: true
  2844. },
  2845. {
  2846. name: "Macro",
  2847. height: math.unit(1500, "feet")
  2848. },
  2849. {
  2850. name: "Megamacro",
  2851. height: math.unit(2, "miles")
  2852. }
  2853. ]
  2854. ))
  2855. characterMakers.push(() => makeCharacter(
  2856. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2857. {
  2858. front: {
  2859. height: math.unit(2, "meter"),
  2860. weight: math.unit(80, "kg"),
  2861. name: "Front",
  2862. image: {
  2863. source: "./media/characters/elbial/front.svg",
  2864. extra: 1643 / 1556,
  2865. bottom: 60.2 / 1696
  2866. }
  2867. },
  2868. side: {
  2869. height: math.unit(2, "meter"),
  2870. weight: math.unit(80, "kg"),
  2871. name: "Side",
  2872. image: {
  2873. source: "./media/characters/elbial/side.svg",
  2874. extra: 1630 / 1565,
  2875. bottom: 71.5 / 1697
  2876. }
  2877. },
  2878. back: {
  2879. height: math.unit(2, "meter"),
  2880. weight: math.unit(80, "kg"),
  2881. name: "Back",
  2882. image: {
  2883. source: "./media/characters/elbial/back.svg",
  2884. extra: 1668 / 1595,
  2885. bottom: 5.6 / 1672
  2886. }
  2887. },
  2888. frontDressed: {
  2889. height: math.unit(2, "meter"),
  2890. weight: math.unit(80, "kg"),
  2891. name: "Front (Dressed)",
  2892. image: {
  2893. source: "./media/characters/elbial/front-dressed.svg",
  2894. extra: 1653 / 1584,
  2895. bottom: 57 / 1708
  2896. }
  2897. },
  2898. genitals: {
  2899. height: math.unit(2 / 3.367, "meter"),
  2900. name: "Genitals",
  2901. image: {
  2902. source: "./media/characters/elbial/genitals.svg"
  2903. }
  2904. },
  2905. },
  2906. [
  2907. {
  2908. name: "Large",
  2909. height: math.unit(100, "feet")
  2910. },
  2911. {
  2912. name: "Macro",
  2913. height: math.unit(500, "feet"),
  2914. default: true
  2915. },
  2916. {
  2917. name: "Megamacro",
  2918. height: math.unit(10, "miles")
  2919. },
  2920. {
  2921. name: "Gigamacro",
  2922. height: math.unit(25000, "miles")
  2923. },
  2924. {
  2925. name: "Full-Size",
  2926. height: math.unit(8000000, "gigaparsecs")
  2927. }
  2928. ]
  2929. ))
  2930. characterMakers.push(() => makeCharacter(
  2931. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2932. {
  2933. front: {
  2934. height: math.unit(2, "meter"),
  2935. weight: math.unit(60, "kg"),
  2936. name: "Front",
  2937. image: {
  2938. source: "./media/characters/noah/front.svg"
  2939. }
  2940. },
  2941. talons: {
  2942. height: math.unit(0.315, "meter"),
  2943. name: "Talons",
  2944. image: {
  2945. source: "./media/characters/noah/talons.svg"
  2946. }
  2947. }
  2948. },
  2949. [
  2950. {
  2951. name: "Large",
  2952. height: math.unit(50, "feet")
  2953. },
  2954. {
  2955. name: "Macro",
  2956. height: math.unit(750, "feet"),
  2957. default: true
  2958. },
  2959. {
  2960. name: "Megamacro",
  2961. height: math.unit(50, "miles")
  2962. },
  2963. {
  2964. name: "Gigamacro",
  2965. height: math.unit(100000, "miles")
  2966. },
  2967. {
  2968. name: "Full-Size",
  2969. height: math.unit(3000000000, "miles")
  2970. }
  2971. ]
  2972. ))
  2973. characterMakers.push(() => makeCharacter(
  2974. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2975. {
  2976. front: {
  2977. height: math.unit(2, "meter"),
  2978. weight: math.unit(80, "kg"),
  2979. name: "Front",
  2980. image: {
  2981. source: "./media/characters/natalya/front.svg"
  2982. }
  2983. },
  2984. back: {
  2985. height: math.unit(2, "meter"),
  2986. weight: math.unit(80, "kg"),
  2987. name: "Back",
  2988. image: {
  2989. source: "./media/characters/natalya/back.svg"
  2990. }
  2991. }
  2992. },
  2993. [
  2994. {
  2995. name: "Normal",
  2996. height: math.unit(150, "feet"),
  2997. default: true
  2998. },
  2999. {
  3000. name: "Megamacro",
  3001. height: math.unit(5, "miles")
  3002. },
  3003. {
  3004. name: "Full-Size",
  3005. height: math.unit(600, "kiloparsecs")
  3006. }
  3007. ]
  3008. ))
  3009. characterMakers.push(() => makeCharacter(
  3010. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3011. {
  3012. front: {
  3013. height: math.unit(2, "meter"),
  3014. weight: math.unit(50, "kg"),
  3015. name: "Front",
  3016. image: {
  3017. source: "./media/characters/erestrebah/front.svg",
  3018. extra: 208 / 193,
  3019. bottom: 0.055
  3020. }
  3021. },
  3022. back: {
  3023. height: math.unit(2, "meter"),
  3024. weight: math.unit(50, "kg"),
  3025. name: "Back",
  3026. image: {
  3027. source: "./media/characters/erestrebah/back.svg",
  3028. extra: 1.3
  3029. }
  3030. }
  3031. },
  3032. [
  3033. {
  3034. name: "Normal",
  3035. height: math.unit(10, "feet")
  3036. },
  3037. {
  3038. name: "Large",
  3039. height: math.unit(50, "feet"),
  3040. default: true
  3041. },
  3042. {
  3043. name: "Macro",
  3044. height: math.unit(300, "feet")
  3045. },
  3046. {
  3047. name: "Macro+",
  3048. height: math.unit(750, "feet")
  3049. },
  3050. {
  3051. name: "Megamacro",
  3052. height: math.unit(3, "miles")
  3053. }
  3054. ]
  3055. ))
  3056. characterMakers.push(() => makeCharacter(
  3057. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3058. {
  3059. front: {
  3060. height: math.unit(2, "meter"),
  3061. weight: math.unit(80, "kg"),
  3062. name: "Front",
  3063. image: {
  3064. source: "./media/characters/jennifer/front.svg",
  3065. bottom: 0.11,
  3066. extra: 1.16
  3067. }
  3068. },
  3069. frontAlt: {
  3070. height: math.unit(2, "meter"),
  3071. weight: math.unit(80, "kg"),
  3072. name: "Front (Alt)",
  3073. image: {
  3074. source: "./media/characters/jennifer/front-alt.svg"
  3075. }
  3076. }
  3077. },
  3078. [
  3079. {
  3080. name: "Canon Height",
  3081. height: math.unit(120, "feet"),
  3082. default: true
  3083. },
  3084. {
  3085. name: "Macro+",
  3086. height: math.unit(300, "feet")
  3087. },
  3088. {
  3089. name: "Megamacro",
  3090. height: math.unit(20000, "feet")
  3091. }
  3092. ]
  3093. ))
  3094. characterMakers.push(() => makeCharacter(
  3095. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3096. {
  3097. front: {
  3098. height: math.unit(2, "meter"),
  3099. weight: math.unit(50, "kg"),
  3100. name: "Front",
  3101. image: {
  3102. source: "./media/characters/kalista/front.svg",
  3103. extra: 1947 / 1700,
  3104. bottom: 76.6 / 1412.98
  3105. }
  3106. },
  3107. back: {
  3108. height: math.unit(2, "meter"),
  3109. weight: math.unit(50, "kg"),
  3110. name: "Back",
  3111. image: {
  3112. source: "./media/characters/kalista/back.svg",
  3113. extra: 1366 / 1156,
  3114. bottom: 33.9 / 1362.78
  3115. }
  3116. }
  3117. },
  3118. [
  3119. {
  3120. name: "Uncomfortably Small",
  3121. height: math.unit(10, "feet")
  3122. },
  3123. {
  3124. name: "Small",
  3125. height: math.unit(30, "feet")
  3126. },
  3127. {
  3128. name: "Macro",
  3129. height: math.unit(100, "feet"),
  3130. default: true
  3131. },
  3132. {
  3133. name: "Macro+",
  3134. height: math.unit(2000, "feet")
  3135. },
  3136. {
  3137. name: "True Form",
  3138. height: math.unit(8924, "miles")
  3139. }
  3140. ]
  3141. ))
  3142. characterMakers.push(() => makeCharacter(
  3143. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3144. {
  3145. front: {
  3146. height: math.unit(2, "meter"),
  3147. weight: math.unit(120, "kg"),
  3148. name: "Front",
  3149. image: {
  3150. source: "./media/characters/ggv/front.svg"
  3151. }
  3152. },
  3153. side: {
  3154. height: math.unit(2, "meter"),
  3155. weight: math.unit(120, "kg"),
  3156. name: "Side",
  3157. image: {
  3158. source: "./media/characters/ggv/side.svg"
  3159. }
  3160. }
  3161. },
  3162. [
  3163. {
  3164. name: "Extremely Puny",
  3165. height: math.unit(9 + 5 / 12, "feet")
  3166. },
  3167. {
  3168. name: "Horribly Small",
  3169. height: math.unit(47.7, "miles"),
  3170. default: true
  3171. },
  3172. {
  3173. name: "Reasonably Sized",
  3174. height: math.unit(25000, "parsecs")
  3175. },
  3176. {
  3177. name: "Slightly Uncompressed",
  3178. height: math.unit(7.77e31, "parsecs")
  3179. },
  3180. {
  3181. name: "Omniversal",
  3182. height: math.unit(1e300, "meters")
  3183. },
  3184. ]
  3185. ))
  3186. characterMakers.push(() => makeCharacter(
  3187. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3188. {
  3189. front: {
  3190. height: math.unit(2, "meter"),
  3191. weight: math.unit(75, "lb"),
  3192. name: "Front",
  3193. image: {
  3194. source: "./media/characters/napalm/front.svg"
  3195. }
  3196. },
  3197. back: {
  3198. height: math.unit(2, "meter"),
  3199. weight: math.unit(75, "lb"),
  3200. name: "Back",
  3201. image: {
  3202. source: "./media/characters/napalm/back.svg"
  3203. }
  3204. }
  3205. },
  3206. [
  3207. {
  3208. name: "Standard",
  3209. height: math.unit(55, "feet"),
  3210. default: true
  3211. }
  3212. ]
  3213. ))
  3214. characterMakers.push(() => makeCharacter(
  3215. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3216. {
  3217. front: {
  3218. height: math.unit(7 + 5 / 6, "feet"),
  3219. weight: math.unit(325, "lb"),
  3220. name: "Front",
  3221. image: {
  3222. source: "./media/characters/asana/front.svg",
  3223. extra: 1133 / 1060,
  3224. bottom: 15.2 / 1148.6
  3225. }
  3226. },
  3227. back: {
  3228. height: math.unit(7 + 5 / 6, "feet"),
  3229. weight: math.unit(325, "lb"),
  3230. name: "Back",
  3231. image: {
  3232. source: "./media/characters/asana/back.svg",
  3233. extra: 1114 / 1043,
  3234. bottom: 5 / 1120
  3235. }
  3236. },
  3237. dressedDark: {
  3238. height: math.unit(7 + 5 / 6, "feet"),
  3239. weight: math.unit(325, "lb"),
  3240. name: "Dressed (Dark)",
  3241. image: {
  3242. source: "./media/characters/asana/dressed-dark.svg",
  3243. extra: 1133 / 1060,
  3244. bottom: 15.2 / 1148.6
  3245. }
  3246. },
  3247. dressedLight: {
  3248. height: math.unit(7 + 5 / 6, "feet"),
  3249. weight: math.unit(325, "lb"),
  3250. name: "Dressed (Light)",
  3251. image: {
  3252. source: "./media/characters/asana/dressed-light.svg",
  3253. extra: 1133 / 1060,
  3254. bottom: 15.2 / 1148.6
  3255. }
  3256. },
  3257. },
  3258. [
  3259. {
  3260. name: "Standard",
  3261. height: math.unit(7 + 5 / 6, "feet"),
  3262. default: true
  3263. },
  3264. {
  3265. name: "Large",
  3266. height: math.unit(10, "meters")
  3267. },
  3268. {
  3269. name: "Macro",
  3270. height: math.unit(2500, "meters")
  3271. },
  3272. {
  3273. name: "Megamacro",
  3274. height: math.unit(5e6, "meters")
  3275. },
  3276. {
  3277. name: "Examacro",
  3278. height: math.unit(5e12, "lightyears")
  3279. },
  3280. {
  3281. name: "Max Size",
  3282. height: math.unit(1e31, "lightyears")
  3283. }
  3284. ]
  3285. ))
  3286. characterMakers.push(() => makeCharacter(
  3287. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3288. {
  3289. front: {
  3290. height: math.unit(2, "meter"),
  3291. weight: math.unit(60, "kg"),
  3292. name: "Front",
  3293. image: {
  3294. source: "./media/characters/ebony/front.svg",
  3295. bottom: 0.03,
  3296. extra: 1045 / 810 + 0.03
  3297. }
  3298. },
  3299. side: {
  3300. height: math.unit(2, "meter"),
  3301. weight: math.unit(60, "kg"),
  3302. name: "Side",
  3303. image: {
  3304. source: "./media/characters/ebony/side.svg",
  3305. bottom: 0.03,
  3306. extra: 1045 / 810 + 0.03
  3307. }
  3308. },
  3309. back: {
  3310. height: math.unit(2, "meter"),
  3311. weight: math.unit(60, "kg"),
  3312. name: "Back",
  3313. image: {
  3314. source: "./media/characters/ebony/back.svg",
  3315. bottom: 0.01,
  3316. extra: 1045 / 810 + 0.01
  3317. }
  3318. },
  3319. },
  3320. [
  3321. // TODO check why I did this lol
  3322. {
  3323. name: "Standard",
  3324. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3325. default: true
  3326. },
  3327. {
  3328. name: "Macro",
  3329. height: math.unit(200, "feet")
  3330. },
  3331. {
  3332. name: "Gigamacro",
  3333. height: math.unit(13000, "km")
  3334. }
  3335. ]
  3336. ))
  3337. characterMakers.push(() => makeCharacter(
  3338. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3339. {
  3340. front: {
  3341. height: math.unit(6, "feet"),
  3342. weight: math.unit(175, "lb"),
  3343. name: "Front",
  3344. image: {
  3345. source: "./media/characters/mountain/front.svg",
  3346. extra: 972 / 955,
  3347. bottom: 64 / 1036.6
  3348. }
  3349. },
  3350. back: {
  3351. height: math.unit(6, "feet"),
  3352. weight: math.unit(175, "lb"),
  3353. name: "Back",
  3354. image: {
  3355. source: "./media/characters/mountain/back.svg",
  3356. extra: 970 / 950,
  3357. bottom: 28.25 / 999
  3358. }
  3359. },
  3360. },
  3361. [
  3362. {
  3363. name: "Large",
  3364. height: math.unit(20, "meters")
  3365. },
  3366. {
  3367. name: "Macro",
  3368. height: math.unit(300, "meters")
  3369. },
  3370. {
  3371. name: "Gigamacro",
  3372. height: math.unit(10000, "km"),
  3373. default: true
  3374. },
  3375. {
  3376. name: "Examacro",
  3377. height: math.unit(10e9, "lightyears")
  3378. }
  3379. ]
  3380. ))
  3381. characterMakers.push(() => makeCharacter(
  3382. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3383. {
  3384. front: {
  3385. height: math.unit(8, "feet"),
  3386. weight: math.unit(500, "lb"),
  3387. name: "Front",
  3388. image: {
  3389. source: "./media/characters/rick/front.svg"
  3390. }
  3391. }
  3392. },
  3393. [
  3394. {
  3395. name: "Normal",
  3396. height: math.unit(8, "feet"),
  3397. default: true
  3398. },
  3399. {
  3400. name: "Macro",
  3401. height: math.unit(5, "km")
  3402. }
  3403. ]
  3404. ))
  3405. characterMakers.push(() => makeCharacter(
  3406. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3407. {
  3408. front: {
  3409. height: math.unit(8, "feet"),
  3410. weight: math.unit(120, "lb"),
  3411. name: "Front",
  3412. image: {
  3413. source: "./media/characters/ona/front.svg"
  3414. }
  3415. },
  3416. frontAlt: {
  3417. height: math.unit(8, "feet"),
  3418. weight: math.unit(120, "lb"),
  3419. name: "Front (Alt)",
  3420. image: {
  3421. source: "./media/characters/ona/front-alt.svg"
  3422. }
  3423. },
  3424. back: {
  3425. height: math.unit(8, "feet"),
  3426. weight: math.unit(120, "lb"),
  3427. name: "Back",
  3428. image: {
  3429. source: "./media/characters/ona/back.svg"
  3430. }
  3431. },
  3432. foot: {
  3433. height: math.unit(1.1, "feet"),
  3434. name: "Foot",
  3435. image: {
  3436. source: "./media/characters/ona/foot.svg"
  3437. }
  3438. }
  3439. },
  3440. [
  3441. {
  3442. name: "Megamacro",
  3443. height: math.unit(70, "km"),
  3444. default: true
  3445. },
  3446. {
  3447. name: "Gigamacro",
  3448. height: math.unit(681818, "miles")
  3449. },
  3450. {
  3451. name: "Examacro",
  3452. height: math.unit(3800000, "lightyears")
  3453. },
  3454. ]
  3455. ))
  3456. characterMakers.push(() => makeCharacter(
  3457. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3458. {
  3459. front: {
  3460. height: math.unit(12, "feet"),
  3461. weight: math.unit(3000, "lb"),
  3462. name: "Front",
  3463. image: {
  3464. source: "./media/characters/mech/front.svg",
  3465. extra: 2900 / 2770,
  3466. bottom: 110 / 3010
  3467. }
  3468. },
  3469. back: {
  3470. height: math.unit(12, "feet"),
  3471. weight: math.unit(3000, "lb"),
  3472. name: "Back",
  3473. image: {
  3474. source: "./media/characters/mech/back.svg",
  3475. extra: 3011 / 2890,
  3476. bottom: 94 / 3105
  3477. }
  3478. },
  3479. maw: {
  3480. height: math.unit(3.07, "feet"),
  3481. name: "Maw",
  3482. image: {
  3483. source: "./media/characters/mech/maw.svg"
  3484. }
  3485. },
  3486. head: {
  3487. height: math.unit(2.82, "feet"),
  3488. name: "Head",
  3489. image: {
  3490. source: "./media/characters/mech/head.svg"
  3491. }
  3492. },
  3493. dick: {
  3494. height: math.unit(1.43, "feet"),
  3495. name: "Dick",
  3496. image: {
  3497. source: "./media/characters/mech/dick.svg"
  3498. }
  3499. },
  3500. },
  3501. [
  3502. {
  3503. name: "Normal",
  3504. height: math.unit(12, "feet")
  3505. },
  3506. {
  3507. name: "Macro",
  3508. height: math.unit(300, "feet"),
  3509. default: true
  3510. },
  3511. {
  3512. name: "Macro+",
  3513. height: math.unit(1500, "feet")
  3514. },
  3515. ]
  3516. ))
  3517. characterMakers.push(() => makeCharacter(
  3518. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3519. {
  3520. front: {
  3521. height: math.unit(1.3, "meter"),
  3522. weight: math.unit(30, "kg"),
  3523. name: "Front",
  3524. image: {
  3525. source: "./media/characters/gregory/front.svg",
  3526. }
  3527. }
  3528. },
  3529. [
  3530. {
  3531. name: "Normal",
  3532. height: math.unit(1.3, "meter"),
  3533. default: true
  3534. },
  3535. {
  3536. name: "Macro",
  3537. height: math.unit(20, "meter")
  3538. }
  3539. ]
  3540. ))
  3541. characterMakers.push(() => makeCharacter(
  3542. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3543. {
  3544. front: {
  3545. height: math.unit(2.8, "meter"),
  3546. weight: math.unit(200, "kg"),
  3547. name: "Front",
  3548. image: {
  3549. source: "./media/characters/elory/front.svg",
  3550. }
  3551. }
  3552. },
  3553. [
  3554. {
  3555. name: "Normal",
  3556. height: math.unit(2.8, "meter"),
  3557. default: true
  3558. },
  3559. {
  3560. name: "Macro",
  3561. height: math.unit(38, "meter")
  3562. }
  3563. ]
  3564. ))
  3565. characterMakers.push(() => makeCharacter(
  3566. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3567. {
  3568. front: {
  3569. height: math.unit(470, "feet"),
  3570. weight: math.unit(924, "tons"),
  3571. name: "Front",
  3572. image: {
  3573. source: "./media/characters/angelpatamon/front.svg",
  3574. }
  3575. }
  3576. },
  3577. [
  3578. {
  3579. name: "Normal",
  3580. height: math.unit(470, "feet"),
  3581. default: true
  3582. },
  3583. {
  3584. name: "Deity Size I",
  3585. height: math.unit(28651.2, "km")
  3586. },
  3587. {
  3588. name: "Deity Size II",
  3589. height: math.unit(171907.2, "km")
  3590. }
  3591. ]
  3592. ))
  3593. characterMakers.push(() => makeCharacter(
  3594. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3595. {
  3596. side: {
  3597. height: math.unit(7.2, "meter"),
  3598. weight: math.unit(8.2, "tons"),
  3599. name: "Side",
  3600. image: {
  3601. source: "./media/characters/cryae/side.svg",
  3602. extra: 3500 / 1500
  3603. }
  3604. }
  3605. },
  3606. [
  3607. {
  3608. name: "Normal",
  3609. height: math.unit(7.2, "meter"),
  3610. default: true
  3611. }
  3612. ]
  3613. ))
  3614. characterMakers.push(() => makeCharacter(
  3615. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3616. {
  3617. front: {
  3618. height: math.unit(6, "feet"),
  3619. weight: math.unit(175, "lb"),
  3620. name: "Front",
  3621. image: {
  3622. source: "./media/characters/xera/front.svg",
  3623. extra: 2377 / 1972,
  3624. bottom: 75.5 / 2452
  3625. }
  3626. },
  3627. side: {
  3628. height: math.unit(6, "feet"),
  3629. weight: math.unit(175, "lb"),
  3630. name: "Side",
  3631. image: {
  3632. source: "./media/characters/xera/side.svg",
  3633. extra: 2345 / 2019,
  3634. bottom: 39.7 / 2384
  3635. }
  3636. },
  3637. back: {
  3638. height: math.unit(6, "feet"),
  3639. weight: math.unit(175, "lb"),
  3640. name: "Back",
  3641. image: {
  3642. source: "./media/characters/xera/back.svg",
  3643. extra: 2095 / 1984,
  3644. bottom: 67 / 2166
  3645. }
  3646. },
  3647. },
  3648. [
  3649. {
  3650. name: "Small",
  3651. height: math.unit(10, "feet")
  3652. },
  3653. {
  3654. name: "Macro",
  3655. height: math.unit(500, "meters"),
  3656. default: true
  3657. },
  3658. {
  3659. name: "Macro+",
  3660. height: math.unit(10, "km")
  3661. },
  3662. {
  3663. name: "Gigamacro",
  3664. height: math.unit(25000, "km")
  3665. },
  3666. {
  3667. name: "Teramacro",
  3668. height: math.unit(3e6, "km")
  3669. }
  3670. ]
  3671. ))
  3672. characterMakers.push(() => makeCharacter(
  3673. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3674. {
  3675. front: {
  3676. height: math.unit(6, "feet"),
  3677. weight: math.unit(175, "lb"),
  3678. name: "Front",
  3679. image: {
  3680. source: "./media/characters/nebula/front.svg",
  3681. extra: 2566 / 2362,
  3682. bottom: 81 / 2644
  3683. }
  3684. }
  3685. },
  3686. [
  3687. {
  3688. name: "Small",
  3689. height: math.unit(4.5, "meters")
  3690. },
  3691. {
  3692. name: "Macro",
  3693. height: math.unit(1500, "meters"),
  3694. default: true
  3695. },
  3696. {
  3697. name: "Megamacro",
  3698. height: math.unit(150, "km")
  3699. },
  3700. {
  3701. name: "Gigamacro",
  3702. height: math.unit(27000, "km")
  3703. }
  3704. ]
  3705. ))
  3706. characterMakers.push(() => makeCharacter(
  3707. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3708. {
  3709. front: {
  3710. height: math.unit(6, "feet"),
  3711. weight: math.unit(225, "lb"),
  3712. name: "Front",
  3713. image: {
  3714. source: "./media/characters/abysgar/front.svg"
  3715. }
  3716. }
  3717. },
  3718. [
  3719. {
  3720. name: "Small",
  3721. height: math.unit(4.5, "meters")
  3722. },
  3723. {
  3724. name: "Macro",
  3725. height: math.unit(1250, "meters"),
  3726. default: true
  3727. },
  3728. {
  3729. name: "Megamacro",
  3730. height: math.unit(125, "km")
  3731. },
  3732. {
  3733. name: "Gigamacro",
  3734. height: math.unit(26000, "km")
  3735. }
  3736. ]
  3737. ))
  3738. characterMakers.push(() => makeCharacter(
  3739. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3740. {
  3741. front: {
  3742. height: math.unit(6, "feet"),
  3743. weight: math.unit(180, "lb"),
  3744. name: "Front",
  3745. image: {
  3746. source: "./media/characters/yakuz/front.svg"
  3747. }
  3748. }
  3749. },
  3750. [
  3751. {
  3752. name: "Small",
  3753. height: math.unit(5, "meters")
  3754. },
  3755. {
  3756. name: "Macro",
  3757. height: math.unit(1500, "meters"),
  3758. default: true
  3759. },
  3760. {
  3761. name: "Megamacro",
  3762. height: math.unit(200, "km")
  3763. },
  3764. {
  3765. name: "Gigamacro",
  3766. height: math.unit(100000, "km")
  3767. }
  3768. ]
  3769. ))
  3770. characterMakers.push(() => makeCharacter(
  3771. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3772. {
  3773. front: {
  3774. height: math.unit(6, "feet"),
  3775. weight: math.unit(175, "lb"),
  3776. name: "Front",
  3777. image: {
  3778. source: "./media/characters/mirova/front.svg",
  3779. extra: 3334 / 3071,
  3780. bottom: 42 / 3375.6
  3781. }
  3782. }
  3783. },
  3784. [
  3785. {
  3786. name: "Small",
  3787. height: math.unit(5, "meters")
  3788. },
  3789. {
  3790. name: "Macro",
  3791. height: math.unit(900, "meters"),
  3792. default: true
  3793. },
  3794. {
  3795. name: "Megamacro",
  3796. height: math.unit(135, "km")
  3797. },
  3798. {
  3799. name: "Gigamacro",
  3800. height: math.unit(20000, "km")
  3801. }
  3802. ]
  3803. ))
  3804. characterMakers.push(() => makeCharacter(
  3805. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3806. {
  3807. side: {
  3808. height: math.unit(28.35, "feet"),
  3809. weight: math.unit(99.75, "tons"),
  3810. name: "Side",
  3811. image: {
  3812. source: "./media/characters/asana-mech/side.svg",
  3813. extra: 923 / 699,
  3814. bottom: 50 / 975
  3815. }
  3816. },
  3817. chaingun: {
  3818. height: math.unit(7, "feet"),
  3819. weight: math.unit(2400, "lb"),
  3820. name: "Chaingun",
  3821. image: {
  3822. source: "./media/characters/asana-mech/chaingun.svg"
  3823. }
  3824. },
  3825. laser: {
  3826. height: math.unit(7.12, "feet"),
  3827. weight: math.unit(2000, "lb"),
  3828. name: "Laser",
  3829. image: {
  3830. source: "./media/characters/asana-mech/laser.svg"
  3831. }
  3832. },
  3833. },
  3834. [
  3835. {
  3836. name: "Normal",
  3837. height: math.unit(28.35, "feet"),
  3838. default: true
  3839. },
  3840. {
  3841. name: "Macro",
  3842. height: math.unit(2500, "feet")
  3843. },
  3844. {
  3845. name: "Megamacro",
  3846. height: math.unit(25, "miles")
  3847. },
  3848. {
  3849. name: "Examacro",
  3850. height: math.unit(6e8, "lightyears")
  3851. },
  3852. ]
  3853. ))
  3854. characterMakers.push(() => makeCharacter(
  3855. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3856. {
  3857. front: {
  3858. height: math.unit(5, "meters"),
  3859. weight: math.unit(1000, "kg"),
  3860. name: "Front",
  3861. image: {
  3862. source: "./media/characters/asche/front.svg",
  3863. extra: 1258 / 1190,
  3864. bottom: 47 / 1305
  3865. }
  3866. },
  3867. frontUnderwear: {
  3868. height: math.unit(5, "meters"),
  3869. weight: math.unit(1000, "kg"),
  3870. name: "Front (Underwear)",
  3871. image: {
  3872. source: "./media/characters/asche/front-underwear.svg",
  3873. extra: 1258 / 1190,
  3874. bottom: 47 / 1305
  3875. }
  3876. },
  3877. frontDressed: {
  3878. height: math.unit(5, "meters"),
  3879. weight: math.unit(1000, "kg"),
  3880. name: "Front (Dressed)",
  3881. image: {
  3882. source: "./media/characters/asche/front-dressed.svg",
  3883. extra: 1258 / 1190,
  3884. bottom: 47 / 1305
  3885. }
  3886. },
  3887. frontArmor: {
  3888. height: math.unit(5, "meters"),
  3889. weight: math.unit(1000, "kg"),
  3890. name: "Front (Armored)",
  3891. image: {
  3892. source: "./media/characters/asche/front-armored.svg",
  3893. extra: 1374 / 1308,
  3894. bottom: 23 / 1397
  3895. }
  3896. },
  3897. mp724: {
  3898. height: math.unit(0.96, "meters"),
  3899. weight: math.unit(38, "kg"),
  3900. name: "H&K MP724",
  3901. image: {
  3902. source: "./media/characters/asche/h&k-mp724.svg"
  3903. }
  3904. },
  3905. side: {
  3906. height: math.unit(5, "meters"),
  3907. weight: math.unit(1000, "kg"),
  3908. name: "Side",
  3909. image: {
  3910. source: "./media/characters/asche/side.svg",
  3911. extra: 1717 / 1609,
  3912. bottom: 0.005
  3913. }
  3914. },
  3915. back: {
  3916. height: math.unit(5, "meters"),
  3917. weight: math.unit(1000, "kg"),
  3918. name: "Back",
  3919. image: {
  3920. source: "./media/characters/asche/back.svg",
  3921. extra: 1570 / 1501
  3922. }
  3923. },
  3924. },
  3925. [
  3926. {
  3927. name: "DEFCON 5",
  3928. height: math.unit(5, "meters")
  3929. },
  3930. {
  3931. name: "DEFCON 4",
  3932. height: math.unit(500, "meters"),
  3933. default: true
  3934. },
  3935. {
  3936. name: "DEFCON 3",
  3937. height: math.unit(5, "km")
  3938. },
  3939. {
  3940. name: "DEFCON 2",
  3941. height: math.unit(500, "km")
  3942. },
  3943. {
  3944. name: "DEFCON 1",
  3945. height: math.unit(500000, "km")
  3946. },
  3947. {
  3948. name: "DEFCON 0",
  3949. height: math.unit(3, "gigaparsecs")
  3950. },
  3951. ]
  3952. ))
  3953. characterMakers.push(() => makeCharacter(
  3954. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3955. {
  3956. front: {
  3957. height: math.unit(2, "meters"),
  3958. weight: math.unit(76, "kg"),
  3959. name: "Front",
  3960. image: {
  3961. source: "./media/characters/gale/front.svg"
  3962. }
  3963. },
  3964. frontAlt1: {
  3965. height: math.unit(2, "meters"),
  3966. weight: math.unit(76, "kg"),
  3967. name: "Front (Alt 1)",
  3968. image: {
  3969. source: "./media/characters/gale/front-alt-1.svg"
  3970. }
  3971. },
  3972. frontAlt2: {
  3973. height: math.unit(2, "meters"),
  3974. weight: math.unit(76, "kg"),
  3975. name: "Front (Alt 2)",
  3976. image: {
  3977. source: "./media/characters/gale/front-alt-2.svg"
  3978. }
  3979. },
  3980. },
  3981. [
  3982. {
  3983. name: "Normal",
  3984. height: math.unit(7, "feet")
  3985. },
  3986. {
  3987. name: "Macro",
  3988. height: math.unit(150, "feet"),
  3989. default: true
  3990. },
  3991. {
  3992. name: "Macro+",
  3993. height: math.unit(300, "feet")
  3994. },
  3995. ]
  3996. ))
  3997. characterMakers.push(() => makeCharacter(
  3998. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3999. {
  4000. front: {
  4001. height: math.unit(2, "meters"),
  4002. weight: math.unit(76, "kg"),
  4003. name: "Front",
  4004. image: {
  4005. source: "./media/characters/draylen/front.svg"
  4006. }
  4007. }
  4008. },
  4009. [
  4010. {
  4011. name: "Macro",
  4012. height: math.unit(150, "feet"),
  4013. default: true
  4014. }
  4015. ]
  4016. ))
  4017. characterMakers.push(() => makeCharacter(
  4018. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4019. {
  4020. front: {
  4021. height: math.unit(7 + 9 / 12, "feet"),
  4022. weight: math.unit(379, "lbs"),
  4023. name: "Front",
  4024. image: {
  4025. source: "./media/characters/chez/front.svg"
  4026. }
  4027. },
  4028. side: {
  4029. height: math.unit(7 + 9 / 12, "feet"),
  4030. weight: math.unit(379, "lbs"),
  4031. name: "Side",
  4032. image: {
  4033. source: "./media/characters/chez/side.svg"
  4034. }
  4035. }
  4036. },
  4037. [
  4038. {
  4039. name: "Normal",
  4040. height: math.unit(7 + 9 / 12, "feet"),
  4041. default: true
  4042. },
  4043. {
  4044. name: "God King",
  4045. height: math.unit(9750000, "meters")
  4046. }
  4047. ]
  4048. ))
  4049. characterMakers.push(() => makeCharacter(
  4050. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4051. {
  4052. front: {
  4053. height: math.unit(6, "feet"),
  4054. weight: math.unit(275, "lbs"),
  4055. name: "Front",
  4056. image: {
  4057. source: "./media/characters/kaylum/front.svg",
  4058. bottom: 0.01,
  4059. extra: 1166 / 1031
  4060. }
  4061. },
  4062. frontWingless: {
  4063. height: math.unit(6, "feet"),
  4064. weight: math.unit(275, "lbs"),
  4065. name: "Front (Wingless)",
  4066. image: {
  4067. source: "./media/characters/kaylum/front-wingless.svg",
  4068. bottom: 0.01,
  4069. extra: 1117 / 1031
  4070. }
  4071. }
  4072. },
  4073. [
  4074. {
  4075. name: "Normal",
  4076. height: math.unit(3.05, "meters")
  4077. },
  4078. {
  4079. name: "Master",
  4080. height: math.unit(5.5, "meters")
  4081. },
  4082. {
  4083. name: "Rampage",
  4084. height: math.unit(19, "meters")
  4085. },
  4086. {
  4087. name: "Macro Lite",
  4088. height: math.unit(37, "meters")
  4089. },
  4090. {
  4091. name: "Hyper Predator",
  4092. height: math.unit(61, "meters")
  4093. },
  4094. {
  4095. name: "Macro",
  4096. height: math.unit(138, "meters"),
  4097. default: true
  4098. }
  4099. ]
  4100. ))
  4101. characterMakers.push(() => makeCharacter(
  4102. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4103. {
  4104. front: {
  4105. height: math.unit(6, "feet"),
  4106. weight: math.unit(150, "lbs"),
  4107. name: "Front",
  4108. image: {
  4109. source: "./media/characters/geta/front.svg"
  4110. }
  4111. }
  4112. },
  4113. [
  4114. {
  4115. name: "Micro",
  4116. height: math.unit(3, "inches"),
  4117. default: true
  4118. },
  4119. {
  4120. name: "Normal",
  4121. height: math.unit(5 + 5 / 12, "feet")
  4122. }
  4123. ]
  4124. ))
  4125. characterMakers.push(() => makeCharacter(
  4126. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4127. {
  4128. front: {
  4129. height: math.unit(6, "feet"),
  4130. weight: math.unit(300, "lbs"),
  4131. name: "Front",
  4132. image: {
  4133. source: "./media/characters/tyrnn/front.svg"
  4134. }
  4135. }
  4136. },
  4137. [
  4138. {
  4139. name: "Main Height",
  4140. height: math.unit(355, "feet"),
  4141. default: true
  4142. },
  4143. {
  4144. name: "Fave. Height",
  4145. height: math.unit(2400, "feet")
  4146. }
  4147. ]
  4148. ))
  4149. characterMakers.push(() => makeCharacter(
  4150. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4151. {
  4152. front: {
  4153. height: math.unit(6, "feet"),
  4154. weight: math.unit(300, "lbs"),
  4155. name: "Front",
  4156. image: {
  4157. source: "./media/characters/appledectomy/front.svg"
  4158. }
  4159. }
  4160. },
  4161. [
  4162. {
  4163. name: "Macro",
  4164. height: math.unit(2500, "feet")
  4165. },
  4166. {
  4167. name: "Megamacro",
  4168. height: math.unit(50, "miles"),
  4169. default: true
  4170. },
  4171. {
  4172. name: "Gigamacro",
  4173. height: math.unit(5000, "miles")
  4174. },
  4175. {
  4176. name: "Teramacro",
  4177. height: math.unit(250000, "miles")
  4178. },
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(6, "feet"),
  4186. weight: math.unit(200, "lbs"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/vulpes/front.svg",
  4190. extra: 573 / 543,
  4191. bottom: 0.033
  4192. }
  4193. },
  4194. side: {
  4195. height: math.unit(6, "feet"),
  4196. weight: math.unit(200, "lbs"),
  4197. name: "Side",
  4198. image: {
  4199. source: "./media/characters/vulpes/side.svg",
  4200. extra: 577 / 549,
  4201. bottom: 11 / 588
  4202. }
  4203. },
  4204. back: {
  4205. height: math.unit(6, "feet"),
  4206. weight: math.unit(200, "lbs"),
  4207. name: "Back",
  4208. image: {
  4209. source: "./media/characters/vulpes/back.svg",
  4210. extra: 573 / 549,
  4211. bottom: 20 / 593
  4212. }
  4213. },
  4214. feet: {
  4215. height: math.unit(1.276, "feet"),
  4216. name: "Feet",
  4217. image: {
  4218. source: "./media/characters/vulpes/feet.svg"
  4219. }
  4220. },
  4221. maw: {
  4222. height: math.unit(1.18, "feet"),
  4223. name: "Maw",
  4224. image: {
  4225. source: "./media/characters/vulpes/maw.svg"
  4226. }
  4227. },
  4228. },
  4229. [
  4230. {
  4231. name: "Micro",
  4232. height: math.unit(2, "inches")
  4233. },
  4234. {
  4235. name: "Normal",
  4236. height: math.unit(6.3, "feet")
  4237. },
  4238. {
  4239. name: "Macro",
  4240. height: math.unit(850, "feet")
  4241. },
  4242. {
  4243. name: "Megamacro",
  4244. height: math.unit(7500, "feet"),
  4245. default: true
  4246. },
  4247. {
  4248. name: "Gigamacro",
  4249. height: math.unit(570000, "miles")
  4250. }
  4251. ]
  4252. ))
  4253. characterMakers.push(() => makeCharacter(
  4254. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4255. {
  4256. front: {
  4257. height: math.unit(6, "feet"),
  4258. weight: math.unit(210, "lbs"),
  4259. name: "Front",
  4260. image: {
  4261. source: "./media/characters/rain-fallen/front.svg"
  4262. }
  4263. },
  4264. side: {
  4265. height: math.unit(6, "feet"),
  4266. weight: math.unit(210, "lbs"),
  4267. name: "Side",
  4268. image: {
  4269. source: "./media/characters/rain-fallen/side.svg"
  4270. }
  4271. },
  4272. back: {
  4273. height: math.unit(6, "feet"),
  4274. weight: math.unit(210, "lbs"),
  4275. name: "Back",
  4276. image: {
  4277. source: "./media/characters/rain-fallen/back.svg"
  4278. }
  4279. },
  4280. feral: {
  4281. height: math.unit(9, "feet"),
  4282. weight: math.unit(700, "lbs"),
  4283. name: "Feral",
  4284. image: {
  4285. source: "./media/characters/rain-fallen/feral.svg"
  4286. }
  4287. },
  4288. },
  4289. [
  4290. {
  4291. name: "Normal",
  4292. height: math.unit(5, "meter")
  4293. },
  4294. {
  4295. name: "Macro",
  4296. height: math.unit(150, "meter"),
  4297. default: true
  4298. },
  4299. {
  4300. name: "Megamacro",
  4301. height: math.unit(278e6, "meter")
  4302. },
  4303. {
  4304. name: "Gigamacro",
  4305. height: math.unit(2e9, "meter")
  4306. },
  4307. {
  4308. name: "Teramacro",
  4309. height: math.unit(8e12, "meter")
  4310. },
  4311. {
  4312. name: "Devourer",
  4313. height: math.unit(14, "zettameters")
  4314. },
  4315. {
  4316. name: "Scarlet King",
  4317. height: math.unit(18, "yottameters")
  4318. },
  4319. {
  4320. name: "Void",
  4321. height: math.unit(6.66e66, "yottameters")
  4322. }
  4323. ]
  4324. ))
  4325. characterMakers.push(() => makeCharacter(
  4326. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4327. {
  4328. standing: {
  4329. height: math.unit(6, "feet"),
  4330. weight: math.unit(180, "lbs"),
  4331. name: "Standing",
  4332. image: {
  4333. source: "./media/characters/zaakira/standing.svg"
  4334. }
  4335. },
  4336. laying: {
  4337. height: math.unit(3, "feet"),
  4338. weight: math.unit(180, "lbs"),
  4339. name: "Laying",
  4340. image: {
  4341. source: "./media/characters/zaakira/laying.svg"
  4342. }
  4343. },
  4344. },
  4345. [
  4346. {
  4347. name: "Normal",
  4348. height: math.unit(12, "feet")
  4349. },
  4350. {
  4351. name: "Macro",
  4352. height: math.unit(279, "feet"),
  4353. default: true
  4354. }
  4355. ]
  4356. ))
  4357. characterMakers.push(() => makeCharacter(
  4358. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4359. {
  4360. femSfw: {
  4361. height: math.unit(8, "feet"),
  4362. weight: math.unit(350, "lb"),
  4363. name: "Fem",
  4364. image: {
  4365. source: "./media/characters/sigvald/fem-sfw.svg",
  4366. extra: 182 / 164,
  4367. bottom: 8.7 / 190.5
  4368. }
  4369. },
  4370. femNsfw: {
  4371. height: math.unit(8, "feet"),
  4372. weight: math.unit(350, "lb"),
  4373. name: "Fem (NSFW)",
  4374. image: {
  4375. source: "./media/characters/sigvald/fem-nsfw.svg",
  4376. extra: 182 / 164,
  4377. bottom: 8.7 / 190.5
  4378. }
  4379. },
  4380. maleNsfw: {
  4381. height: math.unit(8, "feet"),
  4382. weight: math.unit(350, "lb"),
  4383. name: "Male (NSFW)",
  4384. image: {
  4385. source: "./media/characters/sigvald/male-nsfw.svg",
  4386. extra: 182 / 164,
  4387. bottom: 8.7 / 190.5
  4388. }
  4389. },
  4390. hermNsfw: {
  4391. height: math.unit(8, "feet"),
  4392. weight: math.unit(350, "lb"),
  4393. name: "Herm (NSFW)",
  4394. image: {
  4395. source: "./media/characters/sigvald/herm-nsfw.svg",
  4396. extra: 182 / 164,
  4397. bottom: 8.7 / 190.5
  4398. }
  4399. },
  4400. dick: {
  4401. height: math.unit(2.36, "feet"),
  4402. name: "Dick",
  4403. image: {
  4404. source: "./media/characters/sigvald/dick.svg"
  4405. }
  4406. },
  4407. eye: {
  4408. height: math.unit(0.31, "feet"),
  4409. name: "Eye",
  4410. image: {
  4411. source: "./media/characters/sigvald/eye.svg"
  4412. }
  4413. },
  4414. mouth: {
  4415. height: math.unit(0.92, "feet"),
  4416. name: "Mouth",
  4417. image: {
  4418. source: "./media/characters/sigvald/mouth.svg"
  4419. }
  4420. },
  4421. paws: {
  4422. height: math.unit(2.2, "feet"),
  4423. name: "Paws",
  4424. image: {
  4425. source: "./media/characters/sigvald/paws.svg"
  4426. }
  4427. }
  4428. },
  4429. [
  4430. {
  4431. name: "Normal",
  4432. height: math.unit(8, "feet")
  4433. },
  4434. {
  4435. name: "Large",
  4436. height: math.unit(12, "feet")
  4437. },
  4438. {
  4439. name: "Larger",
  4440. height: math.unit(20, "feet")
  4441. },
  4442. {
  4443. name: "Macro",
  4444. height: math.unit(150, "feet")
  4445. },
  4446. {
  4447. name: "Macro+",
  4448. height: math.unit(200, "feet"),
  4449. default: true
  4450. },
  4451. ]
  4452. ))
  4453. characterMakers.push(() => makeCharacter(
  4454. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4455. {
  4456. side: {
  4457. height: math.unit(12, "feet"),
  4458. weight: math.unit(2000, "kg"),
  4459. name: "Side",
  4460. image: {
  4461. source: "./media/characters/scott/side.svg",
  4462. extra: 754 / 724,
  4463. bottom: 0.069
  4464. }
  4465. },
  4466. upright: {
  4467. height: math.unit(12, "feet"),
  4468. weight: math.unit(2000, "kg"),
  4469. name: "Upright",
  4470. image: {
  4471. source: "./media/characters/scott/upright.svg",
  4472. extra: 3881 / 3722,
  4473. bottom: 0.05
  4474. }
  4475. },
  4476. },
  4477. [
  4478. {
  4479. name: "Normal",
  4480. height: math.unit(12, "feet"),
  4481. default: true
  4482. },
  4483. ]
  4484. ))
  4485. characterMakers.push(() => makeCharacter(
  4486. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4487. {
  4488. side: {
  4489. height: math.unit(8, "meters"),
  4490. weight: math.unit(84755, "lbs"),
  4491. name: "Side",
  4492. image: {
  4493. source: "./media/characters/tobias/side.svg",
  4494. extra: 1474 / 1096,
  4495. bottom: 38.9 / 1513.1235
  4496. }
  4497. },
  4498. },
  4499. [
  4500. {
  4501. name: "Normal",
  4502. height: math.unit(8, "meters"),
  4503. default: true
  4504. },
  4505. ]
  4506. ))
  4507. characterMakers.push(() => makeCharacter(
  4508. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4509. {
  4510. front: {
  4511. height: math.unit(5.5, "feet"),
  4512. weight: math.unit(400, "lbs"),
  4513. name: "Front",
  4514. image: {
  4515. source: "./media/characters/kieran/front.svg",
  4516. extra: 2694 / 2364,
  4517. bottom: 217 / 2908
  4518. }
  4519. },
  4520. side: {
  4521. height: math.unit(5.5, "feet"),
  4522. weight: math.unit(400, "lbs"),
  4523. name: "Side",
  4524. image: {
  4525. source: "./media/characters/kieran/side.svg",
  4526. extra: 875 / 777,
  4527. bottom: 84.6 / 959
  4528. }
  4529. },
  4530. },
  4531. [
  4532. {
  4533. name: "Normal",
  4534. height: math.unit(5.5, "feet"),
  4535. default: true
  4536. },
  4537. ]
  4538. ))
  4539. characterMakers.push(() => makeCharacter(
  4540. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4541. {
  4542. side: {
  4543. height: math.unit(2, "meters"),
  4544. weight: math.unit(70, "kg"),
  4545. name: "Side",
  4546. image: {
  4547. source: "./media/characters/sanya/side.svg",
  4548. bottom: 0.02,
  4549. extra: 1.02
  4550. }
  4551. },
  4552. },
  4553. [
  4554. {
  4555. name: "Small",
  4556. height: math.unit(2, "meters")
  4557. },
  4558. {
  4559. name: "Normal",
  4560. height: math.unit(3, "meters")
  4561. },
  4562. {
  4563. name: "Macro",
  4564. height: math.unit(16, "meters"),
  4565. default: true
  4566. },
  4567. ]
  4568. ))
  4569. characterMakers.push(() => makeCharacter(
  4570. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4571. {
  4572. front: {
  4573. height: math.unit(2, "meters"),
  4574. weight: math.unit(120, "kg"),
  4575. name: "Front",
  4576. image: {
  4577. source: "./media/characters/miranda/front.svg",
  4578. extra: 195 / 185,
  4579. bottom: 10.9 / 206.5
  4580. }
  4581. },
  4582. back: {
  4583. height: math.unit(2, "meters"),
  4584. weight: math.unit(120, "kg"),
  4585. name: "Back",
  4586. image: {
  4587. source: "./media/characters/miranda/back.svg",
  4588. extra: 201 / 193,
  4589. bottom: 2.3 / 203.7
  4590. }
  4591. },
  4592. },
  4593. [
  4594. {
  4595. name: "Normal",
  4596. height: math.unit(10, "feet"),
  4597. default: true
  4598. }
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "James", species: ["deer"], tags: ["anthro"] },
  4603. {
  4604. side: {
  4605. height: math.unit(2, "meters"),
  4606. weight: math.unit(100, "kg"),
  4607. name: "Front",
  4608. image: {
  4609. source: "./media/characters/james/front.svg",
  4610. extra: 10 / 8.5
  4611. }
  4612. },
  4613. },
  4614. [
  4615. {
  4616. name: "Normal",
  4617. height: math.unit(8.5, "feet"),
  4618. default: true
  4619. }
  4620. ]
  4621. ))
  4622. characterMakers.push(() => makeCharacter(
  4623. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4624. {
  4625. side: {
  4626. height: math.unit(9.5, "feet"),
  4627. weight: math.unit(2500, "lbs"),
  4628. name: "Side",
  4629. image: {
  4630. source: "./media/characters/heather/side.svg"
  4631. }
  4632. },
  4633. },
  4634. [
  4635. {
  4636. name: "Normal",
  4637. height: math.unit(9.5, "feet"),
  4638. default: true
  4639. }
  4640. ]
  4641. ))
  4642. characterMakers.push(() => makeCharacter(
  4643. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4644. {
  4645. side: {
  4646. height: math.unit(6.5, "feet"),
  4647. weight: math.unit(400, "lbs"),
  4648. name: "Side",
  4649. image: {
  4650. source: "./media/characters/lukas/side.svg",
  4651. extra: 7.25 / 6.5
  4652. }
  4653. },
  4654. },
  4655. [
  4656. {
  4657. name: "Normal",
  4658. height: math.unit(6.5, "feet"),
  4659. default: true
  4660. }
  4661. ]
  4662. ))
  4663. characterMakers.push(() => makeCharacter(
  4664. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4665. {
  4666. side: {
  4667. height: math.unit(5, "feet"),
  4668. weight: math.unit(3000, "lbs"),
  4669. name: "Side",
  4670. image: {
  4671. source: "./media/characters/louise/side.svg"
  4672. }
  4673. },
  4674. },
  4675. [
  4676. {
  4677. name: "Normal",
  4678. height: math.unit(5, "feet"),
  4679. default: true
  4680. }
  4681. ]
  4682. ))
  4683. characterMakers.push(() => makeCharacter(
  4684. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4685. {
  4686. side: {
  4687. height: math.unit(6, "feet"),
  4688. weight: math.unit(150, "lbs"),
  4689. name: "Side",
  4690. image: {
  4691. source: "./media/characters/ramona/side.svg"
  4692. }
  4693. },
  4694. },
  4695. [
  4696. {
  4697. name: "Normal",
  4698. height: math.unit(5.3, "meters"),
  4699. default: true
  4700. },
  4701. {
  4702. name: "Macro",
  4703. height: math.unit(20, "stories")
  4704. },
  4705. {
  4706. name: "Macro+",
  4707. height: math.unit(50, "stories")
  4708. },
  4709. ]
  4710. ))
  4711. characterMakers.push(() => makeCharacter(
  4712. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4713. {
  4714. standing: {
  4715. height: math.unit(5.75, "feet"),
  4716. weight: math.unit(160, "lbs"),
  4717. name: "Standing",
  4718. image: {
  4719. source: "./media/characters/deerpuff/standing.svg",
  4720. extra: 682 / 624
  4721. }
  4722. },
  4723. sitting: {
  4724. height: math.unit(5.75 / 1.79, "feet"),
  4725. weight: math.unit(160, "lbs"),
  4726. name: "Sitting",
  4727. image: {
  4728. source: "./media/characters/deerpuff/sitting.svg",
  4729. bottom: 44 / 400,
  4730. extra: 1
  4731. }
  4732. },
  4733. taurLaying: {
  4734. height: math.unit(6, "feet"),
  4735. weight: math.unit(400, "lbs"),
  4736. name: "Taur (Laying)",
  4737. image: {
  4738. source: "./media/characters/deerpuff/taur-laying.svg"
  4739. }
  4740. },
  4741. },
  4742. [
  4743. {
  4744. name: "Puffball",
  4745. height: math.unit(6, "inches")
  4746. },
  4747. {
  4748. name: "Normalpuff",
  4749. height: math.unit(5.75, "feet")
  4750. },
  4751. {
  4752. name: "Macropuff",
  4753. height: math.unit(1500, "feet"),
  4754. default: true
  4755. },
  4756. {
  4757. name: "Megapuff",
  4758. height: math.unit(500, "miles")
  4759. },
  4760. {
  4761. name: "Gigapuff",
  4762. height: math.unit(250000, "miles")
  4763. },
  4764. {
  4765. name: "Omegapuff",
  4766. height: math.unit(1000, "lightyears")
  4767. },
  4768. ]
  4769. ))
  4770. characterMakers.push(() => makeCharacter(
  4771. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4772. {
  4773. stomping: {
  4774. height: math.unit(6, "feet"),
  4775. weight: math.unit(170, "lbs"),
  4776. name: "Stomping",
  4777. image: {
  4778. source: "./media/characters/vivian/stomping.svg"
  4779. }
  4780. },
  4781. sitting: {
  4782. height: math.unit(6 / 1.75, "feet"),
  4783. weight: math.unit(170, "lbs"),
  4784. name: "Sitting",
  4785. image: {
  4786. source: "./media/characters/vivian/sitting.svg",
  4787. bottom: 1 / 6.4,
  4788. extra: 1,
  4789. }
  4790. },
  4791. },
  4792. [
  4793. {
  4794. name: "Normal",
  4795. height: math.unit(7, "feet"),
  4796. default: true
  4797. },
  4798. {
  4799. name: "Macro",
  4800. height: math.unit(10, "stories")
  4801. },
  4802. {
  4803. name: "Macro+",
  4804. height: math.unit(30, "stories")
  4805. },
  4806. {
  4807. name: "Megamacro",
  4808. height: math.unit(10, "miles")
  4809. },
  4810. {
  4811. name: "Megamacro+",
  4812. height: math.unit(2750000, "meters")
  4813. },
  4814. ]
  4815. ))
  4816. characterMakers.push(() => makeCharacter(
  4817. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4818. {
  4819. front: {
  4820. height: math.unit(6, "feet"),
  4821. weight: math.unit(160, "lbs"),
  4822. name: "Front",
  4823. image: {
  4824. source: "./media/characters/prince/front.svg",
  4825. extra: 3400 / 3000
  4826. }
  4827. },
  4828. jumping: {
  4829. height: math.unit(6, "feet"),
  4830. weight: math.unit(160, "lbs"),
  4831. name: "Jumping",
  4832. image: {
  4833. source: "./media/characters/prince/jump.svg",
  4834. extra: 2555 / 2134
  4835. }
  4836. },
  4837. },
  4838. [
  4839. {
  4840. name: "Normal",
  4841. height: math.unit(7.75, "feet"),
  4842. default: true
  4843. },
  4844. {
  4845. name: "Not cute",
  4846. height: math.unit(17, "feet")
  4847. },
  4848. {
  4849. name: "I said NOT",
  4850. height: math.unit(91, "feet")
  4851. },
  4852. {
  4853. name: "Please stop",
  4854. height: math.unit(560, "feet")
  4855. },
  4856. {
  4857. name: "What have you done",
  4858. height: math.unit(2200, "feet")
  4859. },
  4860. {
  4861. name: "Deer God",
  4862. height: math.unit(3.6, "miles")
  4863. },
  4864. ]
  4865. ))
  4866. characterMakers.push(() => makeCharacter(
  4867. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4868. {
  4869. standing: {
  4870. height: math.unit(6, "feet"),
  4871. weight: math.unit(300, "lbs"),
  4872. name: "Standing",
  4873. image: {
  4874. source: "./media/characters/psymon/standing.svg",
  4875. extra: 1888 / 1810,
  4876. bottom: 0.05
  4877. }
  4878. },
  4879. slithering: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(300, "lbs"),
  4882. name: "Slithering",
  4883. image: {
  4884. source: "./media/characters/psymon/slithering.svg",
  4885. extra: 1330 / 1224
  4886. }
  4887. },
  4888. slitheringAlt: {
  4889. height: math.unit(6, "feet"),
  4890. weight: math.unit(300, "lbs"),
  4891. name: "Slithering (Alt)",
  4892. image: {
  4893. source: "./media/characters/psymon/slithering-alt.svg",
  4894. extra: 1330 / 1224
  4895. }
  4896. },
  4897. },
  4898. [
  4899. {
  4900. name: "Normal",
  4901. height: math.unit(11.25, "feet"),
  4902. default: true
  4903. },
  4904. {
  4905. name: "Large",
  4906. height: math.unit(27, "feet")
  4907. },
  4908. {
  4909. name: "Giant",
  4910. height: math.unit(87, "feet")
  4911. },
  4912. {
  4913. name: "Macro",
  4914. height: math.unit(365, "feet")
  4915. },
  4916. {
  4917. name: "Megamacro",
  4918. height: math.unit(3, "miles")
  4919. },
  4920. {
  4921. name: "World Serpent",
  4922. height: math.unit(8000, "miles")
  4923. },
  4924. ]
  4925. ))
  4926. characterMakers.push(() => makeCharacter(
  4927. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4928. {
  4929. front: {
  4930. height: math.unit(6, "feet"),
  4931. weight: math.unit(180, "lbs"),
  4932. name: "Front",
  4933. image: {
  4934. source: "./media/characters/daimos/front.svg",
  4935. extra: 4160 / 3897,
  4936. bottom: 0.021
  4937. }
  4938. }
  4939. },
  4940. [
  4941. {
  4942. name: "Normal",
  4943. height: math.unit(8, "feet"),
  4944. default: true
  4945. },
  4946. {
  4947. name: "Big Dog",
  4948. height: math.unit(22, "feet")
  4949. },
  4950. {
  4951. name: "Macro",
  4952. height: math.unit(127, "feet")
  4953. },
  4954. {
  4955. name: "Megamacro",
  4956. height: math.unit(3600, "feet")
  4957. },
  4958. ]
  4959. ))
  4960. characterMakers.push(() => makeCharacter(
  4961. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4962. {
  4963. side: {
  4964. height: math.unit(6, "feet"),
  4965. weight: math.unit(180, "lbs"),
  4966. name: "Side",
  4967. image: {
  4968. source: "./media/characters/blake/side.svg",
  4969. extra: 1212 / 1120,
  4970. bottom: 0.05
  4971. }
  4972. },
  4973. crouched: {
  4974. height: math.unit(6 * 0.57, "feet"),
  4975. weight: math.unit(180, "lbs"),
  4976. name: "Crouched",
  4977. image: {
  4978. source: "./media/characters/blake/crouched.svg",
  4979. extra: 840 / 587,
  4980. bottom: 0.04
  4981. }
  4982. },
  4983. bent: {
  4984. height: math.unit(6 * 0.75, "feet"),
  4985. weight: math.unit(180, "lbs"),
  4986. name: "Bent",
  4987. image: {
  4988. source: "./media/characters/blake/bent.svg",
  4989. extra: 592 / 544,
  4990. bottom: 0.035
  4991. }
  4992. },
  4993. },
  4994. [
  4995. {
  4996. name: "Normal",
  4997. height: math.unit(8 + 1 / 6, "feet"),
  4998. default: true
  4999. },
  5000. {
  5001. name: "Big Backside",
  5002. height: math.unit(37, "feet")
  5003. },
  5004. {
  5005. name: "Subway Shredder",
  5006. height: math.unit(72, "feet")
  5007. },
  5008. {
  5009. name: "City Carver",
  5010. height: math.unit(1675, "feet")
  5011. },
  5012. {
  5013. name: "Tectonic Tweaker",
  5014. height: math.unit(2300, "miles")
  5015. },
  5016. ]
  5017. ))
  5018. characterMakers.push(() => makeCharacter(
  5019. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5020. {
  5021. front: {
  5022. height: math.unit(6, "feet"),
  5023. weight: math.unit(180, "lbs"),
  5024. name: "Front",
  5025. image: {
  5026. source: "./media/characters/guisetto/front.svg",
  5027. extra: 856 / 817,
  5028. bottom: 0.06
  5029. }
  5030. },
  5031. airborne: {
  5032. height: math.unit(6, "feet"),
  5033. weight: math.unit(180, "lbs"),
  5034. name: "Airborne",
  5035. image: {
  5036. source: "./media/characters/guisetto/airborne.svg",
  5037. extra: 584 / 525
  5038. }
  5039. },
  5040. },
  5041. [
  5042. {
  5043. name: "Normal",
  5044. height: math.unit(10 + 11 / 12, "feet"),
  5045. default: true
  5046. },
  5047. {
  5048. name: "Large",
  5049. height: math.unit(35, "feet")
  5050. },
  5051. {
  5052. name: "Macro",
  5053. height: math.unit(475, "feet")
  5054. },
  5055. ]
  5056. ))
  5057. characterMakers.push(() => makeCharacter(
  5058. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5059. {
  5060. front: {
  5061. height: math.unit(6, "feet"),
  5062. weight: math.unit(180, "lbs"),
  5063. name: "Front",
  5064. image: {
  5065. source: "./media/characters/luxor/front.svg",
  5066. extra: 2940 / 2152
  5067. }
  5068. },
  5069. back: {
  5070. height: math.unit(6, "feet"),
  5071. weight: math.unit(180, "lbs"),
  5072. name: "Back",
  5073. image: {
  5074. source: "./media/characters/luxor/back.svg",
  5075. extra: 1083 / 960
  5076. }
  5077. },
  5078. },
  5079. [
  5080. {
  5081. name: "Normal",
  5082. height: math.unit(5 + 5 / 6, "feet"),
  5083. default: true
  5084. },
  5085. {
  5086. name: "Lamp",
  5087. height: math.unit(50, "feet")
  5088. },
  5089. {
  5090. name: "Lämp",
  5091. height: math.unit(300, "feet")
  5092. },
  5093. {
  5094. name: "The sun is a lamp",
  5095. height: math.unit(250000, "miles")
  5096. },
  5097. ]
  5098. ))
  5099. characterMakers.push(() => makeCharacter(
  5100. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5101. {
  5102. front: {
  5103. height: math.unit(6, "feet"),
  5104. weight: math.unit(50, "lbs"),
  5105. name: "Front",
  5106. image: {
  5107. source: "./media/characters/huoyan/front.svg"
  5108. }
  5109. },
  5110. side: {
  5111. height: math.unit(6, "feet"),
  5112. weight: math.unit(180, "lbs"),
  5113. name: "Side",
  5114. image: {
  5115. source: "./media/characters/huoyan/side.svg"
  5116. }
  5117. },
  5118. },
  5119. [
  5120. {
  5121. name: "Chef",
  5122. height: math.unit(9, "feet")
  5123. },
  5124. {
  5125. name: "Normal",
  5126. height: math.unit(65, "feet"),
  5127. default: true
  5128. },
  5129. {
  5130. name: "Macro",
  5131. height: math.unit(780, "feet")
  5132. },
  5133. {
  5134. name: "Flaming Mountain",
  5135. height: math.unit(4.8, "miles")
  5136. },
  5137. {
  5138. name: "Celestial",
  5139. height: math.unit(765000, "miles")
  5140. },
  5141. ]
  5142. ))
  5143. characterMakers.push(() => makeCharacter(
  5144. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5145. {
  5146. front: {
  5147. height: math.unit(5 + 3 / 4, "feet"),
  5148. weight: math.unit(120, "lbs"),
  5149. name: "Front",
  5150. image: {
  5151. source: "./media/characters/tails/front.svg"
  5152. }
  5153. }
  5154. },
  5155. [
  5156. {
  5157. name: "Normal",
  5158. height: math.unit(5 + 3 / 4, "feet"),
  5159. default: true
  5160. }
  5161. ]
  5162. ))
  5163. characterMakers.push(() => makeCharacter(
  5164. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5165. {
  5166. front: {
  5167. height: math.unit(4, "feet"),
  5168. weight: math.unit(50, "lbs"),
  5169. name: "Front",
  5170. image: {
  5171. source: "./media/characters/rainy/front.svg"
  5172. }
  5173. }
  5174. },
  5175. [
  5176. {
  5177. name: "Macro",
  5178. height: math.unit(800, "feet"),
  5179. default: true
  5180. }
  5181. ]
  5182. ))
  5183. characterMakers.push(() => makeCharacter(
  5184. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5185. {
  5186. front: {
  5187. height: math.unit(6, "feet"),
  5188. weight: math.unit(150, "lbs"),
  5189. name: "Front",
  5190. image: {
  5191. source: "./media/characters/rainier/front.svg"
  5192. }
  5193. }
  5194. },
  5195. [
  5196. {
  5197. name: "Micro",
  5198. height: math.unit(2, "mm"),
  5199. default: true
  5200. }
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5205. {
  5206. front: {
  5207. height: math.unit(6, "feet"),
  5208. weight: math.unit(180, "lbs"),
  5209. name: "Front",
  5210. image: {
  5211. source: "./media/characters/andy/front.svg"
  5212. }
  5213. }
  5214. },
  5215. [
  5216. {
  5217. name: "Normal",
  5218. height: math.unit(8, "feet"),
  5219. default: true
  5220. },
  5221. {
  5222. name: "Macro",
  5223. height: math.unit(1000, "feet")
  5224. },
  5225. {
  5226. name: "Megamacro",
  5227. height: math.unit(5, "miles")
  5228. },
  5229. {
  5230. name: "Gigamacro",
  5231. height: math.unit(5000, "miles")
  5232. },
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5237. {
  5238. front: {
  5239. height: math.unit(6, "feet"),
  5240. weight: math.unit(210, "lbs"),
  5241. name: "Front",
  5242. image: {
  5243. source: "./media/characters/cimmaron/front-sfw.svg",
  5244. extra: 701 / 676,
  5245. bottom: 0.046
  5246. }
  5247. },
  5248. back: {
  5249. height: math.unit(6, "feet"),
  5250. weight: math.unit(210, "lbs"),
  5251. name: "Back",
  5252. image: {
  5253. source: "./media/characters/cimmaron/back-sfw.svg",
  5254. extra: 701 / 676,
  5255. bottom: 0.046
  5256. }
  5257. },
  5258. frontNsfw: {
  5259. height: math.unit(6, "feet"),
  5260. weight: math.unit(210, "lbs"),
  5261. name: "Front (NSFW)",
  5262. image: {
  5263. source: "./media/characters/cimmaron/front-nsfw.svg",
  5264. extra: 701 / 676,
  5265. bottom: 0.046
  5266. }
  5267. },
  5268. backNsfw: {
  5269. height: math.unit(6, "feet"),
  5270. weight: math.unit(210, "lbs"),
  5271. name: "Back (NSFW)",
  5272. image: {
  5273. source: "./media/characters/cimmaron/back-nsfw.svg",
  5274. extra: 701 / 676,
  5275. bottom: 0.046
  5276. }
  5277. },
  5278. dick: {
  5279. height: math.unit(1.714, "feet"),
  5280. name: "Dick",
  5281. image: {
  5282. source: "./media/characters/cimmaron/dick.svg"
  5283. }
  5284. },
  5285. },
  5286. [
  5287. {
  5288. name: "Normal",
  5289. height: math.unit(6, "feet"),
  5290. default: true
  5291. },
  5292. {
  5293. name: "Macro Mayor",
  5294. height: math.unit(350, "meters")
  5295. },
  5296. ]
  5297. ))
  5298. characterMakers.push(() => makeCharacter(
  5299. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5300. {
  5301. front: {
  5302. height: math.unit(6, "feet"),
  5303. weight: math.unit(200, "lbs"),
  5304. name: "Front",
  5305. image: {
  5306. source: "./media/characters/akari/front.svg",
  5307. extra: 962 / 901,
  5308. bottom: 0.04
  5309. }
  5310. }
  5311. },
  5312. [
  5313. {
  5314. name: "Micro",
  5315. height: math.unit(5, "inches"),
  5316. default: true
  5317. },
  5318. {
  5319. name: "Normal",
  5320. height: math.unit(7, "feet")
  5321. },
  5322. ]
  5323. ))
  5324. characterMakers.push(() => makeCharacter(
  5325. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5326. {
  5327. front: {
  5328. height: math.unit(6, "feet"),
  5329. weight: math.unit(140, "lbs"),
  5330. name: "Front",
  5331. image: {
  5332. source: "./media/characters/cynosura/front.svg",
  5333. extra: 896 / 847
  5334. }
  5335. },
  5336. back: {
  5337. height: math.unit(6, "feet"),
  5338. weight: math.unit(140, "lbs"),
  5339. name: "Back",
  5340. image: {
  5341. source: "./media/characters/cynosura/back.svg",
  5342. extra: 1365 / 1250
  5343. }
  5344. },
  5345. },
  5346. [
  5347. {
  5348. name: "Micro",
  5349. height: math.unit(4, "inches")
  5350. },
  5351. {
  5352. name: "Normal",
  5353. height: math.unit(5.75, "feet"),
  5354. default: true
  5355. },
  5356. {
  5357. name: "Tall",
  5358. height: math.unit(10, "feet")
  5359. },
  5360. {
  5361. name: "Big",
  5362. height: math.unit(20, "feet")
  5363. },
  5364. {
  5365. name: "Macro",
  5366. height: math.unit(50, "feet")
  5367. },
  5368. ]
  5369. ))
  5370. characterMakers.push(() => makeCharacter(
  5371. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5372. {
  5373. front: {
  5374. height: math.unit(6, "feet"),
  5375. weight: math.unit(170, "lbs"),
  5376. name: "Front",
  5377. image: {
  5378. source: "./media/characters/gin/front.svg",
  5379. extra: 1.053,
  5380. bottom: 0.025
  5381. }
  5382. },
  5383. foot: {
  5384. height: math.unit(6 / 4.25, "feet"),
  5385. name: "Foot",
  5386. image: {
  5387. source: "./media/characters/gin/foot.svg"
  5388. }
  5389. },
  5390. sole: {
  5391. height: math.unit(6 / 4.40, "feet"),
  5392. name: "Sole",
  5393. image: {
  5394. source: "./media/characters/gin/sole.svg"
  5395. }
  5396. },
  5397. },
  5398. [
  5399. {
  5400. name: "Normal",
  5401. height: math.unit(13 + 2 / 12, "feet")
  5402. },
  5403. {
  5404. name: "Macro",
  5405. height: math.unit(1500, "feet")
  5406. },
  5407. {
  5408. name: "Megamacro",
  5409. height: math.unit(200, "miles"),
  5410. default: true
  5411. },
  5412. {
  5413. name: "Gigamacro",
  5414. height: math.unit(500, "megameters")
  5415. },
  5416. {
  5417. name: "Teramacro",
  5418. height: math.unit(15, "lightyears")
  5419. }
  5420. ]
  5421. ))
  5422. characterMakers.push(() => makeCharacter(
  5423. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5424. {
  5425. front: {
  5426. height: math.unit(6 + 1 / 6, "feet"),
  5427. weight: math.unit(178, "lbs"),
  5428. name: "Front",
  5429. image: {
  5430. source: "./media/characters/guy/front.svg"
  5431. }
  5432. }
  5433. },
  5434. [
  5435. {
  5436. name: "Normal",
  5437. height: math.unit(6 + 1 / 6, "feet"),
  5438. default: true
  5439. },
  5440. {
  5441. name: "Large",
  5442. height: math.unit(25 + 7 / 12, "feet")
  5443. },
  5444. {
  5445. name: "Macro",
  5446. height: math.unit(60 + 9 / 12, "feet")
  5447. },
  5448. {
  5449. name: "Macro+",
  5450. height: math.unit(246, "feet")
  5451. },
  5452. {
  5453. name: "Macro++",
  5454. height: math.unit(878, "feet")
  5455. }
  5456. ]
  5457. ))
  5458. characterMakers.push(() => makeCharacter(
  5459. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5460. {
  5461. front: {
  5462. height: math.unit(9, "feet"),
  5463. weight: math.unit(800, "lbs"),
  5464. name: "Front",
  5465. image: {
  5466. source: "./media/characters/tiberius/front.svg",
  5467. extra: 2295 / 2071
  5468. }
  5469. },
  5470. back: {
  5471. height: math.unit(9, "feet"),
  5472. weight: math.unit(800, "lbs"),
  5473. name: "Back",
  5474. image: {
  5475. source: "./media/characters/tiberius/back.svg",
  5476. extra: 2373 / 2160
  5477. }
  5478. },
  5479. },
  5480. [
  5481. {
  5482. name: "Normal",
  5483. height: math.unit(9, "feet"),
  5484. default: true
  5485. }
  5486. ]
  5487. ))
  5488. characterMakers.push(() => makeCharacter(
  5489. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5490. {
  5491. front: {
  5492. height: math.unit(6, "feet"),
  5493. weight: math.unit(600, "lbs"),
  5494. name: "Front",
  5495. image: {
  5496. source: "./media/characters/surgo/front.svg",
  5497. extra: 3591 / 2227
  5498. }
  5499. },
  5500. back: {
  5501. height: math.unit(6, "feet"),
  5502. weight: math.unit(600, "lbs"),
  5503. name: "Back",
  5504. image: {
  5505. source: "./media/characters/surgo/back.svg",
  5506. extra: 3557 / 2228
  5507. }
  5508. },
  5509. laying: {
  5510. height: math.unit(6 * 0.85, "feet"),
  5511. weight: math.unit(600, "lbs"),
  5512. name: "Laying",
  5513. image: {
  5514. source: "./media/characters/surgo/laying.svg"
  5515. }
  5516. },
  5517. },
  5518. [
  5519. {
  5520. name: "Normal",
  5521. height: math.unit(6, "feet"),
  5522. default: true
  5523. }
  5524. ]
  5525. ))
  5526. characterMakers.push(() => makeCharacter(
  5527. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5528. {
  5529. side: {
  5530. height: math.unit(6, "feet"),
  5531. weight: math.unit(150, "lbs"),
  5532. name: "Side",
  5533. image: {
  5534. source: "./media/characters/cibus/side.svg",
  5535. extra: 800 / 400
  5536. }
  5537. },
  5538. },
  5539. [
  5540. {
  5541. name: "Normal",
  5542. height: math.unit(6, "feet"),
  5543. default: true
  5544. }
  5545. ]
  5546. ))
  5547. characterMakers.push(() => makeCharacter(
  5548. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5549. {
  5550. front: {
  5551. height: math.unit(6, "feet"),
  5552. weight: math.unit(240, "lbs"),
  5553. name: "Front",
  5554. image: {
  5555. source: "./media/characters/nibbles/front.svg"
  5556. }
  5557. },
  5558. side: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(240, "lbs"),
  5561. name: "Side",
  5562. image: {
  5563. source: "./media/characters/nibbles/side.svg"
  5564. }
  5565. },
  5566. },
  5567. [
  5568. {
  5569. name: "Normal",
  5570. height: math.unit(9, "feet"),
  5571. default: true
  5572. }
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5577. {
  5578. side: {
  5579. height: math.unit(5 + 1 / 6, "feet"),
  5580. weight: math.unit(130, "lbs"),
  5581. name: "Side",
  5582. image: {
  5583. source: "./media/characters/rikky/side.svg",
  5584. extra: 851 / 801
  5585. }
  5586. },
  5587. },
  5588. [
  5589. {
  5590. name: "Normal",
  5591. height: math.unit(5 + 1 / 6, "feet")
  5592. },
  5593. {
  5594. name: "Macro",
  5595. height: math.unit(152, "feet"),
  5596. default: true
  5597. },
  5598. {
  5599. name: "Megamacro",
  5600. height: math.unit(7, "miles")
  5601. }
  5602. ]
  5603. ))
  5604. characterMakers.push(() => makeCharacter(
  5605. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5606. {
  5607. side: {
  5608. height: math.unit(370, "cm"),
  5609. weight: math.unit(350, "lbs"),
  5610. name: "Side",
  5611. image: {
  5612. source: "./media/characters/malfressa/side.svg"
  5613. }
  5614. },
  5615. walking: {
  5616. height: math.unit(370, "cm"),
  5617. weight: math.unit(350, "lbs"),
  5618. name: "Walking",
  5619. image: {
  5620. source: "./media/characters/malfressa/walking.svg"
  5621. }
  5622. },
  5623. feral: {
  5624. height: math.unit(2500, "cm"),
  5625. weight: math.unit(100000, "lbs"),
  5626. name: "Feral",
  5627. image: {
  5628. source: "./media/characters/malfressa/feral.svg",
  5629. extra: 2108 / 837,
  5630. bottom: 0.02
  5631. }
  5632. },
  5633. },
  5634. [
  5635. {
  5636. name: "Normal",
  5637. height: math.unit(370, "cm")
  5638. },
  5639. {
  5640. name: "Macro",
  5641. height: math.unit(300, "meters"),
  5642. default: true
  5643. }
  5644. ]
  5645. ))
  5646. characterMakers.push(() => makeCharacter(
  5647. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5648. {
  5649. front: {
  5650. height: math.unit(6, "feet"),
  5651. weight: math.unit(60, "kg"),
  5652. name: "Front",
  5653. image: {
  5654. source: "./media/characters/jaro/front.svg"
  5655. }
  5656. },
  5657. back: {
  5658. height: math.unit(6, "feet"),
  5659. weight: math.unit(60, "kg"),
  5660. name: "Back",
  5661. image: {
  5662. source: "./media/characters/jaro/back.svg"
  5663. }
  5664. },
  5665. },
  5666. [
  5667. {
  5668. name: "Micro",
  5669. height: math.unit(7, "inches")
  5670. },
  5671. {
  5672. name: "Normal",
  5673. height: math.unit(5.5, "feet"),
  5674. default: true
  5675. },
  5676. {
  5677. name: "Minimacro",
  5678. height: math.unit(20, "feet")
  5679. },
  5680. {
  5681. name: "Macro",
  5682. height: math.unit(200, "meters")
  5683. }
  5684. ]
  5685. ))
  5686. characterMakers.push(() => makeCharacter(
  5687. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5688. {
  5689. front: {
  5690. height: math.unit(6, "feet"),
  5691. weight: math.unit(195, "lb"),
  5692. name: "Front",
  5693. image: {
  5694. source: "./media/characters/rogue/front.svg"
  5695. }
  5696. },
  5697. },
  5698. [
  5699. {
  5700. name: "Macro",
  5701. height: math.unit(90, "feet"),
  5702. default: true
  5703. },
  5704. ]
  5705. ))
  5706. characterMakers.push(() => makeCharacter(
  5707. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5708. {
  5709. front: {
  5710. height: math.unit(5 + 8 / 12, "feet"),
  5711. weight: math.unit(140, "lb"),
  5712. name: "Front",
  5713. image: {
  5714. source: "./media/characters/piper/front.svg",
  5715. extra: 3928 / 3681
  5716. }
  5717. },
  5718. },
  5719. [
  5720. {
  5721. name: "Micro",
  5722. height: math.unit(2, "inches")
  5723. },
  5724. {
  5725. name: "Normal",
  5726. height: math.unit(5 + 8 / 12, "feet")
  5727. },
  5728. {
  5729. name: "Macro",
  5730. height: math.unit(250, "feet"),
  5731. default: true
  5732. },
  5733. {
  5734. name: "Megamacro",
  5735. height: math.unit(7, "miles")
  5736. },
  5737. ]
  5738. ))
  5739. characterMakers.push(() => makeCharacter(
  5740. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5741. {
  5742. front: {
  5743. height: math.unit(6, "feet"),
  5744. weight: math.unit(220, "lb"),
  5745. name: "Front",
  5746. image: {
  5747. source: "./media/characters/gemini/front.svg"
  5748. }
  5749. },
  5750. back: {
  5751. height: math.unit(6, "feet"),
  5752. weight: math.unit(220, "lb"),
  5753. name: "Back",
  5754. image: {
  5755. source: "./media/characters/gemini/back.svg"
  5756. }
  5757. },
  5758. kneeling: {
  5759. height: math.unit(6 / 1.5, "feet"),
  5760. weight: math.unit(220, "lb"),
  5761. name: "Kneeling",
  5762. image: {
  5763. source: "./media/characters/gemini/kneeling.svg",
  5764. bottom: 0.02
  5765. }
  5766. },
  5767. },
  5768. [
  5769. {
  5770. name: "Macro",
  5771. height: math.unit(300, "meters"),
  5772. default: true
  5773. },
  5774. {
  5775. name: "Megamacro",
  5776. height: math.unit(6900, "meters")
  5777. },
  5778. ]
  5779. ))
  5780. characterMakers.push(() => makeCharacter(
  5781. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5782. {
  5783. anthro: {
  5784. height: math.unit(2.35, "meters"),
  5785. weight: math.unit(73, "kg"),
  5786. name: "Anthro",
  5787. image: {
  5788. source: "./media/characters/alicia/anthro.svg",
  5789. extra: 2571 / 2385,
  5790. bottom: 75 / 2648
  5791. }
  5792. },
  5793. paw: {
  5794. height: math.unit(1.32, "feet"),
  5795. name: "Paw",
  5796. image: {
  5797. source: "./media/characters/alicia/paw.svg"
  5798. }
  5799. },
  5800. feral: {
  5801. height: math.unit(1.69, "meters"),
  5802. weight: math.unit(73, "kg"),
  5803. name: "Feral",
  5804. image: {
  5805. source: "./media/characters/alicia/feral.svg",
  5806. extra: 2123 / 1715,
  5807. bottom: 222 / 2349
  5808. }
  5809. },
  5810. },
  5811. [
  5812. {
  5813. name: "Normal",
  5814. height: math.unit(2.35, "meters")
  5815. },
  5816. {
  5817. name: "Macro",
  5818. height: math.unit(60, "meters"),
  5819. default: true
  5820. },
  5821. {
  5822. name: "Megamacro",
  5823. height: math.unit(10000, "kilometers")
  5824. },
  5825. ]
  5826. ))
  5827. characterMakers.push(() => makeCharacter(
  5828. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5829. {
  5830. front: {
  5831. height: math.unit(7, "feet"),
  5832. weight: math.unit(250, "lbs"),
  5833. name: "Front",
  5834. image: {
  5835. source: "./media/characters/archy/front.svg"
  5836. }
  5837. }
  5838. },
  5839. [
  5840. {
  5841. name: "Micro",
  5842. height: math.unit(1, "inch")
  5843. },
  5844. {
  5845. name: "Shorty",
  5846. height: math.unit(5, "feet")
  5847. },
  5848. {
  5849. name: "Normal",
  5850. height: math.unit(7, "feet")
  5851. },
  5852. {
  5853. name: "Macro",
  5854. height: math.unit(600, "meters"),
  5855. default: true
  5856. },
  5857. {
  5858. name: "Megamacro",
  5859. height: math.unit(1, "mile")
  5860. },
  5861. ]
  5862. ))
  5863. characterMakers.push(() => makeCharacter(
  5864. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5865. {
  5866. front: {
  5867. height: math.unit(1.65, "meters"),
  5868. weight: math.unit(74, "kg"),
  5869. name: "Front",
  5870. image: {
  5871. source: "./media/characters/berri/front.svg",
  5872. extra: 857 / 837,
  5873. bottom: 18 / 877
  5874. }
  5875. },
  5876. bum: {
  5877. height: math.unit(1.46, "feet"),
  5878. name: "Bum",
  5879. image: {
  5880. source: "./media/characters/berri/bum.svg"
  5881. }
  5882. },
  5883. mouth: {
  5884. height: math.unit(0.44, "feet"),
  5885. name: "Mouth",
  5886. image: {
  5887. source: "./media/characters/berri/mouth.svg"
  5888. }
  5889. },
  5890. paw: {
  5891. height: math.unit(0.826, "feet"),
  5892. name: "Paw",
  5893. image: {
  5894. source: "./media/characters/berri/paw.svg"
  5895. }
  5896. },
  5897. },
  5898. [
  5899. {
  5900. name: "Normal",
  5901. height: math.unit(1.65, "meters")
  5902. },
  5903. {
  5904. name: "Macro",
  5905. height: math.unit(60, "m"),
  5906. default: true
  5907. },
  5908. {
  5909. name: "Megamacro",
  5910. height: math.unit(9.213, "km")
  5911. },
  5912. {
  5913. name: "Planet Eater",
  5914. height: math.unit(489, "megameters")
  5915. },
  5916. {
  5917. name: "Teramacro",
  5918. height: math.unit(2471635000000, "meters")
  5919. },
  5920. {
  5921. name: "Examacro",
  5922. height: math.unit(8.0624e+26, "meters")
  5923. }
  5924. ]
  5925. ))
  5926. characterMakers.push(() => makeCharacter(
  5927. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5928. {
  5929. front: {
  5930. height: math.unit(1.72, "meters"),
  5931. weight: math.unit(68, "kg"),
  5932. name: "Front",
  5933. image: {
  5934. source: "./media/characters/lexi/front.svg"
  5935. }
  5936. }
  5937. },
  5938. [
  5939. {
  5940. name: "Very Smol",
  5941. height: math.unit(10, "mm")
  5942. },
  5943. {
  5944. name: "Micro",
  5945. height: math.unit(6.8, "cm"),
  5946. default: true
  5947. },
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(1.72, "m")
  5951. }
  5952. ]
  5953. ))
  5954. characterMakers.push(() => makeCharacter(
  5955. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5956. {
  5957. front: {
  5958. height: math.unit(1.69, "meters"),
  5959. weight: math.unit(68, "kg"),
  5960. name: "Front",
  5961. image: {
  5962. source: "./media/characters/martin/front.svg",
  5963. extra: 596 / 581
  5964. }
  5965. }
  5966. },
  5967. [
  5968. {
  5969. name: "Micro",
  5970. height: math.unit(6.85, "cm"),
  5971. default: true
  5972. },
  5973. {
  5974. name: "Normal",
  5975. height: math.unit(1.69, "m")
  5976. }
  5977. ]
  5978. ))
  5979. characterMakers.push(() => makeCharacter(
  5980. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5981. {
  5982. front: {
  5983. height: math.unit(1.69, "meters"),
  5984. weight: math.unit(68, "kg"),
  5985. name: "Front",
  5986. image: {
  5987. source: "./media/characters/juno/front.svg"
  5988. }
  5989. }
  5990. },
  5991. [
  5992. {
  5993. name: "Micro",
  5994. height: math.unit(7, "cm")
  5995. },
  5996. {
  5997. name: "Normal",
  5998. height: math.unit(1.89, "m")
  5999. },
  6000. {
  6001. name: "Macro",
  6002. height: math.unit(353, "meters"),
  6003. default: true
  6004. }
  6005. ]
  6006. ))
  6007. characterMakers.push(() => makeCharacter(
  6008. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6009. {
  6010. front: {
  6011. height: math.unit(1.93, "meters"),
  6012. weight: math.unit(83, "kg"),
  6013. name: "Front",
  6014. image: {
  6015. source: "./media/characters/samantha/front.svg"
  6016. }
  6017. },
  6018. frontClothed: {
  6019. height: math.unit(1.93, "meters"),
  6020. weight: math.unit(83, "kg"),
  6021. name: "Front (Clothed)",
  6022. image: {
  6023. source: "./media/characters/samantha/front-clothed.svg"
  6024. }
  6025. },
  6026. back: {
  6027. height: math.unit(1.93, "meters"),
  6028. weight: math.unit(83, "kg"),
  6029. name: "Back",
  6030. image: {
  6031. source: "./media/characters/samantha/back.svg"
  6032. }
  6033. },
  6034. },
  6035. [
  6036. {
  6037. name: "Normal",
  6038. height: math.unit(1.93, "m")
  6039. },
  6040. {
  6041. name: "Macro",
  6042. height: math.unit(74, "meters"),
  6043. default: true
  6044. },
  6045. {
  6046. name: "Macro+",
  6047. height: math.unit(223, "meters"),
  6048. },
  6049. {
  6050. name: "Megamacro",
  6051. height: math.unit(8381, "meters"),
  6052. },
  6053. {
  6054. name: "Megamacro+",
  6055. height: math.unit(12000, "kilometers")
  6056. },
  6057. ]
  6058. ))
  6059. characterMakers.push(() => makeCharacter(
  6060. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6061. {
  6062. front: {
  6063. height: math.unit(1.92, "meters"),
  6064. weight: math.unit(80, "kg"),
  6065. name: "Front",
  6066. image: {
  6067. source: "./media/characters/dr-clay/front.svg"
  6068. }
  6069. },
  6070. frontClothed: {
  6071. height: math.unit(1.92, "meters"),
  6072. weight: math.unit(80, "kg"),
  6073. name: "Front (Clothed)",
  6074. image: {
  6075. source: "./media/characters/dr-clay/front-clothed.svg"
  6076. }
  6077. }
  6078. },
  6079. [
  6080. {
  6081. name: "Normal",
  6082. height: math.unit(1.92, "m")
  6083. },
  6084. {
  6085. name: "Macro",
  6086. height: math.unit(214, "meters"),
  6087. default: true
  6088. },
  6089. {
  6090. name: "Macro+",
  6091. height: math.unit(12.237, "meters"),
  6092. },
  6093. {
  6094. name: "Megamacro",
  6095. height: math.unit(557, "megameters"),
  6096. },
  6097. {
  6098. name: "Unimaginable",
  6099. height: math.unit(120e9, "lightyears")
  6100. },
  6101. ]
  6102. ))
  6103. characterMakers.push(() => makeCharacter(
  6104. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6105. {
  6106. front: {
  6107. height: math.unit(2, "meters"),
  6108. weight: math.unit(80, "kg"),
  6109. name: "Front",
  6110. image: {
  6111. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6112. }
  6113. }
  6114. },
  6115. [
  6116. {
  6117. name: "Teramacro",
  6118. height: math.unit(500000, "lightyears"),
  6119. default: true
  6120. },
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6125. {
  6126. front: {
  6127. height: math.unit(2, "meters"),
  6128. weight: math.unit(150, "kg"),
  6129. name: "Front",
  6130. image: {
  6131. source: "./media/characters/vemus/front.svg",
  6132. extra: 2384 / 2084,
  6133. bottom: 0.0123
  6134. }
  6135. }
  6136. },
  6137. [
  6138. {
  6139. name: "Normal",
  6140. height: math.unit(3.75, "meters"),
  6141. default: true
  6142. },
  6143. {
  6144. name: "Big",
  6145. height: math.unit(8, "meters")
  6146. },
  6147. {
  6148. name: "Macro",
  6149. height: math.unit(100, "meters")
  6150. },
  6151. {
  6152. name: "Macro+",
  6153. height: math.unit(1500, "meters")
  6154. },
  6155. {
  6156. name: "Stellar",
  6157. height: math.unit(14e8, "meters")
  6158. },
  6159. ]
  6160. ))
  6161. characterMakers.push(() => makeCharacter(
  6162. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6163. {
  6164. front: {
  6165. height: math.unit(2, "meters"),
  6166. weight: math.unit(70, "kg"),
  6167. name: "Front",
  6168. image: {
  6169. source: "./media/characters/beherit/front.svg",
  6170. extra: 1408 / 1242
  6171. }
  6172. }
  6173. },
  6174. [
  6175. {
  6176. name: "Normal",
  6177. height: math.unit(6, "feet")
  6178. },
  6179. {
  6180. name: "Lorg",
  6181. height: math.unit(25, "feet"),
  6182. default: true
  6183. },
  6184. {
  6185. name: "Lorger",
  6186. height: math.unit(75, "feet")
  6187. },
  6188. {
  6189. name: "Macro",
  6190. height: math.unit(200, "meters")
  6191. },
  6192. ]
  6193. ))
  6194. characterMakers.push(() => makeCharacter(
  6195. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6196. {
  6197. front: {
  6198. height: math.unit(2, "meters"),
  6199. weight: math.unit(150, "kg"),
  6200. name: "Front",
  6201. image: {
  6202. source: "./media/characters/everett/front.svg",
  6203. extra: 2038 / 1737,
  6204. bottom: 0.03
  6205. }
  6206. },
  6207. paw: {
  6208. height: math.unit(2 / 3.6, "meters"),
  6209. name: "Paw",
  6210. image: {
  6211. source: "./media/characters/everett/paw.svg"
  6212. }
  6213. },
  6214. },
  6215. [
  6216. {
  6217. name: "Normal",
  6218. height: math.unit(15, "feet"),
  6219. default: true
  6220. },
  6221. {
  6222. name: "Lorg",
  6223. height: math.unit(70, "feet"),
  6224. default: true
  6225. },
  6226. {
  6227. name: "Lorger",
  6228. height: math.unit(250, "feet")
  6229. },
  6230. {
  6231. name: "Macro",
  6232. height: math.unit(500, "meters")
  6233. },
  6234. ]
  6235. ))
  6236. characterMakers.push(() => makeCharacter(
  6237. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6238. {
  6239. front: {
  6240. height: math.unit(2, "meters"),
  6241. weight: math.unit(86, "kg"),
  6242. name: "Front",
  6243. image: {
  6244. source: "./media/characters/rose/front.svg",
  6245. extra: 350/335,
  6246. bottom: 10/360
  6247. }
  6248. },
  6249. frontAlt: {
  6250. height: math.unit(1.6, "meters"),
  6251. weight: math.unit(86, "kg"),
  6252. name: "Front (Alt)",
  6253. image: {
  6254. source: "./media/characters/rose/front-alt.svg",
  6255. extra: 299/283,
  6256. bottom: 3/302
  6257. }
  6258. },
  6259. plush: {
  6260. height: math.unit(2, "meters"),
  6261. weight: math.unit(86/3, "kg"),
  6262. name: "Plush",
  6263. image: {
  6264. source: "./media/characters/rose/plush.svg",
  6265. extra: 361/337,
  6266. bottom: 11/372
  6267. }
  6268. },
  6269. },
  6270. [
  6271. {
  6272. name: "Mini-Micro",
  6273. height: math.unit(1, "cm")
  6274. },
  6275. {
  6276. name: "Micro",
  6277. height: math.unit(3.5, "inches"),
  6278. default: true
  6279. },
  6280. {
  6281. name: "Normal",
  6282. height: math.unit(6 + 1 / 6, "feet")
  6283. },
  6284. {
  6285. name: "Mini-Macro",
  6286. height: math.unit(9 + 10 / 12, "feet")
  6287. },
  6288. ]
  6289. ))
  6290. characterMakers.push(() => makeCharacter(
  6291. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6292. {
  6293. front: {
  6294. height: math.unit(2, "meters"),
  6295. weight: math.unit(350, "lbs"),
  6296. name: "Front",
  6297. image: {
  6298. source: "./media/characters/regal/front.svg"
  6299. }
  6300. },
  6301. back: {
  6302. height: math.unit(2, "meters"),
  6303. weight: math.unit(350, "lbs"),
  6304. name: "Back",
  6305. image: {
  6306. source: "./media/characters/regal/back.svg"
  6307. }
  6308. },
  6309. },
  6310. [
  6311. {
  6312. name: "Macro",
  6313. height: math.unit(350, "feet"),
  6314. default: true
  6315. }
  6316. ]
  6317. ))
  6318. characterMakers.push(() => makeCharacter(
  6319. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6320. {
  6321. front: {
  6322. height: math.unit(4 + 11 / 12, "feet"),
  6323. weight: math.unit(100, "lbs"),
  6324. name: "Front",
  6325. image: {
  6326. source: "./media/characters/opal/front.svg"
  6327. }
  6328. },
  6329. frontAlt: {
  6330. height: math.unit(4 + 11 / 12, "feet"),
  6331. weight: math.unit(100, "lbs"),
  6332. name: "Front (Alt)",
  6333. image: {
  6334. source: "./media/characters/opal/front-alt.svg"
  6335. }
  6336. },
  6337. },
  6338. [
  6339. {
  6340. name: "Small",
  6341. height: math.unit(4 + 11 / 12, "feet")
  6342. },
  6343. {
  6344. name: "Normal",
  6345. height: math.unit(20, "feet"),
  6346. default: true
  6347. },
  6348. {
  6349. name: "Macro",
  6350. height: math.unit(120, "feet")
  6351. },
  6352. {
  6353. name: "Megamacro",
  6354. height: math.unit(80, "miles")
  6355. },
  6356. {
  6357. name: "True Size",
  6358. height: math.unit(100000, "lightyears")
  6359. },
  6360. ]
  6361. ))
  6362. characterMakers.push(() => makeCharacter(
  6363. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6364. {
  6365. front: {
  6366. height: math.unit(6, "feet"),
  6367. weight: math.unit(200, "lbs"),
  6368. name: "Front",
  6369. image: {
  6370. source: "./media/characters/vector-wuff/front.svg"
  6371. }
  6372. }
  6373. },
  6374. [
  6375. {
  6376. name: "Normal",
  6377. height: math.unit(2.8, "meters")
  6378. },
  6379. {
  6380. name: "Macro",
  6381. height: math.unit(450, "meters"),
  6382. default: true
  6383. },
  6384. {
  6385. name: "Megamacro",
  6386. height: math.unit(15, "kilometers")
  6387. }
  6388. ]
  6389. ))
  6390. characterMakers.push(() => makeCharacter(
  6391. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6392. {
  6393. front: {
  6394. height: math.unit(6, "feet"),
  6395. weight: math.unit(256, "lbs"),
  6396. name: "Front",
  6397. image: {
  6398. source: "./media/characters/dannik/front.svg"
  6399. }
  6400. }
  6401. },
  6402. [
  6403. {
  6404. name: "Macro",
  6405. height: math.unit(69.57, "meters"),
  6406. default: true
  6407. },
  6408. ]
  6409. ))
  6410. characterMakers.push(() => makeCharacter(
  6411. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6412. {
  6413. front: {
  6414. height: math.unit(6, "feet"),
  6415. weight: math.unit(120, "lbs"),
  6416. name: "Front",
  6417. image: {
  6418. source: "./media/characters/azura-saharah/front.svg"
  6419. }
  6420. },
  6421. back: {
  6422. height: math.unit(6, "feet"),
  6423. weight: math.unit(120, "lbs"),
  6424. name: "Back",
  6425. image: {
  6426. source: "./media/characters/azura-saharah/back.svg"
  6427. }
  6428. },
  6429. },
  6430. [
  6431. {
  6432. name: "Macro",
  6433. height: math.unit(100, "feet"),
  6434. default: true
  6435. },
  6436. ]
  6437. ))
  6438. characterMakers.push(() => makeCharacter(
  6439. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6440. {
  6441. side: {
  6442. height: math.unit(5 + 4 / 12, "feet"),
  6443. weight: math.unit(163, "lbs"),
  6444. name: "Side",
  6445. image: {
  6446. source: "./media/characters/kennedy/side.svg"
  6447. }
  6448. }
  6449. },
  6450. [
  6451. {
  6452. name: "Standard Doggo",
  6453. height: math.unit(5 + 4 / 12, "feet")
  6454. },
  6455. {
  6456. name: "Big Doggo",
  6457. height: math.unit(25 + 3 / 12, "feet"),
  6458. default: true
  6459. },
  6460. ]
  6461. ))
  6462. characterMakers.push(() => makeCharacter(
  6463. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6464. {
  6465. front: {
  6466. height: math.unit(6, "feet"),
  6467. weight: math.unit(90, "lbs"),
  6468. name: "Front",
  6469. image: {
  6470. source: "./media/characters/odi-lunar/front.svg"
  6471. }
  6472. }
  6473. },
  6474. [
  6475. {
  6476. name: "Micro",
  6477. height: math.unit(3, "inches"),
  6478. default: true
  6479. },
  6480. {
  6481. name: "Normal",
  6482. height: math.unit(5.5, "feet")
  6483. }
  6484. ]
  6485. ))
  6486. characterMakers.push(() => makeCharacter(
  6487. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6488. {
  6489. back: {
  6490. height: math.unit(6, "feet"),
  6491. weight: math.unit(220, "lbs"),
  6492. name: "Back",
  6493. image: {
  6494. source: "./media/characters/mandake/back.svg"
  6495. }
  6496. }
  6497. },
  6498. [
  6499. {
  6500. name: "Normal",
  6501. height: math.unit(7, "feet"),
  6502. default: true
  6503. },
  6504. {
  6505. name: "Macro",
  6506. height: math.unit(78, "feet")
  6507. },
  6508. {
  6509. name: "Macro+",
  6510. height: math.unit(300, "meters")
  6511. },
  6512. {
  6513. name: "Macro++",
  6514. height: math.unit(2400, "feet")
  6515. },
  6516. {
  6517. name: "Megamacro",
  6518. height: math.unit(5167, "meters")
  6519. },
  6520. {
  6521. name: "Gigamacro",
  6522. height: math.unit(41769, "miles")
  6523. },
  6524. ]
  6525. ))
  6526. characterMakers.push(() => makeCharacter(
  6527. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6528. {
  6529. front: {
  6530. height: math.unit(6, "feet"),
  6531. weight: math.unit(120, "lbs"),
  6532. name: "Front",
  6533. image: {
  6534. source: "./media/characters/yozey/front.svg"
  6535. }
  6536. },
  6537. frontAlt: {
  6538. height: math.unit(6, "feet"),
  6539. weight: math.unit(120, "lbs"),
  6540. name: "Front (Alt)",
  6541. image: {
  6542. source: "./media/characters/yozey/front-alt.svg"
  6543. }
  6544. },
  6545. side: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(120, "lbs"),
  6548. name: "Side",
  6549. image: {
  6550. source: "./media/characters/yozey/side.svg"
  6551. }
  6552. },
  6553. },
  6554. [
  6555. {
  6556. name: "Micro",
  6557. height: math.unit(3, "inches"),
  6558. default: true
  6559. },
  6560. {
  6561. name: "Normal",
  6562. height: math.unit(6, "feet")
  6563. }
  6564. ]
  6565. ))
  6566. characterMakers.push(() => makeCharacter(
  6567. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6568. {
  6569. front: {
  6570. height: math.unit(6, "feet"),
  6571. weight: math.unit(103, "lbs"),
  6572. name: "Front",
  6573. image: {
  6574. source: "./media/characters/valeska-voss/front.svg"
  6575. }
  6576. }
  6577. },
  6578. [
  6579. {
  6580. name: "Mini-Sized Sub",
  6581. height: math.unit(3.1, "inches")
  6582. },
  6583. {
  6584. name: "Mid-Sized Sub",
  6585. height: math.unit(6.2, "inches")
  6586. },
  6587. {
  6588. name: "Full-Sized Sub",
  6589. height: math.unit(9.3, "inches")
  6590. },
  6591. {
  6592. name: "Normal",
  6593. height: math.unit(5 + 2 / 12, "foot"),
  6594. default: true
  6595. },
  6596. ]
  6597. ))
  6598. characterMakers.push(() => makeCharacter(
  6599. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6600. {
  6601. front: {
  6602. height: math.unit(6, "feet"),
  6603. weight: math.unit(160, "lbs"),
  6604. name: "Front",
  6605. image: {
  6606. source: "./media/characters/gene-zeta/front.svg",
  6607. extra: 3006 / 2826,
  6608. bottom: 182 / 3188
  6609. }
  6610. }
  6611. },
  6612. [
  6613. {
  6614. name: "Micro",
  6615. height: math.unit(6, "inches")
  6616. },
  6617. {
  6618. name: "Normal",
  6619. height: math.unit(5 + 11 / 12, "foot"),
  6620. default: true
  6621. },
  6622. {
  6623. name: "Macro",
  6624. height: math.unit(140, "feet")
  6625. },
  6626. {
  6627. name: "Supercharged",
  6628. height: math.unit(2500, "feet")
  6629. },
  6630. ]
  6631. ))
  6632. characterMakers.push(() => makeCharacter(
  6633. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6634. {
  6635. front: {
  6636. height: math.unit(6, "feet"),
  6637. weight: math.unit(350, "lbs"),
  6638. name: "Front",
  6639. image: {
  6640. source: "./media/characters/razinox/front.svg",
  6641. extra: 1686 / 1548,
  6642. bottom: 28.2 / 1868
  6643. }
  6644. },
  6645. back: {
  6646. height: math.unit(6, "feet"),
  6647. weight: math.unit(350, "lbs"),
  6648. name: "Back",
  6649. image: {
  6650. source: "./media/characters/razinox/back.svg",
  6651. extra: 1660 / 1590,
  6652. bottom: 15 / 1665
  6653. }
  6654. },
  6655. },
  6656. [
  6657. {
  6658. name: "Normal",
  6659. height: math.unit(10 + 8 / 12, "foot")
  6660. },
  6661. {
  6662. name: "Minimacro",
  6663. height: math.unit(15, "foot")
  6664. },
  6665. {
  6666. name: "Macro",
  6667. height: math.unit(60, "foot"),
  6668. default: true
  6669. },
  6670. {
  6671. name: "Megamacro",
  6672. height: math.unit(5, "miles")
  6673. },
  6674. {
  6675. name: "Gigamacro",
  6676. height: math.unit(6000, "miles")
  6677. },
  6678. ]
  6679. ))
  6680. characterMakers.push(() => makeCharacter(
  6681. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6682. {
  6683. front: {
  6684. height: math.unit(6, "feet"),
  6685. weight: math.unit(150, "lbs"),
  6686. name: "Front",
  6687. image: {
  6688. source: "./media/characters/cobalt/front.svg"
  6689. }
  6690. }
  6691. },
  6692. [
  6693. {
  6694. name: "Normal",
  6695. height: math.unit(8 + 1 / 12, "foot")
  6696. },
  6697. {
  6698. name: "Macro",
  6699. height: math.unit(111, "foot"),
  6700. default: true
  6701. },
  6702. {
  6703. name: "Supracosmic",
  6704. height: math.unit(1e42, "feet")
  6705. },
  6706. ]
  6707. ))
  6708. characterMakers.push(() => makeCharacter(
  6709. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6710. {
  6711. front: {
  6712. height: math.unit(6, "feet"),
  6713. weight: math.unit(140, "lbs"),
  6714. name: "Front",
  6715. image: {
  6716. source: "./media/characters/amanda/front.svg"
  6717. }
  6718. }
  6719. },
  6720. [
  6721. {
  6722. name: "Micro",
  6723. height: math.unit(5, "inches"),
  6724. default: true
  6725. },
  6726. ]
  6727. ))
  6728. characterMakers.push(() => makeCharacter(
  6729. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6730. {
  6731. front: {
  6732. height: math.unit(2.75, "meters"),
  6733. weight: math.unit(1200, "lb"),
  6734. name: "Front",
  6735. image: {
  6736. source: "./media/characters/teal/front.svg",
  6737. extra: 2463 / 2320,
  6738. bottom: 166 / 2629
  6739. }
  6740. },
  6741. back: {
  6742. height: math.unit(2.75, "meters"),
  6743. weight: math.unit(1200, "lb"),
  6744. name: "Back",
  6745. image: {
  6746. source: "./media/characters/teal/back.svg",
  6747. extra: 2580 / 2489,
  6748. bottom: 151 / 2731
  6749. }
  6750. },
  6751. sitting: {
  6752. height: math.unit(1.9, "meters"),
  6753. weight: math.unit(1200, "lb"),
  6754. name: "Sitting",
  6755. image: {
  6756. source: "./media/characters/teal/sitting.svg",
  6757. extra: 623 / 590,
  6758. bottom: 121 / 744
  6759. }
  6760. },
  6761. standing: {
  6762. height: math.unit(2.75, "meters"),
  6763. weight: math.unit(1200, "lb"),
  6764. name: "Standing",
  6765. image: {
  6766. source: "./media/characters/teal/standing.svg",
  6767. extra: 923 / 893,
  6768. bottom: 60 / 983
  6769. }
  6770. },
  6771. stretching: {
  6772. height: math.unit(3.65, "meters"),
  6773. weight: math.unit(1200, "lb"),
  6774. name: "Stretching",
  6775. image: {
  6776. source: "./media/characters/teal/stretching.svg",
  6777. extra: 1276 / 1244,
  6778. bottom: 0 / 1276
  6779. }
  6780. },
  6781. legged: {
  6782. height: math.unit(1.3, "meters"),
  6783. weight: math.unit(100, "lb"),
  6784. name: "Legged",
  6785. image: {
  6786. source: "./media/characters/teal/legged.svg",
  6787. extra: 462 / 437,
  6788. bottom: 24 / 486
  6789. }
  6790. },
  6791. naga: {
  6792. height: math.unit(5.4, "meters"),
  6793. weight: math.unit(4000, "lb"),
  6794. name: "Naga",
  6795. image: {
  6796. source: "./media/characters/teal/naga.svg",
  6797. extra: 1902 / 1858,
  6798. bottom: 0 / 1902
  6799. }
  6800. },
  6801. hand: {
  6802. height: math.unit(0.52, "meters"),
  6803. name: "Hand",
  6804. image: {
  6805. source: "./media/characters/teal/hand.svg"
  6806. }
  6807. },
  6808. maw: {
  6809. height: math.unit(0.43, "meters"),
  6810. name: "Maw",
  6811. image: {
  6812. source: "./media/characters/teal/maw.svg"
  6813. }
  6814. },
  6815. slit: {
  6816. height: math.unit(0.25, "meters"),
  6817. name: "Slit",
  6818. image: {
  6819. source: "./media/characters/teal/slit.svg"
  6820. }
  6821. },
  6822. },
  6823. [
  6824. {
  6825. name: "Normal",
  6826. height: math.unit(2.75, "meters"),
  6827. default: true
  6828. },
  6829. {
  6830. name: "Macro",
  6831. height: math.unit(300, "feet")
  6832. },
  6833. {
  6834. name: "Macro+",
  6835. height: math.unit(2000, "feet")
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6841. {
  6842. frontCat: {
  6843. height: math.unit(6, "feet"),
  6844. weight: math.unit(180, "lbs"),
  6845. name: "Front (Cat)",
  6846. image: {
  6847. source: "./media/characters/ravin-amulet/front-cat.svg"
  6848. }
  6849. },
  6850. frontCatAlt: {
  6851. height: math.unit(6, "feet"),
  6852. weight: math.unit(180, "lbs"),
  6853. name: "Front (Alt, Cat)",
  6854. image: {
  6855. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6856. }
  6857. },
  6858. frontWerewolf: {
  6859. height: math.unit(6 * 1.2, "feet"),
  6860. weight: math.unit(225, "lbs"),
  6861. name: "Front (Werewolf)",
  6862. image: {
  6863. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6864. }
  6865. },
  6866. backWerewolf: {
  6867. height: math.unit(6 * 1.2, "feet"),
  6868. weight: math.unit(225, "lbs"),
  6869. name: "Back (Werewolf)",
  6870. image: {
  6871. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6872. }
  6873. },
  6874. },
  6875. [
  6876. {
  6877. name: "Nano",
  6878. height: math.unit(1, "micrometer")
  6879. },
  6880. {
  6881. name: "Micro",
  6882. height: math.unit(1, "inch")
  6883. },
  6884. {
  6885. name: "Normal",
  6886. height: math.unit(6, "feet"),
  6887. default: true
  6888. },
  6889. {
  6890. name: "Macro",
  6891. height: math.unit(60, "feet")
  6892. }
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6897. {
  6898. front: {
  6899. height: math.unit(6, "feet"),
  6900. weight: math.unit(165, "lbs"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/fluoresce/front.svg"
  6904. }
  6905. }
  6906. },
  6907. [
  6908. {
  6909. name: "Micro",
  6910. height: math.unit(6, "cm")
  6911. },
  6912. {
  6913. name: "Normal",
  6914. height: math.unit(5 + 7 / 12, "feet"),
  6915. default: true
  6916. },
  6917. {
  6918. name: "Macro",
  6919. height: math.unit(56, "feet")
  6920. },
  6921. {
  6922. name: "Megamacro",
  6923. height: math.unit(1.9, "miles")
  6924. },
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(9 + 6 / 12, "feet"),
  6932. weight: math.unit(523, "lbs"),
  6933. name: "Side",
  6934. image: {
  6935. source: "./media/characters/aurora/side.svg"
  6936. }
  6937. }
  6938. },
  6939. [
  6940. {
  6941. name: "Normal",
  6942. height: math.unit(9 + 6 / 12, "feet")
  6943. },
  6944. {
  6945. name: "Macro",
  6946. height: math.unit(96, "feet"),
  6947. default: true
  6948. },
  6949. {
  6950. name: "Macro+",
  6951. height: math.unit(243, "feet")
  6952. },
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(194, "cm"),
  6960. weight: math.unit(90, "kg"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/ranek/front.svg"
  6964. }
  6965. },
  6966. side: {
  6967. height: math.unit(194, "cm"),
  6968. weight: math.unit(90, "kg"),
  6969. name: "Side",
  6970. image: {
  6971. source: "./media/characters/ranek/side.svg"
  6972. }
  6973. },
  6974. back: {
  6975. height: math.unit(194, "cm"),
  6976. weight: math.unit(90, "kg"),
  6977. name: "Back",
  6978. image: {
  6979. source: "./media/characters/ranek/back.svg"
  6980. }
  6981. },
  6982. feral: {
  6983. height: math.unit(30, "cm"),
  6984. weight: math.unit(1.6, "lbs"),
  6985. name: "Feral",
  6986. image: {
  6987. source: "./media/characters/ranek/feral.svg"
  6988. }
  6989. },
  6990. },
  6991. [
  6992. {
  6993. name: "Normal",
  6994. height: math.unit(194, "cm"),
  6995. default: true
  6996. },
  6997. {
  6998. name: "Macro",
  6999. height: math.unit(100, "meters")
  7000. },
  7001. ]
  7002. ))
  7003. characterMakers.push(() => makeCharacter(
  7004. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7005. {
  7006. front: {
  7007. height: math.unit(5 + 6 / 12, "feet"),
  7008. weight: math.unit(153, "lbs"),
  7009. name: "Front",
  7010. image: {
  7011. source: "./media/characters/andrew-cooper/front.svg"
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Nano",
  7018. height: math.unit(1, "mm")
  7019. },
  7020. {
  7021. name: "Micro",
  7022. height: math.unit(2, "inches")
  7023. },
  7024. {
  7025. name: "Normal",
  7026. height: math.unit(5 + 6 / 12, "feet"),
  7027. default: true
  7028. }
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7033. {
  7034. front: {
  7035. height: math.unit(6, "feet"),
  7036. weight: math.unit(180, "lbs"),
  7037. name: "Front",
  7038. image: {
  7039. source: "./media/characters/akane-sato/front.svg",
  7040. extra: 1219 / 1140
  7041. }
  7042. },
  7043. back: {
  7044. height: math.unit(6, "feet"),
  7045. weight: math.unit(180, "lbs"),
  7046. name: "Back",
  7047. image: {
  7048. source: "./media/characters/akane-sato/back.svg",
  7049. extra: 1219 / 1170
  7050. }
  7051. },
  7052. },
  7053. [
  7054. {
  7055. name: "Normal",
  7056. height: math.unit(2.5, "meters")
  7057. },
  7058. {
  7059. name: "Macro",
  7060. height: math.unit(250, "meters"),
  7061. default: true
  7062. },
  7063. {
  7064. name: "Megamacro",
  7065. height: math.unit(25, "km")
  7066. },
  7067. ]
  7068. ))
  7069. characterMakers.push(() => makeCharacter(
  7070. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7071. {
  7072. front: {
  7073. height: math.unit(6, "feet"),
  7074. weight: math.unit(65, "kg"),
  7075. name: "Front",
  7076. image: {
  7077. source: "./media/characters/rook/front.svg",
  7078. extra: 960 / 950
  7079. }
  7080. }
  7081. },
  7082. [
  7083. {
  7084. name: "Normal",
  7085. height: math.unit(8.8, "feet")
  7086. },
  7087. {
  7088. name: "Macro",
  7089. height: math.unit(88, "feet"),
  7090. default: true
  7091. },
  7092. {
  7093. name: "Megamacro",
  7094. height: math.unit(8, "miles")
  7095. },
  7096. ]
  7097. ))
  7098. characterMakers.push(() => makeCharacter(
  7099. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7100. {
  7101. front: {
  7102. height: math.unit(12 + 2 / 12, "feet"),
  7103. weight: math.unit(808, "lbs"),
  7104. name: "Front",
  7105. image: {
  7106. source: "./media/characters/prodigy/front.svg"
  7107. }
  7108. }
  7109. },
  7110. [
  7111. {
  7112. name: "Normal",
  7113. height: math.unit(12 + 2 / 12, "feet"),
  7114. default: true
  7115. },
  7116. {
  7117. name: "Macro",
  7118. height: math.unit(143, "feet")
  7119. },
  7120. {
  7121. name: "Macro+",
  7122. height: math.unit(400, "feet")
  7123. },
  7124. ]
  7125. ))
  7126. characterMakers.push(() => makeCharacter(
  7127. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7128. {
  7129. front: {
  7130. height: math.unit(6, "feet"),
  7131. weight: math.unit(225, "lbs"),
  7132. name: "Front",
  7133. image: {
  7134. source: "./media/characters/daniel/front.svg"
  7135. }
  7136. },
  7137. leaning: {
  7138. height: math.unit(6, "feet"),
  7139. weight: math.unit(225, "lbs"),
  7140. name: "Leaning",
  7141. image: {
  7142. source: "./media/characters/daniel/leaning.svg"
  7143. }
  7144. },
  7145. },
  7146. [
  7147. {
  7148. name: "Macro",
  7149. height: math.unit(1000, "feet"),
  7150. default: true
  7151. },
  7152. ]
  7153. ))
  7154. characterMakers.push(() => makeCharacter(
  7155. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7156. {
  7157. front: {
  7158. height: math.unit(6, "feet"),
  7159. weight: math.unit(88, "lbs"),
  7160. name: "Front",
  7161. image: {
  7162. source: "./media/characters/chiros/front.svg",
  7163. extra: 306 / 226
  7164. }
  7165. },
  7166. side: {
  7167. height: math.unit(6, "feet"),
  7168. weight: math.unit(88, "lbs"),
  7169. name: "Side",
  7170. image: {
  7171. source: "./media/characters/chiros/side.svg",
  7172. extra: 306 / 226
  7173. }
  7174. },
  7175. },
  7176. [
  7177. {
  7178. name: "Normal",
  7179. height: math.unit(6, "cm"),
  7180. default: true
  7181. },
  7182. ]
  7183. ))
  7184. characterMakers.push(() => makeCharacter(
  7185. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7186. {
  7187. front: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(100, "lbs"),
  7190. name: "Front",
  7191. image: {
  7192. source: "./media/characters/selka/front.svg",
  7193. extra: 947 / 887
  7194. }
  7195. }
  7196. },
  7197. [
  7198. {
  7199. name: "Normal",
  7200. height: math.unit(5, "cm"),
  7201. default: true
  7202. },
  7203. ]
  7204. ))
  7205. characterMakers.push(() => makeCharacter(
  7206. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7207. {
  7208. front: {
  7209. height: math.unit(8 + 3 / 12, "feet"),
  7210. weight: math.unit(424, "lbs"),
  7211. name: "Front",
  7212. image: {
  7213. source: "./media/characters/verin/front.svg",
  7214. extra: 1845 / 1550
  7215. }
  7216. },
  7217. frontArmored: {
  7218. height: math.unit(8 + 3 / 12, "feet"),
  7219. weight: math.unit(424, "lbs"),
  7220. name: "Front (Armored)",
  7221. image: {
  7222. source: "./media/characters/verin/front-armor.svg",
  7223. extra: 1845 / 1550,
  7224. bottom: 0.01
  7225. }
  7226. },
  7227. back: {
  7228. height: math.unit(8 + 3 / 12, "feet"),
  7229. weight: math.unit(424, "lbs"),
  7230. name: "Back",
  7231. image: {
  7232. source: "./media/characters/verin/back.svg",
  7233. bottom: 0.1,
  7234. extra: 1
  7235. }
  7236. },
  7237. foot: {
  7238. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7239. name: "Foot",
  7240. image: {
  7241. source: "./media/characters/verin/foot.svg"
  7242. }
  7243. },
  7244. },
  7245. [
  7246. {
  7247. name: "Normal",
  7248. height: math.unit(8 + 3 / 12, "feet")
  7249. },
  7250. {
  7251. name: "Minimacro",
  7252. height: math.unit(21, "feet"),
  7253. default: true
  7254. },
  7255. {
  7256. name: "Macro",
  7257. height: math.unit(626, "feet")
  7258. },
  7259. ]
  7260. ))
  7261. characterMakers.push(() => makeCharacter(
  7262. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7263. {
  7264. front: {
  7265. height: math.unit(2.718, "meters"),
  7266. weight: math.unit(150, "lbs"),
  7267. name: "Front",
  7268. image: {
  7269. source: "./media/characters/sovrim-terraquian/front.svg"
  7270. }
  7271. },
  7272. back: {
  7273. height: math.unit(2.718, "meters"),
  7274. weight: math.unit(150, "lbs"),
  7275. name: "Back",
  7276. image: {
  7277. source: "./media/characters/sovrim-terraquian/back.svg"
  7278. }
  7279. }
  7280. },
  7281. [
  7282. {
  7283. name: "Micro",
  7284. height: math.unit(2, "inches")
  7285. },
  7286. {
  7287. name: "Small",
  7288. height: math.unit(1, "meter")
  7289. },
  7290. {
  7291. name: "Normal",
  7292. height: math.unit(Math.E, "meters"),
  7293. default: true
  7294. },
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(20, "meters")
  7298. },
  7299. {
  7300. name: "Macro+",
  7301. height: math.unit(400, "meters")
  7302. },
  7303. ]
  7304. ))
  7305. characterMakers.push(() => makeCharacter(
  7306. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7307. {
  7308. front: {
  7309. height: math.unit(7, "feet"),
  7310. weight: math.unit(489, "lbs"),
  7311. name: "Front",
  7312. image: {
  7313. source: "./media/characters/reece-silvermane/front.svg",
  7314. bottom: 0.02,
  7315. extra: 1
  7316. }
  7317. },
  7318. },
  7319. [
  7320. {
  7321. name: "Macro",
  7322. height: math.unit(1.5, "miles"),
  7323. default: true
  7324. },
  7325. ]
  7326. ))
  7327. characterMakers.push(() => makeCharacter(
  7328. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7329. {
  7330. front: {
  7331. height: math.unit(6, "feet"),
  7332. weight: math.unit(78, "kg"),
  7333. name: "Front",
  7334. image: {
  7335. source: "./media/characters/kane/front.svg",
  7336. extra: 978 / 899
  7337. }
  7338. },
  7339. },
  7340. [
  7341. {
  7342. name: "Normal",
  7343. height: math.unit(2.1, "m"),
  7344. },
  7345. {
  7346. name: "Macro",
  7347. height: math.unit(1, "km"),
  7348. default: true
  7349. },
  7350. ]
  7351. ))
  7352. characterMakers.push(() => makeCharacter(
  7353. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7354. {
  7355. front: {
  7356. height: math.unit(6, "feet"),
  7357. weight: math.unit(200, "kg"),
  7358. name: "Front",
  7359. image: {
  7360. source: "./media/characters/tegon/front.svg",
  7361. bottom: 0.01,
  7362. extra: 1
  7363. }
  7364. },
  7365. },
  7366. [
  7367. {
  7368. name: "Micro",
  7369. height: math.unit(1, "inch")
  7370. },
  7371. {
  7372. name: "Normal",
  7373. height: math.unit(6 + 3 / 12, "feet"),
  7374. default: true
  7375. },
  7376. {
  7377. name: "Macro",
  7378. height: math.unit(300, "feet")
  7379. },
  7380. {
  7381. name: "Megamacro",
  7382. height: math.unit(69, "miles")
  7383. },
  7384. ]
  7385. ))
  7386. characterMakers.push(() => makeCharacter(
  7387. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7388. {
  7389. side: {
  7390. height: math.unit(6, "feet"),
  7391. weight: math.unit(2304, "lbs"),
  7392. name: "Side",
  7393. image: {
  7394. source: "./media/characters/arcturax/side.svg",
  7395. extra: 790 / 376,
  7396. bottom: 0.01
  7397. }
  7398. },
  7399. },
  7400. [
  7401. {
  7402. name: "Micro",
  7403. height: math.unit(2, "inch")
  7404. },
  7405. {
  7406. name: "Normal",
  7407. height: math.unit(6, "feet")
  7408. },
  7409. {
  7410. name: "Macro",
  7411. height: math.unit(39, "feet"),
  7412. default: true
  7413. },
  7414. {
  7415. name: "Megamacro",
  7416. height: math.unit(7, "miles")
  7417. },
  7418. ]
  7419. ))
  7420. characterMakers.push(() => makeCharacter(
  7421. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7422. {
  7423. front: {
  7424. height: math.unit(6, "feet"),
  7425. weight: math.unit(50, "lbs"),
  7426. name: "Front",
  7427. image: {
  7428. source: "./media/characters/sentri/front.svg",
  7429. extra: 1750 / 1570,
  7430. bottom: 0.025
  7431. }
  7432. },
  7433. frontAlt: {
  7434. height: math.unit(6, "feet"),
  7435. weight: math.unit(50, "lbs"),
  7436. name: "Front (Alt)",
  7437. image: {
  7438. source: "./media/characters/sentri/front-alt.svg",
  7439. extra: 1750 / 1570,
  7440. bottom: 0.025
  7441. }
  7442. },
  7443. },
  7444. [
  7445. {
  7446. name: "Normal",
  7447. height: math.unit(15, "feet"),
  7448. default: true
  7449. },
  7450. {
  7451. name: "Macro",
  7452. height: math.unit(2500, "feet")
  7453. }
  7454. ]
  7455. ))
  7456. characterMakers.push(() => makeCharacter(
  7457. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7458. {
  7459. front: {
  7460. height: math.unit(5 + 8 / 12, "feet"),
  7461. weight: math.unit(130, "lbs"),
  7462. name: "Front",
  7463. image: {
  7464. source: "./media/characters/corvin/front.svg",
  7465. extra: 1803 / 1629
  7466. }
  7467. },
  7468. frontShirt: {
  7469. height: math.unit(5 + 8 / 12, "feet"),
  7470. weight: math.unit(130, "lbs"),
  7471. name: "Front (Shirt)",
  7472. image: {
  7473. source: "./media/characters/corvin/front-shirt.svg",
  7474. extra: 1803 / 1629
  7475. }
  7476. },
  7477. frontPoncho: {
  7478. height: math.unit(5 + 8 / 12, "feet"),
  7479. weight: math.unit(130, "lbs"),
  7480. name: "Front (Poncho)",
  7481. image: {
  7482. source: "./media/characters/corvin/front-poncho.svg",
  7483. extra: 1803 / 1629
  7484. }
  7485. },
  7486. side: {
  7487. height: math.unit(5 + 8 / 12, "feet"),
  7488. weight: math.unit(130, "lbs"),
  7489. name: "Side",
  7490. image: {
  7491. source: "./media/characters/corvin/side.svg",
  7492. extra: 1012 / 945
  7493. }
  7494. },
  7495. back: {
  7496. height: math.unit(5 + 8 / 12, "feet"),
  7497. weight: math.unit(130, "lbs"),
  7498. name: "Back",
  7499. image: {
  7500. source: "./media/characters/corvin/back.svg",
  7501. extra: 1803 / 1629
  7502. }
  7503. },
  7504. },
  7505. [
  7506. {
  7507. name: "Micro",
  7508. height: math.unit(3, "inches")
  7509. },
  7510. {
  7511. name: "Normal",
  7512. height: math.unit(5 + 8 / 12, "feet")
  7513. },
  7514. {
  7515. name: "Macro",
  7516. height: math.unit(300, "feet"),
  7517. default: true
  7518. },
  7519. {
  7520. name: "Megamacro",
  7521. height: math.unit(500, "miles")
  7522. }
  7523. ]
  7524. ))
  7525. characterMakers.push(() => makeCharacter(
  7526. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7527. {
  7528. front: {
  7529. height: math.unit(6, "feet"),
  7530. weight: math.unit(135, "lbs"),
  7531. name: "Front",
  7532. image: {
  7533. source: "./media/characters/q/front.svg",
  7534. extra: 854 / 752,
  7535. bottom: 0.005
  7536. }
  7537. },
  7538. back: {
  7539. height: math.unit(6, "feet"),
  7540. weight: math.unit(130, "lbs"),
  7541. name: "Back",
  7542. image: {
  7543. source: "./media/characters/q/back.svg",
  7544. extra: 854 / 752
  7545. }
  7546. },
  7547. },
  7548. [
  7549. {
  7550. name: "Macro",
  7551. height: math.unit(90, "feet"),
  7552. default: true
  7553. },
  7554. {
  7555. name: "Extra Macro",
  7556. height: math.unit(300, "feet"),
  7557. },
  7558. {
  7559. name: "BIG WALF",
  7560. height: math.unit(750, "feet"),
  7561. },
  7562. ]
  7563. ))
  7564. characterMakers.push(() => makeCharacter(
  7565. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7566. {
  7567. front: {
  7568. height: math.unit(6, "feet"),
  7569. weight: math.unit(150, "lbs"),
  7570. name: "Front",
  7571. image: {
  7572. source: "./media/characters/carley/front.svg",
  7573. extra: 3927 / 3540,
  7574. bottom: 29.2 / 735
  7575. }
  7576. }
  7577. },
  7578. [
  7579. {
  7580. name: "Normal",
  7581. height: math.unit(6 + 3 / 12, "feet")
  7582. },
  7583. {
  7584. name: "Macro",
  7585. height: math.unit(185, "feet"),
  7586. default: true
  7587. },
  7588. {
  7589. name: "Megamacro",
  7590. height: math.unit(8, "miles"),
  7591. },
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7596. {
  7597. front: {
  7598. height: math.unit(3, "feet"),
  7599. weight: math.unit(28, "lbs"),
  7600. name: "Front",
  7601. image: {
  7602. source: "./media/characters/citrine/front.svg"
  7603. }
  7604. }
  7605. },
  7606. [
  7607. {
  7608. name: "Normal",
  7609. height: math.unit(3, "feet"),
  7610. default: true
  7611. }
  7612. ]
  7613. ))
  7614. characterMakers.push(() => makeCharacter(
  7615. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7616. {
  7617. front: {
  7618. height: math.unit(14, "feet"),
  7619. weight: math.unit(1450, "kg"),
  7620. capacity: math.unit(15, "people"),
  7621. name: "Front",
  7622. image: {
  7623. source: "./media/characters/aura-starwind/front.svg",
  7624. extra: 1455 / 1335
  7625. }
  7626. },
  7627. side: {
  7628. height: math.unit(14, "feet"),
  7629. weight: math.unit(1450, "kg"),
  7630. capacity: math.unit(15, "people"),
  7631. name: "Side",
  7632. image: {
  7633. source: "./media/characters/aura-starwind/side.svg",
  7634. extra: 1654 / 1497
  7635. }
  7636. },
  7637. taur: {
  7638. height: math.unit(18, "feet"),
  7639. weight: math.unit(5500, "kg"),
  7640. capacity: math.unit(50, "people"),
  7641. name: "Taur",
  7642. image: {
  7643. source: "./media/characters/aura-starwind/taur.svg",
  7644. extra: 1760 / 1650
  7645. }
  7646. },
  7647. feral: {
  7648. height: math.unit(46, "feet"),
  7649. weight: math.unit(25000, "kg"),
  7650. capacity: math.unit(120, "people"),
  7651. name: "Feral",
  7652. image: {
  7653. source: "./media/characters/aura-starwind/feral.svg"
  7654. }
  7655. },
  7656. },
  7657. [
  7658. {
  7659. name: "Normal",
  7660. height: math.unit(14, "feet"),
  7661. default: true
  7662. },
  7663. {
  7664. name: "Macro",
  7665. height: math.unit(50, "meters")
  7666. },
  7667. {
  7668. name: "Megamacro",
  7669. height: math.unit(5000, "meters")
  7670. },
  7671. {
  7672. name: "Gigamacro",
  7673. height: math.unit(100000, "kilometers")
  7674. },
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7679. {
  7680. front: {
  7681. height: math.unit(2 + 7 / 12, "feet"),
  7682. weight: math.unit(32, "lbs"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/rivet/front.svg",
  7686. extra: 1716 / 1658,
  7687. bottom: 0.03
  7688. }
  7689. },
  7690. foot: {
  7691. height: math.unit(0.551, "feet"),
  7692. name: "Rivet's Foot",
  7693. image: {
  7694. source: "./media/characters/rivet/foot.svg"
  7695. },
  7696. rename: true
  7697. }
  7698. },
  7699. [
  7700. {
  7701. name: "Micro",
  7702. height: math.unit(1.5, "inches"),
  7703. },
  7704. {
  7705. name: "Normal",
  7706. height: math.unit(2 + 7 / 12, "feet"),
  7707. default: true
  7708. },
  7709. {
  7710. name: "Macro",
  7711. height: math.unit(85, "feet")
  7712. },
  7713. {
  7714. name: "Megamacro",
  7715. height: math.unit(2.2, "km")
  7716. }
  7717. ]
  7718. ))
  7719. characterMakers.push(() => makeCharacter(
  7720. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7721. {
  7722. front: {
  7723. height: math.unit(5 + 9 / 12, "feet"),
  7724. weight: math.unit(150, "lbs"),
  7725. name: "Front",
  7726. image: {
  7727. source: "./media/characters/coffee/front.svg",
  7728. extra: 3666 / 3032,
  7729. bottom: 0.04
  7730. }
  7731. },
  7732. foot: {
  7733. height: math.unit(1.29, "feet"),
  7734. name: "Foot",
  7735. image: {
  7736. source: "./media/characters/coffee/foot.svg"
  7737. }
  7738. },
  7739. },
  7740. [
  7741. {
  7742. name: "Micro",
  7743. height: math.unit(2, "inches"),
  7744. },
  7745. {
  7746. name: "Normal",
  7747. height: math.unit(5 + 9 / 12, "feet"),
  7748. default: true
  7749. },
  7750. {
  7751. name: "Macro",
  7752. height: math.unit(800, "feet")
  7753. },
  7754. {
  7755. name: "Megamacro",
  7756. height: math.unit(25, "miles")
  7757. }
  7758. ]
  7759. ))
  7760. characterMakers.push(() => makeCharacter(
  7761. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7762. {
  7763. front: {
  7764. height: math.unit(6, "feet"),
  7765. weight: math.unit(200, "lbs"),
  7766. name: "Front",
  7767. image: {
  7768. source: "./media/characters/chari-gal/front.svg",
  7769. extra: 1568 / 1385,
  7770. bottom: 0.047
  7771. }
  7772. },
  7773. gigantamax: {
  7774. height: math.unit(6 * 16, "feet"),
  7775. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7776. name: "Gigantamax",
  7777. image: {
  7778. source: "./media/characters/chari-gal/gigantamax.svg",
  7779. extra: 1124 / 888,
  7780. bottom: 0.03
  7781. }
  7782. },
  7783. },
  7784. [
  7785. {
  7786. name: "Normal",
  7787. height: math.unit(5 + 7 / 12, "feet")
  7788. },
  7789. {
  7790. name: "Macro",
  7791. height: math.unit(200, "feet"),
  7792. default: true
  7793. }
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(150, "lbs"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/nova/front.svg",
  7805. extra: 5000 / 4722,
  7806. bottom: 0.02
  7807. }
  7808. }
  7809. },
  7810. [
  7811. {
  7812. name: "Micro-",
  7813. height: math.unit(0.8, "inches")
  7814. },
  7815. {
  7816. name: "Micro",
  7817. height: math.unit(2, "inches"),
  7818. default: true
  7819. },
  7820. ]
  7821. ))
  7822. characterMakers.push(() => makeCharacter(
  7823. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7824. {
  7825. front: {
  7826. height: math.unit(3 + 1 / 12, "feet"),
  7827. weight: math.unit(21.7, "lbs"),
  7828. name: "Front",
  7829. image: {
  7830. source: "./media/characters/argent/front.svg",
  7831. extra: 1471 / 1331,
  7832. bottom: 100.8 / 1575.5
  7833. }
  7834. }
  7835. },
  7836. [
  7837. {
  7838. name: "Micro",
  7839. height: math.unit(2, "inches")
  7840. },
  7841. {
  7842. name: "Normal",
  7843. height: math.unit(3 + 1 / 12, "feet"),
  7844. default: true
  7845. },
  7846. {
  7847. name: "Macro",
  7848. height: math.unit(120, "feet")
  7849. },
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7854. {
  7855. lamp: {
  7856. height: math.unit(7 * 1559 / 989, "feet"),
  7857. name: "Magic Lamp",
  7858. image: {
  7859. source: "./media/characters/mira-al-cul/lamp.svg",
  7860. extra: 1617 / 1559
  7861. }
  7862. },
  7863. front: {
  7864. height: math.unit(7, "feet"),
  7865. name: "Front",
  7866. image: {
  7867. source: "./media/characters/mira-al-cul/front.svg",
  7868. extra: 1044 / 990
  7869. }
  7870. },
  7871. },
  7872. [
  7873. {
  7874. name: "Heavily Restricted",
  7875. height: math.unit(7 * 1559 / 989, "feet")
  7876. },
  7877. {
  7878. name: "Freshly Freed",
  7879. height: math.unit(50 * 1559 / 989, "feet")
  7880. },
  7881. {
  7882. name: "World Encompassing",
  7883. height: math.unit(10000 * 1559 / 989, "miles")
  7884. },
  7885. {
  7886. name: "Galactic",
  7887. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7888. },
  7889. {
  7890. name: "Palmed Universe",
  7891. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7892. default: true
  7893. },
  7894. {
  7895. name: "Multiversal Matriarch",
  7896. height: math.unit(8.87e10, "yottameters")
  7897. },
  7898. {
  7899. name: "Void Mother",
  7900. height: math.unit(3.14e110, "yottaparsecs")
  7901. },
  7902. {
  7903. name: "Toying with Transcendence",
  7904. height: math.unit(1e307, "meters")
  7905. },
  7906. ]
  7907. ))
  7908. characterMakers.push(() => makeCharacter(
  7909. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7910. {
  7911. front: {
  7912. height: math.unit(17 + 1 / 12, "feet"),
  7913. weight: math.unit(476.2 * 5, "lbs"),
  7914. name: "Front",
  7915. image: {
  7916. source: "./media/characters/kuro-shi-uchū/front.svg",
  7917. extra: 2329 / 1835,
  7918. bottom: 0.02
  7919. }
  7920. },
  7921. },
  7922. [
  7923. {
  7924. name: "Micro",
  7925. height: math.unit(2, "inches")
  7926. },
  7927. {
  7928. name: "Normal",
  7929. height: math.unit(12, "meters")
  7930. },
  7931. {
  7932. name: "Planetary",
  7933. height: math.unit(0.00929, "AU"),
  7934. default: true
  7935. },
  7936. {
  7937. name: "Universal",
  7938. height: math.unit(20, "gigaparsecs")
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(5 + 2 / 12, "feet"),
  7947. weight: math.unit(120, "lbs"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/katherine/front.svg",
  7951. extra: 2075 / 1969
  7952. }
  7953. },
  7954. dress: {
  7955. height: math.unit(5 + 2 / 12, "feet"),
  7956. weight: math.unit(120, "lbs"),
  7957. name: "Dress",
  7958. image: {
  7959. source: "./media/characters/katherine/dress.svg",
  7960. extra: 2258 / 2064
  7961. }
  7962. },
  7963. },
  7964. [
  7965. {
  7966. name: "Micro",
  7967. height: math.unit(1, "inches"),
  7968. default: true
  7969. },
  7970. {
  7971. name: "Normal",
  7972. height: math.unit(5 + 2 / 12, "feet")
  7973. },
  7974. {
  7975. name: "Macro",
  7976. height: math.unit(100, "meters")
  7977. },
  7978. {
  7979. name: "Megamacro",
  7980. height: math.unit(80, "miles")
  7981. },
  7982. ]
  7983. ))
  7984. characterMakers.push(() => makeCharacter(
  7985. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7986. {
  7987. front: {
  7988. height: math.unit(7 + 8 / 12, "feet"),
  7989. weight: math.unit(250, "lbs"),
  7990. name: "Front",
  7991. image: {
  7992. source: "./media/characters/yevis/front.svg",
  7993. extra: 1938 / 1755
  7994. }
  7995. }
  7996. },
  7997. [
  7998. {
  7999. name: "Mortal",
  8000. height: math.unit(7 + 8 / 12, "feet")
  8001. },
  8002. {
  8003. name: "Battle",
  8004. height: math.unit(25 + 11 / 12, "feet")
  8005. },
  8006. {
  8007. name: "Wrath",
  8008. height: math.unit(1654 + 11 / 12, "feet")
  8009. },
  8010. {
  8011. name: "Planet Destroyer",
  8012. height: math.unit(12000, "miles")
  8013. },
  8014. {
  8015. name: "Galaxy Conqueror",
  8016. height: math.unit(1.45, "zettameters"),
  8017. default: true
  8018. },
  8019. {
  8020. name: "Universal War",
  8021. height: math.unit(184, "gigaparsecs")
  8022. },
  8023. {
  8024. name: "Eternity War",
  8025. height: math.unit(1.98e55, "yottaparsecs")
  8026. },
  8027. ]
  8028. ))
  8029. characterMakers.push(() => makeCharacter(
  8030. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8031. {
  8032. front: {
  8033. height: math.unit(5 + 8 / 12, "feet"),
  8034. weight: math.unit(63, "kg"),
  8035. name: "Front",
  8036. image: {
  8037. source: "./media/characters/xavier/front.svg",
  8038. extra: 944 / 883
  8039. }
  8040. },
  8041. frontStretch: {
  8042. height: math.unit(5 + 8 / 12, "feet"),
  8043. weight: math.unit(63, "kg"),
  8044. name: "Stretching",
  8045. image: {
  8046. source: "./media/characters/xavier/front-stretch.svg",
  8047. extra: 962 / 820
  8048. }
  8049. },
  8050. },
  8051. [
  8052. {
  8053. name: "Normal",
  8054. height: math.unit(5 + 8 / 12, "feet")
  8055. },
  8056. {
  8057. name: "Macro",
  8058. height: math.unit(100, "meters"),
  8059. default: true
  8060. },
  8061. {
  8062. name: "McLargeHuge",
  8063. height: math.unit(10, "miles")
  8064. },
  8065. ]
  8066. ))
  8067. characterMakers.push(() => makeCharacter(
  8068. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8069. {
  8070. front: {
  8071. height: math.unit(5 + 5 / 12, "feet"),
  8072. weight: math.unit(150, "lb"),
  8073. name: "Front",
  8074. image: {
  8075. source: "./media/characters/joshii/front.svg",
  8076. extra: 765 / 653,
  8077. bottom: 51 / 816
  8078. }
  8079. },
  8080. foot: {
  8081. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8082. name: "Foot",
  8083. image: {
  8084. source: "./media/characters/joshii/foot.svg"
  8085. }
  8086. },
  8087. },
  8088. [
  8089. {
  8090. name: "Micro",
  8091. height: math.unit(2, "inches"),
  8092. default: true
  8093. },
  8094. {
  8095. name: "Normal",
  8096. height: math.unit(5 + 5 / 12, "feet")
  8097. },
  8098. {
  8099. name: "Macro",
  8100. height: math.unit(785, "feet")
  8101. },
  8102. {
  8103. name: "Megamacro",
  8104. height: math.unit(24.5, "miles")
  8105. },
  8106. ]
  8107. ))
  8108. characterMakers.push(() => makeCharacter(
  8109. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8110. {
  8111. front: {
  8112. height: math.unit(6, "feet"),
  8113. weight: math.unit(150, "lb"),
  8114. name: "Front",
  8115. image: {
  8116. source: "./media/characters/goddess-elizabeth/front.svg",
  8117. extra: 1800 / 1525,
  8118. bottom: 0.005
  8119. }
  8120. },
  8121. foot: {
  8122. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8123. name: "Foot",
  8124. image: {
  8125. source: "./media/characters/goddess-elizabeth/foot.svg"
  8126. }
  8127. },
  8128. mouth: {
  8129. height: math.unit(6, "feet"),
  8130. name: "Mouth",
  8131. image: {
  8132. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8133. }
  8134. },
  8135. },
  8136. [
  8137. {
  8138. name: "Micro",
  8139. height: math.unit(12, "feet")
  8140. },
  8141. {
  8142. name: "Normal",
  8143. height: math.unit(80, "miles"),
  8144. default: true
  8145. },
  8146. {
  8147. name: "Macro",
  8148. height: math.unit(15000, "parsecs")
  8149. },
  8150. ]
  8151. ))
  8152. characterMakers.push(() => makeCharacter(
  8153. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8154. {
  8155. front: {
  8156. height: math.unit(5 + 9 / 12, "feet"),
  8157. weight: math.unit(144, "lb"),
  8158. name: "Front",
  8159. image: {
  8160. source: "./media/characters/kara/front.svg"
  8161. }
  8162. },
  8163. feet: {
  8164. height: math.unit(6 / 6.765, "feet"),
  8165. name: "Kara's Feet",
  8166. rename: true,
  8167. image: {
  8168. source: "./media/characters/kara/feet.svg"
  8169. }
  8170. },
  8171. },
  8172. [
  8173. {
  8174. name: "Normal",
  8175. height: math.unit(5 + 9 / 12, "feet")
  8176. },
  8177. {
  8178. name: "Macro",
  8179. height: math.unit(174, "feet"),
  8180. default: true
  8181. },
  8182. ]
  8183. ))
  8184. characterMakers.push(() => makeCharacter(
  8185. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8186. {
  8187. front: {
  8188. height: math.unit(18, "feet"),
  8189. weight: math.unit(4050, "lb"),
  8190. name: "Front",
  8191. image: {
  8192. source: "./media/characters/tyrone/front.svg",
  8193. extra: 2405 / 2270,
  8194. bottom: 182 / 2587
  8195. }
  8196. },
  8197. },
  8198. [
  8199. {
  8200. name: "Normal",
  8201. height: math.unit(18, "feet"),
  8202. default: true
  8203. },
  8204. {
  8205. name: "Macro",
  8206. height: math.unit(300, "feet")
  8207. },
  8208. {
  8209. name: "Megamacro",
  8210. height: math.unit(15, "km")
  8211. },
  8212. {
  8213. name: "Gigamacro",
  8214. height: math.unit(500, "km")
  8215. },
  8216. {
  8217. name: "Teramacro",
  8218. height: math.unit(0.5, "gigameters")
  8219. },
  8220. {
  8221. name: "Omnimacro",
  8222. height: math.unit(1e252, "yottauniverse")
  8223. },
  8224. ]
  8225. ))
  8226. characterMakers.push(() => makeCharacter(
  8227. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8228. {
  8229. front: {
  8230. height: math.unit(7 + 8 / 12, "feet"),
  8231. weight: math.unit(120, "lb"),
  8232. name: "Front",
  8233. image: {
  8234. source: "./media/characters/danny/front.svg",
  8235. extra: 1490 / 1350
  8236. }
  8237. },
  8238. back: {
  8239. height: math.unit(7 + 8 / 12, "feet"),
  8240. weight: math.unit(120, "lb"),
  8241. name: "Back",
  8242. image: {
  8243. source: "./media/characters/danny/back.svg",
  8244. extra: 1490 / 1350
  8245. }
  8246. },
  8247. },
  8248. [
  8249. {
  8250. name: "Normal",
  8251. height: math.unit(7 + 8 / 12, "feet"),
  8252. default: true
  8253. },
  8254. ]
  8255. ))
  8256. characterMakers.push(() => makeCharacter(
  8257. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8258. {
  8259. front: {
  8260. height: math.unit(3.5, "inches"),
  8261. weight: math.unit(19, "grams"),
  8262. name: "Front",
  8263. image: {
  8264. source: "./media/characters/mallow/front.svg",
  8265. extra: 471 / 431
  8266. }
  8267. },
  8268. back: {
  8269. height: math.unit(3.5, "inches"),
  8270. weight: math.unit(19, "grams"),
  8271. name: "Back",
  8272. image: {
  8273. source: "./media/characters/mallow/back.svg",
  8274. extra: 471 / 431
  8275. }
  8276. },
  8277. },
  8278. [
  8279. {
  8280. name: "Normal",
  8281. height: math.unit(3.5, "inches"),
  8282. default: true
  8283. },
  8284. ]
  8285. ))
  8286. characterMakers.push(() => makeCharacter(
  8287. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8288. {
  8289. front: {
  8290. height: math.unit(9, "feet"),
  8291. weight: math.unit(230, "kg"),
  8292. name: "Front",
  8293. image: {
  8294. source: "./media/characters/starry-aqua/front.svg"
  8295. }
  8296. },
  8297. back: {
  8298. height: math.unit(9, "feet"),
  8299. weight: math.unit(230, "kg"),
  8300. name: "Back",
  8301. image: {
  8302. source: "./media/characters/starry-aqua/back.svg"
  8303. }
  8304. },
  8305. hand: {
  8306. height: math.unit(9 * 0.1168, "feet"),
  8307. name: "Hand",
  8308. image: {
  8309. source: "./media/characters/starry-aqua/hand.svg"
  8310. }
  8311. },
  8312. foot: {
  8313. height: math.unit(9 * 0.18, "feet"),
  8314. name: "Foot",
  8315. image: {
  8316. source: "./media/characters/starry-aqua/foot.svg"
  8317. }
  8318. }
  8319. },
  8320. [
  8321. {
  8322. name: "Micro",
  8323. height: math.unit(3, "inches")
  8324. },
  8325. {
  8326. name: "Normal",
  8327. height: math.unit(9, "feet")
  8328. },
  8329. {
  8330. name: "Macro",
  8331. height: math.unit(300, "feet"),
  8332. default: true
  8333. },
  8334. {
  8335. name: "Megamacro",
  8336. height: math.unit(3200, "feet")
  8337. }
  8338. ]
  8339. ))
  8340. characterMakers.push(() => makeCharacter(
  8341. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8342. {
  8343. front: {
  8344. height: math.unit(6, "feet"),
  8345. weight: math.unit(230, "lb"),
  8346. name: "Front",
  8347. image: {
  8348. source: "./media/characters/luka/front.svg",
  8349. extra: 1,
  8350. bottom: 0.025
  8351. }
  8352. },
  8353. },
  8354. [
  8355. {
  8356. name: "Normal",
  8357. height: math.unit(12 + 8 / 12, "feet"),
  8358. default: true
  8359. },
  8360. {
  8361. name: "Minimacro",
  8362. height: math.unit(20, "feet")
  8363. },
  8364. {
  8365. name: "Macro",
  8366. height: math.unit(250, "feet")
  8367. },
  8368. {
  8369. name: "Megamacro",
  8370. height: math.unit(5, "miles")
  8371. },
  8372. {
  8373. name: "Gigamacro",
  8374. height: math.unit(8000, "miles")
  8375. },
  8376. ]
  8377. ))
  8378. characterMakers.push(() => makeCharacter(
  8379. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8380. {
  8381. front: {
  8382. height: math.unit(6, "feet"),
  8383. weight: math.unit(150, "lb"),
  8384. name: "Front",
  8385. image: {
  8386. source: "./media/characters/natalie-nightring/front.svg",
  8387. extra: 1,
  8388. bottom: 0.06
  8389. }
  8390. },
  8391. },
  8392. [
  8393. {
  8394. name: "Uh Oh",
  8395. height: math.unit(0.1, "mm")
  8396. },
  8397. {
  8398. name: "Small",
  8399. height: math.unit(3, "inches")
  8400. },
  8401. {
  8402. name: "Human Scale",
  8403. height: math.unit(6, "feet")
  8404. },
  8405. {
  8406. name: "Librarian",
  8407. height: math.unit(50, "feet"),
  8408. default: true
  8409. },
  8410. {
  8411. name: "Immense",
  8412. height: math.unit(200, "miles")
  8413. },
  8414. ]
  8415. ))
  8416. characterMakers.push(() => makeCharacter(
  8417. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8418. {
  8419. front: {
  8420. height: math.unit(6, "feet"),
  8421. weight: math.unit(180, "lbs"),
  8422. name: "Front",
  8423. image: {
  8424. source: "./media/characters/danni-rosie/front.svg",
  8425. extra: 1260 / 1128,
  8426. bottom: 0.022
  8427. }
  8428. },
  8429. },
  8430. [
  8431. {
  8432. name: "Micro",
  8433. height: math.unit(2, "inches"),
  8434. default: true
  8435. },
  8436. ]
  8437. ))
  8438. characterMakers.push(() => makeCharacter(
  8439. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8440. {
  8441. front: {
  8442. height: math.unit(5 + 9 / 12, "feet"),
  8443. weight: math.unit(220, "lb"),
  8444. name: "Front",
  8445. image: {
  8446. source: "./media/characters/samantha-kruse/front.svg",
  8447. extra: (985 / 935),
  8448. bottom: 0.03
  8449. }
  8450. },
  8451. frontUndressed: {
  8452. height: math.unit(5 + 9 / 12, "feet"),
  8453. weight: math.unit(220, "lb"),
  8454. name: "Front (Undressed)",
  8455. image: {
  8456. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8457. extra: (973 / 923),
  8458. bottom: 0.025
  8459. }
  8460. },
  8461. fat: {
  8462. height: math.unit(5 + 9 / 12, "feet"),
  8463. weight: math.unit(900, "lb"),
  8464. name: "Front (Fat)",
  8465. image: {
  8466. source: "./media/characters/samantha-kruse/fat.svg",
  8467. extra: 2688 / 2561
  8468. }
  8469. },
  8470. },
  8471. [
  8472. {
  8473. name: "Normal",
  8474. height: math.unit(5 + 9 / 12, "feet"),
  8475. default: true
  8476. }
  8477. ]
  8478. ))
  8479. characterMakers.push(() => makeCharacter(
  8480. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8481. {
  8482. back: {
  8483. height: math.unit(5 + 4 / 12, "feet"),
  8484. weight: math.unit(4963, "lb"),
  8485. name: "Back",
  8486. image: {
  8487. source: "./media/characters/amelia-rosie/back.svg",
  8488. extra: 1113 / 963,
  8489. bottom: 0.01
  8490. }
  8491. },
  8492. },
  8493. [
  8494. {
  8495. name: "Level 0",
  8496. height: math.unit(5 + 4 / 12, "feet")
  8497. },
  8498. {
  8499. name: "Level 1",
  8500. height: math.unit(164597, "feet"),
  8501. default: true
  8502. },
  8503. {
  8504. name: "Level 2",
  8505. height: math.unit(956243, "miles")
  8506. },
  8507. {
  8508. name: "Level 3",
  8509. height: math.unit(29421709423, "miles")
  8510. },
  8511. {
  8512. name: "Level 4",
  8513. height: math.unit(154, "lightyears")
  8514. },
  8515. {
  8516. name: "Level 5",
  8517. height: math.unit(4738272, "lightyears")
  8518. },
  8519. {
  8520. name: "Level 6",
  8521. height: math.unit(145787152896, "lightyears")
  8522. },
  8523. ]
  8524. ))
  8525. characterMakers.push(() => makeCharacter(
  8526. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8527. {
  8528. front: {
  8529. height: math.unit(5 + 11 / 12, "feet"),
  8530. weight: math.unit(65, "kg"),
  8531. name: "Front",
  8532. image: {
  8533. source: "./media/characters/rook-kitara/front.svg",
  8534. extra: 1347 / 1274,
  8535. bottom: 0.005
  8536. }
  8537. },
  8538. },
  8539. [
  8540. {
  8541. name: "Totally Unfair",
  8542. height: math.unit(1.8, "mm")
  8543. },
  8544. {
  8545. name: "Lap Rookie",
  8546. height: math.unit(1.4, "feet")
  8547. },
  8548. {
  8549. name: "Normal",
  8550. height: math.unit(5 + 11 / 12, "feet"),
  8551. default: true
  8552. },
  8553. {
  8554. name: "How Did This Happen",
  8555. height: math.unit(80, "miles")
  8556. }
  8557. ]
  8558. ))
  8559. characterMakers.push(() => makeCharacter(
  8560. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8561. {
  8562. front: {
  8563. height: math.unit(7, "feet"),
  8564. weight: math.unit(300, "lb"),
  8565. name: "Front",
  8566. image: {
  8567. source: "./media/characters/pisces/front.svg",
  8568. extra: 2255 / 2115,
  8569. bottom: 0.03
  8570. }
  8571. },
  8572. back: {
  8573. height: math.unit(7, "feet"),
  8574. weight: math.unit(300, "lb"),
  8575. name: "Back",
  8576. image: {
  8577. source: "./media/characters/pisces/back.svg",
  8578. extra: 2146 / 2055,
  8579. bottom: 0.04
  8580. }
  8581. },
  8582. },
  8583. [
  8584. {
  8585. name: "Normal",
  8586. height: math.unit(7, "feet"),
  8587. default: true
  8588. },
  8589. {
  8590. name: "Swimming Pool",
  8591. height: math.unit(12.2, "meters")
  8592. },
  8593. {
  8594. name: "Olympic Swimming Pool",
  8595. height: math.unit(56.3, "meters")
  8596. },
  8597. {
  8598. name: "Lake Superior",
  8599. height: math.unit(93900, "meters")
  8600. },
  8601. {
  8602. name: "Mediterranean Sea",
  8603. height: math.unit(644457, "meters")
  8604. },
  8605. {
  8606. name: "World's Oceans",
  8607. height: math.unit(4567491, "meters")
  8608. },
  8609. ]
  8610. ))
  8611. characterMakers.push(() => makeCharacter(
  8612. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8613. {
  8614. front: {
  8615. height: math.unit(2.3, "meters"),
  8616. weight: math.unit(120, "kg"),
  8617. name: "Front",
  8618. image: {
  8619. source: "./media/characters/zelas/front.svg"
  8620. }
  8621. },
  8622. side: {
  8623. height: math.unit(2.3, "meters"),
  8624. weight: math.unit(120, "kg"),
  8625. name: "Side",
  8626. image: {
  8627. source: "./media/characters/zelas/side.svg"
  8628. }
  8629. },
  8630. back: {
  8631. height: math.unit(2.3, "meters"),
  8632. weight: math.unit(120, "kg"),
  8633. name: "Back",
  8634. image: {
  8635. source: "./media/characters/zelas/back.svg"
  8636. }
  8637. },
  8638. foot: {
  8639. height: math.unit(1.116, "feet"),
  8640. name: "Foot",
  8641. image: {
  8642. source: "./media/characters/zelas/foot.svg"
  8643. }
  8644. },
  8645. },
  8646. [
  8647. {
  8648. name: "Normal",
  8649. height: math.unit(2.3, "meters")
  8650. },
  8651. {
  8652. name: "Macro",
  8653. height: math.unit(30, "meters"),
  8654. default: true
  8655. },
  8656. ]
  8657. ))
  8658. characterMakers.push(() => makeCharacter(
  8659. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8660. {
  8661. front: {
  8662. height: math.unit(1, "inch"),
  8663. weight: math.unit(0.21, "grams"),
  8664. name: "Front",
  8665. image: {
  8666. source: "./media/characters/talbot/front.svg",
  8667. extra: 594 / 544
  8668. }
  8669. },
  8670. },
  8671. [
  8672. {
  8673. name: "Micro",
  8674. height: math.unit(1, "inch"),
  8675. default: true
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8681. {
  8682. front: {
  8683. height: math.unit(3 + 3 / 12, "feet"),
  8684. weight: math.unit(51.8, "lb"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/fliss/front.svg",
  8688. extra: 840 / 640
  8689. }
  8690. },
  8691. },
  8692. [
  8693. {
  8694. name: "Teeny Tiny",
  8695. height: math.unit(1, "mm")
  8696. },
  8697. {
  8698. name: "Small",
  8699. height: math.unit(1, "inch"),
  8700. default: true
  8701. },
  8702. {
  8703. name: "Standard Sylveon",
  8704. height: math.unit(3 + 3 / 12, "feet")
  8705. },
  8706. {
  8707. name: "Large Nuisance",
  8708. height: math.unit(33, "feet")
  8709. },
  8710. {
  8711. name: "City Filler",
  8712. height: math.unit(3000, "feet")
  8713. },
  8714. {
  8715. name: "New Horizon",
  8716. height: math.unit(6000, "miles")
  8717. },
  8718. ]
  8719. ))
  8720. characterMakers.push(() => makeCharacter(
  8721. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8722. {
  8723. front: {
  8724. height: math.unit(5, "cm"),
  8725. weight: math.unit(1.94, "g"),
  8726. name: "Front",
  8727. image: {
  8728. source: "./media/characters/fleta/front.svg",
  8729. extra: 835 / 803
  8730. }
  8731. },
  8732. back: {
  8733. height: math.unit(5, "cm"),
  8734. weight: math.unit(1.94, "g"),
  8735. name: "Back",
  8736. image: {
  8737. source: "./media/characters/fleta/back.svg",
  8738. extra: 835 / 803
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Micro",
  8745. height: math.unit(5, "cm"),
  8746. default: true
  8747. },
  8748. ]
  8749. ))
  8750. characterMakers.push(() => makeCharacter(
  8751. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8752. {
  8753. front: {
  8754. height: math.unit(6, "feet"),
  8755. weight: math.unit(225, "lb"),
  8756. name: "Front",
  8757. image: {
  8758. source: "./media/characters/dominic/front.svg",
  8759. extra: 1770 / 1620,
  8760. bottom: 0.025
  8761. }
  8762. },
  8763. back: {
  8764. height: math.unit(6, "feet"),
  8765. weight: math.unit(225, "lb"),
  8766. name: "Back",
  8767. image: {
  8768. source: "./media/characters/dominic/back.svg",
  8769. extra: 1745 / 1620,
  8770. bottom: 0.065
  8771. }
  8772. },
  8773. },
  8774. [
  8775. {
  8776. name: "Nano",
  8777. height: math.unit(0.1, "mm")
  8778. },
  8779. {
  8780. name: "Micro-",
  8781. height: math.unit(1, "mm")
  8782. },
  8783. {
  8784. name: "Micro",
  8785. height: math.unit(4, "inches")
  8786. },
  8787. {
  8788. name: "Normal",
  8789. height: math.unit(6 + 4 / 12, "feet"),
  8790. default: true
  8791. },
  8792. {
  8793. name: "Macro",
  8794. height: math.unit(115, "feet")
  8795. },
  8796. {
  8797. name: "Macro+",
  8798. height: math.unit(955, "feet")
  8799. },
  8800. {
  8801. name: "Megamacro",
  8802. height: math.unit(8990, "feet")
  8803. },
  8804. {
  8805. name: "Gigmacro",
  8806. height: math.unit(9310, "miles")
  8807. },
  8808. {
  8809. name: "Teramacro",
  8810. height: math.unit(1567005010, "miles")
  8811. },
  8812. {
  8813. name: "Examacro",
  8814. height: math.unit(1425, "parsecs")
  8815. },
  8816. ]
  8817. ))
  8818. characterMakers.push(() => makeCharacter(
  8819. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8820. {
  8821. front: {
  8822. height: math.unit(400, "feet"),
  8823. weight: math.unit(44444444, "lb"),
  8824. name: "Front",
  8825. image: {
  8826. source: "./media/characters/major-colonel/front.svg"
  8827. }
  8828. },
  8829. back: {
  8830. height: math.unit(400, "feet"),
  8831. weight: math.unit(44444444, "lb"),
  8832. name: "Back",
  8833. image: {
  8834. source: "./media/characters/major-colonel/back.svg"
  8835. }
  8836. },
  8837. },
  8838. [
  8839. {
  8840. name: "Macro",
  8841. height: math.unit(400, "feet"),
  8842. default: true
  8843. },
  8844. ]
  8845. ))
  8846. characterMakers.push(() => makeCharacter(
  8847. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8848. {
  8849. catFront: {
  8850. height: math.unit(6, "feet"),
  8851. weight: math.unit(120, "lb"),
  8852. name: "Front (Cat Side)",
  8853. image: {
  8854. source: "./media/characters/axel-lycan/cat-front.svg",
  8855. extra: 430 / 402,
  8856. bottom: 43 / 472.35
  8857. }
  8858. },
  8859. catBack: {
  8860. height: math.unit(6, "feet"),
  8861. weight: math.unit(120, "lb"),
  8862. name: "Back (Cat Side)",
  8863. image: {
  8864. source: "./media/characters/axel-lycan/cat-back.svg",
  8865. extra: 447 / 419,
  8866. bottom: 23.3 / 469
  8867. }
  8868. },
  8869. wolfFront: {
  8870. height: math.unit(6, "feet"),
  8871. weight: math.unit(120, "lb"),
  8872. name: "Front (Wolf Side)",
  8873. image: {
  8874. source: "./media/characters/axel-lycan/wolf-front.svg",
  8875. extra: 485 / 456,
  8876. bottom: 19 / 504
  8877. }
  8878. },
  8879. wolfBack: {
  8880. height: math.unit(6, "feet"),
  8881. weight: math.unit(120, "lb"),
  8882. name: "Back (Wolf Side)",
  8883. image: {
  8884. source: "./media/characters/axel-lycan/wolf-back.svg",
  8885. extra: 475 / 438,
  8886. bottom: 39.2 / 514
  8887. }
  8888. },
  8889. },
  8890. [
  8891. {
  8892. name: "Macro",
  8893. height: math.unit(1, "km"),
  8894. default: true
  8895. },
  8896. ]
  8897. ))
  8898. characterMakers.push(() => makeCharacter(
  8899. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8900. {
  8901. front: {
  8902. height: math.unit(5 + 9 / 12, "feet"),
  8903. weight: math.unit(175, "lb"),
  8904. name: "Front",
  8905. image: {
  8906. source: "./media/characters/vanrel-hyena/front.svg",
  8907. extra: 1086 / 1010,
  8908. bottom: 0.04
  8909. }
  8910. },
  8911. },
  8912. [
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(5 + 9 / 12, "feet"),
  8916. default: true
  8917. },
  8918. ]
  8919. ))
  8920. characterMakers.push(() => makeCharacter(
  8921. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8922. {
  8923. front: {
  8924. height: math.unit(6, "feet"),
  8925. weight: math.unit(103, "lb"),
  8926. name: "Front",
  8927. image: {
  8928. source: "./media/characters/abbott-absol/front.svg",
  8929. extra: 2010 / 1842
  8930. }
  8931. },
  8932. },
  8933. [
  8934. {
  8935. name: "Megamicro",
  8936. height: math.unit(0.1, "mm")
  8937. },
  8938. {
  8939. name: "Micro",
  8940. height: math.unit(1, "inch")
  8941. },
  8942. {
  8943. name: "Normal",
  8944. height: math.unit(6, "feet"),
  8945. default: true
  8946. },
  8947. ]
  8948. ))
  8949. characterMakers.push(() => makeCharacter(
  8950. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8951. {
  8952. front: {
  8953. height: math.unit(6, "feet"),
  8954. weight: math.unit(264, "lb"),
  8955. name: "Front",
  8956. image: {
  8957. source: "./media/characters/hector/front.svg",
  8958. extra: 2280 / 2130,
  8959. bottom: 0.07
  8960. }
  8961. },
  8962. },
  8963. [
  8964. {
  8965. name: "Normal",
  8966. height: math.unit(12.25, "foot"),
  8967. default: true
  8968. },
  8969. {
  8970. name: "Macro",
  8971. height: math.unit(160, "feet")
  8972. },
  8973. ]
  8974. ))
  8975. characterMakers.push(() => makeCharacter(
  8976. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8977. {
  8978. front: {
  8979. height: math.unit(6, "feet"),
  8980. weight: math.unit(150, "lb"),
  8981. name: "Front",
  8982. image: {
  8983. source: "./media/characters/sal/front.svg",
  8984. extra: 1846 / 1699,
  8985. bottom: 0.04
  8986. }
  8987. },
  8988. },
  8989. [
  8990. {
  8991. name: "Megamacro",
  8992. height: math.unit(10, "miles"),
  8993. default: true
  8994. },
  8995. ]
  8996. ))
  8997. characterMakers.push(() => makeCharacter(
  8998. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8999. {
  9000. front: {
  9001. height: math.unit(3, "meters"),
  9002. weight: math.unit(450, "kg"),
  9003. name: "front",
  9004. image: {
  9005. source: "./media/characters/ranger/front.svg",
  9006. extra: 2401 / 2243,
  9007. bottom: 0.05
  9008. }
  9009. },
  9010. },
  9011. [
  9012. {
  9013. name: "Normal",
  9014. height: math.unit(3, "meters"),
  9015. default: true
  9016. },
  9017. ]
  9018. ))
  9019. characterMakers.push(() => makeCharacter(
  9020. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9021. {
  9022. front: {
  9023. height: math.unit(14, "feet"),
  9024. weight: math.unit(800, "kg"),
  9025. name: "Front",
  9026. image: {
  9027. source: "./media/characters/theresa/front.svg",
  9028. extra: 3575 / 3346,
  9029. bottom: 0.03
  9030. }
  9031. },
  9032. },
  9033. [
  9034. {
  9035. name: "Normal",
  9036. height: math.unit(14, "feet"),
  9037. default: true
  9038. },
  9039. ]
  9040. ))
  9041. characterMakers.push(() => makeCharacter(
  9042. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9043. {
  9044. front: {
  9045. height: math.unit(6, "feet"),
  9046. weight: math.unit(3, "kg"),
  9047. name: "Front",
  9048. image: {
  9049. source: "./media/characters/ine/front.svg",
  9050. extra: 678 / 539,
  9051. bottom: 0.023
  9052. }
  9053. },
  9054. },
  9055. [
  9056. {
  9057. name: "Normal",
  9058. height: math.unit(2.265, "feet"),
  9059. default: true
  9060. },
  9061. ]
  9062. ))
  9063. characterMakers.push(() => makeCharacter(
  9064. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9065. {
  9066. front: {
  9067. height: math.unit(5, "feet"),
  9068. weight: math.unit(30, "kg"),
  9069. name: "Front",
  9070. image: {
  9071. source: "./media/characters/vial/front.svg",
  9072. extra: 1365 / 1277,
  9073. bottom: 0.04
  9074. }
  9075. },
  9076. },
  9077. [
  9078. {
  9079. name: "Normal",
  9080. height: math.unit(5, "feet"),
  9081. default: true
  9082. },
  9083. ]
  9084. ))
  9085. characterMakers.push(() => makeCharacter(
  9086. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9087. {
  9088. side: {
  9089. height: math.unit(3.4, "meters"),
  9090. weight: math.unit(1000, "lb"),
  9091. name: "Side",
  9092. image: {
  9093. source: "./media/characters/rovoska/side.svg",
  9094. extra: 4403 / 1515
  9095. }
  9096. },
  9097. },
  9098. [
  9099. {
  9100. name: "Normal",
  9101. height: math.unit(3.4, "meters"),
  9102. default: true
  9103. },
  9104. ]
  9105. ))
  9106. characterMakers.push(() => makeCharacter(
  9107. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9108. {
  9109. front: {
  9110. height: math.unit(8, "feet"),
  9111. weight: math.unit(315, "lb"),
  9112. name: "Front",
  9113. image: {
  9114. source: "./media/characters/gunner-rotthbauer/front.svg"
  9115. }
  9116. },
  9117. back: {
  9118. height: math.unit(8, "feet"),
  9119. weight: math.unit(315, "lb"),
  9120. name: "Back",
  9121. image: {
  9122. source: "./media/characters/gunner-rotthbauer/back.svg"
  9123. }
  9124. },
  9125. },
  9126. [
  9127. {
  9128. name: "Micro",
  9129. height: math.unit(3.5, "inches")
  9130. },
  9131. {
  9132. name: "Normal",
  9133. height: math.unit(8, "feet"),
  9134. default: true
  9135. },
  9136. {
  9137. name: "Macro",
  9138. height: math.unit(250, "feet")
  9139. },
  9140. {
  9141. name: "Megamacro",
  9142. height: math.unit(1, "AU")
  9143. },
  9144. ]
  9145. ))
  9146. characterMakers.push(() => makeCharacter(
  9147. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9148. {
  9149. front: {
  9150. height: math.unit(5 + 5 / 12, "feet"),
  9151. weight: math.unit(140, "lb"),
  9152. name: "Front",
  9153. image: {
  9154. source: "./media/characters/allatia/front.svg",
  9155. extra: 1227 / 1180,
  9156. bottom: 0.027
  9157. }
  9158. },
  9159. },
  9160. [
  9161. {
  9162. name: "Normal",
  9163. height: math.unit(5 + 5 / 12, "feet")
  9164. },
  9165. {
  9166. name: "Macro",
  9167. height: math.unit(250, "feet"),
  9168. default: true
  9169. },
  9170. {
  9171. name: "Megamacro",
  9172. height: math.unit(8, "miles")
  9173. }
  9174. ]
  9175. ))
  9176. characterMakers.push(() => makeCharacter(
  9177. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9178. {
  9179. front: {
  9180. height: math.unit(6, "feet"),
  9181. weight: math.unit(120, "lb"),
  9182. name: "Front",
  9183. image: {
  9184. source: "./media/characters/tene/front.svg",
  9185. extra: 1728 / 1578,
  9186. bottom: 0.022
  9187. }
  9188. },
  9189. stomping: {
  9190. height: math.unit(2.025, "meters"),
  9191. weight: math.unit(120, "lb"),
  9192. name: "Stomping",
  9193. image: {
  9194. source: "./media/characters/tene/stomping.svg",
  9195. extra: 938 / 873,
  9196. bottom: 0.01
  9197. }
  9198. },
  9199. sitting: {
  9200. height: math.unit(1, "meter"),
  9201. weight: math.unit(120, "lb"),
  9202. name: "Sitting",
  9203. image: {
  9204. source: "./media/characters/tene/sitting.svg",
  9205. extra: 437 / 415,
  9206. bottom: 0.1
  9207. }
  9208. },
  9209. feral: {
  9210. height: math.unit(3.9, "feet"),
  9211. weight: math.unit(250, "lb"),
  9212. name: "Feral",
  9213. image: {
  9214. source: "./media/characters/tene/feral.svg",
  9215. extra: 717 / 458,
  9216. bottom: 0.179
  9217. }
  9218. },
  9219. },
  9220. [
  9221. {
  9222. name: "Normal",
  9223. height: math.unit(6, "feet")
  9224. },
  9225. {
  9226. name: "Macro",
  9227. height: math.unit(300, "feet"),
  9228. default: true
  9229. },
  9230. {
  9231. name: "Megamacro",
  9232. height: math.unit(5, "miles")
  9233. },
  9234. ]
  9235. ))
  9236. characterMakers.push(() => makeCharacter(
  9237. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9238. {
  9239. side: {
  9240. height: math.unit(6, "feet"),
  9241. name: "Side",
  9242. image: {
  9243. source: "./media/characters/evander/side.svg",
  9244. extra: 877 / 477
  9245. }
  9246. },
  9247. },
  9248. [
  9249. {
  9250. name: "Normal",
  9251. height: math.unit(0.83, "meters"),
  9252. default: true
  9253. },
  9254. ]
  9255. ))
  9256. characterMakers.push(() => makeCharacter(
  9257. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9258. {
  9259. front: {
  9260. height: math.unit(12, "feet"),
  9261. weight: math.unit(1000, "lb"),
  9262. name: "Front",
  9263. image: {
  9264. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9265. extra: 1762 / 1611
  9266. }
  9267. },
  9268. back: {
  9269. height: math.unit(12, "feet"),
  9270. weight: math.unit(1000, "lb"),
  9271. name: "Back",
  9272. image: {
  9273. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9274. extra: 1762 / 1611
  9275. }
  9276. },
  9277. },
  9278. [
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(12, "feet"),
  9282. default: true
  9283. },
  9284. {
  9285. name: "Kaiju",
  9286. height: math.unit(150, "feet")
  9287. },
  9288. ]
  9289. ))
  9290. characterMakers.push(() => makeCharacter(
  9291. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9292. {
  9293. front: {
  9294. height: math.unit(6, "feet"),
  9295. weight: math.unit(150, "lb"),
  9296. name: "Front",
  9297. image: {
  9298. source: "./media/characters/zero-alurus/front.svg"
  9299. }
  9300. },
  9301. back: {
  9302. height: math.unit(6, "feet"),
  9303. weight: math.unit(150, "lb"),
  9304. name: "Back",
  9305. image: {
  9306. source: "./media/characters/zero-alurus/back.svg"
  9307. }
  9308. },
  9309. },
  9310. [
  9311. {
  9312. name: "Normal",
  9313. height: math.unit(5 + 10 / 12, "feet")
  9314. },
  9315. {
  9316. name: "Macro",
  9317. height: math.unit(60, "feet"),
  9318. default: true
  9319. },
  9320. {
  9321. name: "Macro+",
  9322. height: math.unit(450, "feet")
  9323. },
  9324. ]
  9325. ))
  9326. characterMakers.push(() => makeCharacter(
  9327. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9328. {
  9329. front: {
  9330. height: math.unit(6, "feet"),
  9331. weight: math.unit(200, "lb"),
  9332. name: "Front",
  9333. image: {
  9334. source: "./media/characters/mega-shi/front.svg",
  9335. extra: 1279 / 1250,
  9336. bottom: 0.02
  9337. }
  9338. },
  9339. back: {
  9340. height: math.unit(6, "feet"),
  9341. weight: math.unit(200, "lb"),
  9342. name: "Back",
  9343. image: {
  9344. source: "./media/characters/mega-shi/back.svg",
  9345. extra: 1279 / 1250,
  9346. bottom: 0.02
  9347. }
  9348. },
  9349. },
  9350. [
  9351. {
  9352. name: "Micro",
  9353. height: math.unit(16 + 6 / 12, "feet")
  9354. },
  9355. {
  9356. name: "Third Dimension",
  9357. height: math.unit(40, "meters")
  9358. },
  9359. {
  9360. name: "Normal",
  9361. height: math.unit(660, "feet"),
  9362. default: true
  9363. },
  9364. {
  9365. name: "Megamacro",
  9366. height: math.unit(10, "miles")
  9367. },
  9368. {
  9369. name: "Planetary Launch",
  9370. height: math.unit(500, "miles")
  9371. },
  9372. {
  9373. name: "Interstellar",
  9374. height: math.unit(1e9, "miles")
  9375. },
  9376. {
  9377. name: "Leaving the Universe",
  9378. height: math.unit(1, "gigaparsec")
  9379. },
  9380. {
  9381. name: "Travelling Universes",
  9382. height: math.unit(30e15, "parsecs")
  9383. },
  9384. ]
  9385. ))
  9386. characterMakers.push(() => makeCharacter(
  9387. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9388. {
  9389. front: {
  9390. height: math.unit(6, "feet"),
  9391. weight: math.unit(150, "lb"),
  9392. name: "Front",
  9393. image: {
  9394. source: "./media/characters/odyssey/front.svg",
  9395. extra: 1782 / 1582,
  9396. bottom: 0.01
  9397. }
  9398. },
  9399. side: {
  9400. height: math.unit(5.7, "feet"),
  9401. weight: math.unit(140, "lb"),
  9402. name: "Side",
  9403. image: {
  9404. source: "./media/characters/odyssey/side.svg",
  9405. extra: 6462 / 5700
  9406. }
  9407. },
  9408. },
  9409. [
  9410. {
  9411. name: "Normal",
  9412. height: math.unit(5 + 4 / 12, "feet")
  9413. },
  9414. {
  9415. name: "Macro",
  9416. height: math.unit(1, "km")
  9417. },
  9418. {
  9419. name: "Megamacro",
  9420. height: math.unit(3000, "km")
  9421. },
  9422. {
  9423. name: "Gigamacro",
  9424. height: math.unit(1, "AU"),
  9425. default: true
  9426. },
  9427. {
  9428. name: "Omniversal",
  9429. height: math.unit(100e14, "lightyears")
  9430. },
  9431. ]
  9432. ))
  9433. characterMakers.push(() => makeCharacter(
  9434. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9435. {
  9436. front: {
  9437. height: math.unit(6, "feet"),
  9438. weight: math.unit(300, "lb"),
  9439. name: "Front",
  9440. image: {
  9441. source: "./media/characters/mekuto/front.svg",
  9442. extra: 921 / 832,
  9443. bottom: 0.03
  9444. }
  9445. },
  9446. hand: {
  9447. height: math.unit(6 / 10.24, "feet"),
  9448. name: "Hand",
  9449. image: {
  9450. source: "./media/characters/mekuto/hand.svg"
  9451. }
  9452. },
  9453. foot: {
  9454. height: math.unit(6 / 5.05, "feet"),
  9455. name: "Foot",
  9456. image: {
  9457. source: "./media/characters/mekuto/foot.svg"
  9458. }
  9459. },
  9460. },
  9461. [
  9462. {
  9463. name: "Minimicro",
  9464. height: math.unit(0.2, "inches")
  9465. },
  9466. {
  9467. name: "Micro",
  9468. height: math.unit(1.5, "inches")
  9469. },
  9470. {
  9471. name: "Normal",
  9472. height: math.unit(5 + 11 / 12, "feet"),
  9473. default: true
  9474. },
  9475. {
  9476. name: "Minimacro",
  9477. height: math.unit(17 + 9 / 12, "feet")
  9478. },
  9479. {
  9480. name: "Macro",
  9481. height: math.unit(177.5, "feet")
  9482. },
  9483. {
  9484. name: "Megamacro",
  9485. height: math.unit(152, "miles")
  9486. },
  9487. ]
  9488. ))
  9489. characterMakers.push(() => makeCharacter(
  9490. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9491. {
  9492. front: {
  9493. height: math.unit(6.5, "inches"),
  9494. weight: math.unit(13, "oz"),
  9495. name: "Front",
  9496. image: {
  9497. source: "./media/characters/dafydd-tomos/front.svg",
  9498. extra: 2990 / 2603,
  9499. bottom: 0.03
  9500. }
  9501. },
  9502. },
  9503. [
  9504. {
  9505. name: "Micro",
  9506. height: math.unit(6.5, "inches"),
  9507. default: true
  9508. },
  9509. ]
  9510. ))
  9511. characterMakers.push(() => makeCharacter(
  9512. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9513. {
  9514. front: {
  9515. height: math.unit(6, "feet"),
  9516. weight: math.unit(150, "lb"),
  9517. name: "Front",
  9518. image: {
  9519. source: "./media/characters/splinter/front.svg",
  9520. extra: 2990 / 2882,
  9521. bottom: 0.04
  9522. }
  9523. },
  9524. back: {
  9525. height: math.unit(6, "feet"),
  9526. weight: math.unit(150, "lb"),
  9527. name: "Back",
  9528. image: {
  9529. source: "./media/characters/splinter/back.svg",
  9530. extra: 2990 / 2882,
  9531. bottom: 0.04
  9532. }
  9533. },
  9534. },
  9535. [
  9536. {
  9537. name: "Normal",
  9538. height: math.unit(6, "feet")
  9539. },
  9540. {
  9541. name: "Macro",
  9542. height: math.unit(230, "meters"),
  9543. default: true
  9544. },
  9545. ]
  9546. ))
  9547. characterMakers.push(() => makeCharacter(
  9548. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9549. {
  9550. front: {
  9551. height: math.unit(4 + 10 / 12, "feet"),
  9552. weight: math.unit(480, "lb"),
  9553. name: "Front",
  9554. image: {
  9555. source: "./media/characters/snow-gabumon/front.svg",
  9556. extra: 1140 / 963,
  9557. bottom: 0.058
  9558. }
  9559. },
  9560. back: {
  9561. height: math.unit(4 + 10 / 12, "feet"),
  9562. weight: math.unit(480, "lb"),
  9563. name: "Back",
  9564. image: {
  9565. source: "./media/characters/snow-gabumon/back.svg",
  9566. extra: 1115 / 962,
  9567. bottom: 0.041
  9568. }
  9569. },
  9570. frontUndresed: {
  9571. height: math.unit(4 + 10 / 12, "feet"),
  9572. weight: math.unit(480, "lb"),
  9573. name: "Front (Undressed)",
  9574. image: {
  9575. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9576. extra: 1061 / 960,
  9577. bottom: 0.045
  9578. }
  9579. },
  9580. },
  9581. [
  9582. {
  9583. name: "Micro",
  9584. height: math.unit(1, "inch")
  9585. },
  9586. {
  9587. name: "Normal",
  9588. height: math.unit(4 + 10 / 12, "feet"),
  9589. default: true
  9590. },
  9591. {
  9592. name: "Macro",
  9593. height: math.unit(200, "feet")
  9594. },
  9595. {
  9596. name: "Megamacro",
  9597. height: math.unit(120, "miles")
  9598. },
  9599. {
  9600. name: "Gigamacro",
  9601. height: math.unit(9800, "miles")
  9602. },
  9603. ]
  9604. ))
  9605. characterMakers.push(() => makeCharacter(
  9606. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9607. {
  9608. front: {
  9609. height: math.unit(1.7, "meters"),
  9610. weight: math.unit(140, "lb"),
  9611. name: "Front",
  9612. image: {
  9613. source: "./media/characters/moody/front.svg",
  9614. extra: 3226 / 3007,
  9615. bottom: 0.087
  9616. }
  9617. },
  9618. },
  9619. [
  9620. {
  9621. name: "Micro",
  9622. height: math.unit(1, "mm")
  9623. },
  9624. {
  9625. name: "Normal",
  9626. height: math.unit(1.7, "meters"),
  9627. default: true
  9628. },
  9629. {
  9630. name: "Macro",
  9631. height: math.unit(80, "meters")
  9632. },
  9633. {
  9634. name: "Macro+",
  9635. height: math.unit(500, "meters")
  9636. },
  9637. ]
  9638. ))
  9639. characterMakers.push(() => makeCharacter(
  9640. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9641. {
  9642. front: {
  9643. height: math.unit(6, "feet"),
  9644. weight: math.unit(150, "lb"),
  9645. name: "Front",
  9646. image: {
  9647. source: "./media/characters/zyas/front.svg",
  9648. extra: 1180 / 1120,
  9649. bottom: 0.045
  9650. }
  9651. },
  9652. },
  9653. [
  9654. {
  9655. name: "Normal",
  9656. height: math.unit(10, "feet"),
  9657. default: true
  9658. },
  9659. {
  9660. name: "Macro",
  9661. height: math.unit(500, "feet")
  9662. },
  9663. {
  9664. name: "Megamacro",
  9665. height: math.unit(5, "miles")
  9666. },
  9667. {
  9668. name: "Teramacro",
  9669. height: math.unit(150000, "miles")
  9670. },
  9671. ]
  9672. ))
  9673. characterMakers.push(() => makeCharacter(
  9674. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9675. {
  9676. front: {
  9677. height: math.unit(6, "feet"),
  9678. weight: math.unit(150, "lb"),
  9679. name: "Front",
  9680. image: {
  9681. source: "./media/characters/cuon/front.svg",
  9682. extra: 1390 / 1320,
  9683. bottom: 0.008
  9684. }
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Micro",
  9690. height: math.unit(3, "inches")
  9691. },
  9692. {
  9693. name: "Normal",
  9694. height: math.unit(18 + 9 / 12, "feet"),
  9695. default: true
  9696. },
  9697. {
  9698. name: "Macro",
  9699. height: math.unit(360, "feet")
  9700. },
  9701. {
  9702. name: "Megamacro",
  9703. height: math.unit(360, "miles")
  9704. },
  9705. ]
  9706. ))
  9707. characterMakers.push(() => makeCharacter(
  9708. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9709. {
  9710. front: {
  9711. height: math.unit(2.4, "meters"),
  9712. weight: math.unit(70, "kg"),
  9713. name: "Front",
  9714. image: {
  9715. source: "./media/characters/nyanuxk/front.svg",
  9716. extra: 1172 / 1084,
  9717. bottom: 0.065
  9718. }
  9719. },
  9720. side: {
  9721. height: math.unit(2.4, "meters"),
  9722. weight: math.unit(70, "kg"),
  9723. name: "Side",
  9724. image: {
  9725. source: "./media/characters/nyanuxk/side.svg",
  9726. extra: 1190 / 1132,
  9727. bottom: 0.007
  9728. }
  9729. },
  9730. back: {
  9731. height: math.unit(2.4, "meters"),
  9732. weight: math.unit(70, "kg"),
  9733. name: "Back",
  9734. image: {
  9735. source: "./media/characters/nyanuxk/back.svg",
  9736. extra: 1200 / 1141,
  9737. bottom: 0.015
  9738. }
  9739. },
  9740. foot: {
  9741. height: math.unit(0.52, "meters"),
  9742. name: "Foot",
  9743. image: {
  9744. source: "./media/characters/nyanuxk/foot.svg"
  9745. }
  9746. },
  9747. },
  9748. [
  9749. {
  9750. name: "Micro",
  9751. height: math.unit(2, "cm")
  9752. },
  9753. {
  9754. name: "Normal",
  9755. height: math.unit(2.4, "meters"),
  9756. default: true
  9757. },
  9758. {
  9759. name: "Smaller Macro",
  9760. height: math.unit(120, "meters")
  9761. },
  9762. {
  9763. name: "Bigger Macro",
  9764. height: math.unit(1.2, "km")
  9765. },
  9766. {
  9767. name: "Megamacro",
  9768. height: math.unit(15, "kilometers")
  9769. },
  9770. {
  9771. name: "Gigamacro",
  9772. height: math.unit(2000, "km")
  9773. },
  9774. {
  9775. name: "Teramacro",
  9776. height: math.unit(500000, "km")
  9777. },
  9778. ]
  9779. ))
  9780. characterMakers.push(() => makeCharacter(
  9781. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9782. {
  9783. side: {
  9784. height: math.unit(6, "feet"),
  9785. name: "Side",
  9786. image: {
  9787. source: "./media/characters/ailbhe/side.svg",
  9788. extra: 757 / 464,
  9789. bottom: 0.041
  9790. }
  9791. },
  9792. },
  9793. [
  9794. {
  9795. name: "Normal",
  9796. height: math.unit(1.07, "meters"),
  9797. default: true
  9798. },
  9799. ]
  9800. ))
  9801. characterMakers.push(() => makeCharacter(
  9802. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9803. {
  9804. front: {
  9805. height: math.unit(6, "feet"),
  9806. weight: math.unit(120, "kg"),
  9807. name: "Front",
  9808. image: {
  9809. source: "./media/characters/zevulfius/front.svg",
  9810. extra: 965 / 903
  9811. }
  9812. },
  9813. side: {
  9814. height: math.unit(6, "feet"),
  9815. weight: math.unit(120, "kg"),
  9816. name: "Side",
  9817. image: {
  9818. source: "./media/characters/zevulfius/side.svg",
  9819. extra: 939 / 900
  9820. }
  9821. },
  9822. back: {
  9823. height: math.unit(6, "feet"),
  9824. weight: math.unit(120, "kg"),
  9825. name: "Back",
  9826. image: {
  9827. source: "./media/characters/zevulfius/back.svg",
  9828. extra: 918 / 854,
  9829. bottom: 0.005
  9830. }
  9831. },
  9832. foot: {
  9833. height: math.unit(6 / 3.72, "feet"),
  9834. name: "Foot",
  9835. image: {
  9836. source: "./media/characters/zevulfius/foot.svg"
  9837. }
  9838. },
  9839. },
  9840. [
  9841. {
  9842. name: "Macro",
  9843. height: math.unit(750, "meters")
  9844. },
  9845. {
  9846. name: "Megamacro",
  9847. height: math.unit(20, "km"),
  9848. default: true
  9849. },
  9850. {
  9851. name: "Gigamacro",
  9852. height: math.unit(2000, "km")
  9853. },
  9854. {
  9855. name: "Teramacro",
  9856. height: math.unit(250000, "km")
  9857. },
  9858. ]
  9859. ))
  9860. characterMakers.push(() => makeCharacter(
  9861. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9862. {
  9863. front: {
  9864. height: math.unit(100, "feet"),
  9865. weight: math.unit(350, "kg"),
  9866. name: "Front",
  9867. image: {
  9868. source: "./media/characters/rikes/front.svg",
  9869. extra: 1565 / 1483,
  9870. bottom: 0.017
  9871. }
  9872. },
  9873. },
  9874. [
  9875. {
  9876. name: "Macro",
  9877. height: math.unit(100, "feet"),
  9878. default: true
  9879. },
  9880. ]
  9881. ))
  9882. characterMakers.push(() => makeCharacter(
  9883. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9884. {
  9885. anthro: {
  9886. height: math.unit(8, "feet"),
  9887. weight: math.unit(120, "kg"),
  9888. name: "Anthro",
  9889. image: {
  9890. source: "./media/characters/adam-silver-mane/anthro.svg",
  9891. extra: 5743 / 5339,
  9892. bottom: 0.07
  9893. }
  9894. },
  9895. taur: {
  9896. height: math.unit(16, "feet"),
  9897. weight: math.unit(1500, "kg"),
  9898. name: "Taur",
  9899. image: {
  9900. source: "./media/characters/adam-silver-mane/taur.svg",
  9901. extra: 1713 / 1571,
  9902. bottom: 0.01
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Normal",
  9909. height: math.unit(8, "feet")
  9910. },
  9911. {
  9912. name: "Minimacro",
  9913. height: math.unit(80, "feet")
  9914. },
  9915. {
  9916. name: "Macro",
  9917. height: math.unit(800, "feet"),
  9918. default: true
  9919. },
  9920. {
  9921. name: "Megamacro",
  9922. height: math.unit(8000, "feet")
  9923. },
  9924. {
  9925. name: "Gigamacro",
  9926. height: math.unit(800, "miles")
  9927. },
  9928. {
  9929. name: "Teramacro",
  9930. height: math.unit(80000, "miles")
  9931. },
  9932. {
  9933. name: "Celestial",
  9934. height: math.unit(8e6, "miles")
  9935. },
  9936. {
  9937. name: "Star Dragon",
  9938. height: math.unit(800000, "parsecs")
  9939. },
  9940. {
  9941. name: "Godly",
  9942. height: math.unit(800, "teraparsecs")
  9943. },
  9944. ]
  9945. ))
  9946. characterMakers.push(() => makeCharacter(
  9947. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9948. {
  9949. front: {
  9950. height: math.unit(6, "feet"),
  9951. weight: math.unit(150, "lb"),
  9952. name: "Front",
  9953. image: {
  9954. source: "./media/characters/ky'owin/front.svg",
  9955. extra: 3888 / 3068,
  9956. bottom: 0.015
  9957. }
  9958. },
  9959. },
  9960. [
  9961. {
  9962. name: "Normal",
  9963. height: math.unit(6 + 8 / 12, "feet")
  9964. },
  9965. {
  9966. name: "Large",
  9967. height: math.unit(68, "feet")
  9968. },
  9969. {
  9970. name: "Macro",
  9971. height: math.unit(132, "feet")
  9972. },
  9973. {
  9974. name: "Macro+",
  9975. height: math.unit(340, "feet")
  9976. },
  9977. {
  9978. name: "Macro++",
  9979. height: math.unit(680, "feet"),
  9980. default: true
  9981. },
  9982. {
  9983. name: "Megamacro",
  9984. height: math.unit(1, "mile")
  9985. },
  9986. {
  9987. name: "Megamacro+",
  9988. height: math.unit(10, "miles")
  9989. },
  9990. ]
  9991. ))
  9992. characterMakers.push(() => makeCharacter(
  9993. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9994. {
  9995. front: {
  9996. height: math.unit(4, "feet"),
  9997. weight: math.unit(50, "lb"),
  9998. name: "Front",
  9999. image: {
  10000. source: "./media/characters/mal/front.svg",
  10001. extra: 785 / 724,
  10002. bottom: 0.07
  10003. }
  10004. },
  10005. },
  10006. [
  10007. {
  10008. name: "Micro",
  10009. height: math.unit(4, "inches")
  10010. },
  10011. {
  10012. name: "Normal",
  10013. height: math.unit(4, "feet"),
  10014. default: true
  10015. },
  10016. {
  10017. name: "Macro",
  10018. height: math.unit(200, "feet")
  10019. },
  10020. ]
  10021. ))
  10022. characterMakers.push(() => makeCharacter(
  10023. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10024. {
  10025. front: {
  10026. height: math.unit(6, "feet"),
  10027. weight: math.unit(150, "lb"),
  10028. name: "Front",
  10029. image: {
  10030. source: "./media/characters/jordan-deware/front.svg",
  10031. extra: 1191 / 1012
  10032. }
  10033. },
  10034. },
  10035. [
  10036. {
  10037. name: "Nano",
  10038. height: math.unit(0.01, "mm")
  10039. },
  10040. {
  10041. name: "Minimicro",
  10042. height: math.unit(1, "mm")
  10043. },
  10044. {
  10045. name: "Micro",
  10046. height: math.unit(0.5, "inches")
  10047. },
  10048. {
  10049. name: "Normal",
  10050. height: math.unit(4, "feet"),
  10051. default: true
  10052. },
  10053. {
  10054. name: "Minimacro",
  10055. height: math.unit(40, "meters")
  10056. },
  10057. {
  10058. name: "Small Macro",
  10059. height: math.unit(400, "meters")
  10060. },
  10061. {
  10062. name: "Macro",
  10063. height: math.unit(4, "miles")
  10064. },
  10065. {
  10066. name: "Megamacro",
  10067. height: math.unit(40, "miles")
  10068. },
  10069. {
  10070. name: "Megamacro+",
  10071. height: math.unit(400, "miles")
  10072. },
  10073. {
  10074. name: "Gigamacro",
  10075. height: math.unit(400000, "miles")
  10076. },
  10077. ]
  10078. ))
  10079. characterMakers.push(() => makeCharacter(
  10080. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10081. {
  10082. side: {
  10083. height: math.unit(6, "feet"),
  10084. weight: math.unit(150, "lb"),
  10085. name: "Side",
  10086. image: {
  10087. source: "./media/characters/kimiko/side.svg",
  10088. extra: 600 / 358
  10089. }
  10090. },
  10091. },
  10092. [
  10093. {
  10094. name: "Normal",
  10095. height: math.unit(15, "feet"),
  10096. default: true
  10097. },
  10098. {
  10099. name: "Macro",
  10100. height: math.unit(220, "feet")
  10101. },
  10102. {
  10103. name: "Macro+",
  10104. height: math.unit(1450, "feet")
  10105. },
  10106. {
  10107. name: "Megamacro",
  10108. height: math.unit(11500, "feet")
  10109. },
  10110. {
  10111. name: "Gigamacro",
  10112. height: math.unit(9500, "miles")
  10113. },
  10114. {
  10115. name: "Teramacro",
  10116. height: math.unit(2208005005, "miles")
  10117. },
  10118. {
  10119. name: "Examacro",
  10120. height: math.unit(2750, "parsecs")
  10121. },
  10122. {
  10123. name: "Zettamacro",
  10124. height: math.unit(101500, "parsecs")
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(6, "feet"),
  10133. weight: math.unit(70, "kg"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/andrew-sleepy/front.svg"
  10137. }
  10138. },
  10139. side: {
  10140. height: math.unit(6, "feet"),
  10141. weight: math.unit(70, "kg"),
  10142. name: "Side",
  10143. image: {
  10144. source: "./media/characters/andrew-sleepy/side.svg"
  10145. }
  10146. },
  10147. },
  10148. [
  10149. {
  10150. name: "Micro",
  10151. height: math.unit(1, "mm"),
  10152. default: true
  10153. },
  10154. ]
  10155. ))
  10156. characterMakers.push(() => makeCharacter(
  10157. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10158. {
  10159. front: {
  10160. height: math.unit(6, "feet"),
  10161. weight: math.unit(150, "lb"),
  10162. name: "Front",
  10163. image: {
  10164. source: "./media/characters/judio/front.svg",
  10165. extra: 1258 / 1110
  10166. }
  10167. },
  10168. },
  10169. [
  10170. {
  10171. name: "Normal",
  10172. height: math.unit(5 + 6 / 12, "feet")
  10173. },
  10174. {
  10175. name: "Macro",
  10176. height: math.unit(1000, "feet"),
  10177. default: true
  10178. },
  10179. {
  10180. name: "Megamacro",
  10181. height: math.unit(10, "miles")
  10182. },
  10183. ]
  10184. ))
  10185. characterMakers.push(() => makeCharacter(
  10186. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10187. {
  10188. front: {
  10189. height: math.unit(6, "feet"),
  10190. weight: math.unit(68, "kg"),
  10191. name: "Front",
  10192. image: {
  10193. source: "./media/characters/nomaxice/front.svg",
  10194. extra: 1498 / 1073,
  10195. bottom: 0.075
  10196. }
  10197. },
  10198. foot: {
  10199. height: math.unit(1.1, "feet"),
  10200. name: "Foot",
  10201. image: {
  10202. source: "./media/characters/nomaxice/foot.svg"
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Micro",
  10209. height: math.unit(8, "cm")
  10210. },
  10211. {
  10212. name: "Norm",
  10213. height: math.unit(1.82, "m")
  10214. },
  10215. {
  10216. name: "Norm+",
  10217. height: math.unit(8.8, "feet")
  10218. },
  10219. {
  10220. name: "Big",
  10221. height: math.unit(8, "meters"),
  10222. default: true
  10223. },
  10224. {
  10225. name: "Macro",
  10226. height: math.unit(18, "meters")
  10227. },
  10228. {
  10229. name: "Macro+",
  10230. height: math.unit(88, "meters")
  10231. },
  10232. ]
  10233. ))
  10234. characterMakers.push(() => makeCharacter(
  10235. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10236. {
  10237. front: {
  10238. height: math.unit(12, "feet"),
  10239. weight: math.unit(1.5, "tons"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/dydros/front.svg",
  10243. extra: 863 / 800,
  10244. bottom: 0.015
  10245. }
  10246. },
  10247. back: {
  10248. height: math.unit(12, "feet"),
  10249. weight: math.unit(1.5, "tons"),
  10250. name: "Back",
  10251. image: {
  10252. source: "./media/characters/dydros/back.svg",
  10253. extra: 900 / 843,
  10254. bottom: 0.005
  10255. }
  10256. },
  10257. },
  10258. [
  10259. {
  10260. name: "Normal",
  10261. height: math.unit(12, "feet"),
  10262. default: true
  10263. },
  10264. ]
  10265. ))
  10266. characterMakers.push(() => makeCharacter(
  10267. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10268. {
  10269. front: {
  10270. height: math.unit(6, "feet"),
  10271. weight: math.unit(100, "kg"),
  10272. name: "Front",
  10273. image: {
  10274. source: "./media/characters/riggi/front.svg",
  10275. extra: 5787 / 5303
  10276. }
  10277. },
  10278. hyper: {
  10279. height: math.unit(6 * 5 / 3, "feet"),
  10280. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10281. name: "Hyper",
  10282. image: {
  10283. source: "./media/characters/riggi/hyper.svg",
  10284. extra: 3595 / 3485
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Small Macro",
  10291. height: math.unit(50, "feet")
  10292. },
  10293. {
  10294. name: "Default",
  10295. height: math.unit(200, "feet"),
  10296. default: true
  10297. },
  10298. {
  10299. name: "Loom",
  10300. height: math.unit(10000, "feet")
  10301. },
  10302. {
  10303. name: "Cruising Altitude",
  10304. height: math.unit(30000, "feet")
  10305. },
  10306. {
  10307. name: "Megamacro",
  10308. height: math.unit(100, "miles")
  10309. },
  10310. {
  10311. name: "Continent Sized",
  10312. height: math.unit(2800, "miles")
  10313. },
  10314. {
  10315. name: "Earth Sized",
  10316. height: math.unit(8000, "miles")
  10317. },
  10318. ]
  10319. ))
  10320. characterMakers.push(() => makeCharacter(
  10321. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10322. {
  10323. front: {
  10324. height: math.unit(6, "feet"),
  10325. weight: math.unit(250, "lb"),
  10326. name: "Front",
  10327. image: {
  10328. source: "./media/characters/alexi/front.svg",
  10329. extra: 3483 / 3291,
  10330. bottom: 0.04
  10331. }
  10332. },
  10333. back: {
  10334. height: math.unit(6, "feet"),
  10335. weight: math.unit(250, "lb"),
  10336. name: "Back",
  10337. image: {
  10338. source: "./media/characters/alexi/back.svg",
  10339. extra: 3533 / 3356,
  10340. bottom: 0.021
  10341. }
  10342. },
  10343. frontTransforming: {
  10344. height: math.unit(8.58, "feet"),
  10345. weight: math.unit(1300, "lb"),
  10346. name: "Transforming",
  10347. image: {
  10348. source: "./media/characters/alexi/front-transforming.svg",
  10349. extra: 437 / 409,
  10350. bottom: 19 / 458.66
  10351. }
  10352. },
  10353. frontTransformed: {
  10354. height: math.unit(12.5, "feet"),
  10355. weight: math.unit(4000, "lb"),
  10356. name: "Transformed",
  10357. image: {
  10358. source: "./media/characters/alexi/front-transformed.svg",
  10359. extra: 639 / 614,
  10360. bottom: 30.55 / 671
  10361. }
  10362. },
  10363. },
  10364. [
  10365. {
  10366. name: "Normal",
  10367. height: math.unit(14, "feet"),
  10368. default: true
  10369. },
  10370. {
  10371. name: "Minimacro",
  10372. height: math.unit(30, "meters")
  10373. },
  10374. {
  10375. name: "Macro",
  10376. height: math.unit(500, "meters")
  10377. },
  10378. {
  10379. name: "Megamacro",
  10380. height: math.unit(9000, "km")
  10381. },
  10382. {
  10383. name: "Teramacro",
  10384. height: math.unit(384000, "km")
  10385. },
  10386. ]
  10387. ))
  10388. characterMakers.push(() => makeCharacter(
  10389. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10390. {
  10391. front: {
  10392. height: math.unit(6, "feet"),
  10393. weight: math.unit(150, "lb"),
  10394. name: "Front",
  10395. image: {
  10396. source: "./media/characters/kayroo/front.svg",
  10397. extra: 1153 / 1038,
  10398. bottom: 0.06
  10399. }
  10400. },
  10401. foot: {
  10402. height: math.unit(6, "feet"),
  10403. weight: math.unit(150, "lb"),
  10404. name: "Foot",
  10405. image: {
  10406. source: "./media/characters/kayroo/foot.svg"
  10407. }
  10408. },
  10409. },
  10410. [
  10411. {
  10412. name: "Normal",
  10413. height: math.unit(8, "feet"),
  10414. default: true
  10415. },
  10416. {
  10417. name: "Minimacro",
  10418. height: math.unit(250, "feet")
  10419. },
  10420. {
  10421. name: "Macro",
  10422. height: math.unit(2800, "feet")
  10423. },
  10424. {
  10425. name: "Megamacro",
  10426. height: math.unit(5200, "feet")
  10427. },
  10428. {
  10429. name: "Gigamacro",
  10430. height: math.unit(27000, "feet")
  10431. },
  10432. {
  10433. name: "Omega",
  10434. height: math.unit(45000, "feet")
  10435. },
  10436. ]
  10437. ))
  10438. characterMakers.push(() => makeCharacter(
  10439. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10440. {
  10441. front: {
  10442. height: math.unit(18, "feet"),
  10443. weight: math.unit(5800, "lb"),
  10444. name: "Front",
  10445. image: {
  10446. source: "./media/characters/rhys/front.svg",
  10447. extra: 3386 / 3090,
  10448. bottom: 0.07
  10449. }
  10450. },
  10451. },
  10452. [
  10453. {
  10454. name: "Normal",
  10455. height: math.unit(18, "feet"),
  10456. default: true
  10457. },
  10458. {
  10459. name: "Working Size",
  10460. height: math.unit(200, "feet")
  10461. },
  10462. {
  10463. name: "Demolition Size",
  10464. height: math.unit(2000, "feet")
  10465. },
  10466. {
  10467. name: "Maximum Licensed Size",
  10468. height: math.unit(5, "miles")
  10469. },
  10470. {
  10471. name: "Maximum Observed Size",
  10472. height: math.unit(10, "yottameters")
  10473. },
  10474. ]
  10475. ))
  10476. characterMakers.push(() => makeCharacter(
  10477. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10478. {
  10479. front: {
  10480. height: math.unit(6, "feet"),
  10481. weight: math.unit(250, "lb"),
  10482. name: "Front",
  10483. image: {
  10484. source: "./media/characters/toto/front.svg",
  10485. extra: 527 / 479,
  10486. bottom: 0.05
  10487. }
  10488. },
  10489. },
  10490. [
  10491. {
  10492. name: "Micro",
  10493. height: math.unit(3, "feet")
  10494. },
  10495. {
  10496. name: "Normal",
  10497. height: math.unit(10, "feet")
  10498. },
  10499. {
  10500. name: "Macro",
  10501. height: math.unit(150, "feet"),
  10502. default: true
  10503. },
  10504. {
  10505. name: "Megamacro",
  10506. height: math.unit(1200, "feet")
  10507. },
  10508. ]
  10509. ))
  10510. characterMakers.push(() => makeCharacter(
  10511. { name: "King", species: ["lion"], tags: ["anthro"] },
  10512. {
  10513. back: {
  10514. height: math.unit(6, "feet"),
  10515. weight: math.unit(150, "lb"),
  10516. name: "Back",
  10517. image: {
  10518. source: "./media/characters/king/back.svg"
  10519. }
  10520. },
  10521. },
  10522. [
  10523. {
  10524. name: "Micro",
  10525. height: math.unit(2, "inches")
  10526. },
  10527. {
  10528. name: "Normal",
  10529. height: math.unit(8, "feet")
  10530. },
  10531. {
  10532. name: "Macro",
  10533. height: math.unit(200, "feet"),
  10534. default: true
  10535. },
  10536. {
  10537. name: "Megamacro",
  10538. height: math.unit(50, "miles")
  10539. },
  10540. ]
  10541. ))
  10542. characterMakers.push(() => makeCharacter(
  10543. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10544. {
  10545. anthro: {
  10546. height: math.unit(6 + 5 / 12, "feet"),
  10547. weight: math.unit(280, "lb"),
  10548. name: "Anthro",
  10549. image: {
  10550. source: "./media/characters/cordite/anthro.svg",
  10551. extra: 1986 / 1905,
  10552. bottom: 0.025
  10553. }
  10554. },
  10555. feral: {
  10556. height: math.unit(2, "feet"),
  10557. weight: math.unit(90, "lb"),
  10558. name: "Feral",
  10559. image: {
  10560. source: "./media/characters/cordite/feral.svg",
  10561. extra: 1260 / 755,
  10562. bottom: 0.05
  10563. }
  10564. },
  10565. },
  10566. [
  10567. {
  10568. name: "Normal",
  10569. height: math.unit(6 + 5 / 12, "feet"),
  10570. default: true
  10571. },
  10572. ]
  10573. ))
  10574. characterMakers.push(() => makeCharacter(
  10575. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10576. {
  10577. front: {
  10578. height: math.unit(6, "feet"),
  10579. weight: math.unit(150, "lb"),
  10580. name: "Front",
  10581. image: {
  10582. source: "./media/characters/pianostrong/front.svg",
  10583. extra: 6577 / 6254,
  10584. bottom: 0.02
  10585. }
  10586. },
  10587. side: {
  10588. height: math.unit(6, "feet"),
  10589. weight: math.unit(150, "lb"),
  10590. name: "Side",
  10591. image: {
  10592. source: "./media/characters/pianostrong/side.svg",
  10593. extra: 6106 / 5730
  10594. }
  10595. },
  10596. back: {
  10597. height: math.unit(6, "feet"),
  10598. weight: math.unit(150, "lb"),
  10599. name: "Back",
  10600. image: {
  10601. source: "./media/characters/pianostrong/back.svg",
  10602. extra: 6085 / 5733,
  10603. bottom: 0.01
  10604. }
  10605. },
  10606. },
  10607. [
  10608. {
  10609. name: "Macro",
  10610. height: math.unit(100, "feet")
  10611. },
  10612. {
  10613. name: "Macro+",
  10614. height: math.unit(300, "feet"),
  10615. default: true
  10616. },
  10617. {
  10618. name: "Macro++",
  10619. height: math.unit(1000, "feet")
  10620. },
  10621. ]
  10622. ))
  10623. characterMakers.push(() => makeCharacter(
  10624. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10625. {
  10626. front: {
  10627. height: math.unit(6, "feet"),
  10628. weight: math.unit(150, "lb"),
  10629. name: "Front",
  10630. image: {
  10631. source: "./media/characters/kona/front.svg",
  10632. extra: 2960 / 2629,
  10633. bottom: 0.005
  10634. }
  10635. },
  10636. },
  10637. [
  10638. {
  10639. name: "Normal",
  10640. height: math.unit(11 + 8 / 12, "feet")
  10641. },
  10642. {
  10643. name: "Macro",
  10644. height: math.unit(850, "feet"),
  10645. default: true
  10646. },
  10647. {
  10648. name: "Macro+",
  10649. height: math.unit(1.5, "km"),
  10650. default: true
  10651. },
  10652. {
  10653. name: "Megamacro",
  10654. height: math.unit(80, "miles")
  10655. },
  10656. {
  10657. name: "Gigamacro",
  10658. height: math.unit(3500, "miles")
  10659. },
  10660. ]
  10661. ))
  10662. characterMakers.push(() => makeCharacter(
  10663. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10664. {
  10665. side: {
  10666. height: math.unit(1.9, "meters"),
  10667. weight: math.unit(326, "kg"),
  10668. name: "Side",
  10669. image: {
  10670. source: "./media/characters/levi/side.svg",
  10671. extra: 1704 / 1334,
  10672. bottom: 0.02
  10673. }
  10674. },
  10675. },
  10676. [
  10677. {
  10678. name: "Normal",
  10679. height: math.unit(1.9, "meters"),
  10680. default: true
  10681. },
  10682. {
  10683. name: "Macro",
  10684. height: math.unit(20, "meters")
  10685. },
  10686. {
  10687. name: "Macro+",
  10688. height: math.unit(200, "meters")
  10689. },
  10690. {
  10691. name: "Megamacro",
  10692. height: math.unit(2, "km")
  10693. },
  10694. {
  10695. name: "Megamacro+",
  10696. height: math.unit(20, "km")
  10697. },
  10698. {
  10699. name: "Gigamacro",
  10700. height: math.unit(2500, "km")
  10701. },
  10702. {
  10703. name: "Gigamacro+",
  10704. height: math.unit(120000, "km")
  10705. },
  10706. {
  10707. name: "Teramacro",
  10708. height: math.unit(7.77e6, "km")
  10709. },
  10710. ]
  10711. ))
  10712. characterMakers.push(() => makeCharacter(
  10713. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10714. {
  10715. front: {
  10716. height: math.unit(6 + 4 / 12, "feet"),
  10717. weight: math.unit(188, "lb"),
  10718. name: "Front",
  10719. image: {
  10720. source: "./media/characters/bmc/front.svg",
  10721. extra: 1067 / 1022,
  10722. bottom: 0.047
  10723. }
  10724. },
  10725. },
  10726. [
  10727. {
  10728. name: "Human-sized",
  10729. height: math.unit(6 + 4 / 12, "feet")
  10730. },
  10731. {
  10732. name: "Small",
  10733. height: math.unit(250, "feet")
  10734. },
  10735. {
  10736. name: "Normal",
  10737. height: math.unit(1250, "feet"),
  10738. default: true
  10739. },
  10740. {
  10741. name: "Good Day",
  10742. height: math.unit(88, "miles")
  10743. },
  10744. {
  10745. name: "Largest Measured Size",
  10746. height: math.unit(11.2e6, "lightyears")
  10747. },
  10748. ]
  10749. ))
  10750. characterMakers.push(() => makeCharacter(
  10751. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10752. {
  10753. front: {
  10754. height: math.unit(20, "feet"),
  10755. weight: math.unit(2016, "kg"),
  10756. name: "Front",
  10757. image: {
  10758. source: "./media/characters/sven-the-kaiju/front.svg",
  10759. extra: 1479 / 1449,
  10760. bottom: 0.05
  10761. }
  10762. },
  10763. },
  10764. [
  10765. {
  10766. name: "Fairy",
  10767. height: math.unit(6, "inches")
  10768. },
  10769. {
  10770. name: "Normal",
  10771. height: math.unit(20, "feet"),
  10772. default: true
  10773. },
  10774. {
  10775. name: "Rampage",
  10776. height: math.unit(200, "feet")
  10777. },
  10778. {
  10779. name: "Archfey Forest Guardian",
  10780. height: math.unit(1, "mile")
  10781. },
  10782. ]
  10783. ))
  10784. characterMakers.push(() => makeCharacter(
  10785. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10786. {
  10787. front: {
  10788. height: math.unit(4, "meters"),
  10789. weight: math.unit(2, "tons"),
  10790. name: "Front",
  10791. image: {
  10792. source: "./media/characters/marik/front.svg",
  10793. extra: 1057 / 1003,
  10794. bottom: 0.08
  10795. }
  10796. },
  10797. },
  10798. [
  10799. {
  10800. name: "Normal",
  10801. height: math.unit(4, "meters"),
  10802. default: true
  10803. },
  10804. {
  10805. name: "Macro",
  10806. height: math.unit(20, "meters")
  10807. },
  10808. {
  10809. name: "Megamacro",
  10810. height: math.unit(50, "km")
  10811. },
  10812. {
  10813. name: "Gigamacro",
  10814. height: math.unit(100, "km")
  10815. },
  10816. {
  10817. name: "Alpha Macro",
  10818. height: math.unit(7.88e7, "yottameters")
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10824. {
  10825. front: {
  10826. height: math.unit(6, "feet"),
  10827. weight: math.unit(110, "lb"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/mel/front.svg",
  10831. extra: 736 / 617,
  10832. bottom: 0.017
  10833. }
  10834. },
  10835. },
  10836. [
  10837. {
  10838. name: "Pico",
  10839. height: math.unit(3, "pm")
  10840. },
  10841. {
  10842. name: "Nano",
  10843. height: math.unit(3, "nm")
  10844. },
  10845. {
  10846. name: "Micro",
  10847. height: math.unit(0.3, "mm"),
  10848. default: true
  10849. },
  10850. {
  10851. name: "Micro+",
  10852. height: math.unit(3, "mm")
  10853. },
  10854. {
  10855. name: "Normal",
  10856. height: math.unit(5 + 10.5 / 12, "feet")
  10857. },
  10858. ]
  10859. ))
  10860. characterMakers.push(() => makeCharacter(
  10861. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10862. {
  10863. kaiju: {
  10864. height: math.unit(1.75, "meters"),
  10865. weight: math.unit(55, "kg"),
  10866. name: "Kaiju",
  10867. image: {
  10868. source: "./media/characters/lykonous/kaiju.svg",
  10869. extra: 1055 / 946,
  10870. bottom: 0.135
  10871. }
  10872. },
  10873. },
  10874. [
  10875. {
  10876. name: "Normal",
  10877. height: math.unit(2.5, "meters"),
  10878. default: true
  10879. },
  10880. {
  10881. name: "Kaiju Dragon",
  10882. height: math.unit(60, "meters")
  10883. },
  10884. {
  10885. name: "Mega Kaiju",
  10886. height: math.unit(120, "km")
  10887. },
  10888. {
  10889. name: "Giga Kaiju",
  10890. height: math.unit(200, "megameters")
  10891. },
  10892. {
  10893. name: "Terra Kaiju",
  10894. height: math.unit(400, "gigameters")
  10895. },
  10896. {
  10897. name: "Kaiju Dragon God",
  10898. height: math.unit(13000, "exaparsecs")
  10899. },
  10900. ]
  10901. ))
  10902. characterMakers.push(() => makeCharacter(
  10903. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10904. {
  10905. front: {
  10906. height: math.unit(6, "feet"),
  10907. weight: math.unit(150, "lb"),
  10908. name: "Front",
  10909. image: {
  10910. source: "./media/characters/blü/front.svg",
  10911. extra: 1883 / 1564,
  10912. bottom: 0.031
  10913. }
  10914. },
  10915. },
  10916. [
  10917. {
  10918. name: "Normal",
  10919. height: math.unit(13, "feet"),
  10920. default: true
  10921. },
  10922. {
  10923. name: "Big Boi",
  10924. height: math.unit(150, "meters")
  10925. },
  10926. {
  10927. name: "Mini Stomper",
  10928. height: math.unit(300, "meters")
  10929. },
  10930. {
  10931. name: "Macro",
  10932. height: math.unit(1000, "meters")
  10933. },
  10934. {
  10935. name: "Megamacro",
  10936. height: math.unit(11000, "meters")
  10937. },
  10938. {
  10939. name: "Gigamacro",
  10940. height: math.unit(11000, "km")
  10941. },
  10942. {
  10943. name: "Teramacro",
  10944. height: math.unit(420000, "km")
  10945. },
  10946. {
  10947. name: "Examacro",
  10948. height: math.unit(120, "parsecs")
  10949. },
  10950. {
  10951. name: "God Tho",
  10952. height: math.unit(98000000000, "parsecs")
  10953. },
  10954. ]
  10955. ))
  10956. characterMakers.push(() => makeCharacter(
  10957. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10958. {
  10959. taurFront: {
  10960. height: math.unit(6, "feet"),
  10961. weight: math.unit(200, "lb"),
  10962. name: "Taur (Front)",
  10963. image: {
  10964. source: "./media/characters/scales/taur-front.svg",
  10965. extra: 1,
  10966. bottom: 0.05
  10967. }
  10968. },
  10969. taurBack: {
  10970. height: math.unit(6, "feet"),
  10971. weight: math.unit(200, "lb"),
  10972. name: "Taur (Back)",
  10973. image: {
  10974. source: "./media/characters/scales/taur-back.svg",
  10975. extra: 1,
  10976. bottom: 0.08
  10977. }
  10978. },
  10979. anthro: {
  10980. height: math.unit(6 * 7 / 12, "feet"),
  10981. weight: math.unit(100, "lb"),
  10982. name: "Anthro",
  10983. image: {
  10984. source: "./media/characters/scales/anthro.svg",
  10985. extra: 1,
  10986. bottom: 0.06
  10987. }
  10988. },
  10989. },
  10990. [
  10991. {
  10992. name: "Normal",
  10993. height: math.unit(12, "feet"),
  10994. default: true
  10995. },
  10996. ]
  10997. ))
  10998. characterMakers.push(() => makeCharacter(
  10999. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11000. {
  11001. front: {
  11002. height: math.unit(6, "feet"),
  11003. weight: math.unit(150, "lb"),
  11004. name: "Front",
  11005. image: {
  11006. source: "./media/characters/koragos/front.svg",
  11007. extra: 841 / 794,
  11008. bottom: 0.035
  11009. }
  11010. },
  11011. back: {
  11012. height: math.unit(6, "feet"),
  11013. weight: math.unit(150, "lb"),
  11014. name: "Back",
  11015. image: {
  11016. source: "./media/characters/koragos/back.svg",
  11017. extra: 841 / 810,
  11018. bottom: 0.022
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Normal",
  11025. height: math.unit(6 + 11 / 12, "feet"),
  11026. default: true
  11027. },
  11028. {
  11029. name: "Macro",
  11030. height: math.unit(490, "feet")
  11031. },
  11032. {
  11033. name: "Megamacro",
  11034. height: math.unit(10, "miles")
  11035. },
  11036. {
  11037. name: "Gigamacro",
  11038. height: math.unit(50, "miles")
  11039. },
  11040. ]
  11041. ))
  11042. characterMakers.push(() => makeCharacter(
  11043. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11044. {
  11045. front: {
  11046. height: math.unit(6, "feet"),
  11047. weight: math.unit(250, "lb"),
  11048. name: "Front",
  11049. image: {
  11050. source: "./media/characters/xylrem/front.svg",
  11051. extra: 3323 / 3050,
  11052. bottom: 0.065
  11053. }
  11054. },
  11055. },
  11056. [
  11057. {
  11058. name: "Micro",
  11059. height: math.unit(4, "feet")
  11060. },
  11061. {
  11062. name: "Normal",
  11063. height: math.unit(16, "feet"),
  11064. default: true
  11065. },
  11066. {
  11067. name: "Macro",
  11068. height: math.unit(2720, "feet")
  11069. },
  11070. {
  11071. name: "Megamacro",
  11072. height: math.unit(25000, "miles")
  11073. },
  11074. ]
  11075. ))
  11076. characterMakers.push(() => makeCharacter(
  11077. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11078. {
  11079. front: {
  11080. height: math.unit(8, "feet"),
  11081. weight: math.unit(250, "kg"),
  11082. name: "Front",
  11083. image: {
  11084. source: "./media/characters/ikideru/front.svg",
  11085. extra: 930 / 870,
  11086. bottom: 0.087
  11087. }
  11088. },
  11089. back: {
  11090. height: math.unit(8, "feet"),
  11091. weight: math.unit(250, "kg"),
  11092. name: "Back",
  11093. image: {
  11094. source: "./media/characters/ikideru/back.svg",
  11095. extra: 919 / 852,
  11096. bottom: 0.055
  11097. }
  11098. },
  11099. },
  11100. [
  11101. {
  11102. name: "Rare",
  11103. height: math.unit(8, "feet"),
  11104. default: true
  11105. },
  11106. {
  11107. name: "Playful Loom",
  11108. height: math.unit(80, "feet")
  11109. },
  11110. {
  11111. name: "City Leaner",
  11112. height: math.unit(230, "feet")
  11113. },
  11114. {
  11115. name: "Megamacro",
  11116. height: math.unit(2500, "feet")
  11117. },
  11118. {
  11119. name: "Gigamacro",
  11120. height: math.unit(26400, "feet")
  11121. },
  11122. {
  11123. name: "Tectonic Shifter",
  11124. height: math.unit(1.7, "megameters")
  11125. },
  11126. {
  11127. name: "Planet Carer",
  11128. height: math.unit(21, "megameters")
  11129. },
  11130. {
  11131. name: "God",
  11132. height: math.unit(11157.22, "parsecs")
  11133. },
  11134. ]
  11135. ))
  11136. characterMakers.push(() => makeCharacter(
  11137. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11138. {
  11139. front: {
  11140. height: math.unit(6, "feet"),
  11141. weight: math.unit(120, "lb"),
  11142. name: "Front",
  11143. image: {
  11144. source: "./media/characters/neo/front.svg"
  11145. }
  11146. },
  11147. },
  11148. [
  11149. {
  11150. name: "Micro",
  11151. height: math.unit(2, "inches"),
  11152. default: true
  11153. },
  11154. {
  11155. name: "Human Size",
  11156. height: math.unit(5 + 8 / 12, "feet")
  11157. },
  11158. ]
  11159. ))
  11160. characterMakers.push(() => makeCharacter(
  11161. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11162. {
  11163. front: {
  11164. height: math.unit(13 + 10 / 12, "feet"),
  11165. weight: math.unit(5320, "lb"),
  11166. name: "Front",
  11167. image: {
  11168. source: "./media/characters/chauncey-chantz/front.svg",
  11169. extra: 1587 / 1435,
  11170. bottom: 0.02
  11171. }
  11172. },
  11173. },
  11174. [
  11175. {
  11176. name: "Normal",
  11177. height: math.unit(13 + 10 / 12, "feet"),
  11178. default: true
  11179. },
  11180. {
  11181. name: "Macro",
  11182. height: math.unit(45, "feet")
  11183. },
  11184. {
  11185. name: "Megamacro",
  11186. height: math.unit(250, "miles")
  11187. },
  11188. {
  11189. name: "Planetary",
  11190. height: math.unit(10000, "miles")
  11191. },
  11192. {
  11193. name: "Galactic",
  11194. height: math.unit(40000, "parsecs")
  11195. },
  11196. {
  11197. name: "Universal",
  11198. height: math.unit(1, "yottameter")
  11199. },
  11200. ]
  11201. ))
  11202. characterMakers.push(() => makeCharacter(
  11203. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11204. {
  11205. front: {
  11206. height: math.unit(6, "feet"),
  11207. weight: math.unit(150, "lb"),
  11208. name: "Front",
  11209. image: {
  11210. source: "./media/characters/epifox/front.svg",
  11211. extra: 1,
  11212. bottom: 0.075
  11213. }
  11214. },
  11215. },
  11216. [
  11217. {
  11218. name: "Micro",
  11219. height: math.unit(6, "inches")
  11220. },
  11221. {
  11222. name: "Normal",
  11223. height: math.unit(12, "feet"),
  11224. default: true
  11225. },
  11226. {
  11227. name: "Macro",
  11228. height: math.unit(3810, "feet")
  11229. },
  11230. {
  11231. name: "Megamacro",
  11232. height: math.unit(500, "miles")
  11233. },
  11234. ]
  11235. ))
  11236. characterMakers.push(() => makeCharacter(
  11237. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11238. {
  11239. front: {
  11240. height: math.unit(1.8796, "m"),
  11241. weight: math.unit(230, "lb"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/colin-t/front.svg",
  11245. extra: 1272 / 1193,
  11246. bottom: 0.07
  11247. }
  11248. },
  11249. },
  11250. [
  11251. {
  11252. name: "Micro",
  11253. height: math.unit(0.571, "meters")
  11254. },
  11255. {
  11256. name: "Normal",
  11257. height: math.unit(1.8796, "meters"),
  11258. default: true
  11259. },
  11260. {
  11261. name: "Tall",
  11262. height: math.unit(4, "meters")
  11263. },
  11264. {
  11265. name: "Macro",
  11266. height: math.unit(67.241, "meters")
  11267. },
  11268. {
  11269. name: "Megamacro",
  11270. height: math.unit(371.856, "meters")
  11271. },
  11272. {
  11273. name: "Planetary",
  11274. height: math.unit(12631.5689, "km")
  11275. },
  11276. ]
  11277. ))
  11278. characterMakers.push(() => makeCharacter(
  11279. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11280. {
  11281. front: {
  11282. height: math.unit(1.85, "meters"),
  11283. weight: math.unit(80, "kg"),
  11284. name: "Front",
  11285. image: {
  11286. source: "./media/characters/matvei/front.svg",
  11287. extra: 614 / 594,
  11288. bottom: 0.01
  11289. }
  11290. },
  11291. },
  11292. [
  11293. {
  11294. name: "Normal",
  11295. height: math.unit(1.85, "meters"),
  11296. default: true
  11297. },
  11298. ]
  11299. ))
  11300. characterMakers.push(() => makeCharacter(
  11301. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11302. {
  11303. front: {
  11304. height: math.unit(5 + 9 / 12, "feet"),
  11305. weight: math.unit(70, "lb"),
  11306. name: "Front",
  11307. image: {
  11308. source: "./media/characters/quincy/front.svg",
  11309. extra: 3041 / 2751
  11310. }
  11311. },
  11312. back: {
  11313. height: math.unit(5 + 9 / 12, "feet"),
  11314. weight: math.unit(70, "lb"),
  11315. name: "Back",
  11316. image: {
  11317. source: "./media/characters/quincy/back.svg",
  11318. extra: 3041 / 2751
  11319. }
  11320. },
  11321. flying: {
  11322. height: math.unit(5 + 4 / 12, "feet"),
  11323. weight: math.unit(70, "lb"),
  11324. name: "Flying",
  11325. image: {
  11326. source: "./media/characters/quincy/flying.svg",
  11327. extra: 1044 / 930
  11328. }
  11329. },
  11330. },
  11331. [
  11332. {
  11333. name: "Micro",
  11334. height: math.unit(3, "cm")
  11335. },
  11336. {
  11337. name: "Normal",
  11338. height: math.unit(5 + 9 / 12, "feet")
  11339. },
  11340. {
  11341. name: "Macro",
  11342. height: math.unit(200, "meters"),
  11343. default: true
  11344. },
  11345. {
  11346. name: "Megamacro",
  11347. height: math.unit(1000, "meters")
  11348. },
  11349. ]
  11350. ))
  11351. characterMakers.push(() => makeCharacter(
  11352. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11353. {
  11354. front: {
  11355. height: math.unit(4 + 7 / 12, "feet"),
  11356. weight: math.unit(50, "lb"),
  11357. name: "Front",
  11358. image: {
  11359. source: "./media/characters/vanrel/front.svg",
  11360. extra: 1,
  11361. bottom: 0.02
  11362. }
  11363. },
  11364. frontAlt: {
  11365. height: math.unit(4 + 7 / 12, "feet"),
  11366. weight: math.unit(50, "lb"),
  11367. name: "Front-alt",
  11368. image: {
  11369. source: "./media/characters/vanrel/front-alt.svg",
  11370. extra: 1,
  11371. bottom: 15 / 1511
  11372. }
  11373. },
  11374. elemental: {
  11375. height: math.unit(3, "feet"),
  11376. weight: math.unit(50, "lb"),
  11377. name: "Elemental",
  11378. image: {
  11379. source: "./media/characters/vanrel/elemental.svg",
  11380. extra: 192.3 / 162.8,
  11381. bottom: 1.79 / 194.17
  11382. }
  11383. },
  11384. side: {
  11385. height: math.unit(4 + 7 / 12, "feet"),
  11386. weight: math.unit(50, "lb"),
  11387. name: "Side",
  11388. image: {
  11389. source: "./media/characters/vanrel/side.svg",
  11390. extra: 1,
  11391. bottom: 0.025
  11392. }
  11393. },
  11394. tome: {
  11395. height: math.unit(1.35, "feet"),
  11396. weight: math.unit(10, "lb"),
  11397. name: "Vanrel's Tome",
  11398. rename: true,
  11399. image: {
  11400. source: "./media/characters/vanrel/tome.svg"
  11401. }
  11402. },
  11403. beans: {
  11404. height: math.unit(0.89, "feet"),
  11405. name: "Beans",
  11406. image: {
  11407. source: "./media/characters/vanrel/beans.svg"
  11408. }
  11409. },
  11410. },
  11411. [
  11412. {
  11413. name: "Normal",
  11414. height: math.unit(4 + 7 / 12, "feet"),
  11415. default: true
  11416. },
  11417. ]
  11418. ))
  11419. characterMakers.push(() => makeCharacter(
  11420. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11421. {
  11422. front: {
  11423. height: math.unit(7 + 5 / 12, "feet"),
  11424. weight: math.unit(150, "lb"),
  11425. name: "Front",
  11426. image: {
  11427. source: "./media/characters/kuiper-vanrel/front.svg",
  11428. extra: 1118 / 1068,
  11429. bottom: 0.09
  11430. }
  11431. },
  11432. foot: {
  11433. height: math.unit(0.55, "meters"),
  11434. name: "Foot",
  11435. image: {
  11436. source: "./media/characters/kuiper-vanrel/foot.svg",
  11437. }
  11438. },
  11439. battle: {
  11440. height: math.unit(6.824, "feet"),
  11441. weight: math.unit(150, "lb"),
  11442. name: "Battle",
  11443. image: {
  11444. source: "./media/characters/kuiper-vanrel/battle.svg",
  11445. extra: 1466 / 1327,
  11446. bottom: 29 / 1492.5
  11447. }
  11448. },
  11449. battleAlt: {
  11450. height: math.unit(6.824, "feet"),
  11451. weight: math.unit(150, "lb"),
  11452. name: "Battle (Alt)",
  11453. image: {
  11454. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11455. extra: 2081 / 1965,
  11456. bottom: 40 / 2121
  11457. }
  11458. },
  11459. },
  11460. [
  11461. {
  11462. name: "Normal",
  11463. height: math.unit(7 + 5 / 12, "feet"),
  11464. default: true
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11470. {
  11471. front: {
  11472. height: math.unit(8 + 5 / 12, "feet"),
  11473. weight: math.unit(150, "lb"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/keset-vanrel/front.svg",
  11477. extra: 1150 / 1084,
  11478. bottom: 0.05
  11479. }
  11480. },
  11481. hand: {
  11482. height: math.unit(0.6, "meters"),
  11483. name: "Hand",
  11484. image: {
  11485. source: "./media/characters/keset-vanrel/hand.svg"
  11486. }
  11487. },
  11488. foot: {
  11489. height: math.unit(0.94978, "meters"),
  11490. name: "Foot",
  11491. image: {
  11492. source: "./media/characters/keset-vanrel/foot.svg"
  11493. }
  11494. },
  11495. battle: {
  11496. height: math.unit(7.408, "feet"),
  11497. weight: math.unit(150, "lb"),
  11498. name: "Battle",
  11499. image: {
  11500. source: "./media/characters/keset-vanrel/battle.svg",
  11501. extra: 1890 / 1386,
  11502. bottom: 73.28 / 1970
  11503. }
  11504. },
  11505. },
  11506. [
  11507. {
  11508. name: "Normal",
  11509. height: math.unit(8 + 5 / 12, "feet"),
  11510. default: true
  11511. },
  11512. ]
  11513. ))
  11514. characterMakers.push(() => makeCharacter(
  11515. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11516. {
  11517. front: {
  11518. height: math.unit(6, "feet"),
  11519. weight: math.unit(150, "lb"),
  11520. name: "Front",
  11521. image: {
  11522. source: "./media/characters/neos/front.svg",
  11523. extra: 1696 / 992,
  11524. bottom: 0.14
  11525. }
  11526. },
  11527. },
  11528. [
  11529. {
  11530. name: "Normal",
  11531. height: math.unit(54, "cm"),
  11532. default: true
  11533. },
  11534. {
  11535. name: "Macro",
  11536. height: math.unit(100, "m")
  11537. },
  11538. {
  11539. name: "Megamacro",
  11540. height: math.unit(10, "km")
  11541. },
  11542. {
  11543. name: "Megamacro+",
  11544. height: math.unit(100, "km")
  11545. },
  11546. {
  11547. name: "Gigamacro",
  11548. height: math.unit(100, "Mm")
  11549. },
  11550. {
  11551. name: "Teramacro",
  11552. height: math.unit(100, "Gm")
  11553. },
  11554. {
  11555. name: "Examacro",
  11556. height: math.unit(100, "Em")
  11557. },
  11558. {
  11559. name: "Godly",
  11560. height: math.unit(10000, "Ym")
  11561. },
  11562. {
  11563. name: "Beyond Godly",
  11564. height: math.unit(25, "multiverses")
  11565. },
  11566. ]
  11567. ))
  11568. characterMakers.push(() => makeCharacter(
  11569. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11570. {
  11571. feminine: {
  11572. height: math.unit(5, "feet"),
  11573. weight: math.unit(100, "lb"),
  11574. name: "Feminine",
  11575. image: {
  11576. source: "./media/characters/sammy-mouse/feminine.svg",
  11577. extra: 2526 / 2425,
  11578. bottom: 0.123
  11579. }
  11580. },
  11581. masculine: {
  11582. height: math.unit(5, "feet"),
  11583. weight: math.unit(100, "lb"),
  11584. name: "Masculine",
  11585. image: {
  11586. source: "./media/characters/sammy-mouse/masculine.svg",
  11587. extra: 2526 / 2425,
  11588. bottom: 0.123
  11589. }
  11590. },
  11591. },
  11592. [
  11593. {
  11594. name: "Micro",
  11595. height: math.unit(5, "inches")
  11596. },
  11597. {
  11598. name: "Normal",
  11599. height: math.unit(5, "feet"),
  11600. default: true
  11601. },
  11602. {
  11603. name: "Macro",
  11604. height: math.unit(60, "feet")
  11605. },
  11606. ]
  11607. ))
  11608. characterMakers.push(() => makeCharacter(
  11609. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11610. {
  11611. front: {
  11612. height: math.unit(4, "feet"),
  11613. weight: math.unit(50, "lb"),
  11614. name: "Front",
  11615. image: {
  11616. source: "./media/characters/kole/front.svg",
  11617. extra: 1423 / 1303,
  11618. bottom: 0.025
  11619. }
  11620. },
  11621. back: {
  11622. height: math.unit(4, "feet"),
  11623. weight: math.unit(50, "lb"),
  11624. name: "Back",
  11625. image: {
  11626. source: "./media/characters/kole/back.svg",
  11627. extra: 1426 / 1280,
  11628. bottom: 0.02
  11629. }
  11630. },
  11631. },
  11632. [
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(4, "feet"),
  11636. default: true
  11637. },
  11638. ]
  11639. ))
  11640. characterMakers.push(() => makeCharacter(
  11641. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11642. {
  11643. front: {
  11644. height: math.unit(2 + 6 / 12, "feet"),
  11645. weight: math.unit(20, "lb"),
  11646. name: "Front",
  11647. image: {
  11648. source: "./media/characters/rufran/front.svg",
  11649. extra: 2041 / 1839,
  11650. bottom: 0.055
  11651. }
  11652. },
  11653. back: {
  11654. height: math.unit(2 + 6 / 12, "feet"),
  11655. weight: math.unit(20, "lb"),
  11656. name: "Back",
  11657. image: {
  11658. source: "./media/characters/rufran/back.svg",
  11659. extra: 2054 / 1839,
  11660. bottom: 0.01
  11661. }
  11662. },
  11663. hand: {
  11664. height: math.unit(0.2166, "meters"),
  11665. name: "Hand",
  11666. image: {
  11667. source: "./media/characters/rufran/hand.svg"
  11668. }
  11669. },
  11670. foot: {
  11671. height: math.unit(0.185, "meters"),
  11672. name: "Foot",
  11673. image: {
  11674. source: "./media/characters/rufran/foot.svg"
  11675. }
  11676. },
  11677. },
  11678. [
  11679. {
  11680. name: "Micro",
  11681. height: math.unit(1, "inch")
  11682. },
  11683. {
  11684. name: "Normal",
  11685. height: math.unit(2 + 6 / 12, "feet"),
  11686. default: true
  11687. },
  11688. {
  11689. name: "Big",
  11690. height: math.unit(60, "feet")
  11691. },
  11692. {
  11693. name: "Macro",
  11694. height: math.unit(325, "feet")
  11695. },
  11696. ]
  11697. ))
  11698. characterMakers.push(() => makeCharacter(
  11699. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11700. {
  11701. front: {
  11702. height: math.unit(0.3, "meters"),
  11703. weight: math.unit(3.5, "kg"),
  11704. name: "Front",
  11705. image: {
  11706. source: "./media/characters/chip/front.svg",
  11707. extra: 748 / 674
  11708. }
  11709. },
  11710. },
  11711. [
  11712. {
  11713. name: "Micro",
  11714. height: math.unit(1, "inch"),
  11715. default: true
  11716. },
  11717. ]
  11718. ))
  11719. characterMakers.push(() => makeCharacter(
  11720. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11721. {
  11722. side: {
  11723. height: math.unit(2.3, "meters"),
  11724. weight: math.unit(3500, "lb"),
  11725. name: "Side",
  11726. image: {
  11727. source: "./media/characters/torvid/side.svg",
  11728. extra: 1972 / 722,
  11729. bottom: 0.035
  11730. }
  11731. },
  11732. },
  11733. [
  11734. {
  11735. name: "Normal",
  11736. height: math.unit(2.3, "meters"),
  11737. default: true
  11738. },
  11739. ]
  11740. ))
  11741. characterMakers.push(() => makeCharacter(
  11742. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11743. {
  11744. front: {
  11745. height: math.unit(2, "meters"),
  11746. weight: math.unit(150.5, "kg"),
  11747. name: "Front",
  11748. image: {
  11749. source: "./media/characters/susan/front.svg",
  11750. extra: 693 / 635,
  11751. bottom: 0.05
  11752. }
  11753. },
  11754. },
  11755. [
  11756. {
  11757. name: "Megamacro",
  11758. height: math.unit(505, "miles"),
  11759. default: true
  11760. },
  11761. ]
  11762. ))
  11763. characterMakers.push(() => makeCharacter(
  11764. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11765. {
  11766. front: {
  11767. height: math.unit(6, "feet"),
  11768. weight: math.unit(150, "lb"),
  11769. name: "Front",
  11770. image: {
  11771. source: "./media/characters/raindrops/front.svg",
  11772. extra: 2655 / 2461,
  11773. bottom: 49 / 2705
  11774. }
  11775. },
  11776. back: {
  11777. height: math.unit(6, "feet"),
  11778. weight: math.unit(150, "lb"),
  11779. name: "Back",
  11780. image: {
  11781. source: "./media/characters/raindrops/back.svg",
  11782. extra: 2574 / 2400,
  11783. bottom: 65 / 2634
  11784. }
  11785. },
  11786. },
  11787. [
  11788. {
  11789. name: "Micro",
  11790. height: math.unit(6, "inches")
  11791. },
  11792. {
  11793. name: "Normal",
  11794. height: math.unit(6 + 2 / 12, "feet")
  11795. },
  11796. {
  11797. name: "Macro",
  11798. height: math.unit(131, "feet"),
  11799. default: true
  11800. },
  11801. {
  11802. name: "Megamacro",
  11803. height: math.unit(15, "miles")
  11804. },
  11805. {
  11806. name: "Gigamacro",
  11807. height: math.unit(4000, "miles")
  11808. },
  11809. {
  11810. name: "Teramacro",
  11811. height: math.unit(315000, "miles")
  11812. },
  11813. ]
  11814. ))
  11815. characterMakers.push(() => makeCharacter(
  11816. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11817. {
  11818. front: {
  11819. height: math.unit(2.794, "meters"),
  11820. weight: math.unit(325, "kg"),
  11821. name: "Front",
  11822. image: {
  11823. source: "./media/characters/tezwa/front.svg",
  11824. extra: 2083 / 1906,
  11825. bottom: 0.031
  11826. }
  11827. },
  11828. foot: {
  11829. height: math.unit(0.687, "meters"),
  11830. name: "Foot",
  11831. image: {
  11832. source: "./media/characters/tezwa/foot.svg"
  11833. }
  11834. },
  11835. },
  11836. [
  11837. {
  11838. name: "Normal",
  11839. height: math.unit(9 + 2 / 12, "feet"),
  11840. default: true
  11841. },
  11842. ]
  11843. ))
  11844. characterMakers.push(() => makeCharacter(
  11845. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11846. {
  11847. front: {
  11848. height: math.unit(58, "feet"),
  11849. weight: math.unit(89000, "lb"),
  11850. name: "Front",
  11851. image: {
  11852. source: "./media/characters/typhus/front.svg",
  11853. extra: 816 / 800,
  11854. bottom: 0.065
  11855. }
  11856. },
  11857. },
  11858. [
  11859. {
  11860. name: "Macro",
  11861. height: math.unit(58, "feet"),
  11862. default: true
  11863. },
  11864. ]
  11865. ))
  11866. characterMakers.push(() => makeCharacter(
  11867. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11868. {
  11869. front: {
  11870. height: math.unit(12, "feet"),
  11871. weight: math.unit(6, "tonnes"),
  11872. name: "Front",
  11873. image: {
  11874. source: "./media/characters/lyra-von-wulf/front.svg",
  11875. extra: 1,
  11876. bottom: 0.10
  11877. }
  11878. },
  11879. frontMecha: {
  11880. height: math.unit(12, "feet"),
  11881. weight: math.unit(12, "tonnes"),
  11882. name: "Front (Mecha)",
  11883. image: {
  11884. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11885. extra: 1,
  11886. bottom: 0.042
  11887. }
  11888. },
  11889. maw: {
  11890. height: math.unit(2.2, "feet"),
  11891. name: "Maw",
  11892. image: {
  11893. source: "./media/characters/lyra-von-wulf/maw.svg"
  11894. }
  11895. },
  11896. },
  11897. [
  11898. {
  11899. name: "Normal",
  11900. height: math.unit(12, "feet"),
  11901. default: true
  11902. },
  11903. {
  11904. name: "Classic",
  11905. height: math.unit(50, "feet")
  11906. },
  11907. {
  11908. name: "Macro",
  11909. height: math.unit(500, "feet")
  11910. },
  11911. {
  11912. name: "Megamacro",
  11913. height: math.unit(1, "mile")
  11914. },
  11915. {
  11916. name: "Gigamacro",
  11917. height: math.unit(400, "miles")
  11918. },
  11919. {
  11920. name: "Teramacro",
  11921. height: math.unit(22000, "miles")
  11922. },
  11923. {
  11924. name: "Solarmacro",
  11925. height: math.unit(8600000, "miles")
  11926. },
  11927. {
  11928. name: "Galactic",
  11929. height: math.unit(1057000, "lightyears")
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11935. {
  11936. front: {
  11937. height: math.unit(6 + 10 / 12, "feet"),
  11938. weight: math.unit(150, "lb"),
  11939. name: "Front",
  11940. image: {
  11941. source: "./media/characters/dixon/front.svg",
  11942. extra: 3361 / 3209,
  11943. bottom: 0.01
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Normal",
  11950. height: math.unit(6 + 10 / 12, "feet"),
  11951. default: true
  11952. },
  11953. {
  11954. name: "Big",
  11955. height: math.unit(12, "meters")
  11956. },
  11957. {
  11958. name: "Macro",
  11959. height: math.unit(500, "meters")
  11960. },
  11961. {
  11962. name: "Megamacro",
  11963. height: math.unit(2, "km")
  11964. },
  11965. ]
  11966. ))
  11967. characterMakers.push(() => makeCharacter(
  11968. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11969. {
  11970. front: {
  11971. height: math.unit(185, "cm"),
  11972. weight: math.unit(68, "kg"),
  11973. name: "Front",
  11974. image: {
  11975. source: "./media/characters/kauko/front.svg",
  11976. extra: 1455 / 1421,
  11977. bottom: 0.03
  11978. }
  11979. },
  11980. back: {
  11981. height: math.unit(185, "cm"),
  11982. weight: math.unit(68, "kg"),
  11983. name: "Back",
  11984. image: {
  11985. source: "./media/characters/kauko/back.svg",
  11986. extra: 1455 / 1421,
  11987. bottom: 0.004
  11988. }
  11989. },
  11990. },
  11991. [
  11992. {
  11993. name: "Normal",
  11994. height: math.unit(185, "cm"),
  11995. default: true
  11996. },
  11997. ]
  11998. ))
  11999. characterMakers.push(() => makeCharacter(
  12000. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12001. {
  12002. front: {
  12003. height: math.unit(6, "feet"),
  12004. weight: math.unit(150, "kg"),
  12005. name: "Front",
  12006. image: {
  12007. source: "./media/characters/varg/front.svg",
  12008. extra: 1108 / 1018,
  12009. bottom: 0.0375
  12010. }
  12011. },
  12012. },
  12013. [
  12014. {
  12015. name: "Normal",
  12016. height: math.unit(5, "meters")
  12017. },
  12018. {
  12019. name: "Macro",
  12020. height: math.unit(200, "meters")
  12021. },
  12022. {
  12023. name: "Megamacro",
  12024. height: math.unit(20, "kilometers")
  12025. },
  12026. {
  12027. name: "True Size",
  12028. height: math.unit(211, "km"),
  12029. default: true
  12030. },
  12031. {
  12032. name: "Gigamacro",
  12033. height: math.unit(1000, "km")
  12034. },
  12035. {
  12036. name: "Gigamacro+",
  12037. height: math.unit(8000, "km")
  12038. },
  12039. {
  12040. name: "Teramacro",
  12041. height: math.unit(1000000, "km")
  12042. },
  12043. ]
  12044. ))
  12045. characterMakers.push(() => makeCharacter(
  12046. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12047. {
  12048. front: {
  12049. height: math.unit(7 + 7 / 12, "feet"),
  12050. weight: math.unit(267, "lb"),
  12051. name: "Front",
  12052. image: {
  12053. source: "./media/characters/dayza/front.svg",
  12054. extra: 1262 / 1200,
  12055. bottom: 0.035
  12056. }
  12057. },
  12058. side: {
  12059. height: math.unit(7 + 7 / 12, "feet"),
  12060. weight: math.unit(267, "lb"),
  12061. name: "Side",
  12062. image: {
  12063. source: "./media/characters/dayza/side.svg",
  12064. extra: 1295 / 1245,
  12065. bottom: 0.05
  12066. }
  12067. },
  12068. back: {
  12069. height: math.unit(7 + 7 / 12, "feet"),
  12070. weight: math.unit(267, "lb"),
  12071. name: "Back",
  12072. image: {
  12073. source: "./media/characters/dayza/back.svg",
  12074. extra: 1241 / 1170
  12075. }
  12076. },
  12077. },
  12078. [
  12079. {
  12080. name: "Normal",
  12081. height: math.unit(7 + 7 / 12, "feet"),
  12082. default: true
  12083. },
  12084. {
  12085. name: "Macro",
  12086. height: math.unit(155, "feet")
  12087. },
  12088. ]
  12089. ))
  12090. characterMakers.push(() => makeCharacter(
  12091. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12092. {
  12093. front: {
  12094. height: math.unit(6 + 5 / 12, "feet"),
  12095. weight: math.unit(160, "lb"),
  12096. name: "Front",
  12097. image: {
  12098. source: "./media/characters/xanthos/front.svg",
  12099. extra: 1,
  12100. bottom: 0.04
  12101. }
  12102. },
  12103. back: {
  12104. height: math.unit(6 + 5 / 12, "feet"),
  12105. weight: math.unit(160, "lb"),
  12106. name: "Back",
  12107. image: {
  12108. source: "./media/characters/xanthos/back.svg",
  12109. extra: 1,
  12110. bottom: 0.03
  12111. }
  12112. },
  12113. hand: {
  12114. height: math.unit(0.928, "feet"),
  12115. name: "Hand",
  12116. image: {
  12117. source: "./media/characters/xanthos/hand.svg"
  12118. }
  12119. },
  12120. foot: {
  12121. height: math.unit(1.286, "feet"),
  12122. name: "Foot",
  12123. image: {
  12124. source: "./media/characters/xanthos/foot.svg"
  12125. }
  12126. },
  12127. },
  12128. [
  12129. {
  12130. name: "Normal",
  12131. height: math.unit(6 + 5 / 12, "feet"),
  12132. default: true
  12133. },
  12134. {
  12135. name: "Normal+",
  12136. height: math.unit(6, "meters")
  12137. },
  12138. {
  12139. name: "Macro",
  12140. height: math.unit(40, "feet")
  12141. },
  12142. {
  12143. name: "Macro+",
  12144. height: math.unit(200, "meters")
  12145. },
  12146. {
  12147. name: "Megamacro",
  12148. height: math.unit(20, "km")
  12149. },
  12150. {
  12151. name: "Megamacro+",
  12152. height: math.unit(100, "km")
  12153. },
  12154. ]
  12155. ))
  12156. characterMakers.push(() => makeCharacter(
  12157. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12158. {
  12159. front: {
  12160. height: math.unit(6 + 3 / 12, "feet"),
  12161. weight: math.unit(215, "lb"),
  12162. name: "Front",
  12163. image: {
  12164. source: "./media/characters/grynn/front.svg",
  12165. extra: 4627 / 4209,
  12166. bottom: 0.047
  12167. }
  12168. },
  12169. },
  12170. [
  12171. {
  12172. name: "Micro",
  12173. height: math.unit(6, "inches")
  12174. },
  12175. {
  12176. name: "Normal",
  12177. height: math.unit(6 + 3 / 12, "feet"),
  12178. default: true
  12179. },
  12180. {
  12181. name: "Big",
  12182. height: math.unit(104, "feet")
  12183. },
  12184. {
  12185. name: "Macro",
  12186. height: math.unit(944, "feet")
  12187. },
  12188. {
  12189. name: "Macro+",
  12190. height: math.unit(9480, "feet")
  12191. },
  12192. {
  12193. name: "Megamacro",
  12194. height: math.unit(78752, "feet")
  12195. },
  12196. {
  12197. name: "Megamacro+",
  12198. height: math.unit(630128, "feet")
  12199. },
  12200. {
  12201. name: "Megamacro++",
  12202. height: math.unit(3150695, "feet")
  12203. },
  12204. ]
  12205. ))
  12206. characterMakers.push(() => makeCharacter(
  12207. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12208. {
  12209. front: {
  12210. height: math.unit(7 + 5 / 12, "feet"),
  12211. weight: math.unit(450, "lb"),
  12212. name: "Front",
  12213. image: {
  12214. source: "./media/characters/mocha-aura/front.svg",
  12215. extra: 1907 / 1817,
  12216. bottom: 0.04
  12217. }
  12218. },
  12219. back: {
  12220. height: math.unit(7 + 5 / 12, "feet"),
  12221. weight: math.unit(450, "lb"),
  12222. name: "Back",
  12223. image: {
  12224. source: "./media/characters/mocha-aura/back.svg",
  12225. extra: 1900 / 1825,
  12226. bottom: 0.045
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Nano",
  12233. height: math.unit(1, "nm")
  12234. },
  12235. {
  12236. name: "Megamicro",
  12237. height: math.unit(1, "mm")
  12238. },
  12239. {
  12240. name: "Micro",
  12241. height: math.unit(3, "inches")
  12242. },
  12243. {
  12244. name: "Normal",
  12245. height: math.unit(7 + 5 / 12, "feet"),
  12246. default: true
  12247. },
  12248. {
  12249. name: "Macro",
  12250. height: math.unit(30, "feet")
  12251. },
  12252. {
  12253. name: "Megamacro",
  12254. height: math.unit(3500, "feet")
  12255. },
  12256. {
  12257. name: "Teramacro",
  12258. height: math.unit(500000, "miles")
  12259. },
  12260. {
  12261. name: "Petamacro",
  12262. height: math.unit(50000000000000000, "parsecs")
  12263. },
  12264. ]
  12265. ))
  12266. characterMakers.push(() => makeCharacter(
  12267. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12268. {
  12269. front: {
  12270. height: math.unit(6, "feet"),
  12271. weight: math.unit(150, "lb"),
  12272. name: "Front",
  12273. image: {
  12274. source: "./media/characters/ilisha-devya/front.svg",
  12275. extra: 1,
  12276. bottom: 0.175
  12277. }
  12278. },
  12279. back: {
  12280. height: math.unit(6, "feet"),
  12281. weight: math.unit(150, "lb"),
  12282. name: "Back",
  12283. image: {
  12284. source: "./media/characters/ilisha-devya/back.svg",
  12285. extra: 1,
  12286. bottom: 0.015
  12287. }
  12288. },
  12289. },
  12290. [
  12291. {
  12292. name: "Macro",
  12293. height: math.unit(500, "feet"),
  12294. default: true
  12295. },
  12296. {
  12297. name: "Megamacro",
  12298. height: math.unit(10, "miles")
  12299. },
  12300. {
  12301. name: "Gigamacro",
  12302. height: math.unit(100000, "miles")
  12303. },
  12304. {
  12305. name: "Examacro",
  12306. height: math.unit(1e9, "lightyears")
  12307. },
  12308. {
  12309. name: "Omniversal",
  12310. height: math.unit(1e33, "lightyears")
  12311. },
  12312. {
  12313. name: "Beyond Infinite",
  12314. height: math.unit(1e100, "lightyears")
  12315. },
  12316. ]
  12317. ))
  12318. characterMakers.push(() => makeCharacter(
  12319. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12320. {
  12321. Side: {
  12322. height: math.unit(6, "feet"),
  12323. weight: math.unit(150, "lb"),
  12324. name: "Side",
  12325. image: {
  12326. source: "./media/characters/mira/side.svg",
  12327. extra: 900 / 799,
  12328. bottom: 0.02
  12329. }
  12330. },
  12331. },
  12332. [
  12333. {
  12334. name: "Human Size",
  12335. height: math.unit(6, "feet")
  12336. },
  12337. {
  12338. name: "Macro",
  12339. height: math.unit(100, "feet"),
  12340. default: true
  12341. },
  12342. {
  12343. name: "Megamacro",
  12344. height: math.unit(10, "miles")
  12345. },
  12346. {
  12347. name: "Gigamacro",
  12348. height: math.unit(25000, "miles")
  12349. },
  12350. {
  12351. name: "Teramacro",
  12352. height: math.unit(300, "AU")
  12353. },
  12354. {
  12355. name: "Full Size",
  12356. height: math.unit(4.5e10, "lightyears")
  12357. },
  12358. ]
  12359. ))
  12360. characterMakers.push(() => makeCharacter(
  12361. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12362. {
  12363. front: {
  12364. height: math.unit(6, "feet"),
  12365. weight: math.unit(150, "lb"),
  12366. name: "Front",
  12367. image: {
  12368. source: "./media/characters/holly/front.svg",
  12369. extra: 639 / 606
  12370. }
  12371. },
  12372. back: {
  12373. height: math.unit(6, "feet"),
  12374. weight: math.unit(150, "lb"),
  12375. name: "Back",
  12376. image: {
  12377. source: "./media/characters/holly/back.svg",
  12378. extra: 623 / 598
  12379. }
  12380. },
  12381. frontWorking: {
  12382. height: math.unit(6, "feet"),
  12383. weight: math.unit(150, "lb"),
  12384. name: "Front (Working)",
  12385. image: {
  12386. source: "./media/characters/holly/front-working.svg",
  12387. extra: 607 / 577,
  12388. bottom: 0.048
  12389. }
  12390. },
  12391. },
  12392. [
  12393. {
  12394. name: "Normal",
  12395. height: math.unit(12 + 3 / 12, "feet"),
  12396. default: true
  12397. },
  12398. ]
  12399. ))
  12400. characterMakers.push(() => makeCharacter(
  12401. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12402. {
  12403. front: {
  12404. height: math.unit(6, "feet"),
  12405. weight: math.unit(150, "lb"),
  12406. name: "Front",
  12407. image: {
  12408. source: "./media/characters/porter/front.svg",
  12409. extra: 1,
  12410. bottom: 0.01
  12411. }
  12412. },
  12413. frontRobes: {
  12414. height: math.unit(6, "feet"),
  12415. weight: math.unit(150, "lb"),
  12416. name: "Front (Robes)",
  12417. image: {
  12418. source: "./media/characters/porter/front-robes.svg",
  12419. extra: 1.01,
  12420. bottom: 0.01
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(11 + 9 / 12, "feet"),
  12428. default: true
  12429. },
  12430. ]
  12431. ))
  12432. characterMakers.push(() => makeCharacter(
  12433. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12434. {
  12435. legendary: {
  12436. height: math.unit(6, "feet"),
  12437. weight: math.unit(150, "lb"),
  12438. name: "Legendary",
  12439. image: {
  12440. source: "./media/characters/lucy/legendary.svg",
  12441. extra: 1355 / 1100,
  12442. bottom: 0.045
  12443. }
  12444. },
  12445. },
  12446. [
  12447. {
  12448. name: "Legendary",
  12449. height: math.unit(86882 * 2, "miles"),
  12450. default: true
  12451. },
  12452. ]
  12453. ))
  12454. characterMakers.push(() => makeCharacter(
  12455. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12456. {
  12457. front: {
  12458. height: math.unit(6, "feet"),
  12459. weight: math.unit(150, "lb"),
  12460. name: "Front",
  12461. image: {
  12462. source: "./media/characters/drusilla/front.svg",
  12463. extra: 678 / 635,
  12464. bottom: 0.03
  12465. }
  12466. },
  12467. back: {
  12468. height: math.unit(6, "feet"),
  12469. weight: math.unit(150, "lb"),
  12470. name: "Back",
  12471. image: {
  12472. source: "./media/characters/drusilla/back.svg",
  12473. extra: 678 / 635,
  12474. bottom: 0.005
  12475. }
  12476. },
  12477. },
  12478. [
  12479. {
  12480. name: "Macro",
  12481. height: math.unit(100, "feet")
  12482. },
  12483. {
  12484. name: "Canon Height",
  12485. height: math.unit(2000, "feet"),
  12486. default: true
  12487. },
  12488. ]
  12489. ))
  12490. characterMakers.push(() => makeCharacter(
  12491. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12492. {
  12493. front: {
  12494. height: math.unit(6, "feet"),
  12495. weight: math.unit(180, "lb"),
  12496. name: "Front",
  12497. image: {
  12498. source: "./media/characters/renard-thatch/front.svg",
  12499. extra: 2411 / 2275,
  12500. bottom: 0.01
  12501. }
  12502. },
  12503. frontPosing: {
  12504. height: math.unit(6, "feet"),
  12505. weight: math.unit(180, "lb"),
  12506. name: "Front (Posing)",
  12507. image: {
  12508. source: "./media/characters/renard-thatch/front-posing.svg",
  12509. extra: 2381 / 2261,
  12510. bottom: 0.01
  12511. }
  12512. },
  12513. back: {
  12514. height: math.unit(6, "feet"),
  12515. weight: math.unit(180, "lb"),
  12516. name: "Back",
  12517. image: {
  12518. source: "./media/characters/renard-thatch/back.svg",
  12519. extra: 2428 / 2288
  12520. }
  12521. },
  12522. },
  12523. [
  12524. {
  12525. name: "Micro",
  12526. height: math.unit(3, "inches")
  12527. },
  12528. {
  12529. name: "Default",
  12530. height: math.unit(6, "feet"),
  12531. default: true
  12532. },
  12533. {
  12534. name: "Macro",
  12535. height: math.unit(75, "feet")
  12536. },
  12537. ]
  12538. ))
  12539. characterMakers.push(() => makeCharacter(
  12540. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12541. {
  12542. front: {
  12543. height: math.unit(1450, "feet"),
  12544. weight: math.unit(1.21e6, "tons"),
  12545. name: "Front",
  12546. image: {
  12547. source: "./media/characters/sekvra/front.svg",
  12548. extra: 1,
  12549. bottom: 0.03
  12550. }
  12551. },
  12552. frontClothed: {
  12553. height: math.unit(1450, "feet"),
  12554. weight: math.unit(1.21e6, "tons"),
  12555. name: "Front (Clothed)",
  12556. image: {
  12557. source: "./media/characters/sekvra/front-clothed.svg",
  12558. extra: 1,
  12559. bottom: 0.03
  12560. }
  12561. },
  12562. side: {
  12563. height: math.unit(1450, "feet"),
  12564. weight: math.unit(1.21e6, "tons"),
  12565. name: "Side",
  12566. image: {
  12567. source: "./media/characters/sekvra/side.svg",
  12568. extra: 1,
  12569. bottom: 0.025
  12570. }
  12571. },
  12572. back: {
  12573. height: math.unit(1450, "feet"),
  12574. weight: math.unit(1.21e6, "tons"),
  12575. name: "Back",
  12576. image: {
  12577. source: "./media/characters/sekvra/back.svg",
  12578. extra: 1,
  12579. bottom: 0.005
  12580. }
  12581. },
  12582. },
  12583. [
  12584. {
  12585. name: "Macro",
  12586. height: math.unit(1450, "feet"),
  12587. default: true
  12588. },
  12589. {
  12590. name: "Megamacro",
  12591. height: math.unit(15000, "feet")
  12592. },
  12593. ]
  12594. ))
  12595. characterMakers.push(() => makeCharacter(
  12596. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12597. {
  12598. front: {
  12599. height: math.unit(6, "feet"),
  12600. weight: math.unit(150, "lb"),
  12601. name: "Front",
  12602. image: {
  12603. source: "./media/characters/carmine/front.svg",
  12604. extra: 1,
  12605. bottom: 0.035
  12606. }
  12607. },
  12608. frontArmor: {
  12609. height: math.unit(6, "feet"),
  12610. weight: math.unit(150, "lb"),
  12611. name: "Front (Armor)",
  12612. image: {
  12613. source: "./media/characters/carmine/front-armor.svg",
  12614. extra: 1,
  12615. bottom: 0.035
  12616. }
  12617. },
  12618. },
  12619. [
  12620. {
  12621. name: "Large",
  12622. height: math.unit(1, "mile")
  12623. },
  12624. {
  12625. name: "Huge",
  12626. height: math.unit(40, "miles"),
  12627. default: true
  12628. },
  12629. {
  12630. name: "Colossal",
  12631. height: math.unit(2500, "miles")
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12637. {
  12638. front: {
  12639. height: math.unit(6, "feet"),
  12640. weight: math.unit(150, "lb"),
  12641. name: "Front",
  12642. image: {
  12643. source: "./media/characters/elyssia/front.svg",
  12644. extra: 2201 / 2035,
  12645. bottom: 0.05
  12646. }
  12647. },
  12648. frontClothed: {
  12649. height: math.unit(6, "feet"),
  12650. weight: math.unit(150, "lb"),
  12651. name: "Front (Clothed)",
  12652. image: {
  12653. source: "./media/characters/elyssia/front-clothed.svg",
  12654. extra: 2201 / 2035,
  12655. bottom: 0.05
  12656. }
  12657. },
  12658. back: {
  12659. height: math.unit(6, "feet"),
  12660. weight: math.unit(150, "lb"),
  12661. name: "Back",
  12662. image: {
  12663. source: "./media/characters/elyssia/back.svg",
  12664. extra: 2201 / 2035,
  12665. bottom: 0.013
  12666. }
  12667. },
  12668. },
  12669. [
  12670. {
  12671. name: "Smaller",
  12672. height: math.unit(150, "feet")
  12673. },
  12674. {
  12675. name: "Standard",
  12676. height: math.unit(1400, "feet"),
  12677. default: true
  12678. },
  12679. {
  12680. name: "Distracted",
  12681. height: math.unit(15000, "feet")
  12682. },
  12683. ]
  12684. ))
  12685. characterMakers.push(() => makeCharacter(
  12686. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12687. {
  12688. front: {
  12689. height: math.unit(7 + 4 / 12, "feet"),
  12690. weight: math.unit(500, "lb"),
  12691. name: "Front",
  12692. image: {
  12693. source: "./media/characters/geno-maxwell/front.svg",
  12694. extra: 2207 / 2040,
  12695. bottom: 0.015
  12696. }
  12697. },
  12698. },
  12699. [
  12700. {
  12701. name: "Micro",
  12702. height: math.unit(3, "inches")
  12703. },
  12704. {
  12705. name: "Normal",
  12706. height: math.unit(7 + 4 / 12, "feet"),
  12707. default: true
  12708. },
  12709. {
  12710. name: "Macro",
  12711. height: math.unit(220, "feet")
  12712. },
  12713. {
  12714. name: "Megamacro",
  12715. height: math.unit(11, "miles")
  12716. },
  12717. ]
  12718. ))
  12719. characterMakers.push(() => makeCharacter(
  12720. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12721. {
  12722. front: {
  12723. height: math.unit(7 + 4 / 12, "feet"),
  12724. weight: math.unit(500, "lb"),
  12725. name: "Front",
  12726. image: {
  12727. source: "./media/characters/regena-maxwell/front.svg",
  12728. extra: 3115 / 2770,
  12729. bottom: 0.02
  12730. }
  12731. },
  12732. },
  12733. [
  12734. {
  12735. name: "Normal",
  12736. height: math.unit(7 + 4 / 12, "feet"),
  12737. default: true
  12738. },
  12739. {
  12740. name: "Macro",
  12741. height: math.unit(220, "feet")
  12742. },
  12743. {
  12744. name: "Megamacro",
  12745. height: math.unit(11, "miles")
  12746. },
  12747. ]
  12748. ))
  12749. characterMakers.push(() => makeCharacter(
  12750. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12751. {
  12752. front: {
  12753. height: math.unit(6, "feet"),
  12754. weight: math.unit(150, "lb"),
  12755. name: "Front",
  12756. image: {
  12757. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12758. extra: 860 / 690,
  12759. bottom: 0.03
  12760. }
  12761. },
  12762. },
  12763. [
  12764. {
  12765. name: "Normal",
  12766. height: math.unit(1.7, "meters"),
  12767. default: true
  12768. },
  12769. ]
  12770. ))
  12771. characterMakers.push(() => makeCharacter(
  12772. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12773. {
  12774. front: {
  12775. height: math.unit(6, "feet"),
  12776. weight: math.unit(150, "lb"),
  12777. name: "Front",
  12778. image: {
  12779. source: "./media/characters/quilly/front.svg",
  12780. extra: 890 / 776
  12781. }
  12782. },
  12783. },
  12784. [
  12785. {
  12786. name: "Gigamacro",
  12787. height: math.unit(404090, "miles"),
  12788. default: true
  12789. },
  12790. ]
  12791. ))
  12792. characterMakers.push(() => makeCharacter(
  12793. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12794. {
  12795. front: {
  12796. height: math.unit(7 + 8 / 12, "feet"),
  12797. weight: math.unit(350, "lb"),
  12798. name: "Front",
  12799. image: {
  12800. source: "./media/characters/tempest/front.svg",
  12801. extra: 1175 / 1086,
  12802. bottom: 0.02
  12803. }
  12804. },
  12805. },
  12806. [
  12807. {
  12808. name: "Normal",
  12809. height: math.unit(7 + 8 / 12, "feet"),
  12810. default: true
  12811. },
  12812. ]
  12813. ))
  12814. characterMakers.push(() => makeCharacter(
  12815. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12816. {
  12817. side: {
  12818. height: math.unit(4 + 5 / 12, "feet"),
  12819. weight: math.unit(80, "lb"),
  12820. name: "Side",
  12821. image: {
  12822. source: "./media/characters/rodger/side.svg",
  12823. extra: 1235 / 1118
  12824. }
  12825. },
  12826. },
  12827. [
  12828. {
  12829. name: "Micro",
  12830. height: math.unit(1, "inch")
  12831. },
  12832. {
  12833. name: "Normal",
  12834. height: math.unit(4 + 5 / 12, "feet"),
  12835. default: true
  12836. },
  12837. {
  12838. name: "Macro",
  12839. height: math.unit(120, "feet")
  12840. },
  12841. ]
  12842. ))
  12843. characterMakers.push(() => makeCharacter(
  12844. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12845. {
  12846. front: {
  12847. height: math.unit(6, "feet"),
  12848. weight: math.unit(150, "lb"),
  12849. name: "Front",
  12850. image: {
  12851. source: "./media/characters/danyel/front.svg",
  12852. extra: 1185 / 1123,
  12853. bottom: 0.05
  12854. }
  12855. },
  12856. },
  12857. [
  12858. {
  12859. name: "Shrunken",
  12860. height: math.unit(0.5, "mm")
  12861. },
  12862. {
  12863. name: "Micro",
  12864. height: math.unit(1, "mm"),
  12865. default: true
  12866. },
  12867. {
  12868. name: "Upsized",
  12869. height: math.unit(5 + 5 / 12, "feet")
  12870. },
  12871. ]
  12872. ))
  12873. characterMakers.push(() => makeCharacter(
  12874. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12875. {
  12876. front: {
  12877. height: math.unit(5 + 6 / 12, "feet"),
  12878. weight: math.unit(200, "lb"),
  12879. name: "Front",
  12880. image: {
  12881. source: "./media/characters/vivian-bijoux/front.svg",
  12882. extra: 1,
  12883. bottom: 0.072
  12884. }
  12885. },
  12886. },
  12887. [
  12888. {
  12889. name: "Normal",
  12890. height: math.unit(5 + 6 / 12, "feet"),
  12891. default: true
  12892. },
  12893. {
  12894. name: "Bad Dream",
  12895. height: math.unit(500, "feet")
  12896. },
  12897. {
  12898. name: "Nightmare",
  12899. height: math.unit(500, "miles")
  12900. },
  12901. ]
  12902. ))
  12903. characterMakers.push(() => makeCharacter(
  12904. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12905. {
  12906. front: {
  12907. height: math.unit(6 + 1 / 12, "feet"),
  12908. weight: math.unit(260, "lb"),
  12909. name: "Front",
  12910. image: {
  12911. source: "./media/characters/zeta/front.svg",
  12912. extra: 1968 / 1889,
  12913. bottom: 0.06
  12914. }
  12915. },
  12916. back: {
  12917. height: math.unit(6 + 1 / 12, "feet"),
  12918. weight: math.unit(260, "lb"),
  12919. name: "Back",
  12920. image: {
  12921. source: "./media/characters/zeta/back.svg",
  12922. extra: 1944 / 1858,
  12923. bottom: 0.03
  12924. }
  12925. },
  12926. hand: {
  12927. height: math.unit(1.112, "feet"),
  12928. name: "Hand",
  12929. image: {
  12930. source: "./media/characters/zeta/hand.svg"
  12931. }
  12932. },
  12933. foot: {
  12934. height: math.unit(1.48, "feet"),
  12935. name: "Foot",
  12936. image: {
  12937. source: "./media/characters/zeta/foot.svg"
  12938. }
  12939. },
  12940. },
  12941. [
  12942. {
  12943. name: "Micro",
  12944. height: math.unit(6, "inches")
  12945. },
  12946. {
  12947. name: "Normal",
  12948. height: math.unit(6 + 1 / 12, "feet"),
  12949. default: true
  12950. },
  12951. {
  12952. name: "Macro",
  12953. height: math.unit(20, "feet")
  12954. },
  12955. ]
  12956. ))
  12957. characterMakers.push(() => makeCharacter(
  12958. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12959. {
  12960. front: {
  12961. height: math.unit(6, "feet"),
  12962. weight: math.unit(150, "lb"),
  12963. name: "Front",
  12964. image: {
  12965. source: "./media/characters/jamie-larsen/front.svg",
  12966. extra: 962 / 933,
  12967. bottom: 0.02
  12968. }
  12969. },
  12970. back: {
  12971. height: math.unit(6, "feet"),
  12972. weight: math.unit(150, "lb"),
  12973. name: "Back",
  12974. image: {
  12975. source: "./media/characters/jamie-larsen/back.svg",
  12976. extra: 997 / 946
  12977. }
  12978. },
  12979. },
  12980. [
  12981. {
  12982. name: "Macro",
  12983. height: math.unit(28 + 7 / 12, "feet"),
  12984. default: true
  12985. },
  12986. {
  12987. name: "Macro+",
  12988. height: math.unit(180, "feet")
  12989. },
  12990. {
  12991. name: "Megamacro",
  12992. height: math.unit(10, "miles")
  12993. },
  12994. {
  12995. name: "Gigamacro",
  12996. height: math.unit(200000, "miles")
  12997. },
  12998. ]
  12999. ))
  13000. characterMakers.push(() => makeCharacter(
  13001. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13002. {
  13003. front: {
  13004. height: math.unit(6, "feet"),
  13005. weight: math.unit(120, "lb"),
  13006. name: "Front",
  13007. image: {
  13008. source: "./media/characters/vance/front.svg",
  13009. extra: 1980 / 1890,
  13010. bottom: 0.09
  13011. }
  13012. },
  13013. back: {
  13014. height: math.unit(6, "feet"),
  13015. weight: math.unit(120, "lb"),
  13016. name: "Back",
  13017. image: {
  13018. source: "./media/characters/vance/back.svg",
  13019. extra: 2081 / 1994,
  13020. bottom: 0.014
  13021. }
  13022. },
  13023. hand: {
  13024. height: math.unit(0.88, "feet"),
  13025. name: "Hand",
  13026. image: {
  13027. source: "./media/characters/vance/hand.svg"
  13028. }
  13029. },
  13030. foot: {
  13031. height: math.unit(0.64, "feet"),
  13032. name: "Foot",
  13033. image: {
  13034. source: "./media/characters/vance/foot.svg"
  13035. }
  13036. },
  13037. },
  13038. [
  13039. {
  13040. name: "Small",
  13041. height: math.unit(90, "feet"),
  13042. default: true
  13043. },
  13044. {
  13045. name: "Macro",
  13046. height: math.unit(100, "meters")
  13047. },
  13048. {
  13049. name: "Megamacro",
  13050. height: math.unit(15, "miles")
  13051. },
  13052. ]
  13053. ))
  13054. characterMakers.push(() => makeCharacter(
  13055. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13056. {
  13057. front: {
  13058. height: math.unit(6, "feet"),
  13059. weight: math.unit(180, "lb"),
  13060. name: "Front",
  13061. image: {
  13062. source: "./media/characters/xochitl/front.svg",
  13063. extra: 2297 / 2261,
  13064. bottom: 0.065
  13065. }
  13066. },
  13067. back: {
  13068. height: math.unit(6, "feet"),
  13069. weight: math.unit(180, "lb"),
  13070. name: "Back",
  13071. image: {
  13072. source: "./media/characters/xochitl/back.svg",
  13073. extra: 2386 / 2354,
  13074. bottom: 0.01
  13075. }
  13076. },
  13077. foot: {
  13078. height: math.unit(6 / 5 * 1.15, "feet"),
  13079. weight: math.unit(150, "lb"),
  13080. name: "Foot",
  13081. image: {
  13082. source: "./media/characters/xochitl/foot.svg"
  13083. }
  13084. },
  13085. },
  13086. [
  13087. {
  13088. name: "Macro",
  13089. height: math.unit(80, "feet")
  13090. },
  13091. {
  13092. name: "Macro+",
  13093. height: math.unit(400, "feet"),
  13094. default: true
  13095. },
  13096. {
  13097. name: "Gigamacro",
  13098. height: math.unit(80000, "miles")
  13099. },
  13100. {
  13101. name: "Gigamacro+",
  13102. height: math.unit(400000, "miles")
  13103. },
  13104. {
  13105. name: "Teramacro",
  13106. height: math.unit(300, "AU")
  13107. },
  13108. ]
  13109. ))
  13110. characterMakers.push(() => makeCharacter(
  13111. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13112. {
  13113. front: {
  13114. height: math.unit(6, "feet"),
  13115. weight: math.unit(150, "lb"),
  13116. name: "Front",
  13117. image: {
  13118. source: "./media/characters/vincent/front.svg",
  13119. extra: 1130 / 1080,
  13120. bottom: 0.055
  13121. }
  13122. },
  13123. beak: {
  13124. height: math.unit(6 * 0.1, "feet"),
  13125. name: "Beak",
  13126. image: {
  13127. source: "./media/characters/vincent/beak.svg"
  13128. }
  13129. },
  13130. hand: {
  13131. height: math.unit(6 * 0.85, "feet"),
  13132. weight: math.unit(150, "lb"),
  13133. name: "Hand",
  13134. image: {
  13135. source: "./media/characters/vincent/hand.svg"
  13136. }
  13137. },
  13138. foot: {
  13139. height: math.unit(6 * 0.19, "feet"),
  13140. weight: math.unit(150, "lb"),
  13141. name: "Foot",
  13142. image: {
  13143. source: "./media/characters/vincent/foot.svg"
  13144. }
  13145. },
  13146. },
  13147. [
  13148. {
  13149. name: "Base",
  13150. height: math.unit(6 + 5 / 12, "feet"),
  13151. default: true
  13152. },
  13153. {
  13154. name: "Macro",
  13155. height: math.unit(300, "feet")
  13156. },
  13157. {
  13158. name: "Megamacro",
  13159. height: math.unit(2, "miles")
  13160. },
  13161. {
  13162. name: "Gigamacro",
  13163. height: math.unit(1000, "miles")
  13164. },
  13165. ]
  13166. ))
  13167. characterMakers.push(() => makeCharacter(
  13168. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13169. {
  13170. front: {
  13171. height: math.unit(6 + 2 / 12, "feet"),
  13172. weight: math.unit(265, "lb"),
  13173. name: "Front",
  13174. image: {
  13175. source: "./media/characters/jay/front.svg",
  13176. extra: 1510 / 1430,
  13177. bottom: 0.042
  13178. }
  13179. },
  13180. back: {
  13181. height: math.unit(6 + 2 / 12, "feet"),
  13182. weight: math.unit(265, "lb"),
  13183. name: "Back",
  13184. image: {
  13185. source: "./media/characters/jay/back.svg",
  13186. extra: 1510 / 1430,
  13187. bottom: 0.025
  13188. }
  13189. },
  13190. clothed: {
  13191. height: math.unit(6 + 2 / 12, "feet"),
  13192. weight: math.unit(265, "lb"),
  13193. name: "Front (Clothed)",
  13194. image: {
  13195. source: "./media/characters/jay/clothed.svg",
  13196. extra: 744 / 699,
  13197. bottom: 0.043
  13198. }
  13199. },
  13200. head: {
  13201. height: math.unit(1.772, "feet"),
  13202. name: "Head",
  13203. image: {
  13204. source: "./media/characters/jay/head.svg"
  13205. }
  13206. },
  13207. sizeRay: {
  13208. height: math.unit(1.331, "feet"),
  13209. name: "Size Ray",
  13210. image: {
  13211. source: "./media/characters/jay/size-ray.svg"
  13212. }
  13213. },
  13214. },
  13215. [
  13216. {
  13217. name: "Micro",
  13218. height: math.unit(1, "inch")
  13219. },
  13220. {
  13221. name: "Normal",
  13222. height: math.unit(6 + 2 / 12, "feet"),
  13223. default: true
  13224. },
  13225. {
  13226. name: "Macro",
  13227. height: math.unit(1, "mile")
  13228. },
  13229. {
  13230. name: "Megamacro",
  13231. height: math.unit(100, "miles")
  13232. },
  13233. ]
  13234. ))
  13235. characterMakers.push(() => makeCharacter(
  13236. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13237. {
  13238. front: {
  13239. height: math.unit(2, "meters"),
  13240. weight: math.unit(500, "kg"),
  13241. name: "Front",
  13242. image: {
  13243. source: "./media/characters/coatl/front.svg",
  13244. extra: 3948 / 3500,
  13245. bottom: 0.082
  13246. }
  13247. },
  13248. },
  13249. [
  13250. {
  13251. name: "Normal",
  13252. height: math.unit(4, "meters")
  13253. },
  13254. {
  13255. name: "Macro",
  13256. height: math.unit(100, "meters"),
  13257. default: true
  13258. },
  13259. {
  13260. name: "Macro+",
  13261. height: math.unit(300, "meters")
  13262. },
  13263. {
  13264. name: "Megamacro",
  13265. height: math.unit(3, "gigameters")
  13266. },
  13267. {
  13268. name: "Megamacro+",
  13269. height: math.unit(300, "terameters")
  13270. },
  13271. {
  13272. name: "Megamacro++",
  13273. height: math.unit(3, "lightyears")
  13274. },
  13275. ]
  13276. ))
  13277. characterMakers.push(() => makeCharacter(
  13278. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13279. {
  13280. front: {
  13281. height: math.unit(6, "feet"),
  13282. weight: math.unit(50, "kg"),
  13283. name: "front",
  13284. image: {
  13285. source: "./media/characters/shiroryu/front.svg",
  13286. extra: 1990 / 1935
  13287. }
  13288. },
  13289. },
  13290. [
  13291. {
  13292. name: "Mortal Mingling",
  13293. height: math.unit(3, "meters")
  13294. },
  13295. {
  13296. name: "Kaiju-ish",
  13297. height: math.unit(250, "meters")
  13298. },
  13299. {
  13300. name: "Somewhat Godly",
  13301. height: math.unit(400, "km"),
  13302. default: true
  13303. },
  13304. {
  13305. name: "Planetary",
  13306. height: math.unit(300, "megameters")
  13307. },
  13308. {
  13309. name: "Galaxy-dwarfing",
  13310. height: math.unit(450, "kiloparsecs")
  13311. },
  13312. {
  13313. name: "Universe Eater",
  13314. height: math.unit(150, "gigaparsecs")
  13315. },
  13316. {
  13317. name: "Almost Immeasurable",
  13318. height: math.unit(1.3e266, "yottaparsecs")
  13319. },
  13320. ]
  13321. ))
  13322. characterMakers.push(() => makeCharacter(
  13323. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13324. {
  13325. front: {
  13326. height: math.unit(6, "feet"),
  13327. weight: math.unit(150, "lb"),
  13328. name: "Front",
  13329. image: {
  13330. source: "./media/characters/umeko/front.svg",
  13331. extra: 1,
  13332. bottom: 0.019
  13333. }
  13334. },
  13335. frontArmored: {
  13336. height: math.unit(6, "feet"),
  13337. weight: math.unit(150, "lb"),
  13338. name: "Front (Armored)",
  13339. image: {
  13340. source: "./media/characters/umeko/front-armored.svg",
  13341. extra: 1,
  13342. bottom: 0.021
  13343. }
  13344. },
  13345. },
  13346. [
  13347. {
  13348. name: "Macro",
  13349. height: math.unit(220, "feet"),
  13350. default: true
  13351. },
  13352. {
  13353. name: "Guardian Dragon",
  13354. height: math.unit(50, "miles")
  13355. },
  13356. {
  13357. name: "Cosmic",
  13358. height: math.unit(800000, "miles")
  13359. },
  13360. ]
  13361. ))
  13362. characterMakers.push(() => makeCharacter(
  13363. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13364. {
  13365. front: {
  13366. height: math.unit(6, "feet"),
  13367. weight: math.unit(150, "lb"),
  13368. name: "Front",
  13369. image: {
  13370. source: "./media/characters/cassidy/front.svg",
  13371. extra: 1,
  13372. bottom: 0.043
  13373. }
  13374. },
  13375. },
  13376. [
  13377. {
  13378. name: "Canon Height",
  13379. height: math.unit(120, "feet"),
  13380. default: true
  13381. },
  13382. {
  13383. name: "Macro+",
  13384. height: math.unit(400, "feet")
  13385. },
  13386. {
  13387. name: "Macro++",
  13388. height: math.unit(4000, "feet")
  13389. },
  13390. {
  13391. name: "Megamacro",
  13392. height: math.unit(3, "miles")
  13393. },
  13394. ]
  13395. ))
  13396. characterMakers.push(() => makeCharacter(
  13397. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13398. {
  13399. front: {
  13400. height: math.unit(6, "feet"),
  13401. weight: math.unit(150, "lb"),
  13402. name: "Front",
  13403. image: {
  13404. source: "./media/characters/isaac/front.svg",
  13405. extra: 896 / 815,
  13406. bottom: 0.11
  13407. }
  13408. },
  13409. },
  13410. [
  13411. {
  13412. name: "Human Size",
  13413. height: math.unit(8, "feet"),
  13414. default: true
  13415. },
  13416. {
  13417. name: "Macro",
  13418. height: math.unit(400, "feet")
  13419. },
  13420. {
  13421. name: "Megamacro",
  13422. height: math.unit(50, "miles")
  13423. },
  13424. {
  13425. name: "Canon Height",
  13426. height: math.unit(200, "AU")
  13427. },
  13428. ]
  13429. ))
  13430. characterMakers.push(() => makeCharacter(
  13431. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13432. {
  13433. front: {
  13434. height: math.unit(6, "feet"),
  13435. weight: math.unit(72, "kg"),
  13436. name: "Front",
  13437. image: {
  13438. source: "./media/characters/sleekit/front.svg",
  13439. extra: 4693 / 4487,
  13440. bottom: 0.012
  13441. }
  13442. },
  13443. },
  13444. [
  13445. {
  13446. name: "Minimum Height",
  13447. height: math.unit(10, "meters")
  13448. },
  13449. {
  13450. name: "Smaller",
  13451. height: math.unit(25, "meters")
  13452. },
  13453. {
  13454. name: "Larger",
  13455. height: math.unit(38, "meters"),
  13456. default: true
  13457. },
  13458. {
  13459. name: "Maximum height",
  13460. height: math.unit(100, "meters")
  13461. },
  13462. ]
  13463. ))
  13464. characterMakers.push(() => makeCharacter(
  13465. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13466. {
  13467. front: {
  13468. height: math.unit(6, "feet"),
  13469. weight: math.unit(150, "lb"),
  13470. name: "Front",
  13471. image: {
  13472. source: "./media/characters/nillia/front.svg",
  13473. extra: 2195 / 2037,
  13474. bottom: 0.005
  13475. }
  13476. },
  13477. back: {
  13478. height: math.unit(6, "feet"),
  13479. weight: math.unit(150, "lb"),
  13480. name: "Back",
  13481. image: {
  13482. source: "./media/characters/nillia/back.svg",
  13483. extra: 2195 / 2037,
  13484. bottom: 0.005
  13485. }
  13486. },
  13487. },
  13488. [
  13489. {
  13490. name: "Canon Height",
  13491. height: math.unit(489, "feet"),
  13492. default: true
  13493. }
  13494. ]
  13495. ))
  13496. characterMakers.push(() => makeCharacter(
  13497. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], 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/mesmyriza/front.svg",
  13505. extra: 2067 / 1784,
  13506. bottom: 0.035
  13507. }
  13508. },
  13509. foot: {
  13510. height: math.unit(6 / (250 / 35), "feet"),
  13511. name: "Foot",
  13512. image: {
  13513. source: "./media/characters/mesmyriza/foot.svg"
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Macro",
  13520. height: math.unit(457, "meters"),
  13521. default: true
  13522. },
  13523. {
  13524. name: "Megamacro",
  13525. height: math.unit(8, "megameters")
  13526. },
  13527. ]
  13528. ))
  13529. characterMakers.push(() => makeCharacter(
  13530. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13531. {
  13532. front: {
  13533. height: math.unit(6, "feet"),
  13534. weight: math.unit(250, "lb"),
  13535. name: "Front",
  13536. image: {
  13537. source: "./media/characters/saudade/front.svg",
  13538. extra: 1172 / 1139,
  13539. bottom: 0.035
  13540. }
  13541. },
  13542. },
  13543. [
  13544. {
  13545. name: "Micro",
  13546. height: math.unit(3, "inches")
  13547. },
  13548. {
  13549. name: "Normal",
  13550. height: math.unit(6, "feet"),
  13551. default: true
  13552. },
  13553. {
  13554. name: "Macro",
  13555. height: math.unit(50, "feet")
  13556. },
  13557. {
  13558. name: "Megamacro",
  13559. height: math.unit(2800, "feet")
  13560. },
  13561. ]
  13562. ))
  13563. characterMakers.push(() => makeCharacter(
  13564. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13565. {
  13566. front: {
  13567. height: math.unit(5 + 4 / 12, "feet"),
  13568. weight: math.unit(100, "lb"),
  13569. name: "Front",
  13570. image: {
  13571. source: "./media/characters/keireer/front.svg",
  13572. extra: 716 / 666,
  13573. bottom: 0.05
  13574. }
  13575. },
  13576. },
  13577. [
  13578. {
  13579. name: "Normal",
  13580. height: math.unit(5 + 4 / 12, "feet"),
  13581. default: true
  13582. },
  13583. ]
  13584. ))
  13585. characterMakers.push(() => makeCharacter(
  13586. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13587. {
  13588. front: {
  13589. height: math.unit(6, "feet"),
  13590. weight: math.unit(90, "kg"),
  13591. name: "Front",
  13592. image: {
  13593. source: "./media/characters/mirja/front.svg",
  13594. extra: 1789 / 1683,
  13595. bottom: 0.05
  13596. }
  13597. },
  13598. frontDressed: {
  13599. height: math.unit(6, "feet"),
  13600. weight: math.unit(90, "lb"),
  13601. name: "Front (Dressed)",
  13602. image: {
  13603. source: "./media/characters/mirja/front-dressed.svg",
  13604. extra: 1789 / 1683,
  13605. bottom: 0.05
  13606. }
  13607. },
  13608. back: {
  13609. height: math.unit(6, "feet"),
  13610. weight: math.unit(90, "lb"),
  13611. name: "Back",
  13612. image: {
  13613. source: "./media/characters/mirja/back.svg",
  13614. extra: 953 / 917,
  13615. bottom: 0.017
  13616. }
  13617. },
  13618. },
  13619. [
  13620. {
  13621. name: "\"Incognito\"",
  13622. height: math.unit(3, "meters")
  13623. },
  13624. {
  13625. name: "Strolling Size",
  13626. height: math.unit(15, "km")
  13627. },
  13628. {
  13629. name: "Larger Strolling Size",
  13630. height: math.unit(400, "km")
  13631. },
  13632. {
  13633. name: "Preferred Size",
  13634. height: math.unit(5000, "km")
  13635. },
  13636. {
  13637. name: "True Size",
  13638. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13639. default: true
  13640. },
  13641. ]
  13642. ))
  13643. characterMakers.push(() => makeCharacter(
  13644. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13645. {
  13646. front: {
  13647. height: math.unit(15, "feet"),
  13648. weight: math.unit(880, "kg"),
  13649. name: "Front",
  13650. image: {
  13651. source: "./media/characters/nightraver/front.svg",
  13652. extra: 2444 / 2160,
  13653. bottom: 0.027
  13654. }
  13655. },
  13656. back: {
  13657. height: math.unit(15, "feet"),
  13658. weight: math.unit(880, "kg"),
  13659. name: "Back",
  13660. image: {
  13661. source: "./media/characters/nightraver/back.svg",
  13662. extra: 2309 / 2180,
  13663. bottom: 0.005
  13664. }
  13665. },
  13666. sole: {
  13667. height: math.unit(2.878, "feet"),
  13668. name: "Sole",
  13669. image: {
  13670. source: "./media/characters/nightraver/sole.svg"
  13671. }
  13672. },
  13673. foot: {
  13674. height: math.unit(2.285, "feet"),
  13675. name: "Foot",
  13676. image: {
  13677. source: "./media/characters/nightraver/foot.svg"
  13678. }
  13679. },
  13680. maw: {
  13681. height: math.unit(2.67, "feet"),
  13682. name: "Maw",
  13683. image: {
  13684. source: "./media/characters/nightraver/maw.svg"
  13685. }
  13686. },
  13687. },
  13688. [
  13689. {
  13690. name: "Micro",
  13691. height: math.unit(1, "cm")
  13692. },
  13693. {
  13694. name: "Normal",
  13695. height: math.unit(15, "feet"),
  13696. default: true
  13697. },
  13698. {
  13699. name: "Macro",
  13700. height: math.unit(300, "feet")
  13701. },
  13702. {
  13703. name: "Megamacro",
  13704. height: math.unit(300, "miles")
  13705. },
  13706. {
  13707. name: "Gigamacro",
  13708. height: math.unit(10000, "miles")
  13709. },
  13710. ]
  13711. ))
  13712. characterMakers.push(() => makeCharacter(
  13713. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13714. {
  13715. side: {
  13716. height: math.unit(2, "inches"),
  13717. weight: math.unit(5, "grams"),
  13718. name: "Side",
  13719. image: {
  13720. source: "./media/characters/arc/side.svg"
  13721. }
  13722. },
  13723. },
  13724. [
  13725. {
  13726. name: "Micro",
  13727. height: math.unit(2, "inches"),
  13728. default: true
  13729. },
  13730. ]
  13731. ))
  13732. characterMakers.push(() => makeCharacter(
  13733. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13734. {
  13735. front: {
  13736. height: math.unit(1.1938, "meters"),
  13737. weight: math.unit(54, "kg"),
  13738. name: "Front",
  13739. image: {
  13740. source: "./media/characters/nebula-shahar/front.svg",
  13741. extra: 1642 / 1436,
  13742. bottom: 0.06
  13743. }
  13744. },
  13745. },
  13746. [
  13747. {
  13748. name: "Megamicro",
  13749. height: math.unit(0.3, "mm")
  13750. },
  13751. {
  13752. name: "Micro",
  13753. height: math.unit(3, "cm")
  13754. },
  13755. {
  13756. name: "Normal",
  13757. height: math.unit(138, "cm"),
  13758. default: true
  13759. },
  13760. {
  13761. name: "Macro",
  13762. height: math.unit(30, "m")
  13763. },
  13764. ]
  13765. ))
  13766. characterMakers.push(() => makeCharacter(
  13767. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13768. {
  13769. front: {
  13770. height: math.unit(5.24, "feet"),
  13771. weight: math.unit(150, "lb"),
  13772. name: "Front",
  13773. image: {
  13774. source: "./media/characters/shayla/front.svg",
  13775. extra: 1512 / 1414,
  13776. bottom: 0.01
  13777. }
  13778. },
  13779. back: {
  13780. height: math.unit(5.24, "feet"),
  13781. weight: math.unit(150, "lb"),
  13782. name: "Back",
  13783. image: {
  13784. source: "./media/characters/shayla/back.svg",
  13785. extra: 1512 / 1414
  13786. }
  13787. },
  13788. hand: {
  13789. height: math.unit(0.7781496062992126, "feet"),
  13790. name: "Hand",
  13791. image: {
  13792. source: "./media/characters/shayla/hand.svg"
  13793. }
  13794. },
  13795. foot: {
  13796. height: math.unit(1.4206036745406823, "feet"),
  13797. name: "Foot",
  13798. image: {
  13799. source: "./media/characters/shayla/foot.svg"
  13800. }
  13801. },
  13802. },
  13803. [
  13804. {
  13805. name: "Micro",
  13806. height: math.unit(0.32, "feet")
  13807. },
  13808. {
  13809. name: "Normal",
  13810. height: math.unit(5.24, "feet"),
  13811. default: true
  13812. },
  13813. {
  13814. name: "Macro",
  13815. height: math.unit(492.12, "feet")
  13816. },
  13817. {
  13818. name: "Megamacro",
  13819. height: math.unit(186.41, "miles")
  13820. },
  13821. ]
  13822. ))
  13823. characterMakers.push(() => makeCharacter(
  13824. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13825. {
  13826. front: {
  13827. height: math.unit(2.2, "m"),
  13828. weight: math.unit(120, "kg"),
  13829. name: "Front",
  13830. image: {
  13831. source: "./media/characters/pia-jr/front.svg",
  13832. extra: 1000 / 970,
  13833. bottom: 0.035
  13834. }
  13835. },
  13836. hand: {
  13837. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13838. name: "Hand",
  13839. image: {
  13840. source: "./media/characters/pia-jr/hand.svg"
  13841. }
  13842. },
  13843. paw: {
  13844. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13845. name: "Paw",
  13846. image: {
  13847. source: "./media/characters/pia-jr/paw.svg"
  13848. }
  13849. },
  13850. },
  13851. [
  13852. {
  13853. name: "Micro",
  13854. height: math.unit(1.2, "cm")
  13855. },
  13856. {
  13857. name: "Normal",
  13858. height: math.unit(2.2, "m"),
  13859. default: true
  13860. },
  13861. {
  13862. name: "Macro",
  13863. height: math.unit(180, "m")
  13864. },
  13865. {
  13866. name: "Megamacro",
  13867. height: math.unit(420, "km")
  13868. },
  13869. ]
  13870. ))
  13871. characterMakers.push(() => makeCharacter(
  13872. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13873. {
  13874. front: {
  13875. height: math.unit(2, "m"),
  13876. weight: math.unit(115, "kg"),
  13877. name: "Front",
  13878. image: {
  13879. source: "./media/characters/pia-sr/front.svg",
  13880. extra: 760 / 730,
  13881. bottom: 0.015
  13882. }
  13883. },
  13884. back: {
  13885. height: math.unit(2, "m"),
  13886. weight: math.unit(115, "kg"),
  13887. name: "Back",
  13888. image: {
  13889. source: "./media/characters/pia-sr/back.svg",
  13890. extra: 760 / 730,
  13891. bottom: 0.01
  13892. }
  13893. },
  13894. hand: {
  13895. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13896. name: "Hand",
  13897. image: {
  13898. source: "./media/characters/pia-sr/hand.svg"
  13899. }
  13900. },
  13901. foot: {
  13902. height: math.unit(1.83, "feet"),
  13903. name: "Foot",
  13904. image: {
  13905. source: "./media/characters/pia-sr/foot.svg"
  13906. }
  13907. },
  13908. },
  13909. [
  13910. {
  13911. name: "Micro",
  13912. height: math.unit(88, "mm")
  13913. },
  13914. {
  13915. name: "Normal",
  13916. height: math.unit(2, "m"),
  13917. default: true
  13918. },
  13919. {
  13920. name: "Macro",
  13921. height: math.unit(200, "m")
  13922. },
  13923. {
  13924. name: "Megamacro",
  13925. height: math.unit(420, "km")
  13926. },
  13927. ]
  13928. ))
  13929. characterMakers.push(() => makeCharacter(
  13930. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13931. {
  13932. front: {
  13933. height: math.unit(8 + 2 / 12, "feet"),
  13934. weight: math.unit(300, "lb"),
  13935. name: "Front",
  13936. image: {
  13937. source: "./media/characters/kibibyte/front.svg",
  13938. extra: 2221 / 2098,
  13939. bottom: 0.04
  13940. }
  13941. },
  13942. },
  13943. [
  13944. {
  13945. name: "Normal",
  13946. height: math.unit(8 + 2 / 12, "feet"),
  13947. default: true
  13948. },
  13949. {
  13950. name: "Socialable Macro",
  13951. height: math.unit(50, "feet")
  13952. },
  13953. {
  13954. name: "Macro",
  13955. height: math.unit(300, "feet")
  13956. },
  13957. {
  13958. name: "Megamacro",
  13959. height: math.unit(500, "miles")
  13960. },
  13961. ]
  13962. ))
  13963. characterMakers.push(() => makeCharacter(
  13964. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13965. {
  13966. front: {
  13967. height: math.unit(6, "feet"),
  13968. weight: math.unit(150, "lb"),
  13969. name: "Front",
  13970. image: {
  13971. source: "./media/characters/felix/front.svg",
  13972. extra: 762 / 722,
  13973. bottom: 0.02
  13974. }
  13975. },
  13976. frontClothed: {
  13977. height: math.unit(6, "feet"),
  13978. weight: math.unit(150, "lb"),
  13979. name: "Front (Clothed)",
  13980. image: {
  13981. source: "./media/characters/felix/front-clothed.svg",
  13982. extra: 762 / 722,
  13983. bottom: 0.02
  13984. }
  13985. },
  13986. },
  13987. [
  13988. {
  13989. name: "Normal",
  13990. height: math.unit(6 + 8 / 12, "feet"),
  13991. default: true
  13992. },
  13993. {
  13994. name: "Macro",
  13995. height: math.unit(2600, "feet")
  13996. },
  13997. {
  13998. name: "Megamacro",
  13999. height: math.unit(450, "miles")
  14000. },
  14001. ]
  14002. ))
  14003. characterMakers.push(() => makeCharacter(
  14004. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14005. {
  14006. front: {
  14007. height: math.unit(6 + 1 / 12, "feet"),
  14008. weight: math.unit(250, "lb"),
  14009. name: "Front",
  14010. image: {
  14011. source: "./media/characters/tobo/front.svg",
  14012. extra: 608 / 586,
  14013. bottom: 0.023
  14014. }
  14015. },
  14016. back: {
  14017. height: math.unit(6 + 1 / 12, "feet"),
  14018. weight: math.unit(250, "lb"),
  14019. name: "Back",
  14020. image: {
  14021. source: "./media/characters/tobo/back.svg",
  14022. extra: 608 / 586
  14023. }
  14024. },
  14025. },
  14026. [
  14027. {
  14028. name: "Nano",
  14029. height: math.unit(2, "nm")
  14030. },
  14031. {
  14032. name: "Megamicro",
  14033. height: math.unit(0.1, "mm")
  14034. },
  14035. {
  14036. name: "Micro",
  14037. height: math.unit(1, "inch"),
  14038. default: true
  14039. },
  14040. {
  14041. name: "Human-sized",
  14042. height: math.unit(6 + 1 / 12, "feet")
  14043. },
  14044. {
  14045. name: "Macro",
  14046. height: math.unit(250, "feet")
  14047. },
  14048. {
  14049. name: "Megamacro",
  14050. height: math.unit(75, "miles")
  14051. },
  14052. {
  14053. name: "Texas-sized",
  14054. height: math.unit(750, "miles")
  14055. },
  14056. {
  14057. name: "Teramacro",
  14058. height: math.unit(50000, "miles")
  14059. },
  14060. ]
  14061. ))
  14062. characterMakers.push(() => makeCharacter(
  14063. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14064. {
  14065. front: {
  14066. height: math.unit(6, "feet"),
  14067. weight: math.unit(269, "lb"),
  14068. name: "Front",
  14069. image: {
  14070. source: "./media/characters/danny-kapowsky/front.svg",
  14071. extra: 766 / 736,
  14072. bottom: 0.044
  14073. }
  14074. },
  14075. back: {
  14076. height: math.unit(6, "feet"),
  14077. weight: math.unit(269, "lb"),
  14078. name: "Back",
  14079. image: {
  14080. source: "./media/characters/danny-kapowsky/back.svg",
  14081. extra: 797 / 760,
  14082. bottom: 0.025
  14083. }
  14084. },
  14085. },
  14086. [
  14087. {
  14088. name: "Macro",
  14089. height: math.unit(150, "feet"),
  14090. default: true
  14091. },
  14092. {
  14093. name: "Macro+",
  14094. height: math.unit(200, "feet")
  14095. },
  14096. {
  14097. name: "Macro++",
  14098. height: math.unit(300, "feet")
  14099. },
  14100. {
  14101. name: "Macro+++",
  14102. height: math.unit(400, "feet")
  14103. },
  14104. ]
  14105. ))
  14106. characterMakers.push(() => makeCharacter(
  14107. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14108. {
  14109. side: {
  14110. height: math.unit(6, "feet"),
  14111. weight: math.unit(170, "lb"),
  14112. name: "Side",
  14113. image: {
  14114. source: "./media/characters/finn/side.svg",
  14115. extra: 1953 / 1807,
  14116. bottom: 0.057
  14117. }
  14118. },
  14119. },
  14120. [
  14121. {
  14122. name: "Megamacro",
  14123. height: math.unit(14445, "feet"),
  14124. default: true
  14125. },
  14126. ]
  14127. ))
  14128. characterMakers.push(() => makeCharacter(
  14129. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14130. {
  14131. front: {
  14132. height: math.unit(5 + 6 / 12, "feet"),
  14133. weight: math.unit(125, "lb"),
  14134. name: "Front",
  14135. image: {
  14136. source: "./media/characters/roy/front.svg",
  14137. extra: 1,
  14138. bottom: 0.11
  14139. }
  14140. },
  14141. },
  14142. [
  14143. {
  14144. name: "Micro",
  14145. height: math.unit(3, "inches"),
  14146. default: true
  14147. },
  14148. {
  14149. name: "Normal",
  14150. height: math.unit(5 + 6 / 12, "feet")
  14151. },
  14152. {
  14153. name: "Lesser Macro",
  14154. height: math.unit(60, "feet")
  14155. },
  14156. {
  14157. name: "Greater Macro",
  14158. height: math.unit(120, "feet")
  14159. },
  14160. ]
  14161. ))
  14162. characterMakers.push(() => makeCharacter(
  14163. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14164. {
  14165. front: {
  14166. height: math.unit(6, "feet"),
  14167. weight: math.unit(100, "lb"),
  14168. name: "Front",
  14169. image: {
  14170. source: "./media/characters/aevsivs/front.svg",
  14171. extra: 1,
  14172. bottom: 0.03
  14173. }
  14174. },
  14175. back: {
  14176. height: math.unit(6, "feet"),
  14177. weight: math.unit(100, "lb"),
  14178. name: "Back",
  14179. image: {
  14180. source: "./media/characters/aevsivs/back.svg"
  14181. }
  14182. },
  14183. },
  14184. [
  14185. {
  14186. name: "Micro",
  14187. height: math.unit(2, "inches"),
  14188. default: true
  14189. },
  14190. {
  14191. name: "Normal",
  14192. height: math.unit(5, "feet")
  14193. },
  14194. ]
  14195. ))
  14196. characterMakers.push(() => makeCharacter(
  14197. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14198. {
  14199. front: {
  14200. height: math.unit(5 + 7 / 12, "feet"),
  14201. weight: math.unit(159, "lb"),
  14202. name: "Front",
  14203. image: {
  14204. source: "./media/characters/hildegard/front.svg",
  14205. extra: 289 / 269,
  14206. bottom: 7.63 / 297.8
  14207. }
  14208. },
  14209. back: {
  14210. height: math.unit(5 + 7 / 12, "feet"),
  14211. weight: math.unit(159, "lb"),
  14212. name: "Back",
  14213. image: {
  14214. source: "./media/characters/hildegard/back.svg",
  14215. extra: 280 / 260,
  14216. bottom: 2.3 / 282
  14217. }
  14218. },
  14219. },
  14220. [
  14221. {
  14222. name: "Normal",
  14223. height: math.unit(5 + 7 / 12, "feet"),
  14224. default: true
  14225. },
  14226. ]
  14227. ))
  14228. characterMakers.push(() => makeCharacter(
  14229. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14230. {
  14231. bernard: {
  14232. height: math.unit(2 + 7 / 12, "feet"),
  14233. weight: math.unit(66, "lb"),
  14234. name: "Bernard",
  14235. rename: true,
  14236. image: {
  14237. source: "./media/characters/bernard-wilder/bernard.svg",
  14238. extra: 192 / 128,
  14239. bottom: 0.05
  14240. }
  14241. },
  14242. wilder: {
  14243. height: math.unit(5 + 8 / 12, "feet"),
  14244. weight: math.unit(143, "lb"),
  14245. name: "Wilder",
  14246. rename: true,
  14247. image: {
  14248. source: "./media/characters/bernard-wilder/wilder.svg",
  14249. extra: 361 / 312,
  14250. bottom: 0.02
  14251. }
  14252. },
  14253. },
  14254. [
  14255. {
  14256. name: "Normal",
  14257. height: math.unit(2 + 7 / 12, "feet"),
  14258. default: true
  14259. },
  14260. ]
  14261. ))
  14262. characterMakers.push(() => makeCharacter(
  14263. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14264. {
  14265. anthro: {
  14266. height: math.unit(6 + 1 / 12, "feet"),
  14267. weight: math.unit(155, "lb"),
  14268. name: "Anthro",
  14269. image: {
  14270. source: "./media/characters/hearth/anthro.svg",
  14271. extra: 260 / 250,
  14272. bottom: 0.02
  14273. }
  14274. },
  14275. feral: {
  14276. height: math.unit(3.78, "feet"),
  14277. weight: math.unit(35, "kg"),
  14278. name: "Feral",
  14279. image: {
  14280. source: "./media/characters/hearth/feral.svg",
  14281. extra: 153 / 135,
  14282. bottom: 0.03
  14283. }
  14284. },
  14285. },
  14286. [
  14287. {
  14288. name: "Normal",
  14289. height: math.unit(6 + 1 / 12, "feet"),
  14290. default: true
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14296. {
  14297. front: {
  14298. height: math.unit(6, "feet"),
  14299. weight: math.unit(182, "lb"),
  14300. name: "Front",
  14301. image: {
  14302. source: "./media/characters/ingrid/front.svg",
  14303. extra: 294 / 268,
  14304. bottom: 0.027
  14305. }
  14306. },
  14307. },
  14308. [
  14309. {
  14310. name: "Normal",
  14311. height: math.unit(6, "feet"),
  14312. default: true
  14313. },
  14314. ]
  14315. ))
  14316. characterMakers.push(() => makeCharacter(
  14317. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14318. {
  14319. eevee: {
  14320. height: math.unit(2 + 10 / 12, "feet"),
  14321. weight: math.unit(86, "lb"),
  14322. name: "Malgam",
  14323. image: {
  14324. source: "./media/characters/malgam/eevee.svg",
  14325. extra: 218 / 180,
  14326. bottom: 0.2
  14327. }
  14328. },
  14329. sylveon: {
  14330. height: math.unit(4, "feet"),
  14331. weight: math.unit(101, "lb"),
  14332. name: "Future Malgam",
  14333. rename: true,
  14334. image: {
  14335. source: "./media/characters/malgam/sylveon.svg",
  14336. extra: 371 / 325,
  14337. bottom: 0.015
  14338. }
  14339. },
  14340. gigantamax: {
  14341. height: math.unit(50, "feet"),
  14342. name: "Gigantamax Malgam",
  14343. rename: true,
  14344. image: {
  14345. source: "./media/characters/malgam/gigantamax.svg"
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Normal",
  14352. height: math.unit(2 + 10 / 12, "feet"),
  14353. default: true
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14359. {
  14360. front: {
  14361. height: math.unit(5 + 11 / 12, "feet"),
  14362. weight: math.unit(188, "lb"),
  14363. name: "Front",
  14364. image: {
  14365. source: "./media/characters/fleur/front.svg",
  14366. extra: 309 / 283,
  14367. bottom: 0.007
  14368. }
  14369. },
  14370. },
  14371. [
  14372. {
  14373. name: "Normal",
  14374. height: math.unit(5 + 11 / 12, "feet"),
  14375. default: true
  14376. },
  14377. ]
  14378. ))
  14379. characterMakers.push(() => makeCharacter(
  14380. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14381. {
  14382. front: {
  14383. height: math.unit(5 + 4 / 12, "feet"),
  14384. weight: math.unit(122, "lb"),
  14385. name: "Front",
  14386. image: {
  14387. source: "./media/characters/jude/front.svg",
  14388. extra: 288 / 273,
  14389. bottom: 0.03
  14390. }
  14391. },
  14392. },
  14393. [
  14394. {
  14395. name: "Normal",
  14396. height: math.unit(5 + 4 / 12, "feet"),
  14397. default: true
  14398. },
  14399. ]
  14400. ))
  14401. characterMakers.push(() => makeCharacter(
  14402. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14403. {
  14404. front: {
  14405. height: math.unit(5 + 11 / 12, "feet"),
  14406. weight: math.unit(190, "lb"),
  14407. name: "Front",
  14408. image: {
  14409. source: "./media/characters/seara/front.svg",
  14410. extra: 1,
  14411. bottom: 0.05
  14412. }
  14413. },
  14414. },
  14415. [
  14416. {
  14417. name: "Normal",
  14418. height: math.unit(5 + 11 / 12, "feet"),
  14419. default: true
  14420. },
  14421. ]
  14422. ))
  14423. characterMakers.push(() => makeCharacter(
  14424. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14425. {
  14426. front: {
  14427. height: math.unit(16 + 5 / 12, "feet"),
  14428. weight: math.unit(524, "lb"),
  14429. name: "Front",
  14430. image: {
  14431. source: "./media/characters/caspian/front.svg",
  14432. extra: 1,
  14433. bottom: 0.04
  14434. }
  14435. },
  14436. },
  14437. [
  14438. {
  14439. name: "Normal",
  14440. height: math.unit(16 + 5 / 12, "feet"),
  14441. default: true
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14447. {
  14448. front: {
  14449. height: math.unit(5 + 7 / 12, "feet"),
  14450. weight: math.unit(170, "lb"),
  14451. name: "Front",
  14452. image: {
  14453. source: "./media/characters/mika/front.svg",
  14454. extra: 1,
  14455. bottom: 0.016
  14456. }
  14457. },
  14458. },
  14459. [
  14460. {
  14461. name: "Normal",
  14462. height: math.unit(5 + 7 / 12, "feet"),
  14463. default: true
  14464. },
  14465. ]
  14466. ))
  14467. characterMakers.push(() => makeCharacter(
  14468. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14469. {
  14470. front: {
  14471. height: math.unit(6 + 2 / 12, "feet"),
  14472. weight: math.unit(268, "lb"),
  14473. name: "Front",
  14474. image: {
  14475. source: "./media/characters/sol/front.svg",
  14476. extra: 247 / 231,
  14477. bottom: 0.05
  14478. }
  14479. },
  14480. },
  14481. [
  14482. {
  14483. name: "Normal",
  14484. height: math.unit(6 + 2 / 12, "feet"),
  14485. default: true
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14491. {
  14492. buizel: {
  14493. height: math.unit(2 + 5 / 12, "feet"),
  14494. weight: math.unit(87, "lb"),
  14495. name: "Buizel",
  14496. image: {
  14497. source: "./media/characters/umiko/buizel.svg",
  14498. extra: 172 / 157,
  14499. bottom: 0.01
  14500. }
  14501. },
  14502. floatzel: {
  14503. height: math.unit(5 + 9 / 12, "feet"),
  14504. weight: math.unit(250, "lb"),
  14505. name: "Floatzel",
  14506. image: {
  14507. source: "./media/characters/umiko/floatzel.svg",
  14508. extra: 262 / 248
  14509. }
  14510. },
  14511. },
  14512. [
  14513. {
  14514. name: "Normal",
  14515. height: math.unit(2 + 5 / 12, "feet"),
  14516. default: true
  14517. },
  14518. ]
  14519. ))
  14520. characterMakers.push(() => makeCharacter(
  14521. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14522. {
  14523. front: {
  14524. height: math.unit(6 + 2 / 12, "feet"),
  14525. weight: math.unit(146, "lb"),
  14526. name: "Front",
  14527. image: {
  14528. source: "./media/characters/iliac/front.svg",
  14529. extra: 389 / 365,
  14530. bottom: 0.035
  14531. }
  14532. },
  14533. },
  14534. [
  14535. {
  14536. name: "Normal",
  14537. height: math.unit(6 + 2 / 12, "feet"),
  14538. default: true
  14539. },
  14540. ]
  14541. ))
  14542. characterMakers.push(() => makeCharacter(
  14543. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14544. {
  14545. front: {
  14546. height: math.unit(6, "feet"),
  14547. weight: math.unit(170, "lb"),
  14548. name: "Front",
  14549. image: {
  14550. source: "./media/characters/topaz/front.svg",
  14551. extra: 317 / 303,
  14552. bottom: 0.055
  14553. }
  14554. },
  14555. },
  14556. [
  14557. {
  14558. name: "Normal",
  14559. height: math.unit(6, "feet"),
  14560. default: true
  14561. },
  14562. ]
  14563. ))
  14564. characterMakers.push(() => makeCharacter(
  14565. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14566. {
  14567. front: {
  14568. height: math.unit(5 + 11 / 12, "feet"),
  14569. weight: math.unit(144, "lb"),
  14570. name: "Front",
  14571. image: {
  14572. source: "./media/characters/gabriel/front.svg",
  14573. extra: 285 / 262,
  14574. bottom: 0.004
  14575. }
  14576. },
  14577. },
  14578. [
  14579. {
  14580. name: "Normal",
  14581. height: math.unit(5 + 11 / 12, "feet"),
  14582. default: true
  14583. },
  14584. ]
  14585. ))
  14586. characterMakers.push(() => makeCharacter(
  14587. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14588. {
  14589. side: {
  14590. height: math.unit(6 + 5 / 12, "feet"),
  14591. weight: math.unit(300, "lb"),
  14592. name: "Side",
  14593. image: {
  14594. source: "./media/characters/tempest-suicune/side.svg",
  14595. extra: 195 / 154,
  14596. bottom: 0.04
  14597. }
  14598. },
  14599. },
  14600. [
  14601. {
  14602. name: "Normal",
  14603. height: math.unit(6 + 5 / 12, "feet"),
  14604. default: true
  14605. },
  14606. ]
  14607. ))
  14608. characterMakers.push(() => makeCharacter(
  14609. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14610. {
  14611. front: {
  14612. height: math.unit(7 + 2 / 12, "feet"),
  14613. weight: math.unit(322, "lb"),
  14614. name: "Front",
  14615. image: {
  14616. source: "./media/characters/vulcan/front.svg",
  14617. extra: 154 / 147,
  14618. bottom: 0.04
  14619. }
  14620. },
  14621. },
  14622. [
  14623. {
  14624. name: "Normal",
  14625. height: math.unit(7 + 2 / 12, "feet"),
  14626. default: true
  14627. },
  14628. ]
  14629. ))
  14630. characterMakers.push(() => makeCharacter(
  14631. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14632. {
  14633. front: {
  14634. height: math.unit(5 + 10 / 12, "feet"),
  14635. weight: math.unit(264, "lb"),
  14636. name: "Front",
  14637. image: {
  14638. source: "./media/characters/gault/front.svg",
  14639. extra: 161 / 140,
  14640. bottom: 0.028
  14641. }
  14642. },
  14643. },
  14644. [
  14645. {
  14646. name: "Normal",
  14647. height: math.unit(5 + 10 / 12, "feet"),
  14648. default: true
  14649. },
  14650. ]
  14651. ))
  14652. characterMakers.push(() => makeCharacter(
  14653. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14654. {
  14655. front: {
  14656. height: math.unit(6, "feet"),
  14657. weight: math.unit(150, "lb"),
  14658. name: "Front",
  14659. image: {
  14660. source: "./media/characters/shard/front.svg",
  14661. extra: 273 / 238,
  14662. bottom: 0.02
  14663. }
  14664. },
  14665. },
  14666. [
  14667. {
  14668. name: "Normal",
  14669. height: math.unit(3 + 6 / 12, "feet"),
  14670. default: true
  14671. },
  14672. ]
  14673. ))
  14674. characterMakers.push(() => makeCharacter(
  14675. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14676. {
  14677. front: {
  14678. height: math.unit(5 + 11 / 12, "feet"),
  14679. weight: math.unit(146, "lb"),
  14680. name: "Front",
  14681. image: {
  14682. source: "./media/characters/ashe/front.svg",
  14683. extra: 400 / 373,
  14684. bottom: 0.01
  14685. }
  14686. },
  14687. },
  14688. [
  14689. {
  14690. name: "Normal",
  14691. height: math.unit(5 + 11 / 12, "feet"),
  14692. default: true
  14693. },
  14694. ]
  14695. ))
  14696. characterMakers.push(() => makeCharacter(
  14697. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14698. {
  14699. front: {
  14700. height: math.unit(5 + 5 / 12, "feet"),
  14701. weight: math.unit(135, "lb"),
  14702. name: "Front",
  14703. image: {
  14704. source: "./media/characters/beatrix/front.svg",
  14705. extra: 392 / 379,
  14706. bottom: 0.01
  14707. }
  14708. },
  14709. },
  14710. [
  14711. {
  14712. name: "Normal",
  14713. height: math.unit(6, "feet"),
  14714. default: true
  14715. },
  14716. ]
  14717. ))
  14718. characterMakers.push(() => makeCharacter(
  14719. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14720. {
  14721. front: {
  14722. height: math.unit(6, "feet"),
  14723. weight: math.unit(150, "lb"),
  14724. name: "Front",
  14725. image: {
  14726. source: "./media/characters/ignatius/front.svg",
  14727. extra: 245 / 222,
  14728. bottom: 0.01
  14729. }
  14730. },
  14731. },
  14732. [
  14733. {
  14734. name: "Normal",
  14735. height: math.unit(5 + 5 / 12, "feet"),
  14736. default: true
  14737. },
  14738. ]
  14739. ))
  14740. characterMakers.push(() => makeCharacter(
  14741. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14742. {
  14743. front: {
  14744. height: math.unit(6 + 2 / 12, "feet"),
  14745. weight: math.unit(138, "lb"),
  14746. name: "Front",
  14747. image: {
  14748. source: "./media/characters/mei-li/front.svg",
  14749. extra: 237 / 229,
  14750. bottom: 0.03
  14751. }
  14752. },
  14753. },
  14754. [
  14755. {
  14756. name: "Normal",
  14757. height: math.unit(6 + 2 / 12, "feet"),
  14758. default: true
  14759. },
  14760. ]
  14761. ))
  14762. characterMakers.push(() => makeCharacter(
  14763. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14764. {
  14765. front: {
  14766. height: math.unit(2 + 4 / 12, "feet"),
  14767. weight: math.unit(62, "lb"),
  14768. name: "Front",
  14769. image: {
  14770. source: "./media/characters/puru/front.svg",
  14771. extra: 206 / 149,
  14772. bottom: 0.06
  14773. }
  14774. },
  14775. },
  14776. [
  14777. {
  14778. name: "Normal",
  14779. height: math.unit(2 + 4 / 12, "feet"),
  14780. default: true
  14781. },
  14782. ]
  14783. ))
  14784. characterMakers.push(() => makeCharacter(
  14785. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14786. {
  14787. taur: {
  14788. height: math.unit(11, "feet"),
  14789. weight: math.unit(500, "lb"),
  14790. name: "Taur",
  14791. image: {
  14792. source: "./media/characters/kee/taur.svg",
  14793. extra: 1,
  14794. bottom: 0.04
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Normal",
  14801. height: math.unit(11, "feet"),
  14802. default: true
  14803. },
  14804. ]
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14808. {
  14809. anthro: {
  14810. height: math.unit(7, "feet"),
  14811. weight: math.unit(190, "lb"),
  14812. name: "Anthro",
  14813. image: {
  14814. source: "./media/characters/cobalt-dracha/anthro.svg",
  14815. extra: 231 / 225,
  14816. bottom: 0.04
  14817. }
  14818. },
  14819. feral: {
  14820. height: math.unit(9 + 7 / 12, "feet"),
  14821. weight: math.unit(294, "lb"),
  14822. name: "Feral",
  14823. image: {
  14824. source: "./media/characters/cobalt-dracha/feral.svg",
  14825. extra: 692 / 633,
  14826. bottom: 0.05
  14827. }
  14828. },
  14829. },
  14830. [
  14831. {
  14832. name: "Normal",
  14833. height: math.unit(7, "feet"),
  14834. default: true
  14835. },
  14836. ]
  14837. ))
  14838. characterMakers.push(() => makeCharacter(
  14839. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14840. {
  14841. fallen: {
  14842. height: math.unit(11 + 8 / 12, "feet"),
  14843. weight: math.unit(485, "lb"),
  14844. name: "Java (Fallen)",
  14845. rename: true,
  14846. image: {
  14847. source: "./media/characters/java/fallen.svg",
  14848. extra: 226 / 208,
  14849. bottom: 0.005
  14850. }
  14851. },
  14852. godkin: {
  14853. height: math.unit(10 + 6 / 12, "feet"),
  14854. weight: math.unit(328, "lb"),
  14855. name: "Java (Godkin)",
  14856. rename: true,
  14857. image: {
  14858. source: "./media/characters/java/godkin.svg",
  14859. extra: 270 / 262,
  14860. bottom: 0.02
  14861. }
  14862. },
  14863. },
  14864. [
  14865. {
  14866. name: "Normal",
  14867. height: math.unit(11 + 8 / 12, "feet"),
  14868. default: true
  14869. },
  14870. ]
  14871. ))
  14872. characterMakers.push(() => makeCharacter(
  14873. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14874. {
  14875. front: {
  14876. height: math.unit(7 + 8 / 12, "feet"),
  14877. weight: math.unit(320, "lb"),
  14878. name: "Front",
  14879. image: {
  14880. source: "./media/characters/skoll/front.svg",
  14881. extra: 232 / 220,
  14882. bottom: 0.02
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Normal",
  14889. height: math.unit(7 + 8 / 12, "feet"),
  14890. default: true
  14891. },
  14892. ]
  14893. ))
  14894. characterMakers.push(() => makeCharacter(
  14895. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14896. {
  14897. front: {
  14898. height: math.unit(5 + 9 / 12, "feet"),
  14899. weight: math.unit(170, "lb"),
  14900. name: "Front",
  14901. image: {
  14902. source: "./media/characters/purna/front.svg",
  14903. extra: 239 / 229,
  14904. bottom: 0.01
  14905. }
  14906. },
  14907. },
  14908. [
  14909. {
  14910. name: "Normal",
  14911. height: math.unit(5 + 9 / 12, "feet"),
  14912. default: true
  14913. },
  14914. ]
  14915. ))
  14916. characterMakers.push(() => makeCharacter(
  14917. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14918. {
  14919. front: {
  14920. height: math.unit(5 + 9 / 12, "feet"),
  14921. weight: math.unit(142, "lb"),
  14922. name: "Front",
  14923. image: {
  14924. source: "./media/characters/kuva/front.svg",
  14925. extra: 281 / 271,
  14926. bottom: 0.006
  14927. }
  14928. },
  14929. },
  14930. [
  14931. {
  14932. name: "Normal",
  14933. height: math.unit(5 + 9 / 12, "feet"),
  14934. default: true
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14940. {
  14941. anthro: {
  14942. height: math.unit(9 + 2 / 12, "feet"),
  14943. weight: math.unit(270, "lb"),
  14944. name: "Anthro",
  14945. image: {
  14946. source: "./media/characters/embra/anthro.svg",
  14947. extra: 200 / 187,
  14948. bottom: 0.02
  14949. }
  14950. },
  14951. feral: {
  14952. height: math.unit(18 + 8 / 12, "feet"),
  14953. weight: math.unit(576, "lb"),
  14954. name: "Feral",
  14955. image: {
  14956. source: "./media/characters/embra/feral.svg",
  14957. extra: 152 / 137,
  14958. bottom: 0.037
  14959. }
  14960. },
  14961. },
  14962. [
  14963. {
  14964. name: "Normal",
  14965. height: math.unit(9 + 2 / 12, "feet"),
  14966. default: true
  14967. },
  14968. ]
  14969. ))
  14970. characterMakers.push(() => makeCharacter(
  14971. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14972. {
  14973. anthro: {
  14974. height: math.unit(10 + 9 / 12, "feet"),
  14975. weight: math.unit(224, "lb"),
  14976. name: "Anthro",
  14977. image: {
  14978. source: "./media/characters/grottos/anthro.svg",
  14979. extra: 350 / 332,
  14980. bottom: 0.045
  14981. }
  14982. },
  14983. feral: {
  14984. height: math.unit(20 + 7 / 12, "feet"),
  14985. weight: math.unit(629, "lb"),
  14986. name: "Feral",
  14987. image: {
  14988. source: "./media/characters/grottos/feral.svg",
  14989. extra: 207 / 190,
  14990. bottom: 0.05
  14991. }
  14992. },
  14993. },
  14994. [
  14995. {
  14996. name: "Normal",
  14997. height: math.unit(10 + 9 / 12, "feet"),
  14998. default: true
  14999. },
  15000. ]
  15001. ))
  15002. characterMakers.push(() => makeCharacter(
  15003. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15004. {
  15005. anthro: {
  15006. height: math.unit(9 + 6 / 12, "feet"),
  15007. weight: math.unit(298, "lb"),
  15008. name: "Anthro",
  15009. image: {
  15010. source: "./media/characters/frifna/anthro.svg",
  15011. extra: 282 / 269,
  15012. bottom: 0.015
  15013. }
  15014. },
  15015. feral: {
  15016. height: math.unit(16 + 2 / 12, "feet"),
  15017. weight: math.unit(624, "lb"),
  15018. name: "Feral",
  15019. image: {
  15020. source: "./media/characters/frifna/feral.svg"
  15021. }
  15022. },
  15023. },
  15024. [
  15025. {
  15026. name: "Normal",
  15027. height: math.unit(9 + 6 / 12, "feet"),
  15028. default: true
  15029. },
  15030. ]
  15031. ))
  15032. characterMakers.push(() => makeCharacter(
  15033. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15034. {
  15035. front: {
  15036. height: math.unit(6 + 2 / 12, "feet"),
  15037. weight: math.unit(168, "lb"),
  15038. name: "Front",
  15039. image: {
  15040. source: "./media/characters/elise/front.svg",
  15041. extra: 276 / 271
  15042. }
  15043. },
  15044. },
  15045. [
  15046. {
  15047. name: "Normal",
  15048. height: math.unit(6 + 2 / 12, "feet"),
  15049. default: true
  15050. },
  15051. ]
  15052. ))
  15053. characterMakers.push(() => makeCharacter(
  15054. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15055. {
  15056. front: {
  15057. height: math.unit(5 + 10 / 12, "feet"),
  15058. weight: math.unit(210, "lb"),
  15059. name: "Front",
  15060. image: {
  15061. source: "./media/characters/glade/front.svg",
  15062. extra: 258 / 247,
  15063. bottom: 0.008
  15064. }
  15065. },
  15066. },
  15067. [
  15068. {
  15069. name: "Normal",
  15070. height: math.unit(5 + 10 / 12, "feet"),
  15071. default: true
  15072. },
  15073. ]
  15074. ))
  15075. characterMakers.push(() => makeCharacter(
  15076. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15077. {
  15078. front: {
  15079. height: math.unit(5 + 10 / 12, "feet"),
  15080. weight: math.unit(129, "lb"),
  15081. name: "Front",
  15082. image: {
  15083. source: "./media/characters/rina/front.svg",
  15084. extra: 266 / 255,
  15085. bottom: 0.005
  15086. }
  15087. },
  15088. },
  15089. [
  15090. {
  15091. name: "Normal",
  15092. height: math.unit(5 + 10 / 12, "feet"),
  15093. default: true
  15094. },
  15095. ]
  15096. ))
  15097. characterMakers.push(() => makeCharacter(
  15098. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15099. {
  15100. front: {
  15101. height: math.unit(6 + 1 / 12, "feet"),
  15102. weight: math.unit(192, "lb"),
  15103. name: "Front",
  15104. image: {
  15105. source: "./media/characters/veronica/front.svg",
  15106. extra: 319 / 309,
  15107. bottom: 0.005
  15108. }
  15109. },
  15110. },
  15111. [
  15112. {
  15113. name: "Normal",
  15114. height: math.unit(6 + 1 / 12, "feet"),
  15115. default: true
  15116. },
  15117. ]
  15118. ))
  15119. characterMakers.push(() => makeCharacter(
  15120. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15121. {
  15122. front: {
  15123. height: math.unit(9 + 3 / 12, "feet"),
  15124. weight: math.unit(1100, "lb"),
  15125. name: "Front",
  15126. image: {
  15127. source: "./media/characters/braxton/front.svg",
  15128. extra: 1057 / 984,
  15129. bottom: 0.05
  15130. }
  15131. },
  15132. },
  15133. [
  15134. {
  15135. name: "Normal",
  15136. height: math.unit(9 + 3 / 12, "feet")
  15137. },
  15138. {
  15139. name: "Giant",
  15140. height: math.unit(300, "feet"),
  15141. default: true
  15142. },
  15143. {
  15144. name: "Macro",
  15145. height: math.unit(700, "feet")
  15146. },
  15147. {
  15148. name: "Megamacro",
  15149. height: math.unit(6000, "feet")
  15150. },
  15151. ]
  15152. ))
  15153. characterMakers.push(() => makeCharacter(
  15154. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15155. {
  15156. front: {
  15157. height: math.unit(6 + 7 / 12, "feet"),
  15158. weight: math.unit(150, "lb"),
  15159. name: "Front",
  15160. image: {
  15161. source: "./media/characters/blue-feyonics/front.svg",
  15162. extra: 1403 / 1306,
  15163. bottom: 0.047
  15164. }
  15165. },
  15166. },
  15167. [
  15168. {
  15169. name: "Normal",
  15170. height: math.unit(6 + 7 / 12, "feet"),
  15171. default: true
  15172. },
  15173. ]
  15174. ))
  15175. characterMakers.push(() => makeCharacter(
  15176. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15177. {
  15178. front: {
  15179. height: math.unit(1.8, "meters"),
  15180. weight: math.unit(60, "kg"),
  15181. name: "Front",
  15182. image: {
  15183. source: "./media/characters/maxwell/front.svg",
  15184. extra: 2060 / 1873
  15185. }
  15186. },
  15187. },
  15188. [
  15189. {
  15190. name: "Micro",
  15191. height: math.unit(1, "mm")
  15192. },
  15193. {
  15194. name: "Normal",
  15195. height: math.unit(1.8, "meter"),
  15196. default: true
  15197. },
  15198. {
  15199. name: "Macro",
  15200. height: math.unit(30, "meters")
  15201. },
  15202. {
  15203. name: "Megamacro",
  15204. height: math.unit(10, "km")
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15210. {
  15211. front: {
  15212. height: math.unit(6, "feet"),
  15213. weight: math.unit(150, "lb"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/jack/front.svg",
  15217. extra: 1754 / 1640,
  15218. bottom: 0.01
  15219. }
  15220. },
  15221. },
  15222. [
  15223. {
  15224. name: "Normal",
  15225. height: math.unit(80000, "feet"),
  15226. default: true
  15227. },
  15228. {
  15229. name: "Max size",
  15230. height: math.unit(10, "lightyears")
  15231. },
  15232. ]
  15233. ))
  15234. characterMakers.push(() => makeCharacter(
  15235. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15236. {
  15237. upright: {
  15238. height: math.unit(7, "feet"),
  15239. weight: math.unit(170, "lb"),
  15240. name: "Upright",
  15241. image: {
  15242. source: "./media/characters/cafat/upright.svg",
  15243. bottom: 0.01
  15244. }
  15245. },
  15246. uprightFull: {
  15247. height: math.unit(7, "feet"),
  15248. weight: math.unit(170, "lb"),
  15249. name: "Upright (Full)",
  15250. image: {
  15251. source: "./media/characters/cafat/upright-full.svg",
  15252. bottom: 0.01
  15253. }
  15254. },
  15255. side: {
  15256. height: math.unit(5, "feet"),
  15257. weight: math.unit(150, "lb"),
  15258. name: "Side",
  15259. image: {
  15260. source: "./media/characters/cafat/side.svg"
  15261. }
  15262. },
  15263. },
  15264. [
  15265. {
  15266. name: "Small",
  15267. height: math.unit(7, "feet"),
  15268. default: true
  15269. },
  15270. {
  15271. name: "Large",
  15272. height: math.unit(15.5, "feet")
  15273. },
  15274. ]
  15275. ))
  15276. characterMakers.push(() => makeCharacter(
  15277. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15278. {
  15279. front: {
  15280. height: math.unit(6, "feet"),
  15281. weight: math.unit(150, "lb"),
  15282. name: "Front",
  15283. image: {
  15284. source: "./media/characters/verin-raharra/front.svg",
  15285. extra: 5019 / 4835,
  15286. bottom: 0.023
  15287. }
  15288. },
  15289. },
  15290. [
  15291. {
  15292. name: "Normal",
  15293. height: math.unit(7 + 5 / 12, "feet"),
  15294. default: true
  15295. },
  15296. {
  15297. name: "Upsized",
  15298. height: math.unit(20, "feet")
  15299. },
  15300. ]
  15301. ))
  15302. characterMakers.push(() => makeCharacter(
  15303. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15304. {
  15305. front: {
  15306. height: math.unit(7, "feet"),
  15307. weight: math.unit(230, "lb"),
  15308. name: "Front",
  15309. image: {
  15310. source: "./media/characters/nakata/front.svg",
  15311. extra: 1.005,
  15312. bottom: 0.01
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Normal",
  15319. height: math.unit(7, "feet"),
  15320. default: true
  15321. },
  15322. {
  15323. name: "Big",
  15324. height: math.unit(14, "feet")
  15325. },
  15326. {
  15327. name: "Macro",
  15328. height: math.unit(400, "feet")
  15329. },
  15330. ]
  15331. ))
  15332. characterMakers.push(() => makeCharacter(
  15333. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15334. {
  15335. front: {
  15336. height: math.unit(4.91, "feet"),
  15337. weight: math.unit(100, "lb"),
  15338. name: "Front",
  15339. image: {
  15340. source: "./media/characters/lily/front.svg",
  15341. extra: 1585 / 1415,
  15342. bottom: 0.02
  15343. }
  15344. },
  15345. },
  15346. [
  15347. {
  15348. name: "Normal",
  15349. height: math.unit(4.91, "feet"),
  15350. default: true
  15351. },
  15352. ]
  15353. ))
  15354. characterMakers.push(() => makeCharacter(
  15355. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15356. {
  15357. laying: {
  15358. height: math.unit(4 + 4 / 12, "feet"),
  15359. weight: math.unit(600, "lb"),
  15360. name: "Laying",
  15361. image: {
  15362. source: "./media/characters/sheila/laying.svg",
  15363. extra: 1333 / 1265,
  15364. bottom: 0.16
  15365. }
  15366. },
  15367. },
  15368. [
  15369. {
  15370. name: "Normal",
  15371. height: math.unit(4 + 4 / 12, "feet"),
  15372. default: true
  15373. },
  15374. ]
  15375. ))
  15376. characterMakers.push(() => makeCharacter(
  15377. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15378. {
  15379. front: {
  15380. height: math.unit(6, "feet"),
  15381. weight: math.unit(190, "lb"),
  15382. name: "Front",
  15383. image: {
  15384. source: "./media/characters/sax/front.svg",
  15385. extra: 1187 / 973,
  15386. bottom: 0.042
  15387. }
  15388. },
  15389. },
  15390. [
  15391. {
  15392. name: "Micro",
  15393. height: math.unit(4, "inches"),
  15394. default: true
  15395. },
  15396. ]
  15397. ))
  15398. characterMakers.push(() => makeCharacter(
  15399. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15400. {
  15401. front: {
  15402. height: math.unit(6, "feet"),
  15403. weight: math.unit(150, "lb"),
  15404. name: "Front",
  15405. image: {
  15406. source: "./media/characters/pandora/front.svg",
  15407. extra: 2720 / 2556,
  15408. bottom: 0.015
  15409. }
  15410. },
  15411. back: {
  15412. height: math.unit(6, "feet"),
  15413. weight: math.unit(150, "lb"),
  15414. name: "Back",
  15415. image: {
  15416. source: "./media/characters/pandora/back.svg",
  15417. extra: 2720 / 2556,
  15418. bottom: 0.01
  15419. }
  15420. },
  15421. beans: {
  15422. height: math.unit(6 / 8, "feet"),
  15423. name: "Beans",
  15424. image: {
  15425. source: "./media/characters/pandora/beans.svg"
  15426. }
  15427. },
  15428. skirt: {
  15429. height: math.unit(6, "feet"),
  15430. weight: math.unit(150, "lb"),
  15431. name: "Skirt",
  15432. image: {
  15433. source: "./media/characters/pandora/skirt.svg",
  15434. extra: 1622 / 1525,
  15435. bottom: 0.015
  15436. }
  15437. },
  15438. hoodie: {
  15439. height: math.unit(6, "feet"),
  15440. weight: math.unit(150, "lb"),
  15441. name: "Hoodie",
  15442. image: {
  15443. source: "./media/characters/pandora/hoodie.svg",
  15444. extra: 1622 / 1525,
  15445. bottom: 0.015
  15446. }
  15447. },
  15448. casual: {
  15449. height: math.unit(6, "feet"),
  15450. weight: math.unit(150, "lb"),
  15451. name: "Casual",
  15452. image: {
  15453. source: "./media/characters/pandora/casual.svg",
  15454. extra: 1622 / 1525,
  15455. bottom: 0.015
  15456. }
  15457. },
  15458. },
  15459. [
  15460. {
  15461. name: "Normal",
  15462. height: math.unit(6, "feet")
  15463. },
  15464. {
  15465. name: "Big Steppy",
  15466. height: math.unit(1, "km"),
  15467. default: true
  15468. },
  15469. ]
  15470. ))
  15471. characterMakers.push(() => makeCharacter(
  15472. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15473. {
  15474. side: {
  15475. height: math.unit(10, "feet"),
  15476. weight: math.unit(800, "kg"),
  15477. name: "Side",
  15478. image: {
  15479. source: "./media/characters/venio-darcony/side.svg",
  15480. extra: 1373 / 1003,
  15481. bottom: 0.037
  15482. }
  15483. },
  15484. front: {
  15485. height: math.unit(19, "feet"),
  15486. weight: math.unit(800, "kg"),
  15487. name: "Front",
  15488. image: {
  15489. source: "./media/characters/venio-darcony/front.svg"
  15490. }
  15491. },
  15492. back: {
  15493. height: math.unit(19, "feet"),
  15494. weight: math.unit(800, "kg"),
  15495. name: "Back",
  15496. image: {
  15497. source: "./media/characters/venio-darcony/back.svg"
  15498. }
  15499. },
  15500. sideNsfw: {
  15501. height: math.unit(10, "feet"),
  15502. weight: math.unit(800, "kg"),
  15503. name: "Side (NSFW)",
  15504. image: {
  15505. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15506. extra: 1373 / 1003,
  15507. bottom: 0.037
  15508. }
  15509. },
  15510. frontNsfw: {
  15511. height: math.unit(19, "feet"),
  15512. weight: math.unit(800, "kg"),
  15513. name: "Front (NSFW)",
  15514. image: {
  15515. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15516. }
  15517. },
  15518. backNsfw: {
  15519. height: math.unit(19, "feet"),
  15520. weight: math.unit(800, "kg"),
  15521. name: "Back (NSFW)",
  15522. image: {
  15523. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15524. }
  15525. },
  15526. sideArmored: {
  15527. height: math.unit(10, "feet"),
  15528. weight: math.unit(800, "kg"),
  15529. name: "Side (Armored)",
  15530. image: {
  15531. source: "./media/characters/venio-darcony/side-armored.svg",
  15532. extra: 1373 / 1003,
  15533. bottom: 0.037
  15534. }
  15535. },
  15536. frontArmored: {
  15537. height: math.unit(19, "feet"),
  15538. weight: math.unit(900, "kg"),
  15539. name: "Front (Armored)",
  15540. image: {
  15541. source: "./media/characters/venio-darcony/front-armored.svg"
  15542. }
  15543. },
  15544. backArmored: {
  15545. height: math.unit(19, "feet"),
  15546. weight: math.unit(900, "kg"),
  15547. name: "Back (Armored)",
  15548. image: {
  15549. source: "./media/characters/venio-darcony/back-armored.svg"
  15550. }
  15551. },
  15552. sword: {
  15553. height: math.unit(10, "feet"),
  15554. weight: math.unit(50, "lb"),
  15555. name: "Sword",
  15556. image: {
  15557. source: "./media/characters/venio-darcony/sword.svg"
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Normal",
  15564. height: math.unit(10, "feet")
  15565. },
  15566. {
  15567. name: "Macro",
  15568. height: math.unit(130, "feet"),
  15569. default: true
  15570. },
  15571. {
  15572. name: "Macro+",
  15573. height: math.unit(240, "feet")
  15574. },
  15575. ]
  15576. ))
  15577. characterMakers.push(() => makeCharacter(
  15578. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15579. {
  15580. front: {
  15581. height: math.unit(6, "feet"),
  15582. weight: math.unit(150, "lb"),
  15583. name: "Front",
  15584. image: {
  15585. source: "./media/characters/veski/front.svg",
  15586. extra: 1299 / 1225,
  15587. bottom: 0.04
  15588. }
  15589. },
  15590. back: {
  15591. height: math.unit(6, "feet"),
  15592. weight: math.unit(150, "lb"),
  15593. name: "Back",
  15594. image: {
  15595. source: "./media/characters/veski/back.svg",
  15596. extra: 1299 / 1225,
  15597. bottom: 0.008
  15598. }
  15599. },
  15600. maw: {
  15601. height: math.unit(1.5 * 1.21, "feet"),
  15602. name: "Maw",
  15603. image: {
  15604. source: "./media/characters/veski/maw.svg"
  15605. }
  15606. },
  15607. },
  15608. [
  15609. {
  15610. name: "Macro",
  15611. height: math.unit(2, "km"),
  15612. default: true
  15613. },
  15614. ]
  15615. ))
  15616. characterMakers.push(() => makeCharacter(
  15617. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15618. {
  15619. front: {
  15620. height: math.unit(5 + 7 / 12, "feet"),
  15621. name: "Front",
  15622. image: {
  15623. source: "./media/characters/isabelle/front.svg",
  15624. extra: 2130 / 1976,
  15625. bottom: 0.05
  15626. }
  15627. },
  15628. },
  15629. [
  15630. {
  15631. name: "Supermicro",
  15632. height: math.unit(10, "micrometers")
  15633. },
  15634. {
  15635. name: "Micro",
  15636. height: math.unit(1, "inch")
  15637. },
  15638. {
  15639. name: "Tiny",
  15640. height: math.unit(5, "inches")
  15641. },
  15642. {
  15643. name: "Standard",
  15644. height: math.unit(5 + 7 / 12, "inches")
  15645. },
  15646. {
  15647. name: "Macro",
  15648. height: math.unit(80, "meters"),
  15649. default: true
  15650. },
  15651. {
  15652. name: "Megamacro",
  15653. height: math.unit(250, "meters")
  15654. },
  15655. {
  15656. name: "Gigamacro",
  15657. height: math.unit(5, "km")
  15658. },
  15659. {
  15660. name: "Cosmic",
  15661. height: math.unit(2.5e6, "miles")
  15662. },
  15663. ]
  15664. ))
  15665. characterMakers.push(() => makeCharacter(
  15666. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15667. {
  15668. front: {
  15669. height: math.unit(6, "feet"),
  15670. weight: math.unit(150, "lb"),
  15671. name: "Front",
  15672. image: {
  15673. source: "./media/characters/hanzo/front.svg",
  15674. extra: 374 / 344,
  15675. bottom: 0.02
  15676. }
  15677. },
  15678. },
  15679. [
  15680. {
  15681. name: "Normal",
  15682. height: math.unit(8, "feet"),
  15683. default: true
  15684. },
  15685. ]
  15686. ))
  15687. characterMakers.push(() => makeCharacter(
  15688. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15689. {
  15690. front: {
  15691. height: math.unit(7, "feet"),
  15692. weight: math.unit(130, "lb"),
  15693. name: "Front",
  15694. image: {
  15695. source: "./media/characters/anna/front.svg",
  15696. extra: 169 / 145,
  15697. bottom: 0.06
  15698. }
  15699. },
  15700. full: {
  15701. height: math.unit(4.96, "feet"),
  15702. weight: math.unit(220, "lb"),
  15703. name: "Full",
  15704. image: {
  15705. source: "./media/characters/anna/full.svg",
  15706. extra: 138 / 114,
  15707. bottom: 0.15
  15708. }
  15709. },
  15710. tongue: {
  15711. height: math.unit(2.53, "feet"),
  15712. name: "Tongue",
  15713. image: {
  15714. source: "./media/characters/anna/tongue.svg"
  15715. }
  15716. },
  15717. },
  15718. [
  15719. {
  15720. name: "Normal",
  15721. height: math.unit(7, "feet"),
  15722. default: true
  15723. },
  15724. ]
  15725. ))
  15726. characterMakers.push(() => makeCharacter(
  15727. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15728. {
  15729. front: {
  15730. height: math.unit(7, "feet"),
  15731. weight: math.unit(150, "lb"),
  15732. name: "Front",
  15733. image: {
  15734. source: "./media/characters/ian-corvid/front.svg",
  15735. extra: 150 / 142,
  15736. bottom: 0.02
  15737. }
  15738. },
  15739. back: {
  15740. height: math.unit(7, "feet"),
  15741. weight: math.unit(150, "lb"),
  15742. name: "Back",
  15743. image: {
  15744. source: "./media/characters/ian-corvid/back.svg",
  15745. extra: 150 / 143,
  15746. bottom: 0.01
  15747. }
  15748. },
  15749. stomping: {
  15750. height: math.unit(7, "feet"),
  15751. weight: math.unit(150, "lb"),
  15752. name: "Stomping",
  15753. image: {
  15754. source: "./media/characters/ian-corvid/stomping.svg",
  15755. extra: 76 / 72
  15756. }
  15757. },
  15758. sitting: {
  15759. height: math.unit(7 / 1.8, "feet"),
  15760. weight: math.unit(150, "lb"),
  15761. name: "Sitting",
  15762. image: {
  15763. source: "./media/characters/ian-corvid/sitting.svg",
  15764. extra: 1400 / 1269,
  15765. bottom: 0.15
  15766. }
  15767. },
  15768. },
  15769. [
  15770. {
  15771. name: "Tiny Microw",
  15772. height: math.unit(1, "inch")
  15773. },
  15774. {
  15775. name: "Microw",
  15776. height: math.unit(6, "inches")
  15777. },
  15778. {
  15779. name: "Crow",
  15780. height: math.unit(7 + 1 / 12, "feet"),
  15781. default: true
  15782. },
  15783. {
  15784. name: "Macrow",
  15785. height: math.unit(176, "feet")
  15786. },
  15787. ]
  15788. ))
  15789. characterMakers.push(() => makeCharacter(
  15790. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15791. {
  15792. front: {
  15793. height: math.unit(5 + 7 / 12, "feet"),
  15794. weight: math.unit(147, "lb"),
  15795. name: "Front",
  15796. image: {
  15797. source: "./media/characters/natalie-kellon/front.svg",
  15798. extra: 1214 / 1141,
  15799. bottom: 0.02
  15800. }
  15801. },
  15802. },
  15803. [
  15804. {
  15805. name: "Micro",
  15806. height: math.unit(1 / 16, "inch")
  15807. },
  15808. {
  15809. name: "Tiny",
  15810. height: math.unit(4, "inches")
  15811. },
  15812. {
  15813. name: "Normal",
  15814. height: math.unit(5 + 7 / 12, "feet"),
  15815. default: true
  15816. },
  15817. {
  15818. name: "Amazon",
  15819. height: math.unit(12, "feet")
  15820. },
  15821. {
  15822. name: "Giantess",
  15823. height: math.unit(160, "meters")
  15824. },
  15825. {
  15826. name: "Titaness",
  15827. height: math.unit(800, "meters")
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15833. {
  15834. front: {
  15835. height: math.unit(6, "feet"),
  15836. weight: math.unit(150, "lb"),
  15837. name: "Front",
  15838. image: {
  15839. source: "./media/characters/alluria/front.svg",
  15840. extra: 806 / 738,
  15841. bottom: 0.01
  15842. }
  15843. },
  15844. side: {
  15845. height: math.unit(6, "feet"),
  15846. weight: math.unit(150, "lb"),
  15847. name: "Side",
  15848. image: {
  15849. source: "./media/characters/alluria/side.svg",
  15850. extra: 800 / 750,
  15851. }
  15852. },
  15853. back: {
  15854. height: math.unit(6, "feet"),
  15855. weight: math.unit(150, "lb"),
  15856. name: "Back",
  15857. image: {
  15858. source: "./media/characters/alluria/back.svg",
  15859. extra: 806 / 738,
  15860. }
  15861. },
  15862. frontMaid: {
  15863. height: math.unit(6, "feet"),
  15864. weight: math.unit(150, "lb"),
  15865. name: "Front (Maid)",
  15866. image: {
  15867. source: "./media/characters/alluria/front-maid.svg",
  15868. extra: 806 / 738,
  15869. bottom: 0.01
  15870. }
  15871. },
  15872. sideMaid: {
  15873. height: math.unit(6, "feet"),
  15874. weight: math.unit(150, "lb"),
  15875. name: "Side (Maid)",
  15876. image: {
  15877. source: "./media/characters/alluria/side-maid.svg",
  15878. extra: 800 / 750,
  15879. bottom: 0.005
  15880. }
  15881. },
  15882. backMaid: {
  15883. height: math.unit(6, "feet"),
  15884. weight: math.unit(150, "lb"),
  15885. name: "Back (Maid)",
  15886. image: {
  15887. source: "./media/characters/alluria/back-maid.svg",
  15888. extra: 806 / 738,
  15889. }
  15890. },
  15891. },
  15892. [
  15893. {
  15894. name: "Micro",
  15895. height: math.unit(6, "inches"),
  15896. default: true
  15897. },
  15898. ]
  15899. ))
  15900. characterMakers.push(() => makeCharacter(
  15901. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15902. {
  15903. front: {
  15904. height: math.unit(6, "feet"),
  15905. weight: math.unit(150, "lb"),
  15906. name: "Front",
  15907. image: {
  15908. source: "./media/characters/kyle/front.svg",
  15909. extra: 1069 / 962,
  15910. bottom: 77.228 / 1727.45
  15911. }
  15912. },
  15913. },
  15914. [
  15915. {
  15916. name: "Macro",
  15917. height: math.unit(150, "feet"),
  15918. default: true
  15919. },
  15920. ]
  15921. ))
  15922. characterMakers.push(() => makeCharacter(
  15923. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15924. {
  15925. front: {
  15926. height: math.unit(6, "feet"),
  15927. weight: math.unit(300, "lb"),
  15928. name: "Front",
  15929. image: {
  15930. source: "./media/characters/duncan/front.svg",
  15931. extra: 1650 / 1482,
  15932. bottom: 0.05
  15933. }
  15934. },
  15935. },
  15936. [
  15937. {
  15938. name: "Macro",
  15939. height: math.unit(100, "feet"),
  15940. default: true
  15941. },
  15942. ]
  15943. ))
  15944. characterMakers.push(() => makeCharacter(
  15945. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15946. {
  15947. front: {
  15948. height: math.unit(5 + 4 / 12, "feet"),
  15949. weight: math.unit(220, "lb"),
  15950. name: "Front",
  15951. image: {
  15952. source: "./media/characters/memory/front.svg",
  15953. extra: 3641 / 3545,
  15954. bottom: 0.03
  15955. }
  15956. },
  15957. back: {
  15958. height: math.unit(5 + 4 / 12, "feet"),
  15959. weight: math.unit(220, "lb"),
  15960. name: "Back",
  15961. image: {
  15962. source: "./media/characters/memory/back.svg",
  15963. extra: 3641 / 3545,
  15964. bottom: 0.025
  15965. }
  15966. },
  15967. frontSkirt: {
  15968. height: math.unit(5 + 4 / 12, "feet"),
  15969. weight: math.unit(220, "lb"),
  15970. name: "Front (Skirt)",
  15971. image: {
  15972. source: "./media/characters/memory/front-skirt.svg",
  15973. extra: 3641 / 3545,
  15974. bottom: 0.03
  15975. }
  15976. },
  15977. frontDress: {
  15978. height: math.unit(5 + 4 / 12, "feet"),
  15979. weight: math.unit(220, "lb"),
  15980. name: "Front (Dress)",
  15981. image: {
  15982. source: "./media/characters/memory/front-dress.svg",
  15983. extra: 3641 / 3545,
  15984. bottom: 0.03
  15985. }
  15986. },
  15987. },
  15988. [
  15989. {
  15990. name: "Micro",
  15991. height: math.unit(6, "inches"),
  15992. default: true
  15993. },
  15994. {
  15995. name: "Normal",
  15996. height: math.unit(5 + 4 / 12, "feet")
  15997. },
  15998. ]
  15999. ))
  16000. characterMakers.push(() => makeCharacter(
  16001. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16002. {
  16003. front: {
  16004. height: math.unit(4 + 11 / 12, "feet"),
  16005. weight: math.unit(100, "lb"),
  16006. name: "Front",
  16007. image: {
  16008. source: "./media/characters/luno/front.svg",
  16009. extra: 1535 / 1487,
  16010. bottom: 0.03
  16011. }
  16012. },
  16013. },
  16014. [
  16015. {
  16016. name: "Micro",
  16017. height: math.unit(3, "inches")
  16018. },
  16019. {
  16020. name: "Normal",
  16021. height: math.unit(4 + 11 / 12, "feet"),
  16022. default: true
  16023. },
  16024. {
  16025. name: "Macro",
  16026. height: math.unit(300, "feet")
  16027. },
  16028. {
  16029. name: "Megamacro",
  16030. height: math.unit(700, "miles")
  16031. },
  16032. ]
  16033. ))
  16034. characterMakers.push(() => makeCharacter(
  16035. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16036. {
  16037. front: {
  16038. height: math.unit(6 + 2 / 12, "feet"),
  16039. weight: math.unit(170, "lb"),
  16040. name: "Front",
  16041. image: {
  16042. source: "./media/characters/jamesy/front.svg",
  16043. extra: 440 / 382,
  16044. bottom: 0.005
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Micro",
  16051. height: math.unit(3, "inches")
  16052. },
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(6 + 2 / 12, "feet"),
  16056. default: true
  16057. },
  16058. {
  16059. name: "Macro",
  16060. height: math.unit(300, "feet")
  16061. },
  16062. {
  16063. name: "Megamacro",
  16064. height: math.unit(700, "miles")
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(6, "feet"),
  16073. weight: math.unit(160, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/mark/front.svg",
  16077. extra: 3300 / 3100,
  16078. bottom: 136.42 / 3440.47
  16079. }
  16080. },
  16081. },
  16082. [
  16083. {
  16084. name: "Macro",
  16085. height: math.unit(120, "meters")
  16086. },
  16087. {
  16088. name: "Bigger Macro",
  16089. height: math.unit(350, "meters")
  16090. },
  16091. {
  16092. name: "Megamacro",
  16093. height: math.unit(8, "km"),
  16094. default: true
  16095. },
  16096. {
  16097. name: "Continental",
  16098. height: math.unit(4550, "km")
  16099. },
  16100. {
  16101. name: "Planetary",
  16102. height: math.unit(65000, "km")
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(6, "feet"),
  16111. weight: math.unit(400, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/mac/front.svg",
  16115. extra: 1048 / 987.7,
  16116. bottom: 60 / 1107.6,
  16117. }
  16118. },
  16119. },
  16120. [
  16121. {
  16122. name: "Macro",
  16123. height: math.unit(500, "feet"),
  16124. default: true
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16130. {
  16131. front: {
  16132. height: math.unit(5 + 2 / 12, "feet"),
  16133. weight: math.unit(190, "lb"),
  16134. name: "Front",
  16135. image: {
  16136. source: "./media/characters/bari/front.svg",
  16137. extra: 3156 / 2880,
  16138. bottom: 0.03
  16139. }
  16140. },
  16141. back: {
  16142. height: math.unit(5 + 2 / 12, "feet"),
  16143. weight: math.unit(190, "lb"),
  16144. name: "Back",
  16145. image: {
  16146. source: "./media/characters/bari/back.svg",
  16147. extra: 3260 / 2834,
  16148. bottom: 0.025
  16149. }
  16150. },
  16151. frontPlush: {
  16152. height: math.unit(5 + 2 / 12, "feet"),
  16153. weight: math.unit(190, "lb"),
  16154. name: "Front (Plush)",
  16155. image: {
  16156. source: "./media/characters/bari/front-plush.svg",
  16157. extra: 1112 / 1061,
  16158. bottom: 0.002
  16159. }
  16160. },
  16161. },
  16162. [
  16163. {
  16164. name: "Micro",
  16165. height: math.unit(3, "inches")
  16166. },
  16167. {
  16168. name: "Normal",
  16169. height: math.unit(5 + 2 / 12, "feet"),
  16170. default: true
  16171. },
  16172. {
  16173. name: "Macro",
  16174. height: math.unit(20, "feet")
  16175. },
  16176. ]
  16177. ))
  16178. characterMakers.push(() => makeCharacter(
  16179. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16180. {
  16181. front: {
  16182. height: math.unit(6 + 1 / 12, "feet"),
  16183. weight: math.unit(275, "lb"),
  16184. name: "Front",
  16185. image: {
  16186. source: "./media/characters/hunter-misha-raven/front.svg"
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Mortal",
  16193. height: math.unit(6 + 1 / 12, "feet")
  16194. },
  16195. {
  16196. name: "Divine",
  16197. height: math.unit(1.12134e34, "parsecs"),
  16198. default: true
  16199. },
  16200. ]
  16201. ))
  16202. characterMakers.push(() => makeCharacter(
  16203. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16204. {
  16205. front: {
  16206. height: math.unit(6 + 3 / 12, "feet"),
  16207. weight: math.unit(220, "lb"),
  16208. name: "Front",
  16209. image: {
  16210. source: "./media/characters/max-calore/front.svg",
  16211. extra: 1700 / 1648,
  16212. bottom: 0.01
  16213. }
  16214. },
  16215. back: {
  16216. height: math.unit(6 + 3 / 12, "feet"),
  16217. weight: math.unit(220, "lb"),
  16218. name: "Back",
  16219. image: {
  16220. source: "./media/characters/max-calore/back.svg",
  16221. extra: 1700 / 1648,
  16222. bottom: 0.01
  16223. }
  16224. },
  16225. },
  16226. [
  16227. {
  16228. name: "Normal",
  16229. height: math.unit(6 + 3 / 12, "feet"),
  16230. default: true
  16231. },
  16232. ]
  16233. ))
  16234. characterMakers.push(() => makeCharacter(
  16235. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16236. {
  16237. side: {
  16238. height: math.unit(2 + 8 / 12, "feet"),
  16239. weight: math.unit(99, "lb"),
  16240. name: "Side",
  16241. image: {
  16242. source: "./media/characters/aspen/side.svg",
  16243. extra: 152 / 138,
  16244. bottom: 0.032
  16245. }
  16246. },
  16247. },
  16248. [
  16249. {
  16250. name: "Normal",
  16251. height: math.unit(2 + 8 / 12, "feet"),
  16252. default: true
  16253. },
  16254. ]
  16255. ))
  16256. characterMakers.push(() => makeCharacter(
  16257. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16258. {
  16259. side: {
  16260. height: math.unit(3 + 2 / 12, "feet"),
  16261. weight: math.unit(224, "lb"),
  16262. name: "Side",
  16263. image: {
  16264. source: "./media/characters/sheila-feral-wolf/side.svg",
  16265. extra: 179 / 166,
  16266. bottom: 0.03
  16267. }
  16268. },
  16269. },
  16270. [
  16271. {
  16272. name: "Normal",
  16273. height: math.unit(3 + 2 / 12, "feet"),
  16274. default: true
  16275. },
  16276. ]
  16277. ))
  16278. characterMakers.push(() => makeCharacter(
  16279. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16280. {
  16281. side: {
  16282. height: math.unit(1 + 9 / 12, "feet"),
  16283. weight: math.unit(38, "lb"),
  16284. name: "Side",
  16285. image: {
  16286. source: "./media/characters/michelle/side.svg",
  16287. extra: 147 / 136.7,
  16288. bottom: 0.03
  16289. }
  16290. },
  16291. },
  16292. [
  16293. {
  16294. name: "Normal",
  16295. height: math.unit(1 + 9 / 12, "feet"),
  16296. default: true
  16297. },
  16298. ]
  16299. ))
  16300. characterMakers.push(() => makeCharacter(
  16301. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16302. {
  16303. front: {
  16304. height: math.unit(1 + 1 / 12, "feet"),
  16305. weight: math.unit(18, "lb"),
  16306. name: "Front",
  16307. image: {
  16308. source: "./media/characters/nino/front.svg"
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Normal",
  16315. height: math.unit(1 + 1 / 12, "feet"),
  16316. default: true
  16317. },
  16318. ]
  16319. ))
  16320. characterMakers.push(() => makeCharacter(
  16321. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16322. {
  16323. front: {
  16324. height: math.unit(1, "feet"),
  16325. weight: math.unit(16, "lb"),
  16326. name: "Front",
  16327. image: {
  16328. source: "./media/characters/viola/front.svg"
  16329. }
  16330. },
  16331. },
  16332. [
  16333. {
  16334. name: "Normal",
  16335. height: math.unit(1, "feet"),
  16336. default: true
  16337. },
  16338. ]
  16339. ))
  16340. characterMakers.push(() => makeCharacter(
  16341. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16342. {
  16343. front: {
  16344. height: math.unit(6 + 5 / 12, "feet"),
  16345. weight: math.unit(580, "lb"),
  16346. name: "Front",
  16347. image: {
  16348. source: "./media/characters/atlas/front.svg",
  16349. extra: 298.5 / 290,
  16350. bottom: 0.015
  16351. }
  16352. },
  16353. },
  16354. [
  16355. {
  16356. name: "Normal",
  16357. height: math.unit(6 + 5 / 12, "feet"),
  16358. default: true
  16359. },
  16360. ]
  16361. ))
  16362. characterMakers.push(() => makeCharacter(
  16363. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16364. {
  16365. side: {
  16366. height: math.unit(1 + 10 / 12, "feet"),
  16367. weight: math.unit(25, "lb"),
  16368. name: "Side",
  16369. image: {
  16370. source: "./media/characters/davy/side.svg",
  16371. extra: 200 / 170,
  16372. bottom: 0.01
  16373. }
  16374. },
  16375. },
  16376. [
  16377. {
  16378. name: "Normal",
  16379. height: math.unit(1 + 10 / 12, "feet"),
  16380. default: true
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16386. {
  16387. side: {
  16388. height: math.unit(4 + 8 / 12, "feet"),
  16389. weight: math.unit(166, "lb"),
  16390. name: "Side",
  16391. image: {
  16392. source: "./media/characters/fiona/side.svg",
  16393. extra: 232 / 220,
  16394. bottom: 0.03
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Normal",
  16401. height: math.unit(4 + 8 / 12, "feet"),
  16402. default: true
  16403. },
  16404. ]
  16405. ))
  16406. characterMakers.push(() => makeCharacter(
  16407. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16408. {
  16409. front: {
  16410. height: math.unit(2, "feet"),
  16411. weight: math.unit(62, "lb"),
  16412. name: "Front",
  16413. image: {
  16414. source: "./media/characters/lyla/front.svg",
  16415. bottom: 0.1
  16416. }
  16417. },
  16418. },
  16419. [
  16420. {
  16421. name: "Normal",
  16422. height: math.unit(2, "feet"),
  16423. default: true
  16424. },
  16425. ]
  16426. ))
  16427. characterMakers.push(() => makeCharacter(
  16428. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16429. {
  16430. side: {
  16431. height: math.unit(1.8, "feet"),
  16432. weight: math.unit(44, "lb"),
  16433. name: "Side",
  16434. image: {
  16435. source: "./media/characters/perseus/side.svg",
  16436. bottom: 0.21
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Normal",
  16443. height: math.unit(1.8, "feet"),
  16444. default: true
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16450. {
  16451. side: {
  16452. height: math.unit(4 + 2 / 12, "feet"),
  16453. weight: math.unit(20, "lb"),
  16454. name: "Side",
  16455. image: {
  16456. source: "./media/characters/remus/side.svg"
  16457. }
  16458. },
  16459. },
  16460. [
  16461. {
  16462. name: "Normal",
  16463. height: math.unit(4 + 2 / 12, "feet"),
  16464. default: true
  16465. },
  16466. ]
  16467. ))
  16468. characterMakers.push(() => makeCharacter(
  16469. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16470. {
  16471. front: {
  16472. height: math.unit(4 + 11 / 12, "feet"),
  16473. weight: math.unit(114, "lb"),
  16474. name: "Front",
  16475. image: {
  16476. source: "./media/characters/raf/front.svg",
  16477. bottom: 20.5 / 1863
  16478. }
  16479. },
  16480. side: {
  16481. height: math.unit(4 + 11 / 12, "feet"),
  16482. weight: math.unit(114, "lb"),
  16483. name: "Side",
  16484. image: {
  16485. source: "./media/characters/raf/side.svg",
  16486. bottom: 22 / 1822
  16487. }
  16488. },
  16489. },
  16490. [
  16491. {
  16492. name: "Micro",
  16493. height: math.unit(2, "inches")
  16494. },
  16495. {
  16496. name: "Normal",
  16497. height: math.unit(4 + 11 / 12, "feet"),
  16498. default: true
  16499. },
  16500. {
  16501. name: "Macro",
  16502. height: math.unit(70, "feet")
  16503. },
  16504. ]
  16505. ))
  16506. characterMakers.push(() => makeCharacter(
  16507. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16508. {
  16509. front: {
  16510. height: math.unit(1.5, "meters"),
  16511. weight: math.unit(68, "kg"),
  16512. name: "Front",
  16513. image: {
  16514. source: "./media/characters/liam-einarr/front.svg",
  16515. extra: 2822 / 2666
  16516. }
  16517. },
  16518. back: {
  16519. height: math.unit(1.5, "meters"),
  16520. weight: math.unit(68, "kg"),
  16521. name: "Back",
  16522. image: {
  16523. source: "./media/characters/liam-einarr/back.svg",
  16524. extra: 2822 / 2666,
  16525. bottom: 0.015
  16526. }
  16527. },
  16528. },
  16529. [
  16530. {
  16531. name: "Normal",
  16532. height: math.unit(1.5, "meters"),
  16533. default: true
  16534. },
  16535. {
  16536. name: "Macro",
  16537. height: math.unit(150, "meters")
  16538. },
  16539. {
  16540. name: "Megamacro",
  16541. height: math.unit(35, "km")
  16542. },
  16543. ]
  16544. ))
  16545. characterMakers.push(() => makeCharacter(
  16546. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16547. {
  16548. front: {
  16549. height: math.unit(6, "feet"),
  16550. weight: math.unit(75, "kg"),
  16551. name: "Front",
  16552. image: {
  16553. source: "./media/characters/linda/front.svg",
  16554. extra: 930 / 874,
  16555. bottom: 0.004
  16556. }
  16557. },
  16558. },
  16559. [
  16560. {
  16561. name: "Normal",
  16562. height: math.unit(6, "feet"),
  16563. default: true
  16564. },
  16565. ]
  16566. ))
  16567. characterMakers.push(() => makeCharacter(
  16568. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16569. {
  16570. front: {
  16571. height: math.unit(6 + 8 / 12, "feet"),
  16572. weight: math.unit(220, "lb"),
  16573. name: "Front",
  16574. image: {
  16575. source: "./media/characters/caylex/front.svg",
  16576. extra: 821 / 772,
  16577. bottom: 0.07
  16578. }
  16579. },
  16580. back: {
  16581. height: math.unit(6 + 8 / 12, "feet"),
  16582. weight: math.unit(220, "lb"),
  16583. name: "Back",
  16584. image: {
  16585. source: "./media/characters/caylex/back.svg",
  16586. extra: 821 / 772,
  16587. bottom: 0.022
  16588. }
  16589. },
  16590. hand: {
  16591. height: math.unit(1.25, "feet"),
  16592. name: "Hand",
  16593. image: {
  16594. source: "./media/characters/caylex/hand.svg"
  16595. }
  16596. },
  16597. foot: {
  16598. height: math.unit(1.6, "feet"),
  16599. name: "Foot",
  16600. image: {
  16601. source: "./media/characters/caylex/foot.svg"
  16602. }
  16603. },
  16604. armored: {
  16605. height: math.unit(6 + 8 / 12, "feet"),
  16606. weight: math.unit(250, "lb"),
  16607. name: "Armored",
  16608. image: {
  16609. source: "./media/characters/caylex/armored.svg",
  16610. extra: 1420 / 1310,
  16611. bottom: 0.045
  16612. }
  16613. },
  16614. },
  16615. [
  16616. {
  16617. name: "Normal",
  16618. height: math.unit(6 + 8 / 12, "feet"),
  16619. default: true
  16620. },
  16621. {
  16622. name: "Normal+",
  16623. height: math.unit(12, "feet")
  16624. },
  16625. ]
  16626. ))
  16627. characterMakers.push(() => makeCharacter(
  16628. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16629. {
  16630. front: {
  16631. height: math.unit(7 + 6 / 12, "feet"),
  16632. weight: math.unit(288, "lb"),
  16633. name: "Front",
  16634. image: {
  16635. source: "./media/characters/alana/front.svg",
  16636. extra: 679 / 653,
  16637. bottom: 22.5 / 701
  16638. }
  16639. },
  16640. },
  16641. [
  16642. {
  16643. name: "Normal",
  16644. height: math.unit(7 + 6 / 12, "feet")
  16645. },
  16646. {
  16647. name: "Large",
  16648. height: math.unit(50, "feet")
  16649. },
  16650. {
  16651. name: "Macro",
  16652. height: math.unit(100, "feet"),
  16653. default: true
  16654. },
  16655. {
  16656. name: "Macro+",
  16657. height: math.unit(200, "feet")
  16658. },
  16659. ]
  16660. ))
  16661. characterMakers.push(() => makeCharacter(
  16662. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16663. {
  16664. front: {
  16665. height: math.unit(6 + 1 / 12, "feet"),
  16666. weight: math.unit(210, "lb"),
  16667. name: "Front",
  16668. image: {
  16669. source: "./media/characters/hasani/front.svg",
  16670. extra: 244 / 232,
  16671. bottom: 0.01
  16672. }
  16673. },
  16674. back: {
  16675. height: math.unit(6 + 1 / 12, "feet"),
  16676. weight: math.unit(210, "lb"),
  16677. name: "Back",
  16678. image: {
  16679. source: "./media/characters/hasani/back.svg",
  16680. extra: 244 / 232,
  16681. bottom: 0.01
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(6 + 1 / 12, "feet")
  16689. },
  16690. {
  16691. name: "Macro",
  16692. height: math.unit(175, "feet"),
  16693. default: true
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16699. {
  16700. front: {
  16701. height: math.unit(1.82, "meters"),
  16702. weight: math.unit(140, "lb"),
  16703. name: "Front",
  16704. image: {
  16705. source: "./media/characters/nita/front.svg",
  16706. extra: 2473 / 2363,
  16707. bottom: 0.01
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Normal",
  16714. height: math.unit(1.82, "m")
  16715. },
  16716. {
  16717. name: "Macro",
  16718. height: math.unit(300, "m")
  16719. },
  16720. {
  16721. name: "Mistake Canon",
  16722. height: math.unit(0.5, "miles"),
  16723. default: true
  16724. },
  16725. {
  16726. name: "Big Mistake",
  16727. height: math.unit(13, "miles")
  16728. },
  16729. {
  16730. name: "Playing God",
  16731. height: math.unit(2450, "miles")
  16732. },
  16733. ]
  16734. ))
  16735. characterMakers.push(() => makeCharacter(
  16736. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16737. {
  16738. front: {
  16739. height: math.unit(4, "feet"),
  16740. weight: math.unit(120, "lb"),
  16741. name: "Front",
  16742. image: {
  16743. source: "./media/characters/shiriko/front.svg",
  16744. extra: 195 / 188
  16745. }
  16746. },
  16747. },
  16748. [
  16749. {
  16750. name: "Normal",
  16751. height: math.unit(4, "feet"),
  16752. default: true
  16753. },
  16754. ]
  16755. ))
  16756. characterMakers.push(() => makeCharacter(
  16757. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16758. {
  16759. front: {
  16760. height: math.unit(6, "feet"),
  16761. name: "front",
  16762. image: {
  16763. source: "./media/characters/deja/front.svg",
  16764. extra: 926 / 840,
  16765. bottom: 0.07
  16766. }
  16767. },
  16768. },
  16769. [
  16770. {
  16771. name: "Planck Length",
  16772. height: math.unit(1.6e-35, "meters")
  16773. },
  16774. {
  16775. name: "Normal",
  16776. height: math.unit(30.48, "meters"),
  16777. default: true
  16778. },
  16779. {
  16780. name: "Universal",
  16781. height: math.unit(8.8e26, "meters")
  16782. },
  16783. ]
  16784. ))
  16785. characterMakers.push(() => makeCharacter(
  16786. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16787. {
  16788. side: {
  16789. height: math.unit(8, "feet"),
  16790. weight: math.unit(6300, "lb"),
  16791. name: "Side",
  16792. image: {
  16793. source: "./media/characters/anima/side.svg",
  16794. bottom: 0.035
  16795. }
  16796. },
  16797. },
  16798. [
  16799. {
  16800. name: "Normal",
  16801. height: math.unit(8, "feet"),
  16802. default: true
  16803. },
  16804. ]
  16805. ))
  16806. characterMakers.push(() => makeCharacter(
  16807. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16808. {
  16809. front: {
  16810. height: math.unit(8, "feet"),
  16811. weight: math.unit(350, "lb"),
  16812. name: "Front",
  16813. image: {
  16814. source: "./media/characters/bianca/front.svg",
  16815. extra: 234 / 225,
  16816. bottom: 0.03
  16817. }
  16818. },
  16819. },
  16820. [
  16821. {
  16822. name: "Normal",
  16823. height: math.unit(8, "feet"),
  16824. default: true
  16825. },
  16826. ]
  16827. ))
  16828. characterMakers.push(() => makeCharacter(
  16829. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16830. {
  16831. front: {
  16832. height: math.unit(6, "feet"),
  16833. weight: math.unit(150, "lb"),
  16834. name: "Front",
  16835. image: {
  16836. source: "./media/characters/adinia/front.svg",
  16837. extra: 1845 / 1672,
  16838. bottom: 0.02
  16839. }
  16840. },
  16841. back: {
  16842. height: math.unit(6, "feet"),
  16843. weight: math.unit(150, "lb"),
  16844. name: "Back",
  16845. image: {
  16846. source: "./media/characters/adinia/back.svg",
  16847. extra: 1845 / 1672,
  16848. bottom: 0.002
  16849. }
  16850. },
  16851. },
  16852. [
  16853. {
  16854. name: "Normal",
  16855. height: math.unit(11 + 5 / 12, "feet"),
  16856. default: true
  16857. },
  16858. ]
  16859. ))
  16860. characterMakers.push(() => makeCharacter(
  16861. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16862. {
  16863. front: {
  16864. height: math.unit(3, "meters"),
  16865. weight: math.unit(200, "kg"),
  16866. name: "Front",
  16867. image: {
  16868. source: "./media/characters/lykasa/front.svg",
  16869. extra: 1076 / 976,
  16870. bottom: 0.06
  16871. }
  16872. },
  16873. },
  16874. [
  16875. {
  16876. name: "Normal",
  16877. height: math.unit(3, "meters")
  16878. },
  16879. {
  16880. name: "Kaiju",
  16881. height: math.unit(120, "meters"),
  16882. default: true
  16883. },
  16884. {
  16885. name: "Mega Kaiju",
  16886. height: math.unit(240, "km")
  16887. },
  16888. {
  16889. name: "Giga Kaiju",
  16890. height: math.unit(400, "megameters")
  16891. },
  16892. {
  16893. name: "Tera Kaiju",
  16894. height: math.unit(800, "gigameters")
  16895. },
  16896. {
  16897. name: "Kaiju Dragon Goddess",
  16898. height: math.unit(26, "zettaparsecs")
  16899. },
  16900. ]
  16901. ))
  16902. characterMakers.push(() => makeCharacter(
  16903. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16904. {
  16905. side: {
  16906. height: math.unit(283 / 124 * 6, "feet"),
  16907. weight: math.unit(35000, "lb"),
  16908. name: "Side",
  16909. image: {
  16910. source: "./media/characters/malfaren/side.svg",
  16911. extra: 2500 / 1010,
  16912. bottom: 0.01
  16913. }
  16914. },
  16915. front: {
  16916. height: math.unit(22.36, "feet"),
  16917. weight: math.unit(35000, "lb"),
  16918. name: "Front",
  16919. image: {
  16920. source: "./media/characters/malfaren/front.svg",
  16921. extra: 1631 / 1476,
  16922. bottom: 0.01
  16923. }
  16924. },
  16925. maw: {
  16926. height: math.unit(6.9, "feet"),
  16927. name: "Maw",
  16928. image: {
  16929. source: "./media/characters/malfaren/maw.svg"
  16930. }
  16931. },
  16932. },
  16933. [
  16934. {
  16935. name: "Big",
  16936. height: math.unit(283 / 162 * 6, "feet"),
  16937. },
  16938. {
  16939. name: "Bigger",
  16940. height: math.unit(283 / 124 * 6, "feet")
  16941. },
  16942. {
  16943. name: "Massive",
  16944. height: math.unit(283 / 92 * 6, "feet"),
  16945. default: true
  16946. },
  16947. {
  16948. name: "👀💦",
  16949. height: math.unit(283 / 73 * 6, "feet"),
  16950. },
  16951. ]
  16952. ))
  16953. characterMakers.push(() => makeCharacter(
  16954. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16955. {
  16956. front: {
  16957. height: math.unit(1.7, "m"),
  16958. weight: math.unit(70, "kg"),
  16959. name: "Front",
  16960. image: {
  16961. source: "./media/characters/kernel/front.svg",
  16962. extra: 222 / 210,
  16963. bottom: 0.007
  16964. }
  16965. },
  16966. },
  16967. [
  16968. {
  16969. name: "Nano",
  16970. height: math.unit(17, "micrometers")
  16971. },
  16972. {
  16973. name: "Micro",
  16974. height: math.unit(1.7, "mm")
  16975. },
  16976. {
  16977. name: "Small",
  16978. height: math.unit(1.7, "cm")
  16979. },
  16980. {
  16981. name: "Normal",
  16982. height: math.unit(1.7, "m"),
  16983. default: true
  16984. },
  16985. ]
  16986. ))
  16987. characterMakers.push(() => makeCharacter(
  16988. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16989. {
  16990. front: {
  16991. height: math.unit(1.75, "meters"),
  16992. weight: math.unit(65, "kg"),
  16993. name: "Front",
  16994. image: {
  16995. source: "./media/characters/jayne-folest/front.svg",
  16996. extra: 2115 / 2007,
  16997. bottom: 0.02
  16998. }
  16999. },
  17000. back: {
  17001. height: math.unit(1.75, "meters"),
  17002. weight: math.unit(65, "kg"),
  17003. name: "Back",
  17004. image: {
  17005. source: "./media/characters/jayne-folest/back.svg",
  17006. extra: 2115 / 2007,
  17007. bottom: 0.005
  17008. }
  17009. },
  17010. frontClothed: {
  17011. height: math.unit(1.75, "meters"),
  17012. weight: math.unit(65, "kg"),
  17013. name: "Front (Clothed)",
  17014. image: {
  17015. source: "./media/characters/jayne-folest/front-clothed.svg",
  17016. extra: 2115 / 2007,
  17017. bottom: 0.035
  17018. }
  17019. },
  17020. hand: {
  17021. height: math.unit(1 / 1.260, "feet"),
  17022. name: "Hand",
  17023. image: {
  17024. source: "./media/characters/jayne-folest/hand.svg"
  17025. }
  17026. },
  17027. foot: {
  17028. height: math.unit(1 / 0.918, "feet"),
  17029. name: "Foot",
  17030. image: {
  17031. source: "./media/characters/jayne-folest/foot.svg"
  17032. }
  17033. },
  17034. },
  17035. [
  17036. {
  17037. name: "Micro",
  17038. height: math.unit(4, "cm")
  17039. },
  17040. {
  17041. name: "Normal",
  17042. height: math.unit(1.75, "meters")
  17043. },
  17044. {
  17045. name: "Macro",
  17046. height: math.unit(47.5, "meters"),
  17047. default: true
  17048. },
  17049. ]
  17050. ))
  17051. characterMakers.push(() => makeCharacter(
  17052. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17053. {
  17054. front: {
  17055. height: math.unit(180, "cm"),
  17056. weight: math.unit(70, "kg"),
  17057. name: "Front",
  17058. image: {
  17059. source: "./media/characters/algier/front.svg",
  17060. extra: 596 / 572,
  17061. bottom: 0.04
  17062. }
  17063. },
  17064. back: {
  17065. height: math.unit(180, "cm"),
  17066. weight: math.unit(70, "kg"),
  17067. name: "Back",
  17068. image: {
  17069. source: "./media/characters/algier/back.svg",
  17070. extra: 596 / 572,
  17071. bottom: 0.025
  17072. }
  17073. },
  17074. frontdressed: {
  17075. height: math.unit(180, "cm"),
  17076. weight: math.unit(150, "kg"),
  17077. name: "Front-dressed",
  17078. image: {
  17079. source: "./media/characters/algier/front-dressed.svg",
  17080. extra: 596 / 572,
  17081. bottom: 0.038
  17082. }
  17083. },
  17084. },
  17085. [
  17086. {
  17087. name: "Micro",
  17088. height: math.unit(5, "cm")
  17089. },
  17090. {
  17091. name: "Normal",
  17092. height: math.unit(180, "cm"),
  17093. default: true
  17094. },
  17095. {
  17096. name: "Macro",
  17097. height: math.unit(64, "m")
  17098. },
  17099. ]
  17100. ))
  17101. characterMakers.push(() => makeCharacter(
  17102. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17103. {
  17104. upright: {
  17105. height: math.unit(7, "feet"),
  17106. weight: math.unit(300, "lb"),
  17107. name: "Upright",
  17108. image: {
  17109. source: "./media/characters/pretzel/upright.svg",
  17110. extra: 534 / 522,
  17111. bottom: 0.065
  17112. }
  17113. },
  17114. sprawling: {
  17115. height: math.unit(3.75, "feet"),
  17116. weight: math.unit(300, "lb"),
  17117. name: "Sprawling",
  17118. image: {
  17119. source: "./media/characters/pretzel/sprawling.svg",
  17120. extra: 314 / 281,
  17121. bottom: 0.1
  17122. }
  17123. },
  17124. tongue: {
  17125. height: math.unit(2, "feet"),
  17126. name: "Tongue",
  17127. image: {
  17128. source: "./media/characters/pretzel/tongue.svg"
  17129. }
  17130. },
  17131. },
  17132. [
  17133. {
  17134. name: "Normal",
  17135. height: math.unit(7, "feet"),
  17136. default: true
  17137. },
  17138. {
  17139. name: "Oversized",
  17140. height: math.unit(15, "feet")
  17141. },
  17142. {
  17143. name: "Huge",
  17144. height: math.unit(30, "feet")
  17145. },
  17146. {
  17147. name: "Macro",
  17148. height: math.unit(250, "feet")
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17154. {
  17155. sideFront: {
  17156. height: math.unit(5 + 2 / 12, "feet"),
  17157. weight: math.unit(120, "lb"),
  17158. name: "Front Side",
  17159. image: {
  17160. source: "./media/characters/roxi/side-front.svg",
  17161. extra: 2924 / 2717,
  17162. bottom: 0.08
  17163. }
  17164. },
  17165. sideBack: {
  17166. height: math.unit(5 + 2 / 12, "feet"),
  17167. weight: math.unit(120, "lb"),
  17168. name: "Back Side",
  17169. image: {
  17170. source: "./media/characters/roxi/side-back.svg",
  17171. extra: 2904 / 2693,
  17172. bottom: 0.06
  17173. }
  17174. },
  17175. front: {
  17176. height: math.unit(5 + 2 / 12, "feet"),
  17177. weight: math.unit(120, "lb"),
  17178. name: "Front",
  17179. image: {
  17180. source: "./media/characters/roxi/front.svg",
  17181. extra: 2028 / 1907,
  17182. bottom: 0.01
  17183. }
  17184. },
  17185. frontAlt: {
  17186. height: math.unit(5 + 2 / 12, "feet"),
  17187. weight: math.unit(120, "lb"),
  17188. name: "Front (Alt)",
  17189. image: {
  17190. source: "./media/characters/roxi/front-alt.svg",
  17191. extra: 1828 / 1798,
  17192. bottom: 0.01
  17193. }
  17194. },
  17195. sitting: {
  17196. height: math.unit(2.8, "feet"),
  17197. weight: math.unit(120, "lb"),
  17198. name: "Sitting",
  17199. image: {
  17200. source: "./media/characters/roxi/sitting.svg",
  17201. extra: 2660 / 2462,
  17202. bottom: 0.1
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Normal",
  17209. height: math.unit(5 + 2 / 12, "feet"),
  17210. default: true
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17216. {
  17217. side: {
  17218. height: math.unit(55, "feet"),
  17219. weight: math.unit(153, "tons"),
  17220. name: "Side",
  17221. image: {
  17222. source: "./media/characters/shadow/side.svg",
  17223. extra: 701 / 628,
  17224. bottom: 0.02
  17225. }
  17226. },
  17227. flying: {
  17228. height: math.unit(145, "feet"),
  17229. weight: math.unit(153, "tons"),
  17230. name: "Flying",
  17231. image: {
  17232. source: "./media/characters/shadow/flying.svg"
  17233. }
  17234. },
  17235. },
  17236. [
  17237. {
  17238. name: "Normal",
  17239. height: math.unit(55, "feet"),
  17240. default: true
  17241. },
  17242. ]
  17243. ))
  17244. characterMakers.push(() => makeCharacter(
  17245. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17246. {
  17247. front: {
  17248. height: math.unit(6, "feet"),
  17249. weight: math.unit(200, "lb"),
  17250. name: "Front",
  17251. image: {
  17252. source: "./media/characters/marcie/front.svg",
  17253. extra: 960 / 876,
  17254. bottom: 58 / 1017.87
  17255. }
  17256. },
  17257. },
  17258. [
  17259. {
  17260. name: "Macro",
  17261. height: math.unit(1, "mile"),
  17262. default: true
  17263. },
  17264. ]
  17265. ))
  17266. characterMakers.push(() => makeCharacter(
  17267. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17268. {
  17269. front: {
  17270. height: math.unit(7, "feet"),
  17271. weight: math.unit(200, "lb"),
  17272. name: "Front",
  17273. image: {
  17274. source: "./media/characters/kachina/front.svg",
  17275. extra: 1290.68 / 1119,
  17276. bottom: 36.5 / 1327.18
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Normal",
  17283. height: math.unit(7, "feet"),
  17284. default: true
  17285. },
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17290. {
  17291. looking: {
  17292. height: math.unit(2, "meters"),
  17293. weight: math.unit(300, "kg"),
  17294. name: "Looking",
  17295. image: {
  17296. source: "./media/characters/kash/looking.svg",
  17297. extra: 474 / 344,
  17298. bottom: 0.03
  17299. }
  17300. },
  17301. side: {
  17302. height: math.unit(2, "meters"),
  17303. weight: math.unit(300, "kg"),
  17304. name: "Side",
  17305. image: {
  17306. source: "./media/characters/kash/side.svg",
  17307. extra: 302 / 251,
  17308. bottom: 0.03
  17309. }
  17310. },
  17311. front: {
  17312. height: math.unit(2, "meters"),
  17313. weight: math.unit(300, "kg"),
  17314. name: "Front",
  17315. image: {
  17316. source: "./media/characters/kash/front.svg",
  17317. extra: 495 / 360,
  17318. bottom: 0.015
  17319. }
  17320. },
  17321. },
  17322. [
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(2, "meters"),
  17326. default: true
  17327. },
  17328. {
  17329. name: "Big",
  17330. height: math.unit(3, "meters")
  17331. },
  17332. {
  17333. name: "Large",
  17334. height: math.unit(5, "meters")
  17335. },
  17336. ]
  17337. ))
  17338. characterMakers.push(() => makeCharacter(
  17339. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17340. {
  17341. feeding: {
  17342. height: math.unit(6.7, "feet"),
  17343. weight: math.unit(350, "lb"),
  17344. name: "Feeding",
  17345. image: {
  17346. source: "./media/characters/lalim/feeding.svg",
  17347. }
  17348. },
  17349. },
  17350. [
  17351. {
  17352. name: "Normal",
  17353. height: math.unit(6.7, "feet"),
  17354. default: true
  17355. },
  17356. ]
  17357. ))
  17358. characterMakers.push(() => makeCharacter(
  17359. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17360. {
  17361. front: {
  17362. height: math.unit(9.5, "feet"),
  17363. weight: math.unit(600, "lb"),
  17364. name: "Front",
  17365. image: {
  17366. source: "./media/characters/de'vout/front.svg",
  17367. extra: 1443 / 1328,
  17368. bottom: 0.025
  17369. }
  17370. },
  17371. back: {
  17372. height: math.unit(9.5, "feet"),
  17373. weight: math.unit(600, "lb"),
  17374. name: "Back",
  17375. image: {
  17376. source: "./media/characters/de'vout/back.svg",
  17377. extra: 1443 / 1328
  17378. }
  17379. },
  17380. frontDressed: {
  17381. height: math.unit(9.5, "feet"),
  17382. weight: math.unit(600, "lb"),
  17383. name: "Front (Dressed",
  17384. image: {
  17385. source: "./media/characters/de'vout/front-dressed.svg",
  17386. extra: 1443 / 1328,
  17387. bottom: 0.025
  17388. }
  17389. },
  17390. backDressed: {
  17391. height: math.unit(9.5, "feet"),
  17392. weight: math.unit(600, "lb"),
  17393. name: "Back (Dressed",
  17394. image: {
  17395. source: "./media/characters/de'vout/back-dressed.svg",
  17396. extra: 1443 / 1328
  17397. }
  17398. },
  17399. },
  17400. [
  17401. {
  17402. name: "Normal",
  17403. height: math.unit(9.5, "feet"),
  17404. default: true
  17405. },
  17406. ]
  17407. ))
  17408. characterMakers.push(() => makeCharacter(
  17409. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17410. {
  17411. front: {
  17412. height: math.unit(8, "feet"),
  17413. weight: math.unit(225, "lb"),
  17414. name: "Front",
  17415. image: {
  17416. source: "./media/characters/talana/front.svg",
  17417. extra: 1410 / 1300,
  17418. bottom: 0.015
  17419. }
  17420. },
  17421. frontDressed: {
  17422. height: math.unit(8, "feet"),
  17423. weight: math.unit(225, "lb"),
  17424. name: "Front (Dressed",
  17425. image: {
  17426. source: "./media/characters/talana/front-dressed.svg",
  17427. extra: 1410 / 1300,
  17428. bottom: 0.015
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(8, "feet"),
  17436. default: true
  17437. },
  17438. ]
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17442. {
  17443. side: {
  17444. height: math.unit(7.2, "feet"),
  17445. weight: math.unit(150, "lb"),
  17446. name: "Side",
  17447. image: {
  17448. source: "./media/characters/xeauvok/side.svg",
  17449. extra: 1975 / 1523,
  17450. bottom: 0.07
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(7.2, "feet"),
  17458. default: true
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17464. {
  17465. side: {
  17466. height: math.unit(10, "feet"),
  17467. weight: math.unit(900, "kg"),
  17468. name: "Side",
  17469. image: {
  17470. source: "./media/characters/zara/side.svg",
  17471. extra: 504 / 498
  17472. }
  17473. },
  17474. },
  17475. [
  17476. {
  17477. name: "Normal",
  17478. height: math.unit(10, "feet"),
  17479. default: true
  17480. },
  17481. ]
  17482. ))
  17483. characterMakers.push(() => makeCharacter(
  17484. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17485. {
  17486. side: {
  17487. height: math.unit(6, "feet"),
  17488. weight: math.unit(150, "lb"),
  17489. name: "Side",
  17490. image: {
  17491. source: "./media/characters/richard-dragon/side.svg",
  17492. extra: 845 / 340,
  17493. bottom: 0.017
  17494. }
  17495. },
  17496. maw: {
  17497. height: math.unit(2.97, "feet"),
  17498. name: "Maw",
  17499. image: {
  17500. source: "./media/characters/richard-dragon/maw.svg"
  17501. }
  17502. },
  17503. },
  17504. [
  17505. ]
  17506. ))
  17507. characterMakers.push(() => makeCharacter(
  17508. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17509. {
  17510. front: {
  17511. height: math.unit(4, "feet"),
  17512. weight: math.unit(100, "lb"),
  17513. name: "Front",
  17514. image: {
  17515. source: "./media/characters/richard-smeargle/front.svg",
  17516. extra: 2952 / 2820,
  17517. bottom: 0.028
  17518. }
  17519. },
  17520. },
  17521. [
  17522. {
  17523. name: "Normal",
  17524. height: math.unit(4, "feet"),
  17525. default: true
  17526. },
  17527. {
  17528. name: "Dynamax",
  17529. height: math.unit(20, "meters")
  17530. },
  17531. ]
  17532. ))
  17533. characterMakers.push(() => makeCharacter(
  17534. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17535. {
  17536. front: {
  17537. height: math.unit(6, "feet"),
  17538. weight: math.unit(110, "lb"),
  17539. name: "Front",
  17540. image: {
  17541. source: "./media/characters/klay/front.svg",
  17542. extra: 962 / 883,
  17543. bottom: 0.04
  17544. }
  17545. },
  17546. back: {
  17547. height: math.unit(6, "feet"),
  17548. weight: math.unit(110, "lb"),
  17549. name: "Back",
  17550. image: {
  17551. source: "./media/characters/klay/back.svg",
  17552. extra: 962 / 883
  17553. }
  17554. },
  17555. beans: {
  17556. height: math.unit(1.15, "feet"),
  17557. name: "Beans",
  17558. image: {
  17559. source: "./media/characters/klay/beans.svg"
  17560. }
  17561. },
  17562. },
  17563. [
  17564. {
  17565. name: "Micro",
  17566. height: math.unit(6, "inches")
  17567. },
  17568. {
  17569. name: "Mini",
  17570. height: math.unit(3, "feet")
  17571. },
  17572. {
  17573. name: "Normal",
  17574. height: math.unit(6, "feet"),
  17575. default: true
  17576. },
  17577. {
  17578. name: "Big",
  17579. height: math.unit(25, "feet")
  17580. },
  17581. {
  17582. name: "Macro",
  17583. height: math.unit(100, "feet")
  17584. },
  17585. {
  17586. name: "Megamacro",
  17587. height: math.unit(400, "feet")
  17588. },
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17593. {
  17594. front: {
  17595. height: math.unit(6, "feet"),
  17596. weight: math.unit(160, "lb"),
  17597. name: "Front",
  17598. image: {
  17599. source: "./media/characters/marcus/front.svg",
  17600. extra: 734 / 676,
  17601. bottom: 0.03
  17602. }
  17603. },
  17604. },
  17605. [
  17606. {
  17607. name: "Little",
  17608. height: math.unit(6, "feet")
  17609. },
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(110, "feet"),
  17613. default: true
  17614. },
  17615. {
  17616. name: "Macro",
  17617. height: math.unit(250, "feet")
  17618. },
  17619. {
  17620. name: "Megamacro",
  17621. height: math.unit(1000, "feet")
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17627. {
  17628. front: {
  17629. height: math.unit(7, "feet"),
  17630. weight: math.unit(275, "lb"),
  17631. name: "Front",
  17632. image: {
  17633. source: "./media/characters/claude-delroute/front.svg",
  17634. extra: 230 / 214,
  17635. bottom: 0.007
  17636. }
  17637. },
  17638. side: {
  17639. height: math.unit(7, "feet"),
  17640. weight: math.unit(275, "lb"),
  17641. name: "Side",
  17642. image: {
  17643. source: "./media/characters/claude-delroute/side.svg",
  17644. extra: 222 / 214,
  17645. bottom: 0.01
  17646. }
  17647. },
  17648. back: {
  17649. height: math.unit(7, "feet"),
  17650. weight: math.unit(275, "lb"),
  17651. name: "Back",
  17652. image: {
  17653. source: "./media/characters/claude-delroute/back.svg",
  17654. extra: 230 / 214,
  17655. bottom: 0.015
  17656. }
  17657. },
  17658. maw: {
  17659. height: math.unit(0.6407, "meters"),
  17660. name: "Maw",
  17661. image: {
  17662. source: "./media/characters/claude-delroute/maw.svg"
  17663. }
  17664. },
  17665. },
  17666. [
  17667. {
  17668. name: "Normal",
  17669. height: math.unit(7, "feet"),
  17670. default: true
  17671. },
  17672. {
  17673. name: "Lorge",
  17674. height: math.unit(20, "feet")
  17675. },
  17676. ]
  17677. ))
  17678. characterMakers.push(() => makeCharacter(
  17679. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17680. {
  17681. front: {
  17682. height: math.unit(8 + 4 / 12, "feet"),
  17683. weight: math.unit(600, "lb"),
  17684. name: "Front",
  17685. image: {
  17686. source: "./media/characters/dragonien/front.svg",
  17687. extra: 100 / 94,
  17688. bottom: 3.3 / 103.3445
  17689. }
  17690. },
  17691. back: {
  17692. height: math.unit(8 + 4 / 12, "feet"),
  17693. weight: math.unit(600, "lb"),
  17694. name: "Back",
  17695. image: {
  17696. source: "./media/characters/dragonien/back.svg",
  17697. extra: 776 / 746,
  17698. bottom: 6.4 / 782.0616
  17699. }
  17700. },
  17701. foot: {
  17702. height: math.unit(1.54, "feet"),
  17703. name: "Foot",
  17704. image: {
  17705. source: "./media/characters/dragonien/foot.svg",
  17706. }
  17707. },
  17708. },
  17709. [
  17710. {
  17711. name: "Normal",
  17712. height: math.unit(8 + 4 / 12, "feet"),
  17713. default: true
  17714. },
  17715. {
  17716. name: "Macro",
  17717. height: math.unit(200, "feet")
  17718. },
  17719. {
  17720. name: "Megamacro",
  17721. height: math.unit(1, "mile")
  17722. },
  17723. {
  17724. name: "Gigamacro",
  17725. height: math.unit(1000, "miles")
  17726. },
  17727. ]
  17728. ))
  17729. characterMakers.push(() => makeCharacter(
  17730. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17731. {
  17732. front: {
  17733. height: math.unit(5 + 2 / 12, "feet"),
  17734. weight: math.unit(110, "lb"),
  17735. name: "Front",
  17736. image: {
  17737. source: "./media/characters/desta/front.svg",
  17738. extra: 767 / 726,
  17739. bottom: 11.7 / 779
  17740. }
  17741. },
  17742. back: {
  17743. height: math.unit(5 + 2 / 12, "feet"),
  17744. weight: math.unit(110, "lb"),
  17745. name: "Back",
  17746. image: {
  17747. source: "./media/characters/desta/back.svg",
  17748. extra: 777 / 728,
  17749. bottom: 6 / 784
  17750. }
  17751. },
  17752. frontAlt: {
  17753. height: math.unit(5 + 2 / 12, "feet"),
  17754. weight: math.unit(110, "lb"),
  17755. name: "Front",
  17756. image: {
  17757. source: "./media/characters/desta/front-alt.svg",
  17758. extra: 1482 / 1417
  17759. }
  17760. },
  17761. side: {
  17762. height: math.unit(5 + 2 / 12, "feet"),
  17763. weight: math.unit(110, "lb"),
  17764. name: "Side",
  17765. image: {
  17766. source: "./media/characters/desta/side.svg",
  17767. extra: 2579 / 2491,
  17768. bottom: 0.053
  17769. }
  17770. },
  17771. },
  17772. [
  17773. {
  17774. name: "Micro",
  17775. height: math.unit(6, "inches")
  17776. },
  17777. {
  17778. name: "Normal",
  17779. height: math.unit(5 + 2 / 12, "feet"),
  17780. default: true
  17781. },
  17782. {
  17783. name: "Macro",
  17784. height: math.unit(62, "feet")
  17785. },
  17786. {
  17787. name: "Megamacro",
  17788. height: math.unit(1800, "feet")
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17794. {
  17795. front: {
  17796. height: math.unit(10, "feet"),
  17797. weight: math.unit(700, "lb"),
  17798. name: "Front",
  17799. image: {
  17800. source: "./media/characters/storm-alystar/front.svg",
  17801. extra: 2112 / 1898,
  17802. bottom: 0.034
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Micro",
  17809. height: math.unit(3.5, "inches")
  17810. },
  17811. {
  17812. name: "Normal",
  17813. height: math.unit(10, "feet"),
  17814. default: true
  17815. },
  17816. {
  17817. name: "Macro",
  17818. height: math.unit(400, "feet")
  17819. },
  17820. {
  17821. name: "Deific",
  17822. height: math.unit(60, "miles")
  17823. },
  17824. ]
  17825. ))
  17826. characterMakers.push(() => makeCharacter(
  17827. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17828. {
  17829. front: {
  17830. height: math.unit(2.35, "meters"),
  17831. weight: math.unit(119, "kg"),
  17832. name: "Front",
  17833. image: {
  17834. source: "./media/characters/ilia/front.svg",
  17835. extra: 1285 / 1255,
  17836. bottom: 0.06
  17837. }
  17838. },
  17839. },
  17840. [
  17841. {
  17842. name: "Normal",
  17843. height: math.unit(2.35, "meters")
  17844. },
  17845. {
  17846. name: "Macro",
  17847. height: math.unit(140, "meters"),
  17848. default: true
  17849. },
  17850. {
  17851. name: "Megamacro",
  17852. height: math.unit(100, "miles")
  17853. },
  17854. ]
  17855. ))
  17856. characterMakers.push(() => makeCharacter(
  17857. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17858. {
  17859. front: {
  17860. height: math.unit(6 + 5 / 12, "feet"),
  17861. weight: math.unit(190, "lb"),
  17862. name: "Front",
  17863. image: {
  17864. source: "./media/characters/kingdead/front.svg",
  17865. extra: 1228 / 1177
  17866. }
  17867. },
  17868. },
  17869. [
  17870. {
  17871. name: "Micro",
  17872. height: math.unit(7, "inches")
  17873. },
  17874. {
  17875. name: "Normal",
  17876. height: math.unit(6 + 5 / 12, "feet")
  17877. },
  17878. {
  17879. name: "Macro",
  17880. height: math.unit(150, "feet"),
  17881. default: true
  17882. },
  17883. {
  17884. name: "Megamacro",
  17885. height: math.unit(200, "miles")
  17886. },
  17887. ]
  17888. ))
  17889. characterMakers.push(() => makeCharacter(
  17890. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17891. {
  17892. front: {
  17893. height: math.unit(8, "feet"),
  17894. weight: math.unit(600, "lb"),
  17895. name: "Front",
  17896. image: {
  17897. source: "./media/characters/kyrehx/front.svg",
  17898. extra: 1195 / 1095,
  17899. bottom: 0.034
  17900. }
  17901. },
  17902. },
  17903. [
  17904. {
  17905. name: "Micro",
  17906. height: math.unit(2, "inches")
  17907. },
  17908. {
  17909. name: "Normal",
  17910. height: math.unit(8, "feet"),
  17911. default: true
  17912. },
  17913. {
  17914. name: "Macro",
  17915. height: math.unit(255, "feet")
  17916. },
  17917. ]
  17918. ))
  17919. characterMakers.push(() => makeCharacter(
  17920. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17921. {
  17922. front: {
  17923. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17924. weight: math.unit(184, "lb"),
  17925. name: "Front",
  17926. image: {
  17927. source: "./media/characters/xang/front.svg",
  17928. extra: 845 / 755
  17929. }
  17930. },
  17931. },
  17932. [
  17933. {
  17934. name: "Normal",
  17935. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17936. default: true
  17937. },
  17938. {
  17939. name: "Macro",
  17940. height: math.unit(0.935 * 146, "feet")
  17941. },
  17942. {
  17943. name: "Megamacro",
  17944. height: math.unit(0.935 * 3, "miles")
  17945. },
  17946. ]
  17947. ))
  17948. characterMakers.push(() => makeCharacter(
  17949. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17950. {
  17951. frontDressed: {
  17952. height: math.unit(5 + 7 / 12, "feet"),
  17953. weight: math.unit(140, "lb"),
  17954. name: "Front (Dressed)",
  17955. image: {
  17956. source: "./media/characters/doc-weardno/front-dressed.svg",
  17957. extra: 263 / 234
  17958. }
  17959. },
  17960. backDressed: {
  17961. height: math.unit(5 + 7 / 12, "feet"),
  17962. weight: math.unit(140, "lb"),
  17963. name: "Back (Dressed)",
  17964. image: {
  17965. source: "./media/characters/doc-weardno/back-dressed.svg",
  17966. extra: 266 / 238
  17967. }
  17968. },
  17969. front: {
  17970. height: math.unit(5 + 7 / 12, "feet"),
  17971. weight: math.unit(140, "lb"),
  17972. name: "Front",
  17973. image: {
  17974. source: "./media/characters/doc-weardno/front.svg",
  17975. extra: 254 / 233
  17976. }
  17977. },
  17978. },
  17979. [
  17980. {
  17981. name: "Micro",
  17982. height: math.unit(3, "inches")
  17983. },
  17984. {
  17985. name: "Normal",
  17986. height: math.unit(5 + 7 / 12, "feet"),
  17987. default: true
  17988. },
  17989. {
  17990. name: "Macro",
  17991. height: math.unit(25, "feet")
  17992. },
  17993. {
  17994. name: "Megamacro",
  17995. height: math.unit(2, "miles")
  17996. },
  17997. ]
  17998. ))
  17999. characterMakers.push(() => makeCharacter(
  18000. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18001. {
  18002. front: {
  18003. height: math.unit(6 + 2 / 12, "feet"),
  18004. weight: math.unit(153, "lb"),
  18005. name: "Front",
  18006. image: {
  18007. source: "./media/characters/seth-whilst/front.svg",
  18008. bottom: 0.07
  18009. }
  18010. },
  18011. },
  18012. [
  18013. {
  18014. name: "Micro",
  18015. height: math.unit(5, "inches")
  18016. },
  18017. {
  18018. name: "Normal",
  18019. height: math.unit(6 + 2 / 12, "feet"),
  18020. default: true
  18021. },
  18022. ]
  18023. ))
  18024. characterMakers.push(() => makeCharacter(
  18025. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18026. {
  18027. front: {
  18028. height: math.unit(3, "inches"),
  18029. weight: math.unit(8, "grams"),
  18030. name: "Front",
  18031. image: {
  18032. source: "./media/characters/pocket-jabari/front.svg",
  18033. extra: 1024 / 974,
  18034. bottom: 0.039
  18035. }
  18036. },
  18037. },
  18038. [
  18039. {
  18040. name: "Minimicro",
  18041. height: math.unit(8, "mm")
  18042. },
  18043. {
  18044. name: "Micro",
  18045. height: math.unit(3, "inches"),
  18046. default: true
  18047. },
  18048. {
  18049. name: "Normal",
  18050. height: math.unit(3, "feet")
  18051. },
  18052. ]
  18053. ))
  18054. characterMakers.push(() => makeCharacter(
  18055. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18056. {
  18057. front: {
  18058. height: math.unit(15, "feet"),
  18059. weight: math.unit(3280, "lb"),
  18060. name: "Front",
  18061. image: {
  18062. source: "./media/characters/sapphy/front.svg",
  18063. extra: 671 / 577,
  18064. bottom: 0.085
  18065. }
  18066. },
  18067. back: {
  18068. height: math.unit(15, "feet"),
  18069. weight: math.unit(3280, "lb"),
  18070. name: "Back",
  18071. image: {
  18072. source: "./media/characters/sapphy/back.svg",
  18073. extra: 631 / 607,
  18074. bottom: 0.045
  18075. }
  18076. },
  18077. },
  18078. [
  18079. {
  18080. name: "Normal",
  18081. height: math.unit(15, "feet")
  18082. },
  18083. {
  18084. name: "Casual Macro",
  18085. height: math.unit(120, "feet")
  18086. },
  18087. {
  18088. name: "Macro",
  18089. height: math.unit(2150, "feet"),
  18090. default: true
  18091. },
  18092. {
  18093. name: "Megamacro",
  18094. height: math.unit(8, "miles")
  18095. },
  18096. {
  18097. name: "Galaxy Mom",
  18098. height: math.unit(6, "megalightyears")
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18104. {
  18105. front: {
  18106. height: math.unit(6, "feet"),
  18107. weight: math.unit(170, "lb"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/kiro/front.svg",
  18111. extra: 1064 / 1012,
  18112. bottom: 0.052
  18113. }
  18114. },
  18115. },
  18116. [
  18117. {
  18118. name: "Micro",
  18119. height: math.unit(6, "inches")
  18120. },
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(6, "feet"),
  18124. default: true
  18125. },
  18126. {
  18127. name: "Macro",
  18128. height: math.unit(72, "feet")
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18134. {
  18135. front: {
  18136. height: math.unit(5 + 9 / 12, "feet"),
  18137. weight: math.unit(175, "lb"),
  18138. name: "Front",
  18139. image: {
  18140. source: "./media/characters/irishfox/front.svg",
  18141. extra: 1912 / 1680,
  18142. bottom: 0.02
  18143. }
  18144. },
  18145. },
  18146. [
  18147. {
  18148. name: "Nano",
  18149. height: math.unit(1, "mm")
  18150. },
  18151. {
  18152. name: "Micro",
  18153. height: math.unit(2, "inches")
  18154. },
  18155. {
  18156. name: "Normal",
  18157. height: math.unit(5 + 9 / 12, "feet"),
  18158. default: true
  18159. },
  18160. {
  18161. name: "Macro",
  18162. height: math.unit(45, "feet")
  18163. },
  18164. ]
  18165. ))
  18166. characterMakers.push(() => makeCharacter(
  18167. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18168. {
  18169. front: {
  18170. height: math.unit(6 + 1 / 12, "feet"),
  18171. weight: math.unit(150, "lb"),
  18172. name: "Front",
  18173. image: {
  18174. source: "./media/characters/aronai-sieyes/front.svg",
  18175. extra: 1556 / 1480,
  18176. bottom: 0.015
  18177. }
  18178. },
  18179. side: {
  18180. height: math.unit(6 + 1 / 12, "feet"),
  18181. weight: math.unit(150, "lb"),
  18182. name: "Side",
  18183. image: {
  18184. source: "./media/characters/aronai-sieyes/side.svg",
  18185. extra: 1433 / 1390,
  18186. bottom: 0.0393
  18187. }
  18188. },
  18189. back: {
  18190. height: math.unit(6 + 1 / 12, "feet"),
  18191. weight: math.unit(150, "lb"),
  18192. name: "Back",
  18193. image: {
  18194. source: "./media/characters/aronai-sieyes/back.svg",
  18195. extra: 1544 / 1494,
  18196. bottom: 0.02
  18197. }
  18198. },
  18199. frontClothed: {
  18200. height: math.unit(6 + 1 / 12, "feet"),
  18201. weight: math.unit(150, "lb"),
  18202. name: "Front (Clothed)",
  18203. image: {
  18204. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18205. extra: 1582 / 1527
  18206. }
  18207. },
  18208. feral: {
  18209. height: math.unit(18, "feet"),
  18210. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18211. name: "Feral",
  18212. image: {
  18213. source: "./media/characters/aronai-sieyes/feral.svg",
  18214. extra: 1530 / 1240,
  18215. bottom: 0.035
  18216. }
  18217. },
  18218. },
  18219. [
  18220. {
  18221. name: "Micro",
  18222. height: math.unit(2, "inches")
  18223. },
  18224. {
  18225. name: "Normal",
  18226. height: math.unit(6 + 1 / 12, "feet"),
  18227. default: true
  18228. }
  18229. ]
  18230. ))
  18231. characterMakers.push(() => makeCharacter(
  18232. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18233. {
  18234. front: {
  18235. height: math.unit(12, "feet"),
  18236. weight: math.unit(410, "kg"),
  18237. name: "Front",
  18238. image: {
  18239. source: "./media/characters/xuna/front.svg",
  18240. extra: 2184 / 1980
  18241. }
  18242. },
  18243. side: {
  18244. height: math.unit(12, "feet"),
  18245. weight: math.unit(410, "kg"),
  18246. name: "Side",
  18247. image: {
  18248. source: "./media/characters/xuna/side.svg",
  18249. extra: 2184 / 1980
  18250. }
  18251. },
  18252. back: {
  18253. height: math.unit(12, "feet"),
  18254. weight: math.unit(410, "kg"),
  18255. name: "Back",
  18256. image: {
  18257. source: "./media/characters/xuna/back.svg",
  18258. extra: 2184 / 1980
  18259. }
  18260. },
  18261. },
  18262. [
  18263. {
  18264. name: "Nano glow",
  18265. height: math.unit(10, "nm")
  18266. },
  18267. {
  18268. name: "Micro floof",
  18269. height: math.unit(0.3, "m")
  18270. },
  18271. {
  18272. name: "Huggable softy boi",
  18273. height: math.unit(3.6576, "m"),
  18274. default: true
  18275. },
  18276. {
  18277. name: "Admirable floof",
  18278. height: math.unit(80, "meters")
  18279. },
  18280. {
  18281. name: "Gentle macro",
  18282. height: math.unit(300, "meters")
  18283. },
  18284. {
  18285. name: "Very careful floof",
  18286. height: math.unit(3200, "meters")
  18287. },
  18288. {
  18289. name: "The mega floof",
  18290. height: math.unit(36000, "meters")
  18291. },
  18292. {
  18293. name: "Giga-fur-Wicker",
  18294. height: math.unit(4800000, "meters")
  18295. },
  18296. {
  18297. name: "Licky world",
  18298. height: math.unit(20000000, "meters")
  18299. },
  18300. {
  18301. name: "Floofy cyan sun",
  18302. height: math.unit(1500000000, "meters")
  18303. },
  18304. {
  18305. name: "Milky Wicker",
  18306. height: math.unit(1000000000000000000000, "meters")
  18307. },
  18308. {
  18309. name: "The observing Wicker",
  18310. height: math.unit(999999999999999999999999999, "meters")
  18311. },
  18312. ]
  18313. ))
  18314. characterMakers.push(() => makeCharacter(
  18315. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18316. {
  18317. front: {
  18318. height: math.unit(5 + 9 / 12, "feet"),
  18319. weight: math.unit(150, "lb"),
  18320. name: "Front",
  18321. image: {
  18322. source: "./media/characters/arokha-sieyes/front.svg",
  18323. extra: 1425 / 1284,
  18324. bottom: 0.05
  18325. }
  18326. },
  18327. },
  18328. [
  18329. {
  18330. name: "Normal",
  18331. height: math.unit(5 + 9 / 12, "feet")
  18332. },
  18333. {
  18334. name: "Macro",
  18335. height: math.unit(30, "meters"),
  18336. default: true
  18337. },
  18338. ]
  18339. ))
  18340. characterMakers.push(() => makeCharacter(
  18341. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18342. {
  18343. front: {
  18344. height: math.unit(6, "feet"),
  18345. weight: math.unit(180, "lb"),
  18346. name: "Front",
  18347. image: {
  18348. source: "./media/characters/arokh-sieyes/front.svg",
  18349. extra: 1830 / 1769,
  18350. bottom: 0.01
  18351. }
  18352. },
  18353. },
  18354. [
  18355. {
  18356. name: "Normal",
  18357. height: math.unit(6, "feet")
  18358. },
  18359. {
  18360. name: "Macro",
  18361. height: math.unit(30, "meters"),
  18362. default: true
  18363. },
  18364. ]
  18365. ))
  18366. characterMakers.push(() => makeCharacter(
  18367. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18368. {
  18369. side: {
  18370. height: math.unit(13 + 1 / 12, "feet"),
  18371. weight: math.unit(8.5, "tonnes"),
  18372. name: "Side",
  18373. image: {
  18374. source: "./media/characters/goldeneye/side.svg",
  18375. extra: 1182 / 778,
  18376. bottom: 0.067
  18377. }
  18378. },
  18379. paw: {
  18380. height: math.unit(3.4, "feet"),
  18381. name: "Paw",
  18382. image: {
  18383. source: "./media/characters/goldeneye/paw.svg"
  18384. }
  18385. },
  18386. },
  18387. [
  18388. {
  18389. name: "Normal",
  18390. height: math.unit(13 + 1 / 12, "feet"),
  18391. default: true
  18392. },
  18393. ]
  18394. ))
  18395. characterMakers.push(() => makeCharacter(
  18396. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18397. {
  18398. front: {
  18399. height: math.unit(6 + 1 / 12, "feet"),
  18400. weight: math.unit(210, "lb"),
  18401. name: "Front",
  18402. image: {
  18403. source: "./media/characters/leonardo-lycheborne/front.svg",
  18404. extra: 390 / 365,
  18405. bottom: 0.032
  18406. }
  18407. },
  18408. side: {
  18409. height: math.unit(6 + 1 / 12, "feet"),
  18410. weight: math.unit(210, "lb"),
  18411. name: "Side",
  18412. image: {
  18413. source: "./media/characters/leonardo-lycheborne/side.svg",
  18414. extra: 390 / 365,
  18415. bottom: 0.005
  18416. }
  18417. },
  18418. back: {
  18419. height: math.unit(6 + 1 / 12, "feet"),
  18420. weight: math.unit(210, "lb"),
  18421. name: "Back",
  18422. image: {
  18423. source: "./media/characters/leonardo-lycheborne/back.svg",
  18424. extra: 392 / 366,
  18425. bottom: 0.01
  18426. }
  18427. },
  18428. hand: {
  18429. height: math.unit(1.08, "feet"),
  18430. name: "Hand",
  18431. image: {
  18432. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18433. }
  18434. },
  18435. foot: {
  18436. height: math.unit(1.32, "feet"),
  18437. name: "Foot",
  18438. image: {
  18439. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18440. }
  18441. },
  18442. were: {
  18443. height: math.unit(20, "feet"),
  18444. weight: math.unit(7800, "lb"),
  18445. name: "Were",
  18446. image: {
  18447. source: "./media/characters/leonardo-lycheborne/were.svg",
  18448. extra: 308 / 294,
  18449. bottom: 0.048
  18450. }
  18451. },
  18452. feral: {
  18453. height: math.unit(7.5, "feet"),
  18454. weight: math.unit(600, "lb"),
  18455. name: "Feral",
  18456. image: {
  18457. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18458. extra: 210 / 186,
  18459. bottom: 0.108
  18460. }
  18461. },
  18462. taur: {
  18463. height: math.unit(11, "feet"),
  18464. weight: math.unit(3300, "lb"),
  18465. name: "Taur",
  18466. image: {
  18467. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18468. extra: 320 / 303,
  18469. bottom: 0.025
  18470. }
  18471. },
  18472. barghest: {
  18473. height: math.unit(11, "feet"),
  18474. weight: math.unit(1300, "lb"),
  18475. name: "Barghest",
  18476. image: {
  18477. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18478. extra: 323 / 302,
  18479. bottom: 0.027
  18480. }
  18481. },
  18482. dick: {
  18483. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18484. name: "Dick",
  18485. image: {
  18486. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18487. }
  18488. },
  18489. dickWere: {
  18490. height: math.unit((20) / 3.8, "feet"),
  18491. name: "Dick (Were)",
  18492. image: {
  18493. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18494. }
  18495. },
  18496. },
  18497. [
  18498. {
  18499. name: "Normal",
  18500. height: math.unit(6 + 1 / 12, "feet"),
  18501. default: true
  18502. },
  18503. ]
  18504. ))
  18505. characterMakers.push(() => makeCharacter(
  18506. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18507. {
  18508. front: {
  18509. height: math.unit(10, "feet"),
  18510. weight: math.unit(350, "lb"),
  18511. name: "Front",
  18512. image: {
  18513. source: "./media/characters/jet/front.svg",
  18514. extra: 2050 / 1980,
  18515. bottom: 0.013
  18516. }
  18517. },
  18518. back: {
  18519. height: math.unit(10, "feet"),
  18520. weight: math.unit(350, "lb"),
  18521. name: "Back",
  18522. image: {
  18523. source: "./media/characters/jet/back.svg",
  18524. extra: 2050 / 1980,
  18525. bottom: 0.013
  18526. }
  18527. },
  18528. },
  18529. [
  18530. {
  18531. name: "Micro",
  18532. height: math.unit(6, "inches")
  18533. },
  18534. {
  18535. name: "Normal",
  18536. height: math.unit(10, "feet"),
  18537. default: true
  18538. },
  18539. {
  18540. name: "Macro",
  18541. height: math.unit(100, "feet")
  18542. },
  18543. ]
  18544. ))
  18545. characterMakers.push(() => makeCharacter(
  18546. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18547. {
  18548. front: {
  18549. height: math.unit(15, "feet"),
  18550. weight: math.unit(2800, "lb"),
  18551. name: "Front",
  18552. image: {
  18553. source: "./media/characters/tanarath/front.svg",
  18554. extra: 2392 / 2220,
  18555. bottom: 0.03
  18556. }
  18557. },
  18558. back: {
  18559. height: math.unit(15, "feet"),
  18560. weight: math.unit(2800, "lb"),
  18561. name: "Back",
  18562. image: {
  18563. source: "./media/characters/tanarath/back.svg",
  18564. extra: 2392 / 2220,
  18565. bottom: 0.03
  18566. }
  18567. },
  18568. },
  18569. [
  18570. {
  18571. name: "Normal",
  18572. height: math.unit(15, "feet"),
  18573. default: true
  18574. },
  18575. ]
  18576. ))
  18577. characterMakers.push(() => makeCharacter(
  18578. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18579. {
  18580. front: {
  18581. height: math.unit(7 + 1 / 12, "feet"),
  18582. weight: math.unit(175, "lb"),
  18583. name: "Front",
  18584. image: {
  18585. source: "./media/characters/patty-cattybatty/front.svg",
  18586. extra: 908 / 874,
  18587. bottom: 0.025
  18588. }
  18589. },
  18590. },
  18591. [
  18592. {
  18593. name: "Micro",
  18594. height: math.unit(1, "inch")
  18595. },
  18596. {
  18597. name: "Normal",
  18598. height: math.unit(7 + 1 / 12, "feet")
  18599. },
  18600. {
  18601. name: "Mini Macro",
  18602. height: math.unit(155, "feet")
  18603. },
  18604. {
  18605. name: "Macro",
  18606. height: math.unit(1077, "feet")
  18607. },
  18608. {
  18609. name: "Mega Macro",
  18610. height: math.unit(47650, "feet"),
  18611. default: true
  18612. },
  18613. {
  18614. name: "Giga Macro",
  18615. height: math.unit(440, "miles")
  18616. },
  18617. {
  18618. name: "Tera Macro",
  18619. height: math.unit(8700, "miles")
  18620. },
  18621. {
  18622. name: "Planetary Macro",
  18623. height: math.unit(32700, "miles")
  18624. },
  18625. {
  18626. name: "Solar Macro",
  18627. height: math.unit(550000, "miles")
  18628. },
  18629. {
  18630. name: "Celestial Macro",
  18631. height: math.unit(2.5, "AU")
  18632. },
  18633. ]
  18634. ))
  18635. characterMakers.push(() => makeCharacter(
  18636. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18637. {
  18638. front: {
  18639. height: math.unit(4 + 5 / 12, "feet"),
  18640. weight: math.unit(90, "lb"),
  18641. name: "Front",
  18642. image: {
  18643. source: "./media/characters/cappu/front.svg",
  18644. extra: 1247 / 1152,
  18645. bottom: 0.012
  18646. }
  18647. },
  18648. },
  18649. [
  18650. {
  18651. name: "Normal",
  18652. height: math.unit(4 + 5 / 12, "feet"),
  18653. default: true
  18654. },
  18655. ]
  18656. ))
  18657. characterMakers.push(() => makeCharacter(
  18658. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18659. {
  18660. frontDressed: {
  18661. height: math.unit(70, "cm"),
  18662. weight: math.unit(6, "kg"),
  18663. name: "Front (Dressed)",
  18664. image: {
  18665. source: "./media/characters/sebi/front-dressed.svg",
  18666. extra: 713.5 / 686.5,
  18667. bottom: 0.003
  18668. }
  18669. },
  18670. front: {
  18671. height: math.unit(70, "cm"),
  18672. weight: math.unit(5, "kg"),
  18673. name: "Front",
  18674. image: {
  18675. source: "./media/characters/sebi/front.svg",
  18676. extra: 713.5 / 686.5,
  18677. bottom: 0.003
  18678. }
  18679. }
  18680. },
  18681. [
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(70, "cm"),
  18685. default: true
  18686. },
  18687. {
  18688. name: "Macro",
  18689. height: math.unit(8, "meters")
  18690. },
  18691. ]
  18692. ))
  18693. characterMakers.push(() => makeCharacter(
  18694. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18695. {
  18696. front: {
  18697. height: math.unit(6, "feet"),
  18698. weight: math.unit(150, "lb"),
  18699. name: "Front",
  18700. image: {
  18701. source: "./media/characters/typhek/front.svg",
  18702. extra: 1948 / 1929,
  18703. bottom: 0.025
  18704. }
  18705. },
  18706. side: {
  18707. height: math.unit(6, "feet"),
  18708. weight: math.unit(150, "lb"),
  18709. name: "Side",
  18710. image: {
  18711. source: "./media/characters/typhek/side.svg",
  18712. extra: 2034 / 2010,
  18713. bottom: 0.003
  18714. }
  18715. },
  18716. back: {
  18717. height: math.unit(6, "feet"),
  18718. weight: math.unit(150, "lb"),
  18719. name: "Back",
  18720. image: {
  18721. source: "./media/characters/typhek/back.svg",
  18722. extra: 2005 / 1978,
  18723. bottom: 0.004
  18724. }
  18725. },
  18726. palm: {
  18727. height: math.unit(1.2, "feet"),
  18728. name: "Palm",
  18729. image: {
  18730. source: "./media/characters/typhek/palm.svg"
  18731. }
  18732. },
  18733. fist: {
  18734. height: math.unit(1.1, "feet"),
  18735. name: "Fist",
  18736. image: {
  18737. source: "./media/characters/typhek/fist.svg"
  18738. }
  18739. },
  18740. foot: {
  18741. height: math.unit(1.57, "feet"),
  18742. name: "Foot",
  18743. image: {
  18744. source: "./media/characters/typhek/foot.svg"
  18745. }
  18746. },
  18747. sole: {
  18748. height: math.unit(2.05, "feet"),
  18749. name: "Sole",
  18750. image: {
  18751. source: "./media/characters/typhek/sole.svg"
  18752. }
  18753. },
  18754. },
  18755. [
  18756. {
  18757. name: "Macro",
  18758. height: math.unit(40, "stories"),
  18759. default: true
  18760. },
  18761. {
  18762. name: "Megamacro",
  18763. height: math.unit(1, "mile")
  18764. },
  18765. {
  18766. name: "Gigamacro",
  18767. height: math.unit(4000, "solarradii")
  18768. },
  18769. {
  18770. name: "Universal",
  18771. height: math.unit(1.1, "universes")
  18772. }
  18773. ]
  18774. ))
  18775. characterMakers.push(() => makeCharacter(
  18776. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18777. {
  18778. side: {
  18779. height: math.unit(5 + 7 / 12, "feet"),
  18780. weight: math.unit(150, "lb"),
  18781. name: "Side",
  18782. image: {
  18783. source: "./media/characters/kassy/side.svg",
  18784. extra: 1280 / 1225,
  18785. bottom: 0.002
  18786. }
  18787. },
  18788. front: {
  18789. height: math.unit(5 + 7 / 12, "feet"),
  18790. weight: math.unit(150, "lb"),
  18791. name: "Front",
  18792. image: {
  18793. source: "./media/characters/kassy/front.svg",
  18794. extra: 1280 / 1225,
  18795. bottom: 0.025
  18796. }
  18797. },
  18798. back: {
  18799. height: math.unit(5 + 7 / 12, "feet"),
  18800. weight: math.unit(150, "lb"),
  18801. name: "Back",
  18802. image: {
  18803. source: "./media/characters/kassy/back.svg",
  18804. extra: 1280 / 1225,
  18805. bottom: 0.002
  18806. }
  18807. },
  18808. foot: {
  18809. height: math.unit(1.266, "feet"),
  18810. name: "Foot",
  18811. image: {
  18812. source: "./media/characters/kassy/foot.svg"
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(5 + 7 / 12, "feet")
  18820. },
  18821. {
  18822. name: "Macro",
  18823. height: math.unit(137, "feet"),
  18824. default: true
  18825. },
  18826. {
  18827. name: "Megamacro",
  18828. height: math.unit(1, "mile")
  18829. },
  18830. ]
  18831. ))
  18832. characterMakers.push(() => makeCharacter(
  18833. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18834. {
  18835. front: {
  18836. height: math.unit(6 + 1 / 12, "feet"),
  18837. weight: math.unit(200, "lb"),
  18838. name: "Front",
  18839. image: {
  18840. source: "./media/characters/neil/front.svg",
  18841. extra: 1326 / 1250,
  18842. bottom: 0.023
  18843. }
  18844. },
  18845. },
  18846. [
  18847. {
  18848. name: "Normal",
  18849. height: math.unit(6 + 1 / 12, "feet"),
  18850. default: true
  18851. },
  18852. {
  18853. name: "Macro",
  18854. height: math.unit(200, "feet")
  18855. },
  18856. ]
  18857. ))
  18858. characterMakers.push(() => makeCharacter(
  18859. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18860. {
  18861. front: {
  18862. height: math.unit(5 + 9 / 12, "feet"),
  18863. weight: math.unit(190, "lb"),
  18864. name: "Front",
  18865. image: {
  18866. source: "./media/characters/atticus/front.svg",
  18867. extra: 2934 / 2785,
  18868. bottom: 0.025
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Normal",
  18875. height: math.unit(5 + 9 / 12, "feet"),
  18876. default: true
  18877. },
  18878. {
  18879. name: "Macro",
  18880. height: math.unit(180, "feet")
  18881. },
  18882. ]
  18883. ))
  18884. characterMakers.push(() => makeCharacter(
  18885. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18886. {
  18887. side: {
  18888. height: math.unit(9, "feet"),
  18889. weight: math.unit(650, "lb"),
  18890. name: "Side",
  18891. image: {
  18892. source: "./media/characters/milo/side.svg",
  18893. extra: 2644 / 2310,
  18894. bottom: 0.032
  18895. }
  18896. },
  18897. },
  18898. [
  18899. {
  18900. name: "Normal",
  18901. height: math.unit(9, "feet"),
  18902. default: true
  18903. },
  18904. {
  18905. name: "Macro",
  18906. height: math.unit(300, "feet")
  18907. },
  18908. ]
  18909. ))
  18910. characterMakers.push(() => makeCharacter(
  18911. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18912. {
  18913. side: {
  18914. height: math.unit(8, "meters"),
  18915. weight: math.unit(90000, "kg"),
  18916. name: "Side",
  18917. image: {
  18918. source: "./media/characters/ijzer/side.svg",
  18919. extra: 2756 / 1600,
  18920. bottom: 0.01
  18921. }
  18922. },
  18923. },
  18924. [
  18925. {
  18926. name: "Small",
  18927. height: math.unit(3, "meters")
  18928. },
  18929. {
  18930. name: "Normal",
  18931. height: math.unit(8, "meters"),
  18932. default: true
  18933. },
  18934. {
  18935. name: "Normal+",
  18936. height: math.unit(10, "meters")
  18937. },
  18938. {
  18939. name: "Bigger",
  18940. height: math.unit(24, "meters")
  18941. },
  18942. {
  18943. name: "Huge",
  18944. height: math.unit(80, "meters")
  18945. },
  18946. ]
  18947. ))
  18948. characterMakers.push(() => makeCharacter(
  18949. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18950. {
  18951. front: {
  18952. height: math.unit(6 + 2 / 12, "feet"),
  18953. weight: math.unit(153, "lb"),
  18954. name: "Front",
  18955. image: {
  18956. source: "./media/characters/luca-cervicum/front.svg",
  18957. extra: 370 / 327,
  18958. bottom: 0.015
  18959. }
  18960. },
  18961. back: {
  18962. height: math.unit(6 + 2 / 12, "feet"),
  18963. weight: math.unit(153, "lb"),
  18964. name: "Back",
  18965. image: {
  18966. source: "./media/characters/luca-cervicum/back.svg",
  18967. extra: 367 / 333,
  18968. bottom: 0.005
  18969. }
  18970. },
  18971. frontGear: {
  18972. height: math.unit(6 + 2 / 12, "feet"),
  18973. weight: math.unit(173, "lb"),
  18974. name: "Front (Gear)",
  18975. image: {
  18976. source: "./media/characters/luca-cervicum/front-gear.svg",
  18977. extra: 377 / 333,
  18978. bottom: 0.006
  18979. }
  18980. },
  18981. },
  18982. [
  18983. {
  18984. name: "Normal",
  18985. height: math.unit(6 + 2 / 12, "feet"),
  18986. default: true
  18987. },
  18988. ]
  18989. ))
  18990. characterMakers.push(() => makeCharacter(
  18991. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18992. {
  18993. front: {
  18994. height: math.unit(6 + 1 / 12, "feet"),
  18995. weight: math.unit(304, "lb"),
  18996. name: "Front",
  18997. image: {
  18998. source: "./media/characters/oliver/front.svg",
  18999. extra: 157 / 143,
  19000. bottom: 0.08
  19001. }
  19002. },
  19003. },
  19004. [
  19005. {
  19006. name: "Normal",
  19007. height: math.unit(6 + 1 / 12, "feet"),
  19008. default: true
  19009. },
  19010. ]
  19011. ))
  19012. characterMakers.push(() => makeCharacter(
  19013. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19014. {
  19015. front: {
  19016. height: math.unit(5 + 7 / 12, "feet"),
  19017. weight: math.unit(140, "lb"),
  19018. name: "Front",
  19019. image: {
  19020. source: "./media/characters/shane/front.svg",
  19021. extra: 304 / 289,
  19022. bottom: 0.005
  19023. }
  19024. },
  19025. },
  19026. [
  19027. {
  19028. name: "Normal",
  19029. height: math.unit(5 + 7 / 12, "feet"),
  19030. default: true
  19031. },
  19032. ]
  19033. ))
  19034. characterMakers.push(() => makeCharacter(
  19035. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19036. {
  19037. front: {
  19038. height: math.unit(5 + 9 / 12, "feet"),
  19039. weight: math.unit(178, "lb"),
  19040. name: "Front",
  19041. image: {
  19042. source: "./media/characters/shin/front.svg",
  19043. extra: 159 / 151,
  19044. bottom: 0.015
  19045. }
  19046. },
  19047. },
  19048. [
  19049. {
  19050. name: "Normal",
  19051. height: math.unit(5 + 9 / 12, "feet"),
  19052. default: true
  19053. },
  19054. ]
  19055. ))
  19056. characterMakers.push(() => makeCharacter(
  19057. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19058. {
  19059. front: {
  19060. height: math.unit(5 + 10 / 12, "feet"),
  19061. weight: math.unit(168, "lb"),
  19062. name: "Front",
  19063. image: {
  19064. source: "./media/characters/xerxes/front.svg",
  19065. extra: 282 / 260,
  19066. bottom: 0.045
  19067. }
  19068. },
  19069. },
  19070. [
  19071. {
  19072. name: "Normal",
  19073. height: math.unit(5 + 10 / 12, "feet"),
  19074. default: true
  19075. },
  19076. ]
  19077. ))
  19078. characterMakers.push(() => makeCharacter(
  19079. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19080. {
  19081. front: {
  19082. height: math.unit(6 + 7 / 12, "feet"),
  19083. weight: math.unit(208, "lb"),
  19084. name: "Front",
  19085. image: {
  19086. source: "./media/characters/chaska/front.svg",
  19087. extra: 332 / 319,
  19088. bottom: 0.015
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(6 + 7 / 12, "feet"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19102. {
  19103. front: {
  19104. height: math.unit(5 + 8 / 12, "feet"),
  19105. weight: math.unit(208, "lb"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/enuk/front.svg",
  19109. extra: 437 / 406,
  19110. bottom: 0.02
  19111. }
  19112. },
  19113. },
  19114. [
  19115. {
  19116. name: "Normal",
  19117. height: math.unit(5 + 8 / 12, "feet"),
  19118. default: true
  19119. },
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19124. {
  19125. front: {
  19126. height: math.unit(5 + 10 / 12, "feet"),
  19127. weight: math.unit(252, "lb"),
  19128. name: "Front",
  19129. image: {
  19130. source: "./media/characters/bruun/front.svg",
  19131. extra: 197 / 187,
  19132. bottom: 0.012
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(5 + 10 / 12, "feet"),
  19140. default: true
  19141. },
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19146. {
  19147. front: {
  19148. height: math.unit(6 + 10 / 12, "feet"),
  19149. weight: math.unit(255, "lb"),
  19150. name: "Front",
  19151. image: {
  19152. source: "./media/characters/alexeev/front.svg",
  19153. extra: 213 / 200,
  19154. bottom: 0.05
  19155. }
  19156. },
  19157. },
  19158. [
  19159. {
  19160. name: "Normal",
  19161. height: math.unit(6 + 10 / 12, "feet"),
  19162. default: true
  19163. },
  19164. ]
  19165. ))
  19166. characterMakers.push(() => makeCharacter(
  19167. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19168. {
  19169. front: {
  19170. height: math.unit(2 + 8 / 12, "feet"),
  19171. weight: math.unit(22, "lb"),
  19172. name: "Front",
  19173. image: {
  19174. source: "./media/characters/evelyn/front.svg",
  19175. extra: 208 / 180
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Normal",
  19182. height: math.unit(2 + 8 / 12, "feet"),
  19183. default: true
  19184. },
  19185. ]
  19186. ))
  19187. characterMakers.push(() => makeCharacter(
  19188. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19189. {
  19190. front: {
  19191. height: math.unit(5 + 9 / 12, "feet"),
  19192. weight: math.unit(139, "lb"),
  19193. name: "Front",
  19194. image: {
  19195. source: "./media/characters/inca/front.svg",
  19196. extra: 294 / 291,
  19197. bottom: 0.03
  19198. }
  19199. },
  19200. },
  19201. [
  19202. {
  19203. name: "Normal",
  19204. height: math.unit(5 + 9 / 12, "feet"),
  19205. default: true
  19206. },
  19207. ]
  19208. ))
  19209. characterMakers.push(() => makeCharacter(
  19210. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19211. {
  19212. front: {
  19213. height: math.unit(5 + 1 / 12, "feet"),
  19214. weight: math.unit(84, "lb"),
  19215. name: "Front",
  19216. image: {
  19217. source: "./media/characters/magdalene/front.svg",
  19218. extra: 293 / 273
  19219. }
  19220. },
  19221. },
  19222. [
  19223. {
  19224. name: "Normal",
  19225. height: math.unit(5 + 1 / 12, "feet"),
  19226. default: true
  19227. },
  19228. ]
  19229. ))
  19230. characterMakers.push(() => makeCharacter(
  19231. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19232. {
  19233. front: {
  19234. height: math.unit(6 + 3 / 12, "feet"),
  19235. weight: math.unit(185, "lb"),
  19236. name: "Front",
  19237. image: {
  19238. source: "./media/characters/mera/front.svg",
  19239. extra: 291 / 277,
  19240. bottom: 0.03
  19241. }
  19242. },
  19243. },
  19244. [
  19245. {
  19246. name: "Normal",
  19247. height: math.unit(6 + 3 / 12, "feet"),
  19248. default: true
  19249. },
  19250. ]
  19251. ))
  19252. characterMakers.push(() => makeCharacter(
  19253. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19254. {
  19255. front: {
  19256. height: math.unit(6 + 7 / 12, "feet"),
  19257. weight: math.unit(160, "lb"),
  19258. name: "Front",
  19259. image: {
  19260. source: "./media/characters/ceres/front.svg",
  19261. extra: 1023 / 950,
  19262. bottom: 0.027
  19263. }
  19264. },
  19265. back: {
  19266. height: math.unit(6 + 7 / 12, "feet"),
  19267. weight: math.unit(160, "lb"),
  19268. name: "Back",
  19269. image: {
  19270. source: "./media/characters/ceres/back.svg",
  19271. extra: 1023 / 950
  19272. }
  19273. },
  19274. },
  19275. [
  19276. {
  19277. name: "Normal",
  19278. height: math.unit(6 + 7 / 12, "feet"),
  19279. default: true
  19280. },
  19281. ]
  19282. ))
  19283. characterMakers.push(() => makeCharacter(
  19284. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19285. {
  19286. front: {
  19287. height: math.unit(5 + 10 / 12, "feet"),
  19288. weight: math.unit(150, "lb"),
  19289. name: "Front",
  19290. image: {
  19291. source: "./media/characters/kris/front.svg",
  19292. extra: 885 / 803,
  19293. bottom: 0.03
  19294. }
  19295. },
  19296. },
  19297. [
  19298. {
  19299. name: "Normal",
  19300. height: math.unit(5 + 10 / 12, "feet"),
  19301. default: true
  19302. },
  19303. ]
  19304. ))
  19305. characterMakers.push(() => makeCharacter(
  19306. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19307. {
  19308. front: {
  19309. height: math.unit(7, "feet"),
  19310. weight: math.unit(120, "kg"),
  19311. name: "Front",
  19312. image: {
  19313. source: "./media/characters/taluthus/front.svg",
  19314. extra: 903 / 833,
  19315. bottom: 0.015
  19316. }
  19317. },
  19318. },
  19319. [
  19320. {
  19321. name: "Normal",
  19322. height: math.unit(7, "feet"),
  19323. default: true
  19324. },
  19325. {
  19326. name: "Macro",
  19327. height: math.unit(300, "feet")
  19328. },
  19329. ]
  19330. ))
  19331. characterMakers.push(() => makeCharacter(
  19332. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19333. {
  19334. front: {
  19335. height: math.unit(5 + 9 / 12, "feet"),
  19336. weight: math.unit(145, "lb"),
  19337. name: "Front",
  19338. image: {
  19339. source: "./media/characters/dawn/front.svg",
  19340. extra: 2094 / 2016,
  19341. bottom: 0.025
  19342. }
  19343. },
  19344. back: {
  19345. height: math.unit(5 + 9 / 12, "feet"),
  19346. weight: math.unit(160, "lb"),
  19347. name: "Back",
  19348. image: {
  19349. source: "./media/characters/dawn/back.svg",
  19350. extra: 2112 / 2080,
  19351. bottom: 0.005
  19352. }
  19353. },
  19354. },
  19355. [
  19356. {
  19357. name: "Normal",
  19358. height: math.unit(6 + 7 / 12, "feet"),
  19359. default: true
  19360. },
  19361. ]
  19362. ))
  19363. characterMakers.push(() => makeCharacter(
  19364. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19365. {
  19366. anthro: {
  19367. height: math.unit(8 + 3 / 12, "feet"),
  19368. weight: math.unit(450, "lb"),
  19369. name: "Anthro",
  19370. image: {
  19371. source: "./media/characters/arador/anthro.svg",
  19372. extra: 1835 / 1718,
  19373. bottom: 0.025
  19374. }
  19375. },
  19376. feral: {
  19377. height: math.unit(4, "feet"),
  19378. weight: math.unit(200, "lb"),
  19379. name: "Feral",
  19380. image: {
  19381. source: "./media/characters/arador/feral.svg",
  19382. extra: 1683 / 1514,
  19383. bottom: 0.07
  19384. }
  19385. },
  19386. },
  19387. [
  19388. {
  19389. name: "Normal",
  19390. height: math.unit(8 + 3 / 12, "feet")
  19391. },
  19392. {
  19393. name: "Macro",
  19394. height: math.unit(82.5, "feet"),
  19395. default: true
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19401. {
  19402. front: {
  19403. height: math.unit(5 + 10 / 12, "feet"),
  19404. weight: math.unit(125, "lb"),
  19405. name: "Front",
  19406. image: {
  19407. source: "./media/characters/dharsi/front.svg",
  19408. extra: 716 / 630,
  19409. bottom: 0.035
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Nano",
  19416. height: math.unit(100, "nm")
  19417. },
  19418. {
  19419. name: "Micro",
  19420. height: math.unit(2, "inches")
  19421. },
  19422. {
  19423. name: "Normal",
  19424. height: math.unit(5 + 10 / 12, "feet"),
  19425. default: true
  19426. },
  19427. {
  19428. name: "Macro",
  19429. height: math.unit(1000, "feet")
  19430. },
  19431. {
  19432. name: "Megamacro",
  19433. height: math.unit(10, "miles")
  19434. },
  19435. {
  19436. name: "Gigamacro",
  19437. height: math.unit(3000, "miles")
  19438. },
  19439. {
  19440. name: "Teramacro",
  19441. height: math.unit(500000, "miles")
  19442. },
  19443. {
  19444. name: "Teramacro+",
  19445. height: math.unit(30, "galaxies")
  19446. },
  19447. ]
  19448. ))
  19449. characterMakers.push(() => makeCharacter(
  19450. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19451. {
  19452. front: {
  19453. height: math.unit(6, "feet"),
  19454. weight: math.unit(150, "lb"),
  19455. name: "Front",
  19456. image: {
  19457. source: "./media/characters/deathy/front.svg",
  19458. extra: 1552 / 1463,
  19459. bottom: 0.025
  19460. }
  19461. },
  19462. side: {
  19463. height: math.unit(6, "feet"),
  19464. weight: math.unit(150, "lb"),
  19465. name: "Side",
  19466. image: {
  19467. source: "./media/characters/deathy/side.svg",
  19468. extra: 1604 / 1455,
  19469. bottom: 0.025
  19470. }
  19471. },
  19472. back: {
  19473. height: math.unit(6, "feet"),
  19474. weight: math.unit(150, "lb"),
  19475. name: "Back",
  19476. image: {
  19477. source: "./media/characters/deathy/back.svg",
  19478. extra: 1580 / 1463,
  19479. bottom: 0.005
  19480. }
  19481. },
  19482. },
  19483. [
  19484. {
  19485. name: "Micro",
  19486. height: math.unit(5, "millimeters")
  19487. },
  19488. {
  19489. name: "Normal",
  19490. height: math.unit(6 + 5 / 12, "feet"),
  19491. default: true
  19492. },
  19493. ]
  19494. ))
  19495. characterMakers.push(() => makeCharacter(
  19496. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19497. {
  19498. front: {
  19499. height: math.unit(16, "feet"),
  19500. weight: math.unit(4000, "lb"),
  19501. name: "Front",
  19502. image: {
  19503. source: "./media/characters/juniper/front.svg",
  19504. bottom: 0.04
  19505. }
  19506. },
  19507. },
  19508. [
  19509. {
  19510. name: "Normal",
  19511. height: math.unit(16, "feet"),
  19512. default: true
  19513. },
  19514. ]
  19515. ))
  19516. characterMakers.push(() => makeCharacter(
  19517. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19518. {
  19519. front: {
  19520. height: math.unit(6, "feet"),
  19521. weight: math.unit(150, "lb"),
  19522. name: "Front",
  19523. image: {
  19524. source: "./media/characters/hipster/front.svg",
  19525. extra: 1312 / 1209,
  19526. bottom: 0.025
  19527. }
  19528. },
  19529. back: {
  19530. height: math.unit(6, "feet"),
  19531. weight: math.unit(150, "lb"),
  19532. name: "Back",
  19533. image: {
  19534. source: "./media/characters/hipster/back.svg",
  19535. extra: 1281 / 1196,
  19536. bottom: 0.01
  19537. }
  19538. },
  19539. },
  19540. [
  19541. {
  19542. name: "Micro",
  19543. height: math.unit(1, "mm")
  19544. },
  19545. {
  19546. name: "Normal",
  19547. height: math.unit(4, "inches"),
  19548. default: true
  19549. },
  19550. {
  19551. name: "Macro",
  19552. height: math.unit(500, "feet")
  19553. },
  19554. {
  19555. name: "Megamacro",
  19556. height: math.unit(1000, "miles")
  19557. },
  19558. ]
  19559. ))
  19560. characterMakers.push(() => makeCharacter(
  19561. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19562. {
  19563. front: {
  19564. height: math.unit(6, "feet"),
  19565. weight: math.unit(150, "lb"),
  19566. name: "Front",
  19567. image: {
  19568. source: "./media/characters/tendirmuldr/front.svg",
  19569. extra: 1878 / 1772,
  19570. bottom: 0.015
  19571. }
  19572. },
  19573. },
  19574. [
  19575. {
  19576. name: "Megamacro",
  19577. height: math.unit(1500, "miles"),
  19578. default: true
  19579. },
  19580. ]
  19581. ))
  19582. characterMakers.push(() => makeCharacter(
  19583. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19584. {
  19585. front: {
  19586. height: math.unit(14, "feet"),
  19587. weight: math.unit(12000, "lb"),
  19588. name: "Front",
  19589. image: {
  19590. source: "./media/characters/mort/front.svg",
  19591. extra: 365 / 318,
  19592. bottom: 0.01
  19593. }
  19594. },
  19595. side: {
  19596. height: math.unit(14, "feet"),
  19597. weight: math.unit(12000, "lb"),
  19598. name: "Side",
  19599. image: {
  19600. source: "./media/characters/mort/side.svg",
  19601. extra: 365 / 318,
  19602. bottom: 0.052
  19603. },
  19604. default: true
  19605. },
  19606. back: {
  19607. height: math.unit(14, "feet"),
  19608. weight: math.unit(12000, "lb"),
  19609. name: "Back",
  19610. image: {
  19611. source: "./media/characters/mort/back.svg",
  19612. extra: 371 / 332,
  19613. bottom: 0.18
  19614. }
  19615. },
  19616. },
  19617. [
  19618. {
  19619. name: "Normal",
  19620. height: math.unit(14, "feet"),
  19621. default: true
  19622. },
  19623. ]
  19624. ))
  19625. characterMakers.push(() => makeCharacter(
  19626. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19627. {
  19628. front: {
  19629. height: math.unit(8, "feet"),
  19630. weight: math.unit(1, "ton"),
  19631. name: "Front",
  19632. image: {
  19633. source: "./media/characters/lycoa/front.svg",
  19634. extra: 1875 / 1789,
  19635. bottom: 0.022
  19636. }
  19637. },
  19638. back: {
  19639. height: math.unit(8, "feet"),
  19640. weight: math.unit(1, "ton"),
  19641. name: "Back",
  19642. image: {
  19643. source: "./media/characters/lycoa/back.svg",
  19644. extra: 1835 / 1781,
  19645. bottom: 0.03
  19646. }
  19647. },
  19648. head: {
  19649. height: math.unit(2.1, "feet"),
  19650. name: "Head",
  19651. image: {
  19652. source: "./media/characters/lycoa/head.svg"
  19653. }
  19654. },
  19655. tailmaw: {
  19656. height: math.unit(1.9, "feet"),
  19657. name: "Tailmaw",
  19658. image: {
  19659. source: "./media/characters/lycoa/tailmaw.svg"
  19660. }
  19661. },
  19662. tentacles: {
  19663. height: math.unit(2.1, "feet"),
  19664. name: "Tentacles",
  19665. image: {
  19666. source: "./media/characters/lycoa/tentacles.svg"
  19667. }
  19668. },
  19669. dick: {
  19670. height: math.unit(1.73, "feet"),
  19671. name: "Dick",
  19672. image: {
  19673. source: "./media/characters/lycoa/dick.svg"
  19674. }
  19675. },
  19676. },
  19677. [
  19678. {
  19679. name: "Normal",
  19680. height: math.unit(8, "feet"),
  19681. default: true
  19682. },
  19683. {
  19684. name: "Macro",
  19685. height: math.unit(30, "feet")
  19686. },
  19687. ]
  19688. ))
  19689. characterMakers.push(() => makeCharacter(
  19690. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19691. {
  19692. front: {
  19693. height: math.unit(4 + 2 / 12, "feet"),
  19694. weight: math.unit(70, "lb"),
  19695. name: "Front",
  19696. image: {
  19697. source: "./media/characters/naldara/front.svg",
  19698. extra: 841 / 720,
  19699. bottom: 0.04
  19700. }
  19701. },
  19702. naga: {
  19703. height: math.unit(23, "feet"),
  19704. weight: math.unit(15000, "kg"),
  19705. name: "Naga",
  19706. image: {
  19707. source: "./media/characters/naldara/naga.svg",
  19708. extra: 3290 / 2959,
  19709. bottom: 124 / 3432
  19710. }
  19711. },
  19712. },
  19713. [
  19714. {
  19715. name: "Normal",
  19716. height: math.unit(4 + 2 / 12, "feet"),
  19717. default: true
  19718. },
  19719. ]
  19720. ))
  19721. characterMakers.push(() => makeCharacter(
  19722. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19723. {
  19724. front: {
  19725. height: math.unit(13 + 7 / 12, "feet"),
  19726. weight: math.unit(1500, "lb"),
  19727. name: "Front",
  19728. image: {
  19729. source: "./media/characters/briar/front.svg",
  19730. extra: 626 / 596,
  19731. bottom: 0.08
  19732. }
  19733. },
  19734. },
  19735. [
  19736. {
  19737. name: "Normal",
  19738. height: math.unit(13 + 7 / 12, "feet"),
  19739. default: true
  19740. },
  19741. ]
  19742. ))
  19743. characterMakers.push(() => makeCharacter(
  19744. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19745. {
  19746. side: {
  19747. height: math.unit(10, "feet"),
  19748. weight: math.unit(500, "lb"),
  19749. name: "Side",
  19750. image: {
  19751. source: "./media/characters/vanguard/side.svg",
  19752. extra: 502 / 425,
  19753. bottom: 0.087
  19754. }
  19755. },
  19756. },
  19757. [
  19758. {
  19759. name: "Normal",
  19760. height: math.unit(10, "feet"),
  19761. default: true
  19762. },
  19763. ]
  19764. ))
  19765. characterMakers.push(() => makeCharacter(
  19766. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19767. {
  19768. front: {
  19769. height: math.unit(7.5, "feet"),
  19770. weight: math.unit(2, "lb"),
  19771. name: "Front",
  19772. image: {
  19773. source: "./media/characters/artemis/front.svg",
  19774. extra: 1192 / 1075,
  19775. bottom: 0.07
  19776. }
  19777. },
  19778. frontNsfw: {
  19779. height: math.unit(7.5, "feet"),
  19780. weight: math.unit(2, "lb"),
  19781. name: "Front (NSFW)",
  19782. image: {
  19783. source: "./media/characters/artemis/front-nsfw.svg",
  19784. extra: 1192 / 1075,
  19785. bottom: 0.07
  19786. }
  19787. },
  19788. frontNsfwer: {
  19789. height: math.unit(7.5, "feet"),
  19790. weight: math.unit(2, "lb"),
  19791. name: "Front (NSFW-er)",
  19792. image: {
  19793. source: "./media/characters/artemis/front-nsfwer.svg",
  19794. extra: 1192 / 1075,
  19795. bottom: 0.07
  19796. }
  19797. },
  19798. side: {
  19799. height: math.unit(7.5, "feet"),
  19800. weight: math.unit(2, "lb"),
  19801. name: "Side",
  19802. image: {
  19803. source: "./media/characters/artemis/side.svg",
  19804. extra: 1192 / 1075,
  19805. bottom: 0.07
  19806. }
  19807. },
  19808. sideNsfw: {
  19809. height: math.unit(7.5, "feet"),
  19810. weight: math.unit(2, "lb"),
  19811. name: "Side (NSFW)",
  19812. image: {
  19813. source: "./media/characters/artemis/side-nsfw.svg",
  19814. extra: 1192 / 1075,
  19815. bottom: 0.07
  19816. }
  19817. },
  19818. sideNsfwer: {
  19819. height: math.unit(7.5, "feet"),
  19820. weight: math.unit(2, "lb"),
  19821. name: "Side (NSFW-er)",
  19822. image: {
  19823. source: "./media/characters/artemis/side-nsfwer.svg",
  19824. extra: 1192 / 1075,
  19825. bottom: 0.07
  19826. }
  19827. },
  19828. maw: {
  19829. height: math.unit(1.1, "feet"),
  19830. name: "Maw",
  19831. image: {
  19832. source: "./media/characters/artemis/maw.svg"
  19833. }
  19834. },
  19835. stomach: {
  19836. height: math.unit(0.95, "feet"),
  19837. name: "Stomach",
  19838. image: {
  19839. source: "./media/characters/artemis/stomach.svg"
  19840. }
  19841. },
  19842. dickCanine: {
  19843. height: math.unit(1, "feet"),
  19844. name: "Dick (Canine)",
  19845. image: {
  19846. source: "./media/characters/artemis/dick-canine.svg"
  19847. }
  19848. },
  19849. dickEquine: {
  19850. height: math.unit(0.85, "feet"),
  19851. name: "Dick (Equine)",
  19852. image: {
  19853. source: "./media/characters/artemis/dick-equine.svg"
  19854. }
  19855. },
  19856. dickExotic: {
  19857. height: math.unit(0.85, "feet"),
  19858. name: "Dick (Exotic)",
  19859. image: {
  19860. source: "./media/characters/artemis/dick-exotic.svg"
  19861. }
  19862. },
  19863. },
  19864. [
  19865. {
  19866. name: "Normal",
  19867. height: math.unit(7.5, "feet"),
  19868. default: true
  19869. },
  19870. {
  19871. name: "Enlarged",
  19872. height: math.unit(12, "feet")
  19873. },
  19874. ]
  19875. ))
  19876. characterMakers.push(() => makeCharacter(
  19877. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19878. {
  19879. front: {
  19880. height: math.unit(5 + 3 / 12, "feet"),
  19881. weight: math.unit(160, "lb"),
  19882. name: "Front",
  19883. image: {
  19884. source: "./media/characters/kira/front.svg",
  19885. extra: 906 / 786,
  19886. bottom: 0.01
  19887. }
  19888. },
  19889. back: {
  19890. height: math.unit(5 + 3 / 12, "feet"),
  19891. weight: math.unit(160, "lb"),
  19892. name: "Back",
  19893. image: {
  19894. source: "./media/characters/kira/back.svg",
  19895. extra: 882 / 757,
  19896. bottom: 0.005
  19897. }
  19898. },
  19899. frontDressed: {
  19900. height: math.unit(5 + 3 / 12, "feet"),
  19901. weight: math.unit(160, "lb"),
  19902. name: "Front (Dressed)",
  19903. image: {
  19904. source: "./media/characters/kira/front-dressed.svg",
  19905. extra: 906 / 786,
  19906. bottom: 0.01
  19907. }
  19908. },
  19909. beans: {
  19910. height: math.unit(0.92, "feet"),
  19911. name: "Beans",
  19912. image: {
  19913. source: "./media/characters/kira/beans.svg"
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(5 + 3 / 12, "feet"),
  19921. default: true
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19927. {
  19928. front: {
  19929. height: math.unit(5 + 4 / 12, "feet"),
  19930. weight: math.unit(145, "lb"),
  19931. name: "Front",
  19932. image: {
  19933. source: "./media/characters/scramble/front.svg",
  19934. extra: 763 / 727,
  19935. bottom: 0.05
  19936. }
  19937. },
  19938. back: {
  19939. height: math.unit(5 + 4 / 12, "feet"),
  19940. weight: math.unit(145, "lb"),
  19941. name: "Back",
  19942. image: {
  19943. source: "./media/characters/scramble/back.svg",
  19944. extra: 826 / 737,
  19945. bottom: 0.002
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(5 + 4 / 12, "feet"),
  19953. default: true
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19959. {
  19960. side: {
  19961. height: math.unit(6 + 2 / 12, "feet"),
  19962. weight: math.unit(190, "lb"),
  19963. name: "Side",
  19964. image: {
  19965. source: "./media/characters/biscuit/side.svg",
  19966. extra: 858 / 791,
  19967. bottom: 0.044
  19968. }
  19969. },
  19970. },
  19971. [
  19972. {
  19973. name: "Normal",
  19974. height: math.unit(6 + 2 / 12, "feet"),
  19975. default: true
  19976. },
  19977. ]
  19978. ))
  19979. characterMakers.push(() => makeCharacter(
  19980. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19981. {
  19982. front: {
  19983. height: math.unit(5 + 2 / 12, "feet"),
  19984. weight: math.unit(120, "lb"),
  19985. name: "Front",
  19986. image: {
  19987. source: "./media/characters/poffin/front.svg",
  19988. extra: 786 / 680,
  19989. bottom: 0.005
  19990. }
  19991. },
  19992. },
  19993. [
  19994. {
  19995. name: "Normal",
  19996. height: math.unit(5 + 2 / 12, "feet"),
  19997. default: true
  19998. },
  19999. ]
  20000. ))
  20001. characterMakers.push(() => makeCharacter(
  20002. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20003. {
  20004. front: {
  20005. height: math.unit(6 + 3 / 12, "feet"),
  20006. weight: math.unit(519, "lb"),
  20007. name: "Front",
  20008. image: {
  20009. source: "./media/characters/dhari/front.svg",
  20010. extra: 1048 / 946,
  20011. bottom: 0.015
  20012. }
  20013. },
  20014. back: {
  20015. height: math.unit(6 + 3 / 12, "feet"),
  20016. weight: math.unit(519, "lb"),
  20017. name: "Back",
  20018. image: {
  20019. source: "./media/characters/dhari/back.svg",
  20020. extra: 1048 / 931,
  20021. bottom: 0.005
  20022. }
  20023. },
  20024. frontDressed: {
  20025. height: math.unit(6 + 3 / 12, "feet"),
  20026. weight: math.unit(519, "lb"),
  20027. name: "Front (Dressed)",
  20028. image: {
  20029. source: "./media/characters/dhari/front-dressed.svg",
  20030. extra: 1713 / 1546,
  20031. bottom: 0.02
  20032. }
  20033. },
  20034. backDressed: {
  20035. height: math.unit(6 + 3 / 12, "feet"),
  20036. weight: math.unit(519, "lb"),
  20037. name: "Back (Dressed)",
  20038. image: {
  20039. source: "./media/characters/dhari/back-dressed.svg",
  20040. extra: 1699 / 1537,
  20041. bottom: 0.01
  20042. }
  20043. },
  20044. maw: {
  20045. height: math.unit(0.95, "feet"),
  20046. name: "Maw",
  20047. image: {
  20048. source: "./media/characters/dhari/maw.svg"
  20049. }
  20050. },
  20051. wereFront: {
  20052. height: math.unit(12 + 8 / 12, "feet"),
  20053. weight: math.unit(4000, "lb"),
  20054. name: "Front (Were)",
  20055. image: {
  20056. source: "./media/characters/dhari/were-front.svg",
  20057. extra: 1065 / 969,
  20058. bottom: 0.015
  20059. }
  20060. },
  20061. wereBack: {
  20062. height: math.unit(12 + 8 / 12, "feet"),
  20063. weight: math.unit(4000, "lb"),
  20064. name: "Back (Were)",
  20065. image: {
  20066. source: "./media/characters/dhari/were-back.svg",
  20067. extra: 1065 / 969,
  20068. bottom: 0.012
  20069. }
  20070. },
  20071. wereMaw: {
  20072. height: math.unit(0.625, "meters"),
  20073. name: "Maw (Were)",
  20074. image: {
  20075. source: "./media/characters/dhari/were-maw.svg"
  20076. }
  20077. },
  20078. },
  20079. [
  20080. {
  20081. name: "Normal",
  20082. height: math.unit(6 + 3 / 12, "feet"),
  20083. default: true
  20084. },
  20085. ]
  20086. ))
  20087. characterMakers.push(() => makeCharacter(
  20088. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20089. {
  20090. anthro: {
  20091. height: math.unit(5 + 7 / 12, "feet"),
  20092. weight: math.unit(175, "lb"),
  20093. name: "Anthro",
  20094. image: {
  20095. source: "./media/characters/rena-dyne/anthro.svg",
  20096. extra: 1849 / 1785,
  20097. bottom: 0.005
  20098. }
  20099. },
  20100. taur: {
  20101. height: math.unit(15 + 6 / 12, "feet"),
  20102. weight: math.unit(8000, "lb"),
  20103. name: "Taur",
  20104. image: {
  20105. source: "./media/characters/rena-dyne/taur.svg",
  20106. extra: 2315 / 2234,
  20107. bottom: 0.033
  20108. }
  20109. },
  20110. },
  20111. [
  20112. {
  20113. name: "Normal",
  20114. height: math.unit(5 + 7 / 12, "feet"),
  20115. default: true
  20116. },
  20117. ]
  20118. ))
  20119. characterMakers.push(() => makeCharacter(
  20120. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20121. {
  20122. front: {
  20123. height: math.unit(8, "feet"),
  20124. weight: math.unit(600, "lb"),
  20125. name: "Front",
  20126. image: {
  20127. source: "./media/characters/weremeep/front.svg",
  20128. extra: 967 / 862,
  20129. bottom: 0.01
  20130. }
  20131. },
  20132. },
  20133. [
  20134. {
  20135. name: "Normal",
  20136. height: math.unit(8, "feet"),
  20137. default: true
  20138. },
  20139. {
  20140. name: "Lorg",
  20141. height: math.unit(12, "feet")
  20142. },
  20143. {
  20144. name: "Oh Lawd She Comin'",
  20145. height: math.unit(20, "feet")
  20146. },
  20147. ]
  20148. ))
  20149. characterMakers.push(() => makeCharacter(
  20150. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20151. {
  20152. front: {
  20153. height: math.unit(4, "feet"),
  20154. weight: math.unit(90, "lb"),
  20155. name: "Front",
  20156. image: {
  20157. source: "./media/characters/reza/front.svg",
  20158. extra: 1183 / 1111,
  20159. bottom: 0.017
  20160. }
  20161. },
  20162. back: {
  20163. height: math.unit(4, "feet"),
  20164. weight: math.unit(90, "lb"),
  20165. name: "Back",
  20166. image: {
  20167. source: "./media/characters/reza/back.svg",
  20168. extra: 1183 / 1111,
  20169. bottom: 0.01
  20170. }
  20171. },
  20172. drake: {
  20173. height: math.unit(30, "feet"),
  20174. weight: math.unit(246960, "lb"),
  20175. name: "Drake",
  20176. image: {
  20177. source: "./media/characters/reza/drake.svg",
  20178. extra: 2350 / 2024,
  20179. bottom: 60.7 / 2403
  20180. }
  20181. },
  20182. },
  20183. [
  20184. {
  20185. name: "Normal",
  20186. height: math.unit(4, "feet"),
  20187. default: true
  20188. },
  20189. ]
  20190. ))
  20191. characterMakers.push(() => makeCharacter(
  20192. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20193. {
  20194. side: {
  20195. height: math.unit(15, "feet"),
  20196. weight: math.unit(14, "tons"),
  20197. name: "Side",
  20198. image: {
  20199. source: "./media/characters/athea/side.svg",
  20200. extra: 960 / 540,
  20201. bottom: 0.003
  20202. }
  20203. },
  20204. sitting: {
  20205. height: math.unit(6 * 2.85, "feet"),
  20206. weight: math.unit(14, "tons"),
  20207. name: "Sitting",
  20208. image: {
  20209. source: "./media/characters/athea/sitting.svg",
  20210. extra: 621 / 581,
  20211. bottom: 0.075
  20212. }
  20213. },
  20214. maw: {
  20215. height: math.unit(7.59498031496063, "feet"),
  20216. name: "Maw",
  20217. image: {
  20218. source: "./media/characters/athea/maw.svg"
  20219. }
  20220. },
  20221. },
  20222. [
  20223. {
  20224. name: "Lap Cat",
  20225. height: math.unit(2.5, "feet")
  20226. },
  20227. {
  20228. name: "Minimacro",
  20229. height: math.unit(15, "feet"),
  20230. default: true
  20231. },
  20232. {
  20233. name: "Macro",
  20234. height: math.unit(120, "feet")
  20235. },
  20236. {
  20237. name: "Macro+",
  20238. height: math.unit(640, "feet")
  20239. },
  20240. {
  20241. name: "Colossus",
  20242. height: math.unit(2.2, "miles")
  20243. },
  20244. ]
  20245. ))
  20246. characterMakers.push(() => makeCharacter(
  20247. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20248. {
  20249. front: {
  20250. height: math.unit(8 + 8 / 12, "feet"),
  20251. weight: math.unit(130, "kg"),
  20252. name: "Front",
  20253. image: {
  20254. source: "./media/characters/seroko/front.svg",
  20255. extra: 1385 / 1280,
  20256. bottom: 0.025
  20257. }
  20258. },
  20259. back: {
  20260. height: math.unit(8 + 8 / 12, "feet"),
  20261. weight: math.unit(130, "kg"),
  20262. name: "Back",
  20263. image: {
  20264. source: "./media/characters/seroko/back.svg",
  20265. extra: 1369 / 1238,
  20266. bottom: 0.018
  20267. }
  20268. },
  20269. frontDressed: {
  20270. height: math.unit(8 + 8 / 12, "feet"),
  20271. weight: math.unit(130, "kg"),
  20272. name: "Front (Dressed)",
  20273. image: {
  20274. source: "./media/characters/seroko/front-dressed.svg",
  20275. extra: 1366 / 1275,
  20276. bottom: 0.03
  20277. }
  20278. },
  20279. },
  20280. [
  20281. {
  20282. name: "Normal",
  20283. height: math.unit(8 + 8 / 12, "feet"),
  20284. default: true
  20285. },
  20286. ]
  20287. ))
  20288. characterMakers.push(() => makeCharacter(
  20289. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20290. {
  20291. front: {
  20292. height: math.unit(5.5, "feet"),
  20293. weight: math.unit(160, "lb"),
  20294. name: "Front",
  20295. image: {
  20296. source: "./media/characters/quatzi/front.svg",
  20297. extra: 2346 / 2242,
  20298. bottom: 0.015
  20299. }
  20300. },
  20301. },
  20302. [
  20303. {
  20304. name: "Normal",
  20305. height: math.unit(5.5, "feet"),
  20306. default: true
  20307. },
  20308. {
  20309. name: "Big",
  20310. height: math.unit(7.7, "feet")
  20311. },
  20312. ]
  20313. ))
  20314. characterMakers.push(() => makeCharacter(
  20315. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20316. {
  20317. front: {
  20318. height: math.unit(5 + 11 / 12, "feet"),
  20319. weight: math.unit(180, "lb"),
  20320. name: "Front",
  20321. image: {
  20322. source: "./media/characters/sen/front.svg",
  20323. extra: 1321 / 1254,
  20324. bottom: 0.015
  20325. }
  20326. },
  20327. side: {
  20328. height: math.unit(5 + 11 / 12, "feet"),
  20329. weight: math.unit(180, "lb"),
  20330. name: "Side",
  20331. image: {
  20332. source: "./media/characters/sen/side.svg",
  20333. extra: 1321 / 1254,
  20334. bottom: 0.007
  20335. }
  20336. },
  20337. back: {
  20338. height: math.unit(5 + 11 / 12, "feet"),
  20339. weight: math.unit(180, "lb"),
  20340. name: "Back",
  20341. image: {
  20342. source: "./media/characters/sen/back.svg",
  20343. extra: 1321 / 1254
  20344. }
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Normal",
  20350. height: math.unit(5 + 11 / 12, "feet"),
  20351. default: true
  20352. },
  20353. ]
  20354. ))
  20355. characterMakers.push(() => makeCharacter(
  20356. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20357. {
  20358. front: {
  20359. height: math.unit(166.6, "cm"),
  20360. weight: math.unit(66.6, "kg"),
  20361. name: "Front",
  20362. image: {
  20363. source: "./media/characters/fruity/front.svg",
  20364. extra: 1510 / 1386,
  20365. bottom: 0.04
  20366. }
  20367. },
  20368. back: {
  20369. height: math.unit(166.6, "cm"),
  20370. weight: math.unit(66.6, "lb"),
  20371. name: "Back",
  20372. image: {
  20373. source: "./media/characters/fruity/back.svg",
  20374. extra: 1563 / 1435,
  20375. bottom: 0.005
  20376. }
  20377. },
  20378. },
  20379. [
  20380. {
  20381. name: "Normal",
  20382. height: math.unit(166.6, "cm"),
  20383. default: true
  20384. },
  20385. {
  20386. name: "Demonic",
  20387. height: math.unit(166.6, "feet")
  20388. },
  20389. ]
  20390. ))
  20391. characterMakers.push(() => makeCharacter(
  20392. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20393. {
  20394. side: {
  20395. height: math.unit(10, "feet"),
  20396. weight: math.unit(500, "lb"),
  20397. name: "Side",
  20398. image: {
  20399. source: "./media/characters/zost/side.svg",
  20400. extra: 966 / 880,
  20401. bottom: 0.075
  20402. }
  20403. },
  20404. mawFront: {
  20405. height: math.unit(1.08, "meters"),
  20406. name: "Maw (Front)",
  20407. image: {
  20408. source: "./media/characters/zost/maw-front.svg"
  20409. }
  20410. },
  20411. mawSide: {
  20412. height: math.unit(2.66, "feet"),
  20413. name: "Maw (Side)",
  20414. image: {
  20415. source: "./media/characters/zost/maw-side.svg"
  20416. }
  20417. },
  20418. },
  20419. [
  20420. {
  20421. name: "Normal",
  20422. height: math.unit(10, "feet"),
  20423. default: true
  20424. },
  20425. ]
  20426. ))
  20427. characterMakers.push(() => makeCharacter(
  20428. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20429. {
  20430. front: {
  20431. height: math.unit(5 + 4 / 12, "feet"),
  20432. weight: math.unit(120, "lb"),
  20433. name: "Front",
  20434. image: {
  20435. source: "./media/characters/luci/front.svg",
  20436. extra: 1985 / 1884,
  20437. bottom: 0.04
  20438. }
  20439. },
  20440. back: {
  20441. height: math.unit(5 + 4 / 12, "feet"),
  20442. weight: math.unit(120, "lb"),
  20443. name: "Back",
  20444. image: {
  20445. source: "./media/characters/luci/back.svg",
  20446. extra: 1892 / 1791,
  20447. bottom: 0.002
  20448. }
  20449. },
  20450. },
  20451. [
  20452. {
  20453. name: "Normal",
  20454. height: math.unit(5 + 4 / 12, "feet"),
  20455. default: true
  20456. },
  20457. ]
  20458. ))
  20459. characterMakers.push(() => makeCharacter(
  20460. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20461. {
  20462. front: {
  20463. height: math.unit(1500, "feet"),
  20464. weight: math.unit(3.8e6, "tons"),
  20465. name: "Front",
  20466. image: {
  20467. source: "./media/characters/2th/front.svg",
  20468. extra: 3489 / 3350,
  20469. bottom: 0.1
  20470. }
  20471. },
  20472. foot: {
  20473. height: math.unit(461, "feet"),
  20474. name: "Foot",
  20475. image: {
  20476. source: "./media/characters/2th/foot.svg"
  20477. }
  20478. },
  20479. },
  20480. [
  20481. {
  20482. name: "\"Micro\"",
  20483. height: math.unit(15 + 7 / 12, "feet")
  20484. },
  20485. {
  20486. name: "Normal",
  20487. height: math.unit(1500, "feet"),
  20488. default: true
  20489. },
  20490. {
  20491. name: "Macro",
  20492. height: math.unit(5000, "feet")
  20493. },
  20494. {
  20495. name: "Megamacro",
  20496. height: math.unit(15, "miles")
  20497. },
  20498. {
  20499. name: "Gigamacro",
  20500. height: math.unit(4000, "miles")
  20501. },
  20502. {
  20503. name: "Galactic",
  20504. height: math.unit(50, "AU")
  20505. },
  20506. ]
  20507. ))
  20508. characterMakers.push(() => makeCharacter(
  20509. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20510. {
  20511. front: {
  20512. height: math.unit(5 + 6 / 12, "feet"),
  20513. weight: math.unit(220, "lb"),
  20514. name: "Front",
  20515. image: {
  20516. source: "./media/characters/amethyst/front.svg",
  20517. extra: 2078 / 2040,
  20518. bottom: 0.045
  20519. }
  20520. },
  20521. back: {
  20522. height: math.unit(5 + 6 / 12, "feet"),
  20523. weight: math.unit(220, "lb"),
  20524. name: "Back",
  20525. image: {
  20526. source: "./media/characters/amethyst/back.svg",
  20527. extra: 2021 / 1989,
  20528. bottom: 0.02
  20529. }
  20530. },
  20531. },
  20532. [
  20533. {
  20534. name: "Normal",
  20535. height: math.unit(5 + 6 / 12, "feet"),
  20536. default: true
  20537. },
  20538. ]
  20539. ))
  20540. characterMakers.push(() => makeCharacter(
  20541. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20542. {
  20543. front: {
  20544. height: math.unit(4 + 11 / 12, "feet"),
  20545. weight: math.unit(120, "lb"),
  20546. name: "Front",
  20547. image: {
  20548. source: "./media/characters/yumi-akiyama/front.svg",
  20549. extra: 1327 / 1235,
  20550. bottom: 0.02
  20551. }
  20552. },
  20553. back: {
  20554. height: math.unit(4 + 11 / 12, "feet"),
  20555. weight: math.unit(120, "lb"),
  20556. name: "Back",
  20557. image: {
  20558. source: "./media/characters/yumi-akiyama/back.svg",
  20559. extra: 1287 / 1245,
  20560. bottom: 0.002
  20561. }
  20562. },
  20563. },
  20564. [
  20565. {
  20566. name: "Galactic",
  20567. height: math.unit(50, "galaxies"),
  20568. default: true
  20569. },
  20570. {
  20571. name: "Universal",
  20572. height: math.unit(100, "universes")
  20573. },
  20574. ]
  20575. ))
  20576. characterMakers.push(() => makeCharacter(
  20577. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20578. {
  20579. front: {
  20580. height: math.unit(8, "feet"),
  20581. weight: math.unit(500, "lb"),
  20582. name: "Front",
  20583. image: {
  20584. source: "./media/characters/rifter-yrmori/front.svg",
  20585. extra: 1180 / 1125,
  20586. bottom: 0.02
  20587. }
  20588. },
  20589. back: {
  20590. height: math.unit(8, "feet"),
  20591. weight: math.unit(500, "lb"),
  20592. name: "Back",
  20593. image: {
  20594. source: "./media/characters/rifter-yrmori/back.svg",
  20595. extra: 1190 / 1145,
  20596. bottom: 0.001
  20597. }
  20598. },
  20599. wings: {
  20600. height: math.unit(7.75, "feet"),
  20601. weight: math.unit(500, "lb"),
  20602. name: "Wings",
  20603. image: {
  20604. source: "./media/characters/rifter-yrmori/wings.svg",
  20605. extra: 1357 / 1285
  20606. }
  20607. },
  20608. maw: {
  20609. height: math.unit(0.8, "feet"),
  20610. name: "Maw",
  20611. image: {
  20612. source: "./media/characters/rifter-yrmori/maw.svg"
  20613. }
  20614. },
  20615. mawfront: {
  20616. height: math.unit(1.45, "feet"),
  20617. name: "Maw (Front)",
  20618. image: {
  20619. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(8, "feet"),
  20627. default: true
  20628. },
  20629. {
  20630. name: "Macro",
  20631. height: math.unit(42, "meters")
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20637. {
  20638. were: {
  20639. height: math.unit(25 + 6 / 12, "feet"),
  20640. weight: math.unit(10000, "lb"),
  20641. name: "Were",
  20642. image: {
  20643. source: "./media/characters/tahajin/were.svg",
  20644. extra: 801 / 770,
  20645. bottom: 0.042
  20646. }
  20647. },
  20648. aquatic: {
  20649. height: math.unit(6 + 4 / 12, "feet"),
  20650. weight: math.unit(160, "lb"),
  20651. name: "Aquatic",
  20652. image: {
  20653. source: "./media/characters/tahajin/aquatic.svg",
  20654. extra: 572 / 542,
  20655. bottom: 0.04
  20656. }
  20657. },
  20658. chow: {
  20659. height: math.unit(8 + 11 / 12, "feet"),
  20660. weight: math.unit(450, "lb"),
  20661. name: "Chow",
  20662. image: {
  20663. source: "./media/characters/tahajin/chow.svg",
  20664. extra: 660 / 640,
  20665. bottom: 0.015
  20666. }
  20667. },
  20668. demiNaga: {
  20669. height: math.unit(6 + 8 / 12, "feet"),
  20670. weight: math.unit(300, "lb"),
  20671. name: "Demi Naga",
  20672. image: {
  20673. source: "./media/characters/tahajin/demi-naga.svg",
  20674. extra: 643 / 615,
  20675. bottom: 0.1
  20676. }
  20677. },
  20678. data: {
  20679. height: math.unit(5, "inches"),
  20680. weight: math.unit(0.1, "lb"),
  20681. name: "Data",
  20682. image: {
  20683. source: "./media/characters/tahajin/data.svg"
  20684. }
  20685. },
  20686. fluu: {
  20687. height: math.unit(5 + 7 / 12, "feet"),
  20688. weight: math.unit(140, "lb"),
  20689. name: "Fluu",
  20690. image: {
  20691. source: "./media/characters/tahajin/fluu.svg",
  20692. extra: 628 / 592,
  20693. bottom: 0.02
  20694. }
  20695. },
  20696. starWarrior: {
  20697. height: math.unit(4 + 5 / 12, "feet"),
  20698. weight: math.unit(50, "lb"),
  20699. name: "Star Warrior",
  20700. image: {
  20701. source: "./media/characters/tahajin/star-warrior.svg"
  20702. }
  20703. },
  20704. },
  20705. [
  20706. {
  20707. name: "Normal",
  20708. height: math.unit(25 + 6 / 12, "feet"),
  20709. default: true
  20710. },
  20711. ]
  20712. ))
  20713. characterMakers.push(() => makeCharacter(
  20714. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20715. {
  20716. front: {
  20717. height: math.unit(8, "feet"),
  20718. weight: math.unit(350, "lb"),
  20719. name: "Front",
  20720. image: {
  20721. source: "./media/characters/gabira/front.svg",
  20722. extra: 608 / 580,
  20723. bottom: 0.03
  20724. }
  20725. },
  20726. back: {
  20727. height: math.unit(8, "feet"),
  20728. weight: math.unit(350, "lb"),
  20729. name: "Back",
  20730. image: {
  20731. source: "./media/characters/gabira/back.svg",
  20732. extra: 608 / 580,
  20733. bottom: 0.03
  20734. }
  20735. },
  20736. },
  20737. [
  20738. {
  20739. name: "Normal",
  20740. height: math.unit(8, "feet"),
  20741. default: true
  20742. },
  20743. ]
  20744. ))
  20745. characterMakers.push(() => makeCharacter(
  20746. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20747. {
  20748. front: {
  20749. height: math.unit(5 + 3 / 12, "feet"),
  20750. weight: math.unit(137, "lb"),
  20751. name: "Front",
  20752. image: {
  20753. source: "./media/characters/sasha-katraine/front.svg",
  20754. bottom: 0.045
  20755. }
  20756. },
  20757. },
  20758. [
  20759. {
  20760. name: "Micro",
  20761. height: math.unit(5, "inches")
  20762. },
  20763. {
  20764. name: "Normal",
  20765. height: math.unit(5 + 3 / 12, "feet"),
  20766. default: true
  20767. },
  20768. ]
  20769. ))
  20770. characterMakers.push(() => makeCharacter(
  20771. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20772. {
  20773. side: {
  20774. height: math.unit(4, "inches"),
  20775. weight: math.unit(200, "grams"),
  20776. name: "Side",
  20777. image: {
  20778. source: "./media/characters/der/side.svg",
  20779. extra: 719 / 400,
  20780. bottom: 30.6 / 749.9187
  20781. }
  20782. },
  20783. },
  20784. [
  20785. {
  20786. name: "Micro",
  20787. height: math.unit(4, "inches"),
  20788. default: true
  20789. },
  20790. ]
  20791. ))
  20792. characterMakers.push(() => makeCharacter(
  20793. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20794. {
  20795. side: {
  20796. height: math.unit(30, "meters"),
  20797. weight: math.unit(700, "tonnes"),
  20798. name: "Side",
  20799. image: {
  20800. source: "./media/characters/fixerdragon/side.svg",
  20801. extra: (1293.0514 - 116.03) / 1106.86,
  20802. bottom: 116.03 / 1293.0514
  20803. }
  20804. },
  20805. },
  20806. [
  20807. {
  20808. name: "Planck",
  20809. height: math.unit(1.6e-35, "meters")
  20810. },
  20811. {
  20812. name: "Micro",
  20813. height: math.unit(0.4, "meters")
  20814. },
  20815. {
  20816. name: "Normal",
  20817. height: math.unit(30, "meters"),
  20818. default: true
  20819. },
  20820. {
  20821. name: "Megamacro",
  20822. height: math.unit(1.2, "megameters")
  20823. },
  20824. {
  20825. name: "Teramacro",
  20826. height: math.unit(130, "terameters")
  20827. },
  20828. {
  20829. name: "Yottamacro",
  20830. height: math.unit(6200, "yottameters")
  20831. },
  20832. ]
  20833. ));
  20834. characterMakers.push(() => makeCharacter(
  20835. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20836. {
  20837. front: {
  20838. height: math.unit(8, "feet"),
  20839. weight: math.unit(250, "lb"),
  20840. name: "Front",
  20841. image: {
  20842. source: "./media/characters/kite/front.svg",
  20843. extra: 2796 / 2659,
  20844. bottom: 0.002
  20845. }
  20846. },
  20847. },
  20848. [
  20849. {
  20850. name: "Normal",
  20851. height: math.unit(8, "feet"),
  20852. default: true
  20853. },
  20854. {
  20855. name: "Macro",
  20856. height: math.unit(360, "feet")
  20857. },
  20858. {
  20859. name: "Megamacro",
  20860. height: math.unit(1500, "feet")
  20861. },
  20862. ]
  20863. ))
  20864. characterMakers.push(() => makeCharacter(
  20865. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20866. {
  20867. front: {
  20868. height: math.unit(5 + 10 / 12, "feet"),
  20869. weight: math.unit(150, "lb"),
  20870. name: "Front",
  20871. image: {
  20872. source: "./media/characters/poojawa-vynar/front.svg",
  20873. extra: (1506.1547 - 55) / 1356.6,
  20874. bottom: 55 / 1506.1547
  20875. }
  20876. },
  20877. frontTailless: {
  20878. height: math.unit(5 + 10 / 12, "feet"),
  20879. weight: math.unit(150, "lb"),
  20880. name: "Front (Tailless)",
  20881. image: {
  20882. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20883. extra: (1506.1547 - 55) / 1356.6,
  20884. bottom: 55 / 1506.1547
  20885. }
  20886. },
  20887. },
  20888. [
  20889. {
  20890. name: "Normal",
  20891. height: math.unit(5 + 10 / 12, "feet"),
  20892. default: true
  20893. },
  20894. ]
  20895. ))
  20896. characterMakers.push(() => makeCharacter(
  20897. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20898. {
  20899. front: {
  20900. height: math.unit(293, "meters"),
  20901. weight: math.unit(70400, "tons"),
  20902. name: "Front",
  20903. image: {
  20904. source: "./media/characters/violette/front.svg",
  20905. extra: 1227 / 1180,
  20906. bottom: 0.005
  20907. }
  20908. },
  20909. back: {
  20910. height: math.unit(293, "meters"),
  20911. weight: math.unit(70400, "tons"),
  20912. name: "Back",
  20913. image: {
  20914. source: "./media/characters/violette/back.svg",
  20915. extra: 1227 / 1180,
  20916. bottom: 0.005
  20917. }
  20918. },
  20919. },
  20920. [
  20921. {
  20922. name: "Macro",
  20923. height: math.unit(293, "meters"),
  20924. default: true
  20925. },
  20926. ]
  20927. ))
  20928. characterMakers.push(() => makeCharacter(
  20929. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20930. {
  20931. front: {
  20932. height: math.unit(1050, "feet"),
  20933. weight: math.unit(200000, "tons"),
  20934. name: "Front",
  20935. image: {
  20936. source: "./media/characters/alessandra/front.svg",
  20937. extra: 960 / 912,
  20938. bottom: 0.06
  20939. }
  20940. },
  20941. },
  20942. [
  20943. {
  20944. name: "Macro",
  20945. height: math.unit(1050, "feet")
  20946. },
  20947. {
  20948. name: "Macro+",
  20949. height: math.unit(900, "meters"),
  20950. default: true
  20951. },
  20952. ]
  20953. ))
  20954. characterMakers.push(() => makeCharacter(
  20955. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20956. {
  20957. front: {
  20958. height: math.unit(5, "feet"),
  20959. weight: math.unit(187, "lb"),
  20960. name: "Front",
  20961. image: {
  20962. source: "./media/characters/person/front.svg",
  20963. extra: 3087 / 2945,
  20964. bottom: 91 / 3181
  20965. }
  20966. },
  20967. },
  20968. [
  20969. {
  20970. name: "Micro",
  20971. height: math.unit(3, "inches")
  20972. },
  20973. {
  20974. name: "Normal",
  20975. height: math.unit(5, "feet"),
  20976. default: true
  20977. },
  20978. {
  20979. name: "Macro",
  20980. height: math.unit(90, "feet")
  20981. },
  20982. {
  20983. name: "Max Size",
  20984. height: math.unit(280, "feet")
  20985. },
  20986. ]
  20987. ))
  20988. characterMakers.push(() => makeCharacter(
  20989. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20990. {
  20991. front: {
  20992. height: math.unit(4.5, "meters"),
  20993. weight: math.unit(3200, "lb"),
  20994. name: "Front",
  20995. image: {
  20996. source: "./media/characters/ty/front.svg",
  20997. extra: 1038 / 960,
  20998. bottom: 31.156 / 1068
  20999. }
  21000. },
  21001. back: {
  21002. height: math.unit(4.5, "meters"),
  21003. weight: math.unit(3200, "lb"),
  21004. name: "Back",
  21005. image: {
  21006. source: "./media/characters/ty/back.svg",
  21007. extra: 1044 / 966,
  21008. bottom: 7.48 / 1049
  21009. }
  21010. },
  21011. },
  21012. [
  21013. {
  21014. name: "Normal",
  21015. height: math.unit(4.5, "meters"),
  21016. default: true
  21017. },
  21018. ]
  21019. ))
  21020. characterMakers.push(() => makeCharacter(
  21021. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21022. {
  21023. front: {
  21024. height: math.unit(5 + 4 / 12, "feet"),
  21025. weight: math.unit(115, "lb"),
  21026. name: "Front",
  21027. image: {
  21028. source: "./media/characters/rocky/front.svg",
  21029. extra: 1012 / 975,
  21030. bottom: 54 / 1066
  21031. }
  21032. },
  21033. },
  21034. [
  21035. {
  21036. name: "Normal",
  21037. height: math.unit(5 + 4 / 12, "feet"),
  21038. default: true
  21039. },
  21040. ]
  21041. ))
  21042. characterMakers.push(() => makeCharacter(
  21043. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21044. {
  21045. upright: {
  21046. height: math.unit(6, "meters"),
  21047. weight: math.unit(4000, "kg"),
  21048. name: "Upright",
  21049. image: {
  21050. source: "./media/characters/ruin/upright.svg",
  21051. extra: 668 / 661,
  21052. bottom: 42 / 799.8396
  21053. }
  21054. },
  21055. },
  21056. [
  21057. {
  21058. name: "Normal",
  21059. height: math.unit(6, "meters"),
  21060. default: true
  21061. },
  21062. ]
  21063. ))
  21064. characterMakers.push(() => makeCharacter(
  21065. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21066. {
  21067. front: {
  21068. height: math.unit(5, "feet"),
  21069. weight: math.unit(106, "lb"),
  21070. name: "Front",
  21071. image: {
  21072. source: "./media/characters/robin/front.svg",
  21073. extra: 862 / 799,
  21074. bottom: 42.4 / 914.8856
  21075. }
  21076. },
  21077. },
  21078. [
  21079. {
  21080. name: "Normal",
  21081. height: math.unit(5, "feet"),
  21082. default: true
  21083. },
  21084. ]
  21085. ))
  21086. characterMakers.push(() => makeCharacter(
  21087. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21088. {
  21089. side: {
  21090. height: math.unit(3, "feet"),
  21091. weight: math.unit(225, "lb"),
  21092. name: "Side",
  21093. image: {
  21094. source: "./media/characters/saian/side.svg",
  21095. extra: 566 / 356,
  21096. bottom: 79.7 / 643
  21097. }
  21098. },
  21099. maw: {
  21100. height: math.unit(2.85, "feet"),
  21101. name: "Maw",
  21102. image: {
  21103. source: "./media/characters/saian/maw.svg"
  21104. }
  21105. },
  21106. },
  21107. [
  21108. {
  21109. name: "Normal",
  21110. height: math.unit(3, "feet"),
  21111. default: true
  21112. },
  21113. ]
  21114. ))
  21115. characterMakers.push(() => makeCharacter(
  21116. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21117. {
  21118. side: {
  21119. height: math.unit(8, "feet"),
  21120. weight: math.unit(300, "lb"),
  21121. name: "Side",
  21122. image: {
  21123. source: "./media/characters/equus-silvermane/side.svg",
  21124. extra: 2176 / 2050,
  21125. bottom: 65.7 / 2245
  21126. }
  21127. },
  21128. front: {
  21129. height: math.unit(8, "feet"),
  21130. weight: math.unit(300, "lb"),
  21131. name: "Front",
  21132. image: {
  21133. source: "./media/characters/equus-silvermane/front.svg",
  21134. extra: 4633 / 4400,
  21135. bottom: 71.3 / 4706.915
  21136. }
  21137. },
  21138. sideStepping: {
  21139. height: math.unit(8, "feet"),
  21140. weight: math.unit(300, "lb"),
  21141. name: "Side (Stepping)",
  21142. image: {
  21143. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21144. extra: 1968 / 1860,
  21145. bottom: 16.4 / 1989
  21146. }
  21147. },
  21148. },
  21149. [
  21150. {
  21151. name: "Normal",
  21152. height: math.unit(8, "feet")
  21153. },
  21154. {
  21155. name: "Minimacro",
  21156. height: math.unit(75, "feet"),
  21157. default: true
  21158. },
  21159. {
  21160. name: "Macro",
  21161. height: math.unit(150, "feet")
  21162. },
  21163. {
  21164. name: "Macro+",
  21165. height: math.unit(1000, "feet")
  21166. },
  21167. {
  21168. name: "Megamacro",
  21169. height: math.unit(1, "mile")
  21170. },
  21171. ]
  21172. ))
  21173. characterMakers.push(() => makeCharacter(
  21174. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21175. {
  21176. side: {
  21177. height: math.unit(20, "feet"),
  21178. weight: math.unit(30000, "kg"),
  21179. name: "Side",
  21180. image: {
  21181. source: "./media/characters/windar/side.svg",
  21182. extra: 1491 / 1248,
  21183. bottom: 82.56 / 1568
  21184. }
  21185. },
  21186. },
  21187. [
  21188. {
  21189. name: "Normal",
  21190. height: math.unit(20, "feet"),
  21191. default: true
  21192. },
  21193. ]
  21194. ))
  21195. characterMakers.push(() => makeCharacter(
  21196. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21197. {
  21198. side: {
  21199. height: math.unit(15.66, "feet"),
  21200. weight: math.unit(150, "lb"),
  21201. name: "Side",
  21202. image: {
  21203. source: "./media/characters/melody/side.svg",
  21204. extra: 1097 / 944,
  21205. bottom: 11.8 / 1109
  21206. }
  21207. },
  21208. sideOutfit: {
  21209. height: math.unit(15.66, "feet"),
  21210. weight: math.unit(150, "lb"),
  21211. name: "Side (Outfit)",
  21212. image: {
  21213. source: "./media/characters/melody/side-outfit.svg",
  21214. extra: 1097 / 944,
  21215. bottom: 11.8 / 1109
  21216. }
  21217. },
  21218. },
  21219. [
  21220. {
  21221. name: "Normal",
  21222. height: math.unit(15.66, "feet"),
  21223. default: true
  21224. },
  21225. ]
  21226. ))
  21227. characterMakers.push(() => makeCharacter(
  21228. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21229. {
  21230. front: {
  21231. height: math.unit(8, "feet"),
  21232. weight: math.unit(325, "lb"),
  21233. name: "Front",
  21234. image: {
  21235. source: "./media/characters/windera/front.svg",
  21236. extra: 3180 / 2845,
  21237. bottom: 178 / 3365
  21238. }
  21239. },
  21240. },
  21241. [
  21242. {
  21243. name: "Normal",
  21244. height: math.unit(8, "feet"),
  21245. default: true
  21246. },
  21247. ]
  21248. ))
  21249. characterMakers.push(() => makeCharacter(
  21250. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21251. {
  21252. front: {
  21253. height: math.unit(28.75, "feet"),
  21254. weight: math.unit(2000, "kg"),
  21255. name: "Front",
  21256. image: {
  21257. source: "./media/characters/sonear/front.svg",
  21258. extra: 1041.1 / 964.9,
  21259. bottom: 53.7 / 1096.6
  21260. }
  21261. },
  21262. },
  21263. [
  21264. {
  21265. name: "Normal",
  21266. height: math.unit(28.75, "feet"),
  21267. default: true
  21268. },
  21269. ]
  21270. ))
  21271. characterMakers.push(() => makeCharacter(
  21272. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21273. {
  21274. side: {
  21275. height: math.unit(25.5, "feet"),
  21276. weight: math.unit(23000, "kg"),
  21277. name: "Side",
  21278. image: {
  21279. source: "./media/characters/kanara/side.svg"
  21280. }
  21281. },
  21282. },
  21283. [
  21284. {
  21285. name: "Normal",
  21286. height: math.unit(25.5, "feet"),
  21287. default: true
  21288. },
  21289. ]
  21290. ))
  21291. characterMakers.push(() => makeCharacter(
  21292. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21293. {
  21294. side: {
  21295. height: math.unit(10, "feet"),
  21296. weight: math.unit(1000, "kg"),
  21297. name: "Side",
  21298. image: {
  21299. source: "./media/characters/ereus/side.svg",
  21300. extra: 1157 / 959,
  21301. bottom: 153 / 1312.5
  21302. }
  21303. },
  21304. },
  21305. [
  21306. {
  21307. name: "Normal",
  21308. height: math.unit(10, "feet"),
  21309. default: true
  21310. },
  21311. ]
  21312. ))
  21313. characterMakers.push(() => makeCharacter(
  21314. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21315. {
  21316. side: {
  21317. height: math.unit(4.5, "feet"),
  21318. weight: math.unit(500, "lb"),
  21319. name: "Side",
  21320. image: {
  21321. source: "./media/characters/e-ter/side.svg",
  21322. extra: 1550 / 1248,
  21323. bottom: 146 / 1694
  21324. }
  21325. },
  21326. },
  21327. [
  21328. {
  21329. name: "Normal",
  21330. height: math.unit(4.5, "feet"),
  21331. default: true
  21332. },
  21333. ]
  21334. ))
  21335. characterMakers.push(() => makeCharacter(
  21336. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21337. {
  21338. side: {
  21339. height: math.unit(9.7, "feet"),
  21340. weight: math.unit(4000, "kg"),
  21341. name: "Side",
  21342. image: {
  21343. source: "./media/characters/yamie/side.svg"
  21344. }
  21345. },
  21346. },
  21347. [
  21348. {
  21349. name: "Normal",
  21350. height: math.unit(9.7, "feet"),
  21351. default: true
  21352. },
  21353. ]
  21354. ))
  21355. characterMakers.push(() => makeCharacter(
  21356. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21357. {
  21358. front: {
  21359. height: math.unit(50, "feet"),
  21360. weight: math.unit(50000, "kg"),
  21361. name: "Front",
  21362. image: {
  21363. source: "./media/characters/anders/front.svg",
  21364. extra: 570 / 539,
  21365. bottom: 14.7 / 586.7
  21366. }
  21367. },
  21368. },
  21369. [
  21370. {
  21371. name: "Large",
  21372. height: math.unit(50, "feet")
  21373. },
  21374. {
  21375. name: "Macro",
  21376. height: math.unit(2000, "feet"),
  21377. default: true
  21378. },
  21379. {
  21380. name: "Megamacro",
  21381. height: math.unit(12, "miles")
  21382. },
  21383. ]
  21384. ))
  21385. characterMakers.push(() => makeCharacter(
  21386. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21387. {
  21388. front: {
  21389. height: math.unit(7 + 2 / 12, "feet"),
  21390. weight: math.unit(300, "lb"),
  21391. name: "Front",
  21392. image: {
  21393. source: "./media/characters/reban/front.svg",
  21394. extra: 516 / 487,
  21395. bottom: 42.82 / 558.356
  21396. }
  21397. },
  21398. dick: {
  21399. height: math.unit(7 / 5, "feet"),
  21400. name: "Dick",
  21401. image: {
  21402. source: "./media/characters/reban/dick.svg"
  21403. }
  21404. },
  21405. },
  21406. [
  21407. {
  21408. name: "Natural Height",
  21409. height: math.unit(7 + 2 / 12, "feet")
  21410. },
  21411. {
  21412. name: "Macro",
  21413. height: math.unit(500, "feet"),
  21414. default: true
  21415. },
  21416. {
  21417. name: "Canon Height",
  21418. height: math.unit(50, "AU")
  21419. },
  21420. ]
  21421. ))
  21422. characterMakers.push(() => makeCharacter(
  21423. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21424. {
  21425. front: {
  21426. height: math.unit(6, "feet"),
  21427. weight: math.unit(150, "lb"),
  21428. name: "Front",
  21429. image: {
  21430. source: "./media/characters/terrance-keayes/front.svg",
  21431. extra: 1.005,
  21432. bottom: 151 / 1615
  21433. }
  21434. },
  21435. side: {
  21436. height: math.unit(6, "feet"),
  21437. weight: math.unit(150, "lb"),
  21438. name: "Side",
  21439. image: {
  21440. source: "./media/characters/terrance-keayes/side.svg",
  21441. extra: 1.005,
  21442. bottom: 129.4 / 1544
  21443. }
  21444. },
  21445. back: {
  21446. height: math.unit(6, "feet"),
  21447. weight: math.unit(150, "lb"),
  21448. name: "Back",
  21449. image: {
  21450. source: "./media/characters/terrance-keayes/back.svg",
  21451. extra: 1.005,
  21452. bottom: 58.4 / 1557.3
  21453. }
  21454. },
  21455. dick: {
  21456. height: math.unit(6 * 0.208, "feet"),
  21457. name: "Dick",
  21458. image: {
  21459. source: "./media/characters/terrance-keayes/dick.svg"
  21460. }
  21461. },
  21462. },
  21463. [
  21464. {
  21465. name: "Canon Height",
  21466. height: math.unit(35, "miles"),
  21467. default: true
  21468. },
  21469. ]
  21470. ))
  21471. characterMakers.push(() => makeCharacter(
  21472. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21473. {
  21474. front: {
  21475. height: math.unit(6, "feet"),
  21476. weight: math.unit(150, "lb"),
  21477. name: "Front",
  21478. image: {
  21479. source: "./media/characters/ofelia/front.svg",
  21480. extra: 546 / 541,
  21481. bottom: 39 / 583
  21482. }
  21483. },
  21484. back: {
  21485. height: math.unit(6, "feet"),
  21486. weight: math.unit(150, "lb"),
  21487. name: "Back",
  21488. image: {
  21489. source: "./media/characters/ofelia/back.svg",
  21490. extra: 564 / 559.5,
  21491. bottom: 8.69 / 573.02
  21492. }
  21493. },
  21494. maw: {
  21495. height: math.unit(1, "feet"),
  21496. name: "Maw",
  21497. image: {
  21498. source: "./media/characters/ofelia/maw.svg"
  21499. }
  21500. },
  21501. foot: {
  21502. height: math.unit(1.949, "feet"),
  21503. name: "Foot",
  21504. image: {
  21505. source: "./media/characters/ofelia/foot.svg"
  21506. }
  21507. },
  21508. },
  21509. [
  21510. {
  21511. name: "Canon Height",
  21512. height: math.unit(2000, "miles"),
  21513. default: true
  21514. },
  21515. ]
  21516. ))
  21517. characterMakers.push(() => makeCharacter(
  21518. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21519. {
  21520. front: {
  21521. height: math.unit(6, "feet"),
  21522. weight: math.unit(150, "lb"),
  21523. name: "Front",
  21524. image: {
  21525. source: "./media/characters/samuel/front.svg",
  21526. extra: 265 / 258,
  21527. bottom: 2 / 266.1566
  21528. }
  21529. },
  21530. },
  21531. [
  21532. {
  21533. name: "Macro",
  21534. height: math.unit(100, "feet"),
  21535. default: true
  21536. },
  21537. {
  21538. name: "Full Size",
  21539. height: math.unit(1000, "miles")
  21540. },
  21541. ]
  21542. ))
  21543. characterMakers.push(() => makeCharacter(
  21544. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21545. {
  21546. front: {
  21547. height: math.unit(6, "feet"),
  21548. weight: math.unit(300, "lb"),
  21549. name: "Front",
  21550. image: {
  21551. source: "./media/characters/beishir-kiel/front.svg",
  21552. extra: 569 / 547,
  21553. bottom: 41.9 / 609
  21554. }
  21555. },
  21556. maw: {
  21557. height: math.unit(6 * 0.202, "feet"),
  21558. name: "Maw",
  21559. image: {
  21560. source: "./media/characters/beishir-kiel/maw.svg"
  21561. }
  21562. },
  21563. },
  21564. [
  21565. {
  21566. name: "Macro",
  21567. height: math.unit(300, "feet"),
  21568. default: true
  21569. },
  21570. ]
  21571. ))
  21572. characterMakers.push(() => makeCharacter(
  21573. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21574. {
  21575. front: {
  21576. height: math.unit(5 + 8 / 12, "feet"),
  21577. weight: math.unit(120, "lb"),
  21578. name: "Front",
  21579. image: {
  21580. source: "./media/characters/logan-grey/front.svg",
  21581. extra: 2539 / 2393,
  21582. bottom: 97.6 / 2636.37
  21583. }
  21584. },
  21585. frontAlt: {
  21586. height: math.unit(5 + 8 / 12, "feet"),
  21587. weight: math.unit(120, "lb"),
  21588. name: "Front (Alt)",
  21589. image: {
  21590. source: "./media/characters/logan-grey/front-alt.svg",
  21591. extra: 958 / 893,
  21592. bottom: 15 / 970.768
  21593. }
  21594. },
  21595. back: {
  21596. height: math.unit(5 + 8 / 12, "feet"),
  21597. weight: math.unit(120, "lb"),
  21598. name: "Back",
  21599. image: {
  21600. source: "./media/characters/logan-grey/back.svg",
  21601. extra: 958 / 893,
  21602. bottom: 2.1881 / 970.9788
  21603. }
  21604. },
  21605. dick: {
  21606. height: math.unit(1.437, "feet"),
  21607. name: "Dick",
  21608. image: {
  21609. source: "./media/characters/logan-grey/dick.svg"
  21610. }
  21611. },
  21612. },
  21613. [
  21614. {
  21615. name: "Normal",
  21616. height: math.unit(5 + 8 / 12, "feet")
  21617. },
  21618. {
  21619. name: "The 500 Foot Femboy",
  21620. height: math.unit(500, "feet"),
  21621. default: true
  21622. },
  21623. {
  21624. name: "Megmacro",
  21625. height: math.unit(20, "miles")
  21626. },
  21627. ]
  21628. ))
  21629. characterMakers.push(() => makeCharacter(
  21630. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21631. {
  21632. front: {
  21633. height: math.unit(8 + 2 / 12, "feet"),
  21634. weight: math.unit(275, "lb"),
  21635. name: "Front",
  21636. image: {
  21637. source: "./media/characters/draganta/front.svg",
  21638. extra: 1177 / 1135,
  21639. bottom: 33.46 / 1212.1
  21640. }
  21641. },
  21642. },
  21643. [
  21644. {
  21645. name: "Normal",
  21646. height: math.unit(8 + 6 / 12, "feet"),
  21647. default: true
  21648. },
  21649. {
  21650. name: "Macro",
  21651. height: math.unit(150, "feet")
  21652. },
  21653. {
  21654. name: "Megamacro",
  21655. height: math.unit(1000, "miles")
  21656. },
  21657. ]
  21658. ))
  21659. characterMakers.push(() => makeCharacter(
  21660. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21661. {
  21662. front: {
  21663. height: math.unit(1.72, "m"),
  21664. weight: math.unit(80, "lb"),
  21665. name: "Front",
  21666. image: {
  21667. source: "./media/characters/voski/front.svg",
  21668. extra: 2076.22 / 2022.4,
  21669. bottom: 102.7 / 2177.3866
  21670. }
  21671. },
  21672. frontNsfw: {
  21673. height: math.unit(1.72, "m"),
  21674. weight: math.unit(80, "lb"),
  21675. name: "Front (NSFW)",
  21676. image: {
  21677. source: "./media/characters/voski/front-nsfw.svg",
  21678. extra: 2076.22 / 2022.4,
  21679. bottom: 102.7 / 2177.3866
  21680. }
  21681. },
  21682. back: {
  21683. height: math.unit(1.72, "m"),
  21684. weight: math.unit(80, "lb"),
  21685. name: "Back",
  21686. image: {
  21687. source: "./media/characters/voski/back.svg",
  21688. extra: 2104 / 2051,
  21689. bottom: 10.45 / 2113.63
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Normal",
  21696. height: math.unit(1.72, "m")
  21697. },
  21698. {
  21699. name: "Macro",
  21700. height: math.unit(55, "m"),
  21701. default: true
  21702. },
  21703. {
  21704. name: "Macro+",
  21705. height: math.unit(300, "m")
  21706. },
  21707. {
  21708. name: "Macro++",
  21709. height: math.unit(700, "m")
  21710. },
  21711. {
  21712. name: "Macro+++",
  21713. height: math.unit(4500, "m")
  21714. },
  21715. {
  21716. name: "Macro++++",
  21717. height: math.unit(45, "km")
  21718. },
  21719. {
  21720. name: "Macro+++++",
  21721. height: math.unit(1220, "km")
  21722. },
  21723. ]
  21724. ))
  21725. characterMakers.push(() => makeCharacter(
  21726. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21727. {
  21728. front: {
  21729. height: math.unit(2.3, "m"),
  21730. weight: math.unit(304, "kg"),
  21731. name: "Front",
  21732. image: {
  21733. source: "./media/characters/icowom-lee/front.svg",
  21734. extra: 985 / 955,
  21735. bottom: 25.4 / 1012
  21736. }
  21737. },
  21738. fronttentacles: {
  21739. height: math.unit(2.3, "m"),
  21740. weight: math.unit(304, "kg"),
  21741. name: "Front-tentacles",
  21742. image: {
  21743. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21744. extra: 985 / 955,
  21745. bottom: 25.4 / 1012
  21746. }
  21747. },
  21748. back: {
  21749. height: math.unit(2.3, "m"),
  21750. weight: math.unit(304, "kg"),
  21751. name: "Back",
  21752. image: {
  21753. source: "./media/characters/icowom-lee/back.svg",
  21754. extra: 975 / 954,
  21755. bottom: 9.5 / 985
  21756. }
  21757. },
  21758. backtentacles: {
  21759. height: math.unit(2.3, "m"),
  21760. weight: math.unit(304, "kg"),
  21761. name: "Back-tentacles",
  21762. image: {
  21763. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21764. extra: 975 / 954,
  21765. bottom: 9.5 / 985
  21766. }
  21767. },
  21768. frontDressed: {
  21769. height: math.unit(2.3, "m"),
  21770. weight: math.unit(304, "kg"),
  21771. name: "Front (Dressed)",
  21772. image: {
  21773. source: "./media/characters/icowom-lee/front-dressed.svg",
  21774. extra: 3076 / 2933,
  21775. bottom: 51.4 / 3125.1889
  21776. }
  21777. },
  21778. rump: {
  21779. height: math.unit(0.776, "meters"),
  21780. name: "Rump",
  21781. image: {
  21782. source: "./media/characters/icowom-lee/rump.svg"
  21783. }
  21784. },
  21785. genitals: {
  21786. height: math.unit(0.78, "meters"),
  21787. name: "Genitals",
  21788. image: {
  21789. source: "./media/characters/icowom-lee/genitals.svg"
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Normal",
  21796. height: math.unit(2.3, "meters"),
  21797. default: true
  21798. },
  21799. {
  21800. name: "Macro",
  21801. height: math.unit(94, "meters"),
  21802. default: true
  21803. },
  21804. ]
  21805. ))
  21806. characterMakers.push(() => makeCharacter(
  21807. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21808. {
  21809. front: {
  21810. height: math.unit(22, "meters"),
  21811. weight: math.unit(21000, "kg"),
  21812. name: "Front",
  21813. image: {
  21814. source: "./media/characters/shock-diamond/front.svg",
  21815. extra: 2204 / 2053,
  21816. bottom: 65 / 2239.47
  21817. }
  21818. },
  21819. frontNude: {
  21820. height: math.unit(22, "meters"),
  21821. weight: math.unit(21000, "kg"),
  21822. name: "Front (Nude)",
  21823. image: {
  21824. source: "./media/characters/shock-diamond/front-nude.svg",
  21825. extra: 2514 / 2285,
  21826. bottom: 13 / 2527.56
  21827. }
  21828. },
  21829. },
  21830. [
  21831. {
  21832. name: "Normal",
  21833. height: math.unit(3, "meters")
  21834. },
  21835. {
  21836. name: "Macro",
  21837. height: math.unit(22, "meters"),
  21838. default: true
  21839. },
  21840. ]
  21841. ))
  21842. characterMakers.push(() => makeCharacter(
  21843. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21844. {
  21845. front: {
  21846. height: math.unit(5 + 4 / 12, "feet"),
  21847. weight: math.unit(120, "lb"),
  21848. name: "Front",
  21849. image: {
  21850. source: "./media/characters/rory/front.svg",
  21851. extra: 589 / 556,
  21852. bottom: 45.7 / 635.76
  21853. }
  21854. },
  21855. frontNude: {
  21856. height: math.unit(5 + 4 / 12, "feet"),
  21857. weight: math.unit(120, "lb"),
  21858. name: "Front (Nude)",
  21859. image: {
  21860. source: "./media/characters/rory/front-nude.svg",
  21861. extra: 589 / 556,
  21862. bottom: 45.7 / 635.76
  21863. }
  21864. },
  21865. side: {
  21866. height: math.unit(5 + 4 / 12, "feet"),
  21867. weight: math.unit(120, "lb"),
  21868. name: "Side",
  21869. image: {
  21870. source: "./media/characters/rory/side.svg",
  21871. extra: 597 / 564,
  21872. bottom: 55 / 653
  21873. }
  21874. },
  21875. back: {
  21876. height: math.unit(5 + 4 / 12, "feet"),
  21877. weight: math.unit(120, "lb"),
  21878. name: "Back",
  21879. image: {
  21880. source: "./media/characters/rory/back.svg",
  21881. extra: 620 / 585,
  21882. bottom: 8.86 / 630.43
  21883. }
  21884. },
  21885. dick: {
  21886. height: math.unit(0.86, "feet"),
  21887. name: "Dick",
  21888. image: {
  21889. source: "./media/characters/rory/dick.svg"
  21890. }
  21891. },
  21892. },
  21893. [
  21894. {
  21895. name: "Normal",
  21896. height: math.unit(5 + 4 / 12, "feet"),
  21897. default: true
  21898. },
  21899. {
  21900. name: "Macro",
  21901. height: math.unit(100, "feet")
  21902. },
  21903. {
  21904. name: "Macro+",
  21905. height: math.unit(140, "feet")
  21906. },
  21907. {
  21908. name: "Macro++",
  21909. height: math.unit(300, "feet")
  21910. },
  21911. ]
  21912. ))
  21913. characterMakers.push(() => makeCharacter(
  21914. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21915. {
  21916. front: {
  21917. height: math.unit(5 + 9 / 12, "feet"),
  21918. weight: math.unit(190, "lb"),
  21919. name: "Front",
  21920. image: {
  21921. source: "./media/characters/sprisk/front.svg",
  21922. extra: 1225 / 1180,
  21923. bottom: 42.7 / 1266.4
  21924. }
  21925. },
  21926. frontNsfw: {
  21927. height: math.unit(5 + 9 / 12, "feet"),
  21928. weight: math.unit(190, "lb"),
  21929. name: "Front (NSFW)",
  21930. image: {
  21931. source: "./media/characters/sprisk/front-nsfw.svg",
  21932. extra: 1225 / 1180,
  21933. bottom: 42.7 / 1266.4
  21934. }
  21935. },
  21936. back: {
  21937. height: math.unit(5 + 9 / 12, "feet"),
  21938. weight: math.unit(190, "lb"),
  21939. name: "Back",
  21940. image: {
  21941. source: "./media/characters/sprisk/back.svg",
  21942. extra: 1247 / 1200,
  21943. bottom: 5.6 / 1253.04
  21944. }
  21945. },
  21946. },
  21947. [
  21948. {
  21949. name: "Tiny",
  21950. height: math.unit(2, "inches")
  21951. },
  21952. {
  21953. name: "Normal",
  21954. height: math.unit(5 + 9 / 12, "feet"),
  21955. default: true
  21956. },
  21957. {
  21958. name: "Mini Macro",
  21959. height: math.unit(18, "feet")
  21960. },
  21961. {
  21962. name: "Macro",
  21963. height: math.unit(100, "feet")
  21964. },
  21965. {
  21966. name: "MACRO",
  21967. height: math.unit(50, "miles")
  21968. },
  21969. {
  21970. name: "M A C R O",
  21971. height: math.unit(300, "miles")
  21972. },
  21973. ]
  21974. ))
  21975. characterMakers.push(() => makeCharacter(
  21976. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21977. {
  21978. side: {
  21979. height: math.unit(15.6, "meters"),
  21980. weight: math.unit(700000, "kg"),
  21981. name: "Side",
  21982. image: {
  21983. source: "./media/characters/bunsen/side.svg",
  21984. extra: 1644 / 358
  21985. }
  21986. },
  21987. foot: {
  21988. height: math.unit(1.611 * 1644 / 358, "meter"),
  21989. name: "Foot",
  21990. image: {
  21991. source: "./media/characters/bunsen/foot.svg"
  21992. }
  21993. },
  21994. },
  21995. [
  21996. {
  21997. name: "Small",
  21998. height: math.unit(10, "feet")
  21999. },
  22000. {
  22001. name: "Normal",
  22002. height: math.unit(15.6, "meters"),
  22003. default: true
  22004. },
  22005. ]
  22006. ))
  22007. characterMakers.push(() => makeCharacter(
  22008. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22009. {
  22010. front: {
  22011. height: math.unit(4 + 11 / 12, "feet"),
  22012. weight: math.unit(140, "lb"),
  22013. name: "Front",
  22014. image: {
  22015. source: "./media/characters/sesh/front.svg",
  22016. extra: 3420 / 3231,
  22017. bottom: 72 / 3949.5
  22018. }
  22019. },
  22020. },
  22021. [
  22022. {
  22023. name: "Normal",
  22024. height: math.unit(4 + 11 / 12, "feet")
  22025. },
  22026. {
  22027. name: "Grown",
  22028. height: math.unit(15, "feet"),
  22029. default: true
  22030. },
  22031. {
  22032. name: "Macro",
  22033. height: math.unit(1500, "feet")
  22034. },
  22035. {
  22036. name: "Megamacro",
  22037. height: math.unit(30, "miles")
  22038. },
  22039. {
  22040. name: "Continental",
  22041. height: math.unit(3000, "miles")
  22042. },
  22043. {
  22044. name: "Gravity Mass",
  22045. height: math.unit(300000, "miles")
  22046. },
  22047. {
  22048. name: "Planet Buster",
  22049. height: math.unit(30000000, "miles")
  22050. },
  22051. {
  22052. name: "Big",
  22053. height: math.unit(3000000000, "miles")
  22054. },
  22055. ]
  22056. ))
  22057. characterMakers.push(() => makeCharacter(
  22058. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22059. {
  22060. front: {
  22061. height: math.unit(9, "feet"),
  22062. weight: math.unit(350, "lb"),
  22063. name: "Front",
  22064. image: {
  22065. source: "./media/characters/pepper/front.svg",
  22066. extra: 1448 / 1312,
  22067. bottom: 9.4 / 1457.88
  22068. }
  22069. },
  22070. back: {
  22071. height: math.unit(9, "feet"),
  22072. weight: math.unit(350, "lb"),
  22073. name: "Back",
  22074. image: {
  22075. source: "./media/characters/pepper/back.svg",
  22076. extra: 1423 / 1300,
  22077. bottom: 4.6 / 1429
  22078. }
  22079. },
  22080. maw: {
  22081. height: math.unit(0.932, "feet"),
  22082. name: "Maw",
  22083. image: {
  22084. source: "./media/characters/pepper/maw.svg"
  22085. }
  22086. },
  22087. },
  22088. [
  22089. {
  22090. name: "Normal",
  22091. height: math.unit(9, "feet"),
  22092. default: true
  22093. },
  22094. ]
  22095. ))
  22096. characterMakers.push(() => makeCharacter(
  22097. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22098. {
  22099. front: {
  22100. height: math.unit(6, "feet"),
  22101. weight: math.unit(150, "lb"),
  22102. name: "Front",
  22103. image: {
  22104. source: "./media/characters/maelstrom/front.svg",
  22105. extra: 2100 / 1883,
  22106. bottom: 94 / 2196.7
  22107. }
  22108. },
  22109. },
  22110. [
  22111. {
  22112. name: "Less Kaiju",
  22113. height: math.unit(200, "feet")
  22114. },
  22115. {
  22116. name: "Kaiju",
  22117. height: math.unit(400, "feet"),
  22118. default: true
  22119. },
  22120. {
  22121. name: "Kaiju-er",
  22122. height: math.unit(600, "feet")
  22123. },
  22124. ]
  22125. ))
  22126. characterMakers.push(() => makeCharacter(
  22127. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22128. {
  22129. front: {
  22130. height: math.unit(6 + 5 / 12, "feet"),
  22131. weight: math.unit(180, "lb"),
  22132. name: "Front",
  22133. image: {
  22134. source: "./media/characters/lexir/front.svg",
  22135. extra: 180 / 172,
  22136. bottom: 12 / 192
  22137. }
  22138. },
  22139. back: {
  22140. height: math.unit(6 + 5 / 12, "feet"),
  22141. weight: math.unit(180, "lb"),
  22142. name: "Back",
  22143. image: {
  22144. source: "./media/characters/lexir/back.svg",
  22145. extra: 183.84 / 175.5,
  22146. bottom: 3.1 / 187
  22147. }
  22148. },
  22149. },
  22150. [
  22151. {
  22152. name: "Very Smal",
  22153. height: math.unit(1, "nm")
  22154. },
  22155. {
  22156. name: "Normal",
  22157. height: math.unit(6 + 5 / 12, "feet"),
  22158. default: true
  22159. },
  22160. {
  22161. name: "Macro",
  22162. height: math.unit(1, "mile")
  22163. },
  22164. {
  22165. name: "Megamacro",
  22166. height: math.unit(50, "miles")
  22167. },
  22168. ]
  22169. ))
  22170. characterMakers.push(() => makeCharacter(
  22171. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22172. {
  22173. front: {
  22174. height: math.unit(1.5, "meters"),
  22175. weight: math.unit(100, "lb"),
  22176. name: "Front",
  22177. image: {
  22178. source: "./media/characters/maksio/front.svg",
  22179. extra: 1549 / 1531,
  22180. bottom: 123.7 / 1674.5429
  22181. }
  22182. },
  22183. back: {
  22184. height: math.unit(1.5, "meters"),
  22185. weight: math.unit(100, "lb"),
  22186. name: "Back",
  22187. image: {
  22188. source: "./media/characters/maksio/back.svg",
  22189. extra: 1541 / 1509,
  22190. bottom: 97 / 1639
  22191. }
  22192. },
  22193. hand: {
  22194. height: math.unit(0.621, "feet"),
  22195. name: "Hand",
  22196. image: {
  22197. source: "./media/characters/maksio/hand.svg"
  22198. }
  22199. },
  22200. foot: {
  22201. height: math.unit(1.611, "feet"),
  22202. name: "Foot",
  22203. image: {
  22204. source: "./media/characters/maksio/foot.svg"
  22205. }
  22206. },
  22207. },
  22208. [
  22209. {
  22210. name: "Shrunken",
  22211. height: math.unit(10, "cm")
  22212. },
  22213. {
  22214. name: "Normal",
  22215. height: math.unit(150, "cm"),
  22216. default: true
  22217. },
  22218. ]
  22219. ))
  22220. characterMakers.push(() => makeCharacter(
  22221. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22222. {
  22223. front: {
  22224. height: math.unit(100, "feet"),
  22225. name: "Front",
  22226. image: {
  22227. source: "./media/characters/erza-bear/front.svg",
  22228. extra: 2449 / 2390,
  22229. bottom: 46 / 2494
  22230. }
  22231. },
  22232. back: {
  22233. height: math.unit(100, "feet"),
  22234. name: "Back",
  22235. image: {
  22236. source: "./media/characters/erza-bear/back.svg",
  22237. extra: 2489 / 2430,
  22238. bottom: 85.4 / 2480
  22239. }
  22240. },
  22241. tail: {
  22242. height: math.unit(42, "feet"),
  22243. name: "Tail",
  22244. image: {
  22245. source: "./media/characters/erza-bear/tail.svg"
  22246. }
  22247. },
  22248. tongue: {
  22249. height: math.unit(8, "feet"),
  22250. name: "Tongue",
  22251. image: {
  22252. source: "./media/characters/erza-bear/tongue.svg"
  22253. }
  22254. },
  22255. dick: {
  22256. height: math.unit(10.5, "feet"),
  22257. name: "Dick",
  22258. image: {
  22259. source: "./media/characters/erza-bear/dick.svg"
  22260. }
  22261. },
  22262. dickVertical: {
  22263. height: math.unit(16.9, "feet"),
  22264. name: "Dick (Vertical)",
  22265. image: {
  22266. source: "./media/characters/erza-bear/dick-vertical.svg"
  22267. }
  22268. },
  22269. },
  22270. [
  22271. {
  22272. name: "Macro",
  22273. height: math.unit(100, "feet"),
  22274. default: true
  22275. },
  22276. ]
  22277. ))
  22278. characterMakers.push(() => makeCharacter(
  22279. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22280. {
  22281. front: {
  22282. height: math.unit(172, "cm"),
  22283. weight: math.unit(73, "kg"),
  22284. name: "Front",
  22285. image: {
  22286. source: "./media/characters/violet-flor/front.svg",
  22287. extra: 1530 / 1442,
  22288. bottom: 61.9 / 1588.8
  22289. }
  22290. },
  22291. back: {
  22292. height: math.unit(180, "cm"),
  22293. weight: math.unit(73, "kg"),
  22294. name: "Back",
  22295. image: {
  22296. source: "./media/characters/violet-flor/back.svg",
  22297. extra: 1692 / 1630,
  22298. bottom: 20 / 1712
  22299. }
  22300. },
  22301. },
  22302. [
  22303. {
  22304. name: "Normal",
  22305. height: math.unit(172, "cm"),
  22306. default: true
  22307. },
  22308. ]
  22309. ))
  22310. characterMakers.push(() => makeCharacter(
  22311. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22312. {
  22313. front: {
  22314. height: math.unit(6, "feet"),
  22315. weight: math.unit(220, "lb"),
  22316. name: "Front",
  22317. image: {
  22318. source: "./media/characters/lynn-rhea/front.svg",
  22319. extra: 310 / 273
  22320. }
  22321. },
  22322. back: {
  22323. height: math.unit(6, "feet"),
  22324. weight: math.unit(220, "lb"),
  22325. name: "Back",
  22326. image: {
  22327. source: "./media/characters/lynn-rhea/back.svg",
  22328. extra: 310 / 273
  22329. }
  22330. },
  22331. dicks: {
  22332. height: math.unit(0.9, "feet"),
  22333. name: "Dicks",
  22334. image: {
  22335. source: "./media/characters/lynn-rhea/dicks.svg"
  22336. }
  22337. },
  22338. slit: {
  22339. height: math.unit(0.4, "feet"),
  22340. name: "Slit",
  22341. image: {
  22342. source: "./media/characters/lynn-rhea/slit.svg"
  22343. }
  22344. },
  22345. },
  22346. [
  22347. {
  22348. name: "Micro",
  22349. height: math.unit(1, "inch")
  22350. },
  22351. {
  22352. name: "Macro",
  22353. height: math.unit(60, "feet"),
  22354. default: true
  22355. },
  22356. {
  22357. name: "Megamacro",
  22358. height: math.unit(2, "miles")
  22359. },
  22360. {
  22361. name: "Gigamacro",
  22362. height: math.unit(3, "earths")
  22363. },
  22364. {
  22365. name: "Galactic",
  22366. height: math.unit(0.8, "galaxies")
  22367. },
  22368. ]
  22369. ))
  22370. characterMakers.push(() => makeCharacter(
  22371. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22372. {
  22373. front: {
  22374. height: math.unit(1600, "feet"),
  22375. weight: math.unit(85758785169, "kg"),
  22376. name: "Front",
  22377. image: {
  22378. source: "./media/characters/valathos/front.svg",
  22379. extra: 1451 / 1339
  22380. }
  22381. },
  22382. },
  22383. [
  22384. {
  22385. name: "Macro",
  22386. height: math.unit(1600, "feet"),
  22387. default: true
  22388. },
  22389. ]
  22390. ))
  22391. characterMakers.push(() => makeCharacter(
  22392. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22393. {
  22394. front: {
  22395. height: math.unit(7 + 5 / 12, "feet"),
  22396. weight: math.unit(300, "lb"),
  22397. name: "Front",
  22398. image: {
  22399. source: "./media/characters/azula/front.svg",
  22400. extra: 3208 / 2880,
  22401. bottom: 80.2 / 3277
  22402. }
  22403. },
  22404. back: {
  22405. height: math.unit(7 + 5 / 12, "feet"),
  22406. weight: math.unit(300, "lb"),
  22407. name: "Back",
  22408. image: {
  22409. source: "./media/characters/azula/back.svg",
  22410. extra: 3169 / 2822,
  22411. bottom: 150.6 / 3321
  22412. }
  22413. },
  22414. },
  22415. [
  22416. {
  22417. name: "Normal",
  22418. height: math.unit(7 + 5 / 12, "feet"),
  22419. default: true
  22420. },
  22421. {
  22422. name: "Big",
  22423. height: math.unit(20, "feet")
  22424. },
  22425. ]
  22426. ))
  22427. characterMakers.push(() => makeCharacter(
  22428. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22429. {
  22430. front: {
  22431. height: math.unit(5 + 1 / 12, "feet"),
  22432. weight: math.unit(110, "lb"),
  22433. name: "Front",
  22434. image: {
  22435. source: "./media/characters/rupert/front.svg",
  22436. extra: 1549 / 1495,
  22437. bottom: 54.2 / 1604.4
  22438. }
  22439. },
  22440. },
  22441. [
  22442. {
  22443. name: "Normal",
  22444. height: math.unit(5 + 1 / 12, "feet"),
  22445. default: true
  22446. },
  22447. ]
  22448. ))
  22449. characterMakers.push(() => makeCharacter(
  22450. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22451. {
  22452. front: {
  22453. height: math.unit(8 + 4 / 12, "feet"),
  22454. weight: math.unit(350, "lb"),
  22455. name: "Front",
  22456. image: {
  22457. source: "./media/characters/sheera-castellar/front.svg",
  22458. extra: 1957 / 1894,
  22459. bottom: 26.97 / 1975.017
  22460. }
  22461. },
  22462. side: {
  22463. height: math.unit(8 + 4 / 12, "feet"),
  22464. weight: math.unit(350, "lb"),
  22465. name: "Side",
  22466. image: {
  22467. source: "./media/characters/sheera-castellar/side.svg",
  22468. extra: 1957 / 1894
  22469. }
  22470. },
  22471. back: {
  22472. height: math.unit(8 + 4 / 12, "feet"),
  22473. weight: math.unit(350, "lb"),
  22474. name: "Back",
  22475. image: {
  22476. source: "./media/characters/sheera-castellar/back.svg",
  22477. extra: 1957 / 1894
  22478. }
  22479. },
  22480. angled: {
  22481. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22482. weight: math.unit(350, "lb"),
  22483. name: "Angled",
  22484. image: {
  22485. source: "./media/characters/sheera-castellar/angled.svg",
  22486. extra: 1807 / 1707,
  22487. bottom: 68 / 1875
  22488. }
  22489. },
  22490. genitals: {
  22491. height: math.unit(2.2, "feet"),
  22492. name: "Genitals",
  22493. image: {
  22494. source: "./media/characters/sheera-castellar/genitals.svg"
  22495. }
  22496. },
  22497. },
  22498. [
  22499. {
  22500. name: "Normal",
  22501. height: math.unit(8 + 4 / 12, "feet")
  22502. },
  22503. {
  22504. name: "Macro",
  22505. height: math.unit(150, "feet"),
  22506. default: true
  22507. },
  22508. {
  22509. name: "Macro+",
  22510. height: math.unit(800, "feet")
  22511. },
  22512. ]
  22513. ))
  22514. characterMakers.push(() => makeCharacter(
  22515. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22516. {
  22517. front: {
  22518. height: math.unit(6, "feet"),
  22519. weight: math.unit(150, "lb"),
  22520. name: "Front",
  22521. image: {
  22522. source: "./media/characters/jaipur/front.svg",
  22523. extra: 3860 / 3731,
  22524. bottom: 287 / 4140
  22525. }
  22526. },
  22527. back: {
  22528. height: math.unit(6, "feet"),
  22529. weight: math.unit(150, "lb"),
  22530. name: "Back",
  22531. image: {
  22532. source: "./media/characters/jaipur/back.svg",
  22533. extra: 4060 / 3930,
  22534. bottom: 151 / 4200
  22535. }
  22536. },
  22537. },
  22538. [
  22539. {
  22540. name: "Normal",
  22541. height: math.unit(1.85, "meters"),
  22542. default: true
  22543. },
  22544. {
  22545. name: "Macro",
  22546. height: math.unit(150, "meters")
  22547. },
  22548. {
  22549. name: "Macro+",
  22550. height: math.unit(0.5, "miles")
  22551. },
  22552. {
  22553. name: "Macro++",
  22554. height: math.unit(2.5, "miles")
  22555. },
  22556. {
  22557. name: "Macro+++",
  22558. height: math.unit(12, "miles")
  22559. },
  22560. {
  22561. name: "Macro++++",
  22562. height: math.unit(120, "miles")
  22563. },
  22564. {
  22565. name: "Macro+++++",
  22566. height: math.unit(1200, "miles")
  22567. },
  22568. ]
  22569. ))
  22570. characterMakers.push(() => makeCharacter(
  22571. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22572. {
  22573. front: {
  22574. height: math.unit(6, "feet"),
  22575. weight: math.unit(150, "lb"),
  22576. name: "Front",
  22577. image: {
  22578. source: "./media/characters/sheila-wolf/front.svg",
  22579. extra: 1931 / 1808,
  22580. bottom: 29.5 / 1960
  22581. }
  22582. },
  22583. dick: {
  22584. height: math.unit(1.464, "feet"),
  22585. name: "Dick",
  22586. image: {
  22587. source: "./media/characters/sheila-wolf/dick.svg"
  22588. }
  22589. },
  22590. muzzle: {
  22591. height: math.unit(0.513, "feet"),
  22592. name: "Muzzle",
  22593. image: {
  22594. source: "./media/characters/sheila-wolf/muzzle.svg"
  22595. }
  22596. },
  22597. },
  22598. [
  22599. {
  22600. name: "Macro",
  22601. height: math.unit(70, "feet"),
  22602. default: true
  22603. },
  22604. ]
  22605. ))
  22606. characterMakers.push(() => makeCharacter(
  22607. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22608. {
  22609. front: {
  22610. height: math.unit(32, "meters"),
  22611. weight: math.unit(300000, "kg"),
  22612. name: "Front",
  22613. image: {
  22614. source: "./media/characters/almor/front.svg",
  22615. extra: 1408 / 1322,
  22616. bottom: 94.6 / 1506.5
  22617. }
  22618. },
  22619. },
  22620. [
  22621. {
  22622. name: "Macro",
  22623. height: math.unit(32, "meters"),
  22624. default: true
  22625. },
  22626. ]
  22627. ))
  22628. characterMakers.push(() => makeCharacter(
  22629. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22630. {
  22631. front: {
  22632. height: math.unit(7, "feet"),
  22633. weight: math.unit(200, "lb"),
  22634. name: "Front",
  22635. image: {
  22636. source: "./media/characters/silver/front.svg",
  22637. extra: 472.1 / 450.5,
  22638. bottom: 26.5 / 499.424
  22639. }
  22640. },
  22641. },
  22642. [
  22643. {
  22644. name: "Normal",
  22645. height: math.unit(7, "feet"),
  22646. default: true
  22647. },
  22648. {
  22649. name: "Macro",
  22650. height: math.unit(800, "feet")
  22651. },
  22652. {
  22653. name: "Megamacro",
  22654. height: math.unit(250, "miles")
  22655. },
  22656. ]
  22657. ))
  22658. characterMakers.push(() => makeCharacter(
  22659. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22660. {
  22661. front: {
  22662. height: math.unit(6, "feet"),
  22663. weight: math.unit(150, "lb"),
  22664. name: "Front",
  22665. image: {
  22666. source: "./media/characters/pliskin/front.svg",
  22667. extra: 1469 / 1359,
  22668. bottom: 70 / 1540
  22669. }
  22670. },
  22671. },
  22672. [
  22673. {
  22674. name: "Micro",
  22675. height: math.unit(3, "inches")
  22676. },
  22677. {
  22678. name: "Normal",
  22679. height: math.unit(5 + 11 / 12, "feet"),
  22680. default: true
  22681. },
  22682. {
  22683. name: "Macro",
  22684. height: math.unit(120, "feet")
  22685. },
  22686. ]
  22687. ))
  22688. characterMakers.push(() => makeCharacter(
  22689. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22690. {
  22691. front: {
  22692. height: math.unit(6, "feet"),
  22693. weight: math.unit(150, "lb"),
  22694. name: "Front",
  22695. image: {
  22696. source: "./media/characters/sammy/front.svg",
  22697. extra: 1193 / 1089,
  22698. bottom: 30.5 / 1226
  22699. }
  22700. },
  22701. },
  22702. [
  22703. {
  22704. name: "Macro",
  22705. height: math.unit(1700, "feet"),
  22706. default: true
  22707. },
  22708. {
  22709. name: "Examacro",
  22710. height: math.unit(2.5e9, "lightyears")
  22711. },
  22712. ]
  22713. ))
  22714. characterMakers.push(() => makeCharacter(
  22715. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22716. {
  22717. front: {
  22718. height: math.unit(21, "meters"),
  22719. weight: math.unit(12, "tonnes"),
  22720. name: "Front",
  22721. image: {
  22722. source: "./media/characters/kuru/front.svg",
  22723. extra: 4301 / 3785,
  22724. bottom: 371.3 / 4691
  22725. }
  22726. },
  22727. },
  22728. [
  22729. {
  22730. name: "Macro",
  22731. height: math.unit(21, "meters"),
  22732. default: true
  22733. },
  22734. ]
  22735. ))
  22736. characterMakers.push(() => makeCharacter(
  22737. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22738. {
  22739. front: {
  22740. height: math.unit(23, "meters"),
  22741. weight: math.unit(12.2, "tonnes"),
  22742. name: "Front",
  22743. image: {
  22744. source: "./media/characters/rakka/front.svg",
  22745. extra: 4670 / 4169,
  22746. bottom: 301 / 4968.7
  22747. }
  22748. },
  22749. },
  22750. [
  22751. {
  22752. name: "Macro",
  22753. height: math.unit(23, "meters"),
  22754. default: true
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Rhys (Feline)", 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/rhys-feline/front.svg",
  22767. extra: 2488 / 2308,
  22768. bottom: 35.67 / 2519.19
  22769. }
  22770. },
  22771. },
  22772. [
  22773. {
  22774. name: "Really Small",
  22775. height: math.unit(1, "nm")
  22776. },
  22777. {
  22778. name: "Micro",
  22779. height: math.unit(4, "inches")
  22780. },
  22781. {
  22782. name: "Normal",
  22783. height: math.unit(4 + 10 / 12, "feet"),
  22784. default: true
  22785. },
  22786. {
  22787. name: "Macro",
  22788. height: math.unit(100, "feet")
  22789. },
  22790. {
  22791. name: "Megamacto",
  22792. height: math.unit(50, "miles")
  22793. },
  22794. ]
  22795. ))
  22796. characterMakers.push(() => makeCharacter(
  22797. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22798. {
  22799. side: {
  22800. height: math.unit(30, "feet"),
  22801. weight: math.unit(35000, "kg"),
  22802. name: "Side",
  22803. image: {
  22804. source: "./media/characters/alydar/side.svg",
  22805. extra: 234 / 222,
  22806. bottom: 6.5 / 241
  22807. }
  22808. },
  22809. front: {
  22810. height: math.unit(30, "feet"),
  22811. weight: math.unit(35000, "kg"),
  22812. name: "Front",
  22813. image: {
  22814. source: "./media/characters/alydar/front.svg",
  22815. extra: 223.37 / 210.2,
  22816. bottom: 22.3 / 246.76
  22817. }
  22818. },
  22819. top: {
  22820. height: math.unit(64.54, "feet"),
  22821. weight: math.unit(35000, "kg"),
  22822. name: "Top",
  22823. image: {
  22824. source: "./media/characters/alydar/top.svg"
  22825. }
  22826. },
  22827. anthro: {
  22828. height: math.unit(30, "feet"),
  22829. weight: math.unit(9000, "kg"),
  22830. name: "Anthro",
  22831. image: {
  22832. source: "./media/characters/alydar/anthro.svg",
  22833. extra: 432 / 421,
  22834. bottom: 7.18 / 440
  22835. }
  22836. },
  22837. maw: {
  22838. height: math.unit(11.693, "feet"),
  22839. name: "Maw",
  22840. image: {
  22841. source: "./media/characters/alydar/maw.svg"
  22842. }
  22843. },
  22844. head: {
  22845. height: math.unit(11.693, "feet"),
  22846. name: "Head",
  22847. image: {
  22848. source: "./media/characters/alydar/head.svg"
  22849. }
  22850. },
  22851. headAlt: {
  22852. height: math.unit(12.861, "feet"),
  22853. name: "Head (Alt)",
  22854. image: {
  22855. source: "./media/characters/alydar/head-alt.svg"
  22856. }
  22857. },
  22858. wing: {
  22859. height: math.unit(20.712, "feet"),
  22860. name: "Wing",
  22861. image: {
  22862. source: "./media/characters/alydar/wing.svg"
  22863. }
  22864. },
  22865. wingFeather: {
  22866. height: math.unit(9.662, "feet"),
  22867. name: "Wing Feather",
  22868. image: {
  22869. source: "./media/characters/alydar/wing-feather.svg"
  22870. }
  22871. },
  22872. countourFeather: {
  22873. height: math.unit(4.154, "feet"),
  22874. name: "Contour Feather",
  22875. image: {
  22876. source: "./media/characters/alydar/contour-feather.svg"
  22877. }
  22878. },
  22879. },
  22880. [
  22881. {
  22882. name: "Diplomatic",
  22883. height: math.unit(13, "feet"),
  22884. default: true
  22885. },
  22886. {
  22887. name: "Small",
  22888. height: math.unit(30, "feet")
  22889. },
  22890. {
  22891. name: "Normal",
  22892. height: math.unit(95, "feet"),
  22893. default: true
  22894. },
  22895. {
  22896. name: "Large",
  22897. height: math.unit(285, "feet")
  22898. },
  22899. {
  22900. name: "Incomprehensible",
  22901. height: math.unit(450, "megameters")
  22902. },
  22903. ]
  22904. ))
  22905. characterMakers.push(() => makeCharacter(
  22906. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22907. {
  22908. side: {
  22909. height: math.unit(11, "feet"),
  22910. weight: math.unit(1750, "kg"),
  22911. name: "Side",
  22912. image: {
  22913. source: "./media/characters/selicia/side.svg",
  22914. extra: 440 / 396,
  22915. bottom: 24.8 / 465.979
  22916. }
  22917. },
  22918. maw: {
  22919. height: math.unit(4.665, "feet"),
  22920. name: "Maw",
  22921. image: {
  22922. source: "./media/characters/selicia/maw.svg"
  22923. }
  22924. },
  22925. },
  22926. [
  22927. {
  22928. name: "Normal",
  22929. height: math.unit(11, "feet"),
  22930. default: true
  22931. },
  22932. ]
  22933. ))
  22934. characterMakers.push(() => makeCharacter(
  22935. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22936. {
  22937. side: {
  22938. height: math.unit(2 + 6 / 12, "feet"),
  22939. weight: math.unit(30, "lb"),
  22940. name: "Side",
  22941. image: {
  22942. source: "./media/characters/layla/side.svg",
  22943. extra: 244 / 188,
  22944. bottom: 18.2 / 262.1
  22945. }
  22946. },
  22947. back: {
  22948. height: math.unit(2 + 6 / 12, "feet"),
  22949. weight: math.unit(30, "lb"),
  22950. name: "Back",
  22951. image: {
  22952. source: "./media/characters/layla/back.svg",
  22953. extra: 308 / 241.5,
  22954. bottom: 8.9 / 316.8
  22955. }
  22956. },
  22957. cumming: {
  22958. height: math.unit(2 + 6 / 12, "feet"),
  22959. weight: math.unit(30, "lb"),
  22960. name: "Cumming",
  22961. image: {
  22962. source: "./media/characters/layla/cumming.svg",
  22963. extra: 342 / 279,
  22964. bottom: 595 / 938
  22965. }
  22966. },
  22967. dickFlaccid: {
  22968. height: math.unit(2.595, "feet"),
  22969. name: "Flaccid Genitals",
  22970. image: {
  22971. source: "./media/characters/layla/dick-flaccid.svg"
  22972. }
  22973. },
  22974. dickErect: {
  22975. height: math.unit(2.359, "feet"),
  22976. name: "Erect Genitals",
  22977. image: {
  22978. source: "./media/characters/layla/dick-erect.svg"
  22979. }
  22980. },
  22981. },
  22982. [
  22983. {
  22984. name: "Micro",
  22985. height: math.unit(1, "inch")
  22986. },
  22987. {
  22988. name: "Small",
  22989. height: math.unit(1, "foot")
  22990. },
  22991. {
  22992. name: "Normal",
  22993. height: math.unit(2 + 6 / 12, "feet"),
  22994. default: true
  22995. },
  22996. {
  22997. name: "Macro",
  22998. height: math.unit(200, "feet")
  22999. },
  23000. {
  23001. name: "Megamacro",
  23002. height: math.unit(1000, "miles")
  23003. },
  23004. {
  23005. name: "Planetary",
  23006. height: math.unit(8000, "miles")
  23007. },
  23008. {
  23009. name: "True Layla",
  23010. height: math.unit(200000 * 7, "multiverses")
  23011. },
  23012. ]
  23013. ))
  23014. characterMakers.push(() => makeCharacter(
  23015. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23016. {
  23017. back: {
  23018. height: math.unit(10.5, "feet"),
  23019. weight: math.unit(800, "lb"),
  23020. name: "Back",
  23021. image: {
  23022. source: "./media/characters/knox/back.svg",
  23023. extra: 1486 / 1089,
  23024. bottom: 107 / 1601.4
  23025. }
  23026. },
  23027. side: {
  23028. height: math.unit(10.5, "feet"),
  23029. weight: math.unit(800, "lb"),
  23030. name: "Side",
  23031. image: {
  23032. source: "./media/characters/knox/side.svg",
  23033. extra: 244 / 218,
  23034. bottom: 14 / 260
  23035. }
  23036. },
  23037. },
  23038. [
  23039. {
  23040. name: "Compact",
  23041. height: math.unit(10.5, "feet"),
  23042. default: true
  23043. },
  23044. {
  23045. name: "Dynamax",
  23046. height: math.unit(210, "feet")
  23047. },
  23048. {
  23049. name: "Full Macro",
  23050. height: math.unit(850, "feet")
  23051. },
  23052. ]
  23053. ))
  23054. characterMakers.push(() => makeCharacter(
  23055. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23056. {
  23057. front: {
  23058. height: math.unit(6, "feet"),
  23059. weight: math.unit(152, "lb"),
  23060. name: "Front",
  23061. image: {
  23062. source: "./media/characters/shin-pikachu/front.svg",
  23063. extra: 1574 / 1480,
  23064. bottom: 53.3 / 1626
  23065. }
  23066. },
  23067. hand: {
  23068. height: math.unit(1.055, "feet"),
  23069. name: "Hand",
  23070. image: {
  23071. source: "./media/characters/shin-pikachu/hand.svg"
  23072. }
  23073. },
  23074. foot: {
  23075. height: math.unit(1.1, "feet"),
  23076. name: "Foot",
  23077. image: {
  23078. source: "./media/characters/shin-pikachu/foot.svg"
  23079. }
  23080. },
  23081. collar: {
  23082. height: math.unit(0.386, "feet"),
  23083. name: "Collar",
  23084. image: {
  23085. source: "./media/characters/shin-pikachu/collar.svg"
  23086. }
  23087. },
  23088. },
  23089. [
  23090. {
  23091. name: "Smallest",
  23092. height: math.unit(0.5, "inches")
  23093. },
  23094. {
  23095. name: "Micro",
  23096. height: math.unit(6, "inches")
  23097. },
  23098. {
  23099. name: "Normal",
  23100. height: math.unit(6, "feet"),
  23101. default: true
  23102. },
  23103. {
  23104. name: "Macro",
  23105. height: math.unit(150, "feet")
  23106. },
  23107. ]
  23108. ))
  23109. characterMakers.push(() => makeCharacter(
  23110. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23111. {
  23112. front: {
  23113. height: math.unit(28, "feet"),
  23114. weight: math.unit(10500, "lb"),
  23115. name: "Front",
  23116. image: {
  23117. source: "./media/characters/kayda/front.svg",
  23118. extra: 1536 / 1428,
  23119. bottom: 68.7 / 1603
  23120. }
  23121. },
  23122. back: {
  23123. height: math.unit(28, "feet"),
  23124. weight: math.unit(10500, "lb"),
  23125. name: "Back",
  23126. image: {
  23127. source: "./media/characters/kayda/back.svg",
  23128. extra: 1557 / 1464,
  23129. bottom: 39.5 / 1597.49
  23130. }
  23131. },
  23132. dick: {
  23133. height: math.unit(3.858, "feet"),
  23134. name: "Dick",
  23135. image: {
  23136. source: "./media/characters/kayda/dick.svg"
  23137. }
  23138. },
  23139. },
  23140. [
  23141. {
  23142. name: "Macro",
  23143. height: math.unit(28, "feet"),
  23144. default: true
  23145. },
  23146. ]
  23147. ))
  23148. characterMakers.push(() => makeCharacter(
  23149. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23150. {
  23151. front: {
  23152. height: math.unit(10 + 11 / 12, "feet"),
  23153. weight: math.unit(1400, "lb"),
  23154. name: "Front",
  23155. image: {
  23156. source: "./media/characters/brian/front.svg",
  23157. extra: 737 / 692,
  23158. bottom: 55.4 / 785
  23159. }
  23160. },
  23161. },
  23162. [
  23163. {
  23164. name: "Normal",
  23165. height: math.unit(10 + 11 / 12, "feet"),
  23166. default: true
  23167. },
  23168. ]
  23169. ))
  23170. characterMakers.push(() => makeCharacter(
  23171. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23172. {
  23173. front: {
  23174. height: math.unit(5 + 8 / 12, "feet"),
  23175. weight: math.unit(140, "lb"),
  23176. name: "Front",
  23177. image: {
  23178. source: "./media/characters/khemri/front.svg",
  23179. extra: 4780 / 4059,
  23180. bottom: 80.1 / 4859.25
  23181. }
  23182. },
  23183. },
  23184. [
  23185. {
  23186. name: "Micro",
  23187. height: math.unit(6, "inches")
  23188. },
  23189. {
  23190. name: "Normal",
  23191. height: math.unit(5 + 8 / 12, "feet"),
  23192. default: true
  23193. },
  23194. ]
  23195. ))
  23196. characterMakers.push(() => makeCharacter(
  23197. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23198. {
  23199. front: {
  23200. height: math.unit(13, "feet"),
  23201. weight: math.unit(1700, "lb"),
  23202. name: "Front",
  23203. image: {
  23204. source: "./media/characters/felix-braveheart/front.svg",
  23205. extra: 1222 / 1157,
  23206. bottom: 53.2 / 1280
  23207. }
  23208. },
  23209. back: {
  23210. height: math.unit(13, "feet"),
  23211. weight: math.unit(1700, "lb"),
  23212. name: "Back",
  23213. image: {
  23214. source: "./media/characters/felix-braveheart/back.svg",
  23215. extra: 1277 / 1203,
  23216. bottom: 50.2 / 1327
  23217. }
  23218. },
  23219. feral: {
  23220. height: math.unit(6, "feet"),
  23221. weight: math.unit(400, "lb"),
  23222. name: "Feral",
  23223. image: {
  23224. source: "./media/characters/felix-braveheart/feral.svg",
  23225. extra: 682 / 625,
  23226. bottom: 6.9 / 688
  23227. }
  23228. },
  23229. },
  23230. [
  23231. {
  23232. name: "Normal",
  23233. height: math.unit(13, "feet"),
  23234. default: true
  23235. },
  23236. ]
  23237. ))
  23238. characterMakers.push(() => makeCharacter(
  23239. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23240. {
  23241. side: {
  23242. height: math.unit(5 + 11 / 12, "feet"),
  23243. weight: math.unit(1400, "lb"),
  23244. name: "Side",
  23245. image: {
  23246. source: "./media/characters/shadow-blade/side.svg",
  23247. extra: 1726 / 1267,
  23248. bottom: 58.4 / 1785
  23249. }
  23250. },
  23251. },
  23252. [
  23253. {
  23254. name: "Normal",
  23255. height: math.unit(5 + 11 / 12, "feet"),
  23256. default: true
  23257. },
  23258. ]
  23259. ))
  23260. characterMakers.push(() => makeCharacter(
  23261. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23262. {
  23263. front: {
  23264. height: math.unit(1 + 6 / 12, "feet"),
  23265. weight: math.unit(25, "lb"),
  23266. name: "Front",
  23267. image: {
  23268. source: "./media/characters/karla-halldor/front.svg",
  23269. extra: 1459 / 1383,
  23270. bottom: 12 / 1472
  23271. }
  23272. },
  23273. },
  23274. [
  23275. {
  23276. name: "Normal",
  23277. height: math.unit(1 + 6 / 12, "feet"),
  23278. default: true
  23279. },
  23280. ]
  23281. ))
  23282. characterMakers.push(() => makeCharacter(
  23283. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23284. {
  23285. front: {
  23286. height: math.unit(6 + 2 / 12, "feet"),
  23287. weight: math.unit(160, "lb"),
  23288. name: "Front",
  23289. image: {
  23290. source: "./media/characters/ariam/front.svg",
  23291. extra: 714 / 617,
  23292. bottom: 23.4 / 737,
  23293. }
  23294. },
  23295. squatting: {
  23296. height: math.unit(4.1, "feet"),
  23297. weight: math.unit(160, "lb"),
  23298. name: "Squatting",
  23299. image: {
  23300. source: "./media/characters/ariam/squatting.svg",
  23301. extra: 2617 / 2112,
  23302. bottom: 61.2 / 2681,
  23303. }
  23304. },
  23305. },
  23306. [
  23307. {
  23308. name: "Normal",
  23309. height: math.unit(6 + 2 / 12, "feet"),
  23310. default: true
  23311. },
  23312. {
  23313. name: "Normal+",
  23314. height: math.unit(4, "meters")
  23315. },
  23316. {
  23317. name: "Macro",
  23318. height: math.unit(50, "meters")
  23319. },
  23320. {
  23321. name: "Macro+",
  23322. height: math.unit(100, "meters")
  23323. },
  23324. {
  23325. name: "Megamacro",
  23326. height: math.unit(20, "km")
  23327. },
  23328. ]
  23329. ))
  23330. characterMakers.push(() => makeCharacter(
  23331. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23332. {
  23333. front: {
  23334. height: math.unit(1.67, "meters"),
  23335. weight: math.unit(140, "lb"),
  23336. name: "Front",
  23337. image: {
  23338. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23339. extra: 438 / 410,
  23340. bottom: 0.75 / 439
  23341. }
  23342. },
  23343. },
  23344. [
  23345. {
  23346. name: "Shrunken",
  23347. height: math.unit(7.6, "cm")
  23348. },
  23349. {
  23350. name: "Human Scale",
  23351. height: math.unit(1.67, "meters")
  23352. },
  23353. {
  23354. name: "Wolxi Scale",
  23355. height: math.unit(36.7, "meters"),
  23356. default: true
  23357. },
  23358. ]
  23359. ))
  23360. characterMakers.push(() => makeCharacter(
  23361. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23362. {
  23363. front: {
  23364. height: math.unit(1.73, "meters"),
  23365. weight: math.unit(240, "lb"),
  23366. name: "Front",
  23367. image: {
  23368. source: "./media/characters/izue-two-mothers/front.svg",
  23369. extra: 469 / 437,
  23370. bottom: 1.24 / 470.6
  23371. }
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Shrunken",
  23377. height: math.unit(7.86, "cm")
  23378. },
  23379. {
  23380. name: "Human Scale",
  23381. height: math.unit(1.73, "meters")
  23382. },
  23383. {
  23384. name: "Wolxi Scale",
  23385. height: math.unit(38, "meters"),
  23386. default: true
  23387. },
  23388. ]
  23389. ))
  23390. characterMakers.push(() => makeCharacter(
  23391. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23392. {
  23393. front: {
  23394. height: math.unit(1.55, "meters"),
  23395. weight: math.unit(120, "lb"),
  23396. name: "Front",
  23397. image: {
  23398. source: "./media/characters/teeku-love-shack/front.svg",
  23399. extra: 387 / 362,
  23400. bottom: 1.51 / 388
  23401. }
  23402. },
  23403. },
  23404. [
  23405. {
  23406. name: "Shrunken",
  23407. height: math.unit(7, "cm")
  23408. },
  23409. {
  23410. name: "Human Scale",
  23411. height: math.unit(1.55, "meters")
  23412. },
  23413. {
  23414. name: "Wolxi Scale",
  23415. height: math.unit(34.1, "meters"),
  23416. default: true
  23417. },
  23418. ]
  23419. ))
  23420. characterMakers.push(() => makeCharacter(
  23421. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23422. {
  23423. front: {
  23424. height: math.unit(1.83, "meters"),
  23425. weight: math.unit(135, "lb"),
  23426. name: "Front",
  23427. image: {
  23428. source: "./media/characters/dejma-the-red/front.svg",
  23429. extra: 480 / 458,
  23430. bottom: 1.8 / 482
  23431. }
  23432. },
  23433. },
  23434. [
  23435. {
  23436. name: "Shrunken",
  23437. height: math.unit(8.3, "cm")
  23438. },
  23439. {
  23440. name: "Human Scale",
  23441. height: math.unit(1.83, "meters")
  23442. },
  23443. {
  23444. name: "Wolxi Scale",
  23445. height: math.unit(40, "meters"),
  23446. default: true
  23447. },
  23448. ]
  23449. ))
  23450. characterMakers.push(() => makeCharacter(
  23451. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23452. {
  23453. front: {
  23454. height: math.unit(1.78, "meters"),
  23455. weight: math.unit(65, "kg"),
  23456. name: "Front",
  23457. image: {
  23458. source: "./media/characters/aki/front.svg",
  23459. extra: 452 / 415
  23460. }
  23461. },
  23462. frontNsfw: {
  23463. height: math.unit(1.78, "meters"),
  23464. weight: math.unit(65, "kg"),
  23465. name: "Front (NSFW)",
  23466. image: {
  23467. source: "./media/characters/aki/front-nsfw.svg",
  23468. extra: 452 / 415
  23469. }
  23470. },
  23471. back: {
  23472. height: math.unit(1.78, "meters"),
  23473. weight: math.unit(65, "kg"),
  23474. name: "Back",
  23475. image: {
  23476. source: "./media/characters/aki/back.svg",
  23477. extra: 452 / 415
  23478. }
  23479. },
  23480. rump: {
  23481. height: math.unit(2.05, "feet"),
  23482. name: "Rump",
  23483. image: {
  23484. source: "./media/characters/aki/rump.svg"
  23485. }
  23486. },
  23487. dick: {
  23488. height: math.unit(0.95, "feet"),
  23489. name: "Dick",
  23490. image: {
  23491. source: "./media/characters/aki/dick.svg"
  23492. }
  23493. },
  23494. },
  23495. [
  23496. {
  23497. name: "Micro",
  23498. height: math.unit(15, "cm")
  23499. },
  23500. {
  23501. name: "Normal",
  23502. height: math.unit(178, "cm"),
  23503. default: true
  23504. },
  23505. {
  23506. name: "Macro",
  23507. height: math.unit(214, "m")
  23508. },
  23509. {
  23510. name: "Macro+",
  23511. height: math.unit(534, "m")
  23512. },
  23513. ]
  23514. ))
  23515. characterMakers.push(() => makeCharacter(
  23516. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23517. {
  23518. front: {
  23519. height: math.unit(5 + 5 / 12, "feet"),
  23520. weight: math.unit(120, "lb"),
  23521. name: "Front",
  23522. image: {
  23523. source: "./media/characters/ari/front.svg",
  23524. extra: 714.5 / 682,
  23525. bottom: 8 / 722.5
  23526. }
  23527. },
  23528. },
  23529. [
  23530. {
  23531. name: "Normal",
  23532. height: math.unit(5 + 5 / 12, "feet")
  23533. },
  23534. {
  23535. name: "Macro",
  23536. height: math.unit(100, "feet"),
  23537. default: true
  23538. },
  23539. {
  23540. name: "Megamacro",
  23541. height: math.unit(100, "miles")
  23542. },
  23543. {
  23544. name: "Gigamacro",
  23545. height: math.unit(80000, "miles")
  23546. },
  23547. ]
  23548. ))
  23549. characterMakers.push(() => makeCharacter(
  23550. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23551. {
  23552. side: {
  23553. height: math.unit(9, "feet"),
  23554. weight: math.unit(400, "kg"),
  23555. name: "Side",
  23556. image: {
  23557. source: "./media/characters/bolt/side.svg",
  23558. extra: 1126 / 896,
  23559. bottom: 60 / 1187.3,
  23560. }
  23561. },
  23562. },
  23563. [
  23564. {
  23565. name: "Micro",
  23566. height: math.unit(5, "inches")
  23567. },
  23568. {
  23569. name: "Normal",
  23570. height: math.unit(9, "feet"),
  23571. default: true
  23572. },
  23573. {
  23574. name: "Macro",
  23575. height: math.unit(700, "feet")
  23576. },
  23577. {
  23578. name: "Max Size",
  23579. height: math.unit(1.52e22, "yottameters")
  23580. },
  23581. ]
  23582. ))
  23583. characterMakers.push(() => makeCharacter(
  23584. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23585. {
  23586. front: {
  23587. height: math.unit(4.53, "meters"),
  23588. weight: math.unit(3, "tons"),
  23589. name: "Front",
  23590. image: {
  23591. source: "./media/characters/draekon-sylviar/front.svg",
  23592. extra: 1228 / 1068,
  23593. bottom: 41 / 1270
  23594. }
  23595. },
  23596. tail: {
  23597. height: math.unit(1.772, "meter"),
  23598. name: "Tail",
  23599. image: {
  23600. source: "./media/characters/draekon-sylviar/tail.svg"
  23601. }
  23602. },
  23603. head: {
  23604. height: math.unit(1.331, "meter"),
  23605. name: "Head",
  23606. image: {
  23607. source: "./media/characters/draekon-sylviar/head.svg"
  23608. }
  23609. },
  23610. hand: {
  23611. height: math.unit(0.564, "meter"),
  23612. name: "Hand",
  23613. image: {
  23614. source: "./media/characters/draekon-sylviar/hand.svg"
  23615. }
  23616. },
  23617. foot: {
  23618. height: math.unit(0.621, "meter"),
  23619. name: "Foot",
  23620. image: {
  23621. source: "./media/characters/draekon-sylviar/foot.svg",
  23622. bottom: 32 / 324
  23623. }
  23624. },
  23625. dick: {
  23626. height: math.unit(61, "cm"),
  23627. name: "Dick",
  23628. image: {
  23629. source: "./media/characters/draekon-sylviar/dick.svg"
  23630. }
  23631. },
  23632. dickseparated: {
  23633. height: math.unit(61, "cm"),
  23634. name: "Dick-separated",
  23635. image: {
  23636. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23637. }
  23638. },
  23639. },
  23640. [
  23641. {
  23642. name: "Small",
  23643. height: math.unit(4.53 / 2, "meters"),
  23644. default: true
  23645. },
  23646. {
  23647. name: "Normal",
  23648. height: math.unit(4.53, "meters"),
  23649. default: true
  23650. },
  23651. {
  23652. name: "Large",
  23653. height: math.unit(4.53 * 2, "meters"),
  23654. },
  23655. ]
  23656. ))
  23657. characterMakers.push(() => makeCharacter(
  23658. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23659. {
  23660. front: {
  23661. height: math.unit(6 + 2 / 12, "feet"),
  23662. weight: math.unit(180, "lb"),
  23663. name: "Front",
  23664. image: {
  23665. source: "./media/characters/brawler/front.svg",
  23666. extra: 3301 / 3027,
  23667. bottom: 138 / 3439
  23668. }
  23669. },
  23670. },
  23671. [
  23672. {
  23673. name: "Normal",
  23674. height: math.unit(6 + 2 / 12, "feet"),
  23675. default: true
  23676. },
  23677. ]
  23678. ))
  23679. characterMakers.push(() => makeCharacter(
  23680. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23681. {
  23682. front: {
  23683. height: math.unit(11, "feet"),
  23684. weight: math.unit(1000, "lb"),
  23685. name: "Front",
  23686. image: {
  23687. source: "./media/characters/alex/front.svg",
  23688. bottom: 44.5 / 620
  23689. }
  23690. },
  23691. },
  23692. [
  23693. {
  23694. name: "Micro",
  23695. height: math.unit(5, "inches")
  23696. },
  23697. {
  23698. name: "Normal",
  23699. height: math.unit(11, "feet"),
  23700. default: true
  23701. },
  23702. {
  23703. name: "Macro",
  23704. height: math.unit(9.5e9, "feet")
  23705. },
  23706. {
  23707. name: "Max Size",
  23708. height: math.unit(1.4e283, "yottameters")
  23709. },
  23710. ]
  23711. ))
  23712. characterMakers.push(() => makeCharacter(
  23713. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23714. {
  23715. female: {
  23716. height: math.unit(29.9, "m"),
  23717. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23718. name: "Female",
  23719. image: {
  23720. source: "./media/characters/zenari/female.svg",
  23721. extra: 3281.6 / 3217,
  23722. bottom: 72.2 / 3353
  23723. }
  23724. },
  23725. male: {
  23726. height: math.unit(27.7, "m"),
  23727. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23728. name: "Male",
  23729. image: {
  23730. source: "./media/characters/zenari/male.svg",
  23731. extra: 3008 / 2991,
  23732. bottom: 54.6 / 3069
  23733. }
  23734. },
  23735. },
  23736. [
  23737. {
  23738. name: "Macro",
  23739. height: math.unit(29.7, "meters"),
  23740. default: true
  23741. },
  23742. ]
  23743. ))
  23744. characterMakers.push(() => makeCharacter(
  23745. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23746. {
  23747. female: {
  23748. height: math.unit(23.8, "m"),
  23749. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23750. name: "Female",
  23751. image: {
  23752. source: "./media/characters/mactarian/female.svg",
  23753. extra: 2662 / 2569,
  23754. bottom: 73 / 2736
  23755. }
  23756. },
  23757. male: {
  23758. height: math.unit(23.8, "m"),
  23759. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23760. name: "Male",
  23761. image: {
  23762. source: "./media/characters/mactarian/male.svg",
  23763. extra: 2673 / 2600,
  23764. bottom: 76 / 2750
  23765. }
  23766. },
  23767. },
  23768. [
  23769. {
  23770. name: "Macro",
  23771. height: math.unit(23.8, "meters"),
  23772. default: true
  23773. },
  23774. ]
  23775. ))
  23776. characterMakers.push(() => makeCharacter(
  23777. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23778. {
  23779. female: {
  23780. height: math.unit(19.3, "m"),
  23781. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23782. name: "Female",
  23783. image: {
  23784. source: "./media/characters/umok/female.svg",
  23785. extra: 2186 / 2078,
  23786. bottom: 87 / 2277
  23787. }
  23788. },
  23789. male: {
  23790. height: math.unit(19.5, "m"),
  23791. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23792. name: "Male",
  23793. image: {
  23794. source: "./media/characters/umok/male.svg",
  23795. extra: 2233 / 2140,
  23796. bottom: 24.4 / 2258
  23797. }
  23798. },
  23799. },
  23800. [
  23801. {
  23802. name: "Macro",
  23803. height: math.unit(19.3, "meters"),
  23804. default: true
  23805. },
  23806. ]
  23807. ))
  23808. characterMakers.push(() => makeCharacter(
  23809. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23810. {
  23811. female: {
  23812. height: math.unit(26.15, "m"),
  23813. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23814. name: "Female",
  23815. image: {
  23816. source: "./media/characters/joraxian/female.svg",
  23817. extra: 2912 / 2824,
  23818. bottom: 36 / 2956
  23819. }
  23820. },
  23821. male: {
  23822. height: math.unit(25.4, "m"),
  23823. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23824. name: "Male",
  23825. image: {
  23826. source: "./media/characters/joraxian/male.svg",
  23827. extra: 2877 / 2721,
  23828. bottom: 82 / 2967
  23829. }
  23830. },
  23831. },
  23832. [
  23833. {
  23834. name: "Macro",
  23835. height: math.unit(26.15, "meters"),
  23836. default: true
  23837. },
  23838. ]
  23839. ))
  23840. characterMakers.push(() => makeCharacter(
  23841. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23842. {
  23843. female: {
  23844. height: math.unit(21.6, "m"),
  23845. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23846. name: "Female",
  23847. image: {
  23848. source: "./media/characters/sthara/female.svg",
  23849. extra: 2516 / 2347,
  23850. bottom: 21.5 / 2537
  23851. }
  23852. },
  23853. male: {
  23854. height: math.unit(24, "m"),
  23855. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23856. name: "Male",
  23857. image: {
  23858. source: "./media/characters/sthara/male.svg",
  23859. extra: 2732 / 2607,
  23860. bottom: 23 / 2732
  23861. }
  23862. },
  23863. },
  23864. [
  23865. {
  23866. name: "Macro",
  23867. height: math.unit(21.6, "meters"),
  23868. default: true
  23869. },
  23870. ]
  23871. ))
  23872. characterMakers.push(() => makeCharacter(
  23873. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23874. {
  23875. front: {
  23876. height: math.unit(6 + 4 / 12, "feet"),
  23877. weight: math.unit(175, "lb"),
  23878. name: "Front",
  23879. image: {
  23880. source: "./media/characters/luka-bryzant/front.svg",
  23881. extra: 311 / 289,
  23882. bottom: 4 / 315
  23883. }
  23884. },
  23885. back: {
  23886. height: math.unit(6 + 4 / 12, "feet"),
  23887. weight: math.unit(175, "lb"),
  23888. name: "Back",
  23889. image: {
  23890. source: "./media/characters/luka-bryzant/back.svg",
  23891. extra: 311 / 289,
  23892. bottom: 3.8 / 313.7
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Micro",
  23899. height: math.unit(10, "inches")
  23900. },
  23901. {
  23902. name: "Normal",
  23903. height: math.unit(6 + 4 / 12, "feet"),
  23904. default: true
  23905. },
  23906. {
  23907. name: "Large",
  23908. height: math.unit(12, "feet")
  23909. },
  23910. ]
  23911. ))
  23912. characterMakers.push(() => makeCharacter(
  23913. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23914. {
  23915. front: {
  23916. height: math.unit(5 + 7 / 12, "feet"),
  23917. weight: math.unit(185, "lb"),
  23918. name: "Front",
  23919. image: {
  23920. source: "./media/characters/aman-aquila/front.svg",
  23921. extra: 1013 / 976,
  23922. bottom: 45.6 / 1057
  23923. }
  23924. },
  23925. side: {
  23926. height: math.unit(5 + 7 / 12, "feet"),
  23927. weight: math.unit(185, "lb"),
  23928. name: "Side",
  23929. image: {
  23930. source: "./media/characters/aman-aquila/side.svg",
  23931. extra: 1054 / 1011,
  23932. bottom: 15 / 1070
  23933. }
  23934. },
  23935. back: {
  23936. height: math.unit(5 + 7 / 12, "feet"),
  23937. weight: math.unit(185, "lb"),
  23938. name: "Back",
  23939. image: {
  23940. source: "./media/characters/aman-aquila/back.svg",
  23941. extra: 1026 / 970,
  23942. bottom: 12 / 1039
  23943. }
  23944. },
  23945. head: {
  23946. height: math.unit(1.211, "feet"),
  23947. name: "Head",
  23948. image: {
  23949. source: "./media/characters/aman-aquila/head.svg",
  23950. }
  23951. },
  23952. },
  23953. [
  23954. {
  23955. name: "Minimicro",
  23956. height: math.unit(0.057, "inches")
  23957. },
  23958. {
  23959. name: "Micro",
  23960. height: math.unit(7, "inches")
  23961. },
  23962. {
  23963. name: "Mini",
  23964. height: math.unit(3 + 7 / 12, "feet")
  23965. },
  23966. {
  23967. name: "Normal",
  23968. height: math.unit(5 + 7 / 12, "feet"),
  23969. default: true
  23970. },
  23971. {
  23972. name: "Macro",
  23973. height: math.unit(157 + 7 / 12, "feet")
  23974. },
  23975. {
  23976. name: "Megamacro",
  23977. height: math.unit(1557 + 7 / 12, "feet")
  23978. },
  23979. {
  23980. name: "Gigamacro",
  23981. height: math.unit(15557 + 7 / 12, "feet")
  23982. },
  23983. ]
  23984. ))
  23985. characterMakers.push(() => makeCharacter(
  23986. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23987. {
  23988. front: {
  23989. height: math.unit(3 + 2 / 12, "inches"),
  23990. weight: math.unit(0.3, "ounces"),
  23991. name: "Front",
  23992. image: {
  23993. source: "./media/characters/hiphae/front.svg",
  23994. extra: 1931 / 1683,
  23995. bottom: 24 / 1955
  23996. }
  23997. },
  23998. },
  23999. [
  24000. {
  24001. name: "Normal",
  24002. height: math.unit(3 + 1 / 2, "inches"),
  24003. default: true
  24004. },
  24005. ]
  24006. ))
  24007. characterMakers.push(() => makeCharacter(
  24008. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24009. {
  24010. front: {
  24011. height: math.unit(5 + 10 / 12, "feet"),
  24012. weight: math.unit(165, "lb"),
  24013. name: "Front",
  24014. image: {
  24015. source: "./media/characters/nicky/front.svg",
  24016. extra: 3144 / 2886,
  24017. bottom: 45.6 / 3192
  24018. }
  24019. },
  24020. back: {
  24021. height: math.unit(5 + 10 / 12, "feet"),
  24022. weight: math.unit(165, "lb"),
  24023. name: "Back",
  24024. image: {
  24025. source: "./media/characters/nicky/back.svg",
  24026. extra: 3055 / 2804,
  24027. bottom: 28.4 / 3087
  24028. }
  24029. },
  24030. frontclothed: {
  24031. height: math.unit(5 + 10 / 12, "feet"),
  24032. weight: math.unit(165, "lb"),
  24033. name: "Front-clothed",
  24034. image: {
  24035. source: "./media/characters/nicky/front-clothed.svg",
  24036. extra: 3184.9 / 2926.9,
  24037. bottom: 86.5 / 3239.9
  24038. }
  24039. },
  24040. foot: {
  24041. height: math.unit(1.16, "feet"),
  24042. name: "Foot",
  24043. image: {
  24044. source: "./media/characters/nicky/foot.svg"
  24045. }
  24046. },
  24047. feet: {
  24048. height: math.unit(1.34, "feet"),
  24049. name: "Feet",
  24050. image: {
  24051. source: "./media/characters/nicky/feet.svg"
  24052. }
  24053. },
  24054. maw: {
  24055. height: math.unit(0.9, "feet"),
  24056. name: "Maw",
  24057. image: {
  24058. source: "./media/characters/nicky/maw.svg"
  24059. }
  24060. },
  24061. },
  24062. [
  24063. {
  24064. name: "Normal",
  24065. height: math.unit(5 + 10 / 12, "feet"),
  24066. default: true
  24067. },
  24068. {
  24069. name: "Macro",
  24070. height: math.unit(60, "feet")
  24071. },
  24072. {
  24073. name: "Megamacro",
  24074. height: math.unit(1, "mile")
  24075. },
  24076. ]
  24077. ))
  24078. characterMakers.push(() => makeCharacter(
  24079. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24080. {
  24081. side: {
  24082. height: math.unit(10, "feet"),
  24083. weight: math.unit(600, "lb"),
  24084. name: "Side",
  24085. image: {
  24086. source: "./media/characters/blair/side.svg",
  24087. bottom: 16.6 / 475,
  24088. extra: 458 / 431
  24089. }
  24090. },
  24091. },
  24092. [
  24093. {
  24094. name: "Micro",
  24095. height: math.unit(8, "inches")
  24096. },
  24097. {
  24098. name: "Normal",
  24099. height: math.unit(10, "feet"),
  24100. default: true
  24101. },
  24102. {
  24103. name: "Macro",
  24104. height: math.unit(180, "feet")
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24110. {
  24111. front: {
  24112. height: math.unit(5 + 4 / 12, "feet"),
  24113. weight: math.unit(125, "lb"),
  24114. name: "Front",
  24115. image: {
  24116. source: "./media/characters/fisher/front.svg",
  24117. extra: 444 / 390,
  24118. bottom: 2 / 444.8
  24119. }
  24120. },
  24121. },
  24122. [
  24123. {
  24124. name: "Micro",
  24125. height: math.unit(4, "inches")
  24126. },
  24127. {
  24128. name: "Normal",
  24129. height: math.unit(5 + 4 / 12, "feet"),
  24130. default: true
  24131. },
  24132. {
  24133. name: "Macro",
  24134. height: math.unit(100, "feet")
  24135. },
  24136. ]
  24137. ))
  24138. characterMakers.push(() => makeCharacter(
  24139. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24140. {
  24141. front: {
  24142. height: math.unit(6.71, "feet"),
  24143. weight: math.unit(200, "lb"),
  24144. capacity: math.unit(1000000, "people"),
  24145. name: "Front",
  24146. image: {
  24147. source: "./media/characters/gliss/front.svg",
  24148. extra: 2347 / 2231,
  24149. bottom: 113 / 2462
  24150. }
  24151. },
  24152. hammerspaceSize: {
  24153. height: math.unit(6.71 * 717, "feet"),
  24154. weight: math.unit(200, "lb"),
  24155. capacity: math.unit(1000000, "people"),
  24156. name: "Hammerspace Size",
  24157. image: {
  24158. source: "./media/characters/gliss/front.svg",
  24159. extra: 2347 / 2231,
  24160. bottom: 113 / 2462
  24161. }
  24162. },
  24163. },
  24164. [
  24165. {
  24166. name: "Normal",
  24167. height: math.unit(6.71, "feet"),
  24168. default: true
  24169. },
  24170. ]
  24171. ))
  24172. characterMakers.push(() => makeCharacter(
  24173. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24174. {
  24175. side: {
  24176. height: math.unit(1.44, "m"),
  24177. weight: math.unit(80, "kg"),
  24178. name: "Side",
  24179. image: {
  24180. source: "./media/characters/dune-anderson/side.svg",
  24181. bottom: 49 / 1426
  24182. }
  24183. },
  24184. },
  24185. [
  24186. {
  24187. name: "Wolf-sized",
  24188. height: math.unit(1.44, "meters")
  24189. },
  24190. {
  24191. name: "Normal",
  24192. height: math.unit(5.05, "meters"),
  24193. default: true
  24194. },
  24195. {
  24196. name: "Big",
  24197. height: math.unit(14.4, "meters")
  24198. },
  24199. {
  24200. name: "Huge",
  24201. height: math.unit(144, "meters")
  24202. },
  24203. ]
  24204. ))
  24205. characterMakers.push(() => makeCharacter(
  24206. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24207. {
  24208. front: {
  24209. height: math.unit(7, "feet"),
  24210. weight: math.unit(425, "lb"),
  24211. name: "Front",
  24212. image: {
  24213. source: "./media/characters/hind/front.svg",
  24214. extra: 2091 / 1860,
  24215. bottom: 129 / 2220
  24216. }
  24217. },
  24218. back: {
  24219. height: math.unit(7, "feet"),
  24220. weight: math.unit(425, "lb"),
  24221. name: "Back",
  24222. image: {
  24223. source: "./media/characters/hind/back.svg",
  24224. extra: 2091 / 1860,
  24225. bottom: 24.6 / 2309
  24226. }
  24227. },
  24228. tail: {
  24229. height: math.unit(2.8, "feet"),
  24230. name: "Tail",
  24231. image: {
  24232. source: "./media/characters/hind/tail.svg"
  24233. }
  24234. },
  24235. head: {
  24236. height: math.unit(2.55, "feet"),
  24237. name: "Head",
  24238. image: {
  24239. source: "./media/characters/hind/head.svg"
  24240. }
  24241. },
  24242. },
  24243. [
  24244. {
  24245. name: "XS",
  24246. height: math.unit(0.7, "feet")
  24247. },
  24248. {
  24249. name: "Normal",
  24250. height: math.unit(7, "feet"),
  24251. default: true
  24252. },
  24253. {
  24254. name: "XL",
  24255. height: math.unit(70, "feet")
  24256. },
  24257. ]
  24258. ))
  24259. characterMakers.push(() => makeCharacter(
  24260. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24261. {
  24262. front: {
  24263. height: math.unit(6, "feet"),
  24264. weight: math.unit(150, "lb"),
  24265. name: "Front",
  24266. image: {
  24267. source: "./media/characters/dylan-skaven/front.svg",
  24268. extra: 2318 / 2063,
  24269. bottom: 93.4 / 2410
  24270. }
  24271. },
  24272. },
  24273. [
  24274. {
  24275. name: "Nano",
  24276. height: math.unit(1, "mm")
  24277. },
  24278. {
  24279. name: "Micro",
  24280. height: math.unit(1, "cm")
  24281. },
  24282. {
  24283. name: "Normal",
  24284. height: math.unit(2.1, "meters"),
  24285. default: true
  24286. },
  24287. ]
  24288. ))
  24289. characterMakers.push(() => makeCharacter(
  24290. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24291. {
  24292. front: {
  24293. height: math.unit(7 + 5 / 12, "feet"),
  24294. weight: math.unit(357, "lb"),
  24295. name: "Front",
  24296. image: {
  24297. source: "./media/characters/solex-draconov/front.svg",
  24298. extra: 1993 / 1865,
  24299. bottom: 117 / 2111
  24300. }
  24301. },
  24302. },
  24303. [
  24304. {
  24305. name: "Natural Height",
  24306. height: math.unit(7 + 5 / 12, "feet"),
  24307. default: true
  24308. },
  24309. {
  24310. name: "Macro",
  24311. height: math.unit(350, "feet")
  24312. },
  24313. {
  24314. name: "Macro+",
  24315. height: math.unit(1000, "feet")
  24316. },
  24317. {
  24318. name: "Megamacro",
  24319. height: math.unit(20, "km")
  24320. },
  24321. {
  24322. name: "Megamacro+",
  24323. height: math.unit(1000, "km")
  24324. },
  24325. {
  24326. name: "Gigamacro",
  24327. height: math.unit(2.5, "Gm")
  24328. },
  24329. {
  24330. name: "Teramacro",
  24331. height: math.unit(15, "Tm")
  24332. },
  24333. {
  24334. name: "Galactic",
  24335. height: math.unit(30, "Zm")
  24336. },
  24337. {
  24338. name: "Universal",
  24339. height: math.unit(21000, "Ym")
  24340. },
  24341. {
  24342. name: "Omniversal",
  24343. height: math.unit(9.861e50, "Ym")
  24344. },
  24345. {
  24346. name: "Existential",
  24347. height: math.unit(1e300, "meters")
  24348. },
  24349. ]
  24350. ))
  24351. characterMakers.push(() => makeCharacter(
  24352. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24353. {
  24354. side: {
  24355. height: math.unit(25, "feet"),
  24356. weight: math.unit(90000, "lb"),
  24357. name: "Side",
  24358. image: {
  24359. source: "./media/characters/mandarax/side.svg",
  24360. extra: 614 / 332,
  24361. bottom: 55 / 630
  24362. }
  24363. },
  24364. head: {
  24365. height: math.unit(11.4, "feet"),
  24366. name: "Head",
  24367. image: {
  24368. source: "./media/characters/mandarax/head.svg"
  24369. }
  24370. },
  24371. belly: {
  24372. height: math.unit(33, "feet"),
  24373. name: "Belly",
  24374. capacity: math.unit(500, "people"),
  24375. image: {
  24376. source: "./media/characters/mandarax/belly.svg"
  24377. }
  24378. },
  24379. dick: {
  24380. height: math.unit(8.46, "feet"),
  24381. name: "Dick",
  24382. image: {
  24383. source: "./media/characters/mandarax/dick.svg"
  24384. }
  24385. },
  24386. top: {
  24387. height: math.unit(28, "meters"),
  24388. name: "Top",
  24389. image: {
  24390. source: "./media/characters/mandarax/top.svg"
  24391. }
  24392. },
  24393. },
  24394. [
  24395. {
  24396. name: "Normal",
  24397. height: math.unit(25, "feet"),
  24398. default: true
  24399. },
  24400. ]
  24401. ))
  24402. characterMakers.push(() => makeCharacter(
  24403. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24404. {
  24405. front: {
  24406. height: math.unit(5, "feet"),
  24407. weight: math.unit(90, "lb"),
  24408. name: "Front",
  24409. image: {
  24410. source: "./media/characters/pixil/front.svg",
  24411. extra: 2000 / 1618,
  24412. bottom: 12.3 / 2011
  24413. }
  24414. },
  24415. },
  24416. [
  24417. {
  24418. name: "Normal",
  24419. height: math.unit(5, "feet"),
  24420. default: true
  24421. },
  24422. {
  24423. name: "Megamacro",
  24424. height: math.unit(10, "miles"),
  24425. },
  24426. ]
  24427. ))
  24428. characterMakers.push(() => makeCharacter(
  24429. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24430. {
  24431. front: {
  24432. height: math.unit(7 + 2 / 12, "feet"),
  24433. weight: math.unit(200, "lb"),
  24434. name: "Front",
  24435. image: {
  24436. source: "./media/characters/angel/front.svg",
  24437. extra: 1830 / 1737,
  24438. bottom: 22.6 / 1854,
  24439. }
  24440. },
  24441. },
  24442. [
  24443. {
  24444. name: "Normal",
  24445. height: math.unit(7 + 2 / 12, "feet"),
  24446. default: true
  24447. },
  24448. {
  24449. name: "Macro",
  24450. height: math.unit(1000, "feet")
  24451. },
  24452. {
  24453. name: "Megamacro",
  24454. height: math.unit(2, "miles")
  24455. },
  24456. {
  24457. name: "Gigamacro",
  24458. height: math.unit(20, "earths")
  24459. },
  24460. ]
  24461. ))
  24462. characterMakers.push(() => makeCharacter(
  24463. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24464. {
  24465. front: {
  24466. height: math.unit(5, "feet"),
  24467. weight: math.unit(180, "lb"),
  24468. name: "Front",
  24469. image: {
  24470. source: "./media/characters/mekana/front.svg",
  24471. extra: 1671 / 1605,
  24472. bottom: 3.5 / 1691
  24473. }
  24474. },
  24475. side: {
  24476. height: math.unit(5, "feet"),
  24477. weight: math.unit(180, "lb"),
  24478. name: "Side",
  24479. image: {
  24480. source: "./media/characters/mekana/side.svg",
  24481. extra: 1671 / 1605,
  24482. bottom: 3.5 / 1691
  24483. }
  24484. },
  24485. back: {
  24486. height: math.unit(5, "feet"),
  24487. weight: math.unit(180, "lb"),
  24488. name: "Back",
  24489. image: {
  24490. source: "./media/characters/mekana/back.svg",
  24491. extra: 1671 / 1605,
  24492. bottom: 3.5 / 1691
  24493. }
  24494. },
  24495. },
  24496. [
  24497. {
  24498. name: "Normal",
  24499. height: math.unit(5, "feet"),
  24500. default: true
  24501. },
  24502. ]
  24503. ))
  24504. characterMakers.push(() => makeCharacter(
  24505. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24506. {
  24507. front: {
  24508. height: math.unit(4 + 6 / 12, "feet"),
  24509. weight: math.unit(80, "lb"),
  24510. name: "Front",
  24511. image: {
  24512. source: "./media/characters/pixie/front.svg",
  24513. extra: 1924 / 1825,
  24514. bottom: 22.4 / 1946
  24515. }
  24516. },
  24517. },
  24518. [
  24519. {
  24520. name: "Normal",
  24521. height: math.unit(4 + 6 / 12, "feet"),
  24522. default: true
  24523. },
  24524. {
  24525. name: "Macro",
  24526. height: math.unit(40, "feet")
  24527. },
  24528. ]
  24529. ))
  24530. characterMakers.push(() => makeCharacter(
  24531. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24532. {
  24533. front: {
  24534. height: math.unit(2.1, "meters"),
  24535. weight: math.unit(200, "lb"),
  24536. name: "Front",
  24537. image: {
  24538. source: "./media/characters/the-lascivious/front.svg",
  24539. extra: 1 / 0.893,
  24540. bottom: 3.5 / 573.7
  24541. }
  24542. },
  24543. },
  24544. [
  24545. {
  24546. name: "Human Scale",
  24547. height: math.unit(2.1, "meters")
  24548. },
  24549. {
  24550. name: "Wolxi Scale",
  24551. height: math.unit(46.2, "m"),
  24552. default: true
  24553. },
  24554. {
  24555. name: "Boinker of Buildings",
  24556. height: math.unit(10, "km")
  24557. },
  24558. {
  24559. name: "Shagger of Skyscrapers",
  24560. height: math.unit(40, "km")
  24561. },
  24562. {
  24563. name: "Banger of Boroughs",
  24564. height: math.unit(4000, "km")
  24565. },
  24566. {
  24567. name: "Screwer of States",
  24568. height: math.unit(100000, "km")
  24569. },
  24570. {
  24571. name: "Pounder of Planets",
  24572. height: math.unit(2000000, "km")
  24573. },
  24574. ]
  24575. ))
  24576. characterMakers.push(() => makeCharacter(
  24577. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24578. {
  24579. front: {
  24580. height: math.unit(6, "feet"),
  24581. weight: math.unit(150, "lb"),
  24582. name: "Front",
  24583. image: {
  24584. source: "./media/characters/aj/front.svg",
  24585. extra: 2039 / 1562,
  24586. bottom: 40 / 2079
  24587. }
  24588. },
  24589. },
  24590. [
  24591. {
  24592. name: "Normal",
  24593. height: math.unit(11 + 6 / 12, "feet"),
  24594. default: true
  24595. },
  24596. {
  24597. name: "Megamacro",
  24598. height: math.unit(60, "megameters")
  24599. },
  24600. ]
  24601. ))
  24602. characterMakers.push(() => makeCharacter(
  24603. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24604. {
  24605. side: {
  24606. height: math.unit(31 + 8 / 12, "feet"),
  24607. weight: math.unit(75000, "kg"),
  24608. name: "Side",
  24609. image: {
  24610. source: "./media/characters/koros/side.svg",
  24611. extra: 1442 / 1297,
  24612. bottom: 122.7 / 1562
  24613. }
  24614. },
  24615. dicksKingsCrown: {
  24616. height: math.unit(6, "feet"),
  24617. name: "Dicks (King's Crown)",
  24618. image: {
  24619. source: "./media/characters/koros/dicks-kings-crown.svg"
  24620. }
  24621. },
  24622. dicksTailSet: {
  24623. height: math.unit(3, "feet"),
  24624. name: "Dicks (Tail Set)",
  24625. image: {
  24626. source: "./media/characters/koros/dicks-tail-set.svg"
  24627. }
  24628. },
  24629. dickCumming: {
  24630. height: math.unit(7.98, "feet"),
  24631. name: "Dick (Cumming)",
  24632. image: {
  24633. source: "./media/characters/koros/dick-cumming.svg"
  24634. }
  24635. },
  24636. dicksBack: {
  24637. height: math.unit(5.9, "feet"),
  24638. name: "Dicks (Back)",
  24639. image: {
  24640. source: "./media/characters/koros/dicks-back.svg"
  24641. }
  24642. },
  24643. dicksFront: {
  24644. height: math.unit(3.72, "feet"),
  24645. name: "Dicks (Front)",
  24646. image: {
  24647. source: "./media/characters/koros/dicks-front.svg"
  24648. }
  24649. },
  24650. dicksPeeking: {
  24651. height: math.unit(3.0, "feet"),
  24652. name: "Dicks (Peeking)",
  24653. image: {
  24654. source: "./media/characters/koros/dicks-peeking.svg"
  24655. }
  24656. },
  24657. eye: {
  24658. height: math.unit(1.7, "feet"),
  24659. name: "Eye",
  24660. image: {
  24661. source: "./media/characters/koros/eye.svg"
  24662. }
  24663. },
  24664. headFront: {
  24665. height: math.unit(11.69, "feet"),
  24666. name: "Head (Front)",
  24667. image: {
  24668. source: "./media/characters/koros/head-front.svg"
  24669. }
  24670. },
  24671. headSide: {
  24672. height: math.unit(14, "feet"),
  24673. name: "Head (Side)",
  24674. image: {
  24675. source: "./media/characters/koros/head-side.svg"
  24676. }
  24677. },
  24678. leg: {
  24679. height: math.unit(17, "feet"),
  24680. name: "Leg",
  24681. image: {
  24682. source: "./media/characters/koros/leg.svg"
  24683. }
  24684. },
  24685. mawSide: {
  24686. height: math.unit(12.8, "feet"),
  24687. name: "Maw (Side)",
  24688. image: {
  24689. source: "./media/characters/koros/maw-side.svg"
  24690. }
  24691. },
  24692. mawSpitting: {
  24693. height: math.unit(17, "feet"),
  24694. name: "Maw (Spitting)",
  24695. image: {
  24696. source: "./media/characters/koros/maw-spitting.svg"
  24697. }
  24698. },
  24699. slit: {
  24700. height: math.unit(2.8, "feet"),
  24701. name: "Slit",
  24702. image: {
  24703. source: "./media/characters/koros/slit.svg"
  24704. }
  24705. },
  24706. stomach: {
  24707. height: math.unit(6.8, "feet"),
  24708. capacity: math.unit(20, "people"),
  24709. name: "Stomach",
  24710. image: {
  24711. source: "./media/characters/koros/stomach.svg"
  24712. }
  24713. },
  24714. wingspanBottom: {
  24715. height: math.unit(114, "feet"),
  24716. name: "Wingspan (Bottom)",
  24717. image: {
  24718. source: "./media/characters/koros/wingspan-bottom.svg"
  24719. }
  24720. },
  24721. wingspanTop: {
  24722. height: math.unit(104, "feet"),
  24723. name: "Wingspan (Top)",
  24724. image: {
  24725. source: "./media/characters/koros/wingspan-top.svg"
  24726. }
  24727. },
  24728. },
  24729. [
  24730. {
  24731. name: "Normal",
  24732. height: math.unit(31 + 8 / 12, "feet"),
  24733. default: true
  24734. },
  24735. ]
  24736. ))
  24737. characterMakers.push(() => makeCharacter(
  24738. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24739. {
  24740. front: {
  24741. height: math.unit(18 + 5 / 12, "feet"),
  24742. weight: math.unit(3750, "kg"),
  24743. name: "Front",
  24744. image: {
  24745. source: "./media/characters/vexx/front.svg",
  24746. extra: 426 / 396,
  24747. bottom: 31.5 / 458
  24748. }
  24749. },
  24750. maw: {
  24751. height: math.unit(6, "feet"),
  24752. name: "Maw",
  24753. image: {
  24754. source: "./media/characters/vexx/maw.svg"
  24755. }
  24756. },
  24757. },
  24758. [
  24759. {
  24760. name: "Normal",
  24761. height: math.unit(18 + 5 / 12, "feet"),
  24762. default: true
  24763. },
  24764. ]
  24765. ))
  24766. characterMakers.push(() => makeCharacter(
  24767. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24768. {
  24769. front: {
  24770. height: math.unit(17 + 6 / 12, "feet"),
  24771. weight: math.unit(150, "lb"),
  24772. name: "Front",
  24773. image: {
  24774. source: "./media/characters/baadra/front.svg",
  24775. extra: 3137 / 2890,
  24776. bottom: 168.4 / 3305
  24777. }
  24778. },
  24779. back: {
  24780. height: math.unit(17 + 6 / 12, "feet"),
  24781. weight: math.unit(150, "lb"),
  24782. name: "Back",
  24783. image: {
  24784. source: "./media/characters/baadra/back.svg",
  24785. extra: 3142 / 2890,
  24786. bottom: 220 / 3371
  24787. }
  24788. },
  24789. head: {
  24790. height: math.unit(5.45, "feet"),
  24791. name: "Head",
  24792. image: {
  24793. source: "./media/characters/baadra/head.svg"
  24794. }
  24795. },
  24796. headAngry: {
  24797. height: math.unit(4.95, "feet"),
  24798. name: "Head (Angry)",
  24799. image: {
  24800. source: "./media/characters/baadra/head-angry.svg"
  24801. }
  24802. },
  24803. headOpen: {
  24804. height: math.unit(6, "feet"),
  24805. name: "Head (Open)",
  24806. image: {
  24807. source: "./media/characters/baadra/head-open.svg"
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Normal",
  24814. height: math.unit(17 + 6 / 12, "feet"),
  24815. default: true
  24816. },
  24817. ]
  24818. ))
  24819. characterMakers.push(() => makeCharacter(
  24820. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24821. {
  24822. front: {
  24823. height: math.unit(7 + 3 / 12, "feet"),
  24824. weight: math.unit(180, "lb"),
  24825. name: "Front",
  24826. image: {
  24827. source: "./media/characters/juri/front.svg",
  24828. extra: 1401 / 1237,
  24829. bottom: 18.5 / 1418
  24830. }
  24831. },
  24832. side: {
  24833. height: math.unit(7 + 3 / 12, "feet"),
  24834. weight: math.unit(180, "lb"),
  24835. name: "Side",
  24836. image: {
  24837. source: "./media/characters/juri/side.svg",
  24838. extra: 1424 / 1242,
  24839. bottom: 18.5 / 1447
  24840. }
  24841. },
  24842. sitting: {
  24843. height: math.unit(6, "feet"),
  24844. weight: math.unit(180, "lb"),
  24845. name: "Sitting",
  24846. image: {
  24847. source: "./media/characters/juri/sitting.svg",
  24848. extra: 1270 / 1143,
  24849. bottom: 100 / 1343
  24850. }
  24851. },
  24852. back: {
  24853. height: math.unit(7 + 3 / 12, "feet"),
  24854. weight: math.unit(180, "lb"),
  24855. name: "Back",
  24856. image: {
  24857. source: "./media/characters/juri/back.svg",
  24858. extra: 1377 / 1240,
  24859. bottom: 23.7 / 1405
  24860. }
  24861. },
  24862. maw: {
  24863. height: math.unit(2.8, "feet"),
  24864. name: "Maw",
  24865. image: {
  24866. source: "./media/characters/juri/maw.svg"
  24867. }
  24868. },
  24869. stomach: {
  24870. height: math.unit(0.89, "feet"),
  24871. capacity: math.unit(4, "liters"),
  24872. name: "Stomach",
  24873. image: {
  24874. source: "./media/characters/juri/stomach.svg"
  24875. }
  24876. },
  24877. },
  24878. [
  24879. {
  24880. name: "Normal",
  24881. height: math.unit(7 + 3 / 12, "feet"),
  24882. default: true
  24883. },
  24884. ]
  24885. ))
  24886. characterMakers.push(() => makeCharacter(
  24887. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24888. {
  24889. fox: {
  24890. height: math.unit(5 + 6 / 12, "feet"),
  24891. weight: math.unit(140, "lb"),
  24892. name: "Fox",
  24893. image: {
  24894. source: "./media/characters/maxene-sita/fox.svg",
  24895. extra: 146 / 138,
  24896. bottom: 2.1 / 148.19
  24897. }
  24898. },
  24899. foxLaying: {
  24900. height: math.unit(1.70, "feet"),
  24901. weight: math.unit(140, "lb"),
  24902. name: "Fox (Laying)",
  24903. image: {
  24904. source: "./media/characters/maxene-sita/fox-laying.svg",
  24905. extra: 910 / 572,
  24906. bottom: 71 / 981
  24907. }
  24908. },
  24909. kitsune: {
  24910. height: math.unit(10, "feet"),
  24911. weight: math.unit(800, "lb"),
  24912. name: "Kitsune",
  24913. image: {
  24914. source: "./media/characters/maxene-sita/kitsune.svg",
  24915. extra: 185 / 176,
  24916. bottom: 4.7 / 189.9
  24917. }
  24918. },
  24919. hellhound: {
  24920. height: math.unit(10, "feet"),
  24921. weight: math.unit(700, "lb"),
  24922. name: "Hellhound",
  24923. image: {
  24924. source: "./media/characters/maxene-sita/hellhound.svg",
  24925. extra: 1600 / 1545,
  24926. bottom: 81 / 1681
  24927. }
  24928. },
  24929. },
  24930. [
  24931. {
  24932. name: "Normal",
  24933. height: math.unit(5 + 6 / 12, "feet"),
  24934. default: true
  24935. },
  24936. ]
  24937. ))
  24938. characterMakers.push(() => makeCharacter(
  24939. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24940. {
  24941. front: {
  24942. height: math.unit(3 + 4 / 12, "feet"),
  24943. weight: math.unit(70, "lb"),
  24944. name: "Front",
  24945. image: {
  24946. source: "./media/characters/maia/front.svg",
  24947. extra: 227 / 219.5,
  24948. bottom: 40 / 267
  24949. }
  24950. },
  24951. back: {
  24952. height: math.unit(3 + 4 / 12, "feet"),
  24953. weight: math.unit(70, "lb"),
  24954. name: "Back",
  24955. image: {
  24956. source: "./media/characters/maia/back.svg",
  24957. extra: 237 / 225
  24958. }
  24959. },
  24960. },
  24961. [
  24962. {
  24963. name: "Normal",
  24964. height: math.unit(3 + 4 / 12, "feet"),
  24965. default: true
  24966. },
  24967. ]
  24968. ))
  24969. characterMakers.push(() => makeCharacter(
  24970. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24971. {
  24972. front: {
  24973. height: math.unit(5 + 10 / 12, "feet"),
  24974. weight: math.unit(197, "lb"),
  24975. name: "Front",
  24976. image: {
  24977. source: "./media/characters/jabaro/front.svg",
  24978. extra: 225 / 216,
  24979. bottom: 5.06 / 230
  24980. }
  24981. },
  24982. back: {
  24983. height: math.unit(5 + 10 / 12, "feet"),
  24984. weight: math.unit(197, "lb"),
  24985. name: "Back",
  24986. image: {
  24987. source: "./media/characters/jabaro/back.svg",
  24988. extra: 225 / 219,
  24989. bottom: 1.9 / 227
  24990. }
  24991. },
  24992. },
  24993. [
  24994. {
  24995. name: "Normal",
  24996. height: math.unit(5 + 10 / 12, "feet"),
  24997. default: true
  24998. },
  24999. ]
  25000. ))
  25001. characterMakers.push(() => makeCharacter(
  25002. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25003. {
  25004. front: {
  25005. height: math.unit(5 + 8 / 12, "feet"),
  25006. weight: math.unit(139, "lb"),
  25007. name: "Front",
  25008. image: {
  25009. source: "./media/characters/risa/front.svg",
  25010. extra: 270 / 260,
  25011. bottom: 11.2 / 282
  25012. }
  25013. },
  25014. back: {
  25015. height: math.unit(5 + 8 / 12, "feet"),
  25016. weight: math.unit(139, "lb"),
  25017. name: "Back",
  25018. image: {
  25019. source: "./media/characters/risa/back.svg",
  25020. extra: 264 / 255,
  25021. bottom: 4 / 268
  25022. }
  25023. },
  25024. },
  25025. [
  25026. {
  25027. name: "Normal",
  25028. height: math.unit(5 + 8 / 12, "feet"),
  25029. default: true
  25030. },
  25031. ]
  25032. ))
  25033. characterMakers.push(() => makeCharacter(
  25034. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25035. {
  25036. front: {
  25037. height: math.unit(2 + 11 / 12, "feet"),
  25038. weight: math.unit(30, "lb"),
  25039. name: "Front",
  25040. image: {
  25041. source: "./media/characters/weatley/front.svg",
  25042. bottom: 10.7 / 414,
  25043. extra: 403.5 / 362
  25044. }
  25045. },
  25046. back: {
  25047. height: math.unit(2 + 11 / 12, "feet"),
  25048. weight: math.unit(30, "lb"),
  25049. name: "Back",
  25050. image: {
  25051. source: "./media/characters/weatley/back.svg",
  25052. bottom: 10.7 / 414,
  25053. extra: 403.5 / 362
  25054. }
  25055. },
  25056. },
  25057. [
  25058. {
  25059. name: "Normal",
  25060. height: math.unit(2 + 11 / 12, "feet"),
  25061. default: true
  25062. },
  25063. ]
  25064. ))
  25065. characterMakers.push(() => makeCharacter(
  25066. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25067. {
  25068. front: {
  25069. height: math.unit(5 + 2 / 12, "feet"),
  25070. weight: math.unit(50, "kg"),
  25071. name: "Front",
  25072. image: {
  25073. source: "./media/characters/mercury-crescent/front.svg",
  25074. extra: 1088 / 1033,
  25075. bottom: 18.9 / 1109
  25076. }
  25077. },
  25078. },
  25079. [
  25080. {
  25081. name: "Normal",
  25082. height: math.unit(5 + 2 / 12, "feet"),
  25083. default: true
  25084. },
  25085. ]
  25086. ))
  25087. characterMakers.push(() => makeCharacter(
  25088. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25089. {
  25090. front: {
  25091. height: math.unit(2, "feet"),
  25092. weight: math.unit(15, "kg"),
  25093. name: "Front",
  25094. image: {
  25095. source: "./media/characters/diamond-jones/front.svg",
  25096. bottom: 16 / 568
  25097. }
  25098. },
  25099. },
  25100. [
  25101. {
  25102. name: "Normal",
  25103. height: math.unit(2, "feet"),
  25104. default: true
  25105. },
  25106. ]
  25107. ))
  25108. characterMakers.push(() => makeCharacter(
  25109. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25110. {
  25111. front: {
  25112. height: math.unit(3, "feet"),
  25113. weight: math.unit(30, "kg"),
  25114. name: "Front",
  25115. image: {
  25116. source: "./media/characters/sweet-bit/front.svg",
  25117. extra: 675 / 567,
  25118. bottom: 27.7 / 703
  25119. }
  25120. },
  25121. },
  25122. [
  25123. {
  25124. name: "Normal",
  25125. height: math.unit(3, "feet"),
  25126. default: true
  25127. },
  25128. ]
  25129. ))
  25130. characterMakers.push(() => makeCharacter(
  25131. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25132. {
  25133. side: {
  25134. height: math.unit(9.178, "feet"),
  25135. weight: math.unit(500, "lb"),
  25136. name: "Side",
  25137. image: {
  25138. source: "./media/characters/umbrazen/side.svg",
  25139. extra: 1730 / 1473,
  25140. bottom: 34.6 / 1765
  25141. }
  25142. },
  25143. },
  25144. [
  25145. {
  25146. name: "Normal",
  25147. height: math.unit(9.178, "feet"),
  25148. default: true
  25149. },
  25150. ]
  25151. ))
  25152. characterMakers.push(() => makeCharacter(
  25153. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25154. {
  25155. front: {
  25156. height: math.unit(10, "feet"),
  25157. weight: math.unit(750, "lb"),
  25158. name: "Front",
  25159. image: {
  25160. source: "./media/characters/arlist/front.svg",
  25161. extra: 961 / 778,
  25162. bottom: 6.2 / 986
  25163. }
  25164. },
  25165. },
  25166. [
  25167. {
  25168. name: "Normal",
  25169. height: math.unit(10, "feet"),
  25170. default: true
  25171. },
  25172. ]
  25173. ))
  25174. characterMakers.push(() => makeCharacter(
  25175. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25176. {
  25177. front: {
  25178. height: math.unit(5 + 1 / 12, "feet"),
  25179. weight: math.unit(110, "lb"),
  25180. name: "Front",
  25181. image: {
  25182. source: "./media/characters/aradel/front.svg",
  25183. extra: 324 / 303,
  25184. bottom: 3.6 / 329.4
  25185. }
  25186. },
  25187. },
  25188. [
  25189. {
  25190. name: "Normal",
  25191. height: math.unit(5 + 1 / 12, "feet"),
  25192. default: true
  25193. },
  25194. ]
  25195. ))
  25196. characterMakers.push(() => makeCharacter(
  25197. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25198. {
  25199. front: {
  25200. height: math.unit(3 + 8 / 12, "feet"),
  25201. weight: math.unit(50, "lb"),
  25202. name: "Front",
  25203. image: {
  25204. source: "./media/characters/serryn/front.svg",
  25205. extra: 1792 / 1656,
  25206. bottom: 43.5 / 1840
  25207. }
  25208. },
  25209. },
  25210. [
  25211. {
  25212. name: "Normal",
  25213. height: math.unit(3 + 8 / 12, "feet"),
  25214. default: true
  25215. },
  25216. ]
  25217. ))
  25218. characterMakers.push(() => makeCharacter(
  25219. { name: "Xavier Thyme" },
  25220. {
  25221. front: {
  25222. height: math.unit(7 + 10 / 12, "feet"),
  25223. weight: math.unit(255, "lb"),
  25224. name: "Front",
  25225. image: {
  25226. source: "./media/characters/xavier-thyme/front.svg",
  25227. extra: 3733 / 3642,
  25228. bottom: 131 / 3869
  25229. }
  25230. },
  25231. frontRaven: {
  25232. height: math.unit(7 + 10 / 12, "feet"),
  25233. weight: math.unit(255, "lb"),
  25234. name: "Front (Raven)",
  25235. image: {
  25236. source: "./media/characters/xavier-thyme/front-raven.svg",
  25237. extra: 4385 / 3642,
  25238. bottom: 131 / 4517
  25239. }
  25240. },
  25241. },
  25242. [
  25243. {
  25244. name: "Normal",
  25245. height: math.unit(7 + 10 / 12, "feet"),
  25246. default: true
  25247. },
  25248. ]
  25249. ))
  25250. characterMakers.push(() => makeCharacter(
  25251. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25252. {
  25253. front: {
  25254. height: math.unit(1.6, "m"),
  25255. weight: math.unit(50, "kg"),
  25256. name: "Front",
  25257. image: {
  25258. source: "./media/characters/kiki/front.svg",
  25259. extra: 4682 / 3610,
  25260. bottom: 115 / 4777
  25261. }
  25262. },
  25263. },
  25264. [
  25265. {
  25266. name: "Normal",
  25267. height: math.unit(1.6, "meters"),
  25268. default: true
  25269. },
  25270. ]
  25271. ))
  25272. characterMakers.push(() => makeCharacter(
  25273. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25274. {
  25275. front: {
  25276. height: math.unit(50, "m"),
  25277. weight: math.unit(500, "tonnes"),
  25278. name: "Front",
  25279. image: {
  25280. source: "./media/characters/ryoko/front.svg",
  25281. extra: 4632 / 3926,
  25282. bottom: 193 / 4823
  25283. }
  25284. },
  25285. },
  25286. [
  25287. {
  25288. name: "Normal",
  25289. height: math.unit(50, "meters"),
  25290. default: true
  25291. },
  25292. ]
  25293. ))
  25294. characterMakers.push(() => makeCharacter(
  25295. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25296. {
  25297. front: {
  25298. height: math.unit(30, "m"),
  25299. weight: math.unit(22, "tonnes"),
  25300. name: "Front",
  25301. image: {
  25302. source: "./media/characters/elio/front.svg",
  25303. extra: 4582 / 3720,
  25304. bottom: 236 / 4828
  25305. }
  25306. },
  25307. },
  25308. [
  25309. {
  25310. name: "Normal",
  25311. height: math.unit(30, "meters"),
  25312. default: true
  25313. },
  25314. ]
  25315. ))
  25316. characterMakers.push(() => makeCharacter(
  25317. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25318. {
  25319. front: {
  25320. height: math.unit(6 + 3 / 12, "feet"),
  25321. weight: math.unit(120, "lb"),
  25322. name: "Front",
  25323. image: {
  25324. source: "./media/characters/azura/front.svg",
  25325. extra: 1149 / 1135,
  25326. bottom: 45 / 1194
  25327. }
  25328. },
  25329. frontClothed: {
  25330. height: math.unit(6 + 3 / 12, "feet"),
  25331. weight: math.unit(120, "lb"),
  25332. name: "Front (Clothed)",
  25333. image: {
  25334. source: "./media/characters/azura/front-clothed.svg",
  25335. extra: 1149 / 1135,
  25336. bottom: 45 / 1194
  25337. }
  25338. },
  25339. },
  25340. [
  25341. {
  25342. name: "Normal",
  25343. height: math.unit(6 + 3 / 12, "feet"),
  25344. default: true
  25345. },
  25346. {
  25347. name: "Macro",
  25348. height: math.unit(20 + 6 / 12, "feet")
  25349. },
  25350. {
  25351. name: "Megamacro",
  25352. height: math.unit(12, "miles")
  25353. },
  25354. {
  25355. name: "Gigamacro",
  25356. height: math.unit(10000, "miles")
  25357. },
  25358. {
  25359. name: "Teramacro",
  25360. height: math.unit(900000, "miles")
  25361. },
  25362. ]
  25363. ))
  25364. characterMakers.push(() => makeCharacter(
  25365. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25366. {
  25367. front: {
  25368. height: math.unit(12, "feet"),
  25369. weight: math.unit(1, "ton"),
  25370. capacity: math.unit(660000, "gallons"),
  25371. name: "Front",
  25372. image: {
  25373. source: "./media/characters/zeus/front.svg",
  25374. extra: 5005 / 4717,
  25375. bottom: 363 / 5388
  25376. }
  25377. },
  25378. },
  25379. [
  25380. {
  25381. name: "Normal",
  25382. height: math.unit(12, "feet")
  25383. },
  25384. {
  25385. name: "Preferred Size",
  25386. height: math.unit(0.5, "miles"),
  25387. default: true
  25388. },
  25389. {
  25390. name: "Giga Horse",
  25391. height: math.unit(300, "miles")
  25392. },
  25393. {
  25394. name: "Riding Planets",
  25395. height: math.unit(30, "megameters")
  25396. },
  25397. {
  25398. name: "Cosmic Giant",
  25399. height: math.unit(3, "zettameters")
  25400. },
  25401. {
  25402. name: "Breeding God",
  25403. height: math.unit(9.92e22, "yottameters")
  25404. },
  25405. ]
  25406. ))
  25407. characterMakers.push(() => makeCharacter(
  25408. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25409. {
  25410. side: {
  25411. height: math.unit(9, "feet"),
  25412. weight: math.unit(1500, "kg"),
  25413. name: "Side",
  25414. image: {
  25415. source: "./media/characters/fang/side.svg",
  25416. extra: 924 / 866,
  25417. bottom: 47.5 / 972.3
  25418. }
  25419. },
  25420. },
  25421. [
  25422. {
  25423. name: "Normal",
  25424. height: math.unit(9, "feet"),
  25425. default: true
  25426. },
  25427. {
  25428. name: "Macro",
  25429. height: math.unit(75 + 6 / 12, "feet")
  25430. },
  25431. {
  25432. name: "Teramacro",
  25433. height: math.unit(50000, "miles")
  25434. },
  25435. ]
  25436. ))
  25437. characterMakers.push(() => makeCharacter(
  25438. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25439. {
  25440. front: {
  25441. height: math.unit(10, "feet"),
  25442. weight: math.unit(2, "tons"),
  25443. name: "Front",
  25444. image: {
  25445. source: "./media/characters/rekhit/front.svg",
  25446. extra: 2796 / 2590,
  25447. bottom: 225 / 3022
  25448. }
  25449. },
  25450. },
  25451. [
  25452. {
  25453. name: "Normal",
  25454. height: math.unit(10, "feet"),
  25455. default: true
  25456. },
  25457. {
  25458. name: "Macro",
  25459. height: math.unit(500, "feet")
  25460. },
  25461. ]
  25462. ))
  25463. characterMakers.push(() => makeCharacter(
  25464. { name: "Dahlia Verrick" },
  25465. {
  25466. front: {
  25467. height: math.unit(7 + 6.451 / 12, "feet"),
  25468. weight: math.unit(310, "lb"),
  25469. name: "Front",
  25470. image: {
  25471. source: "./media/characters/dahlia-verrick/front.svg",
  25472. extra: 1488 / 1365,
  25473. bottom: 6.2 / 1495
  25474. }
  25475. },
  25476. back: {
  25477. height: math.unit(7 + 6.451 / 12, "feet"),
  25478. weight: math.unit(310, "lb"),
  25479. name: "Back",
  25480. image: {
  25481. source: "./media/characters/dahlia-verrick/back.svg",
  25482. extra: 1472 / 1351,
  25483. bottom: 5.28 / 1477
  25484. }
  25485. },
  25486. frontBusiness: {
  25487. height: math.unit(7 + 6.451 / 12, "feet"),
  25488. weight: math.unit(200, "lb"),
  25489. name: "Front (Business)",
  25490. image: {
  25491. source: "./media/characters/dahlia-verrick/front-business.svg",
  25492. extra: 1478 / 1381,
  25493. bottom: 5.5 / 1484
  25494. }
  25495. },
  25496. frontCasual: {
  25497. height: math.unit(7 + 6.451 / 12, "feet"),
  25498. weight: math.unit(200, "lb"),
  25499. name: "Front (Casual)",
  25500. image: {
  25501. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25502. extra: 1478 / 1381,
  25503. bottom: 5.5 / 1484
  25504. }
  25505. },
  25506. },
  25507. [
  25508. {
  25509. name: "Travel-Sized",
  25510. height: math.unit(7.45, "inches")
  25511. },
  25512. {
  25513. name: "Normal",
  25514. height: math.unit(7 + 6.451 / 12, "feet"),
  25515. default: true
  25516. },
  25517. {
  25518. name: "Hitting the Town",
  25519. height: math.unit(37 + 8 / 12, "feet")
  25520. },
  25521. {
  25522. name: "Stomp in the Suburbs",
  25523. height: math.unit(964 + 9.728 / 12, "feet")
  25524. },
  25525. {
  25526. name: "Sit on the City",
  25527. height: math.unit(61747 + 10.592 / 12, "feet")
  25528. },
  25529. {
  25530. name: "Glomp the Globe",
  25531. height: math.unit(252919327 + 4.832 / 12, "feet")
  25532. },
  25533. ]
  25534. ))
  25535. characterMakers.push(() => makeCharacter(
  25536. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25537. {
  25538. front: {
  25539. height: math.unit(6 + 4 / 12, "feet"),
  25540. weight: math.unit(320, "lb"),
  25541. name: "Front",
  25542. image: {
  25543. source: "./media/characters/balina-mahigan/front.svg",
  25544. extra: 447 / 428,
  25545. bottom: 18 / 466
  25546. }
  25547. },
  25548. back: {
  25549. height: math.unit(6 + 4 / 12, "feet"),
  25550. weight: math.unit(320, "lb"),
  25551. name: "Back",
  25552. image: {
  25553. source: "./media/characters/balina-mahigan/back.svg",
  25554. extra: 445 / 428,
  25555. bottom: 4.07 / 448
  25556. }
  25557. },
  25558. arm: {
  25559. height: math.unit(1.88, "feet"),
  25560. name: "Arm",
  25561. image: {
  25562. source: "./media/characters/balina-mahigan/arm.svg"
  25563. }
  25564. },
  25565. backPort: {
  25566. height: math.unit(0.685, "feet"),
  25567. name: "Back Port",
  25568. image: {
  25569. source: "./media/characters/balina-mahigan/back-port.svg"
  25570. }
  25571. },
  25572. hoofpaw: {
  25573. height: math.unit(1.41, "feet"),
  25574. name: "Hoofpaw",
  25575. image: {
  25576. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25577. }
  25578. },
  25579. leftHandBack: {
  25580. height: math.unit(0.938, "feet"),
  25581. name: "Left Hand (Back)",
  25582. image: {
  25583. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25584. }
  25585. },
  25586. leftHandFront: {
  25587. height: math.unit(0.938, "feet"),
  25588. name: "Left Hand (Front)",
  25589. image: {
  25590. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25591. }
  25592. },
  25593. rightHandBack: {
  25594. height: math.unit(0.95, "feet"),
  25595. name: "Right Hand (Back)",
  25596. image: {
  25597. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25598. }
  25599. },
  25600. rightHandFront: {
  25601. height: math.unit(0.95, "feet"),
  25602. name: "Right Hand (Front)",
  25603. image: {
  25604. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25605. }
  25606. },
  25607. },
  25608. [
  25609. {
  25610. name: "Normal",
  25611. height: math.unit(6 + 4 / 12, "feet"),
  25612. default: true
  25613. },
  25614. ]
  25615. ))
  25616. characterMakers.push(() => makeCharacter(
  25617. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25618. {
  25619. front: {
  25620. height: math.unit(6, "feet"),
  25621. weight: math.unit(320, "lb"),
  25622. name: "Front",
  25623. image: {
  25624. source: "./media/characters/balina-mejeri/front.svg",
  25625. extra: 517 / 488,
  25626. bottom: 44.2 / 561
  25627. }
  25628. },
  25629. },
  25630. [
  25631. {
  25632. name: "Normal",
  25633. height: math.unit(6 + 4 / 12, "feet")
  25634. },
  25635. {
  25636. name: "Business",
  25637. height: math.unit(155, "feet"),
  25638. default: true
  25639. },
  25640. ]
  25641. ))
  25642. characterMakers.push(() => makeCharacter(
  25643. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25644. {
  25645. kneeling: {
  25646. height: math.unit(6 + 4 / 12, "feet"),
  25647. weight: math.unit(300 * 20, "lb"),
  25648. name: "Kneeling",
  25649. image: {
  25650. source: "./media/characters/balbarian/kneeling.svg",
  25651. extra: 922 / 862,
  25652. bottom: 42.4 / 965
  25653. }
  25654. },
  25655. },
  25656. [
  25657. {
  25658. name: "Normal",
  25659. height: math.unit(6 + 4 / 12, "feet")
  25660. },
  25661. {
  25662. name: "Treasured",
  25663. height: math.unit(18 + 9 / 12, "feet"),
  25664. default: true
  25665. },
  25666. {
  25667. name: "Macro",
  25668. height: math.unit(900, "feet")
  25669. },
  25670. ]
  25671. ))
  25672. characterMakers.push(() => makeCharacter(
  25673. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25674. {
  25675. front: {
  25676. height: math.unit(6 + 4 / 12, "feet"),
  25677. weight: math.unit(325, "lb"),
  25678. name: "Front",
  25679. image: {
  25680. source: "./media/characters/balina-amarini/front.svg",
  25681. extra: 415 / 403,
  25682. bottom: 19 / 433.4
  25683. }
  25684. },
  25685. back: {
  25686. height: math.unit(6 + 4 / 12, "feet"),
  25687. weight: math.unit(325, "lb"),
  25688. name: "Back",
  25689. image: {
  25690. source: "./media/characters/balina-amarini/back.svg",
  25691. extra: 415 / 403,
  25692. bottom: 13.5 / 432
  25693. }
  25694. },
  25695. overdrive: {
  25696. height: math.unit(6 + 4 / 12, "feet"),
  25697. weight: math.unit(400, "lb"),
  25698. name: "Overdrive",
  25699. image: {
  25700. source: "./media/characters/balina-amarini/overdrive.svg",
  25701. extra: 269 / 259,
  25702. bottom: 12 / 282
  25703. }
  25704. },
  25705. },
  25706. [
  25707. {
  25708. name: "Boom",
  25709. height: math.unit(9 + 10 / 12, "feet"),
  25710. default: true
  25711. },
  25712. {
  25713. name: "Macro",
  25714. height: math.unit(280, "feet")
  25715. },
  25716. ]
  25717. ))
  25718. characterMakers.push(() => makeCharacter(
  25719. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25720. {
  25721. goddess: {
  25722. height: math.unit(600, "feet"),
  25723. weight: math.unit(2000000, "tons"),
  25724. name: "Goddess",
  25725. image: {
  25726. source: "./media/characters/lady-kubwa/goddess.svg",
  25727. extra: 1240.5 / 1223,
  25728. bottom: 22 / 1263
  25729. }
  25730. },
  25731. goddesser: {
  25732. height: math.unit(900, "feet"),
  25733. weight: math.unit(20000000, "lb"),
  25734. name: "Goddess-er",
  25735. image: {
  25736. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25737. extra: 899 / 888,
  25738. bottom: 12.6 / 912
  25739. }
  25740. },
  25741. },
  25742. [
  25743. {
  25744. name: "Macro",
  25745. height: math.unit(600, "feet"),
  25746. default: true
  25747. },
  25748. {
  25749. name: "Megamacro",
  25750. height: math.unit(250, "miles")
  25751. },
  25752. ]
  25753. ))
  25754. characterMakers.push(() => makeCharacter(
  25755. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25756. {
  25757. front: {
  25758. height: math.unit(7 + 7 / 12, "feet"),
  25759. weight: math.unit(250, "lb"),
  25760. name: "Front",
  25761. image: {
  25762. source: "./media/characters/tala-grovehorn/front.svg",
  25763. extra: 2636 / 2525,
  25764. bottom: 147 / 2781
  25765. }
  25766. },
  25767. back: {
  25768. height: math.unit(7 + 7 / 12, "feet"),
  25769. weight: math.unit(250, "lb"),
  25770. name: "Back",
  25771. image: {
  25772. source: "./media/characters/tala-grovehorn/back.svg",
  25773. extra: 2635 / 2539,
  25774. bottom: 100 / 2732.8
  25775. }
  25776. },
  25777. mouth: {
  25778. height: math.unit(1.15, "feet"),
  25779. name: "Mouth",
  25780. image: {
  25781. source: "./media/characters/tala-grovehorn/mouth.svg"
  25782. }
  25783. },
  25784. dick: {
  25785. height: math.unit(2.36, "feet"),
  25786. name: "Dick",
  25787. image: {
  25788. source: "./media/characters/tala-grovehorn/dick.svg"
  25789. }
  25790. },
  25791. slit: {
  25792. height: math.unit(0.61, "feet"),
  25793. name: "Slit",
  25794. image: {
  25795. source: "./media/characters/tala-grovehorn/slit.svg"
  25796. }
  25797. },
  25798. },
  25799. [
  25800. ]
  25801. ))
  25802. characterMakers.push(() => makeCharacter(
  25803. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25804. {
  25805. front: {
  25806. height: math.unit(7 + 7 / 12, "feet"),
  25807. weight: math.unit(225, "lb"),
  25808. name: "Front",
  25809. image: {
  25810. source: "./media/characters/epona/front.svg",
  25811. extra: 2445 / 2290,
  25812. bottom: 251 / 2696
  25813. }
  25814. },
  25815. back: {
  25816. height: math.unit(7 + 7 / 12, "feet"),
  25817. weight: math.unit(225, "lb"),
  25818. name: "Back",
  25819. image: {
  25820. source: "./media/characters/epona/back.svg",
  25821. extra: 2546 / 2408,
  25822. bottom: 44 / 2589
  25823. }
  25824. },
  25825. genitals: {
  25826. height: math.unit(1.5, "feet"),
  25827. name: "Genitals",
  25828. image: {
  25829. source: "./media/characters/epona/genitals.svg"
  25830. }
  25831. },
  25832. },
  25833. [
  25834. {
  25835. name: "Normal",
  25836. height: math.unit(7 + 7 / 12, "feet")
  25837. },
  25838. ]
  25839. ))
  25840. characterMakers.push(() => makeCharacter(
  25841. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25842. {
  25843. front: {
  25844. height: math.unit(7, "feet"),
  25845. weight: math.unit(518, "lb"),
  25846. name: "Front",
  25847. image: {
  25848. source: "./media/characters/avia-bloodbourn/front.svg",
  25849. extra: 1466 / 1350,
  25850. bottom: 65 / 1527
  25851. }
  25852. },
  25853. },
  25854. [
  25855. ]
  25856. ))
  25857. characterMakers.push(() => makeCharacter(
  25858. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25859. {
  25860. front: {
  25861. height: math.unit(9.35, "feet"),
  25862. weight: math.unit(600, "lb"),
  25863. name: "Front",
  25864. image: {
  25865. source: "./media/characters/amera/front.svg",
  25866. extra: 891 / 818,
  25867. bottom: 30 / 922.7
  25868. }
  25869. },
  25870. back: {
  25871. height: math.unit(9.35, "feet"),
  25872. weight: math.unit(600, "lb"),
  25873. name: "Back",
  25874. image: {
  25875. source: "./media/characters/amera/back.svg",
  25876. extra: 876 / 824,
  25877. bottom: 6.8 / 884
  25878. }
  25879. },
  25880. dick: {
  25881. height: math.unit(2.14, "feet"),
  25882. name: "Dick",
  25883. image: {
  25884. source: "./media/characters/amera/dick.svg"
  25885. }
  25886. },
  25887. },
  25888. [
  25889. {
  25890. name: "Normal",
  25891. height: math.unit(9.35, "feet"),
  25892. default: true
  25893. },
  25894. ]
  25895. ))
  25896. characterMakers.push(() => makeCharacter(
  25897. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25898. {
  25899. kneeling: {
  25900. height: math.unit(3 + 4 / 12, "feet"),
  25901. weight: math.unit(90, "lb"),
  25902. name: "Kneeling",
  25903. image: {
  25904. source: "./media/characters/rosewen/kneeling.svg",
  25905. extra: 1835 / 1571,
  25906. bottom: 27.7 / 1862
  25907. }
  25908. },
  25909. },
  25910. [
  25911. {
  25912. name: "Normal",
  25913. height: math.unit(3 + 4 / 12, "feet"),
  25914. default: true
  25915. },
  25916. ]
  25917. ))
  25918. characterMakers.push(() => makeCharacter(
  25919. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25920. {
  25921. front: {
  25922. height: math.unit(5 + 10 / 12, "feet"),
  25923. weight: math.unit(200, "lb"),
  25924. name: "Front",
  25925. image: {
  25926. source: "./media/characters/sabah/front.svg",
  25927. extra: 849 / 763,
  25928. bottom: 33.9 / 881
  25929. }
  25930. },
  25931. },
  25932. [
  25933. {
  25934. name: "Normal",
  25935. height: math.unit(5 + 10 / 12, "feet"),
  25936. default: true
  25937. },
  25938. ]
  25939. ))
  25940. characterMakers.push(() => makeCharacter(
  25941. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25942. {
  25943. front: {
  25944. height: math.unit(3 + 5 / 12, "feet"),
  25945. weight: math.unit(40, "kg"),
  25946. name: "Front",
  25947. image: {
  25948. source: "./media/characters/purple-flame/front.svg",
  25949. extra: 1577 / 1412,
  25950. bottom: 97 / 1694
  25951. }
  25952. },
  25953. frontDressed: {
  25954. height: math.unit(3 + 5 / 12, "feet"),
  25955. weight: math.unit(40, "kg"),
  25956. name: "Front (Dressed)",
  25957. image: {
  25958. source: "./media/characters/purple-flame/front-dressed.svg",
  25959. extra: 1577 / 1412,
  25960. bottom: 97 / 1694
  25961. }
  25962. },
  25963. headphones: {
  25964. height: math.unit(0.85, "feet"),
  25965. name: "Headphones",
  25966. image: {
  25967. source: "./media/characters/purple-flame/headphones.svg"
  25968. }
  25969. },
  25970. },
  25971. [
  25972. {
  25973. name: "Really Small",
  25974. height: math.unit(5, "cm")
  25975. },
  25976. {
  25977. name: "Micro",
  25978. height: math.unit(1 + 5 / 12, "feet")
  25979. },
  25980. {
  25981. name: "Normal",
  25982. height: math.unit(3 + 5 / 12, "feet"),
  25983. default: true
  25984. },
  25985. {
  25986. name: "Minimacro",
  25987. height: math.unit(125, "feet")
  25988. },
  25989. {
  25990. name: "Macro",
  25991. height: math.unit(0.5, "miles")
  25992. },
  25993. {
  25994. name: "Megamacro",
  25995. height: math.unit(50, "miles")
  25996. },
  25997. {
  25998. name: "Gigantic",
  25999. height: math.unit(750, "miles")
  26000. },
  26001. {
  26002. name: "Planetary",
  26003. height: math.unit(15000, "miles")
  26004. },
  26005. ]
  26006. ))
  26007. characterMakers.push(() => makeCharacter(
  26008. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26009. {
  26010. front: {
  26011. height: math.unit(14, "feet"),
  26012. weight: math.unit(959, "lb"),
  26013. name: "Front",
  26014. image: {
  26015. source: "./media/characters/arsenal/front.svg",
  26016. extra: 2357 / 2157,
  26017. bottom: 93 / 2458
  26018. }
  26019. },
  26020. },
  26021. [
  26022. {
  26023. name: "Normal",
  26024. height: math.unit(14, "feet"),
  26025. default: true
  26026. },
  26027. ]
  26028. ))
  26029. characterMakers.push(() => makeCharacter(
  26030. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26031. {
  26032. front: {
  26033. height: math.unit(6, "feet"),
  26034. weight: math.unit(150, "lb"),
  26035. name: "Front",
  26036. image: {
  26037. source: "./media/characters/adira/front.svg",
  26038. extra: 1078 / 1029,
  26039. bottom: 87 / 1166
  26040. }
  26041. },
  26042. },
  26043. [
  26044. {
  26045. name: "Micro",
  26046. height: math.unit(4, "inches"),
  26047. default: true
  26048. },
  26049. {
  26050. name: "Macro",
  26051. height: math.unit(50, "feet")
  26052. },
  26053. ]
  26054. ))
  26055. characterMakers.push(() => makeCharacter(
  26056. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26057. {
  26058. front: {
  26059. height: math.unit(16, "feet"),
  26060. weight: math.unit(1000, "lb"),
  26061. name: "Front",
  26062. image: {
  26063. source: "./media/characters/grim/front.svg",
  26064. extra: 622 / 614,
  26065. bottom: 18.1 / 642
  26066. }
  26067. },
  26068. back: {
  26069. height: math.unit(16, "feet"),
  26070. weight: math.unit(1000, "lb"),
  26071. name: "Back",
  26072. image: {
  26073. source: "./media/characters/grim/back.svg",
  26074. extra: 610.6 / 602,
  26075. bottom: 40.8 / 652
  26076. }
  26077. },
  26078. hunched: {
  26079. height: math.unit(9.75, "feet"),
  26080. weight: math.unit(1000, "lb"),
  26081. name: "Hunched",
  26082. image: {
  26083. source: "./media/characters/grim/hunched.svg",
  26084. extra: 304 / 297,
  26085. bottom: 35.4 / 394
  26086. }
  26087. },
  26088. },
  26089. [
  26090. {
  26091. name: "Normal",
  26092. height: math.unit(16, "feet"),
  26093. default: true
  26094. },
  26095. ]
  26096. ))
  26097. characterMakers.push(() => makeCharacter(
  26098. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26099. {
  26100. front: {
  26101. height: math.unit(2.3, "meters"),
  26102. weight: math.unit(300, "lb"),
  26103. name: "Front",
  26104. image: {
  26105. source: "./media/characters/sinja/front-sfw.svg",
  26106. extra: 1393 / 1294,
  26107. bottom: 70 / 1463
  26108. }
  26109. },
  26110. frontNsfw: {
  26111. height: math.unit(2.3, "meters"),
  26112. weight: math.unit(300, "lb"),
  26113. name: "Front (NSFW)",
  26114. image: {
  26115. source: "./media/characters/sinja/front-nsfw.svg",
  26116. extra: 1393 / 1294,
  26117. bottom: 70 / 1463
  26118. }
  26119. },
  26120. back: {
  26121. height: math.unit(2.3, "meters"),
  26122. weight: math.unit(300, "lb"),
  26123. name: "Back",
  26124. image: {
  26125. source: "./media/characters/sinja/back.svg",
  26126. extra: 1393 / 1294,
  26127. bottom: 70 / 1463
  26128. }
  26129. },
  26130. head: {
  26131. height: math.unit(1.771, "feet"),
  26132. name: "Head",
  26133. image: {
  26134. source: "./media/characters/sinja/head.svg"
  26135. }
  26136. },
  26137. slit: {
  26138. height: math.unit(0.8, "feet"),
  26139. name: "Slit",
  26140. image: {
  26141. source: "./media/characters/sinja/slit.svg"
  26142. }
  26143. },
  26144. },
  26145. [
  26146. {
  26147. name: "Normal",
  26148. height: math.unit(2.3, "meters")
  26149. },
  26150. {
  26151. name: "Macro",
  26152. height: math.unit(91, "meters"),
  26153. default: true
  26154. },
  26155. {
  26156. name: "Megamacro",
  26157. height: math.unit(91440, "meters")
  26158. },
  26159. {
  26160. name: "Gigamacro",
  26161. height: math.unit(60960000, "meters")
  26162. },
  26163. {
  26164. name: "Teramacro",
  26165. height: math.unit(9144000000, "meters")
  26166. },
  26167. ]
  26168. ))
  26169. characterMakers.push(() => makeCharacter(
  26170. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26171. {
  26172. front: {
  26173. height: math.unit(1.7, "meters"),
  26174. weight: math.unit(130, "lb"),
  26175. name: "Front",
  26176. image: {
  26177. source: "./media/characters/kyu/front.svg",
  26178. extra: 415 / 395,
  26179. bottom: 5 / 420
  26180. }
  26181. },
  26182. head: {
  26183. height: math.unit(1.75, "feet"),
  26184. name: "Head",
  26185. image: {
  26186. source: "./media/characters/kyu/head.svg"
  26187. }
  26188. },
  26189. foot: {
  26190. height: math.unit(0.81, "feet"),
  26191. name: "Foot",
  26192. image: {
  26193. source: "./media/characters/kyu/foot.svg"
  26194. }
  26195. },
  26196. },
  26197. [
  26198. {
  26199. name: "Normal",
  26200. height: math.unit(1.7, "meters")
  26201. },
  26202. {
  26203. name: "Macro",
  26204. height: math.unit(131, "feet"),
  26205. default: true
  26206. },
  26207. {
  26208. name: "Megamacro",
  26209. height: math.unit(91440, "meters")
  26210. },
  26211. {
  26212. name: "Gigamacro",
  26213. height: math.unit(60960000, "meters")
  26214. },
  26215. {
  26216. name: "Teramacro",
  26217. height: math.unit(9144000000, "meters")
  26218. },
  26219. ]
  26220. ))
  26221. characterMakers.push(() => makeCharacter(
  26222. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26223. {
  26224. front: {
  26225. height: math.unit(7 + 1 / 12, "feet"),
  26226. weight: math.unit(250, "lb"),
  26227. name: "Front",
  26228. image: {
  26229. source: "./media/characters/joey/front.svg",
  26230. extra: 1791 / 1537,
  26231. bottom: 28 / 1816
  26232. }
  26233. },
  26234. },
  26235. [
  26236. {
  26237. name: "Micro",
  26238. height: math.unit(3, "inches")
  26239. },
  26240. {
  26241. name: "Normal",
  26242. height: math.unit(7 + 1 / 12, "feet"),
  26243. default: true
  26244. },
  26245. ]
  26246. ))
  26247. characterMakers.push(() => makeCharacter(
  26248. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26249. {
  26250. front: {
  26251. height: math.unit(165, "cm"),
  26252. weight: math.unit(140, "lb"),
  26253. name: "Front",
  26254. image: {
  26255. source: "./media/characters/sam-evans/front.svg",
  26256. extra: 3417 / 3230,
  26257. bottom: 41.3 / 3417
  26258. }
  26259. },
  26260. frontSixTails: {
  26261. height: math.unit(165, "cm"),
  26262. weight: math.unit(140, "lb"),
  26263. name: "Front-six-tails",
  26264. image: {
  26265. source: "./media/characters/sam-evans/front-six-tails.svg",
  26266. extra: 3417 / 3230,
  26267. bottom: 41.3 / 3417
  26268. }
  26269. },
  26270. back: {
  26271. height: math.unit(165, "cm"),
  26272. weight: math.unit(140, "lb"),
  26273. name: "Back",
  26274. image: {
  26275. source: "./media/characters/sam-evans/back.svg",
  26276. extra: 3227 / 3032,
  26277. bottom: 6.8 / 3234
  26278. }
  26279. },
  26280. face: {
  26281. height: math.unit(0.68, "feet"),
  26282. name: "Face",
  26283. image: {
  26284. source: "./media/characters/sam-evans/face.svg"
  26285. }
  26286. },
  26287. },
  26288. [
  26289. {
  26290. name: "Normal",
  26291. height: math.unit(165, "cm"),
  26292. default: true
  26293. },
  26294. {
  26295. name: "Macro",
  26296. height: math.unit(100, "meters")
  26297. },
  26298. {
  26299. name: "Macro+",
  26300. height: math.unit(800, "meters")
  26301. },
  26302. {
  26303. name: "Macro++",
  26304. height: math.unit(3, "km")
  26305. },
  26306. {
  26307. name: "Macro+++",
  26308. height: math.unit(30, "km")
  26309. },
  26310. ]
  26311. ))
  26312. characterMakers.push(() => makeCharacter(
  26313. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26314. {
  26315. front: {
  26316. height: math.unit(10, "feet"),
  26317. weight: math.unit(750, "lb"),
  26318. name: "Front",
  26319. image: {
  26320. source: "./media/characters/juliet-a/front.svg",
  26321. extra: 1766 / 1720,
  26322. bottom: 43 / 1809
  26323. }
  26324. },
  26325. back: {
  26326. height: math.unit(10, "feet"),
  26327. weight: math.unit(750, "lb"),
  26328. name: "Back",
  26329. image: {
  26330. source: "./media/characters/juliet-a/back.svg",
  26331. extra: 1781 / 1734,
  26332. bottom: 35 / 1810,
  26333. }
  26334. },
  26335. },
  26336. [
  26337. {
  26338. name: "Normal",
  26339. height: math.unit(10, "feet"),
  26340. default: true
  26341. },
  26342. {
  26343. name: "Dragon Form",
  26344. height: math.unit(250, "feet")
  26345. },
  26346. {
  26347. name: "Macro",
  26348. height: math.unit(1000, "feet")
  26349. },
  26350. {
  26351. name: "Megamacro",
  26352. height: math.unit(10000, "feet")
  26353. }
  26354. ]
  26355. ))
  26356. characterMakers.push(() => makeCharacter(
  26357. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26358. {
  26359. regular: {
  26360. height: math.unit(7 + 3 / 12, "feet"),
  26361. weight: math.unit(260, "lb"),
  26362. name: "Regular",
  26363. image: {
  26364. source: "./media/characters/wild/regular.svg",
  26365. extra: 97.45 / 92,
  26366. bottom: 6.8 / 104.3
  26367. }
  26368. },
  26369. biggums: {
  26370. height: math.unit(8 + 6 / 12, "feet"),
  26371. weight: math.unit(425, "lb"),
  26372. name: "Biggums",
  26373. image: {
  26374. source: "./media/characters/wild/biggums.svg",
  26375. extra: 97.45 / 92,
  26376. bottom: 7.5 / 132.34
  26377. }
  26378. },
  26379. mawRegular: {
  26380. height: math.unit(1.24, "feet"),
  26381. name: "Maw (Regular)",
  26382. image: {
  26383. source: "./media/characters/wild/maw.svg"
  26384. }
  26385. },
  26386. mawBiggums: {
  26387. height: math.unit(1.47, "feet"),
  26388. name: "Maw (Biggums)",
  26389. image: {
  26390. source: "./media/characters/wild/maw.svg"
  26391. }
  26392. },
  26393. },
  26394. [
  26395. {
  26396. name: "Normal",
  26397. height: math.unit(7 + 3 / 12, "feet"),
  26398. default: true
  26399. },
  26400. ]
  26401. ))
  26402. characterMakers.push(() => makeCharacter(
  26403. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26404. {
  26405. front: {
  26406. height: math.unit(2.5, "meters"),
  26407. weight: math.unit(200, "kg"),
  26408. name: "Front",
  26409. image: {
  26410. source: "./media/characters/vidar/front.svg",
  26411. extra: 2994 / 2795,
  26412. bottom: 56 / 3061
  26413. }
  26414. },
  26415. back: {
  26416. height: math.unit(2.5, "meters"),
  26417. weight: math.unit(200, "kg"),
  26418. name: "Back",
  26419. image: {
  26420. source: "./media/characters/vidar/back.svg",
  26421. extra: 3131 / 2928,
  26422. bottom: 13.5 / 3141.5
  26423. }
  26424. },
  26425. feral: {
  26426. height: math.unit(2.5, "meters"),
  26427. weight: math.unit(2000, "kg"),
  26428. name: "Feral",
  26429. image: {
  26430. source: "./media/characters/vidar/feral.svg",
  26431. extra: 2790 / 1765,
  26432. bottom: 6 / 2796
  26433. }
  26434. },
  26435. },
  26436. [
  26437. {
  26438. name: "Normal",
  26439. height: math.unit(2.5, "meters"),
  26440. default: true
  26441. },
  26442. {
  26443. name: "Macro",
  26444. height: math.unit(100, "meters")
  26445. },
  26446. ]
  26447. ))
  26448. characterMakers.push(() => makeCharacter(
  26449. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26450. {
  26451. front: {
  26452. height: math.unit(5 + 9 / 12, "feet"),
  26453. weight: math.unit(120, "lb"),
  26454. name: "Front",
  26455. image: {
  26456. source: "./media/characters/ash/front.svg",
  26457. extra: 2189 / 1961,
  26458. bottom: 5.2 / 2194
  26459. }
  26460. },
  26461. },
  26462. [
  26463. {
  26464. name: "Normal",
  26465. height: math.unit(5 + 9 / 12, "feet"),
  26466. default: true
  26467. },
  26468. ]
  26469. ))
  26470. characterMakers.push(() => makeCharacter(
  26471. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26472. {
  26473. front: {
  26474. height: math.unit(9, "feet"),
  26475. weight: math.unit(10000, "lb"),
  26476. name: "Front",
  26477. image: {
  26478. source: "./media/characters/gygabite/front.svg",
  26479. bottom: 31.7 / 537.8,
  26480. extra: 505 / 370
  26481. }
  26482. },
  26483. },
  26484. [
  26485. {
  26486. name: "Normal",
  26487. height: math.unit(9, "feet"),
  26488. default: true
  26489. },
  26490. ]
  26491. ))
  26492. characterMakers.push(() => makeCharacter(
  26493. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26494. {
  26495. front: {
  26496. height: math.unit(12, "feet"),
  26497. weight: math.unit(35000, "lb"),
  26498. name: "Front",
  26499. image: {
  26500. source: "./media/characters/p0tat0/front.svg",
  26501. extra: 1065 / 921,
  26502. bottom: 55.7 / 1121.25
  26503. }
  26504. },
  26505. },
  26506. [
  26507. {
  26508. name: "Normal",
  26509. height: math.unit(12, "feet"),
  26510. default: true
  26511. },
  26512. ]
  26513. ))
  26514. characterMakers.push(() => makeCharacter(
  26515. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26516. {
  26517. side: {
  26518. height: math.unit(6.5, "feet"),
  26519. weight: math.unit(800, "lb"),
  26520. name: "Side",
  26521. image: {
  26522. source: "./media/characters/dusk/side.svg",
  26523. extra: 615 / 373,
  26524. bottom: 53 / 664
  26525. }
  26526. },
  26527. sitting: {
  26528. height: math.unit(7, "feet"),
  26529. weight: math.unit(800, "lb"),
  26530. name: "Sitting",
  26531. image: {
  26532. source: "./media/characters/dusk/sitting.svg",
  26533. extra: 753 / 425,
  26534. bottom: 33 / 774
  26535. }
  26536. },
  26537. head: {
  26538. height: math.unit(6.1, "feet"),
  26539. name: "Head",
  26540. image: {
  26541. source: "./media/characters/dusk/head.svg"
  26542. }
  26543. },
  26544. },
  26545. [
  26546. {
  26547. name: "Normal",
  26548. height: math.unit(7, "feet"),
  26549. default: true
  26550. },
  26551. ]
  26552. ))
  26553. characterMakers.push(() => makeCharacter(
  26554. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26555. {
  26556. front: {
  26557. height: math.unit(15, "feet"),
  26558. weight: math.unit(7000, "lb"),
  26559. name: "Front",
  26560. image: {
  26561. source: "./media/characters/jay-direwolf/front.svg",
  26562. extra: 1810 / 1732,
  26563. bottom: 66 / 1892
  26564. }
  26565. },
  26566. },
  26567. [
  26568. {
  26569. name: "Normal",
  26570. height: math.unit(15, "feet"),
  26571. default: true
  26572. },
  26573. ]
  26574. ))
  26575. characterMakers.push(() => makeCharacter(
  26576. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26577. {
  26578. front: {
  26579. height: math.unit(4 + 9 / 12, "feet"),
  26580. weight: math.unit(130, "lb"),
  26581. name: "Front",
  26582. image: {
  26583. source: "./media/characters/anchovie/front.svg",
  26584. extra: 382 / 350,
  26585. bottom: 25 / 409
  26586. }
  26587. },
  26588. back: {
  26589. height: math.unit(4 + 9 / 12, "feet"),
  26590. weight: math.unit(130, "lb"),
  26591. name: "Back",
  26592. image: {
  26593. source: "./media/characters/anchovie/back.svg",
  26594. extra: 385 / 352,
  26595. bottom: 16.6 / 402
  26596. }
  26597. },
  26598. frontDressed: {
  26599. height: math.unit(4 + 9 / 12, "feet"),
  26600. weight: math.unit(130, "lb"),
  26601. name: "Front (Dressed)",
  26602. image: {
  26603. source: "./media/characters/anchovie/front-dressed.svg",
  26604. extra: 382 / 350,
  26605. bottom: 25 / 409
  26606. }
  26607. },
  26608. backDressed: {
  26609. height: math.unit(4 + 9 / 12, "feet"),
  26610. weight: math.unit(130, "lb"),
  26611. name: "Back (Dressed)",
  26612. image: {
  26613. source: "./media/characters/anchovie/back-dressed.svg",
  26614. extra: 385 / 352,
  26615. bottom: 16.6 / 402
  26616. }
  26617. },
  26618. },
  26619. [
  26620. {
  26621. name: "Micro",
  26622. height: math.unit(6.4, "inches")
  26623. },
  26624. {
  26625. name: "Normal",
  26626. height: math.unit(4 + 9 / 12, "feet"),
  26627. default: true
  26628. },
  26629. ]
  26630. ))
  26631. characterMakers.push(() => makeCharacter(
  26632. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26633. {
  26634. front: {
  26635. height: math.unit(2, "meters"),
  26636. weight: math.unit(180, "lb"),
  26637. name: "Front",
  26638. image: {
  26639. source: "./media/characters/acidrenamon/front.svg",
  26640. extra: 987 / 890,
  26641. bottom: 22.8 / 1009
  26642. }
  26643. },
  26644. back: {
  26645. height: math.unit(2, "meters"),
  26646. weight: math.unit(180, "lb"),
  26647. name: "Back",
  26648. image: {
  26649. source: "./media/characters/acidrenamon/back.svg",
  26650. extra: 983 / 891,
  26651. bottom: 8.4 / 992
  26652. }
  26653. },
  26654. head: {
  26655. height: math.unit(1.92, "feet"),
  26656. name: "Head",
  26657. image: {
  26658. source: "./media/characters/acidrenamon/head.svg"
  26659. }
  26660. },
  26661. rump: {
  26662. height: math.unit(1.72, "feet"),
  26663. name: "Rump",
  26664. image: {
  26665. source: "./media/characters/acidrenamon/rump.svg"
  26666. }
  26667. },
  26668. tail: {
  26669. height: math.unit(4.2, "feet"),
  26670. name: "Tail",
  26671. image: {
  26672. source: "./media/characters/acidrenamon/tail.svg"
  26673. }
  26674. },
  26675. },
  26676. [
  26677. {
  26678. name: "Normal",
  26679. height: math.unit(2, "meters"),
  26680. default: true
  26681. },
  26682. {
  26683. name: "Minimacro",
  26684. height: math.unit(7, "meters")
  26685. },
  26686. {
  26687. name: "Macro",
  26688. height: math.unit(200, "meters")
  26689. },
  26690. {
  26691. name: "Gigamacro",
  26692. height: math.unit(0.2, "earths")
  26693. },
  26694. ]
  26695. ))
  26696. characterMakers.push(() => makeCharacter(
  26697. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26698. {
  26699. front: {
  26700. height: math.unit(6, "feet"),
  26701. weight: math.unit(150, "lb"),
  26702. name: "Front",
  26703. image: {
  26704. source: "./media/characters/kenzie-lee/front.svg",
  26705. extra: 1525 / 1465,
  26706. bottom: 45 / 1570
  26707. }
  26708. },
  26709. side: {
  26710. height: math.unit(6, "feet"),
  26711. weight: math.unit(150, "lb"),
  26712. name: "Side",
  26713. image: {
  26714. source: "./media/characters/kenzie-lee/side.svg",
  26715. extra: 5505 / 5383,
  26716. bottom: 60 / 5573
  26717. }
  26718. },
  26719. },
  26720. [
  26721. {
  26722. name: "Normal",
  26723. height: math.unit(152, "feet"),
  26724. default: true
  26725. },
  26726. {
  26727. name: "Megamacro",
  26728. height: math.unit(7, "miles")
  26729. },
  26730. {
  26731. name: "Gigamacro",
  26732. height: math.unit(8000, "miles")
  26733. },
  26734. ]
  26735. ))
  26736. characterMakers.push(() => makeCharacter(
  26737. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26738. {
  26739. side: {
  26740. height: math.unit(6, "feet"),
  26741. weight: math.unit(150, "lb"),
  26742. name: "Side",
  26743. image: {
  26744. source: "./media/characters/withers/side.svg",
  26745. extra: 1830 / 1728,
  26746. bottom: 96 / 1927
  26747. }
  26748. },
  26749. front: {
  26750. height: math.unit(6, "feet"),
  26751. weight: math.unit(150, "lb"),
  26752. name: "Front",
  26753. image: {
  26754. source: "./media/characters/withers/front.svg",
  26755. extra: 1514 / 1438,
  26756. bottom: 118 / 1632
  26757. }
  26758. },
  26759. },
  26760. [
  26761. {
  26762. name: "Macro",
  26763. height: math.unit(168, "feet"),
  26764. default: true
  26765. },
  26766. {
  26767. name: "Megamacro",
  26768. height: math.unit(15, "miles")
  26769. }
  26770. ]
  26771. ))
  26772. characterMakers.push(() => makeCharacter(
  26773. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26774. {
  26775. front: {
  26776. height: math.unit(6 + 7 / 12, "feet"),
  26777. weight: math.unit(250, "lb"),
  26778. name: "Front",
  26779. image: {
  26780. source: "./media/characters/nemoskii/front.svg",
  26781. extra: 2270 / 1734,
  26782. bottom: 86 / 2354
  26783. }
  26784. },
  26785. back: {
  26786. height: math.unit(6 + 7 / 12, "feet"),
  26787. weight: math.unit(250, "lb"),
  26788. name: "Back",
  26789. image: {
  26790. source: "./media/characters/nemoskii/back.svg",
  26791. extra: 1845 / 1788,
  26792. bottom: 10.5 / 1852
  26793. }
  26794. },
  26795. head: {
  26796. height: math.unit(1.31, "feet"),
  26797. name: "Head",
  26798. image: {
  26799. source: "./media/characters/nemoskii/head.svg"
  26800. }
  26801. },
  26802. },
  26803. [
  26804. {
  26805. name: "Normal",
  26806. height: math.unit(6 + 7 / 12, "feet"),
  26807. default: true
  26808. },
  26809. ]
  26810. ))
  26811. characterMakers.push(() => makeCharacter(
  26812. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26813. {
  26814. front: {
  26815. height: math.unit(1, "mile"),
  26816. weight: math.unit(265261.9, "lb"),
  26817. name: "Front",
  26818. image: {
  26819. source: "./media/characters/shui/front.svg",
  26820. extra: 1633 / 1564,
  26821. bottom: 91.5 / 1726
  26822. }
  26823. },
  26824. },
  26825. [
  26826. {
  26827. name: "Macro",
  26828. height: math.unit(1, "mile"),
  26829. default: true
  26830. },
  26831. ]
  26832. ))
  26833. characterMakers.push(() => makeCharacter(
  26834. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26835. {
  26836. front: {
  26837. height: math.unit(12 + 6 / 12, "feet"),
  26838. weight: math.unit(1342, "lb"),
  26839. name: "Front",
  26840. image: {
  26841. source: "./media/characters/arokh-takakura/front.svg",
  26842. extra: 1089 / 1043,
  26843. bottom: 77.4 / 1176.7
  26844. }
  26845. },
  26846. back: {
  26847. height: math.unit(12 + 6 / 12, "feet"),
  26848. weight: math.unit(1342, "lb"),
  26849. name: "Back",
  26850. image: {
  26851. source: "./media/characters/arokh-takakura/back.svg",
  26852. extra: 1046 / 1019,
  26853. bottom: 102 / 1150
  26854. }
  26855. },
  26856. },
  26857. [
  26858. {
  26859. name: "Big",
  26860. height: math.unit(12 + 6 / 12, "feet"),
  26861. default: true
  26862. },
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26867. {
  26868. front: {
  26869. height: math.unit(5 + 6 / 12, "feet"),
  26870. weight: math.unit(150, "lb"),
  26871. name: "Front",
  26872. image: {
  26873. source: "./media/characters/theo/front.svg",
  26874. extra: 1184 / 1131,
  26875. bottom: 7.4 / 1191
  26876. }
  26877. },
  26878. },
  26879. [
  26880. {
  26881. name: "Micro",
  26882. height: math.unit(5, "inches")
  26883. },
  26884. {
  26885. name: "Normal",
  26886. height: math.unit(5 + 6 / 12, "feet"),
  26887. default: true
  26888. },
  26889. ]
  26890. ))
  26891. characterMakers.push(() => makeCharacter(
  26892. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26893. {
  26894. front: {
  26895. height: math.unit(5 + 9 / 12, "feet"),
  26896. weight: math.unit(130, "lb"),
  26897. name: "Front",
  26898. image: {
  26899. source: "./media/characters/cecelia-swift/front.svg",
  26900. extra: 502 / 484,
  26901. bottom: 23 / 523
  26902. }
  26903. },
  26904. back: {
  26905. height: math.unit(5 + 9 / 12, "feet"),
  26906. weight: math.unit(130, "lb"),
  26907. name: "Back",
  26908. image: {
  26909. source: "./media/characters/cecelia-swift/back.svg",
  26910. extra: 499 / 485,
  26911. bottom: 12 / 511
  26912. }
  26913. },
  26914. head: {
  26915. height: math.unit(0.90, "feet"),
  26916. name: "Head",
  26917. image: {
  26918. source: "./media/characters/cecelia-swift/head.svg"
  26919. }
  26920. },
  26921. rump: {
  26922. height: math.unit(1.75, "feet"),
  26923. name: "Rump",
  26924. image: {
  26925. source: "./media/characters/cecelia-swift/rump.svg"
  26926. }
  26927. },
  26928. },
  26929. [
  26930. {
  26931. name: "Normal",
  26932. height: math.unit(5 + 9 / 12, "feet"),
  26933. default: true
  26934. },
  26935. {
  26936. name: "Big",
  26937. height: math.unit(50, "feet")
  26938. },
  26939. {
  26940. name: "Macro",
  26941. height: math.unit(100, "feet")
  26942. },
  26943. {
  26944. name: "Macro+",
  26945. height: math.unit(500, "feet")
  26946. },
  26947. {
  26948. name: "Macro++",
  26949. height: math.unit(1000, "feet")
  26950. },
  26951. ]
  26952. ))
  26953. characterMakers.push(() => makeCharacter(
  26954. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26955. {
  26956. front: {
  26957. height: math.unit(6, "feet"),
  26958. weight: math.unit(150, "lb"),
  26959. name: "Front",
  26960. image: {
  26961. source: "./media/characters/kaunan/front.svg",
  26962. extra: 2890 / 2523,
  26963. bottom: 49 / 2939
  26964. }
  26965. },
  26966. },
  26967. [
  26968. {
  26969. name: "Macro",
  26970. height: math.unit(150, "feet"),
  26971. default: true
  26972. },
  26973. ]
  26974. ))
  26975. characterMakers.push(() => makeCharacter(
  26976. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26977. {
  26978. front: {
  26979. height: math.unit(175, "cm"),
  26980. weight: math.unit(60, "kg"),
  26981. name: "Front",
  26982. image: {
  26983. source: "./media/characters/fei/front.svg",
  26984. extra: 2581 / 2400,
  26985. bottom: 82.2 / 2663
  26986. }
  26987. },
  26988. },
  26989. [
  26990. {
  26991. name: "Mortal",
  26992. height: math.unit(175, "cm")
  26993. },
  26994. {
  26995. name: "Normal",
  26996. height: math.unit(3500, "m"),
  26997. default: true
  26998. },
  26999. {
  27000. name: "Stroll",
  27001. height: math.unit(17.5, "km")
  27002. },
  27003. {
  27004. name: "Showoff",
  27005. height: math.unit(175, "km")
  27006. },
  27007. ]
  27008. ))
  27009. characterMakers.push(() => makeCharacter(
  27010. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27011. {
  27012. front: {
  27013. height: math.unit(7, "feet"),
  27014. weight: math.unit(1000, "kg"),
  27015. name: "Front",
  27016. image: {
  27017. source: "./media/characters/edrax/front.svg",
  27018. extra: 2838 / 2550,
  27019. bottom: 130 / 2968
  27020. }
  27021. },
  27022. },
  27023. [
  27024. {
  27025. name: "Small",
  27026. height: math.unit(7, "feet")
  27027. },
  27028. {
  27029. name: "Normal",
  27030. height: math.unit(1500, "meters")
  27031. },
  27032. {
  27033. name: "Mega",
  27034. height: math.unit(12000000, "km"),
  27035. default: true
  27036. },
  27037. {
  27038. name: "Megamacro",
  27039. height: math.unit(10600000, "lightyears")
  27040. },
  27041. {
  27042. name: "Hypermacro",
  27043. height: math.unit(256, "yottameters")
  27044. },
  27045. ]
  27046. ))
  27047. characterMakers.push(() => makeCharacter(
  27048. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27049. {
  27050. front: {
  27051. height: math.unit(10, "feet"),
  27052. weight: math.unit(750, "lb"),
  27053. name: "Front",
  27054. image: {
  27055. source: "./media/characters/clove/front.svg",
  27056. extra: 2031 / 1860,
  27057. bottom: 47.8 / 2080
  27058. }
  27059. },
  27060. back: {
  27061. height: math.unit(10, "feet"),
  27062. weight: math.unit(750, "lb"),
  27063. name: "Back",
  27064. image: {
  27065. source: "./media/characters/clove/back.svg",
  27066. extra: 2025 / 1859,
  27067. bottom: 46 / 2071
  27068. }
  27069. },
  27070. },
  27071. [
  27072. {
  27073. name: "Normal",
  27074. height: math.unit(10, "feet")
  27075. },
  27076. ]
  27077. ))
  27078. characterMakers.push(() => makeCharacter(
  27079. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27080. {
  27081. front: {
  27082. height: math.unit(4, "feet"),
  27083. weight: math.unit(50, "lb"),
  27084. name: "Front",
  27085. image: {
  27086. source: "./media/characters/alex-rabbit/front.svg",
  27087. extra: 507 / 458,
  27088. bottom: 18.5 / 527
  27089. }
  27090. },
  27091. back: {
  27092. height: math.unit(4, "feet"),
  27093. weight: math.unit(50, "lb"),
  27094. name: "Back",
  27095. image: {
  27096. source: "./media/characters/alex-rabbit/back.svg",
  27097. extra: 502 / 460,
  27098. bottom: 18.9 / 521
  27099. }
  27100. },
  27101. },
  27102. [
  27103. {
  27104. name: "Normal",
  27105. height: math.unit(4, "feet"),
  27106. default: true
  27107. },
  27108. ]
  27109. ))
  27110. characterMakers.push(() => makeCharacter(
  27111. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27112. {
  27113. front: {
  27114. height: math.unit(1 + 3 / 12, "feet"),
  27115. weight: math.unit(80, "lb"),
  27116. name: "Front",
  27117. image: {
  27118. source: "./media/characters/zander-rose/front.svg",
  27119. extra: 916 / 797,
  27120. bottom: 17 / 933
  27121. }
  27122. },
  27123. back: {
  27124. height: math.unit(1 + 3 / 12, "feet"),
  27125. weight: math.unit(80, "lb"),
  27126. name: "Back",
  27127. image: {
  27128. source: "./media/characters/zander-rose/back.svg",
  27129. extra: 903 / 779,
  27130. bottom: 31 / 934
  27131. }
  27132. },
  27133. },
  27134. [
  27135. {
  27136. name: "Normal",
  27137. height: math.unit(1 + 3 / 12, "feet"),
  27138. default: true
  27139. },
  27140. ]
  27141. ))
  27142. characterMakers.push(() => makeCharacter(
  27143. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27144. {
  27145. anthro: {
  27146. height: math.unit(6, "feet"),
  27147. weight: math.unit(150, "lb"),
  27148. name: "Anthro",
  27149. image: {
  27150. source: "./media/characters/razz/anthro.svg",
  27151. extra: 1437 / 1343,
  27152. bottom: 48 / 1485
  27153. }
  27154. },
  27155. feral: {
  27156. height: math.unit(6, "feet"),
  27157. weight: math.unit(150, "lb"),
  27158. name: "Feral",
  27159. image: {
  27160. source: "./media/characters/razz/feral.svg",
  27161. extra: 2569 / 1385,
  27162. bottom: 95 / 2664
  27163. }
  27164. },
  27165. },
  27166. [
  27167. {
  27168. name: "Normal",
  27169. height: math.unit(6, "feet"),
  27170. default: true
  27171. },
  27172. ]
  27173. ))
  27174. characterMakers.push(() => makeCharacter(
  27175. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27176. {
  27177. front: {
  27178. height: math.unit(9 + 4 / 12, "feet"),
  27179. weight: math.unit(500, "lb"),
  27180. name: "Front",
  27181. image: {
  27182. source: "./media/characters/morrigan/front.svg",
  27183. extra: 2707 / 2579,
  27184. bottom: 156 / 2863
  27185. }
  27186. },
  27187. },
  27188. [
  27189. {
  27190. name: "Normal",
  27191. height: math.unit(9 + 4 / 12, "feet"),
  27192. default: true
  27193. },
  27194. ]
  27195. ))
  27196. characterMakers.push(() => makeCharacter(
  27197. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27198. {
  27199. front: {
  27200. height: math.unit(5, "stories"),
  27201. weight: math.unit(4000, "lb"),
  27202. name: "Front",
  27203. image: {
  27204. source: "./media/characters/jenene/front.svg",
  27205. extra: 1780 / 1710,
  27206. bottom: 57 / 1837
  27207. }
  27208. },
  27209. },
  27210. [
  27211. {
  27212. name: "Normal",
  27213. height: math.unit(5, "stories"),
  27214. default: true
  27215. },
  27216. ]
  27217. ))
  27218. characterMakers.push(() => makeCharacter(
  27219. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27220. {
  27221. front: {
  27222. height: math.unit(6, "feet"),
  27223. weight: math.unit(150, "lb"),
  27224. name: "Front",
  27225. image: {
  27226. source: "./media/characters/vix-archaser/front.svg",
  27227. extra: 2767 / 2562,
  27228. bottom: 36 / 2803
  27229. }
  27230. },
  27231. },
  27232. [
  27233. {
  27234. name: "Micro",
  27235. height: math.unit(1, "foot")
  27236. },
  27237. {
  27238. name: "Normal",
  27239. height: math.unit(6 + 5 / 12, "feet")
  27240. },
  27241. {
  27242. name: "Minimacro",
  27243. height: math.unit(500, "feet")
  27244. },
  27245. {
  27246. name: "Macro",
  27247. height: math.unit(4, "miles")
  27248. },
  27249. {
  27250. name: "Megamacro",
  27251. height: math.unit(250, "miles"),
  27252. default: true
  27253. },
  27254. {
  27255. name: "Gigamacro",
  27256. height: math.unit(1, "universe")
  27257. },
  27258. {
  27259. name: "Endgame",
  27260. height: math.unit(100, "multiverses")
  27261. }
  27262. ]
  27263. ))
  27264. characterMakers.push(() => makeCharacter(
  27265. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27266. {
  27267. taurSfw: {
  27268. height: math.unit(10, "meters"),
  27269. weight: math.unit(17500, "kg"),
  27270. name: "Taur",
  27271. image: {
  27272. source: "./media/characters/faey/taur-sfw.svg",
  27273. extra: 1200 / 968,
  27274. bottom: 41 / 1241
  27275. }
  27276. },
  27277. chestmaw: {
  27278. height: math.unit(2.01, "meters"),
  27279. name: "Chestmaw",
  27280. image: {
  27281. source: "./media/characters/faey/chestmaw.svg"
  27282. }
  27283. },
  27284. foot: {
  27285. height: math.unit(2.43, "meters"),
  27286. name: "Foot",
  27287. image: {
  27288. source: "./media/characters/faey/foot.svg"
  27289. }
  27290. },
  27291. jaws: {
  27292. height: math.unit(1.66, "meters"),
  27293. name: "Jaws",
  27294. image: {
  27295. source: "./media/characters/faey/jaws.svg"
  27296. }
  27297. },
  27298. tongues: {
  27299. height: math.unit(2.01, "meters"),
  27300. name: "Tongues",
  27301. image: {
  27302. source: "./media/characters/faey/tongues.svg"
  27303. }
  27304. },
  27305. },
  27306. [
  27307. {
  27308. name: "Small",
  27309. height: math.unit(10, "meters"),
  27310. default: true
  27311. },
  27312. {
  27313. name: "Big",
  27314. height: math.unit(500000, "km")
  27315. },
  27316. ]
  27317. ))
  27318. characterMakers.push(() => makeCharacter(
  27319. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27320. {
  27321. front: {
  27322. height: math.unit(7, "feet"),
  27323. weight: math.unit(275, "lb"),
  27324. name: "Front",
  27325. image: {
  27326. source: "./media/characters/roku/front.svg",
  27327. extra: 903 / 878,
  27328. bottom: 37 / 940
  27329. }
  27330. },
  27331. },
  27332. [
  27333. {
  27334. name: "Normal",
  27335. height: math.unit(7, "feet"),
  27336. default: true
  27337. },
  27338. {
  27339. name: "Macro",
  27340. height: math.unit(500, "feet")
  27341. },
  27342. {
  27343. name: "Megamacro",
  27344. height: math.unit(200, "miles")
  27345. },
  27346. ]
  27347. ))
  27348. characterMakers.push(() => makeCharacter(
  27349. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27350. {
  27351. front: {
  27352. height: math.unit(6 + 2 / 12, "feet"),
  27353. weight: math.unit(150, "lb"),
  27354. name: "Front",
  27355. image: {
  27356. source: "./media/characters/lira/front.svg",
  27357. extra: 1727 / 1605,
  27358. bottom: 26 / 1753
  27359. }
  27360. },
  27361. back: {
  27362. height: math.unit(6 + 2 / 12, "feet"),
  27363. weight: math.unit(150, "lb"),
  27364. name: "Back",
  27365. image: {
  27366. source: "./media/characters/lira/back.svg",
  27367. extra: 1713 / 159,
  27368. bottom: 20 / 1733
  27369. }
  27370. },
  27371. hand: {
  27372. height: math.unit(0.75, "feet"),
  27373. name: "Hand",
  27374. image: {
  27375. source: "./media/characters/lira/hand.svg"
  27376. }
  27377. },
  27378. maw: {
  27379. height: math.unit(0.65, "feet"),
  27380. name: "Maw",
  27381. image: {
  27382. source: "./media/characters/lira/maw.svg"
  27383. }
  27384. },
  27385. pawDigi: {
  27386. height: math.unit(1.6, "feet"),
  27387. name: "Paw Digi",
  27388. image: {
  27389. source: "./media/characters/lira/paw-digi.svg"
  27390. }
  27391. },
  27392. pawPlanti: {
  27393. height: math.unit(1.4, "feet"),
  27394. name: "Paw Planti",
  27395. image: {
  27396. source: "./media/characters/lira/paw-planti.svg"
  27397. }
  27398. },
  27399. },
  27400. [
  27401. {
  27402. name: "Normal",
  27403. height: math.unit(6 + 2 / 12, "feet"),
  27404. default: true
  27405. },
  27406. {
  27407. name: "Macro",
  27408. height: math.unit(100, "feet")
  27409. },
  27410. {
  27411. name: "Macro²",
  27412. height: math.unit(1600, "feet")
  27413. },
  27414. {
  27415. name: "Planetary",
  27416. height: math.unit(20, "earths")
  27417. },
  27418. ]
  27419. ))
  27420. characterMakers.push(() => makeCharacter(
  27421. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27422. {
  27423. front: {
  27424. height: math.unit(6, "feet"),
  27425. weight: math.unit(150, "lb"),
  27426. name: "Front",
  27427. image: {
  27428. source: "./media/characters/hadjet/front.svg",
  27429. extra: 1480 / 1346,
  27430. bottom: 26 / 1506
  27431. }
  27432. },
  27433. frontNsfw: {
  27434. height: math.unit(6, "feet"),
  27435. weight: math.unit(150, "lb"),
  27436. name: "Front (NSFW)",
  27437. image: {
  27438. source: "./media/characters/hadjet/front-nsfw.svg",
  27439. extra: 1440 / 1358,
  27440. bottom: 52 / 1492
  27441. }
  27442. },
  27443. },
  27444. [
  27445. {
  27446. name: "Macro",
  27447. height: math.unit(10, "stories"),
  27448. default: true
  27449. },
  27450. {
  27451. name: "Megamacro",
  27452. height: math.unit(1.5, "miles")
  27453. },
  27454. {
  27455. name: "Megamacro+",
  27456. height: math.unit(5, "miles")
  27457. },
  27458. ]
  27459. ))
  27460. characterMakers.push(() => makeCharacter(
  27461. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27462. {
  27463. side: {
  27464. height: math.unit(106, "feet"),
  27465. weight: math.unit(500, "tonnes"),
  27466. name: "Side",
  27467. image: {
  27468. source: "./media/characters/kodran/side.svg",
  27469. extra: 553 / 480,
  27470. bottom: 33 / 586
  27471. }
  27472. },
  27473. front: {
  27474. height: math.unit(132, "feet"),
  27475. weight: math.unit(500, "tonnes"),
  27476. name: "Front",
  27477. image: {
  27478. source: "./media/characters/kodran/front.svg",
  27479. extra: 667 / 643,
  27480. bottom: 42 / 709
  27481. }
  27482. },
  27483. flying: {
  27484. height: math.unit(350, "feet"),
  27485. weight: math.unit(500, "tonnes"),
  27486. name: "Flying",
  27487. image: {
  27488. source: "./media/characters/kodran/flying.svg"
  27489. }
  27490. },
  27491. foot: {
  27492. height: math.unit(33, "feet"),
  27493. name: "Foot",
  27494. image: {
  27495. source: "./media/characters/kodran/foot.svg"
  27496. }
  27497. },
  27498. footFront: {
  27499. height: math.unit(19, "feet"),
  27500. name: "Foot (Front)",
  27501. image: {
  27502. source: "./media/characters/kodran/foot-front.svg",
  27503. extra: 261 / 261,
  27504. bottom: 91 / 352
  27505. }
  27506. },
  27507. headFront: {
  27508. height: math.unit(53, "feet"),
  27509. name: "Head (Front)",
  27510. image: {
  27511. source: "./media/characters/kodran/head-front.svg"
  27512. }
  27513. },
  27514. headSide: {
  27515. height: math.unit(65, "feet"),
  27516. name: "Head (Side)",
  27517. image: {
  27518. source: "./media/characters/kodran/head-side.svg"
  27519. }
  27520. },
  27521. throat: {
  27522. height: math.unit(79, "feet"),
  27523. name: "Throat",
  27524. image: {
  27525. source: "./media/characters/kodran/throat.svg"
  27526. }
  27527. },
  27528. },
  27529. [
  27530. {
  27531. name: "Large",
  27532. height: math.unit(106, "feet"),
  27533. default: true
  27534. },
  27535. ]
  27536. ))
  27537. characterMakers.push(() => makeCharacter(
  27538. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27539. {
  27540. side: {
  27541. height: math.unit(11, "feet"),
  27542. weight: math.unit(150, "lb"),
  27543. name: "Side",
  27544. image: {
  27545. source: "./media/characters/pyxaron/side.svg",
  27546. extra: 305 / 195,
  27547. bottom: 17 / 322
  27548. }
  27549. },
  27550. },
  27551. [
  27552. {
  27553. name: "Normal",
  27554. height: math.unit(11, "feet")
  27555. },
  27556. ]
  27557. ))
  27558. characterMakers.push(() => makeCharacter(
  27559. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27560. {
  27561. front: {
  27562. height: math.unit(6, "feet"),
  27563. weight: math.unit(150, "lb"),
  27564. name: "Front",
  27565. image: {
  27566. source: "./media/characters/meep/front.svg",
  27567. extra: 88 / 80,
  27568. bottom: 6 / 94
  27569. }
  27570. },
  27571. },
  27572. [
  27573. {
  27574. name: "Fun Sized",
  27575. height: math.unit(2, "inches"),
  27576. default: true
  27577. },
  27578. {
  27579. name: "Friend Sized",
  27580. height: math.unit(8, "inches")
  27581. },
  27582. ]
  27583. ))
  27584. characterMakers.push(() => makeCharacter(
  27585. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27586. {
  27587. front: {
  27588. height: math.unit(15, "feet"),
  27589. weight: math.unit(2500, "lb"),
  27590. name: "Front",
  27591. image: {
  27592. source: "./media/characters/holly-rabbit/front.svg",
  27593. extra: 1433 / 1233,
  27594. bottom: 125 / 1558
  27595. }
  27596. },
  27597. dick: {
  27598. height: math.unit(4.6, "feet"),
  27599. name: "Dick",
  27600. image: {
  27601. source: "./media/characters/holly-rabbit/dick.svg"
  27602. }
  27603. },
  27604. },
  27605. [
  27606. {
  27607. name: "Normal",
  27608. height: math.unit(15, "feet"),
  27609. default: true
  27610. },
  27611. {
  27612. name: "Macro",
  27613. height: math.unit(250, "feet")
  27614. },
  27615. {
  27616. name: "Macro+",
  27617. height: math.unit(2500, "feet")
  27618. },
  27619. ]
  27620. ))
  27621. characterMakers.push(() => makeCharacter(
  27622. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27623. {
  27624. front: {
  27625. height: math.unit(3.02, "meters"),
  27626. weight: math.unit(500, "kg"),
  27627. name: "Front",
  27628. image: {
  27629. source: "./media/characters/drena/front.svg",
  27630. extra: 282 / 243,
  27631. bottom: 8 / 290
  27632. }
  27633. },
  27634. side: {
  27635. height: math.unit(3.02, "meters"),
  27636. weight: math.unit(500, "kg"),
  27637. name: "Side",
  27638. image: {
  27639. source: "./media/characters/drena/side.svg",
  27640. extra: 280 / 245,
  27641. bottom: 10 / 290
  27642. }
  27643. },
  27644. back: {
  27645. height: math.unit(3.02, "meters"),
  27646. weight: math.unit(500, "kg"),
  27647. name: "Back",
  27648. image: {
  27649. source: "./media/characters/drena/back.svg",
  27650. extra: 278 / 243,
  27651. bottom: 2 / 280
  27652. }
  27653. },
  27654. foot: {
  27655. height: math.unit(0.75, "meters"),
  27656. name: "Foot",
  27657. image: {
  27658. source: "./media/characters/drena/foot.svg"
  27659. }
  27660. },
  27661. maw: {
  27662. height: math.unit(0.82, "meters"),
  27663. name: "Maw",
  27664. image: {
  27665. source: "./media/characters/drena/maw.svg"
  27666. }
  27667. },
  27668. rump: {
  27669. height: math.unit(0.93, "meters"),
  27670. name: "Rump",
  27671. image: {
  27672. source: "./media/characters/drena/rump.svg"
  27673. }
  27674. },
  27675. },
  27676. [
  27677. {
  27678. name: "Normal",
  27679. height: math.unit(3.02, "meters"),
  27680. default: true
  27681. },
  27682. ]
  27683. ))
  27684. characterMakers.push(() => makeCharacter(
  27685. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27686. {
  27687. front: {
  27688. height: math.unit(6 + 4 / 12, "feet"),
  27689. weight: math.unit(250, "lb"),
  27690. name: "Front",
  27691. image: {
  27692. source: "./media/characters/remmyzilla/front.svg",
  27693. extra: 4033 / 3588,
  27694. bottom: 123 / 4156
  27695. }
  27696. },
  27697. back: {
  27698. height: math.unit(6 + 4 / 12, "feet"),
  27699. weight: math.unit(250, "lb"),
  27700. name: "Back",
  27701. image: {
  27702. source: "./media/characters/remmyzilla/back.svg",
  27703. extra: 2687 / 2555,
  27704. bottom: 48 / 2735
  27705. }
  27706. },
  27707. frontFancy: {
  27708. height: math.unit(6 + 4 / 12, "feet"),
  27709. weight: math.unit(250, "lb"),
  27710. name: "Front (Fancy)",
  27711. image: {
  27712. source: "./media/characters/remmyzilla/front-fancy.svg",
  27713. extra: 4119 / 3419,
  27714. bottom: 237 / 4356
  27715. }
  27716. },
  27717. paw: {
  27718. height: math.unit(1.73, "feet"),
  27719. name: "Paw",
  27720. image: {
  27721. source: "./media/characters/remmyzilla/paw.svg"
  27722. }
  27723. },
  27724. maw: {
  27725. height: math.unit(1.73, "feet"),
  27726. name: "Maw",
  27727. image: {
  27728. source: "./media/characters/remmyzilla/maw.svg"
  27729. }
  27730. },
  27731. },
  27732. [
  27733. {
  27734. name: "Normal",
  27735. height: math.unit(6 + 4 / 12, "feet")
  27736. },
  27737. {
  27738. name: "Minimacro",
  27739. height: math.unit(12 + 8 / 12, "feet")
  27740. },
  27741. {
  27742. name: "Normal",
  27743. height: math.unit(640, "feet"),
  27744. default: true
  27745. },
  27746. {
  27747. name: "Megamacro",
  27748. height: math.unit(6400, "feet")
  27749. },
  27750. {
  27751. name: "Gigamacro",
  27752. height: math.unit(64000, "miles")
  27753. },
  27754. ]
  27755. ))
  27756. characterMakers.push(() => makeCharacter(
  27757. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27758. {
  27759. front: {
  27760. height: math.unit(2.5, "meters"),
  27761. weight: math.unit(300, "lb"),
  27762. name: "Front",
  27763. image: {
  27764. source: "./media/characters/lawrence/front.svg",
  27765. extra: 357 / 335,
  27766. bottom: 30 / 387
  27767. }
  27768. },
  27769. back: {
  27770. height: math.unit(2.5, "meters"),
  27771. weight: math.unit(300, "lb"),
  27772. name: "Back",
  27773. image: {
  27774. source: "./media/characters/lawrence/back.svg",
  27775. extra: 357 / 338,
  27776. bottom: 16 / 373
  27777. }
  27778. },
  27779. head: {
  27780. height: math.unit(0.9, "meter"),
  27781. name: "Head",
  27782. image: {
  27783. source: "./media/characters/lawrence/head.svg"
  27784. }
  27785. },
  27786. maw: {
  27787. height: math.unit(0.7, "meter"),
  27788. name: "Maw",
  27789. image: {
  27790. source: "./media/characters/lawrence/maw.svg"
  27791. }
  27792. },
  27793. footBottom: {
  27794. height: math.unit(0.5, "meter"),
  27795. name: "Foot (Bottom)",
  27796. image: {
  27797. source: "./media/characters/lawrence/foot-bottom.svg"
  27798. }
  27799. },
  27800. footTop: {
  27801. height: math.unit(0.5, "meter"),
  27802. name: "Foot (Top)",
  27803. image: {
  27804. source: "./media/characters/lawrence/foot-top.svg"
  27805. }
  27806. },
  27807. },
  27808. [
  27809. {
  27810. name: "Normal",
  27811. height: math.unit(2.5, "meters"),
  27812. default: true
  27813. },
  27814. {
  27815. name: "Macro",
  27816. height: math.unit(95, "meters")
  27817. },
  27818. {
  27819. name: "Megamacro",
  27820. height: math.unit(150, "km")
  27821. },
  27822. ]
  27823. ))
  27824. characterMakers.push(() => makeCharacter(
  27825. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27826. {
  27827. front: {
  27828. height: math.unit(4.2, "meters"),
  27829. name: "Front",
  27830. image: {
  27831. source: "./media/characters/sydney/front.svg",
  27832. extra: 1323 / 1277,
  27833. bottom: 111 / 1434
  27834. }
  27835. },
  27836. },
  27837. [
  27838. {
  27839. name: "Normal",
  27840. height: math.unit(4.2, "meters")
  27841. },
  27842. ]
  27843. ))
  27844. characterMakers.push(() => makeCharacter(
  27845. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27846. {
  27847. back: {
  27848. height: math.unit(201, "feet"),
  27849. name: "Back",
  27850. image: {
  27851. source: "./media/characters/jessica/back.svg",
  27852. extra: 273 / 259,
  27853. bottom: 7 / 280
  27854. }
  27855. },
  27856. },
  27857. [
  27858. {
  27859. name: "Normal",
  27860. height: math.unit(201, "feet"),
  27861. default: true
  27862. },
  27863. {
  27864. name: "Megamacro",
  27865. height: math.unit(8, "miles")
  27866. },
  27867. ]
  27868. ))
  27869. characterMakers.push(() => makeCharacter(
  27870. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27871. {
  27872. side: {
  27873. height: math.unit(320, "cm"),
  27874. name: "Side",
  27875. image: {
  27876. source: "./media/characters/victoria/side.svg",
  27877. extra: 778 / 346,
  27878. bottom: 56 / 834
  27879. }
  27880. },
  27881. maw: {
  27882. height: math.unit(5.9, "feet"),
  27883. name: "Maw",
  27884. image: {
  27885. source: "./media/characters/victoria/maw.svg"
  27886. }
  27887. },
  27888. },
  27889. [
  27890. {
  27891. name: "Normal",
  27892. height: math.unit(320, "cm"),
  27893. default: true
  27894. },
  27895. ]
  27896. ))
  27897. characterMakers.push(() => makeCharacter(
  27898. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27899. {
  27900. front: {
  27901. height: math.unit(5 + 6 / 12, "feet"),
  27902. name: "Front",
  27903. image: {
  27904. source: "./media/characters/cat/front.svg",
  27905. extra: 1374 / 1257,
  27906. bottom: 59 / 1433
  27907. }
  27908. },
  27909. back: {
  27910. height: math.unit(5 + 6 / 12, "feet"),
  27911. name: "Back",
  27912. image: {
  27913. source: "./media/characters/cat/back.svg",
  27914. extra: 1337 / 1226,
  27915. bottom: 34 / 1371
  27916. }
  27917. },
  27918. taur: {
  27919. height: math.unit(7, "feet"),
  27920. name: "Taur",
  27921. image: {
  27922. source: "./media/characters/cat/taur.svg",
  27923. extra: 1345 / 1231,
  27924. bottom: 66 / 1411
  27925. }
  27926. },
  27927. lucario: {
  27928. height: math.unit(4, "feet"),
  27929. name: "Lucario",
  27930. image: {
  27931. source: "./media/characters/cat/lucario.svg",
  27932. extra: 1470 / 1318,
  27933. bottom: 65 / 1535
  27934. }
  27935. },
  27936. megaLucario: {
  27937. height: math.unit(4, "feet"),
  27938. name: "Mega Lucario",
  27939. image: {
  27940. source: "./media/characters/cat/mega-lucario.svg",
  27941. extra: 1515 / 1319,
  27942. bottom: 63 / 1578
  27943. }
  27944. },
  27945. nickit: {
  27946. height: math.unit(2, "feet"),
  27947. name: "Nickit",
  27948. image: {
  27949. source: "./media/characters/cat/nickit.svg",
  27950. extra: 1980 / 1585,
  27951. bottom: 102 / 2082
  27952. }
  27953. },
  27954. lopunnyFront: {
  27955. height: math.unit(5, "feet"),
  27956. name: "Lopunny (Front)",
  27957. image: {
  27958. source: "./media/characters/cat/lopunny-front.svg",
  27959. extra: 1782 / 1469,
  27960. bottom: 38 / 1820
  27961. }
  27962. },
  27963. lopunnyBack: {
  27964. height: math.unit(5, "feet"),
  27965. name: "Lopunny (Back)",
  27966. image: {
  27967. source: "./media/characters/cat/lopunny-back.svg",
  27968. extra: 1660 / 1490,
  27969. bottom: 25 / 1685
  27970. }
  27971. },
  27972. },
  27973. [
  27974. {
  27975. name: "Really small",
  27976. height: math.unit(1, "nm")
  27977. },
  27978. {
  27979. name: "Micro",
  27980. height: math.unit(5, "inches")
  27981. },
  27982. {
  27983. name: "Normal",
  27984. height: math.unit(5 + 6 / 12, "feet"),
  27985. default: true
  27986. },
  27987. {
  27988. name: "Macro",
  27989. height: math.unit(50, "feet")
  27990. },
  27991. {
  27992. name: "Macro+",
  27993. height: math.unit(150, "feet")
  27994. },
  27995. {
  27996. name: "Megamacro",
  27997. height: math.unit(100, "miles")
  27998. },
  27999. ]
  28000. ))
  28001. characterMakers.push(() => makeCharacter(
  28002. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28003. {
  28004. front: {
  28005. height: math.unit(63.4, "meters"),
  28006. weight: math.unit(3.28349e+6, "kilograms"),
  28007. name: "Front",
  28008. image: {
  28009. source: "./media/characters/kirina-violet/front.svg",
  28010. extra: 2812 / 2725,
  28011. bottom: 0 / 2812
  28012. }
  28013. },
  28014. back: {
  28015. height: math.unit(63.4, "meters"),
  28016. weight: math.unit(3.28349e+6, "kilograms"),
  28017. name: "Back",
  28018. image: {
  28019. source: "./media/characters/kirina-violet/back.svg",
  28020. extra: 2812 / 2725,
  28021. bottom: 0 / 2812
  28022. }
  28023. },
  28024. mouth: {
  28025. height: math.unit(4.35, "meters"),
  28026. name: "Mouth",
  28027. image: {
  28028. source: "./media/characters/kirina-violet/mouth.svg"
  28029. }
  28030. },
  28031. paw: {
  28032. height: math.unit(5.6, "meters"),
  28033. name: "Paw",
  28034. image: {
  28035. source: "./media/characters/kirina-violet/paw.svg"
  28036. }
  28037. },
  28038. tail: {
  28039. height: math.unit(18, "meters"),
  28040. name: "Tail",
  28041. image: {
  28042. source: "./media/characters/kirina-violet/tail.svg"
  28043. }
  28044. },
  28045. },
  28046. [
  28047. {
  28048. name: "Macro",
  28049. height: math.unit(63.4, "meters"),
  28050. default: true
  28051. },
  28052. ]
  28053. ))
  28054. characterMakers.push(() => makeCharacter(
  28055. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28056. {
  28057. front: {
  28058. height: math.unit(60, "feet"),
  28059. name: "Front",
  28060. image: {
  28061. source: "./media/characters/cat-gigachu/front.svg",
  28062. extra: 1024 / 780,
  28063. bottom: 23 / 1047
  28064. }
  28065. },
  28066. back: {
  28067. height: math.unit(60, "feet"),
  28068. name: "Back",
  28069. image: {
  28070. source: "./media/characters/cat-gigachu/back.svg",
  28071. extra: 1024 / 780,
  28072. bottom: 23 / 1047
  28073. }
  28074. },
  28075. },
  28076. [
  28077. {
  28078. name: "Dynamax",
  28079. height: math.unit(60, "feet"),
  28080. default: true
  28081. },
  28082. ]
  28083. ))
  28084. characterMakers.push(() => makeCharacter(
  28085. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28086. {
  28087. front: {
  28088. height: math.unit(6, "feet"),
  28089. weight: math.unit(150, "lb"),
  28090. name: "Front",
  28091. image: {
  28092. source: "./media/characters/sfaiyan/front.svg",
  28093. extra: 999 / 978,
  28094. bottom: 5 / 1004
  28095. }
  28096. },
  28097. },
  28098. [
  28099. {
  28100. name: "Normal",
  28101. height: math.unit(1.82, "meters")
  28102. },
  28103. {
  28104. name: "Giant",
  28105. height: math.unit(2.27, "km"),
  28106. default: true
  28107. },
  28108. ]
  28109. ))
  28110. characterMakers.push(() => makeCharacter(
  28111. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28112. {
  28113. front: {
  28114. height: math.unit(179, "cm"),
  28115. weight: math.unit(100, "kg"),
  28116. name: "Front",
  28117. image: {
  28118. source: "./media/characters/raunehkeli/front.svg",
  28119. extra: 1934 / 1926,
  28120. bottom: 0 / 1934
  28121. }
  28122. },
  28123. },
  28124. [
  28125. {
  28126. name: "Normal",
  28127. height: math.unit(179, "cm")
  28128. },
  28129. {
  28130. name: "Maximum",
  28131. height: math.unit(575, "meters"),
  28132. default: true
  28133. },
  28134. ]
  28135. ))
  28136. characterMakers.push(() => makeCharacter(
  28137. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28138. {
  28139. front: {
  28140. height: math.unit(6, "feet"),
  28141. weight: math.unit(150, "lb"),
  28142. name: "Front",
  28143. image: {
  28144. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28145. extra: 2625 / 2518,
  28146. bottom: 60 / 2685
  28147. }
  28148. },
  28149. },
  28150. [
  28151. {
  28152. name: "Normal",
  28153. height: math.unit(6 + 2 / 12, "feet"),
  28154. default: true
  28155. },
  28156. {
  28157. name: "Macro",
  28158. height: math.unit(1180, "feet")
  28159. },
  28160. ]
  28161. ))
  28162. characterMakers.push(() => makeCharacter(
  28163. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28164. {
  28165. front: {
  28166. height: math.unit(5 + 6 / 12, "feet"),
  28167. weight: math.unit(108, "lb"),
  28168. name: "Front",
  28169. image: {
  28170. source: "./media/characters/lilith-zott/front.svg",
  28171. extra: 2510 / 2238,
  28172. bottom: 100 / 2610
  28173. }
  28174. },
  28175. frontDressed: {
  28176. height: math.unit(5 + 6 / 12, "feet"),
  28177. weight: math.unit(108, "lb"),
  28178. name: "Front (Dressed)",
  28179. image: {
  28180. source: "./media/characters/lilith-zott/front-dressed.svg",
  28181. extra: 2510 / 2238,
  28182. bottom: 100 / 2610
  28183. }
  28184. },
  28185. },
  28186. [
  28187. {
  28188. name: "Normal",
  28189. height: math.unit(5 + 6 / 12, "feet")
  28190. },
  28191. {
  28192. name: "Macro",
  28193. height: math.unit(200, "feet"),
  28194. default: true
  28195. },
  28196. {
  28197. name: "Macro+",
  28198. height: math.unit(1030, "feet")
  28199. },
  28200. ]
  28201. ))
  28202. characterMakers.push(() => makeCharacter(
  28203. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28204. {
  28205. front: {
  28206. height: math.unit(6, "feet"),
  28207. weight: math.unit(150, "lb"),
  28208. name: "Front",
  28209. image: {
  28210. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28211. extra: 2567 / 2435,
  28212. bottom: 39 / 2606
  28213. }
  28214. },
  28215. frontSuper: {
  28216. height: math.unit(6, "feet"),
  28217. name: "Front (Super)",
  28218. image: {
  28219. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28220. extra: 2567 / 2435,
  28221. bottom: 39 / 2606
  28222. }
  28223. },
  28224. },
  28225. [
  28226. {
  28227. name: "Normal",
  28228. height: math.unit(5 + 10 / 12, "feet")
  28229. },
  28230. {
  28231. name: "Macro",
  28232. height: math.unit(220, "feet"),
  28233. default: true
  28234. },
  28235. {
  28236. name: "Macro+",
  28237. height: math.unit(1100, "feet")
  28238. },
  28239. ]
  28240. ))
  28241. characterMakers.push(() => makeCharacter(
  28242. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28243. {
  28244. front: {
  28245. height: math.unit(100, "miles"),
  28246. name: "Front",
  28247. image: {
  28248. source: "./media/characters/sona/front.svg",
  28249. extra: 2433 / 2201,
  28250. bottom: 53 / 2486
  28251. }
  28252. },
  28253. foot: {
  28254. height: math.unit(16.1, "miles"),
  28255. name: "Foot",
  28256. image: {
  28257. source: "./media/characters/sona/foot.svg"
  28258. }
  28259. },
  28260. },
  28261. [
  28262. {
  28263. name: "Macro",
  28264. height: math.unit(100, "miles"),
  28265. default: true
  28266. },
  28267. ]
  28268. ))
  28269. characterMakers.push(() => makeCharacter(
  28270. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28271. {
  28272. front: {
  28273. height: math.unit(6, "feet"),
  28274. weight: math.unit(150, "lb"),
  28275. name: "Front",
  28276. image: {
  28277. source: "./media/characters/bailey/front.svg",
  28278. extra: 1778 / 1724,
  28279. bottom: 30 / 1808
  28280. }
  28281. },
  28282. },
  28283. [
  28284. {
  28285. name: "Micro",
  28286. height: math.unit(4, "inches")
  28287. },
  28288. {
  28289. name: "Normal",
  28290. height: math.unit(5 + 5 / 12, "feet"),
  28291. default: true
  28292. },
  28293. {
  28294. name: "Macro",
  28295. height: math.unit(250, "feet")
  28296. },
  28297. {
  28298. name: "Megamacro",
  28299. height: math.unit(100, "miles")
  28300. },
  28301. ]
  28302. ))
  28303. characterMakers.push(() => makeCharacter(
  28304. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28305. {
  28306. front: {
  28307. height: math.unit(5 + 2 / 12, "feet"),
  28308. weight: math.unit(120, "lb"),
  28309. name: "Front",
  28310. image: {
  28311. source: "./media/characters/snaps/front.svg",
  28312. extra: 2370 / 2177,
  28313. bottom: 48 / 2418
  28314. }
  28315. },
  28316. back: {
  28317. height: math.unit(5 + 2 / 12, "feet"),
  28318. weight: math.unit(120, "lb"),
  28319. name: "Back",
  28320. image: {
  28321. source: "./media/characters/snaps/back.svg",
  28322. extra: 2408 / 2258,
  28323. bottom: 15 / 2423
  28324. }
  28325. },
  28326. },
  28327. [
  28328. {
  28329. name: "Micro",
  28330. height: math.unit(9, "inches")
  28331. },
  28332. {
  28333. name: "Normal",
  28334. height: math.unit(5 + 2 / 12, "feet"),
  28335. default: true
  28336. },
  28337. {
  28338. name: "Mini Macro",
  28339. height: math.unit(10, "feet")
  28340. },
  28341. ]
  28342. ))
  28343. characterMakers.push(() => makeCharacter(
  28344. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28345. {
  28346. front: {
  28347. height: math.unit(1.8, "meters"),
  28348. weight: math.unit(85, "kg"),
  28349. name: "Front",
  28350. image: {
  28351. source: "./media/characters/azteck/front.svg",
  28352. extra: 2815 / 2625,
  28353. bottom: 89 / 2904
  28354. }
  28355. },
  28356. back: {
  28357. height: math.unit(1.8, "meters"),
  28358. weight: math.unit(85, "kg"),
  28359. name: "Back",
  28360. image: {
  28361. source: "./media/characters/azteck/back.svg",
  28362. extra: 2856 / 2648,
  28363. bottom: 85 / 2941
  28364. }
  28365. },
  28366. frontDressed: {
  28367. height: math.unit(1.8, "meters"),
  28368. weight: math.unit(85, "kg"),
  28369. name: "Front (Dressed)",
  28370. image: {
  28371. source: "./media/characters/azteck/front-dressed.svg",
  28372. extra: 2147 / 2003,
  28373. bottom: 68 / 2215
  28374. }
  28375. },
  28376. head: {
  28377. height: math.unit(0.47, "meters"),
  28378. weight: math.unit(85, "kg"),
  28379. name: "Head",
  28380. image: {
  28381. source: "./media/characters/azteck/head.svg"
  28382. }
  28383. },
  28384. },
  28385. [
  28386. {
  28387. name: "Bite sized",
  28388. height: math.unit(16, "cm")
  28389. },
  28390. {
  28391. name: "Normal",
  28392. height: math.unit(1.8, "meters"),
  28393. default: true
  28394. },
  28395. ]
  28396. ))
  28397. characterMakers.push(() => makeCharacter(
  28398. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28399. {
  28400. front: {
  28401. height: math.unit(6, "feet"),
  28402. weight: math.unit(150, "lb"),
  28403. name: "Front",
  28404. image: {
  28405. source: "./media/characters/pidge/front.svg",
  28406. extra: 620 / 588,
  28407. bottom: 9 / 629
  28408. }
  28409. },
  28410. back: {
  28411. height: math.unit(6, "feet"),
  28412. weight: math.unit(150, "lb"),
  28413. name: "Back",
  28414. image: {
  28415. source: "./media/characters/pidge/back.svg",
  28416. extra: 620 / 588,
  28417. bottom: 9 / 629
  28418. }
  28419. },
  28420. },
  28421. [
  28422. {
  28423. name: "Macro",
  28424. height: math.unit(1, "mile"),
  28425. default: true
  28426. },
  28427. ]
  28428. ))
  28429. characterMakers.push(() => makeCharacter(
  28430. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28431. {
  28432. front: {
  28433. height: math.unit(6, "feet"),
  28434. weight: math.unit(150, "lb"),
  28435. name: "Front",
  28436. image: {
  28437. source: "./media/characters/en/front.svg",
  28438. extra: 1697 / 1563,
  28439. bottom: 103 / 1800
  28440. }
  28441. },
  28442. back: {
  28443. height: math.unit(6, "feet"),
  28444. weight: math.unit(150, "lb"),
  28445. name: "Back",
  28446. image: {
  28447. source: "./media/characters/en/back.svg",
  28448. extra: 1700 / 1570,
  28449. bottom: 51 / 1751
  28450. }
  28451. },
  28452. frontDressed: {
  28453. height: math.unit(6, "feet"),
  28454. weight: math.unit(150, "lb"),
  28455. name: "Front (Dressed)",
  28456. image: {
  28457. source: "./media/characters/en/front-dressed.svg",
  28458. extra: 1697 / 1563,
  28459. bottom: 103 / 1800
  28460. }
  28461. },
  28462. backDressed: {
  28463. height: math.unit(6, "feet"),
  28464. weight: math.unit(150, "lb"),
  28465. name: "Back (Dressed)",
  28466. image: {
  28467. source: "./media/characters/en/back-dressed.svg",
  28468. extra: 1700 / 1570,
  28469. bottom: 51 / 1751
  28470. }
  28471. },
  28472. },
  28473. [
  28474. {
  28475. name: "Macro",
  28476. height: math.unit(210, "feet"),
  28477. default: true
  28478. },
  28479. ]
  28480. ))
  28481. characterMakers.push(() => makeCharacter(
  28482. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28483. {
  28484. front: {
  28485. height: math.unit(6, "feet"),
  28486. weight: math.unit(150, "lb"),
  28487. name: "Front",
  28488. image: {
  28489. source: "./media/characters/haze-orris/front.svg",
  28490. extra: 3975 / 3525,
  28491. bottom: 137 / 4112
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Micro",
  28498. height: math.unit(150, "mm"),
  28499. default: true
  28500. },
  28501. ]
  28502. ))
  28503. characterMakers.push(() => makeCharacter(
  28504. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28505. {
  28506. front: {
  28507. height: math.unit(6, "feet"),
  28508. weight: math.unit(150, "lb"),
  28509. name: "Front",
  28510. image: {
  28511. source: "./media/characters/casselene-yaro/front.svg",
  28512. extra: 4721 / 4541,
  28513. bottom: 82 / 4803
  28514. }
  28515. },
  28516. back: {
  28517. height: math.unit(6, "feet"),
  28518. weight: math.unit(150, "lb"),
  28519. name: "Back",
  28520. image: {
  28521. source: "./media/characters/casselene-yaro/back.svg",
  28522. extra: 4569 / 4377,
  28523. bottom: 69 / 4638
  28524. }
  28525. },
  28526. frontDressed: {
  28527. height: math.unit(6, "feet"),
  28528. weight: math.unit(150, "lb"),
  28529. name: "Front-dressed",
  28530. image: {
  28531. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28532. extra: 4721 / 4541,
  28533. bottom: 82 / 4803
  28534. }
  28535. },
  28536. },
  28537. [
  28538. {
  28539. name: "Macro",
  28540. height: math.unit(190, "feet")
  28541. },
  28542. ]
  28543. ))
  28544. characterMakers.push(() => makeCharacter(
  28545. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28546. {
  28547. front: {
  28548. height: math.unit(6, "feet"),
  28549. weight: math.unit(150, "lb"),
  28550. name: "Front",
  28551. image: {
  28552. source: "./media/characters/myra-rue-delore/front.svg",
  28553. extra: 1340 / 1308,
  28554. bottom: 67 / 1407
  28555. }
  28556. },
  28557. back: {
  28558. height: math.unit(6, "feet"),
  28559. weight: math.unit(150, "lb"),
  28560. name: "Back",
  28561. image: {
  28562. source: "./media/characters/myra-rue-delore/back.svg",
  28563. extra: 1341 / 1310,
  28564. bottom: 40 / 1381
  28565. }
  28566. },
  28567. frontDressed: {
  28568. height: math.unit(6, "feet"),
  28569. weight: math.unit(150, "lb"),
  28570. name: "Front (Dressed)",
  28571. image: {
  28572. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28573. extra: 1340 / 1308,
  28574. bottom: 67 / 1407
  28575. }
  28576. },
  28577. },
  28578. [
  28579. {
  28580. name: "Macro",
  28581. height: math.unit(150, "feet")
  28582. },
  28583. ]
  28584. ))
  28585. characterMakers.push(() => makeCharacter(
  28586. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28587. {
  28588. front: {
  28589. height: math.unit(10, "feet"),
  28590. weight: math.unit(15015, "lb"),
  28591. name: "Front",
  28592. image: {
  28593. source: "./media/characters/fem!plat/front.svg",
  28594. extra: 2799 / 2604,
  28595. bottom: 149 / 2948
  28596. }
  28597. },
  28598. },
  28599. [
  28600. {
  28601. name: "Normal",
  28602. height: math.unit(10, "feet"),
  28603. default: true
  28604. },
  28605. {
  28606. name: "Macro",
  28607. height: math.unit(100, "feet")
  28608. },
  28609. {
  28610. name: "Megamacro",
  28611. height: math.unit(1000, "feet")
  28612. },
  28613. ]
  28614. ))
  28615. characterMakers.push(() => makeCharacter(
  28616. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28617. {
  28618. front: {
  28619. height: math.unit(15 + 5 / 12, "feet"),
  28620. weight: math.unit(4600, "lb"),
  28621. name: "Front",
  28622. image: {
  28623. source: "./media/characters/neapolitan-ananassa/front.svg",
  28624. extra: 2903 / 2736,
  28625. bottom: 0 / 2903
  28626. }
  28627. },
  28628. side: {
  28629. height: math.unit(15 + 5 / 12, "feet"),
  28630. weight: math.unit(4600, "lb"),
  28631. name: "Side",
  28632. image: {
  28633. source: "./media/characters/neapolitan-ananassa/side.svg",
  28634. extra: 2925 / 2719,
  28635. bottom: 0 / 2925
  28636. }
  28637. },
  28638. back: {
  28639. height: math.unit(15 + 5 / 12, "feet"),
  28640. weight: math.unit(4600, "lb"),
  28641. name: "Back",
  28642. image: {
  28643. source: "./media/characters/neapolitan-ananassa/back.svg",
  28644. extra: 2903 / 2736,
  28645. bottom: 0 / 2903
  28646. }
  28647. },
  28648. },
  28649. [
  28650. {
  28651. name: "Normal",
  28652. height: math.unit(15 + 5 / 12, "feet"),
  28653. default: true
  28654. },
  28655. {
  28656. name: "Post-Millenium",
  28657. height: math.unit(35 + 5 / 12, "feet")
  28658. },
  28659. {
  28660. name: "Post-Era",
  28661. height: math.unit(450 + 5 / 12, "feet")
  28662. },
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28667. {
  28668. front: {
  28669. height: math.unit(300, "meters"),
  28670. weight: math.unit(125000, "tonnes"),
  28671. name: "Front",
  28672. image: {
  28673. source: "./media/characters/pazuzu/front.svg",
  28674. extra: 877 / 794,
  28675. bottom: 47 / 924
  28676. }
  28677. },
  28678. },
  28679. [
  28680. {
  28681. name: "Macro",
  28682. height: math.unit(300, "meters"),
  28683. default: true
  28684. },
  28685. ]
  28686. ))
  28687. characterMakers.push(() => makeCharacter(
  28688. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28689. {
  28690. side: {
  28691. height: math.unit(10 + 7 / 12, "feet"),
  28692. weight: math.unit(2.5, "tons"),
  28693. name: "Side",
  28694. image: {
  28695. source: "./media/characters/aasha/side.svg",
  28696. extra: 1345 / 1245,
  28697. bottom: 111 / 1456
  28698. }
  28699. },
  28700. back: {
  28701. height: math.unit(10 + 7 / 12, "feet"),
  28702. weight: math.unit(2.5, "tons"),
  28703. name: "Back",
  28704. image: {
  28705. source: "./media/characters/aasha/back.svg",
  28706. extra: 1133 / 1057,
  28707. bottom: 257 / 1390
  28708. }
  28709. },
  28710. },
  28711. [
  28712. {
  28713. name: "Normal",
  28714. height: math.unit(10 + 7 / 12, "feet"),
  28715. default: true
  28716. },
  28717. ]
  28718. ))
  28719. characterMakers.push(() => makeCharacter(
  28720. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28721. {
  28722. front: {
  28723. height: math.unit(6 + 3 / 12, "feet"),
  28724. name: "Front",
  28725. image: {
  28726. source: "./media/characters/nevan/front.svg",
  28727. extra: 704 / 704,
  28728. bottom: 28 / 732
  28729. }
  28730. },
  28731. back: {
  28732. height: math.unit(6 + 3 / 12, "feet"),
  28733. name: "Back",
  28734. image: {
  28735. source: "./media/characters/nevan/back.svg",
  28736. extra: 714 / 714,
  28737. bottom: 21 / 735
  28738. }
  28739. },
  28740. frontFlaccid: {
  28741. height: math.unit(6 + 3 / 12, "feet"),
  28742. name: "Front (Flaccid)",
  28743. image: {
  28744. source: "./media/characters/nevan/front-flaccid.svg",
  28745. extra: 704 / 704,
  28746. bottom: 28 / 732
  28747. }
  28748. },
  28749. frontErect: {
  28750. height: math.unit(6 + 3 / 12, "feet"),
  28751. name: "Front (Erect)",
  28752. image: {
  28753. source: "./media/characters/nevan/front-erect.svg",
  28754. extra: 704 / 704,
  28755. bottom: 28 / 732
  28756. }
  28757. },
  28758. backFlaccid: {
  28759. height: math.unit(6 + 3 / 12, "feet"),
  28760. name: "Back (Flaccid)",
  28761. image: {
  28762. source: "./media/characters/nevan/back-flaccid.svg",
  28763. extra: 714 / 714,
  28764. bottom: 21 / 735
  28765. }
  28766. },
  28767. },
  28768. [
  28769. {
  28770. name: "Normal",
  28771. height: math.unit(6 + 3 / 12, "feet"),
  28772. default: true
  28773. },
  28774. ]
  28775. ))
  28776. characterMakers.push(() => makeCharacter(
  28777. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28778. {
  28779. front: {
  28780. height: math.unit(4, "feet"),
  28781. name: "Front",
  28782. image: {
  28783. source: "./media/characters/arhan/front.svg",
  28784. extra: 3368 / 3133,
  28785. bottom: 0 / 3368
  28786. }
  28787. },
  28788. side: {
  28789. height: math.unit(4, "feet"),
  28790. name: "Side",
  28791. image: {
  28792. source: "./media/characters/arhan/side.svg",
  28793. extra: 3347 / 3105,
  28794. bottom: 0 / 3347
  28795. }
  28796. },
  28797. tongue: {
  28798. height: math.unit(1.42, "feet"),
  28799. name: "Tongue",
  28800. image: {
  28801. source: "./media/characters/arhan/tongue.svg"
  28802. }
  28803. },
  28804. head: {
  28805. height: math.unit(0.85, "feet"),
  28806. name: "Head",
  28807. image: {
  28808. source: "./media/characters/arhan/head.svg"
  28809. }
  28810. },
  28811. },
  28812. [
  28813. {
  28814. name: "Normal",
  28815. height: math.unit(4, "feet"),
  28816. default: true
  28817. },
  28818. ]
  28819. ))
  28820. characterMakers.push(() => makeCharacter(
  28821. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28822. {
  28823. front: {
  28824. height: math.unit(5 + 7.5 / 12, "feet"),
  28825. weight: math.unit(120, "lb"),
  28826. name: "Front",
  28827. image: {
  28828. source: "./media/characters/digi-duncan/front.svg",
  28829. extra: 330 / 326,
  28830. bottom: 16 / 346
  28831. }
  28832. },
  28833. side: {
  28834. height: math.unit(5 + 7.5 / 12, "feet"),
  28835. weight: math.unit(120, "lb"),
  28836. name: "Side",
  28837. image: {
  28838. source: "./media/characters/digi-duncan/side.svg",
  28839. extra: 341 / 337,
  28840. bottom: 1 / 342
  28841. }
  28842. },
  28843. back: {
  28844. height: math.unit(5 + 7.5 / 12, "feet"),
  28845. weight: math.unit(120, "lb"),
  28846. name: "Back",
  28847. image: {
  28848. source: "./media/characters/digi-duncan/back.svg",
  28849. extra: 330 / 326,
  28850. bottom: 12 / 342
  28851. }
  28852. },
  28853. },
  28854. [
  28855. {
  28856. name: "Speck",
  28857. height: math.unit(0.25, "mm")
  28858. },
  28859. {
  28860. name: "Micro",
  28861. height: math.unit(5, "mm")
  28862. },
  28863. {
  28864. name: "Tiny",
  28865. height: math.unit(0.5, "inches"),
  28866. default: true
  28867. },
  28868. {
  28869. name: "Human",
  28870. height: math.unit(5 + 7.5 / 12, "feet")
  28871. },
  28872. {
  28873. name: "Minigiant",
  28874. height: math.unit(8 + 5.25, "feet")
  28875. },
  28876. {
  28877. name: "Giant",
  28878. height: math.unit(2000, "feet")
  28879. },
  28880. {
  28881. name: "Mega",
  28882. height: math.unit(371.1, "miles")
  28883. },
  28884. ]
  28885. ))
  28886. characterMakers.push(() => makeCharacter(
  28887. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28888. {
  28889. front: {
  28890. height: math.unit(2, "meters"),
  28891. weight: math.unit(350, "kg"),
  28892. name: "Front",
  28893. image: {
  28894. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28895. extra: 898 / 838,
  28896. bottom: 9 / 907
  28897. }
  28898. },
  28899. },
  28900. [
  28901. {
  28902. name: "Micro",
  28903. height: math.unit(8, "meters")
  28904. },
  28905. {
  28906. name: "Normal",
  28907. height: math.unit(50, "meters"),
  28908. default: true
  28909. },
  28910. {
  28911. name: "Macro",
  28912. height: math.unit(500, "meters")
  28913. },
  28914. ]
  28915. ))
  28916. characterMakers.push(() => makeCharacter(
  28917. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28918. {
  28919. front: {
  28920. height: math.unit(6 + 6 / 12, "feet"),
  28921. name: "Front",
  28922. image: {
  28923. source: "./media/characters/khardesh/front.svg",
  28924. extra: 888 / 797,
  28925. bottom: 25 / 913
  28926. }
  28927. },
  28928. },
  28929. [
  28930. {
  28931. name: "Normal",
  28932. height: math.unit(6 + 6 / 12, "feet"),
  28933. default: true
  28934. },
  28935. {
  28936. name: "Normal+",
  28937. height: math.unit(4, "meters")
  28938. },
  28939. {
  28940. name: "Macro",
  28941. height: math.unit(50, "meters")
  28942. },
  28943. {
  28944. name: "Macro+",
  28945. height: math.unit(100, "meters")
  28946. },
  28947. {
  28948. name: "Megamacro",
  28949. height: math.unit(20, "km")
  28950. },
  28951. ]
  28952. ))
  28953. characterMakers.push(() => makeCharacter(
  28954. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28955. {
  28956. front: {
  28957. height: math.unit(6, "feet"),
  28958. weight: math.unit(150, "lb"),
  28959. name: "Front",
  28960. image: {
  28961. source: "./media/characters/kosho/front.svg",
  28962. extra: 1847 / 1847,
  28963. bottom: 86 / 1933
  28964. }
  28965. },
  28966. },
  28967. [
  28968. {
  28969. name: "Second-stage micro",
  28970. height: math.unit(0.5, "inches")
  28971. },
  28972. {
  28973. name: "First-stage micro",
  28974. height: math.unit(6, "inches")
  28975. },
  28976. {
  28977. name: "Normal",
  28978. height: math.unit(6, "feet"),
  28979. default: true
  28980. },
  28981. {
  28982. name: "First-stage macro",
  28983. height: math.unit(72, "feet")
  28984. },
  28985. {
  28986. name: "Second-stage macro",
  28987. height: math.unit(864, "feet")
  28988. },
  28989. ]
  28990. ))
  28991. characterMakers.push(() => makeCharacter(
  28992. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  28993. {
  28994. normal: {
  28995. height: math.unit(4 + 6 / 12, "feet"),
  28996. name: "Normal",
  28997. image: {
  28998. source: "./media/characters/hydra/normal.svg",
  28999. extra: 2833 / 2634,
  29000. bottom: 68 / 2901
  29001. }
  29002. },
  29003. smol: {
  29004. height: math.unit(0.705, "inches"),
  29005. name: "Smol",
  29006. image: {
  29007. source: "./media/characters/hydra/smol.svg",
  29008. extra: 2715 / 2540,
  29009. bottom: 0 / 2715
  29010. }
  29011. },
  29012. },
  29013. [
  29014. {
  29015. name: "Normal",
  29016. height: math.unit(4 + 6 / 12, "feet"),
  29017. default: true
  29018. }
  29019. ]
  29020. ))
  29021. characterMakers.push(() => makeCharacter(
  29022. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29023. {
  29024. front: {
  29025. height: math.unit(0.6, "cm"),
  29026. name: "Front",
  29027. image: {
  29028. source: "./media/characters/daz/front.svg",
  29029. extra: 1682 / 1164,
  29030. bottom: 42 / 1724
  29031. }
  29032. },
  29033. },
  29034. [
  29035. {
  29036. name: "Normal",
  29037. height: math.unit(0.6, "cm"),
  29038. default: true
  29039. },
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(6, "feet"),
  29047. weight: math.unit(235, "lb"),
  29048. name: "Front",
  29049. image: {
  29050. source: "./media/characters/theo-pangolin/front.svg",
  29051. extra: 1996 / 1969,
  29052. bottom: 115 / 2111
  29053. }
  29054. },
  29055. back: {
  29056. height: math.unit(6, "feet"),
  29057. weight: math.unit(235, "lb"),
  29058. name: "Back",
  29059. image: {
  29060. source: "./media/characters/theo-pangolin/back.svg",
  29061. extra: 1979 / 1979,
  29062. bottom: 40 / 2019
  29063. }
  29064. },
  29065. feral: {
  29066. height: math.unit(2, "feet"),
  29067. weight: math.unit(30, "lb"),
  29068. name: "Feral",
  29069. image: {
  29070. source: "./media/characters/theo-pangolin/feral.svg",
  29071. extra: 803 / 791,
  29072. bottom: 181 / 984
  29073. }
  29074. },
  29075. footFive: {
  29076. height: math.unit(1.43, "feet"),
  29077. name: "Foot (Five Toes)",
  29078. image: {
  29079. source: "./media/characters/theo-pangolin/foot-five.svg"
  29080. }
  29081. },
  29082. footFour: {
  29083. height: math.unit(1.43, "feet"),
  29084. name: "Foot (Four Toes)",
  29085. image: {
  29086. source: "./media/characters/theo-pangolin/foot-four.svg"
  29087. }
  29088. },
  29089. handFour: {
  29090. height: math.unit(0.81, "feet"),
  29091. name: "Hand (Four Fingers)",
  29092. image: {
  29093. source: "./media/characters/theo-pangolin/hand-four.svg"
  29094. }
  29095. },
  29096. handThree: {
  29097. height: math.unit(0.81, "feet"),
  29098. name: "Hand (Three Fingers)",
  29099. image: {
  29100. source: "./media/characters/theo-pangolin/hand-three.svg"
  29101. }
  29102. },
  29103. headFront: {
  29104. height: math.unit(1.37, "feet"),
  29105. name: "Head (Front)",
  29106. image: {
  29107. source: "./media/characters/theo-pangolin/head-front.svg"
  29108. }
  29109. },
  29110. headSide: {
  29111. height: math.unit(1.43, "feet"),
  29112. name: "Head (Side)",
  29113. image: {
  29114. source: "./media/characters/theo-pangolin/head-side.svg"
  29115. }
  29116. },
  29117. tongue: {
  29118. height: math.unit(2.29, "feet"),
  29119. name: "Tongue",
  29120. image: {
  29121. source: "./media/characters/theo-pangolin/tongue.svg"
  29122. }
  29123. },
  29124. },
  29125. [
  29126. {
  29127. name: "Normal",
  29128. height: math.unit(6, "feet")
  29129. },
  29130. {
  29131. name: "Macro",
  29132. height: math.unit(400, "feet"),
  29133. default: true
  29134. },
  29135. ]
  29136. ))
  29137. characterMakers.push(() => makeCharacter(
  29138. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29139. {
  29140. front: {
  29141. height: math.unit(6, "inches"),
  29142. weight: math.unit(0.036, "kg"),
  29143. name: "Front",
  29144. image: {
  29145. source: "./media/characters/renée/front.svg",
  29146. extra: 900 / 886,
  29147. bottom: 8 / 908
  29148. }
  29149. },
  29150. },
  29151. [
  29152. {
  29153. name: "Nano",
  29154. height: math.unit(1, "nm")
  29155. },
  29156. {
  29157. name: "Micro",
  29158. height: math.unit(1, "mm")
  29159. },
  29160. {
  29161. name: "Normal",
  29162. height: math.unit(6, "inches")
  29163. },
  29164. {
  29165. name: "Macro",
  29166. height: math.unit(2000, "feet"),
  29167. default: true
  29168. },
  29169. {
  29170. name: "Megamacro",
  29171. height: math.unit(2, "km")
  29172. },
  29173. {
  29174. name: "Gigamacro",
  29175. height: math.unit(2000, "km")
  29176. },
  29177. {
  29178. name: "Teramacro",
  29179. height: math.unit(250000, "km")
  29180. },
  29181. ]
  29182. ))
  29183. characterMakers.push(() => makeCharacter(
  29184. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29185. {
  29186. front: {
  29187. height: math.unit(4, "meters"),
  29188. weight: math.unit(150, "kg"),
  29189. name: "Front",
  29190. image: {
  29191. source: "./media/characters/caledvwlch/front.svg",
  29192. extra: 1760 / 1551,
  29193. bottom: 28 / 1788
  29194. }
  29195. },
  29196. side: {
  29197. height: math.unit(4, "meters"),
  29198. weight: math.unit(150, "kg"),
  29199. name: "Side",
  29200. image: {
  29201. source: "./media/characters/caledvwlch/side.svg",
  29202. extra: 1605 / 1536,
  29203. bottom: 31 / 1636
  29204. }
  29205. },
  29206. back: {
  29207. height: math.unit(4, "meters"),
  29208. weight: math.unit(150, "kg"),
  29209. name: "Back",
  29210. image: {
  29211. source: "./media/characters/caledvwlch/back.svg",
  29212. extra: 1635 / 1565,
  29213. bottom: 27 / 1662
  29214. }
  29215. },
  29216. },
  29217. [
  29218. {
  29219. name: "\"Incognito\"",
  29220. height: math.unit(4, "meters")
  29221. },
  29222. {
  29223. name: "Small rampage",
  29224. height: math.unit(600, "meters")
  29225. },
  29226. {
  29227. name: "Mega",
  29228. height: math.unit(30, "km")
  29229. },
  29230. {
  29231. name: "Home-size",
  29232. height: math.unit(50, "km"),
  29233. default: true
  29234. },
  29235. {
  29236. name: "Giga",
  29237. height: math.unit(300, "km")
  29238. },
  29239. {
  29240. name: "Lounging",
  29241. height: math.unit(11000, "km")
  29242. },
  29243. {
  29244. name: "Planet snacking",
  29245. height: math.unit(2000000, "km")
  29246. },
  29247. ]
  29248. ))
  29249. characterMakers.push(() => makeCharacter(
  29250. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29251. {
  29252. front: {
  29253. height: math.unit(6, "feet"),
  29254. weight: math.unit(215, "lb"),
  29255. name: "Front",
  29256. image: {
  29257. source: "./media/characters/sapphire-svell/front.svg",
  29258. extra: 495 / 455,
  29259. bottom: 20 / 515
  29260. }
  29261. },
  29262. back: {
  29263. height: math.unit(6, "feet"),
  29264. weight: math.unit(216, "lb"),
  29265. name: "Back",
  29266. image: {
  29267. source: "./media/characters/sapphire-svell/back.svg",
  29268. extra: 497 / 477,
  29269. bottom: 7 / 504
  29270. }
  29271. },
  29272. maw: {
  29273. height: math.unit(1.57, "feet"),
  29274. name: "Maw",
  29275. image: {
  29276. source: "./media/characters/sapphire-svell/maw.svg"
  29277. }
  29278. },
  29279. foot: {
  29280. height: math.unit(1.07, "feet"),
  29281. name: "Foot",
  29282. image: {
  29283. source: "./media/characters/sapphire-svell/foot.svg"
  29284. }
  29285. },
  29286. toering: {
  29287. height: math.unit(1.7, "inch"),
  29288. name: "Toering",
  29289. image: {
  29290. source: "./media/characters/sapphire-svell/toering.svg"
  29291. }
  29292. },
  29293. },
  29294. [
  29295. {
  29296. name: "Normal",
  29297. height: math.unit(300, "feet"),
  29298. default: true
  29299. },
  29300. {
  29301. name: "Augmented",
  29302. height: math.unit(1250, "feet")
  29303. },
  29304. {
  29305. name: "Unleashed",
  29306. height: math.unit(3000, "feet")
  29307. },
  29308. ]
  29309. ))
  29310. characterMakers.push(() => makeCharacter(
  29311. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29312. {
  29313. side: {
  29314. height: math.unit(2 + 3 / 12, "feet"),
  29315. weight: math.unit(110, "lb"),
  29316. name: "Side",
  29317. image: {
  29318. source: "./media/characters/glitch-flux/side.svg",
  29319. extra: 997 / 805,
  29320. bottom: 20 / 1017
  29321. }
  29322. },
  29323. },
  29324. [
  29325. {
  29326. name: "Normal",
  29327. height: math.unit(2 + 3 / 12, "feet"),
  29328. default: true
  29329. },
  29330. ]
  29331. ))
  29332. characterMakers.push(() => makeCharacter(
  29333. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29334. {
  29335. front: {
  29336. height: math.unit(4, "meters"),
  29337. name: "Front",
  29338. image: {
  29339. source: "./media/characters/mid/front.svg",
  29340. extra: 507 / 476,
  29341. bottom: 17 / 524
  29342. }
  29343. },
  29344. back: {
  29345. height: math.unit(4, "meters"),
  29346. name: "Back",
  29347. image: {
  29348. source: "./media/characters/mid/back.svg",
  29349. extra: 519 / 487,
  29350. bottom: 7 / 526
  29351. }
  29352. },
  29353. stuck: {
  29354. height: math.unit(2.2, "meters"),
  29355. name: "Stuck",
  29356. image: {
  29357. source: "./media/characters/mid/stuck.svg",
  29358. extra: 1951 / 1869,
  29359. bottom: 88 / 2039
  29360. }
  29361. }
  29362. },
  29363. [
  29364. {
  29365. name: "Normal",
  29366. height: math.unit(4, "meters"),
  29367. default: true
  29368. },
  29369. {
  29370. name: "Big",
  29371. height: math.unit(10, "meters")
  29372. },
  29373. {
  29374. name: "Macro",
  29375. height: math.unit(800, "meters")
  29376. },
  29377. {
  29378. name: "Megamacro",
  29379. height: math.unit(100, "km")
  29380. },
  29381. {
  29382. name: "Overgrown",
  29383. height: math.unit(1, "parsec")
  29384. },
  29385. ]
  29386. ))
  29387. characterMakers.push(() => makeCharacter(
  29388. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29389. {
  29390. front: {
  29391. height: math.unit(2.5, "meters"),
  29392. weight: math.unit(225, "kg"),
  29393. name: "Front",
  29394. image: {
  29395. source: "./media/characters/iris/front.svg",
  29396. extra: 3348 / 3251,
  29397. bottom: 205 / 3553
  29398. }
  29399. },
  29400. maw: {
  29401. height: math.unit(0.56, "meter"),
  29402. name: "Maw",
  29403. image: {
  29404. source: "./media/characters/iris/maw.svg"
  29405. }
  29406. },
  29407. },
  29408. [
  29409. {
  29410. name: "Mewter cat",
  29411. height: math.unit(1.2, "meters")
  29412. },
  29413. {
  29414. name: "Minimacro",
  29415. height: math.unit(2.5, "meters"),
  29416. default: true
  29417. },
  29418. {
  29419. name: "Macro",
  29420. height: math.unit(180, "meters")
  29421. },
  29422. {
  29423. name: "Megamacro",
  29424. height: math.unit(2746, "meters")
  29425. },
  29426. ]
  29427. ))
  29428. characterMakers.push(() => makeCharacter(
  29429. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29430. {
  29431. front: {
  29432. height: math.unit(6, "feet"),
  29433. weight: math.unit(135, "lb"),
  29434. name: "Front",
  29435. image: {
  29436. source: "./media/characters/axel/front.svg",
  29437. extra: 908 / 908,
  29438. bottom: 58 / 966
  29439. }
  29440. },
  29441. side: {
  29442. height: math.unit(6, "feet"),
  29443. weight: math.unit(135, "lb"),
  29444. name: "Side",
  29445. image: {
  29446. source: "./media/characters/axel/side.svg",
  29447. extra: 958 / 958,
  29448. bottom: 11 / 969
  29449. }
  29450. },
  29451. back: {
  29452. height: math.unit(6, "feet"),
  29453. weight: math.unit(135, "lb"),
  29454. name: "Back",
  29455. image: {
  29456. source: "./media/characters/axel/back.svg",
  29457. extra: 887 / 887,
  29458. bottom: 34 / 921
  29459. }
  29460. },
  29461. head: {
  29462. height: math.unit(1.07, "feet"),
  29463. name: "Head",
  29464. image: {
  29465. source: "./media/characters/axel/head.svg"
  29466. }
  29467. },
  29468. beak: {
  29469. height: math.unit(1.4, "feet"),
  29470. name: "Beak",
  29471. image: {
  29472. source: "./media/characters/axel/beak.svg"
  29473. }
  29474. },
  29475. beakSide: {
  29476. height: math.unit(1.4, "feet"),
  29477. name: "Beak Side",
  29478. image: {
  29479. source: "./media/characters/axel/beak-side.svg"
  29480. }
  29481. },
  29482. sheath: {
  29483. height: math.unit(0.5, "feet"),
  29484. name: "Sheath",
  29485. image: {
  29486. source: "./media/characters/axel/sheath.svg"
  29487. }
  29488. },
  29489. dick: {
  29490. height: math.unit(0.98, "feet"),
  29491. name: "Dick",
  29492. image: {
  29493. source: "./media/characters/axel/dick.svg"
  29494. }
  29495. },
  29496. },
  29497. [
  29498. {
  29499. name: "Macro",
  29500. height: math.unit(68, "meters"),
  29501. default: true
  29502. },
  29503. ]
  29504. ))
  29505. characterMakers.push(() => makeCharacter(
  29506. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29507. {
  29508. front: {
  29509. height: math.unit(3.5, "meters"),
  29510. weight: math.unit(1200, "kg"),
  29511. name: "Front",
  29512. image: {
  29513. source: "./media/characters/joanna/front.svg",
  29514. extra: 1596 / 1488,
  29515. bottom: 29 / 1625
  29516. }
  29517. },
  29518. back: {
  29519. height: math.unit(3.5, "meters"),
  29520. weight: math.unit(1200, "kg"),
  29521. name: "Back",
  29522. image: {
  29523. source: "./media/characters/joanna/back.svg",
  29524. extra: 1594 / 1495,
  29525. bottom: 26 / 1620
  29526. }
  29527. },
  29528. frontShorts: {
  29529. height: math.unit(3.5, "meters"),
  29530. weight: math.unit(1200, "kg"),
  29531. name: "Front (Shorts)",
  29532. image: {
  29533. source: "./media/characters/joanna/front-shorts.svg",
  29534. extra: 1596 / 1488,
  29535. bottom: 29 / 1625
  29536. }
  29537. },
  29538. frontBiker: {
  29539. height: math.unit(3.5, "meters"),
  29540. weight: math.unit(1200, "kg"),
  29541. name: "Front (Biker)",
  29542. image: {
  29543. source: "./media/characters/joanna/front-biker.svg",
  29544. extra: 1596 / 1488,
  29545. bottom: 29 / 1625
  29546. }
  29547. },
  29548. backBiker: {
  29549. height: math.unit(3.5, "meters"),
  29550. weight: math.unit(1200, "kg"),
  29551. name: "Back (Biker)",
  29552. image: {
  29553. source: "./media/characters/joanna/back-biker.svg",
  29554. extra: 1594 / 1495,
  29555. bottom: 88 / 1682
  29556. }
  29557. },
  29558. bikeLeft: {
  29559. height: math.unit(2.4, "meters"),
  29560. weight: math.unit(1600, "kg"),
  29561. name: "Bike (Left)",
  29562. image: {
  29563. source: "./media/characters/joanna/bike-left.svg",
  29564. extra: 720 / 720,
  29565. bottom: 8 / 728
  29566. }
  29567. },
  29568. bikeRight: {
  29569. height: math.unit(2.4, "meters"),
  29570. weight: math.unit(1600, "kg"),
  29571. name: "Bike (Right)",
  29572. image: {
  29573. source: "./media/characters/joanna/bike-right.svg",
  29574. extra: 720 / 720,
  29575. bottom: 8 / 728
  29576. }
  29577. },
  29578. },
  29579. [
  29580. {
  29581. name: "Incognito",
  29582. height: math.unit(3.5, "meters")
  29583. },
  29584. {
  29585. name: "Casual Big",
  29586. height: math.unit(200, "meters")
  29587. },
  29588. {
  29589. name: "Macro",
  29590. height: math.unit(600, "meters")
  29591. },
  29592. {
  29593. name: "Original",
  29594. height: math.unit(20, "km"),
  29595. default: true
  29596. },
  29597. {
  29598. name: "Giga",
  29599. height: math.unit(400, "km")
  29600. },
  29601. {
  29602. name: "Lounging",
  29603. height: math.unit(1500, "km")
  29604. },
  29605. {
  29606. name: "Planetary",
  29607. height: math.unit(200000, "km")
  29608. },
  29609. ]
  29610. ))
  29611. characterMakers.push(() => makeCharacter(
  29612. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29613. {
  29614. front: {
  29615. height: math.unit(6, "feet"),
  29616. weight: math.unit(150, "lb"),
  29617. name: "Front",
  29618. image: {
  29619. source: "./media/characters/hugo-sigil/front.svg",
  29620. extra: 522 / 500,
  29621. bottom: 2 / 524
  29622. }
  29623. },
  29624. back: {
  29625. height: math.unit(6, "feet"),
  29626. weight: math.unit(150, "lb"),
  29627. name: "Back",
  29628. image: {
  29629. source: "./media/characters/hugo-sigil/back.svg",
  29630. extra: 519 / 495,
  29631. bottom: 5 / 524
  29632. }
  29633. },
  29634. maw: {
  29635. height: math.unit(1.4, "feet"),
  29636. weight: math.unit(150, "lb"),
  29637. name: "Maw",
  29638. image: {
  29639. source: "./media/characters/hugo-sigil/maw.svg"
  29640. }
  29641. },
  29642. feet: {
  29643. height: math.unit(1.56, "feet"),
  29644. weight: math.unit(150, "lb"),
  29645. name: "Feet",
  29646. image: {
  29647. source: "./media/characters/hugo-sigil/feet.svg",
  29648. extra: 177 / 177,
  29649. bottom: 12 / 189
  29650. }
  29651. },
  29652. },
  29653. [
  29654. {
  29655. name: "Normal",
  29656. height: math.unit(6, "feet")
  29657. },
  29658. {
  29659. name: "Macro",
  29660. height: math.unit(200, "feet"),
  29661. default: true
  29662. },
  29663. ]
  29664. ))
  29665. characterMakers.push(() => makeCharacter(
  29666. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29667. {
  29668. front: {
  29669. height: math.unit(6, "feet"),
  29670. weight: math.unit(150, "lb"),
  29671. name: "Front",
  29672. image: {
  29673. source: "./media/characters/peri/front.svg",
  29674. extra: 2354 / 2233,
  29675. bottom: 49 / 2403
  29676. }
  29677. },
  29678. },
  29679. [
  29680. {
  29681. name: "Really Small",
  29682. height: math.unit(1, "nm")
  29683. },
  29684. {
  29685. name: "Micro",
  29686. height: math.unit(4, "inches")
  29687. },
  29688. {
  29689. name: "Normal",
  29690. height: math.unit(7, "inches"),
  29691. default: true
  29692. },
  29693. {
  29694. name: "Macro",
  29695. height: math.unit(400, "feet")
  29696. },
  29697. {
  29698. name: "Megamacro",
  29699. height: math.unit(100, "miles")
  29700. },
  29701. ]
  29702. ))
  29703. characterMakers.push(() => makeCharacter(
  29704. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29705. {
  29706. frontSlim: {
  29707. height: math.unit(7, "feet"),
  29708. name: "Front (Slim)",
  29709. image: {
  29710. source: "./media/characters/issilora/front-slim.svg",
  29711. extra: 529 / 449,
  29712. bottom: 53 / 582
  29713. }
  29714. },
  29715. sideSlim: {
  29716. height: math.unit(7, "feet"),
  29717. name: "Side (Slim)",
  29718. image: {
  29719. source: "./media/characters/issilora/side-slim.svg",
  29720. extra: 570 / 480,
  29721. bottom: 30 / 600
  29722. }
  29723. },
  29724. backSlim: {
  29725. height: math.unit(7, "feet"),
  29726. name: "Back (Slim)",
  29727. image: {
  29728. source: "./media/characters/issilora/back-slim.svg",
  29729. extra: 537 / 455,
  29730. bottom: 46 / 583
  29731. }
  29732. },
  29733. frontBuff: {
  29734. height: math.unit(7, "feet"),
  29735. name: "Front (Buff)",
  29736. image: {
  29737. source: "./media/characters/issilora/front-buff.svg",
  29738. extra: 2310 / 2035,
  29739. bottom: 335 / 2645
  29740. }
  29741. },
  29742. head: {
  29743. height: math.unit(1.94, "feet"),
  29744. name: "Head",
  29745. image: {
  29746. source: "./media/characters/issilora/head.svg"
  29747. }
  29748. },
  29749. },
  29750. [
  29751. {
  29752. name: "Minimum",
  29753. height: math.unit(7, "feet")
  29754. },
  29755. {
  29756. name: "Comfortable",
  29757. height: math.unit(17, "feet")
  29758. },
  29759. {
  29760. name: "Fun Size",
  29761. height: math.unit(47, "feet")
  29762. },
  29763. {
  29764. name: "Natural Macro",
  29765. height: math.unit(137, "feet"),
  29766. default: true
  29767. },
  29768. {
  29769. name: "Maximum Kaiju",
  29770. height: math.unit(397, "feet")
  29771. },
  29772. ]
  29773. ))
  29774. characterMakers.push(() => makeCharacter(
  29775. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29776. {
  29777. front: {
  29778. height: math.unit(50 + 9/12, "feet"),
  29779. weight: math.unit(32.8, "tons"),
  29780. name: "Front",
  29781. image: {
  29782. source: "./media/characters/irb'iiritaahn/front.svg",
  29783. extra: 1878/1826,
  29784. bottom: 326/2204
  29785. }
  29786. },
  29787. back: {
  29788. height: math.unit(50 + 9/12, "feet"),
  29789. weight: math.unit(32.8, "tons"),
  29790. name: "Back",
  29791. image: {
  29792. source: "./media/characters/irb'iiritaahn/back.svg",
  29793. extra: 2052/2018,
  29794. bottom: 152/2204
  29795. }
  29796. },
  29797. head: {
  29798. height: math.unit(12.86, "feet"),
  29799. name: "Head",
  29800. image: {
  29801. source: "./media/characters/irb'iiritaahn/head.svg"
  29802. }
  29803. },
  29804. maw: {
  29805. height: math.unit(9.66, "feet"),
  29806. name: "Maw",
  29807. image: {
  29808. source: "./media/characters/irb'iiritaahn/maw.svg"
  29809. }
  29810. },
  29811. frontDick: {
  29812. height: math.unit(8.78461, "feet"),
  29813. name: "Front Dick",
  29814. image: {
  29815. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29816. }
  29817. },
  29818. rearDick: {
  29819. height: math.unit(8.78461, "feet"),
  29820. name: "Rear Dick",
  29821. image: {
  29822. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29823. }
  29824. },
  29825. rearDickUnfolded: {
  29826. height: math.unit(8.78, "feet"),
  29827. name: "Rear Dick (Unfolded)",
  29828. image: {
  29829. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29830. }
  29831. },
  29832. wings: {
  29833. height: math.unit(43, "feet"),
  29834. name: "Wings",
  29835. image: {
  29836. source: "./media/characters/irb'iiritaahn/wings.svg"
  29837. }
  29838. },
  29839. },
  29840. [
  29841. {
  29842. name: "Macro",
  29843. height: math.unit(50 + 9/12, "feet"),
  29844. default: true
  29845. },
  29846. ]
  29847. ))
  29848. characterMakers.push(() => makeCharacter(
  29849. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29850. {
  29851. front: {
  29852. height: math.unit(205, "cm"),
  29853. weight: math.unit(102, "kg"),
  29854. name: "Front",
  29855. image: {
  29856. source: "./media/characters/irbisgreif/front.svg",
  29857. extra: 785/706,
  29858. bottom: 13/798
  29859. }
  29860. },
  29861. back: {
  29862. height: math.unit(205, "cm"),
  29863. weight: math.unit(102, "kg"),
  29864. name: "Back",
  29865. image: {
  29866. source: "./media/characters/irbisgreif/back.svg",
  29867. extra: 713/701,
  29868. bottom: 26/739
  29869. }
  29870. },
  29871. frontDressed: {
  29872. height: math.unit(216, "cm"),
  29873. weight: math.unit(102, "kg"),
  29874. name: "Front-dressed",
  29875. image: {
  29876. source: "./media/characters/irbisgreif/front-dressed.svg",
  29877. extra: 902/776,
  29878. bottom: 14/916
  29879. }
  29880. },
  29881. sideDressed: {
  29882. height: math.unit(195, "cm"),
  29883. weight: math.unit(102, "kg"),
  29884. name: "Side-dressed",
  29885. image: {
  29886. source: "./media/characters/irbisgreif/side-dressed.svg",
  29887. extra: 788/688,
  29888. bottom: 21/809
  29889. }
  29890. },
  29891. backDressed: {
  29892. height: math.unit(216, "cm"),
  29893. weight: math.unit(102, "kg"),
  29894. name: "Back-dressed",
  29895. image: {
  29896. source: "./media/characters/irbisgreif/back-dressed.svg",
  29897. extra: 901/783,
  29898. bottom: 10/911
  29899. }
  29900. },
  29901. dick: {
  29902. height: math.unit(0.49, "feet"),
  29903. name: "Dick",
  29904. image: {
  29905. source: "./media/characters/irbisgreif/dick.svg"
  29906. }
  29907. },
  29908. wingTop: {
  29909. height: math.unit(1.93 , "feet"),
  29910. name: "Wing-top",
  29911. image: {
  29912. source: "./media/characters/irbisgreif/wing-top.svg"
  29913. }
  29914. },
  29915. wingBottom: {
  29916. height: math.unit(1.93 , "feet"),
  29917. name: "Wing-bottom",
  29918. image: {
  29919. source: "./media/characters/irbisgreif/wing-bottom.svg"
  29920. }
  29921. },
  29922. },
  29923. [
  29924. {
  29925. name: "Normal",
  29926. height: math.unit(216, "cm"),
  29927. default: true
  29928. },
  29929. ]
  29930. ))
  29931. characterMakers.push(() => makeCharacter(
  29932. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  29933. {
  29934. front: {
  29935. height: math.unit(6, "feet"),
  29936. weight: math.unit(150, "lb"),
  29937. name: "Front",
  29938. image: {
  29939. source: "./media/characters/pride/front.svg",
  29940. extra: 1299/1230,
  29941. bottom: 18/1317
  29942. }
  29943. },
  29944. },
  29945. [
  29946. {
  29947. name: "Normal",
  29948. height: math.unit(7, "feet")
  29949. },
  29950. {
  29951. name: "Mini-macro",
  29952. height: math.unit(11, "feet")
  29953. },
  29954. {
  29955. name: "Macro",
  29956. height: math.unit(15, "meters"),
  29957. default: true
  29958. },
  29959. {
  29960. name: "Macro+",
  29961. height: math.unit(40, "meters")
  29962. },
  29963. ]
  29964. ))
  29965. characterMakers.push(() => makeCharacter(
  29966. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  29967. {
  29968. front: {
  29969. height: math.unit(4 + 2 / 12, "feet"),
  29970. weight: math.unit(95, "lb"),
  29971. name: "Front",
  29972. image: {
  29973. source: "./media/characters/vaelophis-nyx/front.svg",
  29974. extra: 2532/2330,
  29975. bottom: 0/2532
  29976. }
  29977. },
  29978. back: {
  29979. height: math.unit(4 + 2 / 12, "feet"),
  29980. weight: math.unit(95, "lb"),
  29981. name: "Back",
  29982. image: {
  29983. source: "./media/characters/vaelophis-nyx/back.svg",
  29984. extra: 2484/2361,
  29985. bottom: 0/2484
  29986. }
  29987. },
  29988. feralSide: {
  29989. height: math.unit(2 + 1/12, "feet"),
  29990. weight: math.unit(20, "lb"),
  29991. name: "Feral (Side)",
  29992. image: {
  29993. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  29994. extra: 1721/1581,
  29995. bottom: 70/1791
  29996. }
  29997. },
  29998. feralLazing: {
  29999. height: math.unit(1.08, "feet"),
  30000. weight: math.unit(20, "lb"),
  30001. name: "Feral (Lazing)",
  30002. image: {
  30003. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30004. extra: 822/822,
  30005. bottom: 248/1070
  30006. }
  30007. },
  30008. ear: {
  30009. height: math.unit(0.416, "feet"),
  30010. name: "Ear",
  30011. image: {
  30012. source: "./media/characters/vaelophis-nyx/ear.svg"
  30013. }
  30014. },
  30015. eye: {
  30016. height: math.unit(0.0748, "feet"),
  30017. name: "Eye",
  30018. image: {
  30019. source: "./media/characters/vaelophis-nyx/eye.svg"
  30020. }
  30021. },
  30022. mouth: {
  30023. height: math.unit(0.378, "feet"),
  30024. name: "Mouth",
  30025. image: {
  30026. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30027. }
  30028. },
  30029. spade: {
  30030. height: math.unit(0.55, "feet"),
  30031. name: "Spade",
  30032. image: {
  30033. source: "./media/characters/vaelophis-nyx/spade.svg"
  30034. }
  30035. },
  30036. },
  30037. [
  30038. {
  30039. name: "Normal",
  30040. height: math.unit(4 + 2/12, "feet"),
  30041. default: true
  30042. },
  30043. ]
  30044. ))
  30045. characterMakers.push(() => makeCharacter(
  30046. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30047. {
  30048. front: {
  30049. height: math.unit(7, "feet"),
  30050. weight: math.unit(231, "lb"),
  30051. name: "Front",
  30052. image: {
  30053. source: "./media/characters/flux/front.svg",
  30054. extra: 919/871,
  30055. bottom: 0/919
  30056. }
  30057. },
  30058. back: {
  30059. height: math.unit(7, "feet"),
  30060. weight: math.unit(231, "lb"),
  30061. name: "Back",
  30062. image: {
  30063. source: "./media/characters/flux/back.svg",
  30064. extra: 1040/992,
  30065. bottom: 0/1040
  30066. }
  30067. },
  30068. frontDressed: {
  30069. height: math.unit(7, "feet"),
  30070. weight: math.unit(231, "lb"),
  30071. name: "Front (Dressed)",
  30072. image: {
  30073. source: "./media/characters/flux/front-dressed.svg",
  30074. extra: 919/871,
  30075. bottom: 0/919
  30076. }
  30077. },
  30078. feralSide: {
  30079. height: math.unit(5, "feet"),
  30080. weight: math.unit(150, "lb"),
  30081. name: "Feral (Side)",
  30082. image: {
  30083. source: "./media/characters/flux/feral-side.svg",
  30084. extra: 598/528,
  30085. bottom: 28/626
  30086. }
  30087. },
  30088. head: {
  30089. height: math.unit(1.585, "feet"),
  30090. name: "Head",
  30091. image: {
  30092. source: "./media/characters/flux/head.svg"
  30093. }
  30094. },
  30095. headSide: {
  30096. height: math.unit(1.74, "feet"),
  30097. name: "Head (Side)",
  30098. image: {
  30099. source: "./media/characters/flux/head-side.svg"
  30100. }
  30101. },
  30102. headSideFire: {
  30103. height: math.unit(1.76, "feet"),
  30104. name: "Head (Side, Fire)",
  30105. image: {
  30106. source: "./media/characters/flux/head-side-fire.svg"
  30107. }
  30108. },
  30109. },
  30110. [
  30111. {
  30112. name: "Normal",
  30113. height: math.unit(7, "feet"),
  30114. default: true
  30115. },
  30116. ]
  30117. ))
  30118. characterMakers.push(() => makeCharacter(
  30119. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30120. {
  30121. front: {
  30122. height: math.unit(9, "feet"),
  30123. weight: math.unit(1012, "lb"),
  30124. name: "Front",
  30125. image: {
  30126. source: "./media/characters/ulfra-lupae/front.svg",
  30127. extra: 1083/1011,
  30128. bottom: 67/1150
  30129. }
  30130. },
  30131. },
  30132. [
  30133. {
  30134. name: "Micro",
  30135. height: math.unit(6, "inches")
  30136. },
  30137. {
  30138. name: "Socializing",
  30139. height: math.unit(6 + 5/12, "feet")
  30140. },
  30141. {
  30142. name: "Normal",
  30143. height: math.unit(9, "feet"),
  30144. default: true
  30145. },
  30146. {
  30147. name: "Macro",
  30148. height: math.unit(150, "feet")
  30149. },
  30150. ]
  30151. ))
  30152. characterMakers.push(() => makeCharacter(
  30153. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30154. {
  30155. front: {
  30156. height: math.unit(5 + 2/12, "feet"),
  30157. weight: math.unit(120, "lb"),
  30158. name: "Front",
  30159. image: {
  30160. source: "./media/characters/timber/front.svg",
  30161. extra: 2814/2705,
  30162. bottom: 181/2995
  30163. }
  30164. },
  30165. },
  30166. [
  30167. {
  30168. name: "Normal",
  30169. height: math.unit(5 + 2/12, "feet"),
  30170. default: true
  30171. },
  30172. ]
  30173. ))
  30174. characterMakers.push(() => makeCharacter(
  30175. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30176. {
  30177. front: {
  30178. height: math.unit(5 + 7/12, "feet"),
  30179. weight: math.unit(220, "lb"),
  30180. name: "Front",
  30181. image: {
  30182. source: "./media/characters/nicki/front.svg",
  30183. extra: 453/419,
  30184. bottom: 7/460
  30185. }
  30186. },
  30187. frontAlt: {
  30188. height: math.unit(5 + 7/12, "feet"),
  30189. weight: math.unit(220, "lb"),
  30190. name: "Front-alt",
  30191. image: {
  30192. source: "./media/characters/nicki/front-alt.svg",
  30193. extra: 435/411,
  30194. bottom: 12/447
  30195. }
  30196. },
  30197. back: {
  30198. height: math.unit(5 + 7/12, "feet"),
  30199. weight: math.unit(220, "lb"),
  30200. name: "Back",
  30201. image: {
  30202. source: "./media/characters/nicki/back.svg",
  30203. extra: 440/413,
  30204. bottom: 19/459
  30205. }
  30206. },
  30207. frontNsfw: {
  30208. height: math.unit(5 + 7/12, "feet"),
  30209. weight: math.unit(220, "lb"),
  30210. name: "Front (NSFW)",
  30211. image: {
  30212. source: "./media/characters/nicki/front-nsfw.svg",
  30213. extra: 453/419,
  30214. bottom: 7/460
  30215. }
  30216. },
  30217. frontNsfwAlt: {
  30218. height: math.unit(5 + 7/12, "feet"),
  30219. weight: math.unit(220, "lb"),
  30220. name: "Front (Alt, NSFW)",
  30221. image: {
  30222. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30223. extra: 435/411,
  30224. bottom: 12/447
  30225. }
  30226. },
  30227. backNsfw: {
  30228. height: math.unit(5 + 7/12, "feet"),
  30229. weight: math.unit(220, "lb"),
  30230. name: "Back (NSFW)",
  30231. image: {
  30232. source: "./media/characters/nicki/back-nsfw.svg",
  30233. extra: 440/413,
  30234. bottom: 19/459
  30235. }
  30236. },
  30237. head: {
  30238. height: math.unit(2.1, "feet"),
  30239. name: "Head",
  30240. image: {
  30241. source: "./media/characters/nicki/head.svg"
  30242. }
  30243. },
  30244. paw: {
  30245. height: math.unit(1.88, "feet"),
  30246. name: "Paw",
  30247. image: {
  30248. source: "./media/characters/nicki/paw.svg"
  30249. }
  30250. },
  30251. },
  30252. [
  30253. {
  30254. name: "Normal",
  30255. height: math.unit(5 + 7/12, "feet"),
  30256. default: true
  30257. },
  30258. ]
  30259. ))
  30260. characterMakers.push(() => makeCharacter(
  30261. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30262. {
  30263. front: {
  30264. height: math.unit(7 + 10/12, "feet"),
  30265. weight: math.unit(3.5, "tons"),
  30266. name: "Front",
  30267. image: {
  30268. source: "./media/characters/lee/front.svg",
  30269. extra: 1773/1615,
  30270. bottom: 86/1859
  30271. }
  30272. },
  30273. hand: {
  30274. height: math.unit(1.78, "feet"),
  30275. name: "Hand",
  30276. image: {
  30277. source: "./media/characters/lee/hand.svg"
  30278. }
  30279. },
  30280. maw: {
  30281. height: math.unit(1.18, "feet"),
  30282. name: "Maw",
  30283. image: {
  30284. source: "./media/characters/lee/maw.svg"
  30285. }
  30286. },
  30287. },
  30288. [
  30289. {
  30290. name: "Normal",
  30291. height: math.unit(7 + 10/12, "feet"),
  30292. default: true
  30293. },
  30294. ]
  30295. ))
  30296. characterMakers.push(() => makeCharacter(
  30297. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30298. {
  30299. front: {
  30300. height: math.unit(9, "feet"),
  30301. name: "Front",
  30302. image: {
  30303. source: "./media/characters/guti/front.svg",
  30304. extra: 4551/4355,
  30305. bottom: 123/4674
  30306. }
  30307. },
  30308. tongue: {
  30309. height: math.unit(1, "feet"),
  30310. name: "Tongue",
  30311. image: {
  30312. source: "./media/characters/guti/tongue.svg"
  30313. }
  30314. },
  30315. paw: {
  30316. height: math.unit(1.18, "feet"),
  30317. name: "Paw",
  30318. image: {
  30319. source: "./media/characters/guti/paw.svg"
  30320. }
  30321. },
  30322. },
  30323. [
  30324. {
  30325. name: "Normal",
  30326. height: math.unit(9, "feet"),
  30327. default: true
  30328. },
  30329. ]
  30330. ))
  30331. characterMakers.push(() => makeCharacter(
  30332. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30333. {
  30334. side: {
  30335. height: math.unit(5, "meters"),
  30336. name: "Side",
  30337. image: {
  30338. source: "./media/characters/vesper/side.svg",
  30339. extra: 1605/1518,
  30340. bottom: 0/1605
  30341. }
  30342. },
  30343. },
  30344. [
  30345. {
  30346. name: "Small",
  30347. height: math.unit(5, "meters")
  30348. },
  30349. {
  30350. name: "Sage",
  30351. height: math.unit(100, "meters"),
  30352. default: true
  30353. },
  30354. {
  30355. name: "Fun Size",
  30356. height: math.unit(600, "meters")
  30357. },
  30358. {
  30359. name: "Goddess",
  30360. height: math.unit(20000, "km")
  30361. },
  30362. {
  30363. name: "Maximum",
  30364. height: math.unit(5, "galaxies")
  30365. },
  30366. ]
  30367. ))
  30368. characterMakers.push(() => makeCharacter(
  30369. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30370. {
  30371. front: {
  30372. height: math.unit(6 + 3/12, "feet"),
  30373. weight: math.unit(190, "lb"),
  30374. name: "Front",
  30375. image: {
  30376. source: "./media/characters/gawain/front.svg",
  30377. extra: 2222/2139,
  30378. bottom: 90/2312
  30379. }
  30380. },
  30381. back: {
  30382. height: math.unit(6 + 3/12, "feet"),
  30383. weight: math.unit(190, "lb"),
  30384. name: "Back",
  30385. image: {
  30386. source: "./media/characters/gawain/back.svg",
  30387. extra: 2199/2111,
  30388. bottom: 73/2272
  30389. }
  30390. },
  30391. },
  30392. [
  30393. {
  30394. name: "Normal",
  30395. height: math.unit(6 + 3/12, "feet"),
  30396. default: true
  30397. },
  30398. ]
  30399. ))
  30400. characterMakers.push(() => makeCharacter(
  30401. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30402. {
  30403. side: {
  30404. height: math.unit(3.5, "meters"),
  30405. weight: math.unit(16000, "lb"),
  30406. name: "Side",
  30407. image: {
  30408. source: "./media/characters/dascalti/side.svg",
  30409. extra: 392/273,
  30410. bottom: 47/439
  30411. }
  30412. },
  30413. breath: {
  30414. height: math.unit(7.4, "feet"),
  30415. name: "Breath",
  30416. image: {
  30417. source: "./media/characters/dascalti/breath.svg"
  30418. }
  30419. },
  30420. fed: {
  30421. height: math.unit(3.6, "meters"),
  30422. weight: math.unit(16000, "lb"),
  30423. name: "Fed",
  30424. image: {
  30425. source: "./media/characters/dascalti/fed.svg",
  30426. extra: 1419/820,
  30427. bottom: 95/1514
  30428. }
  30429. },
  30430. },
  30431. [
  30432. {
  30433. name: "Normal",
  30434. height: math.unit(3.5, "meters"),
  30435. default: true
  30436. },
  30437. ]
  30438. ))
  30439. characterMakers.push(() => makeCharacter(
  30440. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30441. {
  30442. front: {
  30443. height: math.unit(3 + 5/12, "feet"),
  30444. name: "Front",
  30445. image: {
  30446. source: "./media/characters/mauve/front.svg",
  30447. extra: 1126/1033,
  30448. bottom: 65/1191
  30449. }
  30450. },
  30451. side: {
  30452. height: math.unit(3 + 5/12, "feet"),
  30453. name: "Side",
  30454. image: {
  30455. source: "./media/characters/mauve/side.svg",
  30456. extra: 1089/1001,
  30457. bottom: 29/1118
  30458. }
  30459. },
  30460. back: {
  30461. height: math.unit(3 + 5/12, "feet"),
  30462. name: "Back",
  30463. image: {
  30464. source: "./media/characters/mauve/back.svg",
  30465. extra: 1173/1053,
  30466. bottom: 109/1282
  30467. }
  30468. },
  30469. },
  30470. [
  30471. {
  30472. name: "Normal",
  30473. height: math.unit(3 + 5/12, "feet"),
  30474. default: true
  30475. },
  30476. ]
  30477. ))
  30478. characterMakers.push(() => makeCharacter(
  30479. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30480. {
  30481. front: {
  30482. height: math.unit(6 + 3/12, "feet"),
  30483. weight: math.unit(430, "lb"),
  30484. name: "Front",
  30485. image: {
  30486. source: "./media/characters/carlos/front.svg",
  30487. extra: 1964/1913,
  30488. bottom: 70/2034
  30489. }
  30490. },
  30491. },
  30492. [
  30493. {
  30494. name: "Normal",
  30495. height: math.unit(6 + 3/12, "feet"),
  30496. default: true
  30497. },
  30498. ]
  30499. ))
  30500. //characters
  30501. function makeCharacters() {
  30502. const results = [];
  30503. characterMakers.forEach(character => {
  30504. results.push(character());
  30505. });
  30506. return results;
  30507. }