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

29044 строки
725 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. }
  1364. //species
  1365. function getSpeciesInfo(speciesList) {
  1366. let result = new Set();
  1367. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1368. result.add(entry)
  1369. });
  1370. return Array.from(result);
  1371. };
  1372. function getSpeciesInfoHelper(species) {
  1373. if (!speciesData[species]) {
  1374. console.warn(species + " doesn't exist");
  1375. return [];
  1376. }
  1377. if (speciesData[species].parents) {
  1378. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1379. } else {
  1380. return [species];
  1381. }
  1382. }
  1383. characterMakers.push(() => makeCharacter(
  1384. {
  1385. name: "Fen",
  1386. species: ["crux"],
  1387. description: {
  1388. title: "Bio",
  1389. text: "Very furry. Sheds on everything."
  1390. },
  1391. tags: [
  1392. "anthro",
  1393. "goo"
  1394. ]
  1395. },
  1396. {
  1397. back: {
  1398. height: math.unit(2.2428, "meter"),
  1399. weight: math.unit(124.738, "kg"),
  1400. name: "Back",
  1401. image: {
  1402. source: "./media/characters/fen/back.svg",
  1403. extra: 2024 / 1867,
  1404. bottom: 13 / 2037
  1405. },
  1406. info: {
  1407. description: {
  1408. mode: "append",
  1409. text: "\n\nHe is not currently looking at you."
  1410. }
  1411. }
  1412. },
  1413. full: {
  1414. height: math.unit(1.34, "meter"),
  1415. weight: math.unit(225, "kg"),
  1416. name: "Full",
  1417. image: {
  1418. source: "./media/characters/fen/full.svg"
  1419. },
  1420. info: {
  1421. description: {
  1422. mode: "append",
  1423. text: "\n\nMunch."
  1424. }
  1425. }
  1426. },
  1427. kneeling: {
  1428. height: math.unit(5.4, "feet"),
  1429. weight: math.unit(124.738, "kg"),
  1430. name: "Kneeling",
  1431. image: {
  1432. source: "./media/characters/fen/kneeling.svg",
  1433. extra: 563 / 507
  1434. }
  1435. },
  1436. goo: {
  1437. height: math.unit(2.8, "feet"),
  1438. weight: math.unit(125, "kg"),
  1439. capacity: math.unit(1, "people"),
  1440. name: "Goo",
  1441. image: {
  1442. source: "./media/characters/fen/goo.svg",
  1443. bottom: 116 / 613
  1444. }
  1445. },
  1446. lounging: {
  1447. height: math.unit(6.5, "feet"),
  1448. weight: math.unit(125, "kg"),
  1449. name: "Lounging",
  1450. image: {
  1451. source: "./media/characters/fen/lounging.svg"
  1452. }
  1453. },
  1454. },
  1455. [
  1456. {
  1457. name: "Normal",
  1458. height: math.unit(2.2428, "meter")
  1459. },
  1460. {
  1461. name: "Big",
  1462. height: math.unit(12, "feet")
  1463. },
  1464. {
  1465. name: "Minimacro",
  1466. height: math.unit(40, "feet"),
  1467. default: true,
  1468. info: {
  1469. description: {
  1470. mode: "append",
  1471. text: "\n\nTOO DAMN BIG"
  1472. }
  1473. }
  1474. },
  1475. {
  1476. name: "Macro",
  1477. height: math.unit(100, "feet"),
  1478. info: {
  1479. description: {
  1480. mode: "append",
  1481. text: "\n\nTOO DAMN BIG"
  1482. }
  1483. }
  1484. },
  1485. {
  1486. name: "Macro+",
  1487. height: math.unit(300, "feet")
  1488. },
  1489. {
  1490. name: "Megamacro",
  1491. height: math.unit(2, "miles")
  1492. }
  1493. ]
  1494. ))
  1495. characterMakers.push(() => makeCharacter(
  1496. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1497. {
  1498. front: {
  1499. height: math.unit(183, "cm"),
  1500. weight: math.unit(80, "kg"),
  1501. name: "Front",
  1502. image: {
  1503. source: "./media/characters/sofia-fluttertail/front.svg",
  1504. bottom: 0.01,
  1505. extra: 2154 / 2081
  1506. }
  1507. },
  1508. frontAlt: {
  1509. height: math.unit(183, "cm"),
  1510. weight: math.unit(80, "kg"),
  1511. name: "Front (alt)",
  1512. image: {
  1513. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1514. }
  1515. },
  1516. back: {
  1517. height: math.unit(183, "cm"),
  1518. weight: math.unit(80, "kg"),
  1519. name: "Back",
  1520. image: {
  1521. source: "./media/characters/sofia-fluttertail/back.svg"
  1522. }
  1523. },
  1524. kneeling: {
  1525. height: math.unit(125, "cm"),
  1526. weight: math.unit(80, "kg"),
  1527. name: "Kneeling",
  1528. image: {
  1529. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1530. extra: 1033 / 977,
  1531. bottom: 23.7 / 1057
  1532. }
  1533. },
  1534. maw: {
  1535. height: math.unit(183 / 5, "cm"),
  1536. name: "Maw",
  1537. image: {
  1538. source: "./media/characters/sofia-fluttertail/maw.svg"
  1539. }
  1540. },
  1541. mawcloseup: {
  1542. height: math.unit(183 / 5 * 0.41, "cm"),
  1543. name: "Maw (Closeup)",
  1544. image: {
  1545. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1546. }
  1547. },
  1548. },
  1549. [
  1550. {
  1551. name: "Normal",
  1552. height: math.unit(1.83, "meter")
  1553. },
  1554. {
  1555. name: "Size Thief",
  1556. height: math.unit(18, "feet")
  1557. },
  1558. {
  1559. name: "50 Foot Collie",
  1560. height: math.unit(50, "feet")
  1561. },
  1562. {
  1563. name: "Macro",
  1564. height: math.unit(96, "feet"),
  1565. default: true
  1566. },
  1567. {
  1568. name: "Megamerger",
  1569. height: math.unit(650, "feet")
  1570. },
  1571. ]
  1572. ))
  1573. characterMakers.push(() => makeCharacter(
  1574. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1575. {
  1576. front: {
  1577. height: math.unit(7, "feet"),
  1578. weight: math.unit(100, "kg"),
  1579. name: "Front",
  1580. image: {
  1581. source: "./media/characters/march/front.svg",
  1582. extra: 1,
  1583. bottom: 0.015
  1584. }
  1585. },
  1586. foot: {
  1587. height: math.unit(0.9, "feet"),
  1588. name: "Foot",
  1589. image: {
  1590. source: "./media/characters/march/foot.svg"
  1591. }
  1592. },
  1593. },
  1594. [
  1595. {
  1596. name: "Normal",
  1597. height: math.unit(7.9, "feet")
  1598. },
  1599. {
  1600. name: "Macro",
  1601. height: math.unit(220, "meters")
  1602. },
  1603. {
  1604. name: "Megamacro",
  1605. height: math.unit(2.98, "km"),
  1606. default: true
  1607. },
  1608. {
  1609. name: "Gigamacro",
  1610. height: math.unit(15963, "km")
  1611. },
  1612. {
  1613. name: "Teramacro",
  1614. height: math.unit(2980000000, "km")
  1615. },
  1616. {
  1617. name: "Examacro",
  1618. height: math.unit(250, "parsecs")
  1619. },
  1620. ]
  1621. ))
  1622. characterMakers.push(() => makeCharacter(
  1623. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1624. {
  1625. front: {
  1626. height: math.unit(6, "feet"),
  1627. weight: math.unit(60, "kg"),
  1628. name: "Front",
  1629. image: {
  1630. source: "./media/characters/noir/front.svg",
  1631. extra: 1,
  1632. bottom: 0.032
  1633. }
  1634. },
  1635. },
  1636. [
  1637. {
  1638. name: "Normal",
  1639. height: math.unit(6.6, "feet")
  1640. },
  1641. {
  1642. name: "Macro",
  1643. height: math.unit(500, "feet")
  1644. },
  1645. {
  1646. name: "Megamacro",
  1647. height: math.unit(2.5, "km"),
  1648. default: true
  1649. },
  1650. {
  1651. name: "Gigamacro",
  1652. height: math.unit(22500, "km")
  1653. },
  1654. {
  1655. name: "Teramacro",
  1656. height: math.unit(2500000000, "km")
  1657. },
  1658. {
  1659. name: "Examacro",
  1660. height: math.unit(200, "parsecs")
  1661. },
  1662. ]
  1663. ))
  1664. characterMakers.push(() => makeCharacter(
  1665. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1666. {
  1667. front: {
  1668. height: math.unit(7, "feet"),
  1669. weight: math.unit(100, "kg"),
  1670. name: "Front",
  1671. image: {
  1672. source: "./media/characters/okuri/front.svg",
  1673. extra: 1,
  1674. bottom: 0.037
  1675. }
  1676. },
  1677. back: {
  1678. height: math.unit(7, "feet"),
  1679. weight: math.unit(100, "kg"),
  1680. name: "Back",
  1681. image: {
  1682. source: "./media/characters/okuri/back.svg",
  1683. extra: 1,
  1684. bottom: 0.007
  1685. }
  1686. },
  1687. },
  1688. [
  1689. {
  1690. name: "Megamacro",
  1691. height: math.unit(100, "miles"),
  1692. default: true
  1693. },
  1694. ]
  1695. ))
  1696. characterMakers.push(() => makeCharacter(
  1697. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1698. {
  1699. front: {
  1700. height: math.unit(7, "feet"),
  1701. weight: math.unit(100, "kg"),
  1702. name: "Front",
  1703. image: {
  1704. source: "./media/characters/manny/front.svg",
  1705. extra: 1,
  1706. bottom: 0.06
  1707. }
  1708. },
  1709. back: {
  1710. height: math.unit(7, "feet"),
  1711. weight: math.unit(100, "kg"),
  1712. name: "Back",
  1713. image: {
  1714. source: "./media/characters/manny/back.svg",
  1715. extra: 1,
  1716. bottom: 0.014
  1717. }
  1718. },
  1719. },
  1720. [
  1721. {
  1722. name: "Normal",
  1723. height: math.unit(7, "feet"),
  1724. },
  1725. {
  1726. name: "Macro",
  1727. height: math.unit(78, "feet"),
  1728. default: true
  1729. },
  1730. {
  1731. name: "Macro+",
  1732. height: math.unit(300, "meters")
  1733. },
  1734. {
  1735. name: "Macro++",
  1736. height: math.unit(2400, "meters")
  1737. },
  1738. {
  1739. name: "Megamacro",
  1740. height: math.unit(5167, "meters")
  1741. },
  1742. {
  1743. name: "Gigamacro",
  1744. height: math.unit(41769, "miles")
  1745. },
  1746. ]
  1747. ))
  1748. characterMakers.push(() => makeCharacter(
  1749. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1750. {
  1751. front: {
  1752. height: math.unit(7, "feet"),
  1753. weight: math.unit(100, "kg"),
  1754. name: "Front",
  1755. image: {
  1756. source: "./media/characters/adake/front-1.svg"
  1757. }
  1758. },
  1759. frontAlt: {
  1760. height: math.unit(7, "feet"),
  1761. weight: math.unit(100, "kg"),
  1762. name: "Front (Alt)",
  1763. image: {
  1764. source: "./media/characters/adake/front-2.svg",
  1765. extra: 1,
  1766. bottom: 0.01
  1767. }
  1768. },
  1769. back: {
  1770. height: math.unit(7, "feet"),
  1771. weight: math.unit(100, "kg"),
  1772. name: "Back",
  1773. image: {
  1774. source: "./media/characters/adake/back.svg",
  1775. }
  1776. },
  1777. kneel: {
  1778. height: math.unit(5.385, "feet"),
  1779. weight: math.unit(100, "kg"),
  1780. name: "Kneeling",
  1781. image: {
  1782. source: "./media/characters/adake/kneel.svg",
  1783. bottom: 0.052
  1784. }
  1785. },
  1786. },
  1787. [
  1788. {
  1789. name: "Normal",
  1790. height: math.unit(7, "feet"),
  1791. },
  1792. {
  1793. name: "Macro",
  1794. height: math.unit(78, "feet"),
  1795. default: true
  1796. },
  1797. {
  1798. name: "Macro+",
  1799. height: math.unit(300, "meters")
  1800. },
  1801. {
  1802. name: "Macro++",
  1803. height: math.unit(2400, "meters")
  1804. },
  1805. {
  1806. name: "Megamacro",
  1807. height: math.unit(5167, "meters")
  1808. },
  1809. {
  1810. name: "Gigamacro",
  1811. height: math.unit(41769, "miles")
  1812. },
  1813. ]
  1814. ))
  1815. characterMakers.push(() => makeCharacter(
  1816. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1817. {
  1818. front: {
  1819. height: math.unit(1.65, "meters"),
  1820. weight: math.unit(50, "kg"),
  1821. name: "Front",
  1822. image: {
  1823. source: "./media/characters/elijah/front.svg",
  1824. extra: 858 / 830,
  1825. bottom: 95.5 / 953.8559
  1826. }
  1827. },
  1828. back: {
  1829. height: math.unit(1.65, "meters"),
  1830. weight: math.unit(50, "kg"),
  1831. name: "Back",
  1832. image: {
  1833. source: "./media/characters/elijah/back.svg",
  1834. extra: 895 / 850,
  1835. bottom: 5.3 / 897.956
  1836. }
  1837. },
  1838. frontNsfw: {
  1839. height: math.unit(1.65, "meters"),
  1840. weight: math.unit(50, "kg"),
  1841. name: "Front (NSFW)",
  1842. image: {
  1843. source: "./media/characters/elijah/front-nsfw.svg",
  1844. extra: 858 / 830,
  1845. bottom: 95.5 / 953.8559
  1846. }
  1847. },
  1848. backNsfw: {
  1849. height: math.unit(1.65, "meters"),
  1850. weight: math.unit(50, "kg"),
  1851. name: "Back (NSFW)",
  1852. image: {
  1853. source: "./media/characters/elijah/back-nsfw.svg",
  1854. extra: 895 / 850,
  1855. bottom: 5.3 / 897.956
  1856. }
  1857. },
  1858. dick: {
  1859. height: math.unit(1, "feet"),
  1860. name: "Dick",
  1861. image: {
  1862. source: "./media/characters/elijah/dick.svg"
  1863. }
  1864. },
  1865. beakOpen: {
  1866. height: math.unit(1.25, "feet"),
  1867. name: "Beak (Open)",
  1868. image: {
  1869. source: "./media/characters/elijah/beak-open.svg"
  1870. }
  1871. },
  1872. beakShut: {
  1873. height: math.unit(1.25, "feet"),
  1874. name: "Beak (Shut)",
  1875. image: {
  1876. source: "./media/characters/elijah/beak-shut.svg"
  1877. }
  1878. },
  1879. footFlexing: {
  1880. height: math.unit(1.61, "feet"),
  1881. name: "Foot (Flexing)",
  1882. image: {
  1883. source: "./media/characters/elijah/foot-flexing.svg"
  1884. }
  1885. },
  1886. footStepping: {
  1887. height: math.unit(1.44, "feet"),
  1888. name: "Foot (Stepping)",
  1889. image: {
  1890. source: "./media/characters/elijah/foot-stepping.svg"
  1891. }
  1892. },
  1893. plantigradeLeg: {
  1894. height: math.unit(2.34, "feet"),
  1895. name: "Plantigrade Leg",
  1896. image: {
  1897. source: "./media/characters/elijah/plantigrade-leg.svg"
  1898. }
  1899. },
  1900. plantigradeFootLeft: {
  1901. height: math.unit(0.9, "feet"),
  1902. name: "Plantigrade Foot (Left)",
  1903. image: {
  1904. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1905. }
  1906. },
  1907. plantigradeFootRight: {
  1908. height: math.unit(0.9, "feet"),
  1909. name: "Plantigrade Foot (Right)",
  1910. image: {
  1911. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1912. }
  1913. },
  1914. },
  1915. [
  1916. {
  1917. name: "Normal",
  1918. height: math.unit(1.65, "meters")
  1919. },
  1920. {
  1921. name: "Macro",
  1922. height: math.unit(55, "meters"),
  1923. default: true
  1924. },
  1925. {
  1926. name: "Macro+",
  1927. height: math.unit(105, "meters")
  1928. },
  1929. ]
  1930. ))
  1931. characterMakers.push(() => makeCharacter(
  1932. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1933. {
  1934. front: {
  1935. height: math.unit(11, "feet"),
  1936. weight: math.unit(80, "kg"),
  1937. name: "Front",
  1938. image: {
  1939. source: "./media/characters/rai/front.svg",
  1940. extra: 1,
  1941. bottom: 0.03
  1942. }
  1943. },
  1944. side: {
  1945. height: math.unit(11, "feet"),
  1946. weight: math.unit(80, "kg"),
  1947. name: "Side",
  1948. image: {
  1949. source: "./media/characters/rai/side.svg"
  1950. }
  1951. },
  1952. back: {
  1953. height: math.unit(11, "feet"),
  1954. weight: math.unit(80, "lb"),
  1955. name: "Back",
  1956. image: {
  1957. source: "./media/characters/rai/back.svg",
  1958. extra: 1,
  1959. bottom: 0.01
  1960. }
  1961. },
  1962. feral: {
  1963. height: math.unit(11, "feet"),
  1964. weight: math.unit(800, "lb"),
  1965. name: "Feral",
  1966. image: {
  1967. source: "./media/characters/rai/feral.svg",
  1968. extra: 1050 / 659,
  1969. bottom: 0.07
  1970. }
  1971. },
  1972. dragon: {
  1973. height: math.unit(23, "feet"),
  1974. weight: math.unit(50000, "lb"),
  1975. name: "Dragon",
  1976. image: {
  1977. source: "./media/characters/rai/dragon.svg",
  1978. extra: 2498 / 2030,
  1979. bottom: 85.2 / 2584
  1980. }
  1981. },
  1982. maw: {
  1983. height: math.unit(6 / 3.81416, "feet"),
  1984. name: "Maw",
  1985. image: {
  1986. source: "./media/characters/rai/maw.svg"
  1987. }
  1988. },
  1989. },
  1990. [
  1991. {
  1992. name: "Normal",
  1993. height: math.unit(11, "feet")
  1994. },
  1995. {
  1996. name: "Macro",
  1997. height: math.unit(302, "feet"),
  1998. default: true
  1999. },
  2000. ]
  2001. ))
  2002. characterMakers.push(() => makeCharacter(
  2003. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2004. {
  2005. frontDressed: {
  2006. height: math.unit(216, "feet"),
  2007. weight: math.unit(7000000, "lb"),
  2008. name: "Front (Dressed)",
  2009. image: {
  2010. source: "./media/characters/jazzy/front-dressed.svg",
  2011. extra: 2738 / 2651,
  2012. bottom: 41.8 / 2786
  2013. }
  2014. },
  2015. backDressed: {
  2016. height: math.unit(216, "feet"),
  2017. weight: math.unit(7000000, "lb"),
  2018. name: "Back (Dressed)",
  2019. image: {
  2020. source: "./media/characters/jazzy/back-dressed.svg",
  2021. extra: 2775 / 2673,
  2022. bottom: 36.8 / 2817
  2023. }
  2024. },
  2025. front: {
  2026. height: math.unit(216, "feet"),
  2027. weight: math.unit(7000000, "lb"),
  2028. name: "Front",
  2029. image: {
  2030. source: "./media/characters/jazzy/front.svg",
  2031. extra: 2738 / 2651,
  2032. bottom: 41.8 / 2786
  2033. }
  2034. },
  2035. back: {
  2036. height: math.unit(216, "feet"),
  2037. weight: math.unit(7000000, "lb"),
  2038. name: "Back",
  2039. image: {
  2040. source: "./media/characters/jazzy/back.svg",
  2041. extra: 2775 / 2673,
  2042. bottom: 36.8 / 2817
  2043. }
  2044. },
  2045. maw: {
  2046. height: math.unit(20, "feet"),
  2047. name: "Maw",
  2048. image: {
  2049. source: "./media/characters/jazzy/maw.svg"
  2050. }
  2051. },
  2052. paws: {
  2053. height: math.unit(27.5, "feet"),
  2054. name: "Paws",
  2055. image: {
  2056. source: "./media/characters/jazzy/paws.svg"
  2057. }
  2058. },
  2059. eye: {
  2060. height: math.unit(4.4, "feet"),
  2061. name: "Eye",
  2062. image: {
  2063. source: "./media/characters/jazzy/eye.svg"
  2064. }
  2065. },
  2066. droneOffense: {
  2067. height: math.unit(9.5, "inches"),
  2068. name: "Drone (Offense)",
  2069. image: {
  2070. source: "./media/characters/jazzy/drone-offense.svg"
  2071. }
  2072. },
  2073. droneRecon: {
  2074. height: math.unit(9.5, "inches"),
  2075. name: "Drone (Recon)",
  2076. image: {
  2077. source: "./media/characters/jazzy/drone-recon.svg"
  2078. }
  2079. },
  2080. droneDefense: {
  2081. height: math.unit(9.5, "inches"),
  2082. name: "Drone (Defense)",
  2083. image: {
  2084. source: "./media/characters/jazzy/drone-defense.svg"
  2085. }
  2086. },
  2087. },
  2088. [
  2089. {
  2090. name: "Macro",
  2091. height: math.unit(216, "feet"),
  2092. default: true
  2093. },
  2094. ]
  2095. ))
  2096. characterMakers.push(() => makeCharacter(
  2097. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2098. {
  2099. front: {
  2100. height: math.unit(7, "feet"),
  2101. weight: math.unit(80, "kg"),
  2102. name: "Front",
  2103. image: {
  2104. source: "./media/characters/flamm/front.svg",
  2105. extra: 1794 / 1677,
  2106. bottom: 31.7 / 1828.5
  2107. }
  2108. },
  2109. },
  2110. [
  2111. {
  2112. name: "Normal",
  2113. height: math.unit(9.5, "feet")
  2114. },
  2115. {
  2116. name: "Macro",
  2117. height: math.unit(200, "feet"),
  2118. default: true
  2119. },
  2120. ]
  2121. ))
  2122. characterMakers.push(() => makeCharacter(
  2123. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2124. {
  2125. front: {
  2126. height: math.unit(7, "feet"),
  2127. weight: math.unit(80, "kg"),
  2128. name: "Front",
  2129. image: {
  2130. source: "./media/characters/zephiro/front.svg",
  2131. extra: 2309 / 2162,
  2132. bottom: 0.069
  2133. }
  2134. },
  2135. side: {
  2136. height: math.unit(7, "feet"),
  2137. weight: math.unit(80, "kg"),
  2138. name: "Side",
  2139. image: {
  2140. source: "./media/characters/zephiro/side.svg",
  2141. extra: 2403 / 2279,
  2142. bottom: 0.015
  2143. }
  2144. },
  2145. back: {
  2146. height: math.unit(7, "feet"),
  2147. weight: math.unit(80, "kg"),
  2148. name: "Back",
  2149. image: {
  2150. source: "./media/characters/zephiro/back.svg",
  2151. extra: 2373 / 2244,
  2152. bottom: 0.013
  2153. }
  2154. },
  2155. },
  2156. [
  2157. {
  2158. name: "Micro",
  2159. height: math.unit(3, "inches")
  2160. },
  2161. {
  2162. name: "Normal",
  2163. height: math.unit(5 + 3 / 12, "feet"),
  2164. default: true
  2165. },
  2166. {
  2167. name: "Macro",
  2168. height: math.unit(118, "feet")
  2169. },
  2170. ]
  2171. ))
  2172. characterMakers.push(() => makeCharacter(
  2173. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2174. {
  2175. front: {
  2176. height: math.unit(5, "feet"),
  2177. weight: math.unit(90, "kg"),
  2178. name: "Front",
  2179. image: {
  2180. source: "./media/characters/fory/front.svg",
  2181. extra: 2862 / 2674,
  2182. bottom: 180 / 3043.8
  2183. }
  2184. },
  2185. back: {
  2186. height: math.unit(5, "feet"),
  2187. weight: math.unit(90, "kg"),
  2188. name: "Back",
  2189. image: {
  2190. source: "./media/characters/fory/back.svg",
  2191. extra: 2962 / 2791,
  2192. bottom: 106 / 3071.8
  2193. }
  2194. },
  2195. foot: {
  2196. height: math.unit(2.14, "feet"),
  2197. name: "Foot",
  2198. image: {
  2199. source: "./media/characters/fory/foot.svg"
  2200. }
  2201. },
  2202. },
  2203. [
  2204. {
  2205. name: "Normal",
  2206. height: math.unit(5, "feet")
  2207. },
  2208. {
  2209. name: "Macro",
  2210. height: math.unit(50, "feet"),
  2211. default: true
  2212. },
  2213. {
  2214. name: "Megamacro",
  2215. height: math.unit(10, "miles")
  2216. },
  2217. {
  2218. name: "Gigamacro",
  2219. height: math.unit(5, "earths")
  2220. },
  2221. ]
  2222. ))
  2223. characterMakers.push(() => makeCharacter(
  2224. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2225. {
  2226. front: {
  2227. height: math.unit(7, "feet"),
  2228. weight: math.unit(90, "kg"),
  2229. name: "Front",
  2230. image: {
  2231. source: "./media/characters/kurrikage/front.svg",
  2232. extra: 1,
  2233. bottom: 0.035
  2234. }
  2235. },
  2236. back: {
  2237. height: math.unit(7, "feet"),
  2238. weight: math.unit(90, "lb"),
  2239. name: "Back",
  2240. image: {
  2241. source: "./media/characters/kurrikage/back.svg"
  2242. }
  2243. },
  2244. paw: {
  2245. height: math.unit(1.5, "feet"),
  2246. name: "Paw",
  2247. image: {
  2248. source: "./media/characters/kurrikage/paw.svg"
  2249. }
  2250. },
  2251. staff: {
  2252. height: math.unit(6.7, "feet"),
  2253. name: "Staff",
  2254. image: {
  2255. source: "./media/characters/kurrikage/staff.svg"
  2256. }
  2257. },
  2258. peek: {
  2259. height: math.unit(1.05, "feet"),
  2260. name: "Peeking",
  2261. image: {
  2262. source: "./media/characters/kurrikage/peek.svg",
  2263. bottom: 0.08
  2264. }
  2265. },
  2266. },
  2267. [
  2268. {
  2269. name: "Normal",
  2270. height: math.unit(12, "feet"),
  2271. default: true
  2272. },
  2273. {
  2274. name: "Big",
  2275. height: math.unit(20, "feet")
  2276. },
  2277. {
  2278. name: "Macro",
  2279. height: math.unit(500, "feet")
  2280. },
  2281. {
  2282. name: "Megamacro",
  2283. height: math.unit(20, "miles")
  2284. },
  2285. ]
  2286. ))
  2287. characterMakers.push(() => makeCharacter(
  2288. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2289. {
  2290. front: {
  2291. height: math.unit(6, "feet"),
  2292. weight: math.unit(75, "kg"),
  2293. name: "Front",
  2294. image: {
  2295. source: "./media/characters/shingo/front.svg",
  2296. extra: 3511 / 3338,
  2297. bottom: 0.005
  2298. }
  2299. },
  2300. paw: {
  2301. height: math.unit(1, "feet"),
  2302. name: "Paw",
  2303. image: {
  2304. source: "./media/characters/shingo/paw.svg"
  2305. }
  2306. },
  2307. },
  2308. [
  2309. {
  2310. name: "Micro",
  2311. height: math.unit(4, "inches")
  2312. },
  2313. {
  2314. name: "Normal",
  2315. height: math.unit(6, "feet"),
  2316. default: true
  2317. },
  2318. {
  2319. name: "Macro",
  2320. height: math.unit(108, "feet")
  2321. }
  2322. ]
  2323. ))
  2324. characterMakers.push(() => makeCharacter(
  2325. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2326. {
  2327. side: {
  2328. height: math.unit(6, "feet"),
  2329. weight: math.unit(75, "kg"),
  2330. name: "Side",
  2331. image: {
  2332. source: "./media/characters/aigey/side.svg"
  2333. }
  2334. },
  2335. },
  2336. [
  2337. {
  2338. name: "Macro",
  2339. height: math.unit(200, "feet"),
  2340. default: true
  2341. },
  2342. {
  2343. name: "Megamacro",
  2344. height: math.unit(100, "miles")
  2345. },
  2346. ]
  2347. )
  2348. )
  2349. characterMakers.push(() => makeCharacter(
  2350. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2351. {
  2352. front: {
  2353. height: math.unit(5 + 5 / 12, "feet"),
  2354. weight: math.unit(75, "kg"),
  2355. name: "Front",
  2356. image: {
  2357. source: "./media/characters/natasha/front.svg",
  2358. extra: 859 / 824,
  2359. bottom: 23 / 879.6
  2360. }
  2361. },
  2362. frontNsfw: {
  2363. height: math.unit(5 + 5 / 12, "feet"),
  2364. weight: math.unit(75, "kg"),
  2365. name: "Front (NSFW)",
  2366. image: {
  2367. source: "./media/characters/natasha/front-nsfw.svg",
  2368. extra: 859 / 824,
  2369. bottom: 23 / 879.6
  2370. }
  2371. },
  2372. frontErect: {
  2373. height: math.unit(5 + 5 / 12, "feet"),
  2374. weight: math.unit(75, "kg"),
  2375. name: "Front (Erect)",
  2376. image: {
  2377. source: "./media/characters/natasha/front-erect.svg",
  2378. extra: 859 / 824,
  2379. bottom: 23 / 879.6
  2380. }
  2381. },
  2382. back: {
  2383. height: math.unit(5 + 5 / 12, "feet"),
  2384. weight: math.unit(75, "kg"),
  2385. name: "Back",
  2386. image: {
  2387. source: "./media/characters/natasha/back.svg",
  2388. extra: 887.9 / 852.6,
  2389. bottom: 9.7 / 896.4
  2390. }
  2391. },
  2392. backAlt: {
  2393. height: math.unit(5 + 5 / 12, "feet"),
  2394. weight: math.unit(75, "kg"),
  2395. name: "Back (Alt)",
  2396. image: {
  2397. source: "./media/characters/natasha/back-alt.svg",
  2398. extra: 1236.7 / 1192,
  2399. bottom: 22.3 / 1258.2
  2400. }
  2401. },
  2402. dick: {
  2403. height: math.unit(1.772, "feet"),
  2404. name: "Dick",
  2405. image: {
  2406. source: "./media/characters/natasha/dick.svg"
  2407. }
  2408. },
  2409. paw: {
  2410. height: math.unit(0.250, "meters"),
  2411. name: "Paw",
  2412. image: {
  2413. source: "./media/characters/natasha/paw.svg"
  2414. }
  2415. },
  2416. },
  2417. [
  2418. {
  2419. name: "Normal",
  2420. height: math.unit(5 + 5 / 12, "feet")
  2421. },
  2422. {
  2423. name: "Large",
  2424. height: math.unit(12, "feet")
  2425. },
  2426. {
  2427. name: "Macro",
  2428. height: math.unit(100, "feet"),
  2429. default: true
  2430. },
  2431. {
  2432. name: "Macro+",
  2433. height: math.unit(260, "feet")
  2434. },
  2435. {
  2436. name: "Macro++",
  2437. height: math.unit(1, "mile")
  2438. },
  2439. ]
  2440. ))
  2441. characterMakers.push(() => makeCharacter(
  2442. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2443. {
  2444. front: {
  2445. height: math.unit(6, "feet"),
  2446. weight: math.unit(75, "kg"),
  2447. name: "Front",
  2448. image: {
  2449. source: "./media/characters/malik/front.svg"
  2450. }
  2451. },
  2452. side: {
  2453. height: math.unit(6, "feet"),
  2454. weight: math.unit(75, "kg"),
  2455. name: "Side",
  2456. image: {
  2457. source: "./media/characters/malik/side.svg",
  2458. extra: 1.1539
  2459. }
  2460. },
  2461. back: {
  2462. height: math.unit(6, "feet"),
  2463. weight: math.unit(75, "kg"),
  2464. name: "Back",
  2465. image: {
  2466. source: "./media/characters/malik/back.svg"
  2467. }
  2468. },
  2469. },
  2470. [
  2471. {
  2472. name: "Macro",
  2473. height: math.unit(156, "feet"),
  2474. default: true
  2475. },
  2476. {
  2477. name: "Macro+",
  2478. height: math.unit(1188, "feet")
  2479. },
  2480. ]
  2481. ))
  2482. characterMakers.push(() => makeCharacter(
  2483. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2484. {
  2485. front: {
  2486. height: math.unit(6, "feet"),
  2487. weight: math.unit(75, "kg"),
  2488. name: "Front",
  2489. image: {
  2490. source: "./media/characters/sefer/front.svg",
  2491. extra: 848 / 659,
  2492. bottom: 28.3 / 876.442
  2493. }
  2494. },
  2495. back: {
  2496. height: math.unit(6, "feet"),
  2497. weight: math.unit(75, "kg"),
  2498. name: "Back",
  2499. image: {
  2500. source: "./media/characters/sefer/back.svg",
  2501. extra: 864 / 695,
  2502. bottom: 10 / 871
  2503. }
  2504. },
  2505. frontDressed: {
  2506. height: math.unit(6, "feet"),
  2507. weight: math.unit(75, "kg"),
  2508. name: "Front (Dressed)",
  2509. image: {
  2510. source: "./media/characters/sefer/front-dressed.svg",
  2511. extra: 839 / 653,
  2512. bottom: 37.6 / 878
  2513. }
  2514. },
  2515. },
  2516. [
  2517. {
  2518. name: "Normal",
  2519. height: math.unit(6, "feet"),
  2520. default: true
  2521. },
  2522. ]
  2523. ))
  2524. characterMakers.push(() => makeCharacter(
  2525. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2526. {
  2527. body: {
  2528. height: math.unit(2.2428, "meter"),
  2529. weight: math.unit(124.738, "kg"),
  2530. name: "Body",
  2531. image: {
  2532. extra: 1225 / 1050,
  2533. source: "./media/characters/north/front.svg"
  2534. }
  2535. }
  2536. },
  2537. [
  2538. {
  2539. name: "Micro",
  2540. height: math.unit(4, "inches")
  2541. },
  2542. {
  2543. name: "Macro",
  2544. height: math.unit(63, "meters")
  2545. },
  2546. {
  2547. name: "Megamacro",
  2548. height: math.unit(101, "miles"),
  2549. default: true
  2550. }
  2551. ]
  2552. ))
  2553. characterMakers.push(() => makeCharacter(
  2554. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2555. {
  2556. angled: {
  2557. height: math.unit(4, "meter"),
  2558. weight: math.unit(150, "kg"),
  2559. name: "Angled",
  2560. image: {
  2561. source: "./media/characters/talan/angled-sfw.svg",
  2562. bottom: 29 / 3734
  2563. }
  2564. },
  2565. angledNsfw: {
  2566. height: math.unit(4, "meter"),
  2567. weight: math.unit(150, "kg"),
  2568. name: "Angled (NSFW)",
  2569. image: {
  2570. source: "./media/characters/talan/angled-nsfw.svg",
  2571. bottom: 29 / 3734
  2572. }
  2573. },
  2574. frontNsfw: {
  2575. height: math.unit(4, "meter"),
  2576. weight: math.unit(150, "kg"),
  2577. name: "Front (NSFW)",
  2578. image: {
  2579. source: "./media/characters/talan/front-nsfw.svg",
  2580. bottom: 29 / 3734
  2581. }
  2582. },
  2583. sideNsfw: {
  2584. height: math.unit(4, "meter"),
  2585. weight: math.unit(150, "kg"),
  2586. name: "Side (NSFW)",
  2587. image: {
  2588. source: "./media/characters/talan/side-nsfw.svg",
  2589. bottom: 29 / 3734
  2590. }
  2591. },
  2592. back: {
  2593. height: math.unit(4, "meter"),
  2594. weight: math.unit(150, "kg"),
  2595. name: "Back",
  2596. image: {
  2597. source: "./media/characters/talan/back.svg"
  2598. }
  2599. },
  2600. dickBottom: {
  2601. height: math.unit(0.621, "meter"),
  2602. name: "Dick (Bottom)",
  2603. image: {
  2604. source: "./media/characters/talan/dick-bottom.svg"
  2605. }
  2606. },
  2607. dickTop: {
  2608. height: math.unit(0.621, "meter"),
  2609. name: "Dick (Top)",
  2610. image: {
  2611. source: "./media/characters/talan/dick-top.svg"
  2612. }
  2613. },
  2614. dickSide: {
  2615. height: math.unit(0.305, "meter"),
  2616. name: "Dick (Side)",
  2617. image: {
  2618. source: "./media/characters/talan/dick-side.svg"
  2619. }
  2620. },
  2621. dickFront: {
  2622. height: math.unit(0.305, "meter"),
  2623. name: "Dick (Front)",
  2624. image: {
  2625. source: "./media/characters/talan/dick-front.svg"
  2626. }
  2627. },
  2628. },
  2629. [
  2630. {
  2631. name: "Normal",
  2632. height: math.unit(4, "meters")
  2633. },
  2634. {
  2635. name: "Macro",
  2636. height: math.unit(100, "meters")
  2637. },
  2638. {
  2639. name: "Megamacro",
  2640. height: math.unit(2, "miles"),
  2641. default: true
  2642. },
  2643. {
  2644. name: "Gigamacro",
  2645. height: math.unit(5000, "miles")
  2646. },
  2647. {
  2648. name: "Teramacro",
  2649. height: math.unit(100, "parsecs")
  2650. }
  2651. ]
  2652. ))
  2653. characterMakers.push(() => makeCharacter(
  2654. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2655. {
  2656. front: {
  2657. height: math.unit(2, "meter"),
  2658. weight: math.unit(90, "kg"),
  2659. name: "Front",
  2660. image: {
  2661. source: "./media/characters/gael'rathus/front.svg"
  2662. }
  2663. },
  2664. frontAlt: {
  2665. height: math.unit(2, "meter"),
  2666. weight: math.unit(90, "kg"),
  2667. name: "Front (alt)",
  2668. image: {
  2669. source: "./media/characters/gael'rathus/front-alt.svg"
  2670. }
  2671. },
  2672. frontAlt2: {
  2673. height: math.unit(2, "meter"),
  2674. weight: math.unit(90, "kg"),
  2675. name: "Front (alt 2)",
  2676. image: {
  2677. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2678. }
  2679. }
  2680. },
  2681. [
  2682. {
  2683. name: "Normal",
  2684. height: math.unit(9, "feet"),
  2685. default: true
  2686. },
  2687. {
  2688. name: "Large",
  2689. height: math.unit(25, "feet")
  2690. },
  2691. {
  2692. name: "Macro",
  2693. height: math.unit(0.25, "miles")
  2694. },
  2695. {
  2696. name: "Megamacro",
  2697. height: math.unit(10, "miles")
  2698. }
  2699. ]
  2700. ))
  2701. characterMakers.push(() => makeCharacter(
  2702. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2703. {
  2704. side: {
  2705. height: math.unit(2, "meter"),
  2706. weight: math.unit(140, "kg"),
  2707. name: "Side",
  2708. image: {
  2709. source: "./media/characters/sosha/side.svg",
  2710. bottom: 0.042
  2711. }
  2712. },
  2713. },
  2714. [
  2715. {
  2716. name: "Normal",
  2717. height: math.unit(12, "feet"),
  2718. default: true
  2719. }
  2720. ]
  2721. ))
  2722. characterMakers.push(() => makeCharacter(
  2723. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2724. {
  2725. side: {
  2726. height: math.unit(5 + 5 / 12, "feet"),
  2727. weight: math.unit(170, "kg"),
  2728. name: "Side",
  2729. image: {
  2730. source: "./media/characters/runnola/side.svg",
  2731. extra: 741 / 448,
  2732. bottom: 0.05
  2733. }
  2734. },
  2735. },
  2736. [
  2737. {
  2738. name: "Small",
  2739. height: math.unit(3, "feet")
  2740. },
  2741. {
  2742. name: "Normal",
  2743. height: math.unit(5 + 5 / 12, "feet"),
  2744. default: true
  2745. },
  2746. {
  2747. name: "Big",
  2748. height: math.unit(10, "feet")
  2749. },
  2750. ]
  2751. ))
  2752. characterMakers.push(() => makeCharacter(
  2753. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2754. {
  2755. front: {
  2756. height: math.unit(2, "meter"),
  2757. weight: math.unit(50, "kg"),
  2758. name: "Front",
  2759. image: {
  2760. source: "./media/characters/kurribird/front.svg",
  2761. bottom: 0.015
  2762. }
  2763. },
  2764. frontAlt: {
  2765. height: math.unit(1.5, "meter"),
  2766. weight: math.unit(50, "kg"),
  2767. name: "Front (Alt)",
  2768. image: {
  2769. source: "./media/characters/kurribird/front-alt.svg",
  2770. extra: 1.45
  2771. }
  2772. },
  2773. },
  2774. [
  2775. {
  2776. name: "Normal",
  2777. height: math.unit(7, "feet")
  2778. },
  2779. {
  2780. name: "Big",
  2781. height: math.unit(12, "feet"),
  2782. default: true
  2783. },
  2784. {
  2785. name: "Macro",
  2786. height: math.unit(1500, "feet")
  2787. },
  2788. {
  2789. name: "Megamacro",
  2790. height: math.unit(2, "miles")
  2791. }
  2792. ]
  2793. ))
  2794. characterMakers.push(() => makeCharacter(
  2795. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2796. {
  2797. front: {
  2798. height: math.unit(2, "meter"),
  2799. weight: math.unit(80, "kg"),
  2800. name: "Front",
  2801. image: {
  2802. source: "./media/characters/elbial/front.svg",
  2803. extra: 1643 / 1556,
  2804. bottom: 60.2 / 1696
  2805. }
  2806. },
  2807. side: {
  2808. height: math.unit(2, "meter"),
  2809. weight: math.unit(80, "kg"),
  2810. name: "Side",
  2811. image: {
  2812. source: "./media/characters/elbial/side.svg",
  2813. extra: 1630 / 1565,
  2814. bottom: 71.5 / 1697
  2815. }
  2816. },
  2817. back: {
  2818. height: math.unit(2, "meter"),
  2819. weight: math.unit(80, "kg"),
  2820. name: "Back",
  2821. image: {
  2822. source: "./media/characters/elbial/back.svg",
  2823. extra: 1668 / 1595,
  2824. bottom: 5.6 / 1672
  2825. }
  2826. },
  2827. frontDressed: {
  2828. height: math.unit(2, "meter"),
  2829. weight: math.unit(80, "kg"),
  2830. name: "Front (Dressed)",
  2831. image: {
  2832. source: "./media/characters/elbial/front-dressed.svg",
  2833. extra: 1653 / 1584,
  2834. bottom: 57 / 1708
  2835. }
  2836. },
  2837. genitals: {
  2838. height: math.unit(2 / 3.367, "meter"),
  2839. name: "Genitals",
  2840. image: {
  2841. source: "./media/characters/elbial/genitals.svg"
  2842. }
  2843. },
  2844. },
  2845. [
  2846. {
  2847. name: "Large",
  2848. height: math.unit(100, "feet")
  2849. },
  2850. {
  2851. name: "Macro",
  2852. height: math.unit(500, "feet"),
  2853. default: true
  2854. },
  2855. {
  2856. name: "Megamacro",
  2857. height: math.unit(10, "miles")
  2858. },
  2859. {
  2860. name: "Gigamacro",
  2861. height: math.unit(25000, "miles")
  2862. },
  2863. {
  2864. name: "Full-Size",
  2865. height: math.unit(8000000, "gigaparsecs")
  2866. }
  2867. ]
  2868. ))
  2869. characterMakers.push(() => makeCharacter(
  2870. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2871. {
  2872. front: {
  2873. height: math.unit(2, "meter"),
  2874. weight: math.unit(60, "kg"),
  2875. name: "Front",
  2876. image: {
  2877. source: "./media/characters/noah/front.svg"
  2878. }
  2879. },
  2880. talons: {
  2881. height: math.unit(0.315, "meter"),
  2882. name: "Talons",
  2883. image: {
  2884. source: "./media/characters/noah/talons.svg"
  2885. }
  2886. }
  2887. },
  2888. [
  2889. {
  2890. name: "Large",
  2891. height: math.unit(50, "feet")
  2892. },
  2893. {
  2894. name: "Macro",
  2895. height: math.unit(750, "feet"),
  2896. default: true
  2897. },
  2898. {
  2899. name: "Megamacro",
  2900. height: math.unit(50, "miles")
  2901. },
  2902. {
  2903. name: "Gigamacro",
  2904. height: math.unit(100000, "miles")
  2905. },
  2906. {
  2907. name: "Full-Size",
  2908. height: math.unit(3000000000, "miles")
  2909. }
  2910. ]
  2911. ))
  2912. characterMakers.push(() => makeCharacter(
  2913. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2914. {
  2915. front: {
  2916. height: math.unit(2, "meter"),
  2917. weight: math.unit(80, "kg"),
  2918. name: "Front",
  2919. image: {
  2920. source: "./media/characters/natalya/front.svg"
  2921. }
  2922. },
  2923. back: {
  2924. height: math.unit(2, "meter"),
  2925. weight: math.unit(80, "kg"),
  2926. name: "Back",
  2927. image: {
  2928. source: "./media/characters/natalya/back.svg"
  2929. }
  2930. }
  2931. },
  2932. [
  2933. {
  2934. name: "Normal",
  2935. height: math.unit(150, "feet"),
  2936. default: true
  2937. },
  2938. {
  2939. name: "Megamacro",
  2940. height: math.unit(5, "miles")
  2941. },
  2942. {
  2943. name: "Full-Size",
  2944. height: math.unit(600, "kiloparsecs")
  2945. }
  2946. ]
  2947. ))
  2948. characterMakers.push(() => makeCharacter(
  2949. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2950. {
  2951. front: {
  2952. height: math.unit(2, "meter"),
  2953. weight: math.unit(50, "kg"),
  2954. name: "Front",
  2955. image: {
  2956. source: "./media/characters/erestrebah/front.svg",
  2957. extra: 208 / 193,
  2958. bottom: 0.055
  2959. }
  2960. },
  2961. back: {
  2962. height: math.unit(2, "meter"),
  2963. weight: math.unit(50, "kg"),
  2964. name: "Back",
  2965. image: {
  2966. source: "./media/characters/erestrebah/back.svg",
  2967. extra: 1.3
  2968. }
  2969. }
  2970. },
  2971. [
  2972. {
  2973. name: "Normal",
  2974. height: math.unit(10, "feet")
  2975. },
  2976. {
  2977. name: "Large",
  2978. height: math.unit(50, "feet"),
  2979. default: true
  2980. },
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(300, "feet")
  2984. },
  2985. {
  2986. name: "Macro+",
  2987. height: math.unit(750, "feet")
  2988. },
  2989. {
  2990. name: "Megamacro",
  2991. height: math.unit(3, "miles")
  2992. }
  2993. ]
  2994. ))
  2995. characterMakers.push(() => makeCharacter(
  2996. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2997. {
  2998. front: {
  2999. height: math.unit(2, "meter"),
  3000. weight: math.unit(80, "kg"),
  3001. name: "Front",
  3002. image: {
  3003. source: "./media/characters/jennifer/front.svg",
  3004. bottom: 0.11,
  3005. extra: 1.16
  3006. }
  3007. },
  3008. frontAlt: {
  3009. height: math.unit(2, "meter"),
  3010. weight: math.unit(80, "kg"),
  3011. name: "Front (Alt)",
  3012. image: {
  3013. source: "./media/characters/jennifer/front-alt.svg"
  3014. }
  3015. }
  3016. },
  3017. [
  3018. {
  3019. name: "Canon Height",
  3020. height: math.unit(120, "feet"),
  3021. default: true
  3022. },
  3023. {
  3024. name: "Macro+",
  3025. height: math.unit(300, "feet")
  3026. },
  3027. {
  3028. name: "Megamacro",
  3029. height: math.unit(20000, "feet")
  3030. }
  3031. ]
  3032. ))
  3033. characterMakers.push(() => makeCharacter(
  3034. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3035. {
  3036. front: {
  3037. height: math.unit(2, "meter"),
  3038. weight: math.unit(50, "kg"),
  3039. name: "Front",
  3040. image: {
  3041. source: "./media/characters/kalista/front.svg",
  3042. extra: 1947 / 1700,
  3043. bottom: 76.6 / 1412.98
  3044. }
  3045. },
  3046. back: {
  3047. height: math.unit(2, "meter"),
  3048. weight: math.unit(50, "kg"),
  3049. name: "Back",
  3050. image: {
  3051. source: "./media/characters/kalista/back.svg",
  3052. extra: 1366 / 1156,
  3053. bottom: 33.9 / 1362.78
  3054. }
  3055. }
  3056. },
  3057. [
  3058. {
  3059. name: "Uncomfortably Small",
  3060. height: math.unit(10, "feet")
  3061. },
  3062. {
  3063. name: "Small",
  3064. height: math.unit(30, "feet")
  3065. },
  3066. {
  3067. name: "Macro",
  3068. height: math.unit(100, "feet"),
  3069. default: true
  3070. },
  3071. {
  3072. name: "Macro+",
  3073. height: math.unit(2000, "feet")
  3074. },
  3075. {
  3076. name: "True Form",
  3077. height: math.unit(8924, "miles")
  3078. }
  3079. ]
  3080. ))
  3081. characterMakers.push(() => makeCharacter(
  3082. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3083. {
  3084. front: {
  3085. height: math.unit(2, "meter"),
  3086. weight: math.unit(120, "kg"),
  3087. name: "Front",
  3088. image: {
  3089. source: "./media/characters/ggv/front.svg"
  3090. }
  3091. },
  3092. side: {
  3093. height: math.unit(2, "meter"),
  3094. weight: math.unit(120, "kg"),
  3095. name: "Side",
  3096. image: {
  3097. source: "./media/characters/ggv/side.svg"
  3098. }
  3099. }
  3100. },
  3101. [
  3102. {
  3103. name: "Extremely Puny",
  3104. height: math.unit(9 + 5 / 12, "feet")
  3105. },
  3106. {
  3107. name: "Horribly Small",
  3108. height: math.unit(47.7, "miles"),
  3109. default: true
  3110. },
  3111. {
  3112. name: "Reasonably Sized",
  3113. height: math.unit(25000, "parsecs")
  3114. },
  3115. {
  3116. name: "Slightly Uncompressed",
  3117. height: math.unit(7.77e31, "parsecs")
  3118. },
  3119. {
  3120. name: "Omniversal",
  3121. height: math.unit(1e300, "meters")
  3122. },
  3123. ]
  3124. ))
  3125. characterMakers.push(() => makeCharacter(
  3126. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3127. {
  3128. front: {
  3129. height: math.unit(2, "meter"),
  3130. weight: math.unit(75, "lb"),
  3131. name: "Front",
  3132. image: {
  3133. source: "./media/characters/napalm/front.svg"
  3134. }
  3135. },
  3136. back: {
  3137. height: math.unit(2, "meter"),
  3138. weight: math.unit(75, "lb"),
  3139. name: "Back",
  3140. image: {
  3141. source: "./media/characters/napalm/back.svg"
  3142. }
  3143. }
  3144. },
  3145. [
  3146. {
  3147. name: "Standard",
  3148. height: math.unit(55, "feet"),
  3149. default: true
  3150. }
  3151. ]
  3152. ))
  3153. characterMakers.push(() => makeCharacter(
  3154. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3155. {
  3156. front: {
  3157. height: math.unit(7 + 5 / 6, "feet"),
  3158. weight: math.unit(325, "lb"),
  3159. name: "Front",
  3160. image: {
  3161. source: "./media/characters/asana/front.svg",
  3162. extra: 1133 / 1060,
  3163. bottom: 15.2 / 1148.6
  3164. }
  3165. },
  3166. back: {
  3167. height: math.unit(7 + 5 / 6, "feet"),
  3168. weight: math.unit(325, "lb"),
  3169. name: "Back",
  3170. image: {
  3171. source: "./media/characters/asana/back.svg",
  3172. extra: 1114 / 1043,
  3173. bottom: 5 / 1120
  3174. }
  3175. },
  3176. dressedDark: {
  3177. height: math.unit(7 + 5 / 6, "feet"),
  3178. weight: math.unit(325, "lb"),
  3179. name: "Dressed (Dark)",
  3180. image: {
  3181. source: "./media/characters/asana/dressed-dark.svg",
  3182. extra: 1133 / 1060,
  3183. bottom: 15.2 / 1148.6
  3184. }
  3185. },
  3186. dressedLight: {
  3187. height: math.unit(7 + 5 / 6, "feet"),
  3188. weight: math.unit(325, "lb"),
  3189. name: "Dressed (Light)",
  3190. image: {
  3191. source: "./media/characters/asana/dressed-light.svg",
  3192. extra: 1133 / 1060,
  3193. bottom: 15.2 / 1148.6
  3194. }
  3195. },
  3196. },
  3197. [
  3198. {
  3199. name: "Standard",
  3200. height: math.unit(7 + 5 / 6, "feet"),
  3201. default: true
  3202. },
  3203. {
  3204. name: "Large",
  3205. height: math.unit(10, "meters")
  3206. },
  3207. {
  3208. name: "Macro",
  3209. height: math.unit(2500, "meters")
  3210. },
  3211. {
  3212. name: "Megamacro",
  3213. height: math.unit(5e6, "meters")
  3214. },
  3215. {
  3216. name: "Examacro",
  3217. height: math.unit(5e12, "lightyears")
  3218. },
  3219. {
  3220. name: "Max Size",
  3221. height: math.unit(1e31, "lightyears")
  3222. }
  3223. ]
  3224. ))
  3225. characterMakers.push(() => makeCharacter(
  3226. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3227. {
  3228. front: {
  3229. height: math.unit(2, "meter"),
  3230. weight: math.unit(60, "kg"),
  3231. name: "Front",
  3232. image: {
  3233. source: "./media/characters/ebony/front.svg",
  3234. bottom: 0.03,
  3235. extra: 1045 / 810 + 0.03
  3236. }
  3237. },
  3238. side: {
  3239. height: math.unit(2, "meter"),
  3240. weight: math.unit(60, "kg"),
  3241. name: "Side",
  3242. image: {
  3243. source: "./media/characters/ebony/side.svg",
  3244. bottom: 0.03,
  3245. extra: 1045 / 810 + 0.03
  3246. }
  3247. },
  3248. back: {
  3249. height: math.unit(2, "meter"),
  3250. weight: math.unit(60, "kg"),
  3251. name: "Back",
  3252. image: {
  3253. source: "./media/characters/ebony/back.svg",
  3254. bottom: 0.01,
  3255. extra: 1045 / 810 + 0.01
  3256. }
  3257. },
  3258. },
  3259. [
  3260. // TODO check why I did this lol
  3261. {
  3262. name: "Standard",
  3263. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3264. default: true
  3265. },
  3266. {
  3267. name: "Macro",
  3268. height: math.unit(200, "feet")
  3269. },
  3270. {
  3271. name: "Gigamacro",
  3272. height: math.unit(13000, "km")
  3273. }
  3274. ]
  3275. ))
  3276. characterMakers.push(() => makeCharacter(
  3277. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3278. {
  3279. front: {
  3280. height: math.unit(6, "feet"),
  3281. weight: math.unit(175, "lb"),
  3282. name: "Front",
  3283. image: {
  3284. source: "./media/characters/mountain/front.svg",
  3285. extra: 972 / 955,
  3286. bottom: 64 / 1036.6
  3287. }
  3288. },
  3289. back: {
  3290. height: math.unit(6, "feet"),
  3291. weight: math.unit(175, "lb"),
  3292. name: "Back",
  3293. image: {
  3294. source: "./media/characters/mountain/back.svg",
  3295. extra: 970 / 950,
  3296. bottom: 28.25 / 999
  3297. }
  3298. },
  3299. },
  3300. [
  3301. {
  3302. name: "Large",
  3303. height: math.unit(20, "meters")
  3304. },
  3305. {
  3306. name: "Macro",
  3307. height: math.unit(300, "meters")
  3308. },
  3309. {
  3310. name: "Gigamacro",
  3311. height: math.unit(10000, "km"),
  3312. default: true
  3313. },
  3314. {
  3315. name: "Examacro",
  3316. height: math.unit(10e9, "lightyears")
  3317. }
  3318. ]
  3319. ))
  3320. characterMakers.push(() => makeCharacter(
  3321. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3322. {
  3323. front: {
  3324. height: math.unit(8, "feet"),
  3325. weight: math.unit(500, "lb"),
  3326. name: "Front",
  3327. image: {
  3328. source: "./media/characters/rick/front.svg"
  3329. }
  3330. }
  3331. },
  3332. [
  3333. {
  3334. name: "Normal",
  3335. height: math.unit(8, "feet"),
  3336. default: true
  3337. },
  3338. {
  3339. name: "Macro",
  3340. height: math.unit(5, "km")
  3341. }
  3342. ]
  3343. ))
  3344. characterMakers.push(() => makeCharacter(
  3345. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3346. {
  3347. front: {
  3348. height: math.unit(8, "feet"),
  3349. weight: math.unit(120, "lb"),
  3350. name: "Front",
  3351. image: {
  3352. source: "./media/characters/ona/front.svg"
  3353. }
  3354. },
  3355. frontAlt: {
  3356. height: math.unit(8, "feet"),
  3357. weight: math.unit(120, "lb"),
  3358. name: "Front (Alt)",
  3359. image: {
  3360. source: "./media/characters/ona/front-alt.svg"
  3361. }
  3362. },
  3363. back: {
  3364. height: math.unit(8, "feet"),
  3365. weight: math.unit(120, "lb"),
  3366. name: "Back",
  3367. image: {
  3368. source: "./media/characters/ona/back.svg"
  3369. }
  3370. },
  3371. foot: {
  3372. height: math.unit(1.1, "feet"),
  3373. name: "Foot",
  3374. image: {
  3375. source: "./media/characters/ona/foot.svg"
  3376. }
  3377. }
  3378. },
  3379. [
  3380. {
  3381. name: "Megamacro",
  3382. height: math.unit(70, "km"),
  3383. default: true
  3384. },
  3385. {
  3386. name: "Gigamacro",
  3387. height: math.unit(681818, "miles")
  3388. },
  3389. {
  3390. name: "Examacro",
  3391. height: math.unit(3800000, "lightyears")
  3392. },
  3393. ]
  3394. ))
  3395. characterMakers.push(() => makeCharacter(
  3396. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3397. {
  3398. front: {
  3399. height: math.unit(12, "feet"),
  3400. weight: math.unit(3000, "lb"),
  3401. name: "Front",
  3402. image: {
  3403. source: "./media/characters/mech/front.svg",
  3404. bottom: 0.025,
  3405. }
  3406. },
  3407. back: {
  3408. height: math.unit(12, "feet"),
  3409. weight: math.unit(3000, "lb"),
  3410. name: "Back",
  3411. image: {
  3412. source: "./media/characters/mech/back.svg",
  3413. bottom: 0.03,
  3414. }
  3415. }
  3416. },
  3417. [
  3418. {
  3419. name: "Normal",
  3420. height: math.unit(12, "feet")
  3421. },
  3422. {
  3423. name: "Macro",
  3424. height: math.unit(300, "feet"),
  3425. default: true
  3426. },
  3427. {
  3428. name: "Macro+",
  3429. height: math.unit(1500, "feet")
  3430. },
  3431. ]
  3432. ))
  3433. characterMakers.push(() => makeCharacter(
  3434. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3435. {
  3436. front: {
  3437. height: math.unit(1.3, "meter"),
  3438. weight: math.unit(30, "kg"),
  3439. name: "Front",
  3440. image: {
  3441. source: "./media/characters/gregory/front.svg",
  3442. }
  3443. }
  3444. },
  3445. [
  3446. {
  3447. name: "Normal",
  3448. height: math.unit(1.3, "meter"),
  3449. default: true
  3450. },
  3451. {
  3452. name: "Macro",
  3453. height: math.unit(20, "meter")
  3454. }
  3455. ]
  3456. ))
  3457. characterMakers.push(() => makeCharacter(
  3458. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3459. {
  3460. front: {
  3461. height: math.unit(2.8, "meter"),
  3462. weight: math.unit(200, "kg"),
  3463. name: "Front",
  3464. image: {
  3465. source: "./media/characters/elory/front.svg",
  3466. }
  3467. }
  3468. },
  3469. [
  3470. {
  3471. name: "Normal",
  3472. height: math.unit(2.8, "meter"),
  3473. default: true
  3474. },
  3475. {
  3476. name: "Macro",
  3477. height: math.unit(38, "meter")
  3478. }
  3479. ]
  3480. ))
  3481. characterMakers.push(() => makeCharacter(
  3482. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3483. {
  3484. front: {
  3485. height: math.unit(470, "feet"),
  3486. weight: math.unit(924, "tons"),
  3487. name: "Front",
  3488. image: {
  3489. source: "./media/characters/angelpatamon/front.svg",
  3490. }
  3491. }
  3492. },
  3493. [
  3494. {
  3495. name: "Normal",
  3496. height: math.unit(470, "feet"),
  3497. default: true
  3498. },
  3499. {
  3500. name: "Deity Size I",
  3501. height: math.unit(28651.2, "km")
  3502. },
  3503. {
  3504. name: "Deity Size II",
  3505. height: math.unit(171907.2, "km")
  3506. }
  3507. ]
  3508. ))
  3509. characterMakers.push(() => makeCharacter(
  3510. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3511. {
  3512. side: {
  3513. height: math.unit(7.2, "meter"),
  3514. weight: math.unit(8.2, "tons"),
  3515. name: "Side",
  3516. image: {
  3517. source: "./media/characters/cryae/side.svg",
  3518. extra: 3500 / 1500
  3519. }
  3520. }
  3521. },
  3522. [
  3523. {
  3524. name: "Normal",
  3525. height: math.unit(7.2, "meter"),
  3526. default: true
  3527. }
  3528. ]
  3529. ))
  3530. characterMakers.push(() => makeCharacter(
  3531. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3532. {
  3533. front: {
  3534. height: math.unit(6, "feet"),
  3535. weight: math.unit(175, "lb"),
  3536. name: "Front",
  3537. image: {
  3538. source: "./media/characters/xera/front.svg",
  3539. extra: 2377 / 1972,
  3540. bottom: 75.5 / 2452
  3541. }
  3542. },
  3543. side: {
  3544. height: math.unit(6, "feet"),
  3545. weight: math.unit(175, "lb"),
  3546. name: "Side",
  3547. image: {
  3548. source: "./media/characters/xera/side.svg",
  3549. extra: 2345 / 2019,
  3550. bottom: 39.7 / 2384
  3551. }
  3552. },
  3553. back: {
  3554. height: math.unit(6, "feet"),
  3555. weight: math.unit(175, "lb"),
  3556. name: "Back",
  3557. image: {
  3558. source: "./media/characters/xera/back.svg",
  3559. extra: 2095 / 1984,
  3560. bottom: 67 / 2166
  3561. }
  3562. },
  3563. },
  3564. [
  3565. {
  3566. name: "Small",
  3567. height: math.unit(10, "feet")
  3568. },
  3569. {
  3570. name: "Macro",
  3571. height: math.unit(500, "meters"),
  3572. default: true
  3573. },
  3574. {
  3575. name: "Macro+",
  3576. height: math.unit(10, "km")
  3577. },
  3578. {
  3579. name: "Gigamacro",
  3580. height: math.unit(25000, "km")
  3581. },
  3582. {
  3583. name: "Teramacro",
  3584. height: math.unit(3e6, "km")
  3585. }
  3586. ]
  3587. ))
  3588. characterMakers.push(() => makeCharacter(
  3589. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3590. {
  3591. front: {
  3592. height: math.unit(6, "feet"),
  3593. weight: math.unit(175, "lb"),
  3594. name: "Front",
  3595. image: {
  3596. source: "./media/characters/nebula/front.svg",
  3597. extra: 2566 / 2362,
  3598. bottom: 81 / 2644
  3599. }
  3600. }
  3601. },
  3602. [
  3603. {
  3604. name: "Small",
  3605. height: math.unit(4.5, "meters")
  3606. },
  3607. {
  3608. name: "Macro",
  3609. height: math.unit(1500, "meters"),
  3610. default: true
  3611. },
  3612. {
  3613. name: "Megamacro",
  3614. height: math.unit(150, "km")
  3615. },
  3616. {
  3617. name: "Gigamacro",
  3618. height: math.unit(27000, "km")
  3619. }
  3620. ]
  3621. ))
  3622. characterMakers.push(() => makeCharacter(
  3623. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3624. {
  3625. front: {
  3626. height: math.unit(6, "feet"),
  3627. weight: math.unit(225, "lb"),
  3628. name: "Front",
  3629. image: {
  3630. source: "./media/characters/abysgar/front.svg"
  3631. }
  3632. }
  3633. },
  3634. [
  3635. {
  3636. name: "Small",
  3637. height: math.unit(4.5, "meters")
  3638. },
  3639. {
  3640. name: "Macro",
  3641. height: math.unit(1250, "meters"),
  3642. default: true
  3643. },
  3644. {
  3645. name: "Megamacro",
  3646. height: math.unit(125, "km")
  3647. },
  3648. {
  3649. name: "Gigamacro",
  3650. height: math.unit(26000, "km")
  3651. }
  3652. ]
  3653. ))
  3654. characterMakers.push(() => makeCharacter(
  3655. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3656. {
  3657. front: {
  3658. height: math.unit(6, "feet"),
  3659. weight: math.unit(180, "lb"),
  3660. name: "Front",
  3661. image: {
  3662. source: "./media/characters/yakuz/front.svg"
  3663. }
  3664. }
  3665. },
  3666. [
  3667. {
  3668. name: "Small",
  3669. height: math.unit(5, "meters")
  3670. },
  3671. {
  3672. name: "Macro",
  3673. height: math.unit(1500, "meters"),
  3674. default: true
  3675. },
  3676. {
  3677. name: "Megamacro",
  3678. height: math.unit(200, "km")
  3679. },
  3680. {
  3681. name: "Gigamacro",
  3682. height: math.unit(100000, "km")
  3683. }
  3684. ]
  3685. ))
  3686. characterMakers.push(() => makeCharacter(
  3687. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3688. {
  3689. front: {
  3690. height: math.unit(6, "feet"),
  3691. weight: math.unit(175, "lb"),
  3692. name: "Front",
  3693. image: {
  3694. source: "./media/characters/mirova/front.svg",
  3695. extra: 3334 / 3071,
  3696. bottom: 42 / 3375.6
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Small",
  3703. height: math.unit(5, "meters")
  3704. },
  3705. {
  3706. name: "Macro",
  3707. height: math.unit(900, "meters"),
  3708. default: true
  3709. },
  3710. {
  3711. name: "Megamacro",
  3712. height: math.unit(135, "km")
  3713. },
  3714. {
  3715. name: "Gigamacro",
  3716. height: math.unit(20000, "km")
  3717. }
  3718. ]
  3719. ))
  3720. characterMakers.push(() => makeCharacter(
  3721. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3722. {
  3723. side: {
  3724. height: math.unit(28.35, "feet"),
  3725. weight: math.unit(99.75, "tons"),
  3726. name: "Side",
  3727. image: {
  3728. source: "./media/characters/asana-mech/side.svg",
  3729. extra: 923 / 699,
  3730. bottom: 50 / 975
  3731. }
  3732. },
  3733. chaingun: {
  3734. height: math.unit(7, "feet"),
  3735. weight: math.unit(2400, "lb"),
  3736. name: "Chaingun",
  3737. image: {
  3738. source: "./media/characters/asana-mech/chaingun.svg"
  3739. }
  3740. },
  3741. laser: {
  3742. height: math.unit(7.12, "feet"),
  3743. weight: math.unit(2000, "lb"),
  3744. name: "Laser",
  3745. image: {
  3746. source: "./media/characters/asana-mech/laser.svg"
  3747. }
  3748. },
  3749. },
  3750. [
  3751. {
  3752. name: "Normal",
  3753. height: math.unit(28.35, "feet"),
  3754. default: true
  3755. },
  3756. {
  3757. name: "Macro",
  3758. height: math.unit(2500, "feet")
  3759. },
  3760. {
  3761. name: "Megamacro",
  3762. height: math.unit(25, "miles")
  3763. },
  3764. {
  3765. name: "Examacro",
  3766. height: math.unit(6e8, "lightyears")
  3767. },
  3768. ]
  3769. ))
  3770. characterMakers.push(() => makeCharacter(
  3771. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3772. {
  3773. front: {
  3774. height: math.unit(5, "meters"),
  3775. weight: math.unit(1000, "kg"),
  3776. name: "Front",
  3777. image: {
  3778. source: "./media/characters/asche/front.svg",
  3779. extra: 1258 / 1190,
  3780. bottom: 47 / 1305
  3781. }
  3782. },
  3783. frontUnderwear: {
  3784. height: math.unit(5, "meters"),
  3785. weight: math.unit(1000, "kg"),
  3786. name: "Front (Underwear)",
  3787. image: {
  3788. source: "./media/characters/asche/front-underwear.svg",
  3789. extra: 1258 / 1190,
  3790. bottom: 47 / 1305
  3791. }
  3792. },
  3793. frontDressed: {
  3794. height: math.unit(5, "meters"),
  3795. weight: math.unit(1000, "kg"),
  3796. name: "Front (Dressed)",
  3797. image: {
  3798. source: "./media/characters/asche/front-dressed.svg",
  3799. extra: 1258 / 1190,
  3800. bottom: 47 / 1305
  3801. }
  3802. },
  3803. frontArmor: {
  3804. height: math.unit(5, "meters"),
  3805. weight: math.unit(1000, "kg"),
  3806. name: "Front (Armored)",
  3807. image: {
  3808. source: "./media/characters/asche/front-armored.svg",
  3809. extra: 1374 / 1308,
  3810. bottom: 23 / 1397
  3811. }
  3812. },
  3813. mp724: {
  3814. height: math.unit(0.96, "meters"),
  3815. weight: math.unit(38, "kg"),
  3816. name: "H&K MP724",
  3817. image: {
  3818. source: "./media/characters/asche/h&k-mp724.svg"
  3819. }
  3820. },
  3821. side: {
  3822. height: math.unit(5, "meters"),
  3823. weight: math.unit(1000, "kg"),
  3824. name: "Side",
  3825. image: {
  3826. source: "./media/characters/asche/side.svg",
  3827. extra: 1717 / 1609,
  3828. bottom: 0.005
  3829. }
  3830. },
  3831. back: {
  3832. height: math.unit(5, "meters"),
  3833. weight: math.unit(1000, "kg"),
  3834. name: "Back",
  3835. image: {
  3836. source: "./media/characters/asche/back.svg",
  3837. extra: 1570 / 1501
  3838. }
  3839. },
  3840. },
  3841. [
  3842. {
  3843. name: "DEFCON 5",
  3844. height: math.unit(5, "meters")
  3845. },
  3846. {
  3847. name: "DEFCON 4",
  3848. height: math.unit(500, "meters"),
  3849. default: true
  3850. },
  3851. {
  3852. name: "DEFCON 3",
  3853. height: math.unit(5, "km")
  3854. },
  3855. {
  3856. name: "DEFCON 2",
  3857. height: math.unit(500, "km")
  3858. },
  3859. {
  3860. name: "DEFCON 1",
  3861. height: math.unit(500000, "km")
  3862. },
  3863. {
  3864. name: "DEFCON 0",
  3865. height: math.unit(3, "gigaparsecs")
  3866. },
  3867. ]
  3868. ))
  3869. characterMakers.push(() => makeCharacter(
  3870. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3871. {
  3872. front: {
  3873. height: math.unit(2, "meters"),
  3874. weight: math.unit(76, "kg"),
  3875. name: "Front",
  3876. image: {
  3877. source: "./media/characters/gale/front.svg"
  3878. }
  3879. },
  3880. frontAlt1: {
  3881. height: math.unit(2, "meters"),
  3882. weight: math.unit(76, "kg"),
  3883. name: "Front (Alt 1)",
  3884. image: {
  3885. source: "./media/characters/gale/front-alt-1.svg"
  3886. }
  3887. },
  3888. frontAlt2: {
  3889. height: math.unit(2, "meters"),
  3890. weight: math.unit(76, "kg"),
  3891. name: "Front (Alt 2)",
  3892. image: {
  3893. source: "./media/characters/gale/front-alt-2.svg"
  3894. }
  3895. },
  3896. },
  3897. [
  3898. {
  3899. name: "Normal",
  3900. height: math.unit(7, "feet")
  3901. },
  3902. {
  3903. name: "Macro",
  3904. height: math.unit(150, "feet"),
  3905. default: true
  3906. },
  3907. {
  3908. name: "Macro+",
  3909. height: math.unit(300, "feet")
  3910. },
  3911. ]
  3912. ))
  3913. characterMakers.push(() => makeCharacter(
  3914. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3915. {
  3916. front: {
  3917. height: math.unit(2, "meters"),
  3918. weight: math.unit(76, "kg"),
  3919. name: "Front",
  3920. image: {
  3921. source: "./media/characters/draylen/front.svg"
  3922. }
  3923. }
  3924. },
  3925. [
  3926. {
  3927. name: "Macro",
  3928. height: math.unit(150, "feet"),
  3929. default: true
  3930. }
  3931. ]
  3932. ))
  3933. characterMakers.push(() => makeCharacter(
  3934. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3935. {
  3936. front: {
  3937. height: math.unit(7 + 9 / 12, "feet"),
  3938. weight: math.unit(379, "lbs"),
  3939. name: "Front",
  3940. image: {
  3941. source: "./media/characters/chez/front.svg"
  3942. }
  3943. },
  3944. side: {
  3945. height: math.unit(7 + 9 / 12, "feet"),
  3946. weight: math.unit(379, "lbs"),
  3947. name: "Side",
  3948. image: {
  3949. source: "./media/characters/chez/side.svg"
  3950. }
  3951. }
  3952. },
  3953. [
  3954. {
  3955. name: "Normal",
  3956. height: math.unit(7 + 9 / 12, "feet"),
  3957. default: true
  3958. },
  3959. {
  3960. name: "God King",
  3961. height: math.unit(9750000, "meters")
  3962. }
  3963. ]
  3964. ))
  3965. characterMakers.push(() => makeCharacter(
  3966. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3967. {
  3968. front: {
  3969. height: math.unit(6, "feet"),
  3970. weight: math.unit(275, "lbs"),
  3971. name: "Front",
  3972. image: {
  3973. source: "./media/characters/kaylum/front.svg",
  3974. bottom: 0.01,
  3975. extra: 1166 / 1031
  3976. }
  3977. },
  3978. frontWingless: {
  3979. height: math.unit(6, "feet"),
  3980. weight: math.unit(275, "lbs"),
  3981. name: "Front (Wingless)",
  3982. image: {
  3983. source: "./media/characters/kaylum/front-wingless.svg",
  3984. bottom: 0.01,
  3985. extra: 1117 / 1031
  3986. }
  3987. }
  3988. },
  3989. [
  3990. {
  3991. name: "Normal",
  3992. height: math.unit(3.05, "meters")
  3993. },
  3994. {
  3995. name: "Master",
  3996. height: math.unit(5.5, "meters")
  3997. },
  3998. {
  3999. name: "Rampage",
  4000. height: math.unit(19, "meters")
  4001. },
  4002. {
  4003. name: "Macro Lite",
  4004. height: math.unit(37, "meters")
  4005. },
  4006. {
  4007. name: "Hyper Predator",
  4008. height: math.unit(61, "meters")
  4009. },
  4010. {
  4011. name: "Macro",
  4012. height: math.unit(138, "meters"),
  4013. default: true
  4014. }
  4015. ]
  4016. ))
  4017. characterMakers.push(() => makeCharacter(
  4018. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4019. {
  4020. front: {
  4021. height: math.unit(6, "feet"),
  4022. weight: math.unit(150, "lbs"),
  4023. name: "Front",
  4024. image: {
  4025. source: "./media/characters/geta/front.svg"
  4026. }
  4027. }
  4028. },
  4029. [
  4030. {
  4031. name: "Micro",
  4032. height: math.unit(3, "inches"),
  4033. default: true
  4034. },
  4035. {
  4036. name: "Normal",
  4037. height: math.unit(5 + 5 / 12, "feet")
  4038. }
  4039. ]
  4040. ))
  4041. characterMakers.push(() => makeCharacter(
  4042. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4043. {
  4044. front: {
  4045. height: math.unit(6, "feet"),
  4046. weight: math.unit(300, "lbs"),
  4047. name: "Front",
  4048. image: {
  4049. source: "./media/characters/tyrnn/front.svg"
  4050. }
  4051. }
  4052. },
  4053. [
  4054. {
  4055. name: "Main Height",
  4056. height: math.unit(355, "feet"),
  4057. default: true
  4058. },
  4059. {
  4060. name: "Fave. Height",
  4061. height: math.unit(2400, "feet")
  4062. }
  4063. ]
  4064. ))
  4065. characterMakers.push(() => makeCharacter(
  4066. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4067. {
  4068. front: {
  4069. height: math.unit(6, "feet"),
  4070. weight: math.unit(300, "lbs"),
  4071. name: "Front",
  4072. image: {
  4073. source: "./media/characters/appledectomy/front.svg"
  4074. }
  4075. }
  4076. },
  4077. [
  4078. {
  4079. name: "Macro",
  4080. height: math.unit(2500, "feet")
  4081. },
  4082. {
  4083. name: "Megamacro",
  4084. height: math.unit(50, "miles"),
  4085. default: true
  4086. },
  4087. {
  4088. name: "Gigamacro",
  4089. height: math.unit(5000, "miles")
  4090. },
  4091. {
  4092. name: "Teramacro",
  4093. height: math.unit(250000, "miles")
  4094. },
  4095. ]
  4096. ))
  4097. characterMakers.push(() => makeCharacter(
  4098. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4099. {
  4100. front: {
  4101. height: math.unit(6, "feet"),
  4102. weight: math.unit(200, "lbs"),
  4103. name: "Front",
  4104. image: {
  4105. source: "./media/characters/vulpes/front.svg",
  4106. extra: 573 / 543,
  4107. bottom: 0.033
  4108. }
  4109. },
  4110. side: {
  4111. height: math.unit(6, "feet"),
  4112. weight: math.unit(200, "lbs"),
  4113. name: "Side",
  4114. image: {
  4115. source: "./media/characters/vulpes/side.svg",
  4116. extra: 577 / 549,
  4117. bottom: 11 / 588
  4118. }
  4119. },
  4120. back: {
  4121. height: math.unit(6, "feet"),
  4122. weight: math.unit(200, "lbs"),
  4123. name: "Back",
  4124. image: {
  4125. source: "./media/characters/vulpes/back.svg",
  4126. extra: 573 / 549,
  4127. bottom: 20 / 593
  4128. }
  4129. },
  4130. feet: {
  4131. height: math.unit(1.276, "feet"),
  4132. name: "Feet",
  4133. image: {
  4134. source: "./media/characters/vulpes/feet.svg"
  4135. }
  4136. },
  4137. maw: {
  4138. height: math.unit(1.18, "feet"),
  4139. name: "Maw",
  4140. image: {
  4141. source: "./media/characters/vulpes/maw.svg"
  4142. }
  4143. },
  4144. },
  4145. [
  4146. {
  4147. name: "Micro",
  4148. height: math.unit(2, "inches")
  4149. },
  4150. {
  4151. name: "Normal",
  4152. height: math.unit(6.3, "feet")
  4153. },
  4154. {
  4155. name: "Macro",
  4156. height: math.unit(850, "feet")
  4157. },
  4158. {
  4159. name: "Megamacro",
  4160. height: math.unit(7500, "feet"),
  4161. default: true
  4162. },
  4163. {
  4164. name: "Gigamacro",
  4165. height: math.unit(570000, "miles")
  4166. }
  4167. ]
  4168. ))
  4169. characterMakers.push(() => makeCharacter(
  4170. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4171. {
  4172. front: {
  4173. height: math.unit(6, "feet"),
  4174. weight: math.unit(210, "lbs"),
  4175. name: "Front",
  4176. image: {
  4177. source: "./media/characters/rain-fallen/front.svg"
  4178. }
  4179. },
  4180. side: {
  4181. height: math.unit(6, "feet"),
  4182. weight: math.unit(210, "lbs"),
  4183. name: "Side",
  4184. image: {
  4185. source: "./media/characters/rain-fallen/side.svg"
  4186. }
  4187. },
  4188. back: {
  4189. height: math.unit(6, "feet"),
  4190. weight: math.unit(210, "lbs"),
  4191. name: "Back",
  4192. image: {
  4193. source: "./media/characters/rain-fallen/back.svg"
  4194. }
  4195. },
  4196. feral: {
  4197. height: math.unit(9, "feet"),
  4198. weight: math.unit(700, "lbs"),
  4199. name: "Feral",
  4200. image: {
  4201. source: "./media/characters/rain-fallen/feral.svg"
  4202. }
  4203. },
  4204. },
  4205. [
  4206. {
  4207. name: "Normal",
  4208. height: math.unit(5, "meter")
  4209. },
  4210. {
  4211. name: "Macro",
  4212. height: math.unit(150, "meter"),
  4213. default: true
  4214. },
  4215. {
  4216. name: "Megamacro",
  4217. height: math.unit(278e6, "meter")
  4218. },
  4219. {
  4220. name: "Gigamacro",
  4221. height: math.unit(2e9, "meter")
  4222. },
  4223. {
  4224. name: "Teramacro",
  4225. height: math.unit(8e12, "meter")
  4226. },
  4227. {
  4228. name: "Devourer",
  4229. height: math.unit(14, "zettameters")
  4230. },
  4231. {
  4232. name: "Scarlet King",
  4233. height: math.unit(18, "yottameters")
  4234. },
  4235. {
  4236. name: "Void",
  4237. height: math.unit(6.66e66, "yottameters")
  4238. }
  4239. ]
  4240. ))
  4241. characterMakers.push(() => makeCharacter(
  4242. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4243. {
  4244. standing: {
  4245. height: math.unit(6, "feet"),
  4246. weight: math.unit(180, "lbs"),
  4247. name: "Standing",
  4248. image: {
  4249. source: "./media/characters/zaakira/standing.svg"
  4250. }
  4251. },
  4252. laying: {
  4253. height: math.unit(3, "feet"),
  4254. weight: math.unit(180, "lbs"),
  4255. name: "Laying",
  4256. image: {
  4257. source: "./media/characters/zaakira/laying.svg"
  4258. }
  4259. },
  4260. },
  4261. [
  4262. {
  4263. name: "Normal",
  4264. height: math.unit(12, "feet")
  4265. },
  4266. {
  4267. name: "Macro",
  4268. height: math.unit(279, "feet"),
  4269. default: true
  4270. }
  4271. ]
  4272. ))
  4273. characterMakers.push(() => makeCharacter(
  4274. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4275. {
  4276. femSfw: {
  4277. height: math.unit(8, "feet"),
  4278. weight: math.unit(350, "lb"),
  4279. name: "Fem",
  4280. image: {
  4281. source: "./media/characters/sigvald/fem-sfw.svg",
  4282. extra: 182 / 164,
  4283. bottom: 8.7 / 190.5
  4284. }
  4285. },
  4286. femNsfw: {
  4287. height: math.unit(8, "feet"),
  4288. weight: math.unit(350, "lb"),
  4289. name: "Fem (NSFW)",
  4290. image: {
  4291. source: "./media/characters/sigvald/fem-nsfw.svg",
  4292. extra: 182 / 164,
  4293. bottom: 8.7 / 190.5
  4294. }
  4295. },
  4296. maleNsfw: {
  4297. height: math.unit(8, "feet"),
  4298. weight: math.unit(350, "lb"),
  4299. name: "Male (NSFW)",
  4300. image: {
  4301. source: "./media/characters/sigvald/male-nsfw.svg",
  4302. extra: 182 / 164,
  4303. bottom: 8.7 / 190.5
  4304. }
  4305. },
  4306. hermNsfw: {
  4307. height: math.unit(8, "feet"),
  4308. weight: math.unit(350, "lb"),
  4309. name: "Herm (NSFW)",
  4310. image: {
  4311. source: "./media/characters/sigvald/herm-nsfw.svg",
  4312. extra: 182 / 164,
  4313. bottom: 8.7 / 190.5
  4314. }
  4315. },
  4316. dick: {
  4317. height: math.unit(2.36, "feet"),
  4318. name: "Dick",
  4319. image: {
  4320. source: "./media/characters/sigvald/dick.svg"
  4321. }
  4322. },
  4323. eye: {
  4324. height: math.unit(0.31, "feet"),
  4325. name: "Eye",
  4326. image: {
  4327. source: "./media/characters/sigvald/eye.svg"
  4328. }
  4329. },
  4330. mouth: {
  4331. height: math.unit(0.92, "feet"),
  4332. name: "Mouth",
  4333. image: {
  4334. source: "./media/characters/sigvald/mouth.svg"
  4335. }
  4336. },
  4337. paws: {
  4338. height: math.unit(2.2, "feet"),
  4339. name: "Paws",
  4340. image: {
  4341. source: "./media/characters/sigvald/paws.svg"
  4342. }
  4343. }
  4344. },
  4345. [
  4346. {
  4347. name: "Normal",
  4348. height: math.unit(8, "feet")
  4349. },
  4350. {
  4351. name: "Large",
  4352. height: math.unit(12, "feet")
  4353. },
  4354. {
  4355. name: "Larger",
  4356. height: math.unit(20, "feet")
  4357. },
  4358. {
  4359. name: "Macro",
  4360. height: math.unit(150, "feet")
  4361. },
  4362. {
  4363. name: "Macro+",
  4364. height: math.unit(200, "feet"),
  4365. default: true
  4366. },
  4367. ]
  4368. ))
  4369. characterMakers.push(() => makeCharacter(
  4370. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4371. {
  4372. side: {
  4373. height: math.unit(12, "feet"),
  4374. weight: math.unit(2000, "kg"),
  4375. name: "Side",
  4376. image: {
  4377. source: "./media/characters/scott/side.svg",
  4378. extra: 754 / 724,
  4379. bottom: 0.069
  4380. }
  4381. },
  4382. upright: {
  4383. height: math.unit(12, "feet"),
  4384. weight: math.unit(2000, "kg"),
  4385. name: "Upright",
  4386. image: {
  4387. source: "./media/characters/scott/upright.svg",
  4388. extra: 3881 / 3722,
  4389. bottom: 0.05
  4390. }
  4391. },
  4392. },
  4393. [
  4394. {
  4395. name: "Normal",
  4396. height: math.unit(12, "feet"),
  4397. default: true
  4398. },
  4399. ]
  4400. ))
  4401. characterMakers.push(() => makeCharacter(
  4402. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4403. {
  4404. side: {
  4405. height: math.unit(8, "meters"),
  4406. weight: math.unit(84755, "lbs"),
  4407. name: "Side",
  4408. image: {
  4409. source: "./media/characters/tobias/side.svg",
  4410. extra: 1474 / 1096,
  4411. bottom: 38.9 / 1513.1235
  4412. }
  4413. },
  4414. },
  4415. [
  4416. {
  4417. name: "Normal",
  4418. height: math.unit(8, "meters"),
  4419. default: true
  4420. },
  4421. ]
  4422. ))
  4423. characterMakers.push(() => makeCharacter(
  4424. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4425. {
  4426. front: {
  4427. height: math.unit(5.5, "feet"),
  4428. weight: math.unit(400, "lbs"),
  4429. name: "Front",
  4430. image: {
  4431. source: "./media/characters/kieran/front.svg",
  4432. extra: 2694 / 2364,
  4433. bottom: 217 / 2908
  4434. }
  4435. },
  4436. side: {
  4437. height: math.unit(5.5, "feet"),
  4438. weight: math.unit(400, "lbs"),
  4439. name: "Side",
  4440. image: {
  4441. source: "./media/characters/kieran/side.svg",
  4442. extra: 875 / 777,
  4443. bottom: 84.6 / 959
  4444. }
  4445. },
  4446. },
  4447. [
  4448. {
  4449. name: "Normal",
  4450. height: math.unit(5.5, "feet"),
  4451. default: true
  4452. },
  4453. ]
  4454. ))
  4455. characterMakers.push(() => makeCharacter(
  4456. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4457. {
  4458. side: {
  4459. height: math.unit(2, "meters"),
  4460. weight: math.unit(70, "kg"),
  4461. name: "Side",
  4462. image: {
  4463. source: "./media/characters/sanya/side.svg",
  4464. bottom: 0.02,
  4465. extra: 1.02
  4466. }
  4467. },
  4468. },
  4469. [
  4470. {
  4471. name: "Small",
  4472. height: math.unit(2, "meters")
  4473. },
  4474. {
  4475. name: "Normal",
  4476. height: math.unit(3, "meters")
  4477. },
  4478. {
  4479. name: "Macro",
  4480. height: math.unit(16, "meters"),
  4481. default: true
  4482. },
  4483. ]
  4484. ))
  4485. characterMakers.push(() => makeCharacter(
  4486. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4487. {
  4488. front: {
  4489. height: math.unit(2, "meters"),
  4490. weight: math.unit(120, "kg"),
  4491. name: "Front",
  4492. image: {
  4493. source: "./media/characters/miranda/front.svg",
  4494. extra: 195 / 185,
  4495. bottom: 10.9 / 206.5
  4496. }
  4497. },
  4498. back: {
  4499. height: math.unit(2, "meters"),
  4500. weight: math.unit(120, "kg"),
  4501. name: "Back",
  4502. image: {
  4503. source: "./media/characters/miranda/back.svg",
  4504. extra: 201 / 193,
  4505. bottom: 2.3 / 203.7
  4506. }
  4507. },
  4508. },
  4509. [
  4510. {
  4511. name: "Normal",
  4512. height: math.unit(10, "feet"),
  4513. default: true
  4514. }
  4515. ]
  4516. ))
  4517. characterMakers.push(() => makeCharacter(
  4518. { name: "James", species: ["deer"], tags: ["anthro"] },
  4519. {
  4520. side: {
  4521. height: math.unit(2, "meters"),
  4522. weight: math.unit(100, "kg"),
  4523. name: "Front",
  4524. image: {
  4525. source: "./media/characters/james/front.svg",
  4526. extra: 10 / 8.5
  4527. }
  4528. },
  4529. },
  4530. [
  4531. {
  4532. name: "Normal",
  4533. height: math.unit(8.5, "feet"),
  4534. default: true
  4535. }
  4536. ]
  4537. ))
  4538. characterMakers.push(() => makeCharacter(
  4539. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4540. {
  4541. side: {
  4542. height: math.unit(9.5, "feet"),
  4543. weight: math.unit(2500, "lbs"),
  4544. name: "Side",
  4545. image: {
  4546. source: "./media/characters/heather/side.svg"
  4547. }
  4548. },
  4549. },
  4550. [
  4551. {
  4552. name: "Normal",
  4553. height: math.unit(9.5, "feet"),
  4554. default: true
  4555. }
  4556. ]
  4557. ))
  4558. characterMakers.push(() => makeCharacter(
  4559. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4560. {
  4561. side: {
  4562. height: math.unit(6.5, "feet"),
  4563. weight: math.unit(400, "lbs"),
  4564. name: "Side",
  4565. image: {
  4566. source: "./media/characters/lukas/side.svg",
  4567. extra: 7.25 / 6.5
  4568. }
  4569. },
  4570. },
  4571. [
  4572. {
  4573. name: "Normal",
  4574. height: math.unit(6.5, "feet"),
  4575. default: true
  4576. }
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4581. {
  4582. side: {
  4583. height: math.unit(5, "feet"),
  4584. weight: math.unit(3000, "lbs"),
  4585. name: "Side",
  4586. image: {
  4587. source: "./media/characters/louise/side.svg"
  4588. }
  4589. },
  4590. },
  4591. [
  4592. {
  4593. name: "Normal",
  4594. height: math.unit(5, "feet"),
  4595. default: true
  4596. }
  4597. ]
  4598. ))
  4599. characterMakers.push(() => makeCharacter(
  4600. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4601. {
  4602. side: {
  4603. height: math.unit(6, "feet"),
  4604. weight: math.unit(150, "lbs"),
  4605. name: "Side",
  4606. image: {
  4607. source: "./media/characters/ramona/side.svg"
  4608. }
  4609. },
  4610. },
  4611. [
  4612. {
  4613. name: "Normal",
  4614. height: math.unit(5.3, "meters"),
  4615. default: true
  4616. },
  4617. {
  4618. name: "Macro",
  4619. height: math.unit(20, "stories")
  4620. },
  4621. {
  4622. name: "Macro+",
  4623. height: math.unit(50, "stories")
  4624. },
  4625. ]
  4626. ))
  4627. characterMakers.push(() => makeCharacter(
  4628. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4629. {
  4630. standing: {
  4631. height: math.unit(5.75, "feet"),
  4632. weight: math.unit(160, "lbs"),
  4633. name: "Standing",
  4634. image: {
  4635. source: "./media/characters/deerpuff/standing.svg",
  4636. extra: 682 / 624
  4637. }
  4638. },
  4639. sitting: {
  4640. height: math.unit(5.75 / 1.79, "feet"),
  4641. weight: math.unit(160, "lbs"),
  4642. name: "Sitting",
  4643. image: {
  4644. source: "./media/characters/deerpuff/sitting.svg",
  4645. bottom: 44 / 400,
  4646. extra: 1
  4647. }
  4648. },
  4649. taurLaying: {
  4650. height: math.unit(6, "feet"),
  4651. weight: math.unit(400, "lbs"),
  4652. name: "Taur (Laying)",
  4653. image: {
  4654. source: "./media/characters/deerpuff/taur-laying.svg"
  4655. }
  4656. },
  4657. },
  4658. [
  4659. {
  4660. name: "Puffball",
  4661. height: math.unit(6, "inches")
  4662. },
  4663. {
  4664. name: "Normalpuff",
  4665. height: math.unit(5.75, "feet")
  4666. },
  4667. {
  4668. name: "Macropuff",
  4669. height: math.unit(1500, "feet"),
  4670. default: true
  4671. },
  4672. {
  4673. name: "Megapuff",
  4674. height: math.unit(500, "miles")
  4675. },
  4676. {
  4677. name: "Gigapuff",
  4678. height: math.unit(250000, "miles")
  4679. },
  4680. {
  4681. name: "Omegapuff",
  4682. height: math.unit(1000, "lightyears")
  4683. },
  4684. ]
  4685. ))
  4686. characterMakers.push(() => makeCharacter(
  4687. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4688. {
  4689. stomping: {
  4690. height: math.unit(6, "feet"),
  4691. weight: math.unit(170, "lbs"),
  4692. name: "Stomping",
  4693. image: {
  4694. source: "./media/characters/vivian/stomping.svg"
  4695. }
  4696. },
  4697. sitting: {
  4698. height: math.unit(6 / 1.75, "feet"),
  4699. weight: math.unit(170, "lbs"),
  4700. name: "Sitting",
  4701. image: {
  4702. source: "./media/characters/vivian/sitting.svg",
  4703. bottom: 1 / 6.4,
  4704. extra: 1,
  4705. }
  4706. },
  4707. },
  4708. [
  4709. {
  4710. name: "Normal",
  4711. height: math.unit(7, "feet"),
  4712. default: true
  4713. },
  4714. {
  4715. name: "Macro",
  4716. height: math.unit(10, "stories")
  4717. },
  4718. {
  4719. name: "Macro+",
  4720. height: math.unit(30, "stories")
  4721. },
  4722. {
  4723. name: "Megamacro",
  4724. height: math.unit(10, "miles")
  4725. },
  4726. {
  4727. name: "Megamacro+",
  4728. height: math.unit(2750000, "meters")
  4729. },
  4730. ]
  4731. ))
  4732. characterMakers.push(() => makeCharacter(
  4733. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4734. {
  4735. front: {
  4736. height: math.unit(6, "feet"),
  4737. weight: math.unit(160, "lbs"),
  4738. name: "Front",
  4739. image: {
  4740. source: "./media/characters/prince/front.svg",
  4741. extra: 3400 / 3000
  4742. }
  4743. },
  4744. jumping: {
  4745. height: math.unit(6, "feet"),
  4746. weight: math.unit(160, "lbs"),
  4747. name: "Jumping",
  4748. image: {
  4749. source: "./media/characters/prince/jump.svg",
  4750. extra: 2555 / 2134
  4751. }
  4752. },
  4753. },
  4754. [
  4755. {
  4756. name: "Normal",
  4757. height: math.unit(7.75, "feet"),
  4758. default: true
  4759. },
  4760. {
  4761. name: "Not cute",
  4762. height: math.unit(17, "feet")
  4763. },
  4764. {
  4765. name: "I said NOT",
  4766. height: math.unit(91, "feet")
  4767. },
  4768. {
  4769. name: "Please stop",
  4770. height: math.unit(560, "feet")
  4771. },
  4772. {
  4773. name: "What have you done",
  4774. height: math.unit(2200, "feet")
  4775. },
  4776. {
  4777. name: "Deer God",
  4778. height: math.unit(3.6, "miles")
  4779. },
  4780. ]
  4781. ))
  4782. characterMakers.push(() => makeCharacter(
  4783. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4784. {
  4785. standing: {
  4786. height: math.unit(6, "feet"),
  4787. weight: math.unit(300, "lbs"),
  4788. name: "Standing",
  4789. image: {
  4790. source: "./media/characters/psymon/standing.svg",
  4791. extra: 1888 / 1810,
  4792. bottom: 0.05
  4793. }
  4794. },
  4795. slithering: {
  4796. height: math.unit(6, "feet"),
  4797. weight: math.unit(300, "lbs"),
  4798. name: "Slithering",
  4799. image: {
  4800. source: "./media/characters/psymon/slithering.svg",
  4801. extra: 1330 / 1224
  4802. }
  4803. },
  4804. slitheringAlt: {
  4805. height: math.unit(6, "feet"),
  4806. weight: math.unit(300, "lbs"),
  4807. name: "Slithering (Alt)",
  4808. image: {
  4809. source: "./media/characters/psymon/slithering-alt.svg",
  4810. extra: 1330 / 1224
  4811. }
  4812. },
  4813. },
  4814. [
  4815. {
  4816. name: "Normal",
  4817. height: math.unit(11.25, "feet"),
  4818. default: true
  4819. },
  4820. {
  4821. name: "Large",
  4822. height: math.unit(27, "feet")
  4823. },
  4824. {
  4825. name: "Giant",
  4826. height: math.unit(87, "feet")
  4827. },
  4828. {
  4829. name: "Macro",
  4830. height: math.unit(365, "feet")
  4831. },
  4832. {
  4833. name: "Megamacro",
  4834. height: math.unit(3, "miles")
  4835. },
  4836. {
  4837. name: "World Serpent",
  4838. height: math.unit(8000, "miles")
  4839. },
  4840. ]
  4841. ))
  4842. characterMakers.push(() => makeCharacter(
  4843. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4844. {
  4845. front: {
  4846. height: math.unit(6, "feet"),
  4847. weight: math.unit(180, "lbs"),
  4848. name: "Front",
  4849. image: {
  4850. source: "./media/characters/daimos/front.svg",
  4851. extra: 4160 / 3897,
  4852. bottom: 0.021
  4853. }
  4854. }
  4855. },
  4856. [
  4857. {
  4858. name: "Normal",
  4859. height: math.unit(8, "feet"),
  4860. default: true
  4861. },
  4862. {
  4863. name: "Big Dog",
  4864. height: math.unit(22, "feet")
  4865. },
  4866. {
  4867. name: "Macro",
  4868. height: math.unit(127, "feet")
  4869. },
  4870. {
  4871. name: "Megamacro",
  4872. height: math.unit(3600, "feet")
  4873. },
  4874. ]
  4875. ))
  4876. characterMakers.push(() => makeCharacter(
  4877. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4878. {
  4879. side: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(180, "lbs"),
  4882. name: "Side",
  4883. image: {
  4884. source: "./media/characters/blake/side.svg",
  4885. extra: 1212 / 1120,
  4886. bottom: 0.05
  4887. }
  4888. },
  4889. crouched: {
  4890. height: math.unit(6 * 0.57, "feet"),
  4891. weight: math.unit(180, "lbs"),
  4892. name: "Crouched",
  4893. image: {
  4894. source: "./media/characters/blake/crouched.svg",
  4895. extra: 840 / 587,
  4896. bottom: 0.04
  4897. }
  4898. },
  4899. bent: {
  4900. height: math.unit(6 * 0.75, "feet"),
  4901. weight: math.unit(180, "lbs"),
  4902. name: "Bent",
  4903. image: {
  4904. source: "./media/characters/blake/bent.svg",
  4905. extra: 592 / 544,
  4906. bottom: 0.035
  4907. }
  4908. },
  4909. },
  4910. [
  4911. {
  4912. name: "Normal",
  4913. height: math.unit(8 + 1 / 6, "feet"),
  4914. default: true
  4915. },
  4916. {
  4917. name: "Big Backside",
  4918. height: math.unit(37, "feet")
  4919. },
  4920. {
  4921. name: "Subway Shredder",
  4922. height: math.unit(72, "feet")
  4923. },
  4924. {
  4925. name: "City Carver",
  4926. height: math.unit(1675, "feet")
  4927. },
  4928. {
  4929. name: "Tectonic Tweaker",
  4930. height: math.unit(2300, "miles")
  4931. },
  4932. ]
  4933. ))
  4934. characterMakers.push(() => makeCharacter(
  4935. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4936. {
  4937. front: {
  4938. height: math.unit(6, "feet"),
  4939. weight: math.unit(180, "lbs"),
  4940. name: "Front",
  4941. image: {
  4942. source: "./media/characters/guisetto/front.svg",
  4943. extra: 856 / 817,
  4944. bottom: 0.06
  4945. }
  4946. },
  4947. airborne: {
  4948. height: math.unit(6, "feet"),
  4949. weight: math.unit(180, "lbs"),
  4950. name: "Airborne",
  4951. image: {
  4952. source: "./media/characters/guisetto/airborne.svg",
  4953. extra: 584 / 525
  4954. }
  4955. },
  4956. },
  4957. [
  4958. {
  4959. name: "Normal",
  4960. height: math.unit(10 + 11 / 12, "feet"),
  4961. default: true
  4962. },
  4963. {
  4964. name: "Large",
  4965. height: math.unit(35, "feet")
  4966. },
  4967. {
  4968. name: "Macro",
  4969. height: math.unit(475, "feet")
  4970. },
  4971. ]
  4972. ))
  4973. characterMakers.push(() => makeCharacter(
  4974. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4975. {
  4976. front: {
  4977. height: math.unit(6, "feet"),
  4978. weight: math.unit(180, "lbs"),
  4979. name: "Front",
  4980. image: {
  4981. source: "./media/characters/luxor/front.svg",
  4982. extra: 2940 / 2152
  4983. }
  4984. },
  4985. back: {
  4986. height: math.unit(6, "feet"),
  4987. weight: math.unit(180, "lbs"),
  4988. name: "Back",
  4989. image: {
  4990. source: "./media/characters/luxor/back.svg",
  4991. extra: 1083 / 960
  4992. }
  4993. },
  4994. },
  4995. [
  4996. {
  4997. name: "Normal",
  4998. height: math.unit(5 + 5 / 6, "feet"),
  4999. default: true
  5000. },
  5001. {
  5002. name: "Lamp",
  5003. height: math.unit(50, "feet")
  5004. },
  5005. {
  5006. name: "Lämp",
  5007. height: math.unit(300, "feet")
  5008. },
  5009. {
  5010. name: "The sun is a lamp",
  5011. height: math.unit(250000, "miles")
  5012. },
  5013. ]
  5014. ))
  5015. characterMakers.push(() => makeCharacter(
  5016. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5017. {
  5018. front: {
  5019. height: math.unit(6, "feet"),
  5020. weight: math.unit(50, "lbs"),
  5021. name: "Front",
  5022. image: {
  5023. source: "./media/characters/huoyan/front.svg"
  5024. }
  5025. },
  5026. side: {
  5027. height: math.unit(6, "feet"),
  5028. weight: math.unit(180, "lbs"),
  5029. name: "Side",
  5030. image: {
  5031. source: "./media/characters/huoyan/side.svg"
  5032. }
  5033. },
  5034. },
  5035. [
  5036. {
  5037. name: "Chef",
  5038. height: math.unit(9, "feet")
  5039. },
  5040. {
  5041. name: "Normal",
  5042. height: math.unit(65, "feet"),
  5043. default: true
  5044. },
  5045. {
  5046. name: "Macro",
  5047. height: math.unit(780, "feet")
  5048. },
  5049. {
  5050. name: "Flaming Mountain",
  5051. height: math.unit(4.8, "miles")
  5052. },
  5053. {
  5054. name: "Celestial",
  5055. height: math.unit(765000, "miles")
  5056. },
  5057. ]
  5058. ))
  5059. characterMakers.push(() => makeCharacter(
  5060. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5061. {
  5062. front: {
  5063. height: math.unit(5 + 3 / 4, "feet"),
  5064. weight: math.unit(120, "lbs"),
  5065. name: "Front",
  5066. image: {
  5067. source: "./media/characters/tails/front.svg"
  5068. }
  5069. }
  5070. },
  5071. [
  5072. {
  5073. name: "Normal",
  5074. height: math.unit(5 + 3 / 4, "feet"),
  5075. default: true
  5076. }
  5077. ]
  5078. ))
  5079. characterMakers.push(() => makeCharacter(
  5080. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5081. {
  5082. front: {
  5083. height: math.unit(4, "feet"),
  5084. weight: math.unit(50, "lbs"),
  5085. name: "Front",
  5086. image: {
  5087. source: "./media/characters/rainy/front.svg"
  5088. }
  5089. }
  5090. },
  5091. [
  5092. {
  5093. name: "Macro",
  5094. height: math.unit(800, "feet"),
  5095. default: true
  5096. }
  5097. ]
  5098. ))
  5099. characterMakers.push(() => makeCharacter(
  5100. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5101. {
  5102. front: {
  5103. height: math.unit(6, "feet"),
  5104. weight: math.unit(150, "lbs"),
  5105. name: "Front",
  5106. image: {
  5107. source: "./media/characters/rainier/front.svg"
  5108. }
  5109. }
  5110. },
  5111. [
  5112. {
  5113. name: "Micro",
  5114. height: math.unit(2, "mm"),
  5115. default: true
  5116. }
  5117. ]
  5118. ))
  5119. characterMakers.push(() => makeCharacter(
  5120. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5121. {
  5122. front: {
  5123. height: math.unit(6, "feet"),
  5124. weight: math.unit(180, "lbs"),
  5125. name: "Front",
  5126. image: {
  5127. source: "./media/characters/andy/front.svg"
  5128. }
  5129. }
  5130. },
  5131. [
  5132. {
  5133. name: "Normal",
  5134. height: math.unit(8, "feet"),
  5135. default: true
  5136. },
  5137. {
  5138. name: "Macro",
  5139. height: math.unit(1000, "feet")
  5140. },
  5141. {
  5142. name: "Megamacro",
  5143. height: math.unit(5, "miles")
  5144. },
  5145. {
  5146. name: "Gigamacro",
  5147. height: math.unit(5000, "miles")
  5148. },
  5149. ]
  5150. ))
  5151. characterMakers.push(() => makeCharacter(
  5152. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5153. {
  5154. front: {
  5155. height: math.unit(6, "feet"),
  5156. weight: math.unit(210, "lbs"),
  5157. name: "Front",
  5158. image: {
  5159. source: "./media/characters/cimmaron/front-sfw.svg",
  5160. extra: 701 / 676,
  5161. bottom: 0.046
  5162. }
  5163. },
  5164. back: {
  5165. height: math.unit(6, "feet"),
  5166. weight: math.unit(210, "lbs"),
  5167. name: "Back",
  5168. image: {
  5169. source: "./media/characters/cimmaron/back-sfw.svg",
  5170. extra: 701 / 676,
  5171. bottom: 0.046
  5172. }
  5173. },
  5174. frontNsfw: {
  5175. height: math.unit(6, "feet"),
  5176. weight: math.unit(210, "lbs"),
  5177. name: "Front (NSFW)",
  5178. image: {
  5179. source: "./media/characters/cimmaron/front-nsfw.svg",
  5180. extra: 701 / 676,
  5181. bottom: 0.046
  5182. }
  5183. },
  5184. backNsfw: {
  5185. height: math.unit(6, "feet"),
  5186. weight: math.unit(210, "lbs"),
  5187. name: "Back (NSFW)",
  5188. image: {
  5189. source: "./media/characters/cimmaron/back-nsfw.svg",
  5190. extra: 701 / 676,
  5191. bottom: 0.046
  5192. }
  5193. },
  5194. dick: {
  5195. height: math.unit(1.714, "feet"),
  5196. name: "Dick",
  5197. image: {
  5198. source: "./media/characters/cimmaron/dick.svg"
  5199. }
  5200. },
  5201. },
  5202. [
  5203. {
  5204. name: "Normal",
  5205. height: math.unit(6, "feet"),
  5206. default: true
  5207. },
  5208. {
  5209. name: "Macro Mayor",
  5210. height: math.unit(350, "meters")
  5211. },
  5212. ]
  5213. ))
  5214. characterMakers.push(() => makeCharacter(
  5215. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5216. {
  5217. front: {
  5218. height: math.unit(6, "feet"),
  5219. weight: math.unit(200, "lbs"),
  5220. name: "Front",
  5221. image: {
  5222. source: "./media/characters/akari/front.svg",
  5223. extra: 962 / 901,
  5224. bottom: 0.04
  5225. }
  5226. }
  5227. },
  5228. [
  5229. {
  5230. name: "Micro",
  5231. height: math.unit(5, "inches"),
  5232. default: true
  5233. },
  5234. {
  5235. name: "Normal",
  5236. height: math.unit(7, "feet")
  5237. },
  5238. ]
  5239. ))
  5240. characterMakers.push(() => makeCharacter(
  5241. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5242. {
  5243. front: {
  5244. height: math.unit(6, "feet"),
  5245. weight: math.unit(140, "lbs"),
  5246. name: "Front",
  5247. image: {
  5248. source: "./media/characters/cynosura/front.svg",
  5249. extra: 896 / 847
  5250. }
  5251. },
  5252. back: {
  5253. height: math.unit(6, "feet"),
  5254. weight: math.unit(140, "lbs"),
  5255. name: "Back",
  5256. image: {
  5257. source: "./media/characters/cynosura/back.svg",
  5258. extra: 1365 / 1250
  5259. }
  5260. },
  5261. },
  5262. [
  5263. {
  5264. name: "Micro",
  5265. height: math.unit(4, "inches")
  5266. },
  5267. {
  5268. name: "Normal",
  5269. height: math.unit(5.75, "feet"),
  5270. default: true
  5271. },
  5272. {
  5273. name: "Tall",
  5274. height: math.unit(10, "feet")
  5275. },
  5276. {
  5277. name: "Big",
  5278. height: math.unit(20, "feet")
  5279. },
  5280. {
  5281. name: "Macro",
  5282. height: math.unit(50, "feet")
  5283. },
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(170, "lbs"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/gin/front.svg",
  5295. extra: 1.053,
  5296. bottom: 0.025
  5297. }
  5298. },
  5299. foot: {
  5300. height: math.unit(6 / 4.25, "feet"),
  5301. name: "Foot",
  5302. image: {
  5303. source: "./media/characters/gin/foot.svg"
  5304. }
  5305. },
  5306. sole: {
  5307. height: math.unit(6 / 4.40, "feet"),
  5308. name: "Sole",
  5309. image: {
  5310. source: "./media/characters/gin/sole.svg"
  5311. }
  5312. },
  5313. },
  5314. [
  5315. {
  5316. name: "Normal",
  5317. height: math.unit(13 + 2 / 12, "feet")
  5318. },
  5319. {
  5320. name: "Macro",
  5321. height: math.unit(1500, "feet")
  5322. },
  5323. {
  5324. name: "Megamacro",
  5325. height: math.unit(200, "miles"),
  5326. default: true
  5327. },
  5328. {
  5329. name: "Gigamacro",
  5330. height: math.unit(500, "megameters")
  5331. },
  5332. {
  5333. name: "Teramacro",
  5334. height: math.unit(15, "lightyears")
  5335. }
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5340. {
  5341. front: {
  5342. height: math.unit(6 + 1 / 6, "feet"),
  5343. weight: math.unit(178, "lbs"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/guy/front.svg"
  5347. }
  5348. }
  5349. },
  5350. [
  5351. {
  5352. name: "Normal",
  5353. height: math.unit(6 + 1 / 6, "feet"),
  5354. default: true
  5355. },
  5356. {
  5357. name: "Large",
  5358. height: math.unit(25 + 7 / 12, "feet")
  5359. },
  5360. {
  5361. name: "Macro",
  5362. height: math.unit(60 + 9 / 12, "feet")
  5363. },
  5364. {
  5365. name: "Macro+",
  5366. height: math.unit(246, "feet")
  5367. },
  5368. {
  5369. name: "Macro++",
  5370. height: math.unit(878, "feet")
  5371. }
  5372. ]
  5373. ))
  5374. characterMakers.push(() => makeCharacter(
  5375. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5376. {
  5377. front: {
  5378. height: math.unit(9, "feet"),
  5379. weight: math.unit(800, "lbs"),
  5380. name: "Front",
  5381. image: {
  5382. source: "./media/characters/tiberius/front.svg",
  5383. extra: 2295 / 2071
  5384. }
  5385. },
  5386. back: {
  5387. height: math.unit(9, "feet"),
  5388. weight: math.unit(800, "lbs"),
  5389. name: "Back",
  5390. image: {
  5391. source: "./media/characters/tiberius/back.svg",
  5392. extra: 2373 / 2160
  5393. }
  5394. },
  5395. },
  5396. [
  5397. {
  5398. name: "Normal",
  5399. height: math.unit(9, "feet"),
  5400. default: true
  5401. }
  5402. ]
  5403. ))
  5404. characterMakers.push(() => makeCharacter(
  5405. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5406. {
  5407. front: {
  5408. height: math.unit(6, "feet"),
  5409. weight: math.unit(600, "lbs"),
  5410. name: "Front",
  5411. image: {
  5412. source: "./media/characters/surgo/front.svg",
  5413. extra: 3591 / 2227
  5414. }
  5415. },
  5416. back: {
  5417. height: math.unit(6, "feet"),
  5418. weight: math.unit(600, "lbs"),
  5419. name: "Back",
  5420. image: {
  5421. source: "./media/characters/surgo/back.svg",
  5422. extra: 3557 / 2228
  5423. }
  5424. },
  5425. laying: {
  5426. height: math.unit(6 * 0.85, "feet"),
  5427. weight: math.unit(600, "lbs"),
  5428. name: "Laying",
  5429. image: {
  5430. source: "./media/characters/surgo/laying.svg"
  5431. }
  5432. },
  5433. },
  5434. [
  5435. {
  5436. name: "Normal",
  5437. height: math.unit(6, "feet"),
  5438. default: true
  5439. }
  5440. ]
  5441. ))
  5442. characterMakers.push(() => makeCharacter(
  5443. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5444. {
  5445. side: {
  5446. height: math.unit(6, "feet"),
  5447. weight: math.unit(150, "lbs"),
  5448. name: "Side",
  5449. image: {
  5450. source: "./media/characters/cibus/side.svg",
  5451. extra: 800 / 400
  5452. }
  5453. },
  5454. },
  5455. [
  5456. {
  5457. name: "Normal",
  5458. height: math.unit(6, "feet"),
  5459. default: true
  5460. }
  5461. ]
  5462. ))
  5463. characterMakers.push(() => makeCharacter(
  5464. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5465. {
  5466. front: {
  5467. height: math.unit(6, "feet"),
  5468. weight: math.unit(240, "lbs"),
  5469. name: "Front",
  5470. image: {
  5471. source: "./media/characters/nibbles/front.svg"
  5472. }
  5473. },
  5474. side: {
  5475. height: math.unit(6, "feet"),
  5476. weight: math.unit(240, "lbs"),
  5477. name: "Side",
  5478. image: {
  5479. source: "./media/characters/nibbles/side.svg"
  5480. }
  5481. },
  5482. },
  5483. [
  5484. {
  5485. name: "Normal",
  5486. height: math.unit(9, "feet"),
  5487. default: true
  5488. }
  5489. ]
  5490. ))
  5491. characterMakers.push(() => makeCharacter(
  5492. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5493. {
  5494. side: {
  5495. height: math.unit(5 + 1 / 6, "feet"),
  5496. weight: math.unit(130, "lbs"),
  5497. name: "Side",
  5498. image: {
  5499. source: "./media/characters/rikky/side.svg",
  5500. extra: 851 / 801
  5501. }
  5502. },
  5503. },
  5504. [
  5505. {
  5506. name: "Normal",
  5507. height: math.unit(5 + 1 / 6, "feet")
  5508. },
  5509. {
  5510. name: "Macro",
  5511. height: math.unit(152, "feet"),
  5512. default: true
  5513. },
  5514. {
  5515. name: "Megamacro",
  5516. height: math.unit(7, "miles")
  5517. }
  5518. ]
  5519. ))
  5520. characterMakers.push(() => makeCharacter(
  5521. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5522. {
  5523. side: {
  5524. height: math.unit(370, "cm"),
  5525. weight: math.unit(350, "lbs"),
  5526. name: "Side",
  5527. image: {
  5528. source: "./media/characters/malfressa/side.svg"
  5529. }
  5530. },
  5531. walking: {
  5532. height: math.unit(370, "cm"),
  5533. weight: math.unit(350, "lbs"),
  5534. name: "Walking",
  5535. image: {
  5536. source: "./media/characters/malfressa/walking.svg"
  5537. }
  5538. },
  5539. feral: {
  5540. height: math.unit(2500, "cm"),
  5541. weight: math.unit(100000, "lbs"),
  5542. name: "Feral",
  5543. image: {
  5544. source: "./media/characters/malfressa/feral.svg",
  5545. extra: 2108 / 837,
  5546. bottom: 0.02
  5547. }
  5548. },
  5549. },
  5550. [
  5551. {
  5552. name: "Normal",
  5553. height: math.unit(370, "cm")
  5554. },
  5555. {
  5556. name: "Macro",
  5557. height: math.unit(300, "meters"),
  5558. default: true
  5559. }
  5560. ]
  5561. ))
  5562. characterMakers.push(() => makeCharacter(
  5563. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5564. {
  5565. front: {
  5566. height: math.unit(6, "feet"),
  5567. weight: math.unit(60, "kg"),
  5568. name: "Front",
  5569. image: {
  5570. source: "./media/characters/jaro/front.svg"
  5571. }
  5572. },
  5573. back: {
  5574. height: math.unit(6, "feet"),
  5575. weight: math.unit(60, "kg"),
  5576. name: "Back",
  5577. image: {
  5578. source: "./media/characters/jaro/back.svg"
  5579. }
  5580. },
  5581. },
  5582. [
  5583. {
  5584. name: "Micro",
  5585. height: math.unit(7, "inches")
  5586. },
  5587. {
  5588. name: "Normal",
  5589. height: math.unit(5.5, "feet"),
  5590. default: true
  5591. },
  5592. {
  5593. name: "Minimacro",
  5594. height: math.unit(20, "feet")
  5595. },
  5596. {
  5597. name: "Macro",
  5598. height: math.unit(200, "meters")
  5599. }
  5600. ]
  5601. ))
  5602. characterMakers.push(() => makeCharacter(
  5603. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5604. {
  5605. front: {
  5606. height: math.unit(6, "feet"),
  5607. weight: math.unit(195, "lb"),
  5608. name: "Front",
  5609. image: {
  5610. source: "./media/characters/rogue/front.svg"
  5611. }
  5612. },
  5613. },
  5614. [
  5615. {
  5616. name: "Macro",
  5617. height: math.unit(90, "feet"),
  5618. default: true
  5619. },
  5620. ]
  5621. ))
  5622. characterMakers.push(() => makeCharacter(
  5623. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5624. {
  5625. front: {
  5626. height: math.unit(5 + 8 / 12, "feet"),
  5627. weight: math.unit(140, "lb"),
  5628. name: "Front",
  5629. image: {
  5630. source: "./media/characters/piper/front.svg",
  5631. extra: 3928 / 3681
  5632. }
  5633. },
  5634. },
  5635. [
  5636. {
  5637. name: "Micro",
  5638. height: math.unit(2, "inches")
  5639. },
  5640. {
  5641. name: "Normal",
  5642. height: math.unit(5 + 8 / 12, "feet")
  5643. },
  5644. {
  5645. name: "Macro",
  5646. height: math.unit(250, "feet"),
  5647. default: true
  5648. },
  5649. {
  5650. name: "Megamacro",
  5651. height: math.unit(7, "miles")
  5652. },
  5653. ]
  5654. ))
  5655. characterMakers.push(() => makeCharacter(
  5656. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5657. {
  5658. front: {
  5659. height: math.unit(6, "feet"),
  5660. weight: math.unit(220, "lb"),
  5661. name: "Front",
  5662. image: {
  5663. source: "./media/characters/gemini/front.svg"
  5664. }
  5665. },
  5666. back: {
  5667. height: math.unit(6, "feet"),
  5668. weight: math.unit(220, "lb"),
  5669. name: "Back",
  5670. image: {
  5671. source: "./media/characters/gemini/back.svg"
  5672. }
  5673. },
  5674. kneeling: {
  5675. height: math.unit(6 / 1.5, "feet"),
  5676. weight: math.unit(220, "lb"),
  5677. name: "Kneeling",
  5678. image: {
  5679. source: "./media/characters/gemini/kneeling.svg",
  5680. bottom: 0.02
  5681. }
  5682. },
  5683. },
  5684. [
  5685. {
  5686. name: "Macro",
  5687. height: math.unit(300, "meters"),
  5688. default: true
  5689. },
  5690. {
  5691. name: "Megamacro",
  5692. height: math.unit(6900, "meters")
  5693. },
  5694. ]
  5695. ))
  5696. characterMakers.push(() => makeCharacter(
  5697. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5698. {
  5699. anthro: {
  5700. height: math.unit(2.35, "meters"),
  5701. weight: math.unit(73, "kg"),
  5702. name: "Anthro",
  5703. image: {
  5704. source: "./media/characters/alicia/anthro.svg",
  5705. extra: 2571 / 2385,
  5706. bottom: 75 / 2648
  5707. }
  5708. },
  5709. paw: {
  5710. height: math.unit(1.32, "feet"),
  5711. name: "Paw",
  5712. image: {
  5713. source: "./media/characters/alicia/paw.svg"
  5714. }
  5715. },
  5716. feral: {
  5717. height: math.unit(1.69, "meters"),
  5718. weight: math.unit(73, "kg"),
  5719. name: "Feral",
  5720. image: {
  5721. source: "./media/characters/alicia/feral.svg",
  5722. extra: 2123 / 1715,
  5723. bottom: 222 / 2349
  5724. }
  5725. },
  5726. },
  5727. [
  5728. {
  5729. name: "Normal",
  5730. height: math.unit(2.35, "meters")
  5731. },
  5732. {
  5733. name: "Macro",
  5734. height: math.unit(60, "meters"),
  5735. default: true
  5736. },
  5737. {
  5738. name: "Megamacro",
  5739. height: math.unit(10000, "kilometers")
  5740. },
  5741. ]
  5742. ))
  5743. characterMakers.push(() => makeCharacter(
  5744. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5745. {
  5746. front: {
  5747. height: math.unit(7, "feet"),
  5748. weight: math.unit(250, "lbs"),
  5749. name: "Front",
  5750. image: {
  5751. source: "./media/characters/archy/front.svg"
  5752. }
  5753. }
  5754. },
  5755. [
  5756. {
  5757. name: "Micro",
  5758. height: math.unit(1, "inch")
  5759. },
  5760. {
  5761. name: "Shorty",
  5762. height: math.unit(5, "feet")
  5763. },
  5764. {
  5765. name: "Normal",
  5766. height: math.unit(7, "feet")
  5767. },
  5768. {
  5769. name: "Macro",
  5770. height: math.unit(600, "meters"),
  5771. default: true
  5772. },
  5773. {
  5774. name: "Megamacro",
  5775. height: math.unit(1, "mile")
  5776. },
  5777. ]
  5778. ))
  5779. characterMakers.push(() => makeCharacter(
  5780. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5781. {
  5782. front: {
  5783. height: math.unit(1.65, "meters"),
  5784. weight: math.unit(74, "kg"),
  5785. name: "Front",
  5786. image: {
  5787. source: "./media/characters/berri/front.svg",
  5788. extra: 857 / 837,
  5789. bottom: 18 / 877
  5790. }
  5791. },
  5792. bum: {
  5793. height: math.unit(1.46, "feet"),
  5794. name: "Bum",
  5795. image: {
  5796. source: "./media/characters/berri/bum.svg"
  5797. }
  5798. },
  5799. mouth: {
  5800. height: math.unit(0.44, "feet"),
  5801. name: "Mouth",
  5802. image: {
  5803. source: "./media/characters/berri/mouth.svg"
  5804. }
  5805. },
  5806. paw: {
  5807. height: math.unit(0.826, "feet"),
  5808. name: "Paw",
  5809. image: {
  5810. source: "./media/characters/berri/paw.svg"
  5811. }
  5812. },
  5813. },
  5814. [
  5815. {
  5816. name: "Normal",
  5817. height: math.unit(1.65, "meters")
  5818. },
  5819. {
  5820. name: "Macro",
  5821. height: math.unit(60, "m"),
  5822. default: true
  5823. },
  5824. {
  5825. name: "Megamacro",
  5826. height: math.unit(9.213, "km")
  5827. },
  5828. {
  5829. name: "Planet Eater",
  5830. height: math.unit(489, "megameters")
  5831. },
  5832. {
  5833. name: "Teramacro",
  5834. height: math.unit(2471635000000, "meters")
  5835. },
  5836. {
  5837. name: "Examacro",
  5838. height: math.unit(8.0624e+26, "meters")
  5839. }
  5840. ]
  5841. ))
  5842. characterMakers.push(() => makeCharacter(
  5843. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5844. {
  5845. front: {
  5846. height: math.unit(1.72, "meters"),
  5847. weight: math.unit(68, "kg"),
  5848. name: "Front",
  5849. image: {
  5850. source: "./media/characters/lexi/front.svg"
  5851. }
  5852. }
  5853. },
  5854. [
  5855. {
  5856. name: "Very Smol",
  5857. height: math.unit(10, "mm")
  5858. },
  5859. {
  5860. name: "Micro",
  5861. height: math.unit(6.8, "cm"),
  5862. default: true
  5863. },
  5864. {
  5865. name: "Normal",
  5866. height: math.unit(1.72, "m")
  5867. }
  5868. ]
  5869. ))
  5870. characterMakers.push(() => makeCharacter(
  5871. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5872. {
  5873. front: {
  5874. height: math.unit(1.69, "meters"),
  5875. weight: math.unit(68, "kg"),
  5876. name: "Front",
  5877. image: {
  5878. source: "./media/characters/martin/front.svg",
  5879. extra: 596 / 581
  5880. }
  5881. }
  5882. },
  5883. [
  5884. {
  5885. name: "Micro",
  5886. height: math.unit(6.85, "cm"),
  5887. default: true
  5888. },
  5889. {
  5890. name: "Normal",
  5891. height: math.unit(1.69, "m")
  5892. }
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5897. {
  5898. front: {
  5899. height: math.unit(1.69, "meters"),
  5900. weight: math.unit(68, "kg"),
  5901. name: "Front",
  5902. image: {
  5903. source: "./media/characters/juno/front.svg"
  5904. }
  5905. }
  5906. },
  5907. [
  5908. {
  5909. name: "Micro",
  5910. height: math.unit(7, "cm")
  5911. },
  5912. {
  5913. name: "Normal",
  5914. height: math.unit(1.89, "m")
  5915. },
  5916. {
  5917. name: "Macro",
  5918. height: math.unit(353, "meters"),
  5919. default: true
  5920. }
  5921. ]
  5922. ))
  5923. characterMakers.push(() => makeCharacter(
  5924. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5925. {
  5926. front: {
  5927. height: math.unit(1.93, "meters"),
  5928. weight: math.unit(83, "kg"),
  5929. name: "Front",
  5930. image: {
  5931. source: "./media/characters/samantha/front.svg"
  5932. }
  5933. },
  5934. frontClothed: {
  5935. height: math.unit(1.93, "meters"),
  5936. weight: math.unit(83, "kg"),
  5937. name: "Front (Clothed)",
  5938. image: {
  5939. source: "./media/characters/samantha/front-clothed.svg"
  5940. }
  5941. },
  5942. back: {
  5943. height: math.unit(1.93, "meters"),
  5944. weight: math.unit(83, "kg"),
  5945. name: "Back",
  5946. image: {
  5947. source: "./media/characters/samantha/back.svg"
  5948. }
  5949. },
  5950. },
  5951. [
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(1.93, "m")
  5955. },
  5956. {
  5957. name: "Macro",
  5958. height: math.unit(74, "meters"),
  5959. default: true
  5960. },
  5961. {
  5962. name: "Macro+",
  5963. height: math.unit(223, "meters"),
  5964. },
  5965. {
  5966. name: "Megamacro",
  5967. height: math.unit(8381, "meters"),
  5968. },
  5969. {
  5970. name: "Megamacro+",
  5971. height: math.unit(12000, "kilometers")
  5972. },
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5977. {
  5978. front: {
  5979. height: math.unit(1.92, "meters"),
  5980. weight: math.unit(80, "kg"),
  5981. name: "Front",
  5982. image: {
  5983. source: "./media/characters/dr-clay/front.svg"
  5984. }
  5985. },
  5986. frontClothed: {
  5987. height: math.unit(1.92, "meters"),
  5988. weight: math.unit(80, "kg"),
  5989. name: "Front (Clothed)",
  5990. image: {
  5991. source: "./media/characters/dr-clay/front-clothed.svg"
  5992. }
  5993. }
  5994. },
  5995. [
  5996. {
  5997. name: "Normal",
  5998. height: math.unit(1.92, "m")
  5999. },
  6000. {
  6001. name: "Macro",
  6002. height: math.unit(214, "meters"),
  6003. default: true
  6004. },
  6005. {
  6006. name: "Macro+",
  6007. height: math.unit(12.237, "meters"),
  6008. },
  6009. {
  6010. name: "Megamacro",
  6011. height: math.unit(557, "megameters"),
  6012. },
  6013. {
  6014. name: "Unimaginable",
  6015. height: math.unit(120e9, "lightyears")
  6016. },
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6021. {
  6022. front: {
  6023. height: math.unit(2, "meters"),
  6024. weight: math.unit(80, "kg"),
  6025. name: "Front",
  6026. image: {
  6027. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6028. }
  6029. }
  6030. },
  6031. [
  6032. {
  6033. name: "Teramacro",
  6034. height: math.unit(500000, "lightyears"),
  6035. default: true
  6036. },
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6041. {
  6042. front: {
  6043. height: math.unit(2, "meters"),
  6044. weight: math.unit(150, "kg"),
  6045. name: "Front",
  6046. image: {
  6047. source: "./media/characters/vemus/front.svg",
  6048. extra: 2384 / 2084,
  6049. bottom: 0.0123
  6050. }
  6051. }
  6052. },
  6053. [
  6054. {
  6055. name: "Normal",
  6056. height: math.unit(3.75, "meters"),
  6057. default: true
  6058. },
  6059. {
  6060. name: "Big",
  6061. height: math.unit(8, "meters")
  6062. },
  6063. {
  6064. name: "Macro",
  6065. height: math.unit(100, "meters")
  6066. },
  6067. {
  6068. name: "Macro+",
  6069. height: math.unit(1500, "meters")
  6070. },
  6071. {
  6072. name: "Stellar",
  6073. height: math.unit(14e8, "meters")
  6074. },
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6079. {
  6080. front: {
  6081. height: math.unit(2, "meters"),
  6082. weight: math.unit(70, "kg"),
  6083. name: "Front",
  6084. image: {
  6085. source: "./media/characters/beherit/front.svg",
  6086. extra: 1408 / 1242
  6087. }
  6088. }
  6089. },
  6090. [
  6091. {
  6092. name: "Normal",
  6093. height: math.unit(6, "feet")
  6094. },
  6095. {
  6096. name: "Lorg",
  6097. height: math.unit(25, "feet"),
  6098. default: true
  6099. },
  6100. {
  6101. name: "Lorger",
  6102. height: math.unit(75, "feet")
  6103. },
  6104. {
  6105. name: "Macro",
  6106. height: math.unit(200, "meters")
  6107. },
  6108. ]
  6109. ))
  6110. characterMakers.push(() => makeCharacter(
  6111. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6112. {
  6113. front: {
  6114. height: math.unit(2, "meters"),
  6115. weight: math.unit(150, "kg"),
  6116. name: "Front",
  6117. image: {
  6118. source: "./media/characters/everett/front.svg",
  6119. extra: 2038 / 1737,
  6120. bottom: 0.03
  6121. }
  6122. },
  6123. paw: {
  6124. height: math.unit(2 / 3.6, "meters"),
  6125. name: "Paw",
  6126. image: {
  6127. source: "./media/characters/everett/paw.svg"
  6128. }
  6129. },
  6130. },
  6131. [
  6132. {
  6133. name: "Normal",
  6134. height: math.unit(15, "feet"),
  6135. default: true
  6136. },
  6137. {
  6138. name: "Lorg",
  6139. height: math.unit(70, "feet"),
  6140. default: true
  6141. },
  6142. {
  6143. name: "Lorger",
  6144. height: math.unit(250, "feet")
  6145. },
  6146. {
  6147. name: "Macro",
  6148. height: math.unit(500, "meters")
  6149. },
  6150. ]
  6151. ))
  6152. characterMakers.push(() => makeCharacter(
  6153. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6154. {
  6155. front: {
  6156. height: math.unit(2, "meters"),
  6157. weight: math.unit(86, "kg"),
  6158. name: "Front",
  6159. image: {
  6160. source: "./media/characters/rose-lion/front.svg"
  6161. }
  6162. },
  6163. bent: {
  6164. height: math.unit(2 / 1.4288, "meters"),
  6165. weight: math.unit(86, "kg"),
  6166. name: "Bent",
  6167. image: {
  6168. source: "./media/characters/rose-lion/bent.svg"
  6169. }
  6170. }
  6171. },
  6172. [
  6173. {
  6174. name: "Mini-Micro",
  6175. height: math.unit(1, "cm")
  6176. },
  6177. {
  6178. name: "Micro",
  6179. height: math.unit(3.5, "inches"),
  6180. default: true
  6181. },
  6182. {
  6183. name: "Normal",
  6184. height: math.unit(6 + 1 / 6, "feet")
  6185. },
  6186. {
  6187. name: "Mini-Macro",
  6188. height: math.unit(9 + 10 / 12, "feet")
  6189. },
  6190. ]
  6191. ))
  6192. characterMakers.push(() => makeCharacter(
  6193. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6194. {
  6195. front: {
  6196. height: math.unit(2, "meters"),
  6197. weight: math.unit(350, "lbs"),
  6198. name: "Front",
  6199. image: {
  6200. source: "./media/characters/regal/front.svg"
  6201. }
  6202. },
  6203. back: {
  6204. height: math.unit(2, "meters"),
  6205. weight: math.unit(350, "lbs"),
  6206. name: "Back",
  6207. image: {
  6208. source: "./media/characters/regal/back.svg"
  6209. }
  6210. },
  6211. },
  6212. [
  6213. {
  6214. name: "Macro",
  6215. height: math.unit(350, "feet"),
  6216. default: true
  6217. }
  6218. ]
  6219. ))
  6220. characterMakers.push(() => makeCharacter(
  6221. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6222. {
  6223. front: {
  6224. height: math.unit(4 + 11 / 12, "feet"),
  6225. weight: math.unit(100, "lbs"),
  6226. name: "Front",
  6227. image: {
  6228. source: "./media/characters/opal/front.svg"
  6229. }
  6230. },
  6231. frontAlt: {
  6232. height: math.unit(4 + 11 / 12, "feet"),
  6233. weight: math.unit(100, "lbs"),
  6234. name: "Front (Alt)",
  6235. image: {
  6236. source: "./media/characters/opal/front-alt.svg"
  6237. }
  6238. },
  6239. },
  6240. [
  6241. {
  6242. name: "Small",
  6243. height: math.unit(4 + 11 / 12, "feet")
  6244. },
  6245. {
  6246. name: "Normal",
  6247. height: math.unit(20, "feet"),
  6248. default: true
  6249. },
  6250. {
  6251. name: "Macro",
  6252. height: math.unit(120, "feet")
  6253. },
  6254. {
  6255. name: "Megamacro",
  6256. height: math.unit(80, "miles")
  6257. },
  6258. {
  6259. name: "True Size",
  6260. height: math.unit(100000, "lightyears")
  6261. },
  6262. ]
  6263. ))
  6264. characterMakers.push(() => makeCharacter(
  6265. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6266. {
  6267. front: {
  6268. height: math.unit(6, "feet"),
  6269. weight: math.unit(200, "lbs"),
  6270. name: "Front",
  6271. image: {
  6272. source: "./media/characters/vector-wuff/front.svg"
  6273. }
  6274. }
  6275. },
  6276. [
  6277. {
  6278. name: "Normal",
  6279. height: math.unit(2.8, "meters")
  6280. },
  6281. {
  6282. name: "Macro",
  6283. height: math.unit(450, "meters"),
  6284. default: true
  6285. },
  6286. {
  6287. name: "Megamacro",
  6288. height: math.unit(15, "kilometers")
  6289. }
  6290. ]
  6291. ))
  6292. characterMakers.push(() => makeCharacter(
  6293. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6294. {
  6295. front: {
  6296. height: math.unit(6, "feet"),
  6297. weight: math.unit(256, "lbs"),
  6298. name: "Front",
  6299. image: {
  6300. source: "./media/characters/dannik/front.svg"
  6301. }
  6302. }
  6303. },
  6304. [
  6305. {
  6306. name: "Macro",
  6307. height: math.unit(69.57, "meters"),
  6308. default: true
  6309. },
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6314. {
  6315. front: {
  6316. height: math.unit(6, "feet"),
  6317. weight: math.unit(120, "lbs"),
  6318. name: "Front",
  6319. image: {
  6320. source: "./media/characters/azura-saharah/front.svg"
  6321. }
  6322. },
  6323. back: {
  6324. height: math.unit(6, "feet"),
  6325. weight: math.unit(120, "lbs"),
  6326. name: "Back",
  6327. image: {
  6328. source: "./media/characters/azura-saharah/back.svg"
  6329. }
  6330. },
  6331. },
  6332. [
  6333. {
  6334. name: "Macro",
  6335. height: math.unit(100, "feet"),
  6336. default: true
  6337. },
  6338. ]
  6339. ))
  6340. characterMakers.push(() => makeCharacter(
  6341. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6342. {
  6343. side: {
  6344. height: math.unit(5 + 4 / 12, "feet"),
  6345. weight: math.unit(163, "lbs"),
  6346. name: "Side",
  6347. image: {
  6348. source: "./media/characters/kennedy/side.svg"
  6349. }
  6350. }
  6351. },
  6352. [
  6353. {
  6354. name: "Standard Doggo",
  6355. height: math.unit(5 + 4 / 12, "feet")
  6356. },
  6357. {
  6358. name: "Big Doggo",
  6359. height: math.unit(25 + 3 / 12, "feet"),
  6360. default: true
  6361. },
  6362. ]
  6363. ))
  6364. characterMakers.push(() => makeCharacter(
  6365. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6366. {
  6367. front: {
  6368. height: math.unit(6, "feet"),
  6369. weight: math.unit(90, "lbs"),
  6370. name: "Front",
  6371. image: {
  6372. source: "./media/characters/odi-lunar/front.svg"
  6373. }
  6374. }
  6375. },
  6376. [
  6377. {
  6378. name: "Micro",
  6379. height: math.unit(3, "inches"),
  6380. default: true
  6381. },
  6382. {
  6383. name: "Normal",
  6384. height: math.unit(5.5, "feet")
  6385. }
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6390. {
  6391. back: {
  6392. height: math.unit(6, "feet"),
  6393. weight: math.unit(220, "lbs"),
  6394. name: "Back",
  6395. image: {
  6396. source: "./media/characters/mandake/back.svg"
  6397. }
  6398. }
  6399. },
  6400. [
  6401. {
  6402. name: "Normal",
  6403. height: math.unit(7, "feet"),
  6404. default: true
  6405. },
  6406. {
  6407. name: "Macro",
  6408. height: math.unit(78, "feet")
  6409. },
  6410. {
  6411. name: "Macro+",
  6412. height: math.unit(300, "meters")
  6413. },
  6414. {
  6415. name: "Macro++",
  6416. height: math.unit(2400, "feet")
  6417. },
  6418. {
  6419. name: "Megamacro",
  6420. height: math.unit(5167, "meters")
  6421. },
  6422. {
  6423. name: "Gigamacro",
  6424. height: math.unit(41769, "miles")
  6425. },
  6426. ]
  6427. ))
  6428. characterMakers.push(() => makeCharacter(
  6429. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6430. {
  6431. front: {
  6432. height: math.unit(6, "feet"),
  6433. weight: math.unit(120, "lbs"),
  6434. name: "Front",
  6435. image: {
  6436. source: "./media/characters/yozey/front.svg"
  6437. }
  6438. },
  6439. frontAlt: {
  6440. height: math.unit(6, "feet"),
  6441. weight: math.unit(120, "lbs"),
  6442. name: "Front (Alt)",
  6443. image: {
  6444. source: "./media/characters/yozey/front-alt.svg"
  6445. }
  6446. },
  6447. side: {
  6448. height: math.unit(6, "feet"),
  6449. weight: math.unit(120, "lbs"),
  6450. name: "Side",
  6451. image: {
  6452. source: "./media/characters/yozey/side.svg"
  6453. }
  6454. },
  6455. },
  6456. [
  6457. {
  6458. name: "Micro",
  6459. height: math.unit(3, "inches"),
  6460. default: true
  6461. },
  6462. {
  6463. name: "Normal",
  6464. height: math.unit(6, "feet")
  6465. }
  6466. ]
  6467. ))
  6468. characterMakers.push(() => makeCharacter(
  6469. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6470. {
  6471. front: {
  6472. height: math.unit(6, "feet"),
  6473. weight: math.unit(103, "lbs"),
  6474. name: "Front",
  6475. image: {
  6476. source: "./media/characters/valeska-voss/front.svg"
  6477. }
  6478. }
  6479. },
  6480. [
  6481. {
  6482. name: "Mini-Sized Sub",
  6483. height: math.unit(3.1, "inches")
  6484. },
  6485. {
  6486. name: "Mid-Sized Sub",
  6487. height: math.unit(6.2, "inches")
  6488. },
  6489. {
  6490. name: "Full-Sized Sub",
  6491. height: math.unit(9.3, "inches")
  6492. },
  6493. {
  6494. name: "Normal",
  6495. height: math.unit(5 + 2 / 12, "foot"),
  6496. default: true
  6497. },
  6498. ]
  6499. ))
  6500. characterMakers.push(() => makeCharacter(
  6501. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6502. {
  6503. front: {
  6504. height: math.unit(6, "feet"),
  6505. weight: math.unit(160, "lbs"),
  6506. name: "Front",
  6507. image: {
  6508. source: "./media/characters/gene-zeta/front.svg",
  6509. extra: 3006/2826,
  6510. bottom: 182/3188
  6511. }
  6512. }
  6513. },
  6514. [
  6515. {
  6516. name: "Micro",
  6517. height: math.unit(6, "inches")
  6518. },
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(5 + 11/12, "foot"),
  6522. default: true
  6523. },
  6524. {
  6525. name: "Macro",
  6526. height: math.unit(140, "feet")
  6527. },
  6528. {
  6529. name: "Supercharged",
  6530. height: math.unit(2500, "feet")
  6531. },
  6532. ]
  6533. ))
  6534. characterMakers.push(() => makeCharacter(
  6535. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6536. {
  6537. front: {
  6538. height: math.unit(6, "feet"),
  6539. weight: math.unit(350, "lbs"),
  6540. name: "Front",
  6541. image: {
  6542. source: "./media/characters/razinox/front.svg",
  6543. extra: 1686 / 1548,
  6544. bottom: 28.2 / 1868
  6545. }
  6546. },
  6547. back: {
  6548. height: math.unit(6, "feet"),
  6549. weight: math.unit(350, "lbs"),
  6550. name: "Back",
  6551. image: {
  6552. source: "./media/characters/razinox/back.svg",
  6553. extra: 1660 / 1590,
  6554. bottom: 15 / 1665
  6555. }
  6556. },
  6557. },
  6558. [
  6559. {
  6560. name: "Normal",
  6561. height: math.unit(10 + 8 / 12, "foot")
  6562. },
  6563. {
  6564. name: "Minimacro",
  6565. height: math.unit(15, "foot")
  6566. },
  6567. {
  6568. name: "Macro",
  6569. height: math.unit(60, "foot"),
  6570. default: true
  6571. },
  6572. {
  6573. name: "Megamacro",
  6574. height: math.unit(5, "miles")
  6575. },
  6576. {
  6577. name: "Gigamacro",
  6578. height: math.unit(6000, "miles")
  6579. },
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6584. {
  6585. front: {
  6586. height: math.unit(6, "feet"),
  6587. weight: math.unit(150, "lbs"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/cobalt/front.svg"
  6591. }
  6592. }
  6593. },
  6594. [
  6595. {
  6596. name: "Normal",
  6597. height: math.unit(8 + 1 / 12, "foot")
  6598. },
  6599. {
  6600. name: "Macro",
  6601. height: math.unit(111, "foot"),
  6602. default: true
  6603. },
  6604. {
  6605. name: "Supracosmic",
  6606. height: math.unit(1e42, "feet")
  6607. },
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6612. {
  6613. front: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(140, "lbs"),
  6616. name: "Front",
  6617. image: {
  6618. source: "./media/characters/amanda/front.svg"
  6619. }
  6620. }
  6621. },
  6622. [
  6623. {
  6624. name: "Micro",
  6625. height: math.unit(5, "inches"),
  6626. default: true
  6627. },
  6628. ]
  6629. ))
  6630. characterMakers.push(() => makeCharacter(
  6631. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6632. {
  6633. front: {
  6634. height: math.unit(5.59, "feet"),
  6635. weight: math.unit(250, "lbs"),
  6636. name: "Front",
  6637. image: {
  6638. source: "./media/characters/teal/front.svg"
  6639. }
  6640. },
  6641. frontAlt: {
  6642. height: math.unit(6, "feet"),
  6643. weight: math.unit(250, "lbs"),
  6644. name: "Front (Alt)",
  6645. image: {
  6646. source: "./media/characters/teal/front-alt.svg",
  6647. bottom: 0.04,
  6648. extra: 1
  6649. }
  6650. },
  6651. },
  6652. [
  6653. {
  6654. name: "Normal",
  6655. height: math.unit(12, "feet"),
  6656. default: true
  6657. },
  6658. {
  6659. name: "Macro",
  6660. height: math.unit(300, "feet")
  6661. },
  6662. ]
  6663. ))
  6664. characterMakers.push(() => makeCharacter(
  6665. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6666. {
  6667. frontCat: {
  6668. height: math.unit(6, "feet"),
  6669. weight: math.unit(180, "lbs"),
  6670. name: "Front (Cat)",
  6671. image: {
  6672. source: "./media/characters/ravin-amulet/front-cat.svg"
  6673. }
  6674. },
  6675. frontCatAlt: {
  6676. height: math.unit(6, "feet"),
  6677. weight: math.unit(180, "lbs"),
  6678. name: "Front (Alt, Cat)",
  6679. image: {
  6680. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6681. }
  6682. },
  6683. frontWerewolf: {
  6684. height: math.unit(6 * 1.2, "feet"),
  6685. weight: math.unit(225, "lbs"),
  6686. name: "Front (Werewolf)",
  6687. image: {
  6688. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6689. }
  6690. },
  6691. backWerewolf: {
  6692. height: math.unit(6 * 1.2, "feet"),
  6693. weight: math.unit(225, "lbs"),
  6694. name: "Back (Werewolf)",
  6695. image: {
  6696. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6697. }
  6698. },
  6699. },
  6700. [
  6701. {
  6702. name: "Nano",
  6703. height: math.unit(1, "micrometer")
  6704. },
  6705. {
  6706. name: "Micro",
  6707. height: math.unit(1, "inch")
  6708. },
  6709. {
  6710. name: "Normal",
  6711. height: math.unit(6, "feet"),
  6712. default: true
  6713. },
  6714. {
  6715. name: "Macro",
  6716. height: math.unit(60, "feet")
  6717. }
  6718. ]
  6719. ))
  6720. characterMakers.push(() => makeCharacter(
  6721. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6722. {
  6723. front: {
  6724. height: math.unit(6, "feet"),
  6725. weight: math.unit(165, "lbs"),
  6726. name: "Front",
  6727. image: {
  6728. source: "./media/characters/fluoresce/front.svg"
  6729. }
  6730. }
  6731. },
  6732. [
  6733. {
  6734. name: "Micro",
  6735. height: math.unit(6, "cm")
  6736. },
  6737. {
  6738. name: "Normal",
  6739. height: math.unit(5 + 7 / 12, "feet"),
  6740. default: true
  6741. },
  6742. {
  6743. name: "Macro",
  6744. height: math.unit(56, "feet")
  6745. },
  6746. {
  6747. name: "Megamacro",
  6748. height: math.unit(1.9, "miles")
  6749. },
  6750. ]
  6751. ))
  6752. characterMakers.push(() => makeCharacter(
  6753. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6754. {
  6755. front: {
  6756. height: math.unit(9 + 6 / 12, "feet"),
  6757. weight: math.unit(523, "lbs"),
  6758. name: "Side",
  6759. image: {
  6760. source: "./media/characters/aurora/side.svg"
  6761. }
  6762. }
  6763. },
  6764. [
  6765. {
  6766. name: "Normal",
  6767. height: math.unit(9 + 6 / 12, "feet")
  6768. },
  6769. {
  6770. name: "Macro",
  6771. height: math.unit(96, "feet"),
  6772. default: true
  6773. },
  6774. {
  6775. name: "Macro+",
  6776. height: math.unit(243, "feet")
  6777. },
  6778. ]
  6779. ))
  6780. characterMakers.push(() => makeCharacter(
  6781. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6782. {
  6783. front: {
  6784. height: math.unit(194, "cm"),
  6785. weight: math.unit(90, "kg"),
  6786. name: "Front",
  6787. image: {
  6788. source: "./media/characters/ranek/front.svg"
  6789. }
  6790. },
  6791. side: {
  6792. height: math.unit(194, "cm"),
  6793. weight: math.unit(90, "kg"),
  6794. name: "Side",
  6795. image: {
  6796. source: "./media/characters/ranek/side.svg"
  6797. }
  6798. },
  6799. back: {
  6800. height: math.unit(194, "cm"),
  6801. weight: math.unit(90, "kg"),
  6802. name: "Back",
  6803. image: {
  6804. source: "./media/characters/ranek/back.svg"
  6805. }
  6806. },
  6807. feral: {
  6808. height: math.unit(30, "cm"),
  6809. weight: math.unit(1.6, "lbs"),
  6810. name: "Feral",
  6811. image: {
  6812. source: "./media/characters/ranek/feral.svg"
  6813. }
  6814. },
  6815. },
  6816. [
  6817. {
  6818. name: "Normal",
  6819. height: math.unit(194, "cm"),
  6820. default: true
  6821. },
  6822. {
  6823. name: "Macro",
  6824. height: math.unit(100, "meters")
  6825. },
  6826. ]
  6827. ))
  6828. characterMakers.push(() => makeCharacter(
  6829. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6830. {
  6831. front: {
  6832. height: math.unit(5 + 6 / 12, "feet"),
  6833. weight: math.unit(153, "lbs"),
  6834. name: "Front",
  6835. image: {
  6836. source: "./media/characters/andrew-cooper/front.svg"
  6837. }
  6838. },
  6839. },
  6840. [
  6841. {
  6842. name: "Nano",
  6843. height: math.unit(1, "mm")
  6844. },
  6845. {
  6846. name: "Micro",
  6847. height: math.unit(2, "inches")
  6848. },
  6849. {
  6850. name: "Normal",
  6851. height: math.unit(5 + 6 / 12, "feet"),
  6852. default: true
  6853. }
  6854. ]
  6855. ))
  6856. characterMakers.push(() => makeCharacter(
  6857. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6858. {
  6859. front: {
  6860. height: math.unit(6, "feet"),
  6861. weight: math.unit(180, "lbs"),
  6862. name: "Front",
  6863. image: {
  6864. source: "./media/characters/akane-sato/front.svg",
  6865. extra: 1219 / 1140
  6866. }
  6867. },
  6868. back: {
  6869. height: math.unit(6, "feet"),
  6870. weight: math.unit(180, "lbs"),
  6871. name: "Back",
  6872. image: {
  6873. source: "./media/characters/akane-sato/back.svg",
  6874. extra: 1219 / 1170
  6875. }
  6876. },
  6877. },
  6878. [
  6879. {
  6880. name: "Normal",
  6881. height: math.unit(2.5, "meters")
  6882. },
  6883. {
  6884. name: "Macro",
  6885. height: math.unit(250, "meters"),
  6886. default: true
  6887. },
  6888. {
  6889. name: "Megamacro",
  6890. height: math.unit(25, "km")
  6891. },
  6892. ]
  6893. ))
  6894. characterMakers.push(() => makeCharacter(
  6895. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6896. {
  6897. front: {
  6898. height: math.unit(6, "feet"),
  6899. weight: math.unit(65, "kg"),
  6900. name: "Front",
  6901. image: {
  6902. source: "./media/characters/rook/front.svg",
  6903. extra: 960 / 950
  6904. }
  6905. }
  6906. },
  6907. [
  6908. {
  6909. name: "Normal",
  6910. height: math.unit(8.8, "feet")
  6911. },
  6912. {
  6913. name: "Macro",
  6914. height: math.unit(88, "feet"),
  6915. default: true
  6916. },
  6917. {
  6918. name: "Megamacro",
  6919. height: math.unit(8, "miles")
  6920. },
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6925. {
  6926. front: {
  6927. height: math.unit(12 + 2 / 12, "feet"),
  6928. weight: math.unit(808, "lbs"),
  6929. name: "Front",
  6930. image: {
  6931. source: "./media/characters/prodigy/front.svg"
  6932. }
  6933. }
  6934. },
  6935. [
  6936. {
  6937. name: "Normal",
  6938. height: math.unit(12 + 2 / 12, "feet"),
  6939. default: true
  6940. },
  6941. {
  6942. name: "Macro",
  6943. height: math.unit(143, "feet")
  6944. },
  6945. {
  6946. name: "Macro+",
  6947. height: math.unit(400, "feet")
  6948. },
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6953. {
  6954. front: {
  6955. height: math.unit(6, "feet"),
  6956. weight: math.unit(225, "lbs"),
  6957. name: "Front",
  6958. image: {
  6959. source: "./media/characters/daniel/front.svg"
  6960. }
  6961. },
  6962. leaning: {
  6963. height: math.unit(6, "feet"),
  6964. weight: math.unit(225, "lbs"),
  6965. name: "Leaning",
  6966. image: {
  6967. source: "./media/characters/daniel/leaning.svg"
  6968. }
  6969. },
  6970. },
  6971. [
  6972. {
  6973. name: "Macro",
  6974. height: math.unit(1000, "feet"),
  6975. default: true
  6976. },
  6977. ]
  6978. ))
  6979. characterMakers.push(() => makeCharacter(
  6980. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6981. {
  6982. front: {
  6983. height: math.unit(6, "feet"),
  6984. weight: math.unit(88, "lbs"),
  6985. name: "Front",
  6986. image: {
  6987. source: "./media/characters/chiros/front.svg",
  6988. extra: 306 / 226
  6989. }
  6990. },
  6991. side: {
  6992. height: math.unit(6, "feet"),
  6993. weight: math.unit(88, "lbs"),
  6994. name: "Side",
  6995. image: {
  6996. source: "./media/characters/chiros/side.svg",
  6997. extra: 306 / 226
  6998. }
  6999. },
  7000. },
  7001. [
  7002. {
  7003. name: "Normal",
  7004. height: math.unit(6, "cm"),
  7005. default: true
  7006. },
  7007. ]
  7008. ))
  7009. characterMakers.push(() => makeCharacter(
  7010. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7011. {
  7012. front: {
  7013. height: math.unit(6, "feet"),
  7014. weight: math.unit(100, "lbs"),
  7015. name: "Front",
  7016. image: {
  7017. source: "./media/characters/selka/front.svg",
  7018. extra: 947 / 887
  7019. }
  7020. }
  7021. },
  7022. [
  7023. {
  7024. name: "Normal",
  7025. height: math.unit(5, "cm"),
  7026. default: true
  7027. },
  7028. ]
  7029. ))
  7030. characterMakers.push(() => makeCharacter(
  7031. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7032. {
  7033. front: {
  7034. height: math.unit(8 + 3 / 12, "feet"),
  7035. weight: math.unit(424, "lbs"),
  7036. name: "Front",
  7037. image: {
  7038. source: "./media/characters/verin/front.svg",
  7039. extra: 1845 / 1550
  7040. }
  7041. },
  7042. frontArmored: {
  7043. height: math.unit(8 + 3 / 12, "feet"),
  7044. weight: math.unit(424, "lbs"),
  7045. name: "Front (Armored)",
  7046. image: {
  7047. source: "./media/characters/verin/front-armor.svg",
  7048. extra: 1845 / 1550,
  7049. bottom: 0.01
  7050. }
  7051. },
  7052. back: {
  7053. height: math.unit(8 + 3 / 12, "feet"),
  7054. weight: math.unit(424, "lbs"),
  7055. name: "Back",
  7056. image: {
  7057. source: "./media/characters/verin/back.svg",
  7058. bottom: 0.1,
  7059. extra: 1
  7060. }
  7061. },
  7062. foot: {
  7063. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7064. name: "Foot",
  7065. image: {
  7066. source: "./media/characters/verin/foot.svg"
  7067. }
  7068. },
  7069. },
  7070. [
  7071. {
  7072. name: "Normal",
  7073. height: math.unit(8 + 3 / 12, "feet")
  7074. },
  7075. {
  7076. name: "Minimacro",
  7077. height: math.unit(21, "feet"),
  7078. default: true
  7079. },
  7080. {
  7081. name: "Macro",
  7082. height: math.unit(626, "feet")
  7083. },
  7084. ]
  7085. ))
  7086. characterMakers.push(() => makeCharacter(
  7087. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7088. {
  7089. front: {
  7090. height: math.unit(2.718, "meters"),
  7091. weight: math.unit(150, "lbs"),
  7092. name: "Front",
  7093. image: {
  7094. source: "./media/characters/sovrim-terraquian/front.svg"
  7095. }
  7096. },
  7097. back: {
  7098. height: math.unit(2.718, "meters"),
  7099. weight: math.unit(150, "lbs"),
  7100. name: "Back",
  7101. image: {
  7102. source: "./media/characters/sovrim-terraquian/back.svg"
  7103. }
  7104. }
  7105. },
  7106. [
  7107. {
  7108. name: "Micro",
  7109. height: math.unit(2, "inches")
  7110. },
  7111. {
  7112. name: "Small",
  7113. height: math.unit(1, "meter")
  7114. },
  7115. {
  7116. name: "Normal",
  7117. height: math.unit(Math.E, "meters"),
  7118. default: true
  7119. },
  7120. {
  7121. name: "Macro",
  7122. height: math.unit(20, "meters")
  7123. },
  7124. {
  7125. name: "Macro+",
  7126. height: math.unit(400, "meters")
  7127. },
  7128. ]
  7129. ))
  7130. characterMakers.push(() => makeCharacter(
  7131. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7132. {
  7133. front: {
  7134. height: math.unit(7, "feet"),
  7135. weight: math.unit(489, "lbs"),
  7136. name: "Front",
  7137. image: {
  7138. source: "./media/characters/reece-silvermane/front.svg",
  7139. bottom: 0.02,
  7140. extra: 1
  7141. }
  7142. },
  7143. },
  7144. [
  7145. {
  7146. name: "Macro",
  7147. height: math.unit(1.5, "miles"),
  7148. default: true
  7149. },
  7150. ]
  7151. ))
  7152. characterMakers.push(() => makeCharacter(
  7153. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7154. {
  7155. front: {
  7156. height: math.unit(6, "feet"),
  7157. weight: math.unit(78, "kg"),
  7158. name: "Front",
  7159. image: {
  7160. source: "./media/characters/kane/front.svg",
  7161. extra: 978 / 899
  7162. }
  7163. },
  7164. },
  7165. [
  7166. {
  7167. name: "Normal",
  7168. height: math.unit(2.1, "m"),
  7169. },
  7170. {
  7171. name: "Macro",
  7172. height: math.unit(1, "km"),
  7173. default: true
  7174. },
  7175. ]
  7176. ))
  7177. characterMakers.push(() => makeCharacter(
  7178. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7179. {
  7180. front: {
  7181. height: math.unit(6, "feet"),
  7182. weight: math.unit(200, "kg"),
  7183. name: "Front",
  7184. image: {
  7185. source: "./media/characters/tegon/front.svg",
  7186. bottom: 0.01,
  7187. extra: 1
  7188. }
  7189. },
  7190. },
  7191. [
  7192. {
  7193. name: "Micro",
  7194. height: math.unit(1, "inch")
  7195. },
  7196. {
  7197. name: "Normal",
  7198. height: math.unit(6 + 3 / 12, "feet"),
  7199. default: true
  7200. },
  7201. {
  7202. name: "Macro",
  7203. height: math.unit(300, "feet")
  7204. },
  7205. {
  7206. name: "Megamacro",
  7207. height: math.unit(69, "miles")
  7208. },
  7209. ]
  7210. ))
  7211. characterMakers.push(() => makeCharacter(
  7212. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7213. {
  7214. side: {
  7215. height: math.unit(6, "feet"),
  7216. weight: math.unit(2304, "lbs"),
  7217. name: "Side",
  7218. image: {
  7219. source: "./media/characters/arcturax/side.svg",
  7220. extra: 790 / 376,
  7221. bottom: 0.01
  7222. }
  7223. },
  7224. },
  7225. [
  7226. {
  7227. name: "Micro",
  7228. height: math.unit(2, "inch")
  7229. },
  7230. {
  7231. name: "Normal",
  7232. height: math.unit(6, "feet")
  7233. },
  7234. {
  7235. name: "Macro",
  7236. height: math.unit(39, "feet"),
  7237. default: true
  7238. },
  7239. {
  7240. name: "Megamacro",
  7241. height: math.unit(7, "miles")
  7242. },
  7243. ]
  7244. ))
  7245. characterMakers.push(() => makeCharacter(
  7246. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7247. {
  7248. front: {
  7249. height: math.unit(6, "feet"),
  7250. weight: math.unit(50, "lbs"),
  7251. name: "Front",
  7252. image: {
  7253. source: "./media/characters/sentri/front.svg",
  7254. extra: 1750 / 1570,
  7255. bottom: 0.025
  7256. }
  7257. },
  7258. frontAlt: {
  7259. height: math.unit(6, "feet"),
  7260. weight: math.unit(50, "lbs"),
  7261. name: "Front (Alt)",
  7262. image: {
  7263. source: "./media/characters/sentri/front-alt.svg",
  7264. extra: 1750 / 1570,
  7265. bottom: 0.025
  7266. }
  7267. },
  7268. },
  7269. [
  7270. {
  7271. name: "Normal",
  7272. height: math.unit(15, "feet"),
  7273. default: true
  7274. },
  7275. {
  7276. name: "Macro",
  7277. height: math.unit(2500, "feet")
  7278. }
  7279. ]
  7280. ))
  7281. characterMakers.push(() => makeCharacter(
  7282. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7283. {
  7284. front: {
  7285. height: math.unit(5 + 8 / 12, "feet"),
  7286. weight: math.unit(130, "lbs"),
  7287. name: "Front",
  7288. image: {
  7289. source: "./media/characters/corvin/front.svg",
  7290. extra: 1803 / 1629
  7291. }
  7292. },
  7293. frontShirt: {
  7294. height: math.unit(5 + 8 / 12, "feet"),
  7295. weight: math.unit(130, "lbs"),
  7296. name: "Front (Shirt)",
  7297. image: {
  7298. source: "./media/characters/corvin/front-shirt.svg",
  7299. extra: 1803 / 1629
  7300. }
  7301. },
  7302. frontPoncho: {
  7303. height: math.unit(5 + 8 / 12, "feet"),
  7304. weight: math.unit(130, "lbs"),
  7305. name: "Front (Poncho)",
  7306. image: {
  7307. source: "./media/characters/corvin/front-poncho.svg",
  7308. extra: 1803 / 1629
  7309. }
  7310. },
  7311. side: {
  7312. height: math.unit(5 + 8 / 12, "feet"),
  7313. weight: math.unit(130, "lbs"),
  7314. name: "Side",
  7315. image: {
  7316. source: "./media/characters/corvin/side.svg",
  7317. extra: 1012 / 945
  7318. }
  7319. },
  7320. back: {
  7321. height: math.unit(5 + 8 / 12, "feet"),
  7322. weight: math.unit(130, "lbs"),
  7323. name: "Back",
  7324. image: {
  7325. source: "./media/characters/corvin/back.svg",
  7326. extra: 1803 / 1629
  7327. }
  7328. },
  7329. },
  7330. [
  7331. {
  7332. name: "Micro",
  7333. height: math.unit(3, "inches")
  7334. },
  7335. {
  7336. name: "Normal",
  7337. height: math.unit(5 + 8 / 12, "feet")
  7338. },
  7339. {
  7340. name: "Macro",
  7341. height: math.unit(300, "feet"),
  7342. default: true
  7343. },
  7344. {
  7345. name: "Megamacro",
  7346. height: math.unit(500, "miles")
  7347. }
  7348. ]
  7349. ))
  7350. characterMakers.push(() => makeCharacter(
  7351. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7352. {
  7353. front: {
  7354. height: math.unit(6, "feet"),
  7355. weight: math.unit(135, "lbs"),
  7356. name: "Front",
  7357. image: {
  7358. source: "./media/characters/q/front.svg",
  7359. extra: 854 / 752,
  7360. bottom: 0.005
  7361. }
  7362. },
  7363. back: {
  7364. height: math.unit(6, "feet"),
  7365. weight: math.unit(130, "lbs"),
  7366. name: "Back",
  7367. image: {
  7368. source: "./media/characters/q/back.svg",
  7369. extra: 854 / 752
  7370. }
  7371. },
  7372. },
  7373. [
  7374. {
  7375. name: "Macro",
  7376. height: math.unit(90, "feet"),
  7377. default: true
  7378. },
  7379. {
  7380. name: "Extra Macro",
  7381. height: math.unit(300, "feet"),
  7382. },
  7383. {
  7384. name: "BIG WALF",
  7385. height: math.unit(750, "feet"),
  7386. },
  7387. ]
  7388. ))
  7389. characterMakers.push(() => makeCharacter(
  7390. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7391. {
  7392. front: {
  7393. height: math.unit(6, "feet"),
  7394. weight: math.unit(150, "lbs"),
  7395. name: "Front",
  7396. image: {
  7397. source: "./media/characters/carley/front.svg",
  7398. extra: 3927 / 3540,
  7399. bottom: 29.2 / 735
  7400. }
  7401. }
  7402. },
  7403. [
  7404. {
  7405. name: "Normal",
  7406. height: math.unit(6 + 3 / 12, "feet")
  7407. },
  7408. {
  7409. name: "Macro",
  7410. height: math.unit(185, "feet"),
  7411. default: true
  7412. },
  7413. {
  7414. name: "Megamacro",
  7415. height: math.unit(8, "miles"),
  7416. },
  7417. ]
  7418. ))
  7419. characterMakers.push(() => makeCharacter(
  7420. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7421. {
  7422. front: {
  7423. height: math.unit(3, "feet"),
  7424. weight: math.unit(28, "lbs"),
  7425. name: "Front",
  7426. image: {
  7427. source: "./media/characters/citrine/front.svg"
  7428. }
  7429. }
  7430. },
  7431. [
  7432. {
  7433. name: "Normal",
  7434. height: math.unit(3, "feet"),
  7435. default: true
  7436. }
  7437. ]
  7438. ))
  7439. characterMakers.push(() => makeCharacter(
  7440. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7441. {
  7442. front: {
  7443. height: math.unit(14, "feet"),
  7444. weight: math.unit(1450, "kg"),
  7445. capacity: math.unit(15, "people"),
  7446. name: "Front",
  7447. image: {
  7448. source: "./media/characters/aura-starwind/front.svg",
  7449. extra: 1455 / 1335
  7450. }
  7451. },
  7452. side: {
  7453. height: math.unit(14, "feet"),
  7454. weight: math.unit(1450, "kg"),
  7455. capacity: math.unit(15, "people"),
  7456. name: "Side",
  7457. image: {
  7458. source: "./media/characters/aura-starwind/side.svg",
  7459. extra: 1654 / 1497
  7460. }
  7461. },
  7462. taur: {
  7463. height: math.unit(18, "feet"),
  7464. weight: math.unit(5500, "kg"),
  7465. capacity: math.unit(50, "people"),
  7466. name: "Taur",
  7467. image: {
  7468. source: "./media/characters/aura-starwind/taur.svg",
  7469. extra: 1760 / 1650
  7470. }
  7471. },
  7472. feral: {
  7473. height: math.unit(46, "feet"),
  7474. weight: math.unit(25000, "kg"),
  7475. capacity: math.unit(120, "people"),
  7476. name: "Feral",
  7477. image: {
  7478. source: "./media/characters/aura-starwind/feral.svg"
  7479. }
  7480. },
  7481. },
  7482. [
  7483. {
  7484. name: "Normal",
  7485. height: math.unit(14, "feet"),
  7486. default: true
  7487. },
  7488. {
  7489. name: "Macro",
  7490. height: math.unit(50, "meters")
  7491. },
  7492. {
  7493. name: "Megamacro",
  7494. height: math.unit(5000, "meters")
  7495. },
  7496. {
  7497. name: "Gigamacro",
  7498. height: math.unit(100000, "kilometers")
  7499. },
  7500. ]
  7501. ))
  7502. characterMakers.push(() => makeCharacter(
  7503. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7504. {
  7505. front: {
  7506. height: math.unit(2 + 7 / 12, "feet"),
  7507. weight: math.unit(32, "lbs"),
  7508. name: "Front",
  7509. image: {
  7510. source: "./media/characters/rivet/front.svg",
  7511. extra: 1716 / 1658,
  7512. bottom: 0.03
  7513. }
  7514. },
  7515. foot: {
  7516. height: math.unit(0.551, "feet"),
  7517. name: "Rivet's Foot",
  7518. image: {
  7519. source: "./media/characters/rivet/foot.svg"
  7520. },
  7521. rename: true
  7522. }
  7523. },
  7524. [
  7525. {
  7526. name: "Micro",
  7527. height: math.unit(1.5, "inches"),
  7528. },
  7529. {
  7530. name: "Normal",
  7531. height: math.unit(2 + 7 / 12, "feet"),
  7532. default: true
  7533. },
  7534. {
  7535. name: "Macro",
  7536. height: math.unit(85, "feet")
  7537. },
  7538. {
  7539. name: "Megamacro",
  7540. height: math.unit(2.2, "km")
  7541. }
  7542. ]
  7543. ))
  7544. characterMakers.push(() => makeCharacter(
  7545. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7546. {
  7547. front: {
  7548. height: math.unit(5 + 9 / 12, "feet"),
  7549. weight: math.unit(150, "lbs"),
  7550. name: "Front",
  7551. image: {
  7552. source: "./media/characters/coffee/front.svg",
  7553. extra: 3666 / 3032,
  7554. bottom: 0.04
  7555. }
  7556. },
  7557. foot: {
  7558. height: math.unit(1.29, "feet"),
  7559. name: "Foot",
  7560. image: {
  7561. source: "./media/characters/coffee/foot.svg"
  7562. }
  7563. },
  7564. },
  7565. [
  7566. {
  7567. name: "Micro",
  7568. height: math.unit(2, "inches"),
  7569. },
  7570. {
  7571. name: "Normal",
  7572. height: math.unit(5 + 9 / 12, "feet"),
  7573. default: true
  7574. },
  7575. {
  7576. name: "Macro",
  7577. height: math.unit(800, "feet")
  7578. },
  7579. {
  7580. name: "Megamacro",
  7581. height: math.unit(25, "miles")
  7582. }
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(6, "feet"),
  7590. weight: math.unit(200, "lbs"),
  7591. name: "Front",
  7592. image: {
  7593. source: "./media/characters/chari-gal/front.svg",
  7594. extra: 1568 / 1385,
  7595. bottom: 0.047
  7596. }
  7597. },
  7598. gigantamax: {
  7599. height: math.unit(6 * 16, "feet"),
  7600. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7601. name: "Gigantamax",
  7602. image: {
  7603. source: "./media/characters/chari-gal/gigantamax.svg",
  7604. extra: 1124 / 888,
  7605. bottom: 0.03
  7606. }
  7607. },
  7608. },
  7609. [
  7610. {
  7611. name: "Normal",
  7612. height: math.unit(5 + 7 / 12, "feet")
  7613. },
  7614. {
  7615. name: "Macro",
  7616. height: math.unit(200, "feet"),
  7617. default: true
  7618. }
  7619. ]
  7620. ))
  7621. characterMakers.push(() => makeCharacter(
  7622. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7623. {
  7624. front: {
  7625. height: math.unit(6, "feet"),
  7626. weight: math.unit(150, "lbs"),
  7627. name: "Front",
  7628. image: {
  7629. source: "./media/characters/nova/front.svg",
  7630. extra: 5000 / 4722,
  7631. bottom: 0.02
  7632. }
  7633. }
  7634. },
  7635. [
  7636. {
  7637. name: "Micro-",
  7638. height: math.unit(0.8, "inches")
  7639. },
  7640. {
  7641. name: "Micro",
  7642. height: math.unit(2, "inches"),
  7643. default: true
  7644. },
  7645. ]
  7646. ))
  7647. characterMakers.push(() => makeCharacter(
  7648. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7649. {
  7650. front: {
  7651. height: math.unit(3 + 1 / 12, "feet"),
  7652. weight: math.unit(21.7, "lbs"),
  7653. name: "Front",
  7654. image: {
  7655. source: "./media/characters/argent/front.svg",
  7656. extra: 1471 / 1331,
  7657. bottom: 100.8 / 1575.5
  7658. }
  7659. }
  7660. },
  7661. [
  7662. {
  7663. name: "Micro",
  7664. height: math.unit(2, "inches")
  7665. },
  7666. {
  7667. name: "Normal",
  7668. height: math.unit(3 + 1 / 12, "feet"),
  7669. default: true
  7670. },
  7671. {
  7672. name: "Macro",
  7673. height: math.unit(120, "feet")
  7674. },
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7679. {
  7680. lamp: {
  7681. height: math.unit(7 * 1559 / 989, "feet"),
  7682. name: "Magic Lamp",
  7683. image: {
  7684. source: "./media/characters/mira-al-cul/lamp.svg",
  7685. extra: 1617 / 1559
  7686. }
  7687. },
  7688. front: {
  7689. height: math.unit(7, "feet"),
  7690. name: "Front",
  7691. image: {
  7692. source: "./media/characters/mira-al-cul/front.svg",
  7693. extra: 1044 / 990
  7694. }
  7695. },
  7696. },
  7697. [
  7698. {
  7699. name: "Heavily Restricted",
  7700. height: math.unit(7 * 1559 / 989, "feet")
  7701. },
  7702. {
  7703. name: "Freshly Freed",
  7704. height: math.unit(50 * 1559 / 989, "feet")
  7705. },
  7706. {
  7707. name: "World Encompassing",
  7708. height: math.unit(10000 * 1559 / 989, "miles")
  7709. },
  7710. {
  7711. name: "Galactic",
  7712. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7713. },
  7714. {
  7715. name: "Palmed Universe",
  7716. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7717. default: true
  7718. },
  7719. {
  7720. name: "Multiversal Matriarch",
  7721. height: math.unit(8.87e10, "yottameters")
  7722. },
  7723. {
  7724. name: "Void Mother",
  7725. height: math.unit(3.14e110, "yottaparsecs")
  7726. },
  7727. {
  7728. name: "Toying with Transcendence",
  7729. height: math.unit(1e307, "meters")
  7730. },
  7731. ]
  7732. ))
  7733. characterMakers.push(() => makeCharacter(
  7734. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7735. {
  7736. front: {
  7737. height: math.unit(17 + 1 / 12, "feet"),
  7738. weight: math.unit(476.2 * 5, "lbs"),
  7739. name: "Front",
  7740. image: {
  7741. source: "./media/characters/kuro-shi-uchū/front.svg",
  7742. extra: 2329 / 1835,
  7743. bottom: 0.02
  7744. }
  7745. },
  7746. },
  7747. [
  7748. {
  7749. name: "Micro",
  7750. height: math.unit(2, "inches")
  7751. },
  7752. {
  7753. name: "Normal",
  7754. height: math.unit(12, "meters")
  7755. },
  7756. {
  7757. name: "Planetary",
  7758. height: math.unit(0.00929, "AU"),
  7759. default: true
  7760. },
  7761. {
  7762. name: "Universal",
  7763. height: math.unit(20, "gigaparsecs")
  7764. },
  7765. ]
  7766. ))
  7767. characterMakers.push(() => makeCharacter(
  7768. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7769. {
  7770. front: {
  7771. height: math.unit(5 + 2 / 12, "feet"),
  7772. weight: math.unit(120, "lbs"),
  7773. name: "Front",
  7774. image: {
  7775. source: "./media/characters/katherine/front.svg",
  7776. extra: 2075 / 1969
  7777. }
  7778. },
  7779. dress: {
  7780. height: math.unit(5 + 2 / 12, "feet"),
  7781. weight: math.unit(120, "lbs"),
  7782. name: "Dress",
  7783. image: {
  7784. source: "./media/characters/katherine/dress.svg",
  7785. extra: 2258 / 2064
  7786. }
  7787. },
  7788. },
  7789. [
  7790. {
  7791. name: "Micro",
  7792. height: math.unit(1, "inches"),
  7793. default: true
  7794. },
  7795. {
  7796. name: "Normal",
  7797. height: math.unit(5 + 2 / 12, "feet")
  7798. },
  7799. {
  7800. name: "Macro",
  7801. height: math.unit(100, "meters")
  7802. },
  7803. {
  7804. name: "Megamacro",
  7805. height: math.unit(80, "miles")
  7806. },
  7807. ]
  7808. ))
  7809. characterMakers.push(() => makeCharacter(
  7810. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7811. {
  7812. front: {
  7813. height: math.unit(7 + 8 / 12, "feet"),
  7814. weight: math.unit(250, "lbs"),
  7815. name: "Front",
  7816. image: {
  7817. source: "./media/characters/yevis/front.svg",
  7818. extra: 1938 / 1755
  7819. }
  7820. }
  7821. },
  7822. [
  7823. {
  7824. name: "Mortal",
  7825. height: math.unit(7 + 8 / 12, "feet")
  7826. },
  7827. {
  7828. name: "Battle",
  7829. height: math.unit(25 + 11 / 12, "feet")
  7830. },
  7831. {
  7832. name: "Wrath",
  7833. height: math.unit(1654 + 11 / 12, "feet")
  7834. },
  7835. {
  7836. name: "Planet Destroyer",
  7837. height: math.unit(12000, "miles")
  7838. },
  7839. {
  7840. name: "Galaxy Conqueror",
  7841. height: math.unit(1.45, "zettameters"),
  7842. default: true
  7843. },
  7844. {
  7845. name: "Universal War",
  7846. height: math.unit(184, "gigaparsecs")
  7847. },
  7848. {
  7849. name: "Eternity War",
  7850. height: math.unit(1.98e55, "yottaparsecs")
  7851. },
  7852. ]
  7853. ))
  7854. characterMakers.push(() => makeCharacter(
  7855. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7856. {
  7857. front: {
  7858. height: math.unit(5 + 8 / 12, "feet"),
  7859. weight: math.unit(63, "kg"),
  7860. name: "Front",
  7861. image: {
  7862. source: "./media/characters/xavier/front.svg",
  7863. extra: 944 / 883
  7864. }
  7865. },
  7866. frontStretch: {
  7867. height: math.unit(5 + 8 / 12, "feet"),
  7868. weight: math.unit(63, "kg"),
  7869. name: "Stretching",
  7870. image: {
  7871. source: "./media/characters/xavier/front-stretch.svg",
  7872. extra: 962 / 820
  7873. }
  7874. },
  7875. },
  7876. [
  7877. {
  7878. name: "Normal",
  7879. height: math.unit(5 + 8 / 12, "feet")
  7880. },
  7881. {
  7882. name: "Macro",
  7883. height: math.unit(100, "meters"),
  7884. default: true
  7885. },
  7886. {
  7887. name: "McLargeHuge",
  7888. height: math.unit(10, "miles")
  7889. },
  7890. ]
  7891. ))
  7892. characterMakers.push(() => makeCharacter(
  7893. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7894. {
  7895. front: {
  7896. height: math.unit(5 + 5 / 12, "feet"),
  7897. weight: math.unit(150, "lb"),
  7898. name: "Front",
  7899. image: {
  7900. source: "./media/characters/joshii/front.svg",
  7901. extra: 765/653,
  7902. bottom: 51/816
  7903. }
  7904. },
  7905. foot: {
  7906. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7907. name: "Foot",
  7908. image: {
  7909. source: "./media/characters/joshii/foot.svg"
  7910. }
  7911. },
  7912. },
  7913. [
  7914. {
  7915. name: "Micro",
  7916. height: math.unit(2, "inches"),
  7917. default: true
  7918. },
  7919. {
  7920. name: "Normal",
  7921. height: math.unit(5 + 5 / 12, "feet")
  7922. },
  7923. {
  7924. name: "Macro",
  7925. height: math.unit(785, "feet")
  7926. },
  7927. {
  7928. name: "Megamacro",
  7929. height: math.unit(24.5, "miles")
  7930. },
  7931. ]
  7932. ))
  7933. characterMakers.push(() => makeCharacter(
  7934. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7935. {
  7936. front: {
  7937. height: math.unit(6, "feet"),
  7938. weight: math.unit(150, "lb"),
  7939. name: "Front",
  7940. image: {
  7941. source: "./media/characters/goddess-elizabeth/front.svg",
  7942. extra: 1800 / 1525,
  7943. bottom: 0.005
  7944. }
  7945. },
  7946. foot: {
  7947. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7948. name: "Foot",
  7949. image: {
  7950. source: "./media/characters/goddess-elizabeth/foot.svg"
  7951. }
  7952. },
  7953. mouth: {
  7954. height: math.unit(6, "feet"),
  7955. name: "Mouth",
  7956. image: {
  7957. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7958. }
  7959. },
  7960. },
  7961. [
  7962. {
  7963. name: "Micro",
  7964. height: math.unit(12, "feet")
  7965. },
  7966. {
  7967. name: "Normal",
  7968. height: math.unit(80, "miles"),
  7969. default: true
  7970. },
  7971. {
  7972. name: "Macro",
  7973. height: math.unit(15000, "parsecs")
  7974. },
  7975. ]
  7976. ))
  7977. characterMakers.push(() => makeCharacter(
  7978. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7979. {
  7980. front: {
  7981. height: math.unit(5 + 9 / 12, "feet"),
  7982. weight: math.unit(144, "lb"),
  7983. name: "Front",
  7984. image: {
  7985. source: "./media/characters/kara/front.svg"
  7986. }
  7987. },
  7988. feet: {
  7989. height: math.unit(6 / 6.765, "feet"),
  7990. name: "Kara's Feet",
  7991. rename: true,
  7992. image: {
  7993. source: "./media/characters/kara/feet.svg"
  7994. }
  7995. },
  7996. },
  7997. [
  7998. {
  7999. name: "Normal",
  8000. height: math.unit(5 + 9 / 12, "feet")
  8001. },
  8002. {
  8003. name: "Macro",
  8004. height: math.unit(174, "feet"),
  8005. default: true
  8006. },
  8007. ]
  8008. ))
  8009. characterMakers.push(() => makeCharacter(
  8010. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8011. {
  8012. front: {
  8013. height: math.unit(18, "feet"),
  8014. weight: math.unit(4050, "lb"),
  8015. name: "Front",
  8016. image: {
  8017. source: "./media/characters/tyrone/front.svg",
  8018. extra: 2520 / 2402,
  8019. bottom: 0.025
  8020. }
  8021. },
  8022. },
  8023. [
  8024. {
  8025. name: "Normal",
  8026. height: math.unit(18, "feet"),
  8027. default: true
  8028. },
  8029. {
  8030. name: "Macro",
  8031. height: math.unit(300, "feet")
  8032. },
  8033. ]
  8034. ))
  8035. characterMakers.push(() => makeCharacter(
  8036. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8037. {
  8038. front: {
  8039. height: math.unit(7 + 8 / 12, "feet"),
  8040. weight: math.unit(120, "lb"),
  8041. name: "Front",
  8042. image: {
  8043. source: "./media/characters/danny/front.svg",
  8044. extra: 1490 / 1350
  8045. }
  8046. },
  8047. back: {
  8048. height: math.unit(7 + 8 / 12, "feet"),
  8049. weight: math.unit(120, "lb"),
  8050. name: "Back",
  8051. image: {
  8052. source: "./media/characters/danny/back.svg",
  8053. extra: 1490 / 1350
  8054. }
  8055. },
  8056. },
  8057. [
  8058. {
  8059. name: "Normal",
  8060. height: math.unit(7 + 8 / 12, "feet"),
  8061. default: true
  8062. },
  8063. ]
  8064. ))
  8065. characterMakers.push(() => makeCharacter(
  8066. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8067. {
  8068. front: {
  8069. height: math.unit(3.5, "inches"),
  8070. weight: math.unit(19, "grams"),
  8071. name: "Front",
  8072. image: {
  8073. source: "./media/characters/mallow/front.svg",
  8074. extra: 471 / 431
  8075. }
  8076. },
  8077. back: {
  8078. height: math.unit(3.5, "inches"),
  8079. weight: math.unit(19, "grams"),
  8080. name: "Back",
  8081. image: {
  8082. source: "./media/characters/mallow/back.svg",
  8083. extra: 471 / 431
  8084. }
  8085. },
  8086. },
  8087. [
  8088. {
  8089. name: "Normal",
  8090. height: math.unit(3.5, "inches"),
  8091. default: true
  8092. },
  8093. ]
  8094. ))
  8095. characterMakers.push(() => makeCharacter(
  8096. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8097. {
  8098. front: {
  8099. height: math.unit(9, "feet"),
  8100. weight: math.unit(230, "kg"),
  8101. name: "Front",
  8102. image: {
  8103. source: "./media/characters/starry-aqua/front.svg"
  8104. }
  8105. },
  8106. back: {
  8107. height: math.unit(9, "feet"),
  8108. weight: math.unit(230, "kg"),
  8109. name: "Back",
  8110. image: {
  8111. source: "./media/characters/starry-aqua/back.svg"
  8112. }
  8113. },
  8114. hand: {
  8115. height: math.unit(9 * 0.1168, "feet"),
  8116. name: "Hand",
  8117. image: {
  8118. source: "./media/characters/starry-aqua/hand.svg"
  8119. }
  8120. },
  8121. foot: {
  8122. height: math.unit(9 * 0.18, "feet"),
  8123. name: "Foot",
  8124. image: {
  8125. source: "./media/characters/starry-aqua/foot.svg"
  8126. }
  8127. }
  8128. },
  8129. [
  8130. {
  8131. name: "Micro",
  8132. height: math.unit(3, "inches")
  8133. },
  8134. {
  8135. name: "Normal",
  8136. height: math.unit(9, "feet")
  8137. },
  8138. {
  8139. name: "Macro",
  8140. height: math.unit(300, "feet"),
  8141. default: true
  8142. },
  8143. {
  8144. name: "Megamacro",
  8145. height: math.unit(3200, "feet")
  8146. }
  8147. ]
  8148. ))
  8149. characterMakers.push(() => makeCharacter(
  8150. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8151. {
  8152. front: {
  8153. height: math.unit(6, "feet"),
  8154. weight: math.unit(230, "lb"),
  8155. name: "Front",
  8156. image: {
  8157. source: "./media/characters/luka/front.svg",
  8158. extra: 1,
  8159. bottom: 0.025
  8160. }
  8161. },
  8162. },
  8163. [
  8164. {
  8165. name: "Normal",
  8166. height: math.unit(12 + 8 / 12, "feet"),
  8167. default: true
  8168. },
  8169. {
  8170. name: "Minimacro",
  8171. height: math.unit(20, "feet")
  8172. },
  8173. {
  8174. name: "Macro",
  8175. height: math.unit(250, "feet")
  8176. },
  8177. {
  8178. name: "Megamacro",
  8179. height: math.unit(5, "miles")
  8180. },
  8181. {
  8182. name: "Gigamacro",
  8183. height: math.unit(8000, "miles")
  8184. },
  8185. ]
  8186. ))
  8187. characterMakers.push(() => makeCharacter(
  8188. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8189. {
  8190. front: {
  8191. height: math.unit(6, "feet"),
  8192. weight: math.unit(150, "lb"),
  8193. name: "Front",
  8194. image: {
  8195. source: "./media/characters/natalie-nightring/front.svg",
  8196. extra: 1,
  8197. bottom: 0.06
  8198. }
  8199. },
  8200. },
  8201. [
  8202. {
  8203. name: "Uh Oh",
  8204. height: math.unit(0.1, "mm")
  8205. },
  8206. {
  8207. name: "Small",
  8208. height: math.unit(3, "inches")
  8209. },
  8210. {
  8211. name: "Human Scale",
  8212. height: math.unit(6, "feet")
  8213. },
  8214. {
  8215. name: "Librarian",
  8216. height: math.unit(50, "feet"),
  8217. default: true
  8218. },
  8219. {
  8220. name: "Immense",
  8221. height: math.unit(200, "miles")
  8222. },
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8227. {
  8228. front: {
  8229. height: math.unit(6, "feet"),
  8230. weight: math.unit(180, "lbs"),
  8231. name: "Front",
  8232. image: {
  8233. source: "./media/characters/danni-rosie/front.svg",
  8234. extra: 1260 / 1128,
  8235. bottom: 0.022
  8236. }
  8237. },
  8238. },
  8239. [
  8240. {
  8241. name: "Micro",
  8242. height: math.unit(2, "inches"),
  8243. default: true
  8244. },
  8245. ]
  8246. ))
  8247. characterMakers.push(() => makeCharacter(
  8248. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8249. {
  8250. front: {
  8251. height: math.unit(5 + 9 / 12, "feet"),
  8252. weight: math.unit(220, "lb"),
  8253. name: "Front",
  8254. image: {
  8255. source: "./media/characters/samantha-kruse/front.svg",
  8256. extra: (985 / 935),
  8257. bottom: 0.03
  8258. }
  8259. },
  8260. frontUndressed: {
  8261. height: math.unit(5 + 9 / 12, "feet"),
  8262. weight: math.unit(220, "lb"),
  8263. name: "Front (Undressed)",
  8264. image: {
  8265. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8266. extra: (973 / 923),
  8267. bottom: 0.025
  8268. }
  8269. },
  8270. fat: {
  8271. height: math.unit(5 + 9 / 12, "feet"),
  8272. weight: math.unit(900, "lb"),
  8273. name: "Front (Fat)",
  8274. image: {
  8275. source: "./media/characters/samantha-kruse/fat.svg",
  8276. extra: 2688 / 2561
  8277. }
  8278. },
  8279. },
  8280. [
  8281. {
  8282. name: "Normal",
  8283. height: math.unit(5 + 9 / 12, "feet"),
  8284. default: true
  8285. }
  8286. ]
  8287. ))
  8288. characterMakers.push(() => makeCharacter(
  8289. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8290. {
  8291. back: {
  8292. height: math.unit(5 + 4 / 12, "feet"),
  8293. weight: math.unit(4963, "lb"),
  8294. name: "Back",
  8295. image: {
  8296. source: "./media/characters/amelia-rosie/back.svg",
  8297. extra: 1113 / 963,
  8298. bottom: 0.01
  8299. }
  8300. },
  8301. },
  8302. [
  8303. {
  8304. name: "Level 0",
  8305. height: math.unit(5 + 4 / 12, "feet")
  8306. },
  8307. {
  8308. name: "Level 1",
  8309. height: math.unit(164597, "feet"),
  8310. default: true
  8311. },
  8312. {
  8313. name: "Level 2",
  8314. height: math.unit(956243, "miles")
  8315. },
  8316. {
  8317. name: "Level 3",
  8318. height: math.unit(29421709423, "miles")
  8319. },
  8320. {
  8321. name: "Level 4",
  8322. height: math.unit(154, "lightyears")
  8323. },
  8324. {
  8325. name: "Level 5",
  8326. height: math.unit(4738272, "lightyears")
  8327. },
  8328. {
  8329. name: "Level 6",
  8330. height: math.unit(145787152896, "lightyears")
  8331. },
  8332. ]
  8333. ))
  8334. characterMakers.push(() => makeCharacter(
  8335. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8336. {
  8337. front: {
  8338. height: math.unit(5 + 11 / 12, "feet"),
  8339. weight: math.unit(65, "kg"),
  8340. name: "Front",
  8341. image: {
  8342. source: "./media/characters/rook-kitara/front.svg",
  8343. extra: 1347 / 1274,
  8344. bottom: 0.005
  8345. }
  8346. },
  8347. },
  8348. [
  8349. {
  8350. name: "Totally Unfair",
  8351. height: math.unit(1.8, "mm")
  8352. },
  8353. {
  8354. name: "Lap Rookie",
  8355. height: math.unit(1.4, "feet")
  8356. },
  8357. {
  8358. name: "Normal",
  8359. height: math.unit(5 + 11 / 12, "feet"),
  8360. default: true
  8361. },
  8362. {
  8363. name: "How Did This Happen",
  8364. height: math.unit(80, "miles")
  8365. }
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(7, "feet"),
  8373. weight: math.unit(300, "lb"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/pisces/front.svg",
  8377. extra: 2255 / 2115,
  8378. bottom: 0.03
  8379. }
  8380. },
  8381. back: {
  8382. height: math.unit(7, "feet"),
  8383. weight: math.unit(300, "lb"),
  8384. name: "Back",
  8385. image: {
  8386. source: "./media/characters/pisces/back.svg",
  8387. extra: 2146 / 2055,
  8388. bottom: 0.04
  8389. }
  8390. },
  8391. },
  8392. [
  8393. {
  8394. name: "Normal",
  8395. height: math.unit(7, "feet"),
  8396. default: true
  8397. },
  8398. {
  8399. name: "Swimming Pool",
  8400. height: math.unit(12.2, "meters")
  8401. },
  8402. {
  8403. name: "Olympic Swimming Pool",
  8404. height: math.unit(56.3, "meters")
  8405. },
  8406. {
  8407. name: "Lake Superior",
  8408. height: math.unit(93900, "meters")
  8409. },
  8410. {
  8411. name: "Mediterranean Sea",
  8412. height: math.unit(644457, "meters")
  8413. },
  8414. {
  8415. name: "World's Oceans",
  8416. height: math.unit(4567491, "meters")
  8417. },
  8418. ]
  8419. ))
  8420. characterMakers.push(() => makeCharacter(
  8421. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8422. {
  8423. front: {
  8424. height: math.unit(2.3, "meters"),
  8425. weight: math.unit(120, "kg"),
  8426. name: "Front",
  8427. image: {
  8428. source: "./media/characters/zelas/front.svg"
  8429. }
  8430. },
  8431. side: {
  8432. height: math.unit(2.3, "meters"),
  8433. weight: math.unit(120, "kg"),
  8434. name: "Side",
  8435. image: {
  8436. source: "./media/characters/zelas/side.svg"
  8437. }
  8438. },
  8439. back: {
  8440. height: math.unit(2.3, "meters"),
  8441. weight: math.unit(120, "kg"),
  8442. name: "Back",
  8443. image: {
  8444. source: "./media/characters/zelas/back.svg"
  8445. }
  8446. },
  8447. foot: {
  8448. height: math.unit(1.116, "feet"),
  8449. name: "Foot",
  8450. image: {
  8451. source: "./media/characters/zelas/foot.svg"
  8452. }
  8453. },
  8454. },
  8455. [
  8456. {
  8457. name: "Normal",
  8458. height: math.unit(2.3, "meters")
  8459. },
  8460. {
  8461. name: "Macro",
  8462. height: math.unit(30, "meters"),
  8463. default: true
  8464. },
  8465. ]
  8466. ))
  8467. characterMakers.push(() => makeCharacter(
  8468. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8469. {
  8470. front: {
  8471. height: math.unit(1, "inch"),
  8472. weight: math.unit(0.21, "grams"),
  8473. name: "Front",
  8474. image: {
  8475. source: "./media/characters/talbot/front.svg",
  8476. extra: 594 / 544
  8477. }
  8478. },
  8479. },
  8480. [
  8481. {
  8482. name: "Micro",
  8483. height: math.unit(1, "inch"),
  8484. default: true
  8485. },
  8486. ]
  8487. ))
  8488. characterMakers.push(() => makeCharacter(
  8489. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8490. {
  8491. front: {
  8492. height: math.unit(3 + 3 / 12, "feet"),
  8493. weight: math.unit(51.8, "lb"),
  8494. name: "Front",
  8495. image: {
  8496. source: "./media/characters/fliss/front.svg",
  8497. extra: 840 / 640
  8498. }
  8499. },
  8500. },
  8501. [
  8502. {
  8503. name: "Teeny Tiny",
  8504. height: math.unit(1, "mm")
  8505. },
  8506. {
  8507. name: "Small",
  8508. height: math.unit(1, "inch"),
  8509. default: true
  8510. },
  8511. {
  8512. name: "Standard Sylveon",
  8513. height: math.unit(3 + 3 / 12, "feet")
  8514. },
  8515. {
  8516. name: "Large Nuisance",
  8517. height: math.unit(33, "feet")
  8518. },
  8519. {
  8520. name: "City Filler",
  8521. height: math.unit(3000, "feet")
  8522. },
  8523. {
  8524. name: "New Horizon",
  8525. height: math.unit(6000, "miles")
  8526. },
  8527. ]
  8528. ))
  8529. characterMakers.push(() => makeCharacter(
  8530. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8531. {
  8532. front: {
  8533. height: math.unit(5, "cm"),
  8534. weight: math.unit(1.94, "g"),
  8535. name: "Front",
  8536. image: {
  8537. source: "./media/characters/fleta/front.svg",
  8538. extra: 835 / 803
  8539. }
  8540. },
  8541. back: {
  8542. height: math.unit(5, "cm"),
  8543. weight: math.unit(1.94, "g"),
  8544. name: "Back",
  8545. image: {
  8546. source: "./media/characters/fleta/back.svg",
  8547. extra: 835 / 803
  8548. }
  8549. },
  8550. },
  8551. [
  8552. {
  8553. name: "Micro",
  8554. height: math.unit(5, "cm"),
  8555. default: true
  8556. },
  8557. ]
  8558. ))
  8559. characterMakers.push(() => makeCharacter(
  8560. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8561. {
  8562. front: {
  8563. height: math.unit(6, "feet"),
  8564. weight: math.unit(225, "lb"),
  8565. name: "Front",
  8566. image: {
  8567. source: "./media/characters/dominic/front.svg",
  8568. extra: 1770 / 1620,
  8569. bottom: 0.025
  8570. }
  8571. },
  8572. back: {
  8573. height: math.unit(6, "feet"),
  8574. weight: math.unit(225, "lb"),
  8575. name: "Back",
  8576. image: {
  8577. source: "./media/characters/dominic/back.svg",
  8578. extra: 1745 / 1620,
  8579. bottom: 0.065
  8580. }
  8581. },
  8582. },
  8583. [
  8584. {
  8585. name: "Nano",
  8586. height: math.unit(0.1, "mm")
  8587. },
  8588. {
  8589. name: "Micro-",
  8590. height: math.unit(1, "mm")
  8591. },
  8592. {
  8593. name: "Micro",
  8594. height: math.unit(4, "inches")
  8595. },
  8596. {
  8597. name: "Normal",
  8598. height: math.unit(6 + 4 / 12, "feet"),
  8599. default: true
  8600. },
  8601. {
  8602. name: "Macro",
  8603. height: math.unit(115, "feet")
  8604. },
  8605. {
  8606. name: "Macro+",
  8607. height: math.unit(955, "feet")
  8608. },
  8609. {
  8610. name: "Megamacro",
  8611. height: math.unit(8990, "feet")
  8612. },
  8613. {
  8614. name: "Gigmacro",
  8615. height: math.unit(9310, "miles")
  8616. },
  8617. {
  8618. name: "Teramacro",
  8619. height: math.unit(1567005010, "miles")
  8620. },
  8621. {
  8622. name: "Examacro",
  8623. height: math.unit(1425, "parsecs")
  8624. },
  8625. ]
  8626. ))
  8627. characterMakers.push(() => makeCharacter(
  8628. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8629. {
  8630. front: {
  8631. height: math.unit(400, "feet"),
  8632. weight: math.unit(44444444, "lb"),
  8633. name: "Front",
  8634. image: {
  8635. source: "./media/characters/major-colonel/front.svg"
  8636. }
  8637. },
  8638. back: {
  8639. height: math.unit(400, "feet"),
  8640. weight: math.unit(44444444, "lb"),
  8641. name: "Back",
  8642. image: {
  8643. source: "./media/characters/major-colonel/back.svg"
  8644. }
  8645. },
  8646. },
  8647. [
  8648. {
  8649. name: "Macro",
  8650. height: math.unit(400, "feet"),
  8651. default: true
  8652. },
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8657. {
  8658. catFront: {
  8659. height: math.unit(6, "feet"),
  8660. weight: math.unit(120, "lb"),
  8661. name: "Front (Cat Side)",
  8662. image: {
  8663. source: "./media/characters/axel-lycan/cat-front.svg",
  8664. extra: 430 / 402,
  8665. bottom: 43 / 472.35
  8666. }
  8667. },
  8668. catBack: {
  8669. height: math.unit(6, "feet"),
  8670. weight: math.unit(120, "lb"),
  8671. name: "Back (Cat Side)",
  8672. image: {
  8673. source: "./media/characters/axel-lycan/cat-back.svg",
  8674. extra: 447 / 419,
  8675. bottom: 23.3 / 469
  8676. }
  8677. },
  8678. wolfFront: {
  8679. height: math.unit(6, "feet"),
  8680. weight: math.unit(120, "lb"),
  8681. name: "Front (Wolf Side)",
  8682. image: {
  8683. source: "./media/characters/axel-lycan/wolf-front.svg",
  8684. extra: 485 / 456,
  8685. bottom: 19 / 504
  8686. }
  8687. },
  8688. wolfBack: {
  8689. height: math.unit(6, "feet"),
  8690. weight: math.unit(120, "lb"),
  8691. name: "Back (Wolf Side)",
  8692. image: {
  8693. source: "./media/characters/axel-lycan/wolf-back.svg",
  8694. extra: 475 / 438,
  8695. bottom: 39.2 / 514
  8696. }
  8697. },
  8698. },
  8699. [
  8700. {
  8701. name: "Macro",
  8702. height: math.unit(1, "km"),
  8703. default: true
  8704. },
  8705. ]
  8706. ))
  8707. characterMakers.push(() => makeCharacter(
  8708. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8709. {
  8710. front: {
  8711. height: math.unit(5 + 9 / 12, "feet"),
  8712. weight: math.unit(175, "lb"),
  8713. name: "Front",
  8714. image: {
  8715. source: "./media/characters/vanrel-hyena/front.svg",
  8716. extra: 1086 / 1010,
  8717. bottom: 0.04
  8718. }
  8719. },
  8720. },
  8721. [
  8722. {
  8723. name: "Normal",
  8724. height: math.unit(5 + 9 / 12, "feet"),
  8725. default: true
  8726. },
  8727. ]
  8728. ))
  8729. characterMakers.push(() => makeCharacter(
  8730. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8731. {
  8732. front: {
  8733. height: math.unit(6, "feet"),
  8734. weight: math.unit(103, "lb"),
  8735. name: "Front",
  8736. image: {
  8737. source: "./media/characters/abbott-absol/front.svg",
  8738. extra: 2010 / 1842
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Megamicro",
  8745. height: math.unit(0.1, "mm")
  8746. },
  8747. {
  8748. name: "Micro",
  8749. height: math.unit(1, "inch")
  8750. },
  8751. {
  8752. name: "Normal",
  8753. height: math.unit(6, "feet"),
  8754. default: true
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(6, "feet"),
  8763. weight: math.unit(264, "lb"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/hector/front.svg",
  8767. extra: 2280 / 2130,
  8768. bottom: 0.07
  8769. }
  8770. },
  8771. },
  8772. [
  8773. {
  8774. name: "Normal",
  8775. height: math.unit(12.25, "foot"),
  8776. default: true
  8777. },
  8778. {
  8779. name: "Macro",
  8780. height: math.unit(160, "feet")
  8781. },
  8782. ]
  8783. ))
  8784. characterMakers.push(() => makeCharacter(
  8785. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8786. {
  8787. front: {
  8788. height: math.unit(6, "feet"),
  8789. weight: math.unit(150, "lb"),
  8790. name: "Front",
  8791. image: {
  8792. source: "./media/characters/sal/front.svg",
  8793. extra: 1846 / 1699,
  8794. bottom: 0.04
  8795. }
  8796. },
  8797. },
  8798. [
  8799. {
  8800. name: "Megamacro",
  8801. height: math.unit(10, "miles"),
  8802. default: true
  8803. },
  8804. ]
  8805. ))
  8806. characterMakers.push(() => makeCharacter(
  8807. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8808. {
  8809. front: {
  8810. height: math.unit(3, "meters"),
  8811. weight: math.unit(450, "kg"),
  8812. name: "front",
  8813. image: {
  8814. source: "./media/characters/ranger/front.svg",
  8815. extra: 2401 / 2243,
  8816. bottom: 0.05
  8817. }
  8818. },
  8819. },
  8820. [
  8821. {
  8822. name: "Normal",
  8823. height: math.unit(3, "meters"),
  8824. default: true
  8825. },
  8826. ]
  8827. ))
  8828. characterMakers.push(() => makeCharacter(
  8829. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8830. {
  8831. front: {
  8832. height: math.unit(14, "feet"),
  8833. weight: math.unit(800, "kg"),
  8834. name: "Front",
  8835. image: {
  8836. source: "./media/characters/theresa/front.svg",
  8837. extra: 3575 / 3346,
  8838. bottom: 0.03
  8839. }
  8840. },
  8841. },
  8842. [
  8843. {
  8844. name: "Normal",
  8845. height: math.unit(14, "feet"),
  8846. default: true
  8847. },
  8848. ]
  8849. ))
  8850. characterMakers.push(() => makeCharacter(
  8851. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8852. {
  8853. front: {
  8854. height: math.unit(6, "feet"),
  8855. weight: math.unit(3, "kg"),
  8856. name: "Front",
  8857. image: {
  8858. source: "./media/characters/ine/front.svg",
  8859. extra: 678 / 539,
  8860. bottom: 0.023
  8861. }
  8862. },
  8863. },
  8864. [
  8865. {
  8866. name: "Normal",
  8867. height: math.unit(2.265, "feet"),
  8868. default: true
  8869. },
  8870. ]
  8871. ))
  8872. characterMakers.push(() => makeCharacter(
  8873. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8874. {
  8875. front: {
  8876. height: math.unit(5, "feet"),
  8877. weight: math.unit(30, "kg"),
  8878. name: "Front",
  8879. image: {
  8880. source: "./media/characters/vial/front.svg",
  8881. extra: 1365 / 1277,
  8882. bottom: 0.04
  8883. }
  8884. },
  8885. },
  8886. [
  8887. {
  8888. name: "Normal",
  8889. height: math.unit(5, "feet"),
  8890. default: true
  8891. },
  8892. ]
  8893. ))
  8894. characterMakers.push(() => makeCharacter(
  8895. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8896. {
  8897. side: {
  8898. height: math.unit(3.4, "meters"),
  8899. weight: math.unit(1000, "lb"),
  8900. name: "Side",
  8901. image: {
  8902. source: "./media/characters/rovoska/side.svg",
  8903. extra: 4403 / 1515
  8904. }
  8905. },
  8906. },
  8907. [
  8908. {
  8909. name: "Normal",
  8910. height: math.unit(3.4, "meters"),
  8911. default: true
  8912. },
  8913. ]
  8914. ))
  8915. characterMakers.push(() => makeCharacter(
  8916. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8917. {
  8918. front: {
  8919. height: math.unit(8, "feet"),
  8920. weight: math.unit(315, "lb"),
  8921. name: "Front",
  8922. image: {
  8923. source: "./media/characters/gunner-rotthbauer/front.svg"
  8924. }
  8925. },
  8926. back: {
  8927. height: math.unit(8, "feet"),
  8928. weight: math.unit(315, "lb"),
  8929. name: "Back",
  8930. image: {
  8931. source: "./media/characters/gunner-rotthbauer/back.svg"
  8932. }
  8933. },
  8934. },
  8935. [
  8936. {
  8937. name: "Micro",
  8938. height: math.unit(3.5, "inches")
  8939. },
  8940. {
  8941. name: "Normal",
  8942. height: math.unit(8, "feet"),
  8943. default: true
  8944. },
  8945. {
  8946. name: "Macro",
  8947. height: math.unit(250, "feet")
  8948. },
  8949. {
  8950. name: "Megamacro",
  8951. height: math.unit(1, "AU")
  8952. },
  8953. ]
  8954. ))
  8955. characterMakers.push(() => makeCharacter(
  8956. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8957. {
  8958. front: {
  8959. height: math.unit(5 + 5 / 12, "feet"),
  8960. weight: math.unit(140, "lb"),
  8961. name: "Front",
  8962. image: {
  8963. source: "./media/characters/allatia/front.svg",
  8964. extra: 1227 / 1180,
  8965. bottom: 0.027
  8966. }
  8967. },
  8968. },
  8969. [
  8970. {
  8971. name: "Normal",
  8972. height: math.unit(5 + 5 / 12, "feet")
  8973. },
  8974. {
  8975. name: "Macro",
  8976. height: math.unit(250, "feet"),
  8977. default: true
  8978. },
  8979. {
  8980. name: "Megamacro",
  8981. height: math.unit(8, "miles")
  8982. }
  8983. ]
  8984. ))
  8985. characterMakers.push(() => makeCharacter(
  8986. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8987. {
  8988. front: {
  8989. height: math.unit(6, "feet"),
  8990. weight: math.unit(120, "lb"),
  8991. name: "Front",
  8992. image: {
  8993. source: "./media/characters/tene/front.svg",
  8994. extra: 1728 / 1578,
  8995. bottom: 0.022
  8996. }
  8997. },
  8998. stomping: {
  8999. height: math.unit(2.025, "meters"),
  9000. weight: math.unit(120, "lb"),
  9001. name: "Stomping",
  9002. image: {
  9003. source: "./media/characters/tene/stomping.svg",
  9004. extra: 938 / 873,
  9005. bottom: 0.01
  9006. }
  9007. },
  9008. sitting: {
  9009. height: math.unit(1, "meter"),
  9010. weight: math.unit(120, "lb"),
  9011. name: "Sitting",
  9012. image: {
  9013. source: "./media/characters/tene/sitting.svg",
  9014. extra: 437 / 415,
  9015. bottom: 0.1
  9016. }
  9017. },
  9018. feral: {
  9019. height: math.unit(3.9, "feet"),
  9020. weight: math.unit(250, "lb"),
  9021. name: "Feral",
  9022. image: {
  9023. source: "./media/characters/tene/feral.svg",
  9024. extra: 717 / 458,
  9025. bottom: 0.179
  9026. }
  9027. },
  9028. },
  9029. [
  9030. {
  9031. name: "Normal",
  9032. height: math.unit(6, "feet")
  9033. },
  9034. {
  9035. name: "Macro",
  9036. height: math.unit(300, "feet"),
  9037. default: true
  9038. },
  9039. {
  9040. name: "Megamacro",
  9041. height: math.unit(5, "miles")
  9042. },
  9043. ]
  9044. ))
  9045. characterMakers.push(() => makeCharacter(
  9046. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9047. {
  9048. side: {
  9049. height: math.unit(6, "feet"),
  9050. name: "Side",
  9051. image: {
  9052. source: "./media/characters/evander/side.svg",
  9053. extra: 877 / 477
  9054. }
  9055. },
  9056. },
  9057. [
  9058. {
  9059. name: "Normal",
  9060. height: math.unit(0.83, "meters"),
  9061. default: true
  9062. },
  9063. ]
  9064. ))
  9065. characterMakers.push(() => makeCharacter(
  9066. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9067. {
  9068. front: {
  9069. height: math.unit(12, "feet"),
  9070. weight: math.unit(1000, "lb"),
  9071. name: "Front",
  9072. image: {
  9073. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9074. extra: 1762 / 1611
  9075. }
  9076. },
  9077. back: {
  9078. height: math.unit(12, "feet"),
  9079. weight: math.unit(1000, "lb"),
  9080. name: "Back",
  9081. image: {
  9082. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9083. extra: 1762 / 1611
  9084. }
  9085. },
  9086. },
  9087. [
  9088. {
  9089. name: "Normal",
  9090. height: math.unit(12, "feet"),
  9091. default: true
  9092. },
  9093. {
  9094. name: "Kaiju",
  9095. height: math.unit(150, "feet")
  9096. },
  9097. ]
  9098. ))
  9099. characterMakers.push(() => makeCharacter(
  9100. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9101. {
  9102. front: {
  9103. height: math.unit(6, "feet"),
  9104. weight: math.unit(150, "lb"),
  9105. name: "Front",
  9106. image: {
  9107. source: "./media/characters/zero-alurus/front.svg"
  9108. }
  9109. },
  9110. back: {
  9111. height: math.unit(6, "feet"),
  9112. weight: math.unit(150, "lb"),
  9113. name: "Back",
  9114. image: {
  9115. source: "./media/characters/zero-alurus/back.svg"
  9116. }
  9117. },
  9118. },
  9119. [
  9120. {
  9121. name: "Normal",
  9122. height: math.unit(5 + 10 / 12, "feet")
  9123. },
  9124. {
  9125. name: "Macro",
  9126. height: math.unit(60, "feet"),
  9127. default: true
  9128. },
  9129. {
  9130. name: "Macro+",
  9131. height: math.unit(450, "feet")
  9132. },
  9133. ]
  9134. ))
  9135. characterMakers.push(() => makeCharacter(
  9136. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9137. {
  9138. front: {
  9139. height: math.unit(6, "feet"),
  9140. weight: math.unit(200, "lb"),
  9141. name: "Front",
  9142. image: {
  9143. source: "./media/characters/mega-shi/front.svg",
  9144. extra: 1279 / 1250,
  9145. bottom: 0.02
  9146. }
  9147. },
  9148. back: {
  9149. height: math.unit(6, "feet"),
  9150. weight: math.unit(200, "lb"),
  9151. name: "Back",
  9152. image: {
  9153. source: "./media/characters/mega-shi/back.svg",
  9154. extra: 1279 / 1250,
  9155. bottom: 0.02
  9156. }
  9157. },
  9158. },
  9159. [
  9160. {
  9161. name: "Micro",
  9162. height: math.unit(16 + 6 / 12, "feet")
  9163. },
  9164. {
  9165. name: "Third Dimension",
  9166. height: math.unit(40, "meters")
  9167. },
  9168. {
  9169. name: "Normal",
  9170. height: math.unit(660, "feet"),
  9171. default: true
  9172. },
  9173. {
  9174. name: "Megamacro",
  9175. height: math.unit(10, "miles")
  9176. },
  9177. {
  9178. name: "Planetary Launch",
  9179. height: math.unit(500, "miles")
  9180. },
  9181. {
  9182. name: "Interstellar",
  9183. height: math.unit(1e9, "miles")
  9184. },
  9185. {
  9186. name: "Leaving the Universe",
  9187. height: math.unit(1, "gigaparsec")
  9188. },
  9189. {
  9190. name: "Travelling Universes",
  9191. height: math.unit(30e15, "parsecs")
  9192. },
  9193. ]
  9194. ))
  9195. characterMakers.push(() => makeCharacter(
  9196. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9197. {
  9198. front: {
  9199. height: math.unit(6, "feet"),
  9200. weight: math.unit(150, "lb"),
  9201. name: "Front",
  9202. image: {
  9203. source: "./media/characters/odyssey/front.svg",
  9204. extra: 1782 / 1582,
  9205. bottom: 0.01
  9206. }
  9207. },
  9208. side: {
  9209. height: math.unit(5.7, "feet"),
  9210. weight: math.unit(140, "lb"),
  9211. name: "Side",
  9212. image: {
  9213. source: "./media/characters/odyssey/side.svg",
  9214. extra: 6462 / 5700
  9215. }
  9216. },
  9217. },
  9218. [
  9219. {
  9220. name: "Normal",
  9221. height: math.unit(5 + 4 / 12, "feet")
  9222. },
  9223. {
  9224. name: "Macro",
  9225. height: math.unit(1, "km")
  9226. },
  9227. {
  9228. name: "Megamacro",
  9229. height: math.unit(3000, "km")
  9230. },
  9231. {
  9232. name: "Gigamacro",
  9233. height: math.unit(1, "AU"),
  9234. default: true
  9235. },
  9236. {
  9237. name: "Omniversal",
  9238. height: math.unit(100e14, "lightyears")
  9239. },
  9240. ]
  9241. ))
  9242. characterMakers.push(() => makeCharacter(
  9243. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9244. {
  9245. front: {
  9246. height: math.unit(6, "feet"),
  9247. weight: math.unit(300, "lb"),
  9248. name: "Front",
  9249. image: {
  9250. source: "./media/characters/mekuto/front.svg",
  9251. extra: 921 / 832,
  9252. bottom: 0.03
  9253. }
  9254. },
  9255. hand: {
  9256. height: math.unit(6 / 10.24, "feet"),
  9257. name: "Hand",
  9258. image: {
  9259. source: "./media/characters/mekuto/hand.svg"
  9260. }
  9261. },
  9262. foot: {
  9263. height: math.unit(6 / 5.05, "feet"),
  9264. name: "Foot",
  9265. image: {
  9266. source: "./media/characters/mekuto/foot.svg"
  9267. }
  9268. },
  9269. },
  9270. [
  9271. {
  9272. name: "Minimicro",
  9273. height: math.unit(0.2, "inches")
  9274. },
  9275. {
  9276. name: "Micro",
  9277. height: math.unit(1.5, "inches")
  9278. },
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(5 + 11 / 12, "feet"),
  9282. default: true
  9283. },
  9284. {
  9285. name: "Minimacro",
  9286. height: math.unit(17 + 9 / 12, "feet")
  9287. },
  9288. {
  9289. name: "Macro",
  9290. height: math.unit(177.5, "feet")
  9291. },
  9292. {
  9293. name: "Megamacro",
  9294. height: math.unit(152, "miles")
  9295. },
  9296. ]
  9297. ))
  9298. characterMakers.push(() => makeCharacter(
  9299. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9300. {
  9301. front: {
  9302. height: math.unit(6.5, "inches"),
  9303. weight: math.unit(13, "oz"),
  9304. name: "Front",
  9305. image: {
  9306. source: "./media/characters/dafydd-tomos/front.svg",
  9307. extra: 2990 / 2603,
  9308. bottom: 0.03
  9309. }
  9310. },
  9311. },
  9312. [
  9313. {
  9314. name: "Micro",
  9315. height: math.unit(6.5, "inches"),
  9316. default: true
  9317. },
  9318. ]
  9319. ))
  9320. characterMakers.push(() => makeCharacter(
  9321. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9322. {
  9323. front: {
  9324. height: math.unit(6, "feet"),
  9325. weight: math.unit(150, "lb"),
  9326. name: "Front",
  9327. image: {
  9328. source: "./media/characters/splinter/front.svg",
  9329. extra: 2990 / 2882,
  9330. bottom: 0.04
  9331. }
  9332. },
  9333. back: {
  9334. height: math.unit(6, "feet"),
  9335. weight: math.unit(150, "lb"),
  9336. name: "Back",
  9337. image: {
  9338. source: "./media/characters/splinter/back.svg",
  9339. extra: 2990 / 2882,
  9340. bottom: 0.04
  9341. }
  9342. },
  9343. },
  9344. [
  9345. {
  9346. name: "Normal",
  9347. height: math.unit(6, "feet")
  9348. },
  9349. {
  9350. name: "Macro",
  9351. height: math.unit(230, "meters"),
  9352. default: true
  9353. },
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9358. {
  9359. front: {
  9360. height: math.unit(4 + 10 / 12, "feet"),
  9361. weight: math.unit(480, "lb"),
  9362. name: "Front",
  9363. image: {
  9364. source: "./media/characters/snow-gabumon/front.svg",
  9365. extra: 1140 / 963,
  9366. bottom: 0.058
  9367. }
  9368. },
  9369. back: {
  9370. height: math.unit(4 + 10 / 12, "feet"),
  9371. weight: math.unit(480, "lb"),
  9372. name: "Back",
  9373. image: {
  9374. source: "./media/characters/snow-gabumon/back.svg",
  9375. extra: 1115 / 962,
  9376. bottom: 0.041
  9377. }
  9378. },
  9379. frontUndresed: {
  9380. height: math.unit(4 + 10 / 12, "feet"),
  9381. weight: math.unit(480, "lb"),
  9382. name: "Front (Undressed)",
  9383. image: {
  9384. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9385. extra: 1061 / 960,
  9386. bottom: 0.045
  9387. }
  9388. },
  9389. },
  9390. [
  9391. {
  9392. name: "Micro",
  9393. height: math.unit(1, "inch")
  9394. },
  9395. {
  9396. name: "Normal",
  9397. height: math.unit(4 + 10 / 12, "feet"),
  9398. default: true
  9399. },
  9400. {
  9401. name: "Macro",
  9402. height: math.unit(200, "feet")
  9403. },
  9404. {
  9405. name: "Megamacro",
  9406. height: math.unit(120, "miles")
  9407. },
  9408. {
  9409. name: "Gigamacro",
  9410. height: math.unit(9800, "miles")
  9411. },
  9412. ]
  9413. ))
  9414. characterMakers.push(() => makeCharacter(
  9415. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9416. {
  9417. front: {
  9418. height: math.unit(1.7, "meters"),
  9419. weight: math.unit(140, "lb"),
  9420. name: "Front",
  9421. image: {
  9422. source: "./media/characters/moody/front.svg",
  9423. extra: 3226 / 3007,
  9424. bottom: 0.087
  9425. }
  9426. },
  9427. },
  9428. [
  9429. {
  9430. name: "Micro",
  9431. height: math.unit(1, "mm")
  9432. },
  9433. {
  9434. name: "Normal",
  9435. height: math.unit(1.7, "meters"),
  9436. default: true
  9437. },
  9438. {
  9439. name: "Macro",
  9440. height: math.unit(80, "meters")
  9441. },
  9442. {
  9443. name: "Macro+",
  9444. height: math.unit(500, "meters")
  9445. },
  9446. ]
  9447. ))
  9448. characterMakers.push(() => makeCharacter(
  9449. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9450. {
  9451. front: {
  9452. height: math.unit(6, "feet"),
  9453. weight: math.unit(150, "lb"),
  9454. name: "Front",
  9455. image: {
  9456. source: "./media/characters/zyas/front.svg",
  9457. extra: 1180 / 1120,
  9458. bottom: 0.045
  9459. }
  9460. },
  9461. },
  9462. [
  9463. {
  9464. name: "Normal",
  9465. height: math.unit(10, "feet"),
  9466. default: true
  9467. },
  9468. {
  9469. name: "Macro",
  9470. height: math.unit(500, "feet")
  9471. },
  9472. {
  9473. name: "Megamacro",
  9474. height: math.unit(5, "miles")
  9475. },
  9476. {
  9477. name: "Teramacro",
  9478. height: math.unit(150000, "miles")
  9479. },
  9480. ]
  9481. ))
  9482. characterMakers.push(() => makeCharacter(
  9483. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9484. {
  9485. front: {
  9486. height: math.unit(6, "feet"),
  9487. weight: math.unit(150, "lb"),
  9488. name: "Front",
  9489. image: {
  9490. source: "./media/characters/cuon/front.svg",
  9491. extra: 1390 / 1320,
  9492. bottom: 0.008
  9493. }
  9494. },
  9495. },
  9496. [
  9497. {
  9498. name: "Micro",
  9499. height: math.unit(3, "inches")
  9500. },
  9501. {
  9502. name: "Normal",
  9503. height: math.unit(18 + 9 / 12, "feet"),
  9504. default: true
  9505. },
  9506. {
  9507. name: "Macro",
  9508. height: math.unit(360, "feet")
  9509. },
  9510. {
  9511. name: "Megamacro",
  9512. height: math.unit(360, "miles")
  9513. },
  9514. ]
  9515. ))
  9516. characterMakers.push(() => makeCharacter(
  9517. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9518. {
  9519. front: {
  9520. height: math.unit(2.4, "meters"),
  9521. weight: math.unit(70, "kg"),
  9522. name: "Front",
  9523. image: {
  9524. source: "./media/characters/nyanuxk/front.svg",
  9525. extra: 1172 / 1084,
  9526. bottom: 0.065
  9527. }
  9528. },
  9529. side: {
  9530. height: math.unit(2.4, "meters"),
  9531. weight: math.unit(70, "kg"),
  9532. name: "Side",
  9533. image: {
  9534. source: "./media/characters/nyanuxk/side.svg",
  9535. extra: 1190 / 1132,
  9536. bottom: 0.007
  9537. }
  9538. },
  9539. back: {
  9540. height: math.unit(2.4, "meters"),
  9541. weight: math.unit(70, "kg"),
  9542. name: "Back",
  9543. image: {
  9544. source: "./media/characters/nyanuxk/back.svg",
  9545. extra: 1200 / 1141,
  9546. bottom: 0.015
  9547. }
  9548. },
  9549. foot: {
  9550. height: math.unit(0.52, "meters"),
  9551. name: "Foot",
  9552. image: {
  9553. source: "./media/characters/nyanuxk/foot.svg"
  9554. }
  9555. },
  9556. },
  9557. [
  9558. {
  9559. name: "Micro",
  9560. height: math.unit(2, "cm")
  9561. },
  9562. {
  9563. name: "Normal",
  9564. height: math.unit(2.4, "meters"),
  9565. default: true
  9566. },
  9567. {
  9568. name: "Smaller Macro",
  9569. height: math.unit(120, "meters")
  9570. },
  9571. {
  9572. name: "Bigger Macro",
  9573. height: math.unit(1.2, "km")
  9574. },
  9575. {
  9576. name: "Megamacro",
  9577. height: math.unit(15, "kilometers")
  9578. },
  9579. {
  9580. name: "Gigamacro",
  9581. height: math.unit(2000, "km")
  9582. },
  9583. {
  9584. name: "Teramacro",
  9585. height: math.unit(500000, "km")
  9586. },
  9587. ]
  9588. ))
  9589. characterMakers.push(() => makeCharacter(
  9590. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9591. {
  9592. side: {
  9593. height: math.unit(6, "feet"),
  9594. name: "Side",
  9595. image: {
  9596. source: "./media/characters/ailbhe/side.svg",
  9597. extra: 757 / 464,
  9598. bottom: 0.041
  9599. }
  9600. },
  9601. },
  9602. [
  9603. {
  9604. name: "Normal",
  9605. height: math.unit(1.07, "meters"),
  9606. default: true
  9607. },
  9608. ]
  9609. ))
  9610. characterMakers.push(() => makeCharacter(
  9611. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9612. {
  9613. front: {
  9614. height: math.unit(6, "feet"),
  9615. weight: math.unit(120, "kg"),
  9616. name: "Front",
  9617. image: {
  9618. source: "./media/characters/zevulfius/front.svg",
  9619. extra: 965 / 903
  9620. }
  9621. },
  9622. side: {
  9623. height: math.unit(6, "feet"),
  9624. weight: math.unit(120, "kg"),
  9625. name: "Side",
  9626. image: {
  9627. source: "./media/characters/zevulfius/side.svg",
  9628. extra: 939 / 900
  9629. }
  9630. },
  9631. back: {
  9632. height: math.unit(6, "feet"),
  9633. weight: math.unit(120, "kg"),
  9634. name: "Back",
  9635. image: {
  9636. source: "./media/characters/zevulfius/back.svg",
  9637. extra: 918 / 854,
  9638. bottom: 0.005
  9639. }
  9640. },
  9641. foot: {
  9642. height: math.unit(6 / 3.72, "feet"),
  9643. name: "Foot",
  9644. image: {
  9645. source: "./media/characters/zevulfius/foot.svg"
  9646. }
  9647. },
  9648. },
  9649. [
  9650. {
  9651. name: "Macro",
  9652. height: math.unit(750, "meters")
  9653. },
  9654. {
  9655. name: "Megamacro",
  9656. height: math.unit(20, "km"),
  9657. default: true
  9658. },
  9659. {
  9660. name: "Gigamacro",
  9661. height: math.unit(2000, "km")
  9662. },
  9663. {
  9664. name: "Teramacro",
  9665. height: math.unit(250000, "km")
  9666. },
  9667. ]
  9668. ))
  9669. characterMakers.push(() => makeCharacter(
  9670. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9671. {
  9672. front: {
  9673. height: math.unit(100, "feet"),
  9674. weight: math.unit(350, "kg"),
  9675. name: "Front",
  9676. image: {
  9677. source: "./media/characters/rikes/front.svg",
  9678. extra: 1565 / 1483,
  9679. bottom: 0.017
  9680. }
  9681. },
  9682. },
  9683. [
  9684. {
  9685. name: "Macro",
  9686. height: math.unit(100, "feet"),
  9687. default: true
  9688. },
  9689. ]
  9690. ))
  9691. characterMakers.push(() => makeCharacter(
  9692. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9693. {
  9694. anthro: {
  9695. height: math.unit(8, "feet"),
  9696. weight: math.unit(120, "kg"),
  9697. name: "Anthro",
  9698. image: {
  9699. source: "./media/characters/adam-silver-mane/anthro.svg",
  9700. extra: 5743 / 5339,
  9701. bottom: 0.07
  9702. }
  9703. },
  9704. taur: {
  9705. height: math.unit(16, "feet"),
  9706. weight: math.unit(1500, "kg"),
  9707. name: "Taur",
  9708. image: {
  9709. source: "./media/characters/adam-silver-mane/taur.svg",
  9710. extra: 1713 / 1571,
  9711. bottom: 0.01
  9712. }
  9713. },
  9714. },
  9715. [
  9716. {
  9717. name: "Normal",
  9718. height: math.unit(8, "feet")
  9719. },
  9720. {
  9721. name: "Minimacro",
  9722. height: math.unit(80, "feet")
  9723. },
  9724. {
  9725. name: "Macro",
  9726. height: math.unit(800, "feet"),
  9727. default: true
  9728. },
  9729. {
  9730. name: "Megamacro",
  9731. height: math.unit(8000, "feet")
  9732. },
  9733. {
  9734. name: "Gigamacro",
  9735. height: math.unit(800, "miles")
  9736. },
  9737. {
  9738. name: "Teramacro",
  9739. height: math.unit(80000, "miles")
  9740. },
  9741. {
  9742. name: "Celestial",
  9743. height: math.unit(8e6, "miles")
  9744. },
  9745. {
  9746. name: "Star Dragon",
  9747. height: math.unit(800000, "parsecs")
  9748. },
  9749. {
  9750. name: "Godly",
  9751. height: math.unit(800, "teraparsecs")
  9752. },
  9753. ]
  9754. ))
  9755. characterMakers.push(() => makeCharacter(
  9756. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9757. {
  9758. front: {
  9759. height: math.unit(6, "feet"),
  9760. weight: math.unit(150, "lb"),
  9761. name: "Front",
  9762. image: {
  9763. source: "./media/characters/ky'owin/front.svg",
  9764. extra: 3888 / 3068,
  9765. bottom: 0.015
  9766. }
  9767. },
  9768. },
  9769. [
  9770. {
  9771. name: "Normal",
  9772. height: math.unit(6 + 8 / 12, "feet")
  9773. },
  9774. {
  9775. name: "Large",
  9776. height: math.unit(68, "feet")
  9777. },
  9778. {
  9779. name: "Macro",
  9780. height: math.unit(132, "feet")
  9781. },
  9782. {
  9783. name: "Macro+",
  9784. height: math.unit(340, "feet")
  9785. },
  9786. {
  9787. name: "Macro++",
  9788. height: math.unit(680, "feet"),
  9789. default: true
  9790. },
  9791. {
  9792. name: "Megamacro",
  9793. height: math.unit(1, "mile")
  9794. },
  9795. {
  9796. name: "Megamacro+",
  9797. height: math.unit(10, "miles")
  9798. },
  9799. ]
  9800. ))
  9801. characterMakers.push(() => makeCharacter(
  9802. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9803. {
  9804. front: {
  9805. height: math.unit(4, "feet"),
  9806. weight: math.unit(50, "lb"),
  9807. name: "Front",
  9808. image: {
  9809. source: "./media/characters/mal/front.svg",
  9810. extra: 785 / 724,
  9811. bottom: 0.07
  9812. }
  9813. },
  9814. },
  9815. [
  9816. {
  9817. name: "Micro",
  9818. height: math.unit(4, "inches")
  9819. },
  9820. {
  9821. name: "Normal",
  9822. height: math.unit(4, "feet"),
  9823. default: true
  9824. },
  9825. {
  9826. name: "Macro",
  9827. height: math.unit(200, "feet")
  9828. },
  9829. ]
  9830. ))
  9831. characterMakers.push(() => makeCharacter(
  9832. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9833. {
  9834. front: {
  9835. height: math.unit(6, "feet"),
  9836. weight: math.unit(150, "lb"),
  9837. name: "Front",
  9838. image: {
  9839. source: "./media/characters/jordan-deware/front.svg",
  9840. extra: 1191 / 1012
  9841. }
  9842. },
  9843. },
  9844. [
  9845. {
  9846. name: "Nano",
  9847. height: math.unit(0.01, "mm")
  9848. },
  9849. {
  9850. name: "Minimicro",
  9851. height: math.unit(1, "mm")
  9852. },
  9853. {
  9854. name: "Micro",
  9855. height: math.unit(0.5, "inches")
  9856. },
  9857. {
  9858. name: "Normal",
  9859. height: math.unit(4, "feet"),
  9860. default: true
  9861. },
  9862. {
  9863. name: "Minimacro",
  9864. height: math.unit(40, "meters")
  9865. },
  9866. {
  9867. name: "Small Macro",
  9868. height: math.unit(400, "meters")
  9869. },
  9870. {
  9871. name: "Macro",
  9872. height: math.unit(4, "miles")
  9873. },
  9874. {
  9875. name: "Megamacro",
  9876. height: math.unit(40, "miles")
  9877. },
  9878. {
  9879. name: "Megamacro+",
  9880. height: math.unit(400, "miles")
  9881. },
  9882. {
  9883. name: "Gigamacro",
  9884. height: math.unit(400000, "miles")
  9885. },
  9886. ]
  9887. ))
  9888. characterMakers.push(() => makeCharacter(
  9889. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9890. {
  9891. side: {
  9892. height: math.unit(6, "feet"),
  9893. weight: math.unit(150, "lb"),
  9894. name: "Side",
  9895. image: {
  9896. source: "./media/characters/kimiko/side.svg",
  9897. extra: 600 / 358
  9898. }
  9899. },
  9900. },
  9901. [
  9902. {
  9903. name: "Normal",
  9904. height: math.unit(15, "feet"),
  9905. default: true
  9906. },
  9907. {
  9908. name: "Macro",
  9909. height: math.unit(220, "feet")
  9910. },
  9911. {
  9912. name: "Macro+",
  9913. height: math.unit(1450, "feet")
  9914. },
  9915. {
  9916. name: "Megamacro",
  9917. height: math.unit(11500, "feet")
  9918. },
  9919. {
  9920. name: "Gigamacro",
  9921. height: math.unit(9500, "miles")
  9922. },
  9923. {
  9924. name: "Teramacro",
  9925. height: math.unit(2208005005, "miles")
  9926. },
  9927. {
  9928. name: "Examacro",
  9929. height: math.unit(2750, "parsecs")
  9930. },
  9931. {
  9932. name: "Zettamacro",
  9933. height: math.unit(101500, "parsecs")
  9934. },
  9935. ]
  9936. ))
  9937. characterMakers.push(() => makeCharacter(
  9938. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9939. {
  9940. front: {
  9941. height: math.unit(6, "feet"),
  9942. weight: math.unit(70, "kg"),
  9943. name: "Front",
  9944. image: {
  9945. source: "./media/characters/andrew-sleepy/front.svg"
  9946. }
  9947. },
  9948. side: {
  9949. height: math.unit(6, "feet"),
  9950. weight: math.unit(70, "kg"),
  9951. name: "Side",
  9952. image: {
  9953. source: "./media/characters/andrew-sleepy/side.svg"
  9954. }
  9955. },
  9956. },
  9957. [
  9958. {
  9959. name: "Micro",
  9960. height: math.unit(1, "mm"),
  9961. default: true
  9962. },
  9963. ]
  9964. ))
  9965. characterMakers.push(() => makeCharacter(
  9966. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9967. {
  9968. front: {
  9969. height: math.unit(6, "feet"),
  9970. weight: math.unit(150, "lb"),
  9971. name: "Front",
  9972. image: {
  9973. source: "./media/characters/judio/front.svg",
  9974. extra: 1258 / 1110
  9975. }
  9976. },
  9977. },
  9978. [
  9979. {
  9980. name: "Normal",
  9981. height: math.unit(5 + 6 / 12, "feet")
  9982. },
  9983. {
  9984. name: "Macro",
  9985. height: math.unit(1000, "feet"),
  9986. default: true
  9987. },
  9988. {
  9989. name: "Megamacro",
  9990. height: math.unit(10, "miles")
  9991. },
  9992. ]
  9993. ))
  9994. characterMakers.push(() => makeCharacter(
  9995. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9996. {
  9997. front: {
  9998. height: math.unit(6, "feet"),
  9999. weight: math.unit(68, "kg"),
  10000. name: "Front",
  10001. image: {
  10002. source: "./media/characters/nomaxice/front.svg",
  10003. extra: 1498 / 1073,
  10004. bottom: 0.075
  10005. }
  10006. },
  10007. foot: {
  10008. height: math.unit(1.1, "feet"),
  10009. name: "Foot",
  10010. image: {
  10011. source: "./media/characters/nomaxice/foot.svg"
  10012. }
  10013. },
  10014. },
  10015. [
  10016. {
  10017. name: "Micro",
  10018. height: math.unit(8, "cm")
  10019. },
  10020. {
  10021. name: "Norm",
  10022. height: math.unit(1.82, "m")
  10023. },
  10024. {
  10025. name: "Norm+",
  10026. height: math.unit(8.8, "feet")
  10027. },
  10028. {
  10029. name: "Big",
  10030. height: math.unit(8, "meters"),
  10031. default: true
  10032. },
  10033. {
  10034. name: "Macro",
  10035. height: math.unit(18, "meters")
  10036. },
  10037. {
  10038. name: "Macro+",
  10039. height: math.unit(88, "meters")
  10040. },
  10041. ]
  10042. ))
  10043. characterMakers.push(() => makeCharacter(
  10044. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10045. {
  10046. front: {
  10047. height: math.unit(12, "feet"),
  10048. weight: math.unit(1.5, "tons"),
  10049. name: "Front",
  10050. image: {
  10051. source: "./media/characters/dydros/front.svg",
  10052. extra: 863 / 800,
  10053. bottom: 0.015
  10054. }
  10055. },
  10056. back: {
  10057. height: math.unit(12, "feet"),
  10058. weight: math.unit(1.5, "tons"),
  10059. name: "Back",
  10060. image: {
  10061. source: "./media/characters/dydros/back.svg",
  10062. extra: 900 / 843,
  10063. bottom: 0.005
  10064. }
  10065. },
  10066. },
  10067. [
  10068. {
  10069. name: "Normal",
  10070. height: math.unit(12, "feet"),
  10071. default: true
  10072. },
  10073. ]
  10074. ))
  10075. characterMakers.push(() => makeCharacter(
  10076. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10077. {
  10078. front: {
  10079. height: math.unit(6, "feet"),
  10080. weight: math.unit(100, "kg"),
  10081. name: "Front",
  10082. image: {
  10083. source: "./media/characters/riggi/front.svg",
  10084. extra: 5787 / 5303
  10085. }
  10086. },
  10087. hyper: {
  10088. height: math.unit(6 * 5 / 3, "feet"),
  10089. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10090. name: "Hyper",
  10091. image: {
  10092. source: "./media/characters/riggi/hyper.svg",
  10093. extra: 3595 / 3485
  10094. }
  10095. },
  10096. },
  10097. [
  10098. {
  10099. name: "Small Macro",
  10100. height: math.unit(50, "feet")
  10101. },
  10102. {
  10103. name: "Default",
  10104. height: math.unit(200, "feet"),
  10105. default: true
  10106. },
  10107. {
  10108. name: "Loom",
  10109. height: math.unit(10000, "feet")
  10110. },
  10111. {
  10112. name: "Cruising Altitude",
  10113. height: math.unit(30000, "feet")
  10114. },
  10115. {
  10116. name: "Megamacro",
  10117. height: math.unit(100, "miles")
  10118. },
  10119. {
  10120. name: "Continent Sized",
  10121. height: math.unit(2800, "miles")
  10122. },
  10123. {
  10124. name: "Earth Sized",
  10125. height: math.unit(8000, "miles")
  10126. },
  10127. ]
  10128. ))
  10129. characterMakers.push(() => makeCharacter(
  10130. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10131. {
  10132. front: {
  10133. height: math.unit(6, "feet"),
  10134. weight: math.unit(250, "lb"),
  10135. name: "Front",
  10136. image: {
  10137. source: "./media/characters/alexi/front.svg",
  10138. extra: 3483 / 3291,
  10139. bottom: 0.04
  10140. }
  10141. },
  10142. back: {
  10143. height: math.unit(6, "feet"),
  10144. weight: math.unit(250, "lb"),
  10145. name: "Back",
  10146. image: {
  10147. source: "./media/characters/alexi/back.svg",
  10148. extra: 3533 / 3356,
  10149. bottom: 0.021
  10150. }
  10151. },
  10152. frontTransforming: {
  10153. height: math.unit(8.58, "feet"),
  10154. weight: math.unit(1300, "lb"),
  10155. name: "Transforming",
  10156. image: {
  10157. source: "./media/characters/alexi/front-transforming.svg",
  10158. extra: 437 / 409,
  10159. bottom: 19 / 458.66
  10160. }
  10161. },
  10162. frontTransformed: {
  10163. height: math.unit(12.5, "feet"),
  10164. weight: math.unit(4000, "lb"),
  10165. name: "Transformed",
  10166. image: {
  10167. source: "./media/characters/alexi/front-transformed.svg",
  10168. extra: 639 / 614,
  10169. bottom: 30.55 / 671
  10170. }
  10171. },
  10172. },
  10173. [
  10174. {
  10175. name: "Normal",
  10176. height: math.unit(14, "feet"),
  10177. default: true
  10178. },
  10179. {
  10180. name: "Minimacro",
  10181. height: math.unit(30, "meters")
  10182. },
  10183. {
  10184. name: "Macro",
  10185. height: math.unit(500, "meters")
  10186. },
  10187. {
  10188. name: "Megamacro",
  10189. height: math.unit(9000, "km")
  10190. },
  10191. {
  10192. name: "Teramacro",
  10193. height: math.unit(384000, "km")
  10194. },
  10195. ]
  10196. ))
  10197. characterMakers.push(() => makeCharacter(
  10198. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10199. {
  10200. front: {
  10201. height: math.unit(6, "feet"),
  10202. weight: math.unit(150, "lb"),
  10203. name: "Front",
  10204. image: {
  10205. source: "./media/characters/kayroo/front.svg",
  10206. extra: 1153 / 1038,
  10207. bottom: 0.06
  10208. }
  10209. },
  10210. foot: {
  10211. height: math.unit(6, "feet"),
  10212. weight: math.unit(150, "lb"),
  10213. name: "Foot",
  10214. image: {
  10215. source: "./media/characters/kayroo/foot.svg"
  10216. }
  10217. },
  10218. },
  10219. [
  10220. {
  10221. name: "Normal",
  10222. height: math.unit(8, "feet"),
  10223. default: true
  10224. },
  10225. {
  10226. name: "Minimacro",
  10227. height: math.unit(250, "feet")
  10228. },
  10229. {
  10230. name: "Macro",
  10231. height: math.unit(2800, "feet")
  10232. },
  10233. {
  10234. name: "Megamacro",
  10235. height: math.unit(5200, "feet")
  10236. },
  10237. {
  10238. name: "Gigamacro",
  10239. height: math.unit(27000, "feet")
  10240. },
  10241. {
  10242. name: "Omega",
  10243. height: math.unit(45000, "feet")
  10244. },
  10245. ]
  10246. ))
  10247. characterMakers.push(() => makeCharacter(
  10248. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10249. {
  10250. front: {
  10251. height: math.unit(18, "feet"),
  10252. weight: math.unit(5800, "lb"),
  10253. name: "Front",
  10254. image: {
  10255. source: "./media/characters/rhys/front.svg",
  10256. extra: 3386 / 3090,
  10257. bottom: 0.07
  10258. }
  10259. },
  10260. },
  10261. [
  10262. {
  10263. name: "Normal",
  10264. height: math.unit(18, "feet"),
  10265. default: true
  10266. },
  10267. {
  10268. name: "Working Size",
  10269. height: math.unit(200, "feet")
  10270. },
  10271. {
  10272. name: "Demolition Size",
  10273. height: math.unit(2000, "feet")
  10274. },
  10275. {
  10276. name: "Maximum Licensed Size",
  10277. height: math.unit(5, "miles")
  10278. },
  10279. {
  10280. name: "Maximum Observed Size",
  10281. height: math.unit(10, "yottameters")
  10282. },
  10283. ]
  10284. ))
  10285. characterMakers.push(() => makeCharacter(
  10286. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10287. {
  10288. front: {
  10289. height: math.unit(6, "feet"),
  10290. weight: math.unit(250, "lb"),
  10291. name: "Front",
  10292. image: {
  10293. source: "./media/characters/toto/front.svg",
  10294. extra: 527 / 479,
  10295. bottom: 0.05
  10296. }
  10297. },
  10298. },
  10299. [
  10300. {
  10301. name: "Micro",
  10302. height: math.unit(3, "feet")
  10303. },
  10304. {
  10305. name: "Normal",
  10306. height: math.unit(10, "feet")
  10307. },
  10308. {
  10309. name: "Macro",
  10310. height: math.unit(150, "feet"),
  10311. default: true
  10312. },
  10313. {
  10314. name: "Megamacro",
  10315. height: math.unit(1200, "feet")
  10316. },
  10317. ]
  10318. ))
  10319. characterMakers.push(() => makeCharacter(
  10320. { name: "King", species: ["lion"], tags: ["anthro"] },
  10321. {
  10322. back: {
  10323. height: math.unit(6, "feet"),
  10324. weight: math.unit(150, "lb"),
  10325. name: "Back",
  10326. image: {
  10327. source: "./media/characters/king/back.svg"
  10328. }
  10329. },
  10330. },
  10331. [
  10332. {
  10333. name: "Micro",
  10334. height: math.unit(2, "inches")
  10335. },
  10336. {
  10337. name: "Normal",
  10338. height: math.unit(8, "feet")
  10339. },
  10340. {
  10341. name: "Macro",
  10342. height: math.unit(200, "feet"),
  10343. default: true
  10344. },
  10345. {
  10346. name: "Megamacro",
  10347. height: math.unit(50, "miles")
  10348. },
  10349. ]
  10350. ))
  10351. characterMakers.push(() => makeCharacter(
  10352. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10353. {
  10354. anthro: {
  10355. height: math.unit(6 + 5 / 12, "feet"),
  10356. weight: math.unit(280, "lb"),
  10357. name: "Anthro",
  10358. image: {
  10359. source: "./media/characters/cordite/anthro.svg",
  10360. extra: 1986 / 1905,
  10361. bottom: 0.025
  10362. }
  10363. },
  10364. feral: {
  10365. height: math.unit(2, "feet"),
  10366. weight: math.unit(90, "lb"),
  10367. name: "Feral",
  10368. image: {
  10369. source: "./media/characters/cordite/feral.svg",
  10370. extra: 1260 / 755,
  10371. bottom: 0.05
  10372. }
  10373. },
  10374. },
  10375. [
  10376. {
  10377. name: "Normal",
  10378. height: math.unit(6 + 5 / 12, "feet"),
  10379. default: true
  10380. },
  10381. ]
  10382. ))
  10383. characterMakers.push(() => makeCharacter(
  10384. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10385. {
  10386. front: {
  10387. height: math.unit(6, "feet"),
  10388. weight: math.unit(150, "lb"),
  10389. name: "Front",
  10390. image: {
  10391. source: "./media/characters/pianostrong/front.svg",
  10392. extra: 6577 / 6254,
  10393. bottom: 0.02
  10394. }
  10395. },
  10396. side: {
  10397. height: math.unit(6, "feet"),
  10398. weight: math.unit(150, "lb"),
  10399. name: "Side",
  10400. image: {
  10401. source: "./media/characters/pianostrong/side.svg",
  10402. extra: 6106 / 5730
  10403. }
  10404. },
  10405. back: {
  10406. height: math.unit(6, "feet"),
  10407. weight: math.unit(150, "lb"),
  10408. name: "Back",
  10409. image: {
  10410. source: "./media/characters/pianostrong/back.svg",
  10411. extra: 6085 / 5733,
  10412. bottom: 0.01
  10413. }
  10414. },
  10415. },
  10416. [
  10417. {
  10418. name: "Macro",
  10419. height: math.unit(100, "feet")
  10420. },
  10421. {
  10422. name: "Macro+",
  10423. height: math.unit(300, "feet"),
  10424. default: true
  10425. },
  10426. {
  10427. name: "Macro++",
  10428. height: math.unit(1000, "feet")
  10429. },
  10430. ]
  10431. ))
  10432. characterMakers.push(() => makeCharacter(
  10433. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10434. {
  10435. front: {
  10436. height: math.unit(6, "feet"),
  10437. weight: math.unit(150, "lb"),
  10438. name: "Front",
  10439. image: {
  10440. source: "./media/characters/kona/front.svg",
  10441. extra: 2960 / 2629,
  10442. bottom: 0.005
  10443. }
  10444. },
  10445. },
  10446. [
  10447. {
  10448. name: "Normal",
  10449. height: math.unit(11 + 8 / 12, "feet")
  10450. },
  10451. {
  10452. name: "Macro",
  10453. height: math.unit(850, "feet"),
  10454. default: true
  10455. },
  10456. {
  10457. name: "Macro+",
  10458. height: math.unit(1.5, "km"),
  10459. default: true
  10460. },
  10461. {
  10462. name: "Megamacro",
  10463. height: math.unit(80, "miles")
  10464. },
  10465. {
  10466. name: "Gigamacro",
  10467. height: math.unit(3500, "miles")
  10468. },
  10469. ]
  10470. ))
  10471. characterMakers.push(() => makeCharacter(
  10472. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10473. {
  10474. side: {
  10475. height: math.unit(1.9, "meters"),
  10476. weight: math.unit(326, "kg"),
  10477. name: "Side",
  10478. image: {
  10479. source: "./media/characters/levi/side.svg",
  10480. extra: 1704 / 1334,
  10481. bottom: 0.02
  10482. }
  10483. },
  10484. },
  10485. [
  10486. {
  10487. name: "Normal",
  10488. height: math.unit(1.9, "meters"),
  10489. default: true
  10490. },
  10491. {
  10492. name: "Macro",
  10493. height: math.unit(20, "meters")
  10494. },
  10495. {
  10496. name: "Macro+",
  10497. height: math.unit(200, "meters")
  10498. },
  10499. {
  10500. name: "Megamacro",
  10501. height: math.unit(2, "km")
  10502. },
  10503. {
  10504. name: "Megamacro+",
  10505. height: math.unit(20, "km")
  10506. },
  10507. {
  10508. name: "Gigamacro",
  10509. height: math.unit(2500, "km")
  10510. },
  10511. {
  10512. name: "Gigamacro+",
  10513. height: math.unit(120000, "km")
  10514. },
  10515. {
  10516. name: "Teramacro",
  10517. height: math.unit(7.77e6, "km")
  10518. },
  10519. ]
  10520. ))
  10521. characterMakers.push(() => makeCharacter(
  10522. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10523. {
  10524. front: {
  10525. height: math.unit(6 + 4 / 12, "feet"),
  10526. weight: math.unit(188, "lb"),
  10527. name: "Front",
  10528. image: {
  10529. source: "./media/characters/bmc/front.svg",
  10530. extra: 1067 / 1022,
  10531. bottom: 0.047
  10532. }
  10533. },
  10534. },
  10535. [
  10536. {
  10537. name: "Human-sized",
  10538. height: math.unit(6 + 4 / 12, "feet")
  10539. },
  10540. {
  10541. name: "Small",
  10542. height: math.unit(250, "feet")
  10543. },
  10544. {
  10545. name: "Normal",
  10546. height: math.unit(1250, "feet"),
  10547. default: true
  10548. },
  10549. {
  10550. name: "Good Day",
  10551. height: math.unit(88, "miles")
  10552. },
  10553. {
  10554. name: "Largest Measured Size",
  10555. height: math.unit(11.2e6, "lightyears")
  10556. },
  10557. ]
  10558. ))
  10559. characterMakers.push(() => makeCharacter(
  10560. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10561. {
  10562. front: {
  10563. height: math.unit(20, "feet"),
  10564. weight: math.unit(2016, "kg"),
  10565. name: "Front",
  10566. image: {
  10567. source: "./media/characters/sven-the-kaiju/front.svg",
  10568. extra: 1479 / 1449,
  10569. bottom: 0.05
  10570. }
  10571. },
  10572. },
  10573. [
  10574. {
  10575. name: "Fairy",
  10576. height: math.unit(6, "inches")
  10577. },
  10578. {
  10579. name: "Normal",
  10580. height: math.unit(20, "feet"),
  10581. default: true
  10582. },
  10583. {
  10584. name: "Rampage",
  10585. height: math.unit(200, "feet")
  10586. },
  10587. {
  10588. name: "Archfey Forest Guardian",
  10589. height: math.unit(1, "mile")
  10590. },
  10591. ]
  10592. ))
  10593. characterMakers.push(() => makeCharacter(
  10594. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10595. {
  10596. front: {
  10597. height: math.unit(4, "meters"),
  10598. weight: math.unit(2, "tons"),
  10599. name: "Front",
  10600. image: {
  10601. source: "./media/characters/marik/front.svg",
  10602. extra: 1057 / 1003,
  10603. bottom: 0.08
  10604. }
  10605. },
  10606. },
  10607. [
  10608. {
  10609. name: "Normal",
  10610. height: math.unit(4, "meters"),
  10611. default: true
  10612. },
  10613. {
  10614. name: "Macro",
  10615. height: math.unit(20, "meters")
  10616. },
  10617. {
  10618. name: "Megamacro",
  10619. height: math.unit(50, "km")
  10620. },
  10621. {
  10622. name: "Gigamacro",
  10623. height: math.unit(100, "km")
  10624. },
  10625. {
  10626. name: "Alpha Macro",
  10627. height: math.unit(7.88e7, "yottameters")
  10628. },
  10629. ]
  10630. ))
  10631. characterMakers.push(() => makeCharacter(
  10632. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10633. {
  10634. front: {
  10635. height: math.unit(6, "feet"),
  10636. weight: math.unit(110, "lb"),
  10637. name: "Front",
  10638. image: {
  10639. source: "./media/characters/mel/front.svg",
  10640. extra: 736 / 617,
  10641. bottom: 0.017
  10642. }
  10643. },
  10644. },
  10645. [
  10646. {
  10647. name: "Pico",
  10648. height: math.unit(3, "pm")
  10649. },
  10650. {
  10651. name: "Nano",
  10652. height: math.unit(3, "nm")
  10653. },
  10654. {
  10655. name: "Micro",
  10656. height: math.unit(0.3, "mm"),
  10657. default: true
  10658. },
  10659. {
  10660. name: "Micro+",
  10661. height: math.unit(3, "mm")
  10662. },
  10663. {
  10664. name: "Normal",
  10665. height: math.unit(5 + 10.5 / 12, "feet")
  10666. },
  10667. ]
  10668. ))
  10669. characterMakers.push(() => makeCharacter(
  10670. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10671. {
  10672. kaiju: {
  10673. height: math.unit(1.75, "meters"),
  10674. weight: math.unit(55, "kg"),
  10675. name: "Kaiju",
  10676. image: {
  10677. source: "./media/characters/lykonous/kaiju.svg",
  10678. extra: 1055 / 946,
  10679. bottom: 0.135
  10680. }
  10681. },
  10682. },
  10683. [
  10684. {
  10685. name: "Normal",
  10686. height: math.unit(2.5, "meters"),
  10687. default: true
  10688. },
  10689. {
  10690. name: "Kaiju Dragon",
  10691. height: math.unit(60, "meters")
  10692. },
  10693. {
  10694. name: "Mega Kaiju",
  10695. height: math.unit(120, "km")
  10696. },
  10697. {
  10698. name: "Giga Kaiju",
  10699. height: math.unit(200, "megameters")
  10700. },
  10701. {
  10702. name: "Terra Kaiju",
  10703. height: math.unit(400, "gigameters")
  10704. },
  10705. {
  10706. name: "Kaiju Dragon God",
  10707. height: math.unit(13000, "exaparsecs")
  10708. },
  10709. ]
  10710. ))
  10711. characterMakers.push(() => makeCharacter(
  10712. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10713. {
  10714. front: {
  10715. height: math.unit(6, "feet"),
  10716. weight: math.unit(150, "lb"),
  10717. name: "Front",
  10718. image: {
  10719. source: "./media/characters/blü/front.svg",
  10720. extra: 1883 / 1564,
  10721. bottom: 0.031
  10722. }
  10723. },
  10724. },
  10725. [
  10726. {
  10727. name: "Normal",
  10728. height: math.unit(13, "feet"),
  10729. default: true
  10730. },
  10731. {
  10732. name: "Big Boi",
  10733. height: math.unit(150, "meters")
  10734. },
  10735. {
  10736. name: "Mini Stomper",
  10737. height: math.unit(300, "meters")
  10738. },
  10739. {
  10740. name: "Macro",
  10741. height: math.unit(1000, "meters")
  10742. },
  10743. {
  10744. name: "Megamacro",
  10745. height: math.unit(11000, "meters")
  10746. },
  10747. {
  10748. name: "Gigamacro",
  10749. height: math.unit(11000, "km")
  10750. },
  10751. {
  10752. name: "Teramacro",
  10753. height: math.unit(420000, "km")
  10754. },
  10755. {
  10756. name: "Examacro",
  10757. height: math.unit(120, "parsecs")
  10758. },
  10759. {
  10760. name: "God Tho",
  10761. height: math.unit(98000000000, "parsecs")
  10762. },
  10763. ]
  10764. ))
  10765. characterMakers.push(() => makeCharacter(
  10766. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10767. {
  10768. taurFront: {
  10769. height: math.unit(6, "feet"),
  10770. weight: math.unit(200, "lb"),
  10771. name: "Taur (Front)",
  10772. image: {
  10773. source: "./media/characters/scales/taur-front.svg",
  10774. extra: 1,
  10775. bottom: 0.05
  10776. }
  10777. },
  10778. taurBack: {
  10779. height: math.unit(6, "feet"),
  10780. weight: math.unit(200, "lb"),
  10781. name: "Taur (Back)",
  10782. image: {
  10783. source: "./media/characters/scales/taur-back.svg",
  10784. extra: 1,
  10785. bottom: 0.08
  10786. }
  10787. },
  10788. anthro: {
  10789. height: math.unit(6 * 7 / 12, "feet"),
  10790. weight: math.unit(100, "lb"),
  10791. name: "Anthro",
  10792. image: {
  10793. source: "./media/characters/scales/anthro.svg",
  10794. extra: 1,
  10795. bottom: 0.06
  10796. }
  10797. },
  10798. },
  10799. [
  10800. {
  10801. name: "Normal",
  10802. height: math.unit(12, "feet"),
  10803. default: true
  10804. },
  10805. ]
  10806. ))
  10807. characterMakers.push(() => makeCharacter(
  10808. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10809. {
  10810. front: {
  10811. height: math.unit(6, "feet"),
  10812. weight: math.unit(150, "lb"),
  10813. name: "Front",
  10814. image: {
  10815. source: "./media/characters/koragos/front.svg",
  10816. extra: 841 / 794,
  10817. bottom: 0.035
  10818. }
  10819. },
  10820. back: {
  10821. height: math.unit(6, "feet"),
  10822. weight: math.unit(150, "lb"),
  10823. name: "Back",
  10824. image: {
  10825. source: "./media/characters/koragos/back.svg",
  10826. extra: 841 / 810,
  10827. bottom: 0.022
  10828. }
  10829. },
  10830. },
  10831. [
  10832. {
  10833. name: "Normal",
  10834. height: math.unit(6 + 11 / 12, "feet"),
  10835. default: true
  10836. },
  10837. {
  10838. name: "Macro",
  10839. height: math.unit(490, "feet")
  10840. },
  10841. {
  10842. name: "Megamacro",
  10843. height: math.unit(10, "miles")
  10844. },
  10845. {
  10846. name: "Gigamacro",
  10847. height: math.unit(50, "miles")
  10848. },
  10849. ]
  10850. ))
  10851. characterMakers.push(() => makeCharacter(
  10852. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10853. {
  10854. front: {
  10855. height: math.unit(6, "feet"),
  10856. weight: math.unit(250, "lb"),
  10857. name: "Front",
  10858. image: {
  10859. source: "./media/characters/xylrem/front.svg",
  10860. extra: 3323 / 3050,
  10861. bottom: 0.065
  10862. }
  10863. },
  10864. },
  10865. [
  10866. {
  10867. name: "Micro",
  10868. height: math.unit(4, "feet")
  10869. },
  10870. {
  10871. name: "Normal",
  10872. height: math.unit(16, "feet"),
  10873. default: true
  10874. },
  10875. {
  10876. name: "Macro",
  10877. height: math.unit(2720, "feet")
  10878. },
  10879. {
  10880. name: "Megamacro",
  10881. height: math.unit(25000, "miles")
  10882. },
  10883. ]
  10884. ))
  10885. characterMakers.push(() => makeCharacter(
  10886. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10887. {
  10888. front: {
  10889. height: math.unit(8, "feet"),
  10890. weight: math.unit(250, "kg"),
  10891. name: "Front",
  10892. image: {
  10893. source: "./media/characters/ikideru/front.svg",
  10894. extra: 930 / 870,
  10895. bottom: 0.087
  10896. }
  10897. },
  10898. back: {
  10899. height: math.unit(8, "feet"),
  10900. weight: math.unit(250, "kg"),
  10901. name: "Back",
  10902. image: {
  10903. source: "./media/characters/ikideru/back.svg",
  10904. extra: 919 / 852,
  10905. bottom: 0.055
  10906. }
  10907. },
  10908. },
  10909. [
  10910. {
  10911. name: "Rare",
  10912. height: math.unit(8, "feet"),
  10913. default: true
  10914. },
  10915. {
  10916. name: "Playful Loom",
  10917. height: math.unit(80, "feet")
  10918. },
  10919. {
  10920. name: "City Leaner",
  10921. height: math.unit(230, "feet")
  10922. },
  10923. {
  10924. name: "Megamacro",
  10925. height: math.unit(2500, "feet")
  10926. },
  10927. {
  10928. name: "Gigamacro",
  10929. height: math.unit(26400, "feet")
  10930. },
  10931. {
  10932. name: "Tectonic Shifter",
  10933. height: math.unit(1.7, "megameters")
  10934. },
  10935. {
  10936. name: "Planet Carer",
  10937. height: math.unit(21, "megameters")
  10938. },
  10939. {
  10940. name: "God",
  10941. height: math.unit(11157.22, "parsecs")
  10942. },
  10943. ]
  10944. ))
  10945. characterMakers.push(() => makeCharacter(
  10946. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10947. {
  10948. front: {
  10949. height: math.unit(6, "feet"),
  10950. weight: math.unit(120, "lb"),
  10951. name: "Front",
  10952. image: {
  10953. source: "./media/characters/neo/front.svg"
  10954. }
  10955. },
  10956. },
  10957. [
  10958. {
  10959. name: "Micro",
  10960. height: math.unit(2, "inches"),
  10961. default: true
  10962. },
  10963. {
  10964. name: "Human Size",
  10965. height: math.unit(5 + 8 / 12, "feet")
  10966. },
  10967. ]
  10968. ))
  10969. characterMakers.push(() => makeCharacter(
  10970. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10971. {
  10972. front: {
  10973. height: math.unit(13 + 10 / 12, "feet"),
  10974. weight: math.unit(5320, "lb"),
  10975. name: "Front",
  10976. image: {
  10977. source: "./media/characters/chauncey-chantz/front.svg",
  10978. extra: 1587 / 1435,
  10979. bottom: 0.02
  10980. }
  10981. },
  10982. },
  10983. [
  10984. {
  10985. name: "Normal",
  10986. height: math.unit(13 + 10 / 12, "feet"),
  10987. default: true
  10988. },
  10989. {
  10990. name: "Macro",
  10991. height: math.unit(45, "feet")
  10992. },
  10993. {
  10994. name: "Megamacro",
  10995. height: math.unit(250, "miles")
  10996. },
  10997. {
  10998. name: "Planetary",
  10999. height: math.unit(10000, "miles")
  11000. },
  11001. {
  11002. name: "Galactic",
  11003. height: math.unit(40000, "parsecs")
  11004. },
  11005. {
  11006. name: "Universal",
  11007. height: math.unit(1, "yottameter")
  11008. },
  11009. ]
  11010. ))
  11011. characterMakers.push(() => makeCharacter(
  11012. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11013. {
  11014. front: {
  11015. height: math.unit(6, "feet"),
  11016. weight: math.unit(150, "lb"),
  11017. name: "Front",
  11018. image: {
  11019. source: "./media/characters/epifox/front.svg",
  11020. extra: 1,
  11021. bottom: 0.075
  11022. }
  11023. },
  11024. },
  11025. [
  11026. {
  11027. name: "Micro",
  11028. height: math.unit(6, "inches")
  11029. },
  11030. {
  11031. name: "Normal",
  11032. height: math.unit(12, "feet"),
  11033. default: true
  11034. },
  11035. {
  11036. name: "Macro",
  11037. height: math.unit(3810, "feet")
  11038. },
  11039. {
  11040. name: "Megamacro",
  11041. height: math.unit(500, "miles")
  11042. },
  11043. ]
  11044. ))
  11045. characterMakers.push(() => makeCharacter(
  11046. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11047. {
  11048. front: {
  11049. height: math.unit(1.8796, "m"),
  11050. weight: math.unit(230, "lb"),
  11051. name: "Front",
  11052. image: {
  11053. source: "./media/characters/colin-t/front.svg",
  11054. extra: 1272 / 1193,
  11055. bottom: 0.07
  11056. }
  11057. },
  11058. },
  11059. [
  11060. {
  11061. name: "Micro",
  11062. height: math.unit(0.571, "meters")
  11063. },
  11064. {
  11065. name: "Normal",
  11066. height: math.unit(1.8796, "meters"),
  11067. default: true
  11068. },
  11069. {
  11070. name: "Tall",
  11071. height: math.unit(4, "meters")
  11072. },
  11073. {
  11074. name: "Macro",
  11075. height: math.unit(67.241, "meters")
  11076. },
  11077. {
  11078. name: "Megamacro",
  11079. height: math.unit(371.856, "meters")
  11080. },
  11081. {
  11082. name: "Planetary",
  11083. height: math.unit(12631.5689, "km")
  11084. },
  11085. ]
  11086. ))
  11087. characterMakers.push(() => makeCharacter(
  11088. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11089. {
  11090. front: {
  11091. height: math.unit(1.85, "meters"),
  11092. weight: math.unit(80, "kg"),
  11093. name: "Front",
  11094. image: {
  11095. source: "./media/characters/matvei/front.svg",
  11096. extra: 614 / 594,
  11097. bottom: 0.01
  11098. }
  11099. },
  11100. },
  11101. [
  11102. {
  11103. name: "Normal",
  11104. height: math.unit(1.85, "meters"),
  11105. default: true
  11106. },
  11107. ]
  11108. ))
  11109. characterMakers.push(() => makeCharacter(
  11110. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11111. {
  11112. front: {
  11113. height: math.unit(5 + 9 / 12, "feet"),
  11114. weight: math.unit(70, "lb"),
  11115. name: "Front",
  11116. image: {
  11117. source: "./media/characters/quincy/front.svg",
  11118. extra: 3041 / 2751
  11119. }
  11120. },
  11121. back: {
  11122. height: math.unit(5 + 9 / 12, "feet"),
  11123. weight: math.unit(70, "lb"),
  11124. name: "Back",
  11125. image: {
  11126. source: "./media/characters/quincy/back.svg",
  11127. extra: 3041 / 2751
  11128. }
  11129. },
  11130. flying: {
  11131. height: math.unit(5 + 4 / 12, "feet"),
  11132. weight: math.unit(70, "lb"),
  11133. name: "Flying",
  11134. image: {
  11135. source: "./media/characters/quincy/flying.svg",
  11136. extra: 1044 / 930
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Micro",
  11143. height: math.unit(3, "cm")
  11144. },
  11145. {
  11146. name: "Normal",
  11147. height: math.unit(5 + 9 / 12, "feet")
  11148. },
  11149. {
  11150. name: "Macro",
  11151. height: math.unit(200, "meters"),
  11152. default: true
  11153. },
  11154. {
  11155. name: "Megamacro",
  11156. height: math.unit(1000, "meters")
  11157. },
  11158. ]
  11159. ))
  11160. characterMakers.push(() => makeCharacter(
  11161. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11162. {
  11163. front: {
  11164. height: math.unit(4 + 7 / 12, "feet"),
  11165. weight: math.unit(150, "lb"),
  11166. name: "Front",
  11167. image: {
  11168. source: "./media/characters/vanrel/front.svg",
  11169. extra: 1,
  11170. bottom: 0.02
  11171. }
  11172. },
  11173. elemental: {
  11174. height: math.unit(3, "feet"),
  11175. weight: math.unit(150, "lb"),
  11176. name: "Elemental",
  11177. image: {
  11178. source: "./media/characters/vanrel/elemental.svg",
  11179. extra: 192.3 / 162.8,
  11180. bottom: 1.79 / 194.17
  11181. }
  11182. },
  11183. side: {
  11184. height: math.unit(4 + 7 / 12, "feet"),
  11185. weight: math.unit(150, "lb"),
  11186. name: "Side",
  11187. image: {
  11188. source: "./media/characters/vanrel/side.svg",
  11189. extra: 1,
  11190. bottom: 0.025
  11191. }
  11192. },
  11193. tome: {
  11194. height: math.unit(1.35, "feet"),
  11195. weight: math.unit(10, "lb"),
  11196. name: "Vanrel's Tome",
  11197. rename: true,
  11198. image: {
  11199. source: "./media/characters/vanrel/tome.svg"
  11200. }
  11201. },
  11202. beans: {
  11203. height: math.unit(0.89, "feet"),
  11204. name: "Beans",
  11205. image: {
  11206. source: "./media/characters/vanrel/beans.svg"
  11207. }
  11208. },
  11209. },
  11210. [
  11211. {
  11212. name: "Normal",
  11213. height: math.unit(4 + 7 / 12, "feet"),
  11214. default: true
  11215. },
  11216. ]
  11217. ))
  11218. characterMakers.push(() => makeCharacter(
  11219. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11220. {
  11221. front: {
  11222. height: math.unit(7 + 5 / 12, "feet"),
  11223. weight: math.unit(150, "lb"),
  11224. name: "Front",
  11225. image: {
  11226. source: "./media/characters/kuiper-vanrel/front.svg",
  11227. extra: 1118 / 1068,
  11228. bottom: 0.09
  11229. }
  11230. },
  11231. foot: {
  11232. height: math.unit(0.55, "meters"),
  11233. name: "Foot",
  11234. image: {
  11235. source: "./media/characters/kuiper-vanrel/foot.svg",
  11236. }
  11237. },
  11238. battle: {
  11239. height: math.unit(6.824, "feet"),
  11240. weight: math.unit(150, "lb"),
  11241. name: "Battle",
  11242. image: {
  11243. source: "./media/characters/kuiper-vanrel/battle.svg",
  11244. extra: 1466 / 1327,
  11245. bottom: 29 / 1492.5
  11246. }
  11247. },
  11248. battleAlt: {
  11249. height: math.unit(6.824, "feet"),
  11250. weight: math.unit(150, "lb"),
  11251. name: "Battle (Alt)",
  11252. image: {
  11253. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11254. extra: 2081 / 1965,
  11255. bottom: 40 / 2121
  11256. }
  11257. },
  11258. },
  11259. [
  11260. {
  11261. name: "Normal",
  11262. height: math.unit(7 + 5 / 12, "feet"),
  11263. default: true
  11264. },
  11265. ]
  11266. ))
  11267. characterMakers.push(() => makeCharacter(
  11268. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11269. {
  11270. front: {
  11271. height: math.unit(8 + 5 / 12, "feet"),
  11272. weight: math.unit(150, "lb"),
  11273. name: "Front",
  11274. image: {
  11275. source: "./media/characters/keset-vanrel/front.svg",
  11276. extra: 1150 / 1084,
  11277. bottom: 0.05
  11278. }
  11279. },
  11280. hand: {
  11281. height: math.unit(0.6, "meters"),
  11282. name: "Hand",
  11283. image: {
  11284. source: "./media/characters/keset-vanrel/hand.svg"
  11285. }
  11286. },
  11287. foot: {
  11288. height: math.unit(0.94978, "meters"),
  11289. name: "Foot",
  11290. image: {
  11291. source: "./media/characters/keset-vanrel/foot.svg"
  11292. }
  11293. },
  11294. battle: {
  11295. height: math.unit(7.408, "feet"),
  11296. weight: math.unit(150, "lb"),
  11297. name: "Battle",
  11298. image: {
  11299. source: "./media/characters/keset-vanrel/battle.svg",
  11300. extra: 1890 / 1386,
  11301. bottom: 73.28 / 1970
  11302. }
  11303. },
  11304. },
  11305. [
  11306. {
  11307. name: "Normal",
  11308. height: math.unit(8 + 5 / 12, "feet"),
  11309. default: true
  11310. },
  11311. ]
  11312. ))
  11313. characterMakers.push(() => makeCharacter(
  11314. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11315. {
  11316. front: {
  11317. height: math.unit(6, "feet"),
  11318. weight: math.unit(150, "lb"),
  11319. name: "Front",
  11320. image: {
  11321. source: "./media/characters/neos/front.svg",
  11322. extra: 1696 / 992,
  11323. bottom: 0.14
  11324. }
  11325. },
  11326. },
  11327. [
  11328. {
  11329. name: "Normal",
  11330. height: math.unit(54, "cm"),
  11331. default: true
  11332. },
  11333. {
  11334. name: "Macro",
  11335. height: math.unit(100, "m")
  11336. },
  11337. {
  11338. name: "Megamacro",
  11339. height: math.unit(10, "km")
  11340. },
  11341. {
  11342. name: "Megamacro+",
  11343. height: math.unit(100, "km")
  11344. },
  11345. {
  11346. name: "Gigamacro",
  11347. height: math.unit(100, "Mm")
  11348. },
  11349. {
  11350. name: "Teramacro",
  11351. height: math.unit(100, "Gm")
  11352. },
  11353. {
  11354. name: "Examacro",
  11355. height: math.unit(100, "Em")
  11356. },
  11357. {
  11358. name: "Godly",
  11359. height: math.unit(10000, "Ym")
  11360. },
  11361. {
  11362. name: "Beyond Godly",
  11363. height: math.unit(25, "multiverses")
  11364. },
  11365. ]
  11366. ))
  11367. characterMakers.push(() => makeCharacter(
  11368. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11369. {
  11370. feminine: {
  11371. height: math.unit(5, "feet"),
  11372. weight: math.unit(100, "lb"),
  11373. name: "Feminine",
  11374. image: {
  11375. source: "./media/characters/sammy-mouse/feminine.svg",
  11376. extra: 2526 / 2425,
  11377. bottom: 0.123
  11378. }
  11379. },
  11380. masculine: {
  11381. height: math.unit(5, "feet"),
  11382. weight: math.unit(100, "lb"),
  11383. name: "Masculine",
  11384. image: {
  11385. source: "./media/characters/sammy-mouse/masculine.svg",
  11386. extra: 2526 / 2425,
  11387. bottom: 0.123
  11388. }
  11389. },
  11390. },
  11391. [
  11392. {
  11393. name: "Micro",
  11394. height: math.unit(5, "inches")
  11395. },
  11396. {
  11397. name: "Normal",
  11398. height: math.unit(5, "feet"),
  11399. default: true
  11400. },
  11401. {
  11402. name: "Macro",
  11403. height: math.unit(60, "feet")
  11404. },
  11405. ]
  11406. ))
  11407. characterMakers.push(() => makeCharacter(
  11408. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11409. {
  11410. front: {
  11411. height: math.unit(4, "feet"),
  11412. weight: math.unit(50, "lb"),
  11413. name: "Front",
  11414. image: {
  11415. source: "./media/characters/kole/front.svg",
  11416. extra: 1423 / 1303,
  11417. bottom: 0.025
  11418. }
  11419. },
  11420. back: {
  11421. height: math.unit(4, "feet"),
  11422. weight: math.unit(50, "lb"),
  11423. name: "Back",
  11424. image: {
  11425. source: "./media/characters/kole/back.svg",
  11426. extra: 1426 / 1280,
  11427. bottom: 0.02
  11428. }
  11429. },
  11430. },
  11431. [
  11432. {
  11433. name: "Normal",
  11434. height: math.unit(4, "feet"),
  11435. default: true
  11436. },
  11437. ]
  11438. ))
  11439. characterMakers.push(() => makeCharacter(
  11440. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11441. {
  11442. front: {
  11443. height: math.unit(2 + 6 / 12, "feet"),
  11444. weight: math.unit(20, "lb"),
  11445. name: "Front",
  11446. image: {
  11447. source: "./media/characters/rufran/front.svg",
  11448. extra: 2041 / 1839,
  11449. bottom: 0.055
  11450. }
  11451. },
  11452. back: {
  11453. height: math.unit(2 + 6 / 12, "feet"),
  11454. weight: math.unit(20, "lb"),
  11455. name: "Back",
  11456. image: {
  11457. source: "./media/characters/rufran/back.svg",
  11458. extra: 2054 / 1839,
  11459. bottom: 0.01
  11460. }
  11461. },
  11462. hand: {
  11463. height: math.unit(0.2166, "meters"),
  11464. name: "Hand",
  11465. image: {
  11466. source: "./media/characters/rufran/hand.svg"
  11467. }
  11468. },
  11469. foot: {
  11470. height: math.unit(0.185, "meters"),
  11471. name: "Foot",
  11472. image: {
  11473. source: "./media/characters/rufran/foot.svg"
  11474. }
  11475. },
  11476. },
  11477. [
  11478. {
  11479. name: "Micro",
  11480. height: math.unit(1, "inch")
  11481. },
  11482. {
  11483. name: "Normal",
  11484. height: math.unit(2 + 6 / 12, "feet"),
  11485. default: true
  11486. },
  11487. {
  11488. name: "Big",
  11489. height: math.unit(60, "feet")
  11490. },
  11491. {
  11492. name: "Macro",
  11493. height: math.unit(325, "feet")
  11494. },
  11495. ]
  11496. ))
  11497. characterMakers.push(() => makeCharacter(
  11498. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11499. {
  11500. front: {
  11501. height: math.unit(0.3, "meters"),
  11502. weight: math.unit(3.5, "kg"),
  11503. name: "Front",
  11504. image: {
  11505. source: "./media/characters/chip/front.svg",
  11506. extra: 748 / 674
  11507. }
  11508. },
  11509. },
  11510. [
  11511. {
  11512. name: "Micro",
  11513. height: math.unit(1, "inch"),
  11514. default: true
  11515. },
  11516. ]
  11517. ))
  11518. characterMakers.push(() => makeCharacter(
  11519. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11520. {
  11521. side: {
  11522. height: math.unit(2.3, "meters"),
  11523. weight: math.unit(3500, "lb"),
  11524. name: "Side",
  11525. image: {
  11526. source: "./media/characters/torvid/side.svg",
  11527. extra: 1972 / 722,
  11528. bottom: 0.035
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Normal",
  11535. height: math.unit(2.3, "meters"),
  11536. default: true
  11537. },
  11538. ]
  11539. ))
  11540. characterMakers.push(() => makeCharacter(
  11541. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11542. {
  11543. front: {
  11544. height: math.unit(2, "meters"),
  11545. weight: math.unit(150.5, "kg"),
  11546. name: "Front",
  11547. image: {
  11548. source: "./media/characters/susan/front.svg",
  11549. extra: 693 / 635,
  11550. bottom: 0.05
  11551. }
  11552. },
  11553. },
  11554. [
  11555. {
  11556. name: "Megamacro",
  11557. height: math.unit(505, "miles"),
  11558. default: true
  11559. },
  11560. ]
  11561. ))
  11562. characterMakers.push(() => makeCharacter(
  11563. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11564. {
  11565. front: {
  11566. height: math.unit(6, "feet"),
  11567. weight: math.unit(150, "lb"),
  11568. name: "Front",
  11569. image: {
  11570. source: "./media/characters/raindrops/front.svg",
  11571. extra: 2655 / 2461,
  11572. bottom: 49 / 2705
  11573. }
  11574. },
  11575. back: {
  11576. height: math.unit(6, "feet"),
  11577. weight: math.unit(150, "lb"),
  11578. name: "Back",
  11579. image: {
  11580. source: "./media/characters/raindrops/back.svg",
  11581. extra: 2574 / 2400,
  11582. bottom: 65 / 2634
  11583. }
  11584. },
  11585. },
  11586. [
  11587. {
  11588. name: "Micro",
  11589. height: math.unit(6, "inches")
  11590. },
  11591. {
  11592. name: "Normal",
  11593. height: math.unit(6 + 2 / 12, "feet")
  11594. },
  11595. {
  11596. name: "Macro",
  11597. height: math.unit(131, "feet"),
  11598. default: true
  11599. },
  11600. {
  11601. name: "Megamacro",
  11602. height: math.unit(15, "miles")
  11603. },
  11604. {
  11605. name: "Gigamacro",
  11606. height: math.unit(4000, "miles")
  11607. },
  11608. {
  11609. name: "Teramacro",
  11610. height: math.unit(315000, "miles")
  11611. },
  11612. ]
  11613. ))
  11614. characterMakers.push(() => makeCharacter(
  11615. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11616. {
  11617. front: {
  11618. height: math.unit(2.794, "meters"),
  11619. weight: math.unit(325, "kg"),
  11620. name: "Front",
  11621. image: {
  11622. source: "./media/characters/tezwa/front.svg",
  11623. extra: 2083 / 1906,
  11624. bottom: 0.031
  11625. }
  11626. },
  11627. foot: {
  11628. height: math.unit(0.687, "meters"),
  11629. name: "Foot",
  11630. image: {
  11631. source: "./media/characters/tezwa/foot.svg"
  11632. }
  11633. },
  11634. },
  11635. [
  11636. {
  11637. name: "Normal",
  11638. height: math.unit(9 + 2 / 12, "feet"),
  11639. default: true
  11640. },
  11641. ]
  11642. ))
  11643. characterMakers.push(() => makeCharacter(
  11644. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11645. {
  11646. front: {
  11647. height: math.unit(58, "feet"),
  11648. weight: math.unit(89000, "lb"),
  11649. name: "Front",
  11650. image: {
  11651. source: "./media/characters/typhus/front.svg",
  11652. extra: 816 / 800,
  11653. bottom: 0.065
  11654. }
  11655. },
  11656. },
  11657. [
  11658. {
  11659. name: "Macro",
  11660. height: math.unit(58, "feet"),
  11661. default: true
  11662. },
  11663. ]
  11664. ))
  11665. characterMakers.push(() => makeCharacter(
  11666. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11667. {
  11668. front: {
  11669. height: math.unit(12, "feet"),
  11670. weight: math.unit(6, "tonnes"),
  11671. name: "Front",
  11672. image: {
  11673. source: "./media/characters/lyra-von-wulf/front.svg",
  11674. extra: 1,
  11675. bottom: 0.10
  11676. }
  11677. },
  11678. frontMecha: {
  11679. height: math.unit(12, "feet"),
  11680. weight: math.unit(12, "tonnes"),
  11681. name: "Front (Mecha)",
  11682. image: {
  11683. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11684. extra: 1,
  11685. bottom: 0.042
  11686. }
  11687. },
  11688. maw: {
  11689. height: math.unit(2.2, "feet"),
  11690. name: "Maw",
  11691. image: {
  11692. source: "./media/characters/lyra-von-wulf/maw.svg"
  11693. }
  11694. },
  11695. },
  11696. [
  11697. {
  11698. name: "Normal",
  11699. height: math.unit(12, "feet"),
  11700. default: true
  11701. },
  11702. {
  11703. name: "Classic",
  11704. height: math.unit(50, "feet")
  11705. },
  11706. {
  11707. name: "Macro",
  11708. height: math.unit(500, "feet")
  11709. },
  11710. {
  11711. name: "Megamacro",
  11712. height: math.unit(1, "mile")
  11713. },
  11714. {
  11715. name: "Gigamacro",
  11716. height: math.unit(400, "miles")
  11717. },
  11718. {
  11719. name: "Teramacro",
  11720. height: math.unit(22000, "miles")
  11721. },
  11722. {
  11723. name: "Solarmacro",
  11724. height: math.unit(8600000, "miles")
  11725. },
  11726. {
  11727. name: "Galactic",
  11728. height: math.unit(1057000, "lightyears")
  11729. },
  11730. ]
  11731. ))
  11732. characterMakers.push(() => makeCharacter(
  11733. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11734. {
  11735. front: {
  11736. height: math.unit(6 + 10 / 12, "feet"),
  11737. weight: math.unit(150, "lb"),
  11738. name: "Front",
  11739. image: {
  11740. source: "./media/characters/dixon/front.svg",
  11741. extra: 3361 / 3209,
  11742. bottom: 0.01
  11743. }
  11744. },
  11745. },
  11746. [
  11747. {
  11748. name: "Normal",
  11749. height: math.unit(6 + 10 / 12, "feet"),
  11750. default: true
  11751. },
  11752. {
  11753. name: "Big",
  11754. height: math.unit(12, "meters")
  11755. },
  11756. {
  11757. name: "Macro",
  11758. height: math.unit(500, "meters")
  11759. },
  11760. {
  11761. name: "Megamacro",
  11762. height: math.unit(2, "km")
  11763. },
  11764. ]
  11765. ))
  11766. characterMakers.push(() => makeCharacter(
  11767. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11768. {
  11769. front: {
  11770. height: math.unit(185, "cm"),
  11771. weight: math.unit(68, "kg"),
  11772. name: "Front",
  11773. image: {
  11774. source: "./media/characters/kauko/front.svg",
  11775. extra: 1455 / 1421,
  11776. bottom: 0.03
  11777. }
  11778. },
  11779. back: {
  11780. height: math.unit(185, "cm"),
  11781. weight: math.unit(68, "kg"),
  11782. name: "Back",
  11783. image: {
  11784. source: "./media/characters/kauko/back.svg",
  11785. extra: 1455 / 1421,
  11786. bottom: 0.004
  11787. }
  11788. },
  11789. },
  11790. [
  11791. {
  11792. name: "Normal",
  11793. height: math.unit(185, "cm"),
  11794. default: true
  11795. },
  11796. ]
  11797. ))
  11798. characterMakers.push(() => makeCharacter(
  11799. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11800. {
  11801. front: {
  11802. height: math.unit(6, "feet"),
  11803. weight: math.unit(150, "kg"),
  11804. name: "Front",
  11805. image: {
  11806. source: "./media/characters/varg/front.svg",
  11807. extra: 1108 / 1018,
  11808. bottom: 0.0375
  11809. }
  11810. },
  11811. },
  11812. [
  11813. {
  11814. name: "Normal",
  11815. height: math.unit(5, "meters")
  11816. },
  11817. {
  11818. name: "Macro",
  11819. height: math.unit(200, "meters")
  11820. },
  11821. {
  11822. name: "Megamacro",
  11823. height: math.unit(20, "kilometers")
  11824. },
  11825. {
  11826. name: "True Size",
  11827. height: math.unit(211, "km"),
  11828. default: true
  11829. },
  11830. {
  11831. name: "Gigamacro",
  11832. height: math.unit(1000, "km")
  11833. },
  11834. {
  11835. name: "Gigamacro+",
  11836. height: math.unit(8000, "km")
  11837. },
  11838. {
  11839. name: "Teramacro",
  11840. height: math.unit(1000000, "km")
  11841. },
  11842. ]
  11843. ))
  11844. characterMakers.push(() => makeCharacter(
  11845. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11846. {
  11847. front: {
  11848. height: math.unit(7 + 7 / 12, "feet"),
  11849. weight: math.unit(267, "lb"),
  11850. name: "Front",
  11851. image: {
  11852. source: "./media/characters/dayza/front.svg",
  11853. extra: 1262 / 1200,
  11854. bottom: 0.035
  11855. }
  11856. },
  11857. side: {
  11858. height: math.unit(7 + 7 / 12, "feet"),
  11859. weight: math.unit(267, "lb"),
  11860. name: "Side",
  11861. image: {
  11862. source: "./media/characters/dayza/side.svg",
  11863. extra: 1295 / 1245,
  11864. bottom: 0.05
  11865. }
  11866. },
  11867. back: {
  11868. height: math.unit(7 + 7 / 12, "feet"),
  11869. weight: math.unit(267, "lb"),
  11870. name: "Back",
  11871. image: {
  11872. source: "./media/characters/dayza/back.svg",
  11873. extra: 1241 / 1170
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Normal",
  11880. height: math.unit(7 + 7 / 12, "feet"),
  11881. default: true
  11882. },
  11883. {
  11884. name: "Macro",
  11885. height: math.unit(155, "feet")
  11886. },
  11887. ]
  11888. ))
  11889. characterMakers.push(() => makeCharacter(
  11890. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11891. {
  11892. front: {
  11893. height: math.unit(6 + 5 / 12, "feet"),
  11894. weight: math.unit(160, "lb"),
  11895. name: "Front",
  11896. image: {
  11897. source: "./media/characters/xanthos/front.svg",
  11898. extra: 1,
  11899. bottom: 0.04
  11900. }
  11901. },
  11902. back: {
  11903. height: math.unit(6 + 5 / 12, "feet"),
  11904. weight: math.unit(160, "lb"),
  11905. name: "Back",
  11906. image: {
  11907. source: "./media/characters/xanthos/back.svg",
  11908. extra: 1,
  11909. bottom: 0.03
  11910. }
  11911. },
  11912. hand: {
  11913. height: math.unit(0.928, "feet"),
  11914. name: "Hand",
  11915. image: {
  11916. source: "./media/characters/xanthos/hand.svg"
  11917. }
  11918. },
  11919. foot: {
  11920. height: math.unit(1.286, "feet"),
  11921. name: "Foot",
  11922. image: {
  11923. source: "./media/characters/xanthos/foot.svg"
  11924. }
  11925. },
  11926. },
  11927. [
  11928. {
  11929. name: "Normal",
  11930. height: math.unit(6 + 5 / 12, "feet"),
  11931. default: true
  11932. },
  11933. {
  11934. name: "Normal+",
  11935. height: math.unit(6, "meters")
  11936. },
  11937. {
  11938. name: "Macro",
  11939. height: math.unit(40, "feet")
  11940. },
  11941. {
  11942. name: "Macro+",
  11943. height: math.unit(200, "meters")
  11944. },
  11945. {
  11946. name: "Megamacro",
  11947. height: math.unit(20, "km")
  11948. },
  11949. {
  11950. name: "Megamacro+",
  11951. height: math.unit(100, "km")
  11952. },
  11953. ]
  11954. ))
  11955. characterMakers.push(() => makeCharacter(
  11956. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11957. {
  11958. front: {
  11959. height: math.unit(6 + 3 / 12, "feet"),
  11960. weight: math.unit(215, "lb"),
  11961. name: "Front",
  11962. image: {
  11963. source: "./media/characters/grynn/front.svg",
  11964. extra: 4627 / 4209,
  11965. bottom: 0.047
  11966. }
  11967. },
  11968. },
  11969. [
  11970. {
  11971. name: "Micro",
  11972. height: math.unit(6, "inches")
  11973. },
  11974. {
  11975. name: "Normal",
  11976. height: math.unit(6 + 3 / 12, "feet"),
  11977. default: true
  11978. },
  11979. {
  11980. name: "Big",
  11981. height: math.unit(104, "feet")
  11982. },
  11983. {
  11984. name: "Macro",
  11985. height: math.unit(944, "feet")
  11986. },
  11987. {
  11988. name: "Macro+",
  11989. height: math.unit(9480, "feet")
  11990. },
  11991. {
  11992. name: "Megamacro",
  11993. height: math.unit(78752, "feet")
  11994. },
  11995. {
  11996. name: "Megamacro+",
  11997. height: math.unit(630128, "feet")
  11998. },
  11999. {
  12000. name: "Megamacro++",
  12001. height: math.unit(3150695, "feet")
  12002. },
  12003. ]
  12004. ))
  12005. characterMakers.push(() => makeCharacter(
  12006. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12007. {
  12008. front: {
  12009. height: math.unit(7 + 5 / 12, "feet"),
  12010. weight: math.unit(450, "lb"),
  12011. name: "Front",
  12012. image: {
  12013. source: "./media/characters/mocha-aura/front.svg",
  12014. extra: 1907 / 1817,
  12015. bottom: 0.04
  12016. }
  12017. },
  12018. back: {
  12019. height: math.unit(7 + 5 / 12, "feet"),
  12020. weight: math.unit(450, "lb"),
  12021. name: "Back",
  12022. image: {
  12023. source: "./media/characters/mocha-aura/back.svg",
  12024. extra: 1900 / 1825,
  12025. bottom: 0.045
  12026. }
  12027. },
  12028. },
  12029. [
  12030. {
  12031. name: "Nano",
  12032. height: math.unit(1, "nm")
  12033. },
  12034. {
  12035. name: "Megamicro",
  12036. height: math.unit(1, "mm")
  12037. },
  12038. {
  12039. name: "Micro",
  12040. height: math.unit(3, "inches")
  12041. },
  12042. {
  12043. name: "Normal",
  12044. height: math.unit(7 + 5 / 12, "feet"),
  12045. default: true
  12046. },
  12047. {
  12048. name: "Macro",
  12049. height: math.unit(30, "feet")
  12050. },
  12051. {
  12052. name: "Megamacro",
  12053. height: math.unit(3500, "feet")
  12054. },
  12055. {
  12056. name: "Teramacro",
  12057. height: math.unit(500000, "miles")
  12058. },
  12059. {
  12060. name: "Petamacro",
  12061. height: math.unit(50000000000000000, "parsecs")
  12062. },
  12063. ]
  12064. ))
  12065. characterMakers.push(() => makeCharacter(
  12066. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12067. {
  12068. front: {
  12069. height: math.unit(6, "feet"),
  12070. weight: math.unit(150, "lb"),
  12071. name: "Front",
  12072. image: {
  12073. source: "./media/characters/ilisha-devya/front.svg",
  12074. extra: 1,
  12075. bottom: 0.175
  12076. }
  12077. },
  12078. back: {
  12079. height: math.unit(6, "feet"),
  12080. weight: math.unit(150, "lb"),
  12081. name: "Back",
  12082. image: {
  12083. source: "./media/characters/ilisha-devya/back.svg",
  12084. extra: 1,
  12085. bottom: 0.015
  12086. }
  12087. },
  12088. },
  12089. [
  12090. {
  12091. name: "Macro",
  12092. height: math.unit(500, "feet"),
  12093. default: true
  12094. },
  12095. {
  12096. name: "Megamacro",
  12097. height: math.unit(10, "miles")
  12098. },
  12099. {
  12100. name: "Gigamacro",
  12101. height: math.unit(100000, "miles")
  12102. },
  12103. {
  12104. name: "Examacro",
  12105. height: math.unit(1e9, "lightyears")
  12106. },
  12107. {
  12108. name: "Omniversal",
  12109. height: math.unit(1e33, "lightyears")
  12110. },
  12111. {
  12112. name: "Beyond Infinite",
  12113. height: math.unit(1e100, "lightyears")
  12114. },
  12115. ]
  12116. ))
  12117. characterMakers.push(() => makeCharacter(
  12118. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12119. {
  12120. Side: {
  12121. height: math.unit(6, "feet"),
  12122. weight: math.unit(150, "lb"),
  12123. name: "Side",
  12124. image: {
  12125. source: "./media/characters/mira/side.svg",
  12126. extra: 900 / 799,
  12127. bottom: 0.02
  12128. }
  12129. },
  12130. },
  12131. [
  12132. {
  12133. name: "Human Size",
  12134. height: math.unit(6, "feet")
  12135. },
  12136. {
  12137. name: "Macro",
  12138. height: math.unit(100, "feet"),
  12139. default: true
  12140. },
  12141. {
  12142. name: "Megamacro",
  12143. height: math.unit(10, "miles")
  12144. },
  12145. {
  12146. name: "Gigamacro",
  12147. height: math.unit(25000, "miles")
  12148. },
  12149. {
  12150. name: "Teramacro",
  12151. height: math.unit(300, "AU")
  12152. },
  12153. {
  12154. name: "Full Size",
  12155. height: math.unit(4.5e10, "lightyears")
  12156. },
  12157. ]
  12158. ))
  12159. characterMakers.push(() => makeCharacter(
  12160. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12161. {
  12162. front: {
  12163. height: math.unit(6, "feet"),
  12164. weight: math.unit(150, "lb"),
  12165. name: "Front",
  12166. image: {
  12167. source: "./media/characters/holly/front.svg",
  12168. extra: 639 / 606
  12169. }
  12170. },
  12171. back: {
  12172. height: math.unit(6, "feet"),
  12173. weight: math.unit(150, "lb"),
  12174. name: "Back",
  12175. image: {
  12176. source: "./media/characters/holly/back.svg",
  12177. extra: 623 / 598
  12178. }
  12179. },
  12180. frontWorking: {
  12181. height: math.unit(6, "feet"),
  12182. weight: math.unit(150, "lb"),
  12183. name: "Front (Working)",
  12184. image: {
  12185. source: "./media/characters/holly/front-working.svg",
  12186. extra: 607 / 577,
  12187. bottom: 0.048
  12188. }
  12189. },
  12190. },
  12191. [
  12192. {
  12193. name: "Normal",
  12194. height: math.unit(12 + 3 / 12, "feet"),
  12195. default: true
  12196. },
  12197. ]
  12198. ))
  12199. characterMakers.push(() => makeCharacter(
  12200. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12201. {
  12202. front: {
  12203. height: math.unit(6, "feet"),
  12204. weight: math.unit(150, "lb"),
  12205. name: "Front",
  12206. image: {
  12207. source: "./media/characters/porter/front.svg",
  12208. extra: 1,
  12209. bottom: 0.01
  12210. }
  12211. },
  12212. frontRobes: {
  12213. height: math.unit(6, "feet"),
  12214. weight: math.unit(150, "lb"),
  12215. name: "Front (Robes)",
  12216. image: {
  12217. source: "./media/characters/porter/front-robes.svg",
  12218. extra: 1.01,
  12219. bottom: 0.01
  12220. }
  12221. },
  12222. },
  12223. [
  12224. {
  12225. name: "Normal",
  12226. height: math.unit(11 + 9 / 12, "feet"),
  12227. default: true
  12228. },
  12229. ]
  12230. ))
  12231. characterMakers.push(() => makeCharacter(
  12232. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12233. {
  12234. legendary: {
  12235. height: math.unit(6, "feet"),
  12236. weight: math.unit(150, "lb"),
  12237. name: "Legendary",
  12238. image: {
  12239. source: "./media/characters/lucy/legendary.svg",
  12240. extra: 1355 / 1100,
  12241. bottom: 0.045
  12242. }
  12243. },
  12244. },
  12245. [
  12246. {
  12247. name: "Legendary",
  12248. height: math.unit(86882 * 2, "miles"),
  12249. default: true
  12250. },
  12251. ]
  12252. ))
  12253. characterMakers.push(() => makeCharacter(
  12254. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12255. {
  12256. front: {
  12257. height: math.unit(6, "feet"),
  12258. weight: math.unit(150, "lb"),
  12259. name: "Front",
  12260. image: {
  12261. source: "./media/characters/drusilla/front.svg",
  12262. extra: 678 / 635,
  12263. bottom: 0.03
  12264. }
  12265. },
  12266. back: {
  12267. height: math.unit(6, "feet"),
  12268. weight: math.unit(150, "lb"),
  12269. name: "Back",
  12270. image: {
  12271. source: "./media/characters/drusilla/back.svg",
  12272. extra: 678 / 635,
  12273. bottom: 0.005
  12274. }
  12275. },
  12276. },
  12277. [
  12278. {
  12279. name: "Macro",
  12280. height: math.unit(100, "feet")
  12281. },
  12282. {
  12283. name: "Canon Height",
  12284. height: math.unit(2000, "feet"),
  12285. default: true
  12286. },
  12287. ]
  12288. ))
  12289. characterMakers.push(() => makeCharacter(
  12290. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12291. {
  12292. front: {
  12293. height: math.unit(6, "feet"),
  12294. weight: math.unit(180, "lb"),
  12295. name: "Front",
  12296. image: {
  12297. source: "./media/characters/renard-thatch/front.svg",
  12298. extra: 2411 / 2275,
  12299. bottom: 0.01
  12300. }
  12301. },
  12302. frontPosing: {
  12303. height: math.unit(6, "feet"),
  12304. weight: math.unit(180, "lb"),
  12305. name: "Front (Posing)",
  12306. image: {
  12307. source: "./media/characters/renard-thatch/front-posing.svg",
  12308. extra: 2381 / 2261,
  12309. bottom: 0.01
  12310. }
  12311. },
  12312. back: {
  12313. height: math.unit(6, "feet"),
  12314. weight: math.unit(180, "lb"),
  12315. name: "Back",
  12316. image: {
  12317. source: "./media/characters/renard-thatch/back.svg",
  12318. extra: 2428 / 2288
  12319. }
  12320. },
  12321. },
  12322. [
  12323. {
  12324. name: "Micro",
  12325. height: math.unit(3, "inches")
  12326. },
  12327. {
  12328. name: "Default",
  12329. height: math.unit(6, "feet"),
  12330. default: true
  12331. },
  12332. {
  12333. name: "Macro",
  12334. height: math.unit(75, "feet")
  12335. },
  12336. ]
  12337. ))
  12338. characterMakers.push(() => makeCharacter(
  12339. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12340. {
  12341. front: {
  12342. height: math.unit(1450, "feet"),
  12343. weight: math.unit(1.21e6, "tons"),
  12344. name: "Front",
  12345. image: {
  12346. source: "./media/characters/sekvra/front.svg",
  12347. extra: 1,
  12348. bottom: 0.03
  12349. }
  12350. },
  12351. frontClothed: {
  12352. height: math.unit(1450, "feet"),
  12353. weight: math.unit(1.21e6, "tons"),
  12354. name: "Front (Clothed)",
  12355. image: {
  12356. source: "./media/characters/sekvra/front-clothed.svg",
  12357. extra: 1,
  12358. bottom: 0.03
  12359. }
  12360. },
  12361. side: {
  12362. height: math.unit(1450, "feet"),
  12363. weight: math.unit(1.21e6, "tons"),
  12364. name: "Side",
  12365. image: {
  12366. source: "./media/characters/sekvra/side.svg",
  12367. extra: 1,
  12368. bottom: 0.025
  12369. }
  12370. },
  12371. back: {
  12372. height: math.unit(1450, "feet"),
  12373. weight: math.unit(1.21e6, "tons"),
  12374. name: "Back",
  12375. image: {
  12376. source: "./media/characters/sekvra/back.svg",
  12377. extra: 1,
  12378. bottom: 0.005
  12379. }
  12380. },
  12381. },
  12382. [
  12383. {
  12384. name: "Macro",
  12385. height: math.unit(1450, "feet"),
  12386. default: true
  12387. },
  12388. {
  12389. name: "Megamacro",
  12390. height: math.unit(15000, "feet")
  12391. },
  12392. ]
  12393. ))
  12394. characterMakers.push(() => makeCharacter(
  12395. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12396. {
  12397. front: {
  12398. height: math.unit(6, "feet"),
  12399. weight: math.unit(150, "lb"),
  12400. name: "Front",
  12401. image: {
  12402. source: "./media/characters/carmine/front.svg",
  12403. extra: 1,
  12404. bottom: 0.035
  12405. }
  12406. },
  12407. frontArmor: {
  12408. height: math.unit(6, "feet"),
  12409. weight: math.unit(150, "lb"),
  12410. name: "Front (Armor)",
  12411. image: {
  12412. source: "./media/characters/carmine/front-armor.svg",
  12413. extra: 1,
  12414. bottom: 0.035
  12415. }
  12416. },
  12417. },
  12418. [
  12419. {
  12420. name: "Large",
  12421. height: math.unit(1, "mile")
  12422. },
  12423. {
  12424. name: "Huge",
  12425. height: math.unit(40, "miles"),
  12426. default: true
  12427. },
  12428. {
  12429. name: "Colossal",
  12430. height: math.unit(2500, "miles")
  12431. },
  12432. ]
  12433. ))
  12434. characterMakers.push(() => makeCharacter(
  12435. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12436. {
  12437. front: {
  12438. height: math.unit(6, "feet"),
  12439. weight: math.unit(150, "lb"),
  12440. name: "Front",
  12441. image: {
  12442. source: "./media/characters/elyssia/front.svg",
  12443. extra: 2201 / 2035,
  12444. bottom: 0.05
  12445. }
  12446. },
  12447. frontClothed: {
  12448. height: math.unit(6, "feet"),
  12449. weight: math.unit(150, "lb"),
  12450. name: "Front (Clothed)",
  12451. image: {
  12452. source: "./media/characters/elyssia/front-clothed.svg",
  12453. extra: 2201 / 2035,
  12454. bottom: 0.05
  12455. }
  12456. },
  12457. back: {
  12458. height: math.unit(6, "feet"),
  12459. weight: math.unit(150, "lb"),
  12460. name: "Back",
  12461. image: {
  12462. source: "./media/characters/elyssia/back.svg",
  12463. extra: 2201 / 2035,
  12464. bottom: 0.013
  12465. }
  12466. },
  12467. },
  12468. [
  12469. {
  12470. name: "Smaller",
  12471. height: math.unit(150, "feet")
  12472. },
  12473. {
  12474. name: "Standard",
  12475. height: math.unit(1400, "feet"),
  12476. default: true
  12477. },
  12478. {
  12479. name: "Distracted",
  12480. height: math.unit(15000, "feet")
  12481. },
  12482. ]
  12483. ))
  12484. characterMakers.push(() => makeCharacter(
  12485. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12486. {
  12487. front: {
  12488. height: math.unit(7 + 4 / 12, "feet"),
  12489. weight: math.unit(500, "lb"),
  12490. name: "Front",
  12491. image: {
  12492. source: "./media/characters/geno-maxwell/front.svg",
  12493. extra: 2207 / 2040,
  12494. bottom: 0.015
  12495. }
  12496. },
  12497. },
  12498. [
  12499. {
  12500. name: "Micro",
  12501. height: math.unit(3, "inches")
  12502. },
  12503. {
  12504. name: "Normal",
  12505. height: math.unit(7 + 4 / 12, "feet"),
  12506. default: true
  12507. },
  12508. {
  12509. name: "Macro",
  12510. height: math.unit(220, "feet")
  12511. },
  12512. {
  12513. name: "Megamacro",
  12514. height: math.unit(11, "miles")
  12515. },
  12516. ]
  12517. ))
  12518. characterMakers.push(() => makeCharacter(
  12519. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12520. {
  12521. front: {
  12522. height: math.unit(7 + 4 / 12, "feet"),
  12523. weight: math.unit(500, "lb"),
  12524. name: "Front",
  12525. image: {
  12526. source: "./media/characters/regena-maxwell/front.svg",
  12527. extra: 3115 / 2770,
  12528. bottom: 0.02
  12529. }
  12530. },
  12531. },
  12532. [
  12533. {
  12534. name: "Normal",
  12535. height: math.unit(7 + 4 / 12, "feet"),
  12536. default: true
  12537. },
  12538. {
  12539. name: "Macro",
  12540. height: math.unit(220, "feet")
  12541. },
  12542. {
  12543. name: "Megamacro",
  12544. height: math.unit(11, "miles")
  12545. },
  12546. ]
  12547. ))
  12548. characterMakers.push(() => makeCharacter(
  12549. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12550. {
  12551. front: {
  12552. height: math.unit(6, "feet"),
  12553. weight: math.unit(150, "lb"),
  12554. name: "Front",
  12555. image: {
  12556. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12557. extra: 860 / 690,
  12558. bottom: 0.03
  12559. }
  12560. },
  12561. },
  12562. [
  12563. {
  12564. name: "Normal",
  12565. height: math.unit(1.7, "meters"),
  12566. default: true
  12567. },
  12568. ]
  12569. ))
  12570. characterMakers.push(() => makeCharacter(
  12571. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12572. {
  12573. front: {
  12574. height: math.unit(6, "feet"),
  12575. weight: math.unit(150, "lb"),
  12576. name: "Front",
  12577. image: {
  12578. source: "./media/characters/quilly/front.svg",
  12579. extra: 890 / 776
  12580. }
  12581. },
  12582. },
  12583. [
  12584. {
  12585. name: "Gigamacro",
  12586. height: math.unit(404090, "miles"),
  12587. default: true
  12588. },
  12589. ]
  12590. ))
  12591. characterMakers.push(() => makeCharacter(
  12592. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12593. {
  12594. front: {
  12595. height: math.unit(7 + 8 / 12, "feet"),
  12596. weight: math.unit(350, "lb"),
  12597. name: "Front",
  12598. image: {
  12599. source: "./media/characters/tempest/front.svg",
  12600. extra: 1175 / 1086,
  12601. bottom: 0.02
  12602. }
  12603. },
  12604. },
  12605. [
  12606. {
  12607. name: "Normal",
  12608. height: math.unit(7 + 8 / 12, "feet"),
  12609. default: true
  12610. },
  12611. ]
  12612. ))
  12613. characterMakers.push(() => makeCharacter(
  12614. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12615. {
  12616. side: {
  12617. height: math.unit(4 + 5 / 12, "feet"),
  12618. weight: math.unit(80, "lb"),
  12619. name: "Side",
  12620. image: {
  12621. source: "./media/characters/rodger/side.svg",
  12622. extra: 1235 / 1118
  12623. }
  12624. },
  12625. },
  12626. [
  12627. {
  12628. name: "Micro",
  12629. height: math.unit(1, "inch")
  12630. },
  12631. {
  12632. name: "Normal",
  12633. height: math.unit(4 + 5 / 12, "feet"),
  12634. default: true
  12635. },
  12636. {
  12637. name: "Macro",
  12638. height: math.unit(120, "feet")
  12639. },
  12640. ]
  12641. ))
  12642. characterMakers.push(() => makeCharacter(
  12643. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12644. {
  12645. front: {
  12646. height: math.unit(6, "feet"),
  12647. weight: math.unit(150, "lb"),
  12648. name: "Front",
  12649. image: {
  12650. source: "./media/characters/danyel/front.svg",
  12651. extra: 1185 / 1123,
  12652. bottom: 0.05
  12653. }
  12654. },
  12655. },
  12656. [
  12657. {
  12658. name: "Shrunken",
  12659. height: math.unit(0.5, "mm")
  12660. },
  12661. {
  12662. name: "Micro",
  12663. height: math.unit(1, "mm"),
  12664. default: true
  12665. },
  12666. {
  12667. name: "Upsized",
  12668. height: math.unit(5 + 5 / 12, "feet")
  12669. },
  12670. ]
  12671. ))
  12672. characterMakers.push(() => makeCharacter(
  12673. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12674. {
  12675. front: {
  12676. height: math.unit(5 + 6 / 12, "feet"),
  12677. weight: math.unit(200, "lb"),
  12678. name: "Front",
  12679. image: {
  12680. source: "./media/characters/vivian-bijoux/front.svg",
  12681. extra: 1,
  12682. bottom: 0.072
  12683. }
  12684. },
  12685. },
  12686. [
  12687. {
  12688. name: "Normal",
  12689. height: math.unit(5 + 6 / 12, "feet"),
  12690. default: true
  12691. },
  12692. {
  12693. name: "Bad Dream",
  12694. height: math.unit(500, "feet")
  12695. },
  12696. {
  12697. name: "Nightmare",
  12698. height: math.unit(500, "miles")
  12699. },
  12700. ]
  12701. ))
  12702. characterMakers.push(() => makeCharacter(
  12703. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12704. {
  12705. front: {
  12706. height: math.unit(6 + 1 / 12, "feet"),
  12707. weight: math.unit(260, "lb"),
  12708. name: "Front",
  12709. image: {
  12710. source: "./media/characters/zeta/front.svg",
  12711. extra: 1968 / 1889,
  12712. bottom: 0.06
  12713. }
  12714. },
  12715. back: {
  12716. height: math.unit(6 + 1 / 12, "feet"),
  12717. weight: math.unit(260, "lb"),
  12718. name: "Back",
  12719. image: {
  12720. source: "./media/characters/zeta/back.svg",
  12721. extra: 1944 / 1858,
  12722. bottom: 0.03
  12723. }
  12724. },
  12725. hand: {
  12726. height: math.unit(1.112, "feet"),
  12727. name: "Hand",
  12728. image: {
  12729. source: "./media/characters/zeta/hand.svg"
  12730. }
  12731. },
  12732. foot: {
  12733. height: math.unit(1.48, "feet"),
  12734. name: "Foot",
  12735. image: {
  12736. source: "./media/characters/zeta/foot.svg"
  12737. }
  12738. },
  12739. },
  12740. [
  12741. {
  12742. name: "Micro",
  12743. height: math.unit(6, "inches")
  12744. },
  12745. {
  12746. name: "Normal",
  12747. height: math.unit(6 + 1 / 12, "feet"),
  12748. default: true
  12749. },
  12750. {
  12751. name: "Macro",
  12752. height: math.unit(20, "feet")
  12753. },
  12754. ]
  12755. ))
  12756. characterMakers.push(() => makeCharacter(
  12757. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12758. {
  12759. front: {
  12760. height: math.unit(6, "feet"),
  12761. weight: math.unit(150, "lb"),
  12762. name: "Front",
  12763. image: {
  12764. source: "./media/characters/jamie-larsen/front.svg",
  12765. extra: 962 / 933,
  12766. bottom: 0.02
  12767. }
  12768. },
  12769. back: {
  12770. height: math.unit(6, "feet"),
  12771. weight: math.unit(150, "lb"),
  12772. name: "Back",
  12773. image: {
  12774. source: "./media/characters/jamie-larsen/back.svg",
  12775. extra: 997 / 946
  12776. }
  12777. },
  12778. },
  12779. [
  12780. {
  12781. name: "Macro",
  12782. height: math.unit(28 + 7 / 12, "feet"),
  12783. default: true
  12784. },
  12785. {
  12786. name: "Macro+",
  12787. height: math.unit(180, "feet")
  12788. },
  12789. {
  12790. name: "Megamacro",
  12791. height: math.unit(10, "miles")
  12792. },
  12793. {
  12794. name: "Gigamacro",
  12795. height: math.unit(200000, "miles")
  12796. },
  12797. ]
  12798. ))
  12799. characterMakers.push(() => makeCharacter(
  12800. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12801. {
  12802. front: {
  12803. height: math.unit(6, "feet"),
  12804. weight: math.unit(120, "lb"),
  12805. name: "Front",
  12806. image: {
  12807. source: "./media/characters/vance/front.svg",
  12808. extra: 1980 / 1890,
  12809. bottom: 0.09
  12810. }
  12811. },
  12812. back: {
  12813. height: math.unit(6, "feet"),
  12814. weight: math.unit(120, "lb"),
  12815. name: "Back",
  12816. image: {
  12817. source: "./media/characters/vance/back.svg",
  12818. extra: 2081 / 1994,
  12819. bottom: 0.014
  12820. }
  12821. },
  12822. hand: {
  12823. height: math.unit(0.88, "feet"),
  12824. name: "Hand",
  12825. image: {
  12826. source: "./media/characters/vance/hand.svg"
  12827. }
  12828. },
  12829. foot: {
  12830. height: math.unit(0.64, "feet"),
  12831. name: "Foot",
  12832. image: {
  12833. source: "./media/characters/vance/foot.svg"
  12834. }
  12835. },
  12836. },
  12837. [
  12838. {
  12839. name: "Small",
  12840. height: math.unit(90, "feet"),
  12841. default: true
  12842. },
  12843. {
  12844. name: "Macro",
  12845. height: math.unit(100, "meters")
  12846. },
  12847. {
  12848. name: "Megamacro",
  12849. height: math.unit(15, "miles")
  12850. },
  12851. ]
  12852. ))
  12853. characterMakers.push(() => makeCharacter(
  12854. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12855. {
  12856. front: {
  12857. height: math.unit(6, "feet"),
  12858. weight: math.unit(180, "lb"),
  12859. name: "Front",
  12860. image: {
  12861. source: "./media/characters/xochitl/front.svg",
  12862. extra: 2297 / 2261,
  12863. bottom: 0.065
  12864. }
  12865. },
  12866. back: {
  12867. height: math.unit(6, "feet"),
  12868. weight: math.unit(180, "lb"),
  12869. name: "Back",
  12870. image: {
  12871. source: "./media/characters/xochitl/back.svg",
  12872. extra: 2386 / 2354,
  12873. bottom: 0.01
  12874. }
  12875. },
  12876. foot: {
  12877. height: math.unit(6 / 5 * 1.15, "feet"),
  12878. weight: math.unit(150, "lb"),
  12879. name: "Foot",
  12880. image: {
  12881. source: "./media/characters/xochitl/foot.svg"
  12882. }
  12883. },
  12884. },
  12885. [
  12886. {
  12887. name: "Macro",
  12888. height: math.unit(80, "feet")
  12889. },
  12890. {
  12891. name: "Macro+",
  12892. height: math.unit(400, "feet"),
  12893. default: true
  12894. },
  12895. {
  12896. name: "Gigamacro",
  12897. height: math.unit(80000, "miles")
  12898. },
  12899. {
  12900. name: "Gigamacro+",
  12901. height: math.unit(400000, "miles")
  12902. },
  12903. {
  12904. name: "Teramacro",
  12905. height: math.unit(300, "AU")
  12906. },
  12907. ]
  12908. ))
  12909. characterMakers.push(() => makeCharacter(
  12910. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12911. {
  12912. front: {
  12913. height: math.unit(6, "feet"),
  12914. weight: math.unit(150, "lb"),
  12915. name: "Front",
  12916. image: {
  12917. source: "./media/characters/vincent/front.svg",
  12918. extra: 1130 / 1080,
  12919. bottom: 0.055
  12920. }
  12921. },
  12922. beak: {
  12923. height: math.unit(6 * 0.1, "feet"),
  12924. name: "Beak",
  12925. image: {
  12926. source: "./media/characters/vincent/beak.svg"
  12927. }
  12928. },
  12929. hand: {
  12930. height: math.unit(6 * 0.85, "feet"),
  12931. weight: math.unit(150, "lb"),
  12932. name: "Hand",
  12933. image: {
  12934. source: "./media/characters/vincent/hand.svg"
  12935. }
  12936. },
  12937. foot: {
  12938. height: math.unit(6 * 0.19, "feet"),
  12939. weight: math.unit(150, "lb"),
  12940. name: "Foot",
  12941. image: {
  12942. source: "./media/characters/vincent/foot.svg"
  12943. }
  12944. },
  12945. },
  12946. [
  12947. {
  12948. name: "Base",
  12949. height: math.unit(6 + 5 / 12, "feet"),
  12950. default: true
  12951. },
  12952. {
  12953. name: "Macro",
  12954. height: math.unit(300, "feet")
  12955. },
  12956. {
  12957. name: "Megamacro",
  12958. height: math.unit(2, "miles")
  12959. },
  12960. {
  12961. name: "Gigamacro",
  12962. height: math.unit(1000, "miles")
  12963. },
  12964. ]
  12965. ))
  12966. characterMakers.push(() => makeCharacter(
  12967. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12968. {
  12969. front: {
  12970. height: math.unit(6 + 2 / 12, "feet"),
  12971. weight: math.unit(265, "lb"),
  12972. name: "Front",
  12973. image: {
  12974. source: "./media/characters/jay/front.svg",
  12975. extra: 1510 / 1430,
  12976. bottom: 0.042
  12977. }
  12978. },
  12979. back: {
  12980. height: math.unit(6 + 2 / 12, "feet"),
  12981. weight: math.unit(265, "lb"),
  12982. name: "Back",
  12983. image: {
  12984. source: "./media/characters/jay/back.svg",
  12985. extra: 1510 / 1430,
  12986. bottom: 0.025
  12987. }
  12988. },
  12989. clothed: {
  12990. height: math.unit(6 + 2 / 12, "feet"),
  12991. weight: math.unit(265, "lb"),
  12992. name: "Front (Clothed)",
  12993. image: {
  12994. source: "./media/characters/jay/clothed.svg",
  12995. extra: 744 / 699,
  12996. bottom: 0.043
  12997. }
  12998. },
  12999. head: {
  13000. height: math.unit(1.772, "feet"),
  13001. name: "Head",
  13002. image: {
  13003. source: "./media/characters/jay/head.svg"
  13004. }
  13005. },
  13006. sizeRay: {
  13007. height: math.unit(1.331, "feet"),
  13008. name: "Size Ray",
  13009. image: {
  13010. source: "./media/characters/jay/size-ray.svg"
  13011. }
  13012. },
  13013. },
  13014. [
  13015. {
  13016. name: "Micro",
  13017. height: math.unit(1, "inch")
  13018. },
  13019. {
  13020. name: "Normal",
  13021. height: math.unit(6 + 2 / 12, "feet"),
  13022. default: true
  13023. },
  13024. {
  13025. name: "Macro",
  13026. height: math.unit(1, "mile")
  13027. },
  13028. {
  13029. name: "Megamacro",
  13030. height: math.unit(100, "miles")
  13031. },
  13032. ]
  13033. ))
  13034. characterMakers.push(() => makeCharacter(
  13035. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13036. {
  13037. front: {
  13038. height: math.unit(2, "meters"),
  13039. weight: math.unit(500, "kg"),
  13040. name: "Front",
  13041. image: {
  13042. source: "./media/characters/coatl/front.svg",
  13043. extra: 3948 / 3500,
  13044. bottom: 0.082
  13045. }
  13046. },
  13047. },
  13048. [
  13049. {
  13050. name: "Normal",
  13051. height: math.unit(4, "meters")
  13052. },
  13053. {
  13054. name: "Macro",
  13055. height: math.unit(100, "meters"),
  13056. default: true
  13057. },
  13058. {
  13059. name: "Macro+",
  13060. height: math.unit(300, "meters")
  13061. },
  13062. {
  13063. name: "Megamacro",
  13064. height: math.unit(3, "gigameters")
  13065. },
  13066. {
  13067. name: "Megamacro+",
  13068. height: math.unit(300, "terameters")
  13069. },
  13070. {
  13071. name: "Megamacro++",
  13072. height: math.unit(3, "lightyears")
  13073. },
  13074. ]
  13075. ))
  13076. characterMakers.push(() => makeCharacter(
  13077. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13078. {
  13079. front: {
  13080. height: math.unit(6, "feet"),
  13081. weight: math.unit(50, "kg"),
  13082. name: "front",
  13083. image: {
  13084. source: "./media/characters/shiroryu/front.svg",
  13085. extra: 1990 / 1935
  13086. }
  13087. },
  13088. },
  13089. [
  13090. {
  13091. name: "Mortal Mingling",
  13092. height: math.unit(3, "meters")
  13093. },
  13094. {
  13095. name: "Kaiju-ish",
  13096. height: math.unit(250, "meters")
  13097. },
  13098. {
  13099. name: "Somewhat Godly",
  13100. height: math.unit(400, "km"),
  13101. default: true
  13102. },
  13103. {
  13104. name: "Planetary",
  13105. height: math.unit(300, "megameters")
  13106. },
  13107. {
  13108. name: "Galaxy-dwarfing",
  13109. height: math.unit(450, "kiloparsecs")
  13110. },
  13111. {
  13112. name: "Universe Eater",
  13113. height: math.unit(150, "gigaparsecs")
  13114. },
  13115. {
  13116. name: "Almost Immeasurable",
  13117. height: math.unit(1.3e266, "yottaparsecs")
  13118. },
  13119. ]
  13120. ))
  13121. characterMakers.push(() => makeCharacter(
  13122. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13123. {
  13124. front: {
  13125. height: math.unit(6, "feet"),
  13126. weight: math.unit(150, "lb"),
  13127. name: "Front",
  13128. image: {
  13129. source: "./media/characters/umeko/front.svg",
  13130. extra: 1,
  13131. bottom: 0.019
  13132. }
  13133. },
  13134. frontArmored: {
  13135. height: math.unit(6, "feet"),
  13136. weight: math.unit(150, "lb"),
  13137. name: "Front (Armored)",
  13138. image: {
  13139. source: "./media/characters/umeko/front-armored.svg",
  13140. extra: 1,
  13141. bottom: 0.021
  13142. }
  13143. },
  13144. },
  13145. [
  13146. {
  13147. name: "Macro",
  13148. height: math.unit(220, "feet"),
  13149. default: true
  13150. },
  13151. {
  13152. name: "Guardian Dragon",
  13153. height: math.unit(50, "miles")
  13154. },
  13155. {
  13156. name: "Cosmic",
  13157. height: math.unit(800000, "miles")
  13158. },
  13159. ]
  13160. ))
  13161. characterMakers.push(() => makeCharacter(
  13162. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13163. {
  13164. front: {
  13165. height: math.unit(6, "feet"),
  13166. weight: math.unit(150, "lb"),
  13167. name: "Front",
  13168. image: {
  13169. source: "./media/characters/cassidy/front.svg",
  13170. extra: 1,
  13171. bottom: 0.043
  13172. }
  13173. },
  13174. },
  13175. [
  13176. {
  13177. name: "Canon Height",
  13178. height: math.unit(120, "feet"),
  13179. default: true
  13180. },
  13181. {
  13182. name: "Macro+",
  13183. height: math.unit(400, "feet")
  13184. },
  13185. {
  13186. name: "Macro++",
  13187. height: math.unit(4000, "feet")
  13188. },
  13189. {
  13190. name: "Megamacro",
  13191. height: math.unit(3, "miles")
  13192. },
  13193. ]
  13194. ))
  13195. characterMakers.push(() => makeCharacter(
  13196. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13197. {
  13198. front: {
  13199. height: math.unit(6, "feet"),
  13200. weight: math.unit(150, "lb"),
  13201. name: "Front",
  13202. image: {
  13203. source: "./media/characters/isaac/front.svg",
  13204. extra: 896 / 815,
  13205. bottom: 0.11
  13206. }
  13207. },
  13208. },
  13209. [
  13210. {
  13211. name: "Human Size",
  13212. height: math.unit(8, "feet"),
  13213. default: true
  13214. },
  13215. {
  13216. name: "Macro",
  13217. height: math.unit(400, "feet")
  13218. },
  13219. {
  13220. name: "Megamacro",
  13221. height: math.unit(50, "miles")
  13222. },
  13223. {
  13224. name: "Canon Height",
  13225. height: math.unit(200, "AU")
  13226. },
  13227. ]
  13228. ))
  13229. characterMakers.push(() => makeCharacter(
  13230. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13231. {
  13232. front: {
  13233. height: math.unit(6, "feet"),
  13234. weight: math.unit(72, "kg"),
  13235. name: "Front",
  13236. image: {
  13237. source: "./media/characters/sleekit/front.svg",
  13238. extra: 4693 / 4487,
  13239. bottom: 0.012
  13240. }
  13241. },
  13242. },
  13243. [
  13244. {
  13245. name: "Minimum Height",
  13246. height: math.unit(10, "meters")
  13247. },
  13248. {
  13249. name: "Smaller",
  13250. height: math.unit(25, "meters")
  13251. },
  13252. {
  13253. name: "Larger",
  13254. height: math.unit(38, "meters"),
  13255. default: true
  13256. },
  13257. {
  13258. name: "Maximum height",
  13259. height: math.unit(100, "meters")
  13260. },
  13261. ]
  13262. ))
  13263. characterMakers.push(() => makeCharacter(
  13264. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13265. {
  13266. front: {
  13267. height: math.unit(6, "feet"),
  13268. weight: math.unit(150, "lb"),
  13269. name: "Front",
  13270. image: {
  13271. source: "./media/characters/nillia/front.svg",
  13272. extra: 2195 / 2037,
  13273. bottom: 0.005
  13274. }
  13275. },
  13276. back: {
  13277. height: math.unit(6, "feet"),
  13278. weight: math.unit(150, "lb"),
  13279. name: "Back",
  13280. image: {
  13281. source: "./media/characters/nillia/back.svg",
  13282. extra: 2195 / 2037,
  13283. bottom: 0.005
  13284. }
  13285. },
  13286. },
  13287. [
  13288. {
  13289. name: "Canon Height",
  13290. height: math.unit(489, "feet"),
  13291. default: true
  13292. }
  13293. ]
  13294. ))
  13295. characterMakers.push(() => makeCharacter(
  13296. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13297. {
  13298. front: {
  13299. height: math.unit(6, "feet"),
  13300. weight: math.unit(150, "lb"),
  13301. name: "Front",
  13302. image: {
  13303. source: "./media/characters/mesmyriza/front.svg",
  13304. extra: 2067 / 1784,
  13305. bottom: 0.035
  13306. }
  13307. },
  13308. foot: {
  13309. height: math.unit(6 / (250 / 35), "feet"),
  13310. name: "Foot",
  13311. image: {
  13312. source: "./media/characters/mesmyriza/foot.svg"
  13313. }
  13314. },
  13315. },
  13316. [
  13317. {
  13318. name: "Macro",
  13319. height: math.unit(457, "meters"),
  13320. default: true
  13321. },
  13322. {
  13323. name: "Megamacro",
  13324. height: math.unit(8, "megameters")
  13325. },
  13326. ]
  13327. ))
  13328. characterMakers.push(() => makeCharacter(
  13329. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13330. {
  13331. front: {
  13332. height: math.unit(6, "feet"),
  13333. weight: math.unit(250, "lb"),
  13334. name: "Front",
  13335. image: {
  13336. source: "./media/characters/saudade/front.svg",
  13337. extra: 1172 / 1139,
  13338. bottom: 0.035
  13339. }
  13340. },
  13341. },
  13342. [
  13343. {
  13344. name: "Micro",
  13345. height: math.unit(3, "inches")
  13346. },
  13347. {
  13348. name: "Normal",
  13349. height: math.unit(6, "feet"),
  13350. default: true
  13351. },
  13352. {
  13353. name: "Macro",
  13354. height: math.unit(50, "feet")
  13355. },
  13356. {
  13357. name: "Megamacro",
  13358. height: math.unit(2800, "feet")
  13359. },
  13360. ]
  13361. ))
  13362. characterMakers.push(() => makeCharacter(
  13363. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13364. {
  13365. front: {
  13366. height: math.unit(5 + 4 / 12, "feet"),
  13367. weight: math.unit(100, "lb"),
  13368. name: "Front",
  13369. image: {
  13370. source: "./media/characters/keireer/front.svg",
  13371. extra: 716 / 666,
  13372. bottom: 0.05
  13373. }
  13374. },
  13375. },
  13376. [
  13377. {
  13378. name: "Normal",
  13379. height: math.unit(5 + 4 / 12, "feet"),
  13380. default: true
  13381. },
  13382. ]
  13383. ))
  13384. characterMakers.push(() => makeCharacter(
  13385. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13386. {
  13387. front: {
  13388. height: math.unit(6, "feet"),
  13389. weight: math.unit(90, "kg"),
  13390. name: "Front",
  13391. image: {
  13392. source: "./media/characters/mirja/front.svg",
  13393. extra: 1789 / 1683,
  13394. bottom: 0.05
  13395. }
  13396. },
  13397. frontDressed: {
  13398. height: math.unit(6, "feet"),
  13399. weight: math.unit(90, "lb"),
  13400. name: "Front (Dressed)",
  13401. image: {
  13402. source: "./media/characters/mirja/front-dressed.svg",
  13403. extra: 1789 / 1683,
  13404. bottom: 0.05
  13405. }
  13406. },
  13407. back: {
  13408. height: math.unit(6, "feet"),
  13409. weight: math.unit(90, "lb"),
  13410. name: "Back",
  13411. image: {
  13412. source: "./media/characters/mirja/back.svg",
  13413. extra: 953 / 917,
  13414. bottom: 0.017
  13415. }
  13416. },
  13417. },
  13418. [
  13419. {
  13420. name: "\"Incognito\"",
  13421. height: math.unit(3, "meters")
  13422. },
  13423. {
  13424. name: "Strolling Size",
  13425. height: math.unit(15, "km")
  13426. },
  13427. {
  13428. name: "Larger Strolling Size",
  13429. height: math.unit(400, "km")
  13430. },
  13431. {
  13432. name: "Preferred Size",
  13433. height: math.unit(5000, "km")
  13434. },
  13435. {
  13436. name: "True Size",
  13437. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13438. default: true
  13439. },
  13440. ]
  13441. ))
  13442. characterMakers.push(() => makeCharacter(
  13443. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13444. {
  13445. front: {
  13446. height: math.unit(15, "feet"),
  13447. weight: math.unit(880, "kg"),
  13448. name: "Front",
  13449. image: {
  13450. source: "./media/characters/nightraver/front.svg",
  13451. extra: 2444 / 2160,
  13452. bottom: 0.027
  13453. }
  13454. },
  13455. back: {
  13456. height: math.unit(15, "feet"),
  13457. weight: math.unit(880, "kg"),
  13458. name: "Back",
  13459. image: {
  13460. source: "./media/characters/nightraver/back.svg",
  13461. extra: 2309 / 2180,
  13462. bottom: 0.005
  13463. }
  13464. },
  13465. sole: {
  13466. height: math.unit(2.878, "feet"),
  13467. name: "Sole",
  13468. image: {
  13469. source: "./media/characters/nightraver/sole.svg"
  13470. }
  13471. },
  13472. foot: {
  13473. height: math.unit(2.285, "feet"),
  13474. name: "Foot",
  13475. image: {
  13476. source: "./media/characters/nightraver/foot.svg"
  13477. }
  13478. },
  13479. maw: {
  13480. height: math.unit(2.67, "feet"),
  13481. name: "Maw",
  13482. image: {
  13483. source: "./media/characters/nightraver/maw.svg"
  13484. }
  13485. },
  13486. },
  13487. [
  13488. {
  13489. name: "Micro",
  13490. height: math.unit(1, "cm")
  13491. },
  13492. {
  13493. name: "Normal",
  13494. height: math.unit(15, "feet"),
  13495. default: true
  13496. },
  13497. {
  13498. name: "Macro",
  13499. height: math.unit(300, "feet")
  13500. },
  13501. {
  13502. name: "Megamacro",
  13503. height: math.unit(300, "miles")
  13504. },
  13505. {
  13506. name: "Gigamacro",
  13507. height: math.unit(10000, "miles")
  13508. },
  13509. ]
  13510. ))
  13511. characterMakers.push(() => makeCharacter(
  13512. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13513. {
  13514. side: {
  13515. height: math.unit(2, "inches"),
  13516. weight: math.unit(5, "grams"),
  13517. name: "Side",
  13518. image: {
  13519. source: "./media/characters/arc/side.svg"
  13520. }
  13521. },
  13522. },
  13523. [
  13524. {
  13525. name: "Micro",
  13526. height: math.unit(2, "inches"),
  13527. default: true
  13528. },
  13529. ]
  13530. ))
  13531. characterMakers.push(() => makeCharacter(
  13532. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13533. {
  13534. front: {
  13535. height: math.unit(1.1938, "meters"),
  13536. weight: math.unit(54, "kg"),
  13537. name: "Front",
  13538. image: {
  13539. source: "./media/characters/nebula-shahar/front.svg",
  13540. extra: 1642 / 1436,
  13541. bottom: 0.06
  13542. }
  13543. },
  13544. },
  13545. [
  13546. {
  13547. name: "Megamicro",
  13548. height: math.unit(0.3, "mm")
  13549. },
  13550. {
  13551. name: "Micro",
  13552. height: math.unit(3, "cm")
  13553. },
  13554. {
  13555. name: "Normal",
  13556. height: math.unit(138, "cm"),
  13557. default: true
  13558. },
  13559. {
  13560. name: "Macro",
  13561. height: math.unit(30, "m")
  13562. },
  13563. ]
  13564. ))
  13565. characterMakers.push(() => makeCharacter(
  13566. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13567. {
  13568. front: {
  13569. height: math.unit(5.24, "feet"),
  13570. weight: math.unit(150, "lb"),
  13571. name: "Front",
  13572. image: {
  13573. source: "./media/characters/shayla/front.svg",
  13574. extra: 1512 / 1414,
  13575. bottom: 0.01
  13576. }
  13577. },
  13578. back: {
  13579. height: math.unit(5.24, "feet"),
  13580. weight: math.unit(150, "lb"),
  13581. name: "Back",
  13582. image: {
  13583. source: "./media/characters/shayla/back.svg",
  13584. extra: 1512 / 1414
  13585. }
  13586. },
  13587. hand: {
  13588. height: math.unit(0.7781496062992126, "feet"),
  13589. name: "Hand",
  13590. image: {
  13591. source: "./media/characters/shayla/hand.svg"
  13592. }
  13593. },
  13594. foot: {
  13595. height: math.unit(1.4206036745406823, "feet"),
  13596. name: "Foot",
  13597. image: {
  13598. source: "./media/characters/shayla/foot.svg"
  13599. }
  13600. },
  13601. },
  13602. [
  13603. {
  13604. name: "Micro",
  13605. height: math.unit(0.32, "feet")
  13606. },
  13607. {
  13608. name: "Normal",
  13609. height: math.unit(5.24, "feet"),
  13610. default: true
  13611. },
  13612. {
  13613. name: "Macro",
  13614. height: math.unit(492.12, "feet")
  13615. },
  13616. {
  13617. name: "Megamacro",
  13618. height: math.unit(186.41, "miles")
  13619. },
  13620. ]
  13621. ))
  13622. characterMakers.push(() => makeCharacter(
  13623. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13624. {
  13625. front: {
  13626. height: math.unit(2.2, "m"),
  13627. weight: math.unit(120, "kg"),
  13628. name: "Front",
  13629. image: {
  13630. source: "./media/characters/pia-jr/front.svg",
  13631. extra: 1000 / 970,
  13632. bottom: 0.035
  13633. }
  13634. },
  13635. hand: {
  13636. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13637. name: "Hand",
  13638. image: {
  13639. source: "./media/characters/pia-jr/hand.svg"
  13640. }
  13641. },
  13642. paw: {
  13643. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13644. name: "Paw",
  13645. image: {
  13646. source: "./media/characters/pia-jr/paw.svg"
  13647. }
  13648. },
  13649. },
  13650. [
  13651. {
  13652. name: "Micro",
  13653. height: math.unit(1.2, "cm")
  13654. },
  13655. {
  13656. name: "Normal",
  13657. height: math.unit(2.2, "m"),
  13658. default: true
  13659. },
  13660. {
  13661. name: "Macro",
  13662. height: math.unit(180, "m")
  13663. },
  13664. {
  13665. name: "Megamacro",
  13666. height: math.unit(420, "km")
  13667. },
  13668. ]
  13669. ))
  13670. characterMakers.push(() => makeCharacter(
  13671. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13672. {
  13673. front: {
  13674. height: math.unit(2, "m"),
  13675. weight: math.unit(115, "kg"),
  13676. name: "Front",
  13677. image: {
  13678. source: "./media/characters/pia-sr/front.svg",
  13679. extra: 760 / 730,
  13680. bottom: 0.015
  13681. }
  13682. },
  13683. back: {
  13684. height: math.unit(2, "m"),
  13685. weight: math.unit(115, "kg"),
  13686. name: "Back",
  13687. image: {
  13688. source: "./media/characters/pia-sr/back.svg",
  13689. extra: 760 / 730,
  13690. bottom: 0.01
  13691. }
  13692. },
  13693. hand: {
  13694. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13695. name: "Hand",
  13696. image: {
  13697. source: "./media/characters/pia-sr/hand.svg"
  13698. }
  13699. },
  13700. foot: {
  13701. height: math.unit(1.83, "feet"),
  13702. name: "Foot",
  13703. image: {
  13704. source: "./media/characters/pia-sr/foot.svg"
  13705. }
  13706. },
  13707. },
  13708. [
  13709. {
  13710. name: "Micro",
  13711. height: math.unit(88, "mm")
  13712. },
  13713. {
  13714. name: "Normal",
  13715. height: math.unit(2, "m"),
  13716. default: true
  13717. },
  13718. {
  13719. name: "Macro",
  13720. height: math.unit(200, "m")
  13721. },
  13722. {
  13723. name: "Megamacro",
  13724. height: math.unit(420, "km")
  13725. },
  13726. ]
  13727. ))
  13728. characterMakers.push(() => makeCharacter(
  13729. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13730. {
  13731. front: {
  13732. height: math.unit(8 + 2 / 12, "feet"),
  13733. weight: math.unit(300, "lb"),
  13734. name: "Front",
  13735. image: {
  13736. source: "./media/characters/kibibyte/front.svg",
  13737. extra: 2221 / 2098,
  13738. bottom: 0.04
  13739. }
  13740. },
  13741. },
  13742. [
  13743. {
  13744. name: "Normal",
  13745. height: math.unit(8 + 2 / 12, "feet"),
  13746. default: true
  13747. },
  13748. {
  13749. name: "Socialable Macro",
  13750. height: math.unit(50, "feet")
  13751. },
  13752. {
  13753. name: "Macro",
  13754. height: math.unit(300, "feet")
  13755. },
  13756. {
  13757. name: "Megamacro",
  13758. height: math.unit(500, "miles")
  13759. },
  13760. ]
  13761. ))
  13762. characterMakers.push(() => makeCharacter(
  13763. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13764. {
  13765. front: {
  13766. height: math.unit(6, "feet"),
  13767. weight: math.unit(150, "lb"),
  13768. name: "Front",
  13769. image: {
  13770. source: "./media/characters/felix/front.svg",
  13771. extra: 762 / 722,
  13772. bottom: 0.02
  13773. }
  13774. },
  13775. frontClothed: {
  13776. height: math.unit(6, "feet"),
  13777. weight: math.unit(150, "lb"),
  13778. name: "Front (Clothed)",
  13779. image: {
  13780. source: "./media/characters/felix/front-clothed.svg",
  13781. extra: 762 / 722,
  13782. bottom: 0.02
  13783. }
  13784. },
  13785. },
  13786. [
  13787. {
  13788. name: "Normal",
  13789. height: math.unit(6 + 8 / 12, "feet"),
  13790. default: true
  13791. },
  13792. {
  13793. name: "Macro",
  13794. height: math.unit(2600, "feet")
  13795. },
  13796. {
  13797. name: "Megamacro",
  13798. height: math.unit(450, "miles")
  13799. },
  13800. ]
  13801. ))
  13802. characterMakers.push(() => makeCharacter(
  13803. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13804. {
  13805. front: {
  13806. height: math.unit(6 + 1 / 12, "feet"),
  13807. weight: math.unit(250, "lb"),
  13808. name: "Front",
  13809. image: {
  13810. source: "./media/characters/tobo/front.svg",
  13811. extra: 608 / 586,
  13812. bottom: 0.023
  13813. }
  13814. },
  13815. back: {
  13816. height: math.unit(6 + 1 / 12, "feet"),
  13817. weight: math.unit(250, "lb"),
  13818. name: "Back",
  13819. image: {
  13820. source: "./media/characters/tobo/back.svg",
  13821. extra: 608 / 586
  13822. }
  13823. },
  13824. },
  13825. [
  13826. {
  13827. name: "Nano",
  13828. height: math.unit(2, "nm")
  13829. },
  13830. {
  13831. name: "Megamicro",
  13832. height: math.unit(0.1, "mm")
  13833. },
  13834. {
  13835. name: "Micro",
  13836. height: math.unit(1, "inch"),
  13837. default: true
  13838. },
  13839. {
  13840. name: "Human-sized",
  13841. height: math.unit(6 + 1 / 12, "feet")
  13842. },
  13843. {
  13844. name: "Macro",
  13845. height: math.unit(250, "feet")
  13846. },
  13847. {
  13848. name: "Megamacro",
  13849. height: math.unit(75, "miles")
  13850. },
  13851. {
  13852. name: "Texas-sized",
  13853. height: math.unit(750, "miles")
  13854. },
  13855. {
  13856. name: "Teramacro",
  13857. height: math.unit(50000, "miles")
  13858. },
  13859. ]
  13860. ))
  13861. characterMakers.push(() => makeCharacter(
  13862. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13863. {
  13864. front: {
  13865. height: math.unit(6, "feet"),
  13866. weight: math.unit(269, "lb"),
  13867. name: "Front",
  13868. image: {
  13869. source: "./media/characters/danny-kapowsky/front.svg",
  13870. extra: 766 / 736,
  13871. bottom: 0.044
  13872. }
  13873. },
  13874. back: {
  13875. height: math.unit(6, "feet"),
  13876. weight: math.unit(269, "lb"),
  13877. name: "Back",
  13878. image: {
  13879. source: "./media/characters/danny-kapowsky/back.svg",
  13880. extra: 797 / 760,
  13881. bottom: 0.025
  13882. }
  13883. },
  13884. },
  13885. [
  13886. {
  13887. name: "Macro",
  13888. height: math.unit(150, "feet"),
  13889. default: true
  13890. },
  13891. {
  13892. name: "Macro+",
  13893. height: math.unit(200, "feet")
  13894. },
  13895. {
  13896. name: "Macro++",
  13897. height: math.unit(300, "feet")
  13898. },
  13899. {
  13900. name: "Macro+++",
  13901. height: math.unit(400, "feet")
  13902. },
  13903. ]
  13904. ))
  13905. characterMakers.push(() => makeCharacter(
  13906. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13907. {
  13908. side: {
  13909. height: math.unit(6, "feet"),
  13910. weight: math.unit(170, "lb"),
  13911. name: "Side",
  13912. image: {
  13913. source: "./media/characters/finn/side.svg",
  13914. extra: 1953 / 1807,
  13915. bottom: 0.057
  13916. }
  13917. },
  13918. },
  13919. [
  13920. {
  13921. name: "Megamacro",
  13922. height: math.unit(14445, "feet"),
  13923. default: true
  13924. },
  13925. ]
  13926. ))
  13927. characterMakers.push(() => makeCharacter(
  13928. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13929. {
  13930. front: {
  13931. height: math.unit(5 + 6 / 12, "feet"),
  13932. weight: math.unit(125, "lb"),
  13933. name: "Front",
  13934. image: {
  13935. source: "./media/characters/roy/front.svg",
  13936. extra: 1,
  13937. bottom: 0.11
  13938. }
  13939. },
  13940. },
  13941. [
  13942. {
  13943. name: "Micro",
  13944. height: math.unit(3, "inches"),
  13945. default: true
  13946. },
  13947. {
  13948. name: "Normal",
  13949. height: math.unit(5 + 6 / 12, "feet")
  13950. },
  13951. {
  13952. name: "Lesser Macro",
  13953. height: math.unit(60, "feet")
  13954. },
  13955. {
  13956. name: "Greater Macro",
  13957. height: math.unit(120, "feet")
  13958. },
  13959. ]
  13960. ))
  13961. characterMakers.push(() => makeCharacter(
  13962. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13963. {
  13964. front: {
  13965. height: math.unit(6, "feet"),
  13966. weight: math.unit(100, "lb"),
  13967. name: "Front",
  13968. image: {
  13969. source: "./media/characters/aevsivs/front.svg",
  13970. extra: 1,
  13971. bottom: 0.03
  13972. }
  13973. },
  13974. back: {
  13975. height: math.unit(6, "feet"),
  13976. weight: math.unit(100, "lb"),
  13977. name: "Back",
  13978. image: {
  13979. source: "./media/characters/aevsivs/back.svg"
  13980. }
  13981. },
  13982. },
  13983. [
  13984. {
  13985. name: "Micro",
  13986. height: math.unit(2, "inches"),
  13987. default: true
  13988. },
  13989. {
  13990. name: "Normal",
  13991. height: math.unit(5, "feet")
  13992. },
  13993. ]
  13994. ))
  13995. characterMakers.push(() => makeCharacter(
  13996. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13997. {
  13998. front: {
  13999. height: math.unit(5 + 7 / 12, "feet"),
  14000. weight: math.unit(159, "lb"),
  14001. name: "Front",
  14002. image: {
  14003. source: "./media/characters/hildegard/front.svg",
  14004. extra: 289 / 269,
  14005. bottom: 7.63 / 297.8
  14006. }
  14007. },
  14008. back: {
  14009. height: math.unit(5 + 7 / 12, "feet"),
  14010. weight: math.unit(159, "lb"),
  14011. name: "Back",
  14012. image: {
  14013. source: "./media/characters/hildegard/back.svg",
  14014. extra: 280 / 260,
  14015. bottom: 2.3 / 282
  14016. }
  14017. },
  14018. },
  14019. [
  14020. {
  14021. name: "Normal",
  14022. height: math.unit(5 + 7 / 12, "feet"),
  14023. default: true
  14024. },
  14025. ]
  14026. ))
  14027. characterMakers.push(() => makeCharacter(
  14028. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14029. {
  14030. bernard: {
  14031. height: math.unit(2 + 7 / 12, "feet"),
  14032. weight: math.unit(66, "lb"),
  14033. name: "Bernard",
  14034. rename: true,
  14035. image: {
  14036. source: "./media/characters/bernard-wilder/bernard.svg",
  14037. extra: 192 / 128,
  14038. bottom: 0.05
  14039. }
  14040. },
  14041. wilder: {
  14042. height: math.unit(5 + 8 / 12, "feet"),
  14043. weight: math.unit(143, "lb"),
  14044. name: "Wilder",
  14045. rename: true,
  14046. image: {
  14047. source: "./media/characters/bernard-wilder/wilder.svg",
  14048. extra: 361 / 312,
  14049. bottom: 0.02
  14050. }
  14051. },
  14052. },
  14053. [
  14054. {
  14055. name: "Normal",
  14056. height: math.unit(2 + 7 / 12, "feet"),
  14057. default: true
  14058. },
  14059. ]
  14060. ))
  14061. characterMakers.push(() => makeCharacter(
  14062. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14063. {
  14064. anthro: {
  14065. height: math.unit(6 + 1 / 12, "feet"),
  14066. weight: math.unit(155, "lb"),
  14067. name: "Anthro",
  14068. image: {
  14069. source: "./media/characters/hearth/anthro.svg",
  14070. extra: 260 / 250,
  14071. bottom: 0.02
  14072. }
  14073. },
  14074. feral: {
  14075. height: math.unit(3.78, "feet"),
  14076. weight: math.unit(35, "kg"),
  14077. name: "Feral",
  14078. image: {
  14079. source: "./media/characters/hearth/feral.svg",
  14080. extra: 153 / 135,
  14081. bottom: 0.03
  14082. }
  14083. },
  14084. },
  14085. [
  14086. {
  14087. name: "Normal",
  14088. height: math.unit(6 + 1 / 12, "feet"),
  14089. default: true
  14090. },
  14091. ]
  14092. ))
  14093. characterMakers.push(() => makeCharacter(
  14094. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14095. {
  14096. front: {
  14097. height: math.unit(6, "feet"),
  14098. weight: math.unit(182, "lb"),
  14099. name: "Front",
  14100. image: {
  14101. source: "./media/characters/ingrid/front.svg",
  14102. extra: 294 / 268,
  14103. bottom: 0.027
  14104. }
  14105. },
  14106. },
  14107. [
  14108. {
  14109. name: "Normal",
  14110. height: math.unit(6, "feet"),
  14111. default: true
  14112. },
  14113. ]
  14114. ))
  14115. characterMakers.push(() => makeCharacter(
  14116. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14117. {
  14118. eevee: {
  14119. height: math.unit(2 + 10 / 12, "feet"),
  14120. weight: math.unit(86, "lb"),
  14121. name: "Malgam",
  14122. image: {
  14123. source: "./media/characters/malgam/eevee.svg",
  14124. extra: 218 / 180,
  14125. bottom: 0.2
  14126. }
  14127. },
  14128. sylveon: {
  14129. height: math.unit(4, "feet"),
  14130. weight: math.unit(101, "lb"),
  14131. name: "Future Malgam",
  14132. rename: true,
  14133. image: {
  14134. source: "./media/characters/malgam/sylveon.svg",
  14135. extra: 371 / 325,
  14136. bottom: 0.015
  14137. }
  14138. },
  14139. gigantamax: {
  14140. height: math.unit(50, "feet"),
  14141. name: "Gigantamax Malgam",
  14142. rename: true,
  14143. image: {
  14144. source: "./media/characters/malgam/gigantamax.svg"
  14145. }
  14146. },
  14147. },
  14148. [
  14149. {
  14150. name: "Normal",
  14151. height: math.unit(2 + 10 / 12, "feet"),
  14152. default: true
  14153. },
  14154. ]
  14155. ))
  14156. characterMakers.push(() => makeCharacter(
  14157. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14158. {
  14159. front: {
  14160. height: math.unit(5 + 11 / 12, "feet"),
  14161. weight: math.unit(188, "lb"),
  14162. name: "Front",
  14163. image: {
  14164. source: "./media/characters/fleur/front.svg",
  14165. extra: 309 / 283,
  14166. bottom: 0.007
  14167. }
  14168. },
  14169. },
  14170. [
  14171. {
  14172. name: "Normal",
  14173. height: math.unit(5 + 11 / 12, "feet"),
  14174. default: true
  14175. },
  14176. ]
  14177. ))
  14178. characterMakers.push(() => makeCharacter(
  14179. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14180. {
  14181. front: {
  14182. height: math.unit(5 + 4 / 12, "feet"),
  14183. weight: math.unit(122, "lb"),
  14184. name: "Front",
  14185. image: {
  14186. source: "./media/characters/jude/front.svg",
  14187. extra: 288 / 273,
  14188. bottom: 0.03
  14189. }
  14190. },
  14191. },
  14192. [
  14193. {
  14194. name: "Normal",
  14195. height: math.unit(5 + 4 / 12, "feet"),
  14196. default: true
  14197. },
  14198. ]
  14199. ))
  14200. characterMakers.push(() => makeCharacter(
  14201. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14202. {
  14203. front: {
  14204. height: math.unit(5 + 11 / 12, "feet"),
  14205. weight: math.unit(190, "lb"),
  14206. name: "Front",
  14207. image: {
  14208. source: "./media/characters/seara/front.svg",
  14209. extra: 1,
  14210. bottom: 0.05
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Normal",
  14217. height: math.unit(5 + 11 / 12, "feet"),
  14218. default: true
  14219. },
  14220. ]
  14221. ))
  14222. characterMakers.push(() => makeCharacter(
  14223. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14224. {
  14225. front: {
  14226. height: math.unit(16 + 5 / 12, "feet"),
  14227. weight: math.unit(524, "lb"),
  14228. name: "Front",
  14229. image: {
  14230. source: "./media/characters/caspian/front.svg",
  14231. extra: 1,
  14232. bottom: 0.04
  14233. }
  14234. },
  14235. },
  14236. [
  14237. {
  14238. name: "Normal",
  14239. height: math.unit(16 + 5 / 12, "feet"),
  14240. default: true
  14241. },
  14242. ]
  14243. ))
  14244. characterMakers.push(() => makeCharacter(
  14245. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14246. {
  14247. front: {
  14248. height: math.unit(5 + 7 / 12, "feet"),
  14249. weight: math.unit(170, "lb"),
  14250. name: "Front",
  14251. image: {
  14252. source: "./media/characters/mika/front.svg",
  14253. extra: 1,
  14254. bottom: 0.016
  14255. }
  14256. },
  14257. },
  14258. [
  14259. {
  14260. name: "Normal",
  14261. height: math.unit(5 + 7 / 12, "feet"),
  14262. default: true
  14263. },
  14264. ]
  14265. ))
  14266. characterMakers.push(() => makeCharacter(
  14267. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14268. {
  14269. front: {
  14270. height: math.unit(6 + 2 / 12, "feet"),
  14271. weight: math.unit(268, "lb"),
  14272. name: "Front",
  14273. image: {
  14274. source: "./media/characters/sol/front.svg",
  14275. extra: 247 / 231,
  14276. bottom: 0.05
  14277. }
  14278. },
  14279. },
  14280. [
  14281. {
  14282. name: "Normal",
  14283. height: math.unit(6 + 2 / 12, "feet"),
  14284. default: true
  14285. },
  14286. ]
  14287. ))
  14288. characterMakers.push(() => makeCharacter(
  14289. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14290. {
  14291. buizel: {
  14292. height: math.unit(2 + 5 / 12, "feet"),
  14293. weight: math.unit(87, "lb"),
  14294. name: "Buizel",
  14295. image: {
  14296. source: "./media/characters/umiko/buizel.svg",
  14297. extra: 172 / 157,
  14298. bottom: 0.01
  14299. }
  14300. },
  14301. floatzel: {
  14302. height: math.unit(5 + 9 / 12, "feet"),
  14303. weight: math.unit(250, "lb"),
  14304. name: "Floatzel",
  14305. image: {
  14306. source: "./media/characters/umiko/floatzel.svg",
  14307. extra: 262 / 248
  14308. }
  14309. },
  14310. },
  14311. [
  14312. {
  14313. name: "Normal",
  14314. height: math.unit(2 + 5 / 12, "feet"),
  14315. default: true
  14316. },
  14317. ]
  14318. ))
  14319. characterMakers.push(() => makeCharacter(
  14320. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14321. {
  14322. front: {
  14323. height: math.unit(6 + 2 / 12, "feet"),
  14324. weight: math.unit(146, "lb"),
  14325. name: "Front",
  14326. image: {
  14327. source: "./media/characters/iliac/front.svg",
  14328. extra: 389 / 365,
  14329. bottom: 0.035
  14330. }
  14331. },
  14332. },
  14333. [
  14334. {
  14335. name: "Normal",
  14336. height: math.unit(6 + 2 / 12, "feet"),
  14337. default: true
  14338. },
  14339. ]
  14340. ))
  14341. characterMakers.push(() => makeCharacter(
  14342. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14343. {
  14344. front: {
  14345. height: math.unit(6, "feet"),
  14346. weight: math.unit(170, "lb"),
  14347. name: "Front",
  14348. image: {
  14349. source: "./media/characters/topaz/front.svg",
  14350. extra: 317 / 303,
  14351. bottom: 0.055
  14352. }
  14353. },
  14354. },
  14355. [
  14356. {
  14357. name: "Normal",
  14358. height: math.unit(6, "feet"),
  14359. default: true
  14360. },
  14361. ]
  14362. ))
  14363. characterMakers.push(() => makeCharacter(
  14364. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14365. {
  14366. front: {
  14367. height: math.unit(5 + 11 / 12, "feet"),
  14368. weight: math.unit(144, "lb"),
  14369. name: "Front",
  14370. image: {
  14371. source: "./media/characters/gabriel/front.svg",
  14372. extra: 285 / 262,
  14373. bottom: 0.004
  14374. }
  14375. },
  14376. },
  14377. [
  14378. {
  14379. name: "Normal",
  14380. height: math.unit(5 + 11 / 12, "feet"),
  14381. default: true
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14387. {
  14388. side: {
  14389. height: math.unit(6 + 5 / 12, "feet"),
  14390. weight: math.unit(300, "lb"),
  14391. name: "Side",
  14392. image: {
  14393. source: "./media/characters/tempest-suicune/side.svg",
  14394. extra: 195 / 154,
  14395. bottom: 0.04
  14396. }
  14397. },
  14398. },
  14399. [
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(6 + 5 / 12, "feet"),
  14403. default: true
  14404. },
  14405. ]
  14406. ))
  14407. characterMakers.push(() => makeCharacter(
  14408. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14409. {
  14410. front: {
  14411. height: math.unit(7 + 2 / 12, "feet"),
  14412. weight: math.unit(322, "lb"),
  14413. name: "Front",
  14414. image: {
  14415. source: "./media/characters/vulcan/front.svg",
  14416. extra: 154 / 147,
  14417. bottom: 0.04
  14418. }
  14419. },
  14420. },
  14421. [
  14422. {
  14423. name: "Normal",
  14424. height: math.unit(7 + 2 / 12, "feet"),
  14425. default: true
  14426. },
  14427. ]
  14428. ))
  14429. characterMakers.push(() => makeCharacter(
  14430. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14431. {
  14432. front: {
  14433. height: math.unit(5 + 10 / 12, "feet"),
  14434. weight: math.unit(264, "lb"),
  14435. name: "Front",
  14436. image: {
  14437. source: "./media/characters/gault/front.svg",
  14438. extra: 161 / 140,
  14439. bottom: 0.028
  14440. }
  14441. },
  14442. },
  14443. [
  14444. {
  14445. name: "Normal",
  14446. height: math.unit(5 + 10 / 12, "feet"),
  14447. default: true
  14448. },
  14449. ]
  14450. ))
  14451. characterMakers.push(() => makeCharacter(
  14452. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14453. {
  14454. front: {
  14455. height: math.unit(6, "feet"),
  14456. weight: math.unit(150, "lb"),
  14457. name: "Front",
  14458. image: {
  14459. source: "./media/characters/shard/front.svg",
  14460. extra: 273 / 238,
  14461. bottom: 0.02
  14462. }
  14463. },
  14464. },
  14465. [
  14466. {
  14467. name: "Normal",
  14468. height: math.unit(3 + 6 / 12, "feet"),
  14469. default: true
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14475. {
  14476. front: {
  14477. height: math.unit(5 + 11 / 12, "feet"),
  14478. weight: math.unit(146, "lb"),
  14479. name: "Front",
  14480. image: {
  14481. source: "./media/characters/ashe/front.svg",
  14482. extra: 400 / 373,
  14483. bottom: 0.01
  14484. }
  14485. },
  14486. },
  14487. [
  14488. {
  14489. name: "Normal",
  14490. height: math.unit(5 + 11 / 12, "feet"),
  14491. default: true
  14492. },
  14493. ]
  14494. ))
  14495. characterMakers.push(() => makeCharacter(
  14496. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14497. {
  14498. front: {
  14499. height: math.unit(5 + 5 / 12, "feet"),
  14500. weight: math.unit(135, "lb"),
  14501. name: "Front",
  14502. image: {
  14503. source: "./media/characters/beatrix/front.svg",
  14504. extra: 392 / 379,
  14505. bottom: 0.01
  14506. }
  14507. },
  14508. },
  14509. [
  14510. {
  14511. name: "Normal",
  14512. height: math.unit(6, "feet"),
  14513. default: true
  14514. },
  14515. ]
  14516. ))
  14517. characterMakers.push(() => makeCharacter(
  14518. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14519. {
  14520. front: {
  14521. height: math.unit(6, "feet"),
  14522. weight: math.unit(150, "lb"),
  14523. name: "Front",
  14524. image: {
  14525. source: "./media/characters/ignatius/front.svg",
  14526. extra: 245 / 222,
  14527. bottom: 0.01
  14528. }
  14529. },
  14530. },
  14531. [
  14532. {
  14533. name: "Normal",
  14534. height: math.unit(5 + 5 / 12, "feet"),
  14535. default: true
  14536. },
  14537. ]
  14538. ))
  14539. characterMakers.push(() => makeCharacter(
  14540. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14541. {
  14542. front: {
  14543. height: math.unit(6 + 2 / 12, "feet"),
  14544. weight: math.unit(138, "lb"),
  14545. name: "Front",
  14546. image: {
  14547. source: "./media/characters/mei-li/front.svg",
  14548. extra: 237 / 229,
  14549. bottom: 0.03
  14550. }
  14551. },
  14552. },
  14553. [
  14554. {
  14555. name: "Normal",
  14556. height: math.unit(6 + 2 / 12, "feet"),
  14557. default: true
  14558. },
  14559. ]
  14560. ))
  14561. characterMakers.push(() => makeCharacter(
  14562. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14563. {
  14564. front: {
  14565. height: math.unit(2 + 4 / 12, "feet"),
  14566. weight: math.unit(62, "lb"),
  14567. name: "Front",
  14568. image: {
  14569. source: "./media/characters/puru/front.svg",
  14570. extra: 206 / 149,
  14571. bottom: 0.06
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "Normal",
  14578. height: math.unit(2 + 4 / 12, "feet"),
  14579. default: true
  14580. },
  14581. ]
  14582. ))
  14583. characterMakers.push(() => makeCharacter(
  14584. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14585. {
  14586. taur: {
  14587. height: math.unit(11, "feet"),
  14588. weight: math.unit(500, "lb"),
  14589. name: "Taur",
  14590. image: {
  14591. source: "./media/characters/kee/taur.svg",
  14592. extra: 1,
  14593. bottom: 0.04
  14594. }
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Normal",
  14600. height: math.unit(11, "feet"),
  14601. default: true
  14602. },
  14603. ]
  14604. ))
  14605. characterMakers.push(() => makeCharacter(
  14606. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14607. {
  14608. anthro: {
  14609. height: math.unit(7, "feet"),
  14610. weight: math.unit(190, "lb"),
  14611. name: "Anthro",
  14612. image: {
  14613. source: "./media/characters/cobalt-dracha/anthro.svg",
  14614. extra: 231 / 225,
  14615. bottom: 0.04
  14616. }
  14617. },
  14618. feral: {
  14619. height: math.unit(9 + 7 / 12, "feet"),
  14620. weight: math.unit(294, "lb"),
  14621. name: "Feral",
  14622. image: {
  14623. source: "./media/characters/cobalt-dracha/feral.svg",
  14624. extra: 692 / 633,
  14625. bottom: 0.05
  14626. }
  14627. },
  14628. },
  14629. [
  14630. {
  14631. name: "Normal",
  14632. height: math.unit(7, "feet"),
  14633. default: true
  14634. },
  14635. ]
  14636. ))
  14637. characterMakers.push(() => makeCharacter(
  14638. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14639. {
  14640. fallen: {
  14641. height: math.unit(11 + 8 / 12, "feet"),
  14642. weight: math.unit(485, "lb"),
  14643. name: "Java (Fallen)",
  14644. rename: true,
  14645. image: {
  14646. source: "./media/characters/java/fallen.svg",
  14647. extra: 226 / 208,
  14648. bottom: 0.005
  14649. }
  14650. },
  14651. godkin: {
  14652. height: math.unit(10 + 6 / 12, "feet"),
  14653. weight: math.unit(328, "lb"),
  14654. name: "Java (Godkin)",
  14655. rename: true,
  14656. image: {
  14657. source: "./media/characters/java/godkin.svg",
  14658. extra: 270 / 262,
  14659. bottom: 0.02
  14660. }
  14661. },
  14662. },
  14663. [
  14664. {
  14665. name: "Normal",
  14666. height: math.unit(11 + 8 / 12, "feet"),
  14667. default: true
  14668. },
  14669. ]
  14670. ))
  14671. characterMakers.push(() => makeCharacter(
  14672. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14673. {
  14674. front: {
  14675. height: math.unit(7 + 8 / 12, "feet"),
  14676. weight: math.unit(320, "lb"),
  14677. name: "Front",
  14678. image: {
  14679. source: "./media/characters/skoll/front.svg",
  14680. extra: 232 / 220,
  14681. bottom: 0.02
  14682. }
  14683. },
  14684. },
  14685. [
  14686. {
  14687. name: "Normal",
  14688. height: math.unit(7 + 8 / 12, "feet"),
  14689. default: true
  14690. },
  14691. ]
  14692. ))
  14693. characterMakers.push(() => makeCharacter(
  14694. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14695. {
  14696. front: {
  14697. height: math.unit(5 + 9 / 12, "feet"),
  14698. weight: math.unit(170, "lb"),
  14699. name: "Front",
  14700. image: {
  14701. source: "./media/characters/purna/front.svg",
  14702. extra: 239 / 229,
  14703. bottom: 0.01
  14704. }
  14705. },
  14706. },
  14707. [
  14708. {
  14709. name: "Normal",
  14710. height: math.unit(5 + 9 / 12, "feet"),
  14711. default: true
  14712. },
  14713. ]
  14714. ))
  14715. characterMakers.push(() => makeCharacter(
  14716. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14717. {
  14718. front: {
  14719. height: math.unit(5 + 9 / 12, "feet"),
  14720. weight: math.unit(142, "lb"),
  14721. name: "Front",
  14722. image: {
  14723. source: "./media/characters/kuva/front.svg",
  14724. extra: 281 / 271,
  14725. bottom: 0.006
  14726. }
  14727. },
  14728. },
  14729. [
  14730. {
  14731. name: "Normal",
  14732. height: math.unit(5 + 9 / 12, "feet"),
  14733. default: true
  14734. },
  14735. ]
  14736. ))
  14737. characterMakers.push(() => makeCharacter(
  14738. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14739. {
  14740. anthro: {
  14741. height: math.unit(9 + 2 / 12, "feet"),
  14742. weight: math.unit(270, "lb"),
  14743. name: "Anthro",
  14744. image: {
  14745. source: "./media/characters/embra/anthro.svg",
  14746. extra: 200 / 187,
  14747. bottom: 0.02
  14748. }
  14749. },
  14750. feral: {
  14751. height: math.unit(18 + 8 / 12, "feet"),
  14752. weight: math.unit(576, "lb"),
  14753. name: "Feral",
  14754. image: {
  14755. source: "./media/characters/embra/feral.svg",
  14756. extra: 152 / 137,
  14757. bottom: 0.037
  14758. }
  14759. },
  14760. },
  14761. [
  14762. {
  14763. name: "Normal",
  14764. height: math.unit(9 + 2 / 12, "feet"),
  14765. default: true
  14766. },
  14767. ]
  14768. ))
  14769. characterMakers.push(() => makeCharacter(
  14770. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14771. {
  14772. anthro: {
  14773. height: math.unit(10 + 9 / 12, "feet"),
  14774. weight: math.unit(224, "lb"),
  14775. name: "Anthro",
  14776. image: {
  14777. source: "./media/characters/grottos/anthro.svg",
  14778. extra: 350 / 332,
  14779. bottom: 0.045
  14780. }
  14781. },
  14782. feral: {
  14783. height: math.unit(20 + 7 / 12, "feet"),
  14784. weight: math.unit(629, "lb"),
  14785. name: "Feral",
  14786. image: {
  14787. source: "./media/characters/grottos/feral.svg",
  14788. extra: 207 / 190,
  14789. bottom: 0.05
  14790. }
  14791. },
  14792. },
  14793. [
  14794. {
  14795. name: "Normal",
  14796. height: math.unit(10 + 9 / 12, "feet"),
  14797. default: true
  14798. },
  14799. ]
  14800. ))
  14801. characterMakers.push(() => makeCharacter(
  14802. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14803. {
  14804. anthro: {
  14805. height: math.unit(9 + 6 / 12, "feet"),
  14806. weight: math.unit(298, "lb"),
  14807. name: "Anthro",
  14808. image: {
  14809. source: "./media/characters/frifna/anthro.svg",
  14810. extra: 282 / 269,
  14811. bottom: 0.015
  14812. }
  14813. },
  14814. feral: {
  14815. height: math.unit(16 + 2 / 12, "feet"),
  14816. weight: math.unit(624, "lb"),
  14817. name: "Feral",
  14818. image: {
  14819. source: "./media/characters/frifna/feral.svg"
  14820. }
  14821. },
  14822. },
  14823. [
  14824. {
  14825. name: "Normal",
  14826. height: math.unit(9 + 6 / 12, "feet"),
  14827. default: true
  14828. },
  14829. ]
  14830. ))
  14831. characterMakers.push(() => makeCharacter(
  14832. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14833. {
  14834. front: {
  14835. height: math.unit(6 + 2 / 12, "feet"),
  14836. weight: math.unit(168, "lb"),
  14837. name: "Front",
  14838. image: {
  14839. source: "./media/characters/elise/front.svg",
  14840. extra: 276 / 271
  14841. }
  14842. },
  14843. },
  14844. [
  14845. {
  14846. name: "Normal",
  14847. height: math.unit(6 + 2 / 12, "feet"),
  14848. default: true
  14849. },
  14850. ]
  14851. ))
  14852. characterMakers.push(() => makeCharacter(
  14853. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14854. {
  14855. front: {
  14856. height: math.unit(5 + 10 / 12, "feet"),
  14857. weight: math.unit(210, "lb"),
  14858. name: "Front",
  14859. image: {
  14860. source: "./media/characters/glade/front.svg",
  14861. extra: 258 / 247,
  14862. bottom: 0.008
  14863. }
  14864. },
  14865. },
  14866. [
  14867. {
  14868. name: "Normal",
  14869. height: math.unit(5 + 10 / 12, "feet"),
  14870. default: true
  14871. },
  14872. ]
  14873. ))
  14874. characterMakers.push(() => makeCharacter(
  14875. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14876. {
  14877. front: {
  14878. height: math.unit(5 + 10 / 12, "feet"),
  14879. weight: math.unit(129, "lb"),
  14880. name: "Front",
  14881. image: {
  14882. source: "./media/characters/rina/front.svg",
  14883. extra: 266 / 255,
  14884. bottom: 0.005
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Normal",
  14891. height: math.unit(5 + 10 / 12, "feet"),
  14892. default: true
  14893. },
  14894. ]
  14895. ))
  14896. characterMakers.push(() => makeCharacter(
  14897. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14898. {
  14899. front: {
  14900. height: math.unit(6 + 1 / 12, "feet"),
  14901. weight: math.unit(192, "lb"),
  14902. name: "Front",
  14903. image: {
  14904. source: "./media/characters/veronica/front.svg",
  14905. extra: 319 / 309,
  14906. bottom: 0.005
  14907. }
  14908. },
  14909. },
  14910. [
  14911. {
  14912. name: "Normal",
  14913. height: math.unit(6 + 1 / 12, "feet"),
  14914. default: true
  14915. },
  14916. ]
  14917. ))
  14918. characterMakers.push(() => makeCharacter(
  14919. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14920. {
  14921. front: {
  14922. height: math.unit(9 + 3 / 12, "feet"),
  14923. weight: math.unit(1100, "lb"),
  14924. name: "Front",
  14925. image: {
  14926. source: "./media/characters/braxton/front.svg",
  14927. extra: 1057 / 984,
  14928. bottom: 0.05
  14929. }
  14930. },
  14931. },
  14932. [
  14933. {
  14934. name: "Normal",
  14935. height: math.unit(9 + 3 / 12, "feet")
  14936. },
  14937. {
  14938. name: "Giant",
  14939. height: math.unit(300, "feet"),
  14940. default: true
  14941. },
  14942. {
  14943. name: "Macro",
  14944. height: math.unit(700, "feet")
  14945. },
  14946. {
  14947. name: "Megamacro",
  14948. height: math.unit(6000, "feet")
  14949. },
  14950. ]
  14951. ))
  14952. characterMakers.push(() => makeCharacter(
  14953. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14954. {
  14955. front: {
  14956. height: math.unit(6 + 7 / 12, "feet"),
  14957. weight: math.unit(150, "lb"),
  14958. name: "Front",
  14959. image: {
  14960. source: "./media/characters/blue-feyonics/front.svg",
  14961. extra: 1403 / 1306,
  14962. bottom: 0.047
  14963. }
  14964. },
  14965. },
  14966. [
  14967. {
  14968. name: "Normal",
  14969. height: math.unit(6 + 7 / 12, "feet"),
  14970. default: true
  14971. },
  14972. ]
  14973. ))
  14974. characterMakers.push(() => makeCharacter(
  14975. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14976. {
  14977. front: {
  14978. height: math.unit(1.8, "meters"),
  14979. weight: math.unit(60, "kg"),
  14980. name: "Front",
  14981. image: {
  14982. source: "./media/characters/maxwell/front.svg",
  14983. extra: 2060 / 1873
  14984. }
  14985. },
  14986. },
  14987. [
  14988. {
  14989. name: "Micro",
  14990. height: math.unit(1, "mm")
  14991. },
  14992. {
  14993. name: "Normal",
  14994. height: math.unit(1.8, "meter"),
  14995. default: true
  14996. },
  14997. {
  14998. name: "Macro",
  14999. height: math.unit(30, "meters")
  15000. },
  15001. {
  15002. name: "Megamacro",
  15003. height: math.unit(10, "km")
  15004. },
  15005. ]
  15006. ))
  15007. characterMakers.push(() => makeCharacter(
  15008. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15009. {
  15010. front: {
  15011. height: math.unit(6, "feet"),
  15012. weight: math.unit(150, "lb"),
  15013. name: "Front",
  15014. image: {
  15015. source: "./media/characters/jack/front.svg",
  15016. extra: 1754 / 1640,
  15017. bottom: 0.01
  15018. }
  15019. },
  15020. },
  15021. [
  15022. {
  15023. name: "Normal",
  15024. height: math.unit(80000, "feet"),
  15025. default: true
  15026. },
  15027. {
  15028. name: "Max size",
  15029. height: math.unit(10, "lightyears")
  15030. },
  15031. ]
  15032. ))
  15033. characterMakers.push(() => makeCharacter(
  15034. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15035. {
  15036. upright: {
  15037. height: math.unit(7, "feet"),
  15038. weight: math.unit(170, "lb"),
  15039. name: "Upright",
  15040. image: {
  15041. source: "./media/characters/cafat/upright.svg",
  15042. bottom: 0.01
  15043. }
  15044. },
  15045. uprightFull: {
  15046. height: math.unit(7, "feet"),
  15047. weight: math.unit(170, "lb"),
  15048. name: "Upright (Full)",
  15049. image: {
  15050. source: "./media/characters/cafat/upright-full.svg",
  15051. bottom: 0.01
  15052. }
  15053. },
  15054. side: {
  15055. height: math.unit(5, "feet"),
  15056. weight: math.unit(150, "lb"),
  15057. name: "Side",
  15058. image: {
  15059. source: "./media/characters/cafat/side.svg"
  15060. }
  15061. },
  15062. },
  15063. [
  15064. {
  15065. name: "Small",
  15066. height: math.unit(7, "feet"),
  15067. default: true
  15068. },
  15069. {
  15070. name: "Large",
  15071. height: math.unit(15.5, "feet")
  15072. },
  15073. ]
  15074. ))
  15075. characterMakers.push(() => makeCharacter(
  15076. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15077. {
  15078. front: {
  15079. height: math.unit(6, "feet"),
  15080. weight: math.unit(150, "lb"),
  15081. name: "Front",
  15082. image: {
  15083. source: "./media/characters/verin-raharra/front.svg",
  15084. extra: 5019 / 4835,
  15085. bottom: 0.023
  15086. }
  15087. },
  15088. },
  15089. [
  15090. {
  15091. name: "Normal",
  15092. height: math.unit(7 + 5 / 12, "feet"),
  15093. default: true
  15094. },
  15095. {
  15096. name: "Upsized",
  15097. height: math.unit(20, "feet")
  15098. },
  15099. ]
  15100. ))
  15101. characterMakers.push(() => makeCharacter(
  15102. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15103. {
  15104. front: {
  15105. height: math.unit(7, "feet"),
  15106. weight: math.unit(230, "lb"),
  15107. name: "Front",
  15108. image: {
  15109. source: "./media/characters/nakata/front.svg",
  15110. extra: 1.005,
  15111. bottom: 0.01
  15112. }
  15113. },
  15114. },
  15115. [
  15116. {
  15117. name: "Normal",
  15118. height: math.unit(7, "feet"),
  15119. default: true
  15120. },
  15121. {
  15122. name: "Big",
  15123. height: math.unit(14, "feet")
  15124. },
  15125. {
  15126. name: "Macro",
  15127. height: math.unit(400, "feet")
  15128. },
  15129. ]
  15130. ))
  15131. characterMakers.push(() => makeCharacter(
  15132. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15133. {
  15134. front: {
  15135. height: math.unit(4.91, "feet"),
  15136. weight: math.unit(100, "lb"),
  15137. name: "Front",
  15138. image: {
  15139. source: "./media/characters/lily/front.svg",
  15140. extra: 1585 / 1415,
  15141. bottom: 0.02
  15142. }
  15143. },
  15144. },
  15145. [
  15146. {
  15147. name: "Normal",
  15148. height: math.unit(4.91, "feet"),
  15149. default: true
  15150. },
  15151. ]
  15152. ))
  15153. characterMakers.push(() => makeCharacter(
  15154. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15155. {
  15156. laying: {
  15157. height: math.unit(4 + 4 / 12, "feet"),
  15158. weight: math.unit(600, "lb"),
  15159. name: "Laying",
  15160. image: {
  15161. source: "./media/characters/sheila/laying.svg",
  15162. extra: 1333 / 1265,
  15163. bottom: 0.16
  15164. }
  15165. },
  15166. },
  15167. [
  15168. {
  15169. name: "Normal",
  15170. height: math.unit(4 + 4 / 12, "feet"),
  15171. default: true
  15172. },
  15173. ]
  15174. ))
  15175. characterMakers.push(() => makeCharacter(
  15176. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15177. {
  15178. front: {
  15179. height: math.unit(6, "feet"),
  15180. weight: math.unit(190, "lb"),
  15181. name: "Front",
  15182. image: {
  15183. source: "./media/characters/sax/front.svg",
  15184. extra: 1187 / 973,
  15185. bottom: 0.042
  15186. }
  15187. },
  15188. },
  15189. [
  15190. {
  15191. name: "Micro",
  15192. height: math.unit(4, "inches"),
  15193. default: true
  15194. },
  15195. ]
  15196. ))
  15197. characterMakers.push(() => makeCharacter(
  15198. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15199. {
  15200. front: {
  15201. height: math.unit(6, "feet"),
  15202. weight: math.unit(150, "lb"),
  15203. name: "Front",
  15204. image: {
  15205. source: "./media/characters/pandora/front.svg",
  15206. extra: 2720 / 2556,
  15207. bottom: 0.015
  15208. }
  15209. },
  15210. back: {
  15211. height: math.unit(6, "feet"),
  15212. weight: math.unit(150, "lb"),
  15213. name: "Back",
  15214. image: {
  15215. source: "./media/characters/pandora/back.svg",
  15216. extra: 2720 / 2556,
  15217. bottom: 0.01
  15218. }
  15219. },
  15220. beans: {
  15221. height: math.unit(6 / 8, "feet"),
  15222. name: "Beans",
  15223. image: {
  15224. source: "./media/characters/pandora/beans.svg"
  15225. }
  15226. },
  15227. skirt: {
  15228. height: math.unit(6, "feet"),
  15229. weight: math.unit(150, "lb"),
  15230. name: "Skirt",
  15231. image: {
  15232. source: "./media/characters/pandora/skirt.svg",
  15233. extra: 1622 / 1525,
  15234. bottom: 0.015
  15235. }
  15236. },
  15237. hoodie: {
  15238. height: math.unit(6, "feet"),
  15239. weight: math.unit(150, "lb"),
  15240. name: "Hoodie",
  15241. image: {
  15242. source: "./media/characters/pandora/hoodie.svg",
  15243. extra: 1622 / 1525,
  15244. bottom: 0.015
  15245. }
  15246. },
  15247. casual: {
  15248. height: math.unit(6, "feet"),
  15249. weight: math.unit(150, "lb"),
  15250. name: "Casual",
  15251. image: {
  15252. source: "./media/characters/pandora/casual.svg",
  15253. extra: 1622 / 1525,
  15254. bottom: 0.015
  15255. }
  15256. },
  15257. },
  15258. [
  15259. {
  15260. name: "Normal",
  15261. height: math.unit(6, "feet")
  15262. },
  15263. {
  15264. name: "Big Steppy",
  15265. height: math.unit(1, "km"),
  15266. default: true
  15267. },
  15268. ]
  15269. ))
  15270. characterMakers.push(() => makeCharacter(
  15271. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15272. {
  15273. side: {
  15274. height: math.unit(10, "feet"),
  15275. weight: math.unit(800, "kg"),
  15276. name: "Side",
  15277. image: {
  15278. source: "./media/characters/venio-darcony/side.svg",
  15279. extra: 1373 / 1003,
  15280. bottom: 0.037
  15281. }
  15282. },
  15283. front: {
  15284. height: math.unit(19, "feet"),
  15285. weight: math.unit(800, "kg"),
  15286. name: "Front",
  15287. image: {
  15288. source: "./media/characters/venio-darcony/front.svg"
  15289. }
  15290. },
  15291. back: {
  15292. height: math.unit(19, "feet"),
  15293. weight: math.unit(800, "kg"),
  15294. name: "Back",
  15295. image: {
  15296. source: "./media/characters/venio-darcony/back.svg"
  15297. }
  15298. },
  15299. sideNsfw: {
  15300. height: math.unit(10, "feet"),
  15301. weight: math.unit(800, "kg"),
  15302. name: "Side (NSFW)",
  15303. image: {
  15304. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15305. extra: 1373 / 1003,
  15306. bottom: 0.037
  15307. }
  15308. },
  15309. frontNsfw: {
  15310. height: math.unit(19, "feet"),
  15311. weight: math.unit(800, "kg"),
  15312. name: "Front (NSFW)",
  15313. image: {
  15314. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15315. }
  15316. },
  15317. backNsfw: {
  15318. height: math.unit(19, "feet"),
  15319. weight: math.unit(800, "kg"),
  15320. name: "Back (NSFW)",
  15321. image: {
  15322. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15323. }
  15324. },
  15325. sideArmored: {
  15326. height: math.unit(10, "feet"),
  15327. weight: math.unit(800, "kg"),
  15328. name: "Side (Armored)",
  15329. image: {
  15330. source: "./media/characters/venio-darcony/side-armored.svg",
  15331. extra: 1373 / 1003,
  15332. bottom: 0.037
  15333. }
  15334. },
  15335. frontArmored: {
  15336. height: math.unit(19, "feet"),
  15337. weight: math.unit(900, "kg"),
  15338. name: "Front (Armored)",
  15339. image: {
  15340. source: "./media/characters/venio-darcony/front-armored.svg"
  15341. }
  15342. },
  15343. backArmored: {
  15344. height: math.unit(19, "feet"),
  15345. weight: math.unit(900, "kg"),
  15346. name: "Back (Armored)",
  15347. image: {
  15348. source: "./media/characters/venio-darcony/back-armored.svg"
  15349. }
  15350. },
  15351. sword: {
  15352. height: math.unit(10, "feet"),
  15353. weight: math.unit(50, "lb"),
  15354. name: "Sword",
  15355. image: {
  15356. source: "./media/characters/venio-darcony/sword.svg"
  15357. }
  15358. },
  15359. },
  15360. [
  15361. {
  15362. name: "Normal",
  15363. height: math.unit(10, "feet")
  15364. },
  15365. {
  15366. name: "Macro",
  15367. height: math.unit(130, "feet"),
  15368. default: true
  15369. },
  15370. {
  15371. name: "Macro+",
  15372. height: math.unit(240, "feet")
  15373. },
  15374. ]
  15375. ))
  15376. characterMakers.push(() => makeCharacter(
  15377. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15378. {
  15379. front: {
  15380. height: math.unit(6, "feet"),
  15381. weight: math.unit(150, "lb"),
  15382. name: "Front",
  15383. image: {
  15384. source: "./media/characters/veski/front.svg",
  15385. extra: 1299 / 1225,
  15386. bottom: 0.04
  15387. }
  15388. },
  15389. back: {
  15390. height: math.unit(6, "feet"),
  15391. weight: math.unit(150, "lb"),
  15392. name: "Back",
  15393. image: {
  15394. source: "./media/characters/veski/back.svg",
  15395. extra: 1299 / 1225,
  15396. bottom: 0.008
  15397. }
  15398. },
  15399. maw: {
  15400. height: math.unit(1.5 * 1.21, "feet"),
  15401. name: "Maw",
  15402. image: {
  15403. source: "./media/characters/veski/maw.svg"
  15404. }
  15405. },
  15406. },
  15407. [
  15408. {
  15409. name: "Macro",
  15410. height: math.unit(2, "km"),
  15411. default: true
  15412. },
  15413. ]
  15414. ))
  15415. characterMakers.push(() => makeCharacter(
  15416. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15417. {
  15418. front: {
  15419. height: math.unit(5 + 7 / 12, "feet"),
  15420. name: "Front",
  15421. image: {
  15422. source: "./media/characters/isabelle/front.svg",
  15423. extra: 2130 / 1976,
  15424. bottom: 0.05
  15425. }
  15426. },
  15427. },
  15428. [
  15429. {
  15430. name: "Supermicro",
  15431. height: math.unit(10, "micrometers")
  15432. },
  15433. {
  15434. name: "Micro",
  15435. height: math.unit(1, "inch")
  15436. },
  15437. {
  15438. name: "Tiny",
  15439. height: math.unit(5, "inches")
  15440. },
  15441. {
  15442. name: "Standard",
  15443. height: math.unit(5 + 7 / 12, "inches")
  15444. },
  15445. {
  15446. name: "Macro",
  15447. height: math.unit(80, "meters"),
  15448. default: true
  15449. },
  15450. {
  15451. name: "Megamacro",
  15452. height: math.unit(250, "meters")
  15453. },
  15454. {
  15455. name: "Gigamacro",
  15456. height: math.unit(5, "km")
  15457. },
  15458. {
  15459. name: "Cosmic",
  15460. height: math.unit(2.5e6, "miles")
  15461. },
  15462. ]
  15463. ))
  15464. characterMakers.push(() => makeCharacter(
  15465. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15466. {
  15467. front: {
  15468. height: math.unit(6, "feet"),
  15469. weight: math.unit(150, "lb"),
  15470. name: "Front",
  15471. image: {
  15472. source: "./media/characters/hanzo/front.svg",
  15473. extra: 374 / 344,
  15474. bottom: 0.02
  15475. }
  15476. },
  15477. },
  15478. [
  15479. {
  15480. name: "Normal",
  15481. height: math.unit(8, "feet"),
  15482. default: true
  15483. },
  15484. ]
  15485. ))
  15486. characterMakers.push(() => makeCharacter(
  15487. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15488. {
  15489. front: {
  15490. height: math.unit(7, "feet"),
  15491. weight: math.unit(130, "lb"),
  15492. name: "Front",
  15493. image: {
  15494. source: "./media/characters/anna/front.svg",
  15495. extra: 169 / 145,
  15496. bottom: 0.06
  15497. }
  15498. },
  15499. full: {
  15500. height: math.unit(4.96, "feet"),
  15501. weight: math.unit(220, "lb"),
  15502. name: "Full",
  15503. image: {
  15504. source: "./media/characters/anna/full.svg",
  15505. extra: 138 / 114,
  15506. bottom: 0.15
  15507. }
  15508. },
  15509. tongue: {
  15510. height: math.unit(2.53, "feet"),
  15511. name: "Tongue",
  15512. image: {
  15513. source: "./media/characters/anna/tongue.svg"
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Normal",
  15520. height: math.unit(7, "feet"),
  15521. default: true
  15522. },
  15523. ]
  15524. ))
  15525. characterMakers.push(() => makeCharacter(
  15526. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15527. {
  15528. front: {
  15529. height: math.unit(7, "feet"),
  15530. weight: math.unit(150, "lb"),
  15531. name: "Front",
  15532. image: {
  15533. source: "./media/characters/ian-corvid/front.svg",
  15534. extra: 150 / 142,
  15535. bottom: 0.02
  15536. }
  15537. },
  15538. back: {
  15539. height: math.unit(7, "feet"),
  15540. weight: math.unit(150, "lb"),
  15541. name: "Back",
  15542. image: {
  15543. source: "./media/characters/ian-corvid/back.svg",
  15544. extra: 150 / 143,
  15545. bottom: 0.01
  15546. }
  15547. },
  15548. stomping: {
  15549. height: math.unit(7, "feet"),
  15550. weight: math.unit(150, "lb"),
  15551. name: "Stomping",
  15552. image: {
  15553. source: "./media/characters/ian-corvid/stomping.svg",
  15554. extra: 76 / 72
  15555. }
  15556. },
  15557. sitting: {
  15558. height: math.unit(7 / 1.8, "feet"),
  15559. weight: math.unit(150, "lb"),
  15560. name: "Sitting",
  15561. image: {
  15562. source: "./media/characters/ian-corvid/sitting.svg",
  15563. extra: 1400 / 1269,
  15564. bottom: 0.15
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Tiny Microw",
  15571. height: math.unit(1, "inch")
  15572. },
  15573. {
  15574. name: "Microw",
  15575. height: math.unit(6, "inches")
  15576. },
  15577. {
  15578. name: "Crow",
  15579. height: math.unit(7 + 1 / 12, "feet"),
  15580. default: true
  15581. },
  15582. {
  15583. name: "Macrow",
  15584. height: math.unit(176, "feet")
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15590. {
  15591. front: {
  15592. height: math.unit(5 + 7 / 12, "feet"),
  15593. weight: math.unit(147, "lb"),
  15594. name: "Front",
  15595. image: {
  15596. source: "./media/characters/natalie-kellon/front.svg",
  15597. extra: 1214 / 1141,
  15598. bottom: 0.02
  15599. }
  15600. },
  15601. },
  15602. [
  15603. {
  15604. name: "Micro",
  15605. height: math.unit(1 / 16, "inch")
  15606. },
  15607. {
  15608. name: "Tiny",
  15609. height: math.unit(4, "inches")
  15610. },
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(5 + 7 / 12, "feet"),
  15614. default: true
  15615. },
  15616. {
  15617. name: "Amazon",
  15618. height: math.unit(12, "feet")
  15619. },
  15620. {
  15621. name: "Giantess",
  15622. height: math.unit(160, "meters")
  15623. },
  15624. {
  15625. name: "Titaness",
  15626. height: math.unit(800, "meters")
  15627. },
  15628. ]
  15629. ))
  15630. characterMakers.push(() => makeCharacter(
  15631. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15632. {
  15633. front: {
  15634. height: math.unit(6, "feet"),
  15635. weight: math.unit(150, "lb"),
  15636. name: "Front",
  15637. image: {
  15638. source: "./media/characters/alluria/front.svg",
  15639. extra: 806 / 738,
  15640. bottom: 0.01
  15641. }
  15642. },
  15643. side: {
  15644. height: math.unit(6, "feet"),
  15645. weight: math.unit(150, "lb"),
  15646. name: "Side",
  15647. image: {
  15648. source: "./media/characters/alluria/side.svg",
  15649. extra: 800 / 750,
  15650. }
  15651. },
  15652. back: {
  15653. height: math.unit(6, "feet"),
  15654. weight: math.unit(150, "lb"),
  15655. name: "Back",
  15656. image: {
  15657. source: "./media/characters/alluria/back.svg",
  15658. extra: 806 / 738,
  15659. }
  15660. },
  15661. frontMaid: {
  15662. height: math.unit(6, "feet"),
  15663. weight: math.unit(150, "lb"),
  15664. name: "Front (Maid)",
  15665. image: {
  15666. source: "./media/characters/alluria/front-maid.svg",
  15667. extra: 806 / 738,
  15668. bottom: 0.01
  15669. }
  15670. },
  15671. sideMaid: {
  15672. height: math.unit(6, "feet"),
  15673. weight: math.unit(150, "lb"),
  15674. name: "Side (Maid)",
  15675. image: {
  15676. source: "./media/characters/alluria/side-maid.svg",
  15677. extra: 800 / 750,
  15678. bottom: 0.005
  15679. }
  15680. },
  15681. backMaid: {
  15682. height: math.unit(6, "feet"),
  15683. weight: math.unit(150, "lb"),
  15684. name: "Back (Maid)",
  15685. image: {
  15686. source: "./media/characters/alluria/back-maid.svg",
  15687. extra: 806 / 738,
  15688. }
  15689. },
  15690. },
  15691. [
  15692. {
  15693. name: "Micro",
  15694. height: math.unit(6, "inches"),
  15695. default: true
  15696. },
  15697. ]
  15698. ))
  15699. characterMakers.push(() => makeCharacter(
  15700. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15701. {
  15702. front: {
  15703. height: math.unit(6, "feet"),
  15704. weight: math.unit(150, "lb"),
  15705. name: "Front",
  15706. image: {
  15707. source: "./media/characters/kyle/front.svg",
  15708. extra: 1069 / 962,
  15709. bottom: 77.228 / 1727.45
  15710. }
  15711. },
  15712. },
  15713. [
  15714. {
  15715. name: "Macro",
  15716. height: math.unit(150, "feet"),
  15717. default: true
  15718. },
  15719. ]
  15720. ))
  15721. characterMakers.push(() => makeCharacter(
  15722. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15723. {
  15724. front: {
  15725. height: math.unit(6, "feet"),
  15726. weight: math.unit(300, "lb"),
  15727. name: "Front",
  15728. image: {
  15729. source: "./media/characters/duncan/front.svg",
  15730. extra: 1650 / 1482,
  15731. bottom: 0.05
  15732. }
  15733. },
  15734. },
  15735. [
  15736. {
  15737. name: "Macro",
  15738. height: math.unit(100, "feet"),
  15739. default: true
  15740. },
  15741. ]
  15742. ))
  15743. characterMakers.push(() => makeCharacter(
  15744. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15745. {
  15746. front: {
  15747. height: math.unit(5 + 4 / 12, "feet"),
  15748. weight: math.unit(220, "lb"),
  15749. name: "Front",
  15750. image: {
  15751. source: "./media/characters/memory/front.svg",
  15752. extra: 3641 / 3545,
  15753. bottom: 0.03
  15754. }
  15755. },
  15756. back: {
  15757. height: math.unit(5 + 4 / 12, "feet"),
  15758. weight: math.unit(220, "lb"),
  15759. name: "Back",
  15760. image: {
  15761. source: "./media/characters/memory/back.svg",
  15762. extra: 3641 / 3545,
  15763. bottom: 0.025
  15764. }
  15765. },
  15766. frontSkirt: {
  15767. height: math.unit(5 + 4 / 12, "feet"),
  15768. weight: math.unit(220, "lb"),
  15769. name: "Front (Skirt)",
  15770. image: {
  15771. source: "./media/characters/memory/front-skirt.svg",
  15772. extra: 3641 / 3545,
  15773. bottom: 0.03
  15774. }
  15775. },
  15776. frontDress: {
  15777. height: math.unit(5 + 4 / 12, "feet"),
  15778. weight: math.unit(220, "lb"),
  15779. name: "Front (Dress)",
  15780. image: {
  15781. source: "./media/characters/memory/front-dress.svg",
  15782. extra: 3641 / 3545,
  15783. bottom: 0.03
  15784. }
  15785. },
  15786. },
  15787. [
  15788. {
  15789. name: "Micro",
  15790. height: math.unit(6, "inches"),
  15791. default: true
  15792. },
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(5 + 4 / 12, "feet")
  15796. },
  15797. ]
  15798. ))
  15799. characterMakers.push(() => makeCharacter(
  15800. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15801. {
  15802. front: {
  15803. height: math.unit(4 + 11 / 12, "feet"),
  15804. weight: math.unit(100, "lb"),
  15805. name: "Front",
  15806. image: {
  15807. source: "./media/characters/luno/front.svg",
  15808. extra: 1535 / 1487,
  15809. bottom: 0.03
  15810. }
  15811. },
  15812. },
  15813. [
  15814. {
  15815. name: "Micro",
  15816. height: math.unit(3, "inches")
  15817. },
  15818. {
  15819. name: "Normal",
  15820. height: math.unit(4 + 11 / 12, "feet"),
  15821. default: true
  15822. },
  15823. {
  15824. name: "Macro",
  15825. height: math.unit(300, "feet")
  15826. },
  15827. {
  15828. name: "Megamacro",
  15829. height: math.unit(700, "miles")
  15830. },
  15831. ]
  15832. ))
  15833. characterMakers.push(() => makeCharacter(
  15834. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15835. {
  15836. front: {
  15837. height: math.unit(6 + 2 / 12, "feet"),
  15838. weight: math.unit(170, "lb"),
  15839. name: "Front",
  15840. image: {
  15841. source: "./media/characters/jamesy/front.svg",
  15842. extra: 440 / 382,
  15843. bottom: 0.005
  15844. }
  15845. },
  15846. },
  15847. [
  15848. {
  15849. name: "Micro",
  15850. height: math.unit(3, "inches")
  15851. },
  15852. {
  15853. name: "Normal",
  15854. height: math.unit(6 + 2 / 12, "feet"),
  15855. default: true
  15856. },
  15857. {
  15858. name: "Macro",
  15859. height: math.unit(300, "feet")
  15860. },
  15861. {
  15862. name: "Megamacro",
  15863. height: math.unit(700, "miles")
  15864. },
  15865. ]
  15866. ))
  15867. characterMakers.push(() => makeCharacter(
  15868. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15869. {
  15870. front: {
  15871. height: math.unit(6, "feet"),
  15872. weight: math.unit(160, "lb"),
  15873. name: "Front",
  15874. image: {
  15875. source: "./media/characters/mark/front.svg",
  15876. extra: 3300 / 3100,
  15877. bottom: 136.42 / 3440.47
  15878. }
  15879. },
  15880. },
  15881. [
  15882. {
  15883. name: "Macro",
  15884. height: math.unit(120, "meters")
  15885. },
  15886. {
  15887. name: "Bigger Macro",
  15888. height: math.unit(350, "meters")
  15889. },
  15890. {
  15891. name: "Megamacro",
  15892. height: math.unit(8, "km"),
  15893. default: true
  15894. },
  15895. {
  15896. name: "Continental",
  15897. height: math.unit(4550, "km")
  15898. },
  15899. {
  15900. name: "Planetary",
  15901. height: math.unit(65000, "km")
  15902. },
  15903. ]
  15904. ))
  15905. characterMakers.push(() => makeCharacter(
  15906. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15907. {
  15908. front: {
  15909. height: math.unit(6, "feet"),
  15910. weight: math.unit(400, "lb"),
  15911. name: "Front",
  15912. image: {
  15913. source: "./media/characters/mac/front.svg",
  15914. extra: 1048 / 987.7,
  15915. bottom: 60 / 1107.6,
  15916. }
  15917. },
  15918. },
  15919. [
  15920. {
  15921. name: "Macro",
  15922. height: math.unit(500, "feet"),
  15923. default: true
  15924. },
  15925. ]
  15926. ))
  15927. characterMakers.push(() => makeCharacter(
  15928. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15929. {
  15930. front: {
  15931. height: math.unit(5 + 2 / 12, "feet"),
  15932. weight: math.unit(190, "lb"),
  15933. name: "Front",
  15934. image: {
  15935. source: "./media/characters/bari/front.svg",
  15936. extra: 3156 / 2880,
  15937. bottom: 0.03
  15938. }
  15939. },
  15940. back: {
  15941. height: math.unit(5 + 2 / 12, "feet"),
  15942. weight: math.unit(190, "lb"),
  15943. name: "Back",
  15944. image: {
  15945. source: "./media/characters/bari/back.svg",
  15946. extra: 3260 / 2834,
  15947. bottom: 0.025
  15948. }
  15949. },
  15950. frontPlush: {
  15951. height: math.unit(5 + 2 / 12, "feet"),
  15952. weight: math.unit(190, "lb"),
  15953. name: "Front (Plush)",
  15954. image: {
  15955. source: "./media/characters/bari/front-plush.svg",
  15956. extra: 1112 / 1061,
  15957. bottom: 0.002
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Micro",
  15964. height: math.unit(3, "inches")
  15965. },
  15966. {
  15967. name: "Normal",
  15968. height: math.unit(5 + 2 / 12, "feet"),
  15969. default: true
  15970. },
  15971. {
  15972. name: "Macro",
  15973. height: math.unit(20, "feet")
  15974. },
  15975. ]
  15976. ))
  15977. characterMakers.push(() => makeCharacter(
  15978. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15979. {
  15980. front: {
  15981. height: math.unit(6 + 1 / 12, "feet"),
  15982. weight: math.unit(275, "lb"),
  15983. name: "Front",
  15984. image: {
  15985. source: "./media/characters/hunter-misha-raven/front.svg"
  15986. }
  15987. },
  15988. },
  15989. [
  15990. {
  15991. name: "Mortal",
  15992. height: math.unit(6 + 1 / 12, "feet")
  15993. },
  15994. {
  15995. name: "Divine",
  15996. height: math.unit(1.12134e34, "parsecs"),
  15997. default: true
  15998. },
  15999. ]
  16000. ))
  16001. characterMakers.push(() => makeCharacter(
  16002. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16003. {
  16004. front: {
  16005. height: math.unit(6 + 3 / 12, "feet"),
  16006. weight: math.unit(220, "lb"),
  16007. name: "Front",
  16008. image: {
  16009. source: "./media/characters/max-calore/front.svg",
  16010. extra: 1700 / 1648,
  16011. bottom: 0.01
  16012. }
  16013. },
  16014. back: {
  16015. height: math.unit(6 + 3 / 12, "feet"),
  16016. weight: math.unit(220, "lb"),
  16017. name: "Back",
  16018. image: {
  16019. source: "./media/characters/max-calore/back.svg",
  16020. extra: 1700 / 1648,
  16021. bottom: 0.01
  16022. }
  16023. },
  16024. },
  16025. [
  16026. {
  16027. name: "Normal",
  16028. height: math.unit(6 + 3 / 12, "feet"),
  16029. default: true
  16030. },
  16031. ]
  16032. ))
  16033. characterMakers.push(() => makeCharacter(
  16034. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16035. {
  16036. side: {
  16037. height: math.unit(2 + 8 / 12, "feet"),
  16038. weight: math.unit(99, "lb"),
  16039. name: "Side",
  16040. image: {
  16041. source: "./media/characters/aspen/side.svg",
  16042. extra: 152 / 138,
  16043. bottom: 0.032
  16044. }
  16045. },
  16046. },
  16047. [
  16048. {
  16049. name: "Normal",
  16050. height: math.unit(2 + 8 / 12, "feet"),
  16051. default: true
  16052. },
  16053. ]
  16054. ))
  16055. characterMakers.push(() => makeCharacter(
  16056. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16057. {
  16058. side: {
  16059. height: math.unit(3 + 2 / 12, "feet"),
  16060. weight: math.unit(224, "lb"),
  16061. name: "Side",
  16062. image: {
  16063. source: "./media/characters/sheila-feral-wolf/side.svg",
  16064. extra: 179 / 166,
  16065. bottom: 0.03
  16066. }
  16067. },
  16068. },
  16069. [
  16070. {
  16071. name: "Normal",
  16072. height: math.unit(3 + 2 / 12, "feet"),
  16073. default: true
  16074. },
  16075. ]
  16076. ))
  16077. characterMakers.push(() => makeCharacter(
  16078. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16079. {
  16080. side: {
  16081. height: math.unit(1 + 9 / 12, "feet"),
  16082. weight: math.unit(38, "lb"),
  16083. name: "Side",
  16084. image: {
  16085. source: "./media/characters/michelle/side.svg",
  16086. extra: 147 / 136.7,
  16087. bottom: 0.03
  16088. }
  16089. },
  16090. },
  16091. [
  16092. {
  16093. name: "Normal",
  16094. height: math.unit(1 + 9 / 12, "feet"),
  16095. default: true
  16096. },
  16097. ]
  16098. ))
  16099. characterMakers.push(() => makeCharacter(
  16100. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16101. {
  16102. front: {
  16103. height: math.unit(1 + 1 / 12, "feet"),
  16104. weight: math.unit(18, "lb"),
  16105. name: "Front",
  16106. image: {
  16107. source: "./media/characters/nino/front.svg"
  16108. }
  16109. },
  16110. },
  16111. [
  16112. {
  16113. name: "Normal",
  16114. height: math.unit(1 + 1 / 12, "feet"),
  16115. default: true
  16116. },
  16117. ]
  16118. ))
  16119. characterMakers.push(() => makeCharacter(
  16120. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16121. {
  16122. front: {
  16123. height: math.unit(1, "feet"),
  16124. weight: math.unit(16, "lb"),
  16125. name: "Front",
  16126. image: {
  16127. source: "./media/characters/viola/front.svg"
  16128. }
  16129. },
  16130. },
  16131. [
  16132. {
  16133. name: "Normal",
  16134. height: math.unit(1, "feet"),
  16135. default: true
  16136. },
  16137. ]
  16138. ))
  16139. characterMakers.push(() => makeCharacter(
  16140. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16141. {
  16142. front: {
  16143. height: math.unit(6 + 5 / 12, "feet"),
  16144. weight: math.unit(580, "lb"),
  16145. name: "Front",
  16146. image: {
  16147. source: "./media/characters/atlas/front.svg",
  16148. extra: 298.5 / 290,
  16149. bottom: 0.015
  16150. }
  16151. },
  16152. },
  16153. [
  16154. {
  16155. name: "Normal",
  16156. height: math.unit(6 + 5 / 12, "feet"),
  16157. default: true
  16158. },
  16159. ]
  16160. ))
  16161. characterMakers.push(() => makeCharacter(
  16162. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16163. {
  16164. side: {
  16165. height: math.unit(1 + 10 / 12, "feet"),
  16166. weight: math.unit(25, "lb"),
  16167. name: "Side",
  16168. image: {
  16169. source: "./media/characters/davy/side.svg",
  16170. extra: 200 / 170,
  16171. bottom: 0.01
  16172. }
  16173. },
  16174. },
  16175. [
  16176. {
  16177. name: "Normal",
  16178. height: math.unit(1 + 10 / 12, "feet"),
  16179. default: true
  16180. },
  16181. ]
  16182. ))
  16183. characterMakers.push(() => makeCharacter(
  16184. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16185. {
  16186. side: {
  16187. height: math.unit(4 + 8 / 12, "feet"),
  16188. weight: math.unit(166, "lb"),
  16189. name: "Side",
  16190. image: {
  16191. source: "./media/characters/fiona/side.svg",
  16192. extra: 232 / 220,
  16193. bottom: 0.03
  16194. }
  16195. },
  16196. },
  16197. [
  16198. {
  16199. name: "Normal",
  16200. height: math.unit(4 + 8 / 12, "feet"),
  16201. default: true
  16202. },
  16203. ]
  16204. ))
  16205. characterMakers.push(() => makeCharacter(
  16206. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16207. {
  16208. front: {
  16209. height: math.unit(2, "feet"),
  16210. weight: math.unit(62, "lb"),
  16211. name: "Front",
  16212. image: {
  16213. source: "./media/characters/lyla/front.svg",
  16214. bottom: 0.1
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Normal",
  16221. height: math.unit(2, "feet"),
  16222. default: true
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16228. {
  16229. side: {
  16230. height: math.unit(1.8, "feet"),
  16231. weight: math.unit(44, "lb"),
  16232. name: "Side",
  16233. image: {
  16234. source: "./media/characters/perseus/side.svg",
  16235. bottom: 0.21
  16236. }
  16237. },
  16238. },
  16239. [
  16240. {
  16241. name: "Normal",
  16242. height: math.unit(1.8, "feet"),
  16243. default: true
  16244. },
  16245. ]
  16246. ))
  16247. characterMakers.push(() => makeCharacter(
  16248. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16249. {
  16250. side: {
  16251. height: math.unit(4 + 2 / 12, "feet"),
  16252. weight: math.unit(20, "lb"),
  16253. name: "Side",
  16254. image: {
  16255. source: "./media/characters/remus/side.svg"
  16256. }
  16257. },
  16258. },
  16259. [
  16260. {
  16261. name: "Normal",
  16262. height: math.unit(4 + 2 / 12, "feet"),
  16263. default: true
  16264. },
  16265. ]
  16266. ))
  16267. characterMakers.push(() => makeCharacter(
  16268. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16269. {
  16270. front: {
  16271. height: math.unit(4 + 11 / 12, "feet"),
  16272. weight: math.unit(114, "lb"),
  16273. name: "Front",
  16274. image: {
  16275. source: "./media/characters/raf/front.svg",
  16276. bottom: 20.5 / 1863
  16277. }
  16278. },
  16279. side: {
  16280. height: math.unit(4 + 11 / 12, "feet"),
  16281. weight: math.unit(114, "lb"),
  16282. name: "Side",
  16283. image: {
  16284. source: "./media/characters/raf/side.svg",
  16285. bottom: 22 / 1822
  16286. }
  16287. },
  16288. },
  16289. [
  16290. {
  16291. name: "Micro",
  16292. height: math.unit(2, "inches")
  16293. },
  16294. {
  16295. name: "Normal",
  16296. height: math.unit(4 + 11 / 12, "feet"),
  16297. default: true
  16298. },
  16299. {
  16300. name: "Macro",
  16301. height: math.unit(70, "feet")
  16302. },
  16303. ]
  16304. ))
  16305. characterMakers.push(() => makeCharacter(
  16306. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16307. {
  16308. front: {
  16309. height: math.unit(1.5, "meters"),
  16310. weight: math.unit(68, "kg"),
  16311. name: "Front",
  16312. image: {
  16313. source: "./media/characters/liam-einarr/front.svg",
  16314. extra: 2822 / 2666
  16315. }
  16316. },
  16317. back: {
  16318. height: math.unit(1.5, "meters"),
  16319. weight: math.unit(68, "kg"),
  16320. name: "Back",
  16321. image: {
  16322. source: "./media/characters/liam-einarr/back.svg",
  16323. extra: 2822 / 2666,
  16324. bottom: 0.015
  16325. }
  16326. },
  16327. },
  16328. [
  16329. {
  16330. name: "Normal",
  16331. height: math.unit(1.5, "meters"),
  16332. default: true
  16333. },
  16334. {
  16335. name: "Macro",
  16336. height: math.unit(150, "meters")
  16337. },
  16338. {
  16339. name: "Megamacro",
  16340. height: math.unit(35, "km")
  16341. },
  16342. ]
  16343. ))
  16344. characterMakers.push(() => makeCharacter(
  16345. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16346. {
  16347. front: {
  16348. height: math.unit(6, "feet"),
  16349. weight: math.unit(75, "kg"),
  16350. name: "Front",
  16351. image: {
  16352. source: "./media/characters/linda/front.svg",
  16353. extra: 930 / 874,
  16354. bottom: 0.004
  16355. }
  16356. },
  16357. },
  16358. [
  16359. {
  16360. name: "Normal",
  16361. height: math.unit(6, "feet"),
  16362. default: true
  16363. },
  16364. ]
  16365. ))
  16366. characterMakers.push(() => makeCharacter(
  16367. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16368. {
  16369. front: {
  16370. height: math.unit(6 + 8 / 12, "feet"),
  16371. weight: math.unit(220, "lb"),
  16372. name: "Front",
  16373. image: {
  16374. source: "./media/characters/caylex/front.svg",
  16375. extra: 821 / 772,
  16376. bottom: 0.07
  16377. }
  16378. },
  16379. back: {
  16380. height: math.unit(6 + 8 / 12, "feet"),
  16381. weight: math.unit(220, "lb"),
  16382. name: "Back",
  16383. image: {
  16384. source: "./media/characters/caylex/back.svg",
  16385. extra: 821 / 772,
  16386. bottom: 0.022
  16387. }
  16388. },
  16389. hand: {
  16390. height: math.unit(1.25, "feet"),
  16391. name: "Hand",
  16392. image: {
  16393. source: "./media/characters/caylex/hand.svg"
  16394. }
  16395. },
  16396. foot: {
  16397. height: math.unit(1.6, "feet"),
  16398. name: "Foot",
  16399. image: {
  16400. source: "./media/characters/caylex/foot.svg"
  16401. }
  16402. },
  16403. armored: {
  16404. height: math.unit(6 + 8 / 12, "feet"),
  16405. weight: math.unit(250, "lb"),
  16406. name: "Armored",
  16407. image: {
  16408. source: "./media/characters/caylex/armored.svg",
  16409. extra: 1420 / 1310,
  16410. bottom: 0.045
  16411. }
  16412. },
  16413. },
  16414. [
  16415. {
  16416. name: "Normal",
  16417. height: math.unit(6 + 8 / 12, "feet"),
  16418. default: true
  16419. },
  16420. {
  16421. name: "Normal+",
  16422. height: math.unit(12, "feet")
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16428. {
  16429. front: {
  16430. height: math.unit(7 + 6 / 12, "feet"),
  16431. weight: math.unit(288, "lb"),
  16432. name: "Front",
  16433. image: {
  16434. source: "./media/characters/alana/front.svg",
  16435. extra: 679 / 653,
  16436. bottom: 22.5 / 701
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Normal",
  16443. height: math.unit(7 + 6 / 12, "feet")
  16444. },
  16445. {
  16446. name: "Large",
  16447. height: math.unit(50, "feet")
  16448. },
  16449. {
  16450. name: "Macro",
  16451. height: math.unit(100, "feet"),
  16452. default: true
  16453. },
  16454. {
  16455. name: "Macro+",
  16456. height: math.unit(200, "feet")
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16462. {
  16463. front: {
  16464. height: math.unit(6 + 1 / 12, "feet"),
  16465. weight: math.unit(210, "lb"),
  16466. name: "Front",
  16467. image: {
  16468. source: "./media/characters/hasani/front.svg",
  16469. extra: 244 / 232,
  16470. bottom: 0.01
  16471. }
  16472. },
  16473. back: {
  16474. height: math.unit(6 + 1 / 12, "feet"),
  16475. weight: math.unit(210, "lb"),
  16476. name: "Back",
  16477. image: {
  16478. source: "./media/characters/hasani/back.svg",
  16479. extra: 244 / 232,
  16480. bottom: 0.01
  16481. }
  16482. },
  16483. },
  16484. [
  16485. {
  16486. name: "Normal",
  16487. height: math.unit(6 + 1 / 12, "feet")
  16488. },
  16489. {
  16490. name: "Macro",
  16491. height: math.unit(175, "feet"),
  16492. default: true
  16493. },
  16494. ]
  16495. ))
  16496. characterMakers.push(() => makeCharacter(
  16497. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16498. {
  16499. front: {
  16500. height: math.unit(1.82, "meters"),
  16501. weight: math.unit(140, "lb"),
  16502. name: "Front",
  16503. image: {
  16504. source: "./media/characters/nita/front.svg",
  16505. extra: 2473 / 2363,
  16506. bottom: 0.01
  16507. }
  16508. },
  16509. },
  16510. [
  16511. {
  16512. name: "Normal",
  16513. height: math.unit(1.82, "m")
  16514. },
  16515. {
  16516. name: "Macro",
  16517. height: math.unit(300, "m")
  16518. },
  16519. {
  16520. name: "Mistake Canon",
  16521. height: math.unit(0.5, "miles"),
  16522. default: true
  16523. },
  16524. {
  16525. name: "Big Mistake",
  16526. height: math.unit(13, "miles")
  16527. },
  16528. {
  16529. name: "Playing God",
  16530. height: math.unit(2450, "miles")
  16531. },
  16532. ]
  16533. ))
  16534. characterMakers.push(() => makeCharacter(
  16535. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16536. {
  16537. front: {
  16538. height: math.unit(4, "feet"),
  16539. weight: math.unit(120, "lb"),
  16540. name: "Front",
  16541. image: {
  16542. source: "./media/characters/shiriko/front.svg",
  16543. extra: 195 / 188
  16544. }
  16545. },
  16546. },
  16547. [
  16548. {
  16549. name: "Normal",
  16550. height: math.unit(4, "feet"),
  16551. default: true
  16552. },
  16553. ]
  16554. ))
  16555. characterMakers.push(() => makeCharacter(
  16556. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16557. {
  16558. front: {
  16559. height: math.unit(6, "feet"),
  16560. name: "front",
  16561. image: {
  16562. source: "./media/characters/deja/front.svg",
  16563. extra: 926 / 840,
  16564. bottom: 0.07
  16565. }
  16566. },
  16567. },
  16568. [
  16569. {
  16570. name: "Planck Length",
  16571. height: math.unit(1.6e-35, "meters")
  16572. },
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(30.48, "meters"),
  16576. default: true
  16577. },
  16578. {
  16579. name: "Universal",
  16580. height: math.unit(8.8e26, "meters")
  16581. },
  16582. ]
  16583. ))
  16584. characterMakers.push(() => makeCharacter(
  16585. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16586. {
  16587. side: {
  16588. height: math.unit(8, "feet"),
  16589. weight: math.unit(6300, "lb"),
  16590. name: "Side",
  16591. image: {
  16592. source: "./media/characters/anima/side.svg",
  16593. bottom: 0.035
  16594. }
  16595. },
  16596. },
  16597. [
  16598. {
  16599. name: "Normal",
  16600. height: math.unit(8, "feet"),
  16601. default: true
  16602. },
  16603. ]
  16604. ))
  16605. characterMakers.push(() => makeCharacter(
  16606. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16607. {
  16608. front: {
  16609. height: math.unit(8, "feet"),
  16610. weight: math.unit(350, "lb"),
  16611. name: "Front",
  16612. image: {
  16613. source: "./media/characters/bianca/front.svg",
  16614. extra: 234 / 225,
  16615. bottom: 0.03
  16616. }
  16617. },
  16618. },
  16619. [
  16620. {
  16621. name: "Normal",
  16622. height: math.unit(8, "feet"),
  16623. default: true
  16624. },
  16625. ]
  16626. ))
  16627. characterMakers.push(() => makeCharacter(
  16628. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16629. {
  16630. front: {
  16631. height: math.unit(6, "feet"),
  16632. weight: math.unit(150, "lb"),
  16633. name: "Front",
  16634. image: {
  16635. source: "./media/characters/adinia/front.svg",
  16636. extra: 1845 / 1672,
  16637. bottom: 0.02
  16638. }
  16639. },
  16640. back: {
  16641. height: math.unit(6, "feet"),
  16642. weight: math.unit(150, "lb"),
  16643. name: "Back",
  16644. image: {
  16645. source: "./media/characters/adinia/back.svg",
  16646. extra: 1845 / 1672,
  16647. bottom: 0.002
  16648. }
  16649. },
  16650. },
  16651. [
  16652. {
  16653. name: "Normal",
  16654. height: math.unit(11 + 5 / 12, "feet"),
  16655. default: true
  16656. },
  16657. ]
  16658. ))
  16659. characterMakers.push(() => makeCharacter(
  16660. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16661. {
  16662. front: {
  16663. height: math.unit(3, "meters"),
  16664. weight: math.unit(200, "kg"),
  16665. name: "Front",
  16666. image: {
  16667. source: "./media/characters/lykasa/front.svg",
  16668. extra: 1076 / 976,
  16669. bottom: 0.06
  16670. }
  16671. },
  16672. },
  16673. [
  16674. {
  16675. name: "Normal",
  16676. height: math.unit(3, "meters")
  16677. },
  16678. {
  16679. name: "Kaiju",
  16680. height: math.unit(120, "meters"),
  16681. default: true
  16682. },
  16683. {
  16684. name: "Mega Kaiju",
  16685. height: math.unit(240, "km")
  16686. },
  16687. {
  16688. name: "Giga Kaiju",
  16689. height: math.unit(400, "megameters")
  16690. },
  16691. {
  16692. name: "Tera Kaiju",
  16693. height: math.unit(800, "gigameters")
  16694. },
  16695. {
  16696. name: "Kaiju Dragon Goddess",
  16697. height: math.unit(26, "zettaparsecs")
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16703. {
  16704. side: {
  16705. height: math.unit(283 / 124 * 6, "feet"),
  16706. weight: math.unit(35000, "lb"),
  16707. name: "Side",
  16708. image: {
  16709. source: "./media/characters/malfaren/side.svg",
  16710. extra: 2500 / 1010,
  16711. bottom: 0.01
  16712. }
  16713. },
  16714. front: {
  16715. height: math.unit(22.36, "feet"),
  16716. weight: math.unit(35000, "lb"),
  16717. name: "Front",
  16718. image: {
  16719. source: "./media/characters/malfaren/front.svg",
  16720. extra: 1631 / 1476,
  16721. bottom: 0.01
  16722. }
  16723. },
  16724. maw: {
  16725. height: math.unit(6.9, "feet"),
  16726. name: "Maw",
  16727. image: {
  16728. source: "./media/characters/malfaren/maw.svg"
  16729. }
  16730. },
  16731. },
  16732. [
  16733. {
  16734. name: "Big",
  16735. height: math.unit(283 / 162 * 6, "feet"),
  16736. },
  16737. {
  16738. name: "Bigger",
  16739. height: math.unit(283 / 124 * 6, "feet")
  16740. },
  16741. {
  16742. name: "Massive",
  16743. height: math.unit(283 / 92 * 6, "feet"),
  16744. default: true
  16745. },
  16746. {
  16747. name: "👀💦",
  16748. height: math.unit(283 / 73 * 6, "feet"),
  16749. },
  16750. ]
  16751. ))
  16752. characterMakers.push(() => makeCharacter(
  16753. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16754. {
  16755. front: {
  16756. height: math.unit(1.7, "m"),
  16757. weight: math.unit(70, "kg"),
  16758. name: "Front",
  16759. image: {
  16760. source: "./media/characters/kernel/front.svg",
  16761. extra: 222 / 210,
  16762. bottom: 0.007
  16763. }
  16764. },
  16765. },
  16766. [
  16767. {
  16768. name: "Nano",
  16769. height: math.unit(17, "micrometers")
  16770. },
  16771. {
  16772. name: "Micro",
  16773. height: math.unit(1.7, "mm")
  16774. },
  16775. {
  16776. name: "Small",
  16777. height: math.unit(1.7, "cm")
  16778. },
  16779. {
  16780. name: "Normal",
  16781. height: math.unit(1.7, "m"),
  16782. default: true
  16783. },
  16784. ]
  16785. ))
  16786. characterMakers.push(() => makeCharacter(
  16787. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16788. {
  16789. front: {
  16790. height: math.unit(1.75, "meters"),
  16791. weight: math.unit(65, "kg"),
  16792. name: "Front",
  16793. image: {
  16794. source: "./media/characters/jayne-folest/front.svg",
  16795. extra: 2115 / 2007,
  16796. bottom: 0.02
  16797. }
  16798. },
  16799. back: {
  16800. height: math.unit(1.75, "meters"),
  16801. weight: math.unit(65, "kg"),
  16802. name: "Back",
  16803. image: {
  16804. source: "./media/characters/jayne-folest/back.svg",
  16805. extra: 2115 / 2007,
  16806. bottom: 0.005
  16807. }
  16808. },
  16809. frontClothed: {
  16810. height: math.unit(1.75, "meters"),
  16811. weight: math.unit(65, "kg"),
  16812. name: "Front (Clothed)",
  16813. image: {
  16814. source: "./media/characters/jayne-folest/front-clothed.svg",
  16815. extra: 2115 / 2007,
  16816. bottom: 0.035
  16817. }
  16818. },
  16819. hand: {
  16820. height: math.unit(1 / 1.260, "feet"),
  16821. name: "Hand",
  16822. image: {
  16823. source: "./media/characters/jayne-folest/hand.svg"
  16824. }
  16825. },
  16826. foot: {
  16827. height: math.unit(1 / 0.918, "feet"),
  16828. name: "Foot",
  16829. image: {
  16830. source: "./media/characters/jayne-folest/foot.svg"
  16831. }
  16832. },
  16833. },
  16834. [
  16835. {
  16836. name: "Micro",
  16837. height: math.unit(4, "cm")
  16838. },
  16839. {
  16840. name: "Normal",
  16841. height: math.unit(1.75, "meters")
  16842. },
  16843. {
  16844. name: "Macro",
  16845. height: math.unit(47.5, "meters"),
  16846. default: true
  16847. },
  16848. ]
  16849. ))
  16850. characterMakers.push(() => makeCharacter(
  16851. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16852. {
  16853. front: {
  16854. height: math.unit(180, "cm"),
  16855. weight: math.unit(70, "kg"),
  16856. name: "Front",
  16857. image: {
  16858. source: "./media/characters/algier/front.svg",
  16859. extra: 596 / 572,
  16860. bottom: 0.04
  16861. }
  16862. },
  16863. back: {
  16864. height: math.unit(180, "cm"),
  16865. weight: math.unit(70, "kg"),
  16866. name: "Back",
  16867. image: {
  16868. source: "./media/characters/algier/back.svg",
  16869. extra: 596 / 572,
  16870. bottom: 0.025
  16871. }
  16872. },
  16873. frontdressed: {
  16874. height: math.unit(180, "cm"),
  16875. weight: math.unit(150, "kg"),
  16876. name: "Front-dressed",
  16877. image: {
  16878. source: "./media/characters/algier/front-dressed.svg",
  16879. extra: 596 / 572,
  16880. bottom: 0.038
  16881. }
  16882. },
  16883. },
  16884. [
  16885. {
  16886. name: "Micro",
  16887. height: math.unit(5, "cm")
  16888. },
  16889. {
  16890. name: "Normal",
  16891. height: math.unit(180, "cm"),
  16892. default: true
  16893. },
  16894. {
  16895. name: "Macro",
  16896. height: math.unit(64, "m")
  16897. },
  16898. ]
  16899. ))
  16900. characterMakers.push(() => makeCharacter(
  16901. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16902. {
  16903. upright: {
  16904. height: math.unit(7, "feet"),
  16905. weight: math.unit(300, "lb"),
  16906. name: "Upright",
  16907. image: {
  16908. source: "./media/characters/pretzel/upright.svg",
  16909. extra: 534 / 522,
  16910. bottom: 0.065
  16911. }
  16912. },
  16913. sprawling: {
  16914. height: math.unit(3.75, "feet"),
  16915. weight: math.unit(300, "lb"),
  16916. name: "Sprawling",
  16917. image: {
  16918. source: "./media/characters/pretzel/sprawling.svg",
  16919. extra: 314 / 281,
  16920. bottom: 0.1
  16921. }
  16922. },
  16923. tongue: {
  16924. height: math.unit(2, "feet"),
  16925. name: "Tongue",
  16926. image: {
  16927. source: "./media/characters/pretzel/tongue.svg"
  16928. }
  16929. },
  16930. },
  16931. [
  16932. {
  16933. name: "Normal",
  16934. height: math.unit(7, "feet"),
  16935. default: true
  16936. },
  16937. {
  16938. name: "Oversized",
  16939. height: math.unit(15, "feet")
  16940. },
  16941. {
  16942. name: "Huge",
  16943. height: math.unit(30, "feet")
  16944. },
  16945. {
  16946. name: "Macro",
  16947. height: math.unit(250, "feet")
  16948. },
  16949. ]
  16950. ))
  16951. characterMakers.push(() => makeCharacter(
  16952. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16953. {
  16954. sideFront: {
  16955. height: math.unit(5 + 2 / 12, "feet"),
  16956. weight: math.unit(120, "lb"),
  16957. name: "Front Side",
  16958. image: {
  16959. source: "./media/characters/roxi/side-front.svg",
  16960. extra: 2924 / 2717,
  16961. bottom: 0.08
  16962. }
  16963. },
  16964. sideBack: {
  16965. height: math.unit(5 + 2 / 12, "feet"),
  16966. weight: math.unit(120, "lb"),
  16967. name: "Back Side",
  16968. image: {
  16969. source: "./media/characters/roxi/side-back.svg",
  16970. extra: 2904 / 2693,
  16971. bottom: 0.06
  16972. }
  16973. },
  16974. front: {
  16975. height: math.unit(5 + 2 / 12, "feet"),
  16976. weight: math.unit(120, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/roxi/front.svg",
  16980. extra: 2028 / 1907,
  16981. bottom: 0.01
  16982. }
  16983. },
  16984. frontAlt: {
  16985. height: math.unit(5 + 2 / 12, "feet"),
  16986. weight: math.unit(120, "lb"),
  16987. name: "Front (Alt)",
  16988. image: {
  16989. source: "./media/characters/roxi/front-alt.svg",
  16990. extra: 1828 / 1798,
  16991. bottom: 0.01
  16992. }
  16993. },
  16994. sitting: {
  16995. height: math.unit(2.8, "feet"),
  16996. weight: math.unit(120, "lb"),
  16997. name: "Sitting",
  16998. image: {
  16999. source: "./media/characters/roxi/sitting.svg",
  17000. extra: 2660 / 2462,
  17001. bottom: 0.1
  17002. }
  17003. },
  17004. },
  17005. [
  17006. {
  17007. name: "Normal",
  17008. height: math.unit(5 + 2 / 12, "feet"),
  17009. default: true
  17010. },
  17011. ]
  17012. ))
  17013. characterMakers.push(() => makeCharacter(
  17014. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17015. {
  17016. side: {
  17017. height: math.unit(55, "feet"),
  17018. weight: math.unit(153, "tons"),
  17019. name: "Side",
  17020. image: {
  17021. source: "./media/characters/shadow/side.svg",
  17022. extra: 701 / 628,
  17023. bottom: 0.02
  17024. }
  17025. },
  17026. flying: {
  17027. height: math.unit(145, "feet"),
  17028. weight: math.unit(153, "tons"),
  17029. name: "Flying",
  17030. image: {
  17031. source: "./media/characters/shadow/flying.svg"
  17032. }
  17033. },
  17034. },
  17035. [
  17036. {
  17037. name: "Normal",
  17038. height: math.unit(55, "feet"),
  17039. default: true
  17040. },
  17041. ]
  17042. ))
  17043. characterMakers.push(() => makeCharacter(
  17044. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17045. {
  17046. front: {
  17047. height: math.unit(6, "feet"),
  17048. weight: math.unit(200, "lb"),
  17049. name: "Front",
  17050. image: {
  17051. source: "./media/characters/marcie/front.svg",
  17052. extra: 960 / 876,
  17053. bottom: 58 / 1017.87
  17054. }
  17055. },
  17056. },
  17057. [
  17058. {
  17059. name: "Macro",
  17060. height: math.unit(1, "mile"),
  17061. default: true
  17062. },
  17063. ]
  17064. ))
  17065. characterMakers.push(() => makeCharacter(
  17066. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17067. {
  17068. front: {
  17069. height: math.unit(7, "feet"),
  17070. weight: math.unit(200, "lb"),
  17071. name: "Front",
  17072. image: {
  17073. source: "./media/characters/kachina/front.svg",
  17074. extra: 1290.68 / 1119,
  17075. bottom: 36.5 / 1327.18
  17076. }
  17077. },
  17078. },
  17079. [
  17080. {
  17081. name: "Normal",
  17082. height: math.unit(7, "feet"),
  17083. default: true
  17084. },
  17085. ]
  17086. ))
  17087. characterMakers.push(() => makeCharacter(
  17088. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17089. {
  17090. looking: {
  17091. height: math.unit(2, "meters"),
  17092. weight: math.unit(300, "kg"),
  17093. name: "Looking",
  17094. image: {
  17095. source: "./media/characters/kash/looking.svg",
  17096. extra: 474 / 344,
  17097. bottom: 0.03
  17098. }
  17099. },
  17100. side: {
  17101. height: math.unit(2, "meters"),
  17102. weight: math.unit(300, "kg"),
  17103. name: "Side",
  17104. image: {
  17105. source: "./media/characters/kash/side.svg",
  17106. extra: 302 / 251,
  17107. bottom: 0.03
  17108. }
  17109. },
  17110. front: {
  17111. height: math.unit(2, "meters"),
  17112. weight: math.unit(300, "kg"),
  17113. name: "Front",
  17114. image: {
  17115. source: "./media/characters/kash/front.svg",
  17116. extra: 495 / 360,
  17117. bottom: 0.015
  17118. }
  17119. },
  17120. },
  17121. [
  17122. {
  17123. name: "Normal",
  17124. height: math.unit(2, "meters"),
  17125. default: true
  17126. },
  17127. {
  17128. name: "Big",
  17129. height: math.unit(3, "meters")
  17130. },
  17131. {
  17132. name: "Large",
  17133. height: math.unit(5, "meters")
  17134. },
  17135. ]
  17136. ))
  17137. characterMakers.push(() => makeCharacter(
  17138. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17139. {
  17140. feeding: {
  17141. height: math.unit(6.7, "feet"),
  17142. weight: math.unit(350, "lb"),
  17143. name: "Feeding",
  17144. image: {
  17145. source: "./media/characters/lalim/feeding.svg",
  17146. }
  17147. },
  17148. },
  17149. [
  17150. {
  17151. name: "Normal",
  17152. height: math.unit(6.7, "feet"),
  17153. default: true
  17154. },
  17155. ]
  17156. ))
  17157. characterMakers.push(() => makeCharacter(
  17158. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17159. {
  17160. front: {
  17161. height: math.unit(9.5, "feet"),
  17162. weight: math.unit(600, "lb"),
  17163. name: "Front",
  17164. image: {
  17165. source: "./media/characters/de'vout/front.svg",
  17166. extra: 1443 / 1328,
  17167. bottom: 0.025
  17168. }
  17169. },
  17170. back: {
  17171. height: math.unit(9.5, "feet"),
  17172. weight: math.unit(600, "lb"),
  17173. name: "Back",
  17174. image: {
  17175. source: "./media/characters/de'vout/back.svg",
  17176. extra: 1443 / 1328
  17177. }
  17178. },
  17179. frontDressed: {
  17180. height: math.unit(9.5, "feet"),
  17181. weight: math.unit(600, "lb"),
  17182. name: "Front (Dressed",
  17183. image: {
  17184. source: "./media/characters/de'vout/front-dressed.svg",
  17185. extra: 1443 / 1328,
  17186. bottom: 0.025
  17187. }
  17188. },
  17189. backDressed: {
  17190. height: math.unit(9.5, "feet"),
  17191. weight: math.unit(600, "lb"),
  17192. name: "Back (Dressed",
  17193. image: {
  17194. source: "./media/characters/de'vout/back-dressed.svg",
  17195. extra: 1443 / 1328
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Normal",
  17202. height: math.unit(9.5, "feet"),
  17203. default: true
  17204. },
  17205. ]
  17206. ))
  17207. characterMakers.push(() => makeCharacter(
  17208. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17209. {
  17210. front: {
  17211. height: math.unit(8, "feet"),
  17212. weight: math.unit(225, "lb"),
  17213. name: "Front",
  17214. image: {
  17215. source: "./media/characters/talana/front.svg",
  17216. extra: 1410 / 1300,
  17217. bottom: 0.015
  17218. }
  17219. },
  17220. frontDressed: {
  17221. height: math.unit(8, "feet"),
  17222. weight: math.unit(225, "lb"),
  17223. name: "Front (Dressed",
  17224. image: {
  17225. source: "./media/characters/talana/front-dressed.svg",
  17226. extra: 1410 / 1300,
  17227. bottom: 0.015
  17228. }
  17229. },
  17230. },
  17231. [
  17232. {
  17233. name: "Normal",
  17234. height: math.unit(8, "feet"),
  17235. default: true
  17236. },
  17237. ]
  17238. ))
  17239. characterMakers.push(() => makeCharacter(
  17240. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17241. {
  17242. side: {
  17243. height: math.unit(7.2, "feet"),
  17244. weight: math.unit(150, "lb"),
  17245. name: "Side",
  17246. image: {
  17247. source: "./media/characters/xeauvok/side.svg",
  17248. extra: 1975 / 1523,
  17249. bottom: 0.07
  17250. }
  17251. },
  17252. },
  17253. [
  17254. {
  17255. name: "Normal",
  17256. height: math.unit(7.2, "feet"),
  17257. default: true
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17263. {
  17264. side: {
  17265. height: math.unit(10, "feet"),
  17266. weight: math.unit(900, "kg"),
  17267. name: "Side",
  17268. image: {
  17269. source: "./media/characters/zara/side.svg",
  17270. extra: 504 / 498
  17271. }
  17272. },
  17273. },
  17274. [
  17275. {
  17276. name: "Normal",
  17277. height: math.unit(10, "feet"),
  17278. default: true
  17279. },
  17280. ]
  17281. ))
  17282. characterMakers.push(() => makeCharacter(
  17283. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17284. {
  17285. side: {
  17286. height: math.unit(6, "feet"),
  17287. weight: math.unit(150, "lb"),
  17288. name: "Side",
  17289. image: {
  17290. source: "./media/characters/richard-dragon/side.svg",
  17291. extra: 845 / 340,
  17292. bottom: 0.017
  17293. }
  17294. },
  17295. maw: {
  17296. height: math.unit(2.97, "feet"),
  17297. name: "Maw",
  17298. image: {
  17299. source: "./media/characters/richard-dragon/maw.svg"
  17300. }
  17301. },
  17302. },
  17303. [
  17304. ]
  17305. ))
  17306. characterMakers.push(() => makeCharacter(
  17307. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17308. {
  17309. front: {
  17310. height: math.unit(4, "feet"),
  17311. weight: math.unit(100, "lb"),
  17312. name: "Front",
  17313. image: {
  17314. source: "./media/characters/richard-smeargle/front.svg",
  17315. extra: 2952 / 2820,
  17316. bottom: 0.028
  17317. }
  17318. },
  17319. },
  17320. [
  17321. {
  17322. name: "Normal",
  17323. height: math.unit(4, "feet"),
  17324. default: true
  17325. },
  17326. {
  17327. name: "Dynamax",
  17328. height: math.unit(20, "meters")
  17329. },
  17330. ]
  17331. ))
  17332. characterMakers.push(() => makeCharacter(
  17333. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17334. {
  17335. front: {
  17336. height: math.unit(6, "feet"),
  17337. weight: math.unit(110, "lb"),
  17338. name: "Front",
  17339. image: {
  17340. source: "./media/characters/klay/front.svg",
  17341. extra: 962 / 883,
  17342. bottom: 0.04
  17343. }
  17344. },
  17345. back: {
  17346. height: math.unit(6, "feet"),
  17347. weight: math.unit(110, "lb"),
  17348. name: "Back",
  17349. image: {
  17350. source: "./media/characters/klay/back.svg",
  17351. extra: 962 / 883
  17352. }
  17353. },
  17354. beans: {
  17355. height: math.unit(1.15, "feet"),
  17356. name: "Beans",
  17357. image: {
  17358. source: "./media/characters/klay/beans.svg"
  17359. }
  17360. },
  17361. },
  17362. [
  17363. {
  17364. name: "Micro",
  17365. height: math.unit(6, "inches")
  17366. },
  17367. {
  17368. name: "Mini",
  17369. height: math.unit(3, "feet")
  17370. },
  17371. {
  17372. name: "Normal",
  17373. height: math.unit(6, "feet"),
  17374. default: true
  17375. },
  17376. {
  17377. name: "Big",
  17378. height: math.unit(25, "feet")
  17379. },
  17380. {
  17381. name: "Macro",
  17382. height: math.unit(100, "feet")
  17383. },
  17384. {
  17385. name: "Megamacro",
  17386. height: math.unit(400, "feet")
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17392. {
  17393. front: {
  17394. height: math.unit(6, "feet"),
  17395. weight: math.unit(160, "lb"),
  17396. name: "Front",
  17397. image: {
  17398. source: "./media/characters/marcus/front.svg",
  17399. extra: 734 / 676,
  17400. bottom: 0.03
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Little",
  17407. height: math.unit(6, "feet")
  17408. },
  17409. {
  17410. name: "Normal",
  17411. height: math.unit(110, "feet"),
  17412. default: true
  17413. },
  17414. {
  17415. name: "Macro",
  17416. height: math.unit(250, "feet")
  17417. },
  17418. {
  17419. name: "Megamacro",
  17420. height: math.unit(1000, "feet")
  17421. },
  17422. ]
  17423. ))
  17424. characterMakers.push(() => makeCharacter(
  17425. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17426. {
  17427. front: {
  17428. height: math.unit(7, "feet"),
  17429. weight: math.unit(275, "lb"),
  17430. name: "Front",
  17431. image: {
  17432. source: "./media/characters/claude-delroute/front.svg",
  17433. extra: 230 / 214,
  17434. bottom: 0.007
  17435. }
  17436. },
  17437. side: {
  17438. height: math.unit(7, "feet"),
  17439. weight: math.unit(275, "lb"),
  17440. name: "Side",
  17441. image: {
  17442. source: "./media/characters/claude-delroute/side.svg",
  17443. extra: 222 / 214,
  17444. bottom: 0.01
  17445. }
  17446. },
  17447. back: {
  17448. height: math.unit(7, "feet"),
  17449. weight: math.unit(275, "lb"),
  17450. name: "Back",
  17451. image: {
  17452. source: "./media/characters/claude-delroute/back.svg",
  17453. extra: 230 / 214,
  17454. bottom: 0.015
  17455. }
  17456. },
  17457. maw: {
  17458. height: math.unit(0.6407, "meters"),
  17459. name: "Maw",
  17460. image: {
  17461. source: "./media/characters/claude-delroute/maw.svg"
  17462. }
  17463. },
  17464. },
  17465. [
  17466. {
  17467. name: "Normal",
  17468. height: math.unit(7, "feet"),
  17469. default: true
  17470. },
  17471. {
  17472. name: "Lorge",
  17473. height: math.unit(20, "feet")
  17474. },
  17475. ]
  17476. ))
  17477. characterMakers.push(() => makeCharacter(
  17478. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17479. {
  17480. front: {
  17481. height: math.unit(8 + 4 / 12, "feet"),
  17482. weight: math.unit(600, "lb"),
  17483. name: "Front",
  17484. image: {
  17485. source: "./media/characters/dragonien/front.svg",
  17486. extra: 100 / 94,
  17487. bottom: 3.3 / 103.3445
  17488. }
  17489. },
  17490. back: {
  17491. height: math.unit(8 + 4 / 12, "feet"),
  17492. weight: math.unit(600, "lb"),
  17493. name: "Back",
  17494. image: {
  17495. source: "./media/characters/dragonien/back.svg",
  17496. extra: 776 / 746,
  17497. bottom: 6.4 / 782.0616
  17498. }
  17499. },
  17500. foot: {
  17501. height: math.unit(1.54, "feet"),
  17502. name: "Foot",
  17503. image: {
  17504. source: "./media/characters/dragonien/foot.svg",
  17505. }
  17506. },
  17507. },
  17508. [
  17509. {
  17510. name: "Normal",
  17511. height: math.unit(8 + 4 / 12, "feet"),
  17512. default: true
  17513. },
  17514. {
  17515. name: "Macro",
  17516. height: math.unit(200, "feet")
  17517. },
  17518. {
  17519. name: "Megamacro",
  17520. height: math.unit(1, "mile")
  17521. },
  17522. {
  17523. name: "Gigamacro",
  17524. height: math.unit(1000, "miles")
  17525. },
  17526. ]
  17527. ))
  17528. characterMakers.push(() => makeCharacter(
  17529. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17530. {
  17531. front: {
  17532. height: math.unit(5 + 2 / 12, "feet"),
  17533. weight: math.unit(110, "lb"),
  17534. name: "Front",
  17535. image: {
  17536. source: "./media/characters/desta/front.svg",
  17537. extra: 767 / 726,
  17538. bottom: 11.7 / 779
  17539. }
  17540. },
  17541. back: {
  17542. height: math.unit(5 + 2 / 12, "feet"),
  17543. weight: math.unit(110, "lb"),
  17544. name: "Back",
  17545. image: {
  17546. source: "./media/characters/desta/back.svg",
  17547. extra: 777 / 728,
  17548. bottom: 6 / 784
  17549. }
  17550. },
  17551. frontAlt: {
  17552. height: math.unit(5 + 2 / 12, "feet"),
  17553. weight: math.unit(110, "lb"),
  17554. name: "Front",
  17555. image: {
  17556. source: "./media/characters/desta/front-alt.svg",
  17557. extra: 1482 / 1417
  17558. }
  17559. },
  17560. side: {
  17561. height: math.unit(5 + 2 / 12, "feet"),
  17562. weight: math.unit(110, "lb"),
  17563. name: "Side",
  17564. image: {
  17565. source: "./media/characters/desta/side.svg",
  17566. extra: 2579 / 2491,
  17567. bottom: 0.053
  17568. }
  17569. },
  17570. },
  17571. [
  17572. {
  17573. name: "Micro",
  17574. height: math.unit(6, "inches")
  17575. },
  17576. {
  17577. name: "Normal",
  17578. height: math.unit(5 + 2 / 12, "feet"),
  17579. default: true
  17580. },
  17581. {
  17582. name: "Macro",
  17583. height: math.unit(62, "feet")
  17584. },
  17585. {
  17586. name: "Megamacro",
  17587. height: math.unit(1800, "feet")
  17588. },
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17593. {
  17594. front: {
  17595. height: math.unit(10, "feet"),
  17596. weight: math.unit(700, "lb"),
  17597. name: "Front",
  17598. image: {
  17599. source: "./media/characters/storm-alystar/front.svg",
  17600. extra: 2112 / 1898,
  17601. bottom: 0.034
  17602. }
  17603. },
  17604. },
  17605. [
  17606. {
  17607. name: "Micro",
  17608. height: math.unit(3.5, "inches")
  17609. },
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(10, "feet"),
  17613. default: true
  17614. },
  17615. {
  17616. name: "Macro",
  17617. height: math.unit(400, "feet")
  17618. },
  17619. {
  17620. name: "Deific",
  17621. height: math.unit(60, "miles")
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17627. {
  17628. front: {
  17629. height: math.unit(2.35, "meters"),
  17630. weight: math.unit(119, "kg"),
  17631. name: "Front",
  17632. image: {
  17633. source: "./media/characters/ilia/front.svg",
  17634. extra: 1285 / 1255,
  17635. bottom: 0.06
  17636. }
  17637. },
  17638. },
  17639. [
  17640. {
  17641. name: "Normal",
  17642. height: math.unit(2.35, "meters")
  17643. },
  17644. {
  17645. name: "Macro",
  17646. height: math.unit(140, "meters"),
  17647. default: true
  17648. },
  17649. {
  17650. name: "Megamacro",
  17651. height: math.unit(100, "miles")
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17657. {
  17658. front: {
  17659. height: math.unit(6 + 5 / 12, "feet"),
  17660. weight: math.unit(190, "lb"),
  17661. name: "Front",
  17662. image: {
  17663. source: "./media/characters/kingdead/front.svg",
  17664. extra: 1228 / 1177
  17665. }
  17666. },
  17667. },
  17668. [
  17669. {
  17670. name: "Micro",
  17671. height: math.unit(7, "inches")
  17672. },
  17673. {
  17674. name: "Normal",
  17675. height: math.unit(6 + 5 / 12, "feet")
  17676. },
  17677. {
  17678. name: "Macro",
  17679. height: math.unit(150, "feet"),
  17680. default: true
  17681. },
  17682. {
  17683. name: "Megamacro",
  17684. height: math.unit(200, "miles")
  17685. },
  17686. ]
  17687. ))
  17688. characterMakers.push(() => makeCharacter(
  17689. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17690. {
  17691. front: {
  17692. height: math.unit(8, "feet"),
  17693. weight: math.unit(600, "lb"),
  17694. name: "Front",
  17695. image: {
  17696. source: "./media/characters/kyrehx/front.svg",
  17697. extra: 1195 / 1095,
  17698. bottom: 0.034
  17699. }
  17700. },
  17701. },
  17702. [
  17703. {
  17704. name: "Micro",
  17705. height: math.unit(2, "inches")
  17706. },
  17707. {
  17708. name: "Normal",
  17709. height: math.unit(8, "feet"),
  17710. default: true
  17711. },
  17712. {
  17713. name: "Macro",
  17714. height: math.unit(255, "feet")
  17715. },
  17716. ]
  17717. ))
  17718. characterMakers.push(() => makeCharacter(
  17719. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17720. {
  17721. front: {
  17722. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17723. weight: math.unit(184, "lb"),
  17724. name: "Front",
  17725. image: {
  17726. source: "./media/characters/xang/front.svg",
  17727. extra: 845 / 755
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Normal",
  17734. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17735. default: true
  17736. },
  17737. {
  17738. name: "Macro",
  17739. height: math.unit(0.935 * 146, "feet")
  17740. },
  17741. {
  17742. name: "Megamacro",
  17743. height: math.unit(0.935 * 3, "miles")
  17744. },
  17745. ]
  17746. ))
  17747. characterMakers.push(() => makeCharacter(
  17748. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17749. {
  17750. frontDressed: {
  17751. height: math.unit(5 + 7 / 12, "feet"),
  17752. weight: math.unit(140, "lb"),
  17753. name: "Front (Dressed)",
  17754. image: {
  17755. source: "./media/characters/doc-weardno/front-dressed.svg",
  17756. extra: 263 / 234
  17757. }
  17758. },
  17759. backDressed: {
  17760. height: math.unit(5 + 7 / 12, "feet"),
  17761. weight: math.unit(140, "lb"),
  17762. name: "Back (Dressed)",
  17763. image: {
  17764. source: "./media/characters/doc-weardno/back-dressed.svg",
  17765. extra: 266 / 238
  17766. }
  17767. },
  17768. front: {
  17769. height: math.unit(5 + 7 / 12, "feet"),
  17770. weight: math.unit(140, "lb"),
  17771. name: "Front",
  17772. image: {
  17773. source: "./media/characters/doc-weardno/front.svg",
  17774. extra: 254 / 233
  17775. }
  17776. },
  17777. },
  17778. [
  17779. {
  17780. name: "Micro",
  17781. height: math.unit(3, "inches")
  17782. },
  17783. {
  17784. name: "Normal",
  17785. height: math.unit(5 + 7 / 12, "feet"),
  17786. default: true
  17787. },
  17788. {
  17789. name: "Macro",
  17790. height: math.unit(25, "feet")
  17791. },
  17792. {
  17793. name: "Megamacro",
  17794. height: math.unit(2, "miles")
  17795. },
  17796. ]
  17797. ))
  17798. characterMakers.push(() => makeCharacter(
  17799. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17800. {
  17801. front: {
  17802. height: math.unit(6 + 2 / 12, "feet"),
  17803. weight: math.unit(153, "lb"),
  17804. name: "Front",
  17805. image: {
  17806. source: "./media/characters/seth-whilst/front.svg",
  17807. bottom: 0.07
  17808. }
  17809. },
  17810. },
  17811. [
  17812. {
  17813. name: "Micro",
  17814. height: math.unit(5, "inches")
  17815. },
  17816. {
  17817. name: "Normal",
  17818. height: math.unit(6 + 2 / 12, "feet"),
  17819. default: true
  17820. },
  17821. ]
  17822. ))
  17823. characterMakers.push(() => makeCharacter(
  17824. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17825. {
  17826. front: {
  17827. height: math.unit(3, "inches"),
  17828. weight: math.unit(8, "grams"),
  17829. name: "Front",
  17830. image: {
  17831. source: "./media/characters/pocket-jabari/front.svg",
  17832. extra: 1024 / 974,
  17833. bottom: 0.039
  17834. }
  17835. },
  17836. },
  17837. [
  17838. {
  17839. name: "Minimicro",
  17840. height: math.unit(8, "mm")
  17841. },
  17842. {
  17843. name: "Micro",
  17844. height: math.unit(3, "inches"),
  17845. default: true
  17846. },
  17847. {
  17848. name: "Normal",
  17849. height: math.unit(3, "feet")
  17850. },
  17851. ]
  17852. ))
  17853. characterMakers.push(() => makeCharacter(
  17854. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17855. {
  17856. front: {
  17857. height: math.unit(15, "feet"),
  17858. weight: math.unit(3280, "lb"),
  17859. name: "Front",
  17860. image: {
  17861. source: "./media/characters/sapphy/front.svg",
  17862. extra: 671 / 577,
  17863. bottom: 0.085
  17864. }
  17865. },
  17866. back: {
  17867. height: math.unit(15, "feet"),
  17868. weight: math.unit(3280, "lb"),
  17869. name: "Back",
  17870. image: {
  17871. source: "./media/characters/sapphy/back.svg",
  17872. extra: 631 / 607,
  17873. bottom: 0.045
  17874. }
  17875. },
  17876. },
  17877. [
  17878. {
  17879. name: "Normal",
  17880. height: math.unit(15, "feet")
  17881. },
  17882. {
  17883. name: "Casual Macro",
  17884. height: math.unit(120, "feet")
  17885. },
  17886. {
  17887. name: "Macro",
  17888. height: math.unit(2150, "feet"),
  17889. default: true
  17890. },
  17891. {
  17892. name: "Megamacro",
  17893. height: math.unit(8, "miles")
  17894. },
  17895. {
  17896. name: "Galaxy Mom",
  17897. height: math.unit(6, "megalightyears")
  17898. },
  17899. ]
  17900. ))
  17901. characterMakers.push(() => makeCharacter(
  17902. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17903. {
  17904. front: {
  17905. height: math.unit(6, "feet"),
  17906. weight: math.unit(170, "lb"),
  17907. name: "Front",
  17908. image: {
  17909. source: "./media/characters/kiro/front.svg",
  17910. extra: 1064 / 1012,
  17911. bottom: 0.052
  17912. }
  17913. },
  17914. },
  17915. [
  17916. {
  17917. name: "Micro",
  17918. height: math.unit(6, "inches")
  17919. },
  17920. {
  17921. name: "Normal",
  17922. height: math.unit(6, "feet"),
  17923. default: true
  17924. },
  17925. {
  17926. name: "Macro",
  17927. height: math.unit(72, "feet")
  17928. },
  17929. ]
  17930. ))
  17931. characterMakers.push(() => makeCharacter(
  17932. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17933. {
  17934. front: {
  17935. height: math.unit(5 + 9 / 12, "feet"),
  17936. weight: math.unit(175, "lb"),
  17937. name: "Front",
  17938. image: {
  17939. source: "./media/characters/irishfox/front.svg",
  17940. extra: 1912 / 1680,
  17941. bottom: 0.02
  17942. }
  17943. },
  17944. },
  17945. [
  17946. {
  17947. name: "Nano",
  17948. height: math.unit(1, "mm")
  17949. },
  17950. {
  17951. name: "Micro",
  17952. height: math.unit(2, "inches")
  17953. },
  17954. {
  17955. name: "Normal",
  17956. height: math.unit(5 + 9 / 12, "feet"),
  17957. default: true
  17958. },
  17959. {
  17960. name: "Macro",
  17961. height: math.unit(45, "feet")
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17967. {
  17968. front: {
  17969. height: math.unit(6 + 1 / 12, "feet"),
  17970. weight: math.unit(150, "lb"),
  17971. name: "Front",
  17972. image: {
  17973. source: "./media/characters/aronai-sieyes/front.svg",
  17974. extra: 1556 / 1480,
  17975. bottom: 0.015
  17976. }
  17977. },
  17978. side: {
  17979. height: math.unit(6 + 1 / 12, "feet"),
  17980. weight: math.unit(150, "lb"),
  17981. name: "Side",
  17982. image: {
  17983. source: "./media/characters/aronai-sieyes/side.svg",
  17984. extra: 1433 / 1390,
  17985. bottom: 0.0393
  17986. }
  17987. },
  17988. back: {
  17989. height: math.unit(6 + 1 / 12, "feet"),
  17990. weight: math.unit(150, "lb"),
  17991. name: "Back",
  17992. image: {
  17993. source: "./media/characters/aronai-sieyes/back.svg",
  17994. extra: 1544 / 1494,
  17995. bottom: 0.02
  17996. }
  17997. },
  17998. frontClothed: {
  17999. height: math.unit(6 + 1 / 12, "feet"),
  18000. weight: math.unit(150, "lb"),
  18001. name: "Front (Clothed)",
  18002. image: {
  18003. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18004. extra: 1582 / 1527
  18005. }
  18006. },
  18007. feral: {
  18008. height: math.unit(18, "feet"),
  18009. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18010. name: "Feral",
  18011. image: {
  18012. source: "./media/characters/aronai-sieyes/feral.svg",
  18013. extra: 1530 / 1240,
  18014. bottom: 0.035
  18015. }
  18016. },
  18017. },
  18018. [
  18019. {
  18020. name: "Micro",
  18021. height: math.unit(2, "inches")
  18022. },
  18023. {
  18024. name: "Normal",
  18025. height: math.unit(6 + 1 / 12, "feet"),
  18026. default: true
  18027. }
  18028. ]
  18029. ))
  18030. characterMakers.push(() => makeCharacter(
  18031. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18032. {
  18033. front: {
  18034. height: math.unit(12, "feet"),
  18035. weight: math.unit(410, "kg"),
  18036. name: "Front",
  18037. image: {
  18038. source: "./media/characters/xuna/front.svg",
  18039. extra: 2184 / 1980
  18040. }
  18041. },
  18042. side: {
  18043. height: math.unit(12, "feet"),
  18044. weight: math.unit(410, "kg"),
  18045. name: "Side",
  18046. image: {
  18047. source: "./media/characters/xuna/side.svg",
  18048. extra: 2184 / 1980
  18049. }
  18050. },
  18051. back: {
  18052. height: math.unit(12, "feet"),
  18053. weight: math.unit(410, "kg"),
  18054. name: "Back",
  18055. image: {
  18056. source: "./media/characters/xuna/back.svg",
  18057. extra: 2184 / 1980
  18058. }
  18059. },
  18060. },
  18061. [
  18062. {
  18063. name: "Nano glow",
  18064. height: math.unit(10, "nm")
  18065. },
  18066. {
  18067. name: "Micro floof",
  18068. height: math.unit(0.3, "m")
  18069. },
  18070. {
  18071. name: "Huggable softy boi",
  18072. height: math.unit(3.6576, "m"),
  18073. default: true
  18074. },
  18075. {
  18076. name: "Admirable floof",
  18077. height: math.unit(80, "meters")
  18078. },
  18079. {
  18080. name: "Gentle macro",
  18081. height: math.unit(300, "meters")
  18082. },
  18083. {
  18084. name: "Very careful floof",
  18085. height: math.unit(3200, "meters")
  18086. },
  18087. {
  18088. name: "The mega floof",
  18089. height: math.unit(36000, "meters")
  18090. },
  18091. {
  18092. name: "Giga-fur-Wicker",
  18093. height: math.unit(4800000, "meters")
  18094. },
  18095. {
  18096. name: "Licky world",
  18097. height: math.unit(20000000, "meters")
  18098. },
  18099. {
  18100. name: "Floofy cyan sun",
  18101. height: math.unit(1500000000, "meters")
  18102. },
  18103. {
  18104. name: "Milky Wicker",
  18105. height: math.unit(1000000000000000000000, "meters")
  18106. },
  18107. {
  18108. name: "The observing Wicker",
  18109. height: math.unit(999999999999999999999999999, "meters")
  18110. },
  18111. ]
  18112. ))
  18113. characterMakers.push(() => makeCharacter(
  18114. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18115. {
  18116. front: {
  18117. height: math.unit(5 + 9 / 12, "feet"),
  18118. weight: math.unit(150, "lb"),
  18119. name: "Front",
  18120. image: {
  18121. source: "./media/characters/arokha-sieyes/front.svg",
  18122. extra: 1425 / 1284,
  18123. bottom: 0.05
  18124. }
  18125. },
  18126. },
  18127. [
  18128. {
  18129. name: "Normal",
  18130. height: math.unit(5 + 9 / 12, "feet")
  18131. },
  18132. {
  18133. name: "Macro",
  18134. height: math.unit(30, "meters"),
  18135. default: true
  18136. },
  18137. ]
  18138. ))
  18139. characterMakers.push(() => makeCharacter(
  18140. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18141. {
  18142. front: {
  18143. height: math.unit(6, "feet"),
  18144. weight: math.unit(180, "lb"),
  18145. name: "Front",
  18146. image: {
  18147. source: "./media/characters/arokh-sieyes/front.svg",
  18148. extra: 1830 / 1769,
  18149. bottom: 0.01
  18150. }
  18151. },
  18152. },
  18153. [
  18154. {
  18155. name: "Normal",
  18156. height: math.unit(6, "feet")
  18157. },
  18158. {
  18159. name: "Macro",
  18160. height: math.unit(30, "meters"),
  18161. default: true
  18162. },
  18163. ]
  18164. ))
  18165. characterMakers.push(() => makeCharacter(
  18166. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18167. {
  18168. side: {
  18169. height: math.unit(13 + 1 / 12, "feet"),
  18170. weight: math.unit(8.5, "tonnes"),
  18171. name: "Side",
  18172. image: {
  18173. source: "./media/characters/goldeneye/side.svg",
  18174. extra: 1182 / 778,
  18175. bottom: 0.067
  18176. }
  18177. },
  18178. paw: {
  18179. height: math.unit(3.4, "feet"),
  18180. name: "Paw",
  18181. image: {
  18182. source: "./media/characters/goldeneye/paw.svg"
  18183. }
  18184. },
  18185. },
  18186. [
  18187. {
  18188. name: "Normal",
  18189. height: math.unit(13 + 1 / 12, "feet"),
  18190. default: true
  18191. },
  18192. ]
  18193. ))
  18194. characterMakers.push(() => makeCharacter(
  18195. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18196. {
  18197. front: {
  18198. height: math.unit(6 + 1 / 12, "feet"),
  18199. weight: math.unit(210, "lb"),
  18200. name: "Front",
  18201. image: {
  18202. source: "./media/characters/leonardo-lycheborne/front.svg",
  18203. extra: 390 / 365,
  18204. bottom: 0.032
  18205. }
  18206. },
  18207. side: {
  18208. height: math.unit(6 + 1 / 12, "feet"),
  18209. weight: math.unit(210, "lb"),
  18210. name: "Side",
  18211. image: {
  18212. source: "./media/characters/leonardo-lycheborne/side.svg",
  18213. extra: 390 / 365,
  18214. bottom: 0.005
  18215. }
  18216. },
  18217. back: {
  18218. height: math.unit(6 + 1 / 12, "feet"),
  18219. weight: math.unit(210, "lb"),
  18220. name: "Back",
  18221. image: {
  18222. source: "./media/characters/leonardo-lycheborne/back.svg",
  18223. extra: 392 / 366,
  18224. bottom: 0.01
  18225. }
  18226. },
  18227. hand: {
  18228. height: math.unit(1.08, "feet"),
  18229. name: "Hand",
  18230. image: {
  18231. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18232. }
  18233. },
  18234. foot: {
  18235. height: math.unit(1.32, "feet"),
  18236. name: "Foot",
  18237. image: {
  18238. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18239. }
  18240. },
  18241. were: {
  18242. height: math.unit(20, "feet"),
  18243. weight: math.unit(7800, "lb"),
  18244. name: "Were",
  18245. image: {
  18246. source: "./media/characters/leonardo-lycheborne/were.svg",
  18247. extra: 308 / 294,
  18248. bottom: 0.048
  18249. }
  18250. },
  18251. feral: {
  18252. height: math.unit(7.5, "feet"),
  18253. weight: math.unit(600, "lb"),
  18254. name: "Feral",
  18255. image: {
  18256. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18257. extra: 210 / 186,
  18258. bottom: 0.108
  18259. }
  18260. },
  18261. taur: {
  18262. height: math.unit(11, "feet"),
  18263. weight: math.unit(3300, "lb"),
  18264. name: "Taur",
  18265. image: {
  18266. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18267. extra: 320 / 303,
  18268. bottom: 0.025
  18269. }
  18270. },
  18271. barghest: {
  18272. height: math.unit(11, "feet"),
  18273. weight: math.unit(1300, "lb"),
  18274. name: "Barghest",
  18275. image: {
  18276. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18277. extra: 323 / 302,
  18278. bottom: 0.027
  18279. }
  18280. },
  18281. dick: {
  18282. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18283. name: "Dick",
  18284. image: {
  18285. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18286. }
  18287. },
  18288. dickWere: {
  18289. height: math.unit((20) / 3.8, "feet"),
  18290. name: "Dick (Were)",
  18291. image: {
  18292. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "Normal",
  18299. height: math.unit(6 + 1 / 12, "feet"),
  18300. default: true
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18306. {
  18307. front: {
  18308. height: math.unit(10, "feet"),
  18309. weight: math.unit(350, "lb"),
  18310. name: "Front",
  18311. image: {
  18312. source: "./media/characters/jet/front.svg",
  18313. extra: 2050 / 1980,
  18314. bottom: 0.013
  18315. }
  18316. },
  18317. back: {
  18318. height: math.unit(10, "feet"),
  18319. weight: math.unit(350, "lb"),
  18320. name: "Back",
  18321. image: {
  18322. source: "./media/characters/jet/back.svg",
  18323. extra: 2050 / 1980,
  18324. bottom: 0.013
  18325. }
  18326. },
  18327. },
  18328. [
  18329. {
  18330. name: "Micro",
  18331. height: math.unit(6, "inches")
  18332. },
  18333. {
  18334. name: "Normal",
  18335. height: math.unit(10, "feet"),
  18336. default: true
  18337. },
  18338. {
  18339. name: "Macro",
  18340. height: math.unit(100, "feet")
  18341. },
  18342. ]
  18343. ))
  18344. characterMakers.push(() => makeCharacter(
  18345. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18346. {
  18347. front: {
  18348. height: math.unit(15, "feet"),
  18349. weight: math.unit(2800, "lb"),
  18350. name: "Front",
  18351. image: {
  18352. source: "./media/characters/tanarath/front.svg",
  18353. extra: 2392 / 2220,
  18354. bottom: 0.03
  18355. }
  18356. },
  18357. back: {
  18358. height: math.unit(15, "feet"),
  18359. weight: math.unit(2800, "lb"),
  18360. name: "Back",
  18361. image: {
  18362. source: "./media/characters/tanarath/back.svg",
  18363. extra: 2392 / 2220,
  18364. bottom: 0.03
  18365. }
  18366. },
  18367. },
  18368. [
  18369. {
  18370. name: "Normal",
  18371. height: math.unit(15, "feet"),
  18372. default: true
  18373. },
  18374. ]
  18375. ))
  18376. characterMakers.push(() => makeCharacter(
  18377. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18378. {
  18379. front: {
  18380. height: math.unit(7 + 1 / 12, "feet"),
  18381. weight: math.unit(175, "lb"),
  18382. name: "Front",
  18383. image: {
  18384. source: "./media/characters/patty-cattybatty/front.svg",
  18385. extra: 908 / 874,
  18386. bottom: 0.025
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Micro",
  18393. height: math.unit(1, "inch")
  18394. },
  18395. {
  18396. name: "Normal",
  18397. height: math.unit(7 + 1 / 12, "feet")
  18398. },
  18399. {
  18400. name: "Mini Macro",
  18401. height: math.unit(155, "feet")
  18402. },
  18403. {
  18404. name: "Macro",
  18405. height: math.unit(1077, "feet")
  18406. },
  18407. {
  18408. name: "Mega Macro",
  18409. height: math.unit(47650, "feet"),
  18410. default: true
  18411. },
  18412. {
  18413. name: "Giga Macro",
  18414. height: math.unit(440, "miles")
  18415. },
  18416. {
  18417. name: "Tera Macro",
  18418. height: math.unit(8700, "miles")
  18419. },
  18420. {
  18421. name: "Planetary Macro",
  18422. height: math.unit(32700, "miles")
  18423. },
  18424. {
  18425. name: "Solar Macro",
  18426. height: math.unit(550000, "miles")
  18427. },
  18428. {
  18429. name: "Celestial Macro",
  18430. height: math.unit(2.5, "AU")
  18431. },
  18432. ]
  18433. ))
  18434. characterMakers.push(() => makeCharacter(
  18435. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18436. {
  18437. front: {
  18438. height: math.unit(4 + 5 / 12, "feet"),
  18439. weight: math.unit(90, "lb"),
  18440. name: "Front",
  18441. image: {
  18442. source: "./media/characters/cappu/front.svg",
  18443. extra: 1247 / 1152,
  18444. bottom: 0.012
  18445. }
  18446. },
  18447. },
  18448. [
  18449. {
  18450. name: "Normal",
  18451. height: math.unit(4 + 5 / 12, "feet"),
  18452. default: true
  18453. },
  18454. ]
  18455. ))
  18456. characterMakers.push(() => makeCharacter(
  18457. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18458. {
  18459. frontDressed: {
  18460. height: math.unit(70, "cm"),
  18461. weight: math.unit(6, "kg"),
  18462. name: "Front (Dressed)",
  18463. image: {
  18464. source: "./media/characters/sebi/front-dressed.svg",
  18465. extra: 713.5 / 686.5,
  18466. bottom: 0.003
  18467. }
  18468. },
  18469. front: {
  18470. height: math.unit(70, "cm"),
  18471. weight: math.unit(5, "kg"),
  18472. name: "Front",
  18473. image: {
  18474. source: "./media/characters/sebi/front.svg",
  18475. extra: 713.5 / 686.5,
  18476. bottom: 0.003
  18477. }
  18478. }
  18479. },
  18480. [
  18481. {
  18482. name: "Normal",
  18483. height: math.unit(70, "cm"),
  18484. default: true
  18485. },
  18486. {
  18487. name: "Macro",
  18488. height: math.unit(8, "meters")
  18489. },
  18490. ]
  18491. ))
  18492. characterMakers.push(() => makeCharacter(
  18493. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18494. {
  18495. front: {
  18496. height: math.unit(6, "feet"),
  18497. weight: math.unit(150, "lb"),
  18498. name: "Front",
  18499. image: {
  18500. source: "./media/characters/typhek/front.svg",
  18501. extra: 1948 / 1929,
  18502. bottom: 0.025
  18503. }
  18504. },
  18505. side: {
  18506. height: math.unit(6, "feet"),
  18507. weight: math.unit(150, "lb"),
  18508. name: "Side",
  18509. image: {
  18510. source: "./media/characters/typhek/side.svg",
  18511. extra: 2034 / 2010,
  18512. bottom: 0.003
  18513. }
  18514. },
  18515. back: {
  18516. height: math.unit(6, "feet"),
  18517. weight: math.unit(150, "lb"),
  18518. name: "Back",
  18519. image: {
  18520. source: "./media/characters/typhek/back.svg",
  18521. extra: 2005 / 1978,
  18522. bottom: 0.004
  18523. }
  18524. },
  18525. palm: {
  18526. height: math.unit(1.2, "feet"),
  18527. name: "Palm",
  18528. image: {
  18529. source: "./media/characters/typhek/palm.svg"
  18530. }
  18531. },
  18532. fist: {
  18533. height: math.unit(1.1, "feet"),
  18534. name: "Fist",
  18535. image: {
  18536. source: "./media/characters/typhek/fist.svg"
  18537. }
  18538. },
  18539. foot: {
  18540. height: math.unit(1.57, "feet"),
  18541. name: "Foot",
  18542. image: {
  18543. source: "./media/characters/typhek/foot.svg"
  18544. }
  18545. },
  18546. sole: {
  18547. height: math.unit(2.05, "feet"),
  18548. name: "Sole",
  18549. image: {
  18550. source: "./media/characters/typhek/sole.svg"
  18551. }
  18552. },
  18553. },
  18554. [
  18555. {
  18556. name: "Macro",
  18557. height: math.unit(40, "stories"),
  18558. default: true
  18559. },
  18560. {
  18561. name: "Megamacro",
  18562. height: math.unit(1, "mile")
  18563. },
  18564. {
  18565. name: "Gigamacro",
  18566. height: math.unit(4000, "solarradii")
  18567. },
  18568. {
  18569. name: "Universal",
  18570. height: math.unit(1.1, "universes")
  18571. }
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18576. {
  18577. side: {
  18578. height: math.unit(5 + 7 / 12, "feet"),
  18579. weight: math.unit(150, "lb"),
  18580. name: "Side",
  18581. image: {
  18582. source: "./media/characters/kassy/side.svg",
  18583. extra: 1280 / 1225,
  18584. bottom: 0.002
  18585. }
  18586. },
  18587. front: {
  18588. height: math.unit(5 + 7 / 12, "feet"),
  18589. weight: math.unit(150, "lb"),
  18590. name: "Front",
  18591. image: {
  18592. source: "./media/characters/kassy/front.svg",
  18593. extra: 1280 / 1225,
  18594. bottom: 0.025
  18595. }
  18596. },
  18597. back: {
  18598. height: math.unit(5 + 7 / 12, "feet"),
  18599. weight: math.unit(150, "lb"),
  18600. name: "Back",
  18601. image: {
  18602. source: "./media/characters/kassy/back.svg",
  18603. extra: 1280 / 1225,
  18604. bottom: 0.002
  18605. }
  18606. },
  18607. foot: {
  18608. height: math.unit(1.266, "feet"),
  18609. name: "Foot",
  18610. image: {
  18611. source: "./media/characters/kassy/foot.svg"
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Normal",
  18618. height: math.unit(5 + 7 / 12, "feet")
  18619. },
  18620. {
  18621. name: "Macro",
  18622. height: math.unit(137, "feet"),
  18623. default: true
  18624. },
  18625. {
  18626. name: "Megamacro",
  18627. height: math.unit(1, "mile")
  18628. },
  18629. ]
  18630. ))
  18631. characterMakers.push(() => makeCharacter(
  18632. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18633. {
  18634. front: {
  18635. height: math.unit(6 + 1 / 12, "feet"),
  18636. weight: math.unit(200, "lb"),
  18637. name: "Front",
  18638. image: {
  18639. source: "./media/characters/neil/front.svg",
  18640. extra: 1326 / 1250,
  18641. bottom: 0.023
  18642. }
  18643. },
  18644. },
  18645. [
  18646. {
  18647. name: "Normal",
  18648. height: math.unit(6 + 1 / 12, "feet"),
  18649. default: true
  18650. },
  18651. {
  18652. name: "Macro",
  18653. height: math.unit(200, "feet")
  18654. },
  18655. ]
  18656. ))
  18657. characterMakers.push(() => makeCharacter(
  18658. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18659. {
  18660. front: {
  18661. height: math.unit(5 + 9 / 12, "feet"),
  18662. weight: math.unit(190, "lb"),
  18663. name: "Front",
  18664. image: {
  18665. source: "./media/characters/atticus/front.svg",
  18666. extra: 2934 / 2785,
  18667. bottom: 0.025
  18668. }
  18669. },
  18670. },
  18671. [
  18672. {
  18673. name: "Normal",
  18674. height: math.unit(5 + 9 / 12, "feet"),
  18675. default: true
  18676. },
  18677. {
  18678. name: "Macro",
  18679. height: math.unit(180, "feet")
  18680. },
  18681. ]
  18682. ))
  18683. characterMakers.push(() => makeCharacter(
  18684. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18685. {
  18686. side: {
  18687. height: math.unit(9, "feet"),
  18688. weight: math.unit(650, "lb"),
  18689. name: "Side",
  18690. image: {
  18691. source: "./media/characters/milo/side.svg",
  18692. extra: 2644 / 2310,
  18693. bottom: 0.032
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Normal",
  18700. height: math.unit(9, "feet"),
  18701. default: true
  18702. },
  18703. {
  18704. name: "Macro",
  18705. height: math.unit(300, "feet")
  18706. },
  18707. ]
  18708. ))
  18709. characterMakers.push(() => makeCharacter(
  18710. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18711. {
  18712. side: {
  18713. height: math.unit(8, "meters"),
  18714. weight: math.unit(90000, "kg"),
  18715. name: "Side",
  18716. image: {
  18717. source: "./media/characters/ijzer/side.svg",
  18718. extra: 2756 / 1600,
  18719. bottom: 0.01
  18720. }
  18721. },
  18722. },
  18723. [
  18724. {
  18725. name: "Small",
  18726. height: math.unit(3, "meters")
  18727. },
  18728. {
  18729. name: "Normal",
  18730. height: math.unit(8, "meters"),
  18731. default: true
  18732. },
  18733. {
  18734. name: "Normal+",
  18735. height: math.unit(10, "meters")
  18736. },
  18737. {
  18738. name: "Bigger",
  18739. height: math.unit(24, "meters")
  18740. },
  18741. {
  18742. name: "Huge",
  18743. height: math.unit(80, "meters")
  18744. },
  18745. ]
  18746. ))
  18747. characterMakers.push(() => makeCharacter(
  18748. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18749. {
  18750. front: {
  18751. height: math.unit(6 + 2 / 12, "feet"),
  18752. weight: math.unit(153, "lb"),
  18753. name: "Front",
  18754. image: {
  18755. source: "./media/characters/luca-cervicum/front.svg",
  18756. extra: 370 / 327,
  18757. bottom: 0.015
  18758. }
  18759. },
  18760. back: {
  18761. height: math.unit(6 + 2 / 12, "feet"),
  18762. weight: math.unit(153, "lb"),
  18763. name: "Back",
  18764. image: {
  18765. source: "./media/characters/luca-cervicum/back.svg",
  18766. extra: 367 / 333,
  18767. bottom: 0.005
  18768. }
  18769. },
  18770. frontGear: {
  18771. height: math.unit(6 + 2 / 12, "feet"),
  18772. weight: math.unit(173, "lb"),
  18773. name: "Front (Gear)",
  18774. image: {
  18775. source: "./media/characters/luca-cervicum/front-gear.svg",
  18776. extra: 377 / 333,
  18777. bottom: 0.006
  18778. }
  18779. },
  18780. },
  18781. [
  18782. {
  18783. name: "Normal",
  18784. height: math.unit(6 + 2 / 12, "feet"),
  18785. default: true
  18786. },
  18787. ]
  18788. ))
  18789. characterMakers.push(() => makeCharacter(
  18790. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18791. {
  18792. front: {
  18793. height: math.unit(6 + 1 / 12, "feet"),
  18794. weight: math.unit(304, "lb"),
  18795. name: "Front",
  18796. image: {
  18797. source: "./media/characters/oliver/front.svg",
  18798. extra: 157 / 143,
  18799. bottom: 0.08
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Normal",
  18806. height: math.unit(6 + 1 / 12, "feet"),
  18807. default: true
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18813. {
  18814. front: {
  18815. height: math.unit(5 + 7 / 12, "feet"),
  18816. weight: math.unit(140, "lb"),
  18817. name: "Front",
  18818. image: {
  18819. source: "./media/characters/shane/front.svg",
  18820. extra: 304 / 289,
  18821. bottom: 0.005
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(5 + 7 / 12, "feet"),
  18829. default: true
  18830. },
  18831. ]
  18832. ))
  18833. characterMakers.push(() => makeCharacter(
  18834. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18835. {
  18836. front: {
  18837. height: math.unit(5 + 9 / 12, "feet"),
  18838. weight: math.unit(178, "lb"),
  18839. name: "Front",
  18840. image: {
  18841. source: "./media/characters/shin/front.svg",
  18842. extra: 159 / 151,
  18843. bottom: 0.015
  18844. }
  18845. },
  18846. },
  18847. [
  18848. {
  18849. name: "Normal",
  18850. height: math.unit(5 + 9 / 12, "feet"),
  18851. default: true
  18852. },
  18853. ]
  18854. ))
  18855. characterMakers.push(() => makeCharacter(
  18856. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18857. {
  18858. front: {
  18859. height: math.unit(5 + 10 / 12, "feet"),
  18860. weight: math.unit(168, "lb"),
  18861. name: "Front",
  18862. image: {
  18863. source: "./media/characters/xerxes/front.svg",
  18864. extra: 282 / 260,
  18865. bottom: 0.045
  18866. }
  18867. },
  18868. },
  18869. [
  18870. {
  18871. name: "Normal",
  18872. height: math.unit(5 + 10 / 12, "feet"),
  18873. default: true
  18874. },
  18875. ]
  18876. ))
  18877. characterMakers.push(() => makeCharacter(
  18878. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18879. {
  18880. front: {
  18881. height: math.unit(6 + 7 / 12, "feet"),
  18882. weight: math.unit(208, "lb"),
  18883. name: "Front",
  18884. image: {
  18885. source: "./media/characters/chaska/front.svg",
  18886. extra: 332 / 319,
  18887. bottom: 0.015
  18888. }
  18889. },
  18890. },
  18891. [
  18892. {
  18893. name: "Normal",
  18894. height: math.unit(6 + 7 / 12, "feet"),
  18895. default: true
  18896. },
  18897. ]
  18898. ))
  18899. characterMakers.push(() => makeCharacter(
  18900. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18901. {
  18902. front: {
  18903. height: math.unit(5 + 8 / 12, "feet"),
  18904. weight: math.unit(208, "lb"),
  18905. name: "Front",
  18906. image: {
  18907. source: "./media/characters/enuk/front.svg",
  18908. extra: 437 / 406,
  18909. bottom: 0.02
  18910. }
  18911. },
  18912. },
  18913. [
  18914. {
  18915. name: "Normal",
  18916. height: math.unit(5 + 8 / 12, "feet"),
  18917. default: true
  18918. },
  18919. ]
  18920. ))
  18921. characterMakers.push(() => makeCharacter(
  18922. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18923. {
  18924. front: {
  18925. height: math.unit(5 + 10 / 12, "feet"),
  18926. weight: math.unit(252, "lb"),
  18927. name: "Front",
  18928. image: {
  18929. source: "./media/characters/bruun/front.svg",
  18930. extra: 197 / 187,
  18931. bottom: 0.012
  18932. }
  18933. },
  18934. },
  18935. [
  18936. {
  18937. name: "Normal",
  18938. height: math.unit(5 + 10 / 12, "feet"),
  18939. default: true
  18940. },
  18941. ]
  18942. ))
  18943. characterMakers.push(() => makeCharacter(
  18944. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18945. {
  18946. front: {
  18947. height: math.unit(6 + 10 / 12, "feet"),
  18948. weight: math.unit(255, "lb"),
  18949. name: "Front",
  18950. image: {
  18951. source: "./media/characters/alexeev/front.svg",
  18952. extra: 213 / 200,
  18953. bottom: 0.05
  18954. }
  18955. },
  18956. },
  18957. [
  18958. {
  18959. name: "Normal",
  18960. height: math.unit(6 + 10 / 12, "feet"),
  18961. default: true
  18962. },
  18963. ]
  18964. ))
  18965. characterMakers.push(() => makeCharacter(
  18966. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18967. {
  18968. front: {
  18969. height: math.unit(2 + 8 / 12, "feet"),
  18970. weight: math.unit(22, "lb"),
  18971. name: "Front",
  18972. image: {
  18973. source: "./media/characters/evelyn/front.svg",
  18974. extra: 208 / 180
  18975. }
  18976. },
  18977. },
  18978. [
  18979. {
  18980. name: "Normal",
  18981. height: math.unit(2 + 8 / 12, "feet"),
  18982. default: true
  18983. },
  18984. ]
  18985. ))
  18986. characterMakers.push(() => makeCharacter(
  18987. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18988. {
  18989. front: {
  18990. height: math.unit(5 + 9 / 12, "feet"),
  18991. weight: math.unit(139, "lb"),
  18992. name: "Front",
  18993. image: {
  18994. source: "./media/characters/inca/front.svg",
  18995. extra: 294 / 291,
  18996. bottom: 0.03
  18997. }
  18998. },
  18999. },
  19000. [
  19001. {
  19002. name: "Normal",
  19003. height: math.unit(5 + 9 / 12, "feet"),
  19004. default: true
  19005. },
  19006. ]
  19007. ))
  19008. characterMakers.push(() => makeCharacter(
  19009. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19010. {
  19011. front: {
  19012. height: math.unit(5 + 1 / 12, "feet"),
  19013. weight: math.unit(84, "lb"),
  19014. name: "Front",
  19015. image: {
  19016. source: "./media/characters/magdalene/front.svg",
  19017. extra: 293 / 273
  19018. }
  19019. },
  19020. },
  19021. [
  19022. {
  19023. name: "Normal",
  19024. height: math.unit(5 + 1 / 12, "feet"),
  19025. default: true
  19026. },
  19027. ]
  19028. ))
  19029. characterMakers.push(() => makeCharacter(
  19030. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19031. {
  19032. front: {
  19033. height: math.unit(6 + 3 / 12, "feet"),
  19034. weight: math.unit(185, "lb"),
  19035. name: "Front",
  19036. image: {
  19037. source: "./media/characters/mera/front.svg",
  19038. extra: 291 / 277,
  19039. bottom: 0.03
  19040. }
  19041. },
  19042. },
  19043. [
  19044. {
  19045. name: "Normal",
  19046. height: math.unit(6 + 3 / 12, "feet"),
  19047. default: true
  19048. },
  19049. ]
  19050. ))
  19051. characterMakers.push(() => makeCharacter(
  19052. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19053. {
  19054. front: {
  19055. height: math.unit(6 + 7 / 12, "feet"),
  19056. weight: math.unit(160, "lb"),
  19057. name: "Front",
  19058. image: {
  19059. source: "./media/characters/ceres/front.svg",
  19060. extra: 1023 / 950,
  19061. bottom: 0.027
  19062. }
  19063. },
  19064. back: {
  19065. height: math.unit(6 + 7 / 12, "feet"),
  19066. weight: math.unit(160, "lb"),
  19067. name: "Back",
  19068. image: {
  19069. source: "./media/characters/ceres/back.svg",
  19070. extra: 1023 / 950
  19071. }
  19072. },
  19073. },
  19074. [
  19075. {
  19076. name: "Normal",
  19077. height: math.unit(6 + 7 / 12, "feet"),
  19078. default: true
  19079. },
  19080. ]
  19081. ))
  19082. characterMakers.push(() => makeCharacter(
  19083. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19084. {
  19085. front: {
  19086. height: math.unit(5 + 10 / 12, "feet"),
  19087. weight: math.unit(150, "lb"),
  19088. name: "Front",
  19089. image: {
  19090. source: "./media/characters/kris/front.svg",
  19091. extra: 885 / 803,
  19092. bottom: 0.03
  19093. }
  19094. },
  19095. },
  19096. [
  19097. {
  19098. name: "Normal",
  19099. height: math.unit(5 + 10 / 12, "feet"),
  19100. default: true
  19101. },
  19102. ]
  19103. ))
  19104. characterMakers.push(() => makeCharacter(
  19105. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19106. {
  19107. front: {
  19108. height: math.unit(7, "feet"),
  19109. weight: math.unit(120, "kg"),
  19110. name: "Front",
  19111. image: {
  19112. source: "./media/characters/taluthus/front.svg",
  19113. extra: 903 / 833,
  19114. bottom: 0.015
  19115. }
  19116. },
  19117. },
  19118. [
  19119. {
  19120. name: "Normal",
  19121. height: math.unit(7, "feet"),
  19122. default: true
  19123. },
  19124. {
  19125. name: "Macro",
  19126. height: math.unit(300, "feet")
  19127. },
  19128. ]
  19129. ))
  19130. characterMakers.push(() => makeCharacter(
  19131. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19132. {
  19133. front: {
  19134. height: math.unit(5 + 9 / 12, "feet"),
  19135. weight: math.unit(145, "lb"),
  19136. name: "Front",
  19137. image: {
  19138. source: "./media/characters/dawn/front.svg",
  19139. extra: 2094 / 2016,
  19140. bottom: 0.025
  19141. }
  19142. },
  19143. back: {
  19144. height: math.unit(5 + 9 / 12, "feet"),
  19145. weight: math.unit(160, "lb"),
  19146. name: "Back",
  19147. image: {
  19148. source: "./media/characters/dawn/back.svg",
  19149. extra: 2112 / 2080,
  19150. bottom: 0.005
  19151. }
  19152. },
  19153. },
  19154. [
  19155. {
  19156. name: "Normal",
  19157. height: math.unit(6 + 7 / 12, "feet"),
  19158. default: true
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19164. {
  19165. anthro: {
  19166. height: math.unit(8 + 3 / 12, "feet"),
  19167. weight: math.unit(450, "lb"),
  19168. name: "Anthro",
  19169. image: {
  19170. source: "./media/characters/arador/anthro.svg",
  19171. extra: 1835 / 1718,
  19172. bottom: 0.025
  19173. }
  19174. },
  19175. feral: {
  19176. height: math.unit(4, "feet"),
  19177. weight: math.unit(200, "lb"),
  19178. name: "Feral",
  19179. image: {
  19180. source: "./media/characters/arador/feral.svg",
  19181. extra: 1683 / 1514,
  19182. bottom: 0.07
  19183. }
  19184. },
  19185. },
  19186. [
  19187. {
  19188. name: "Normal",
  19189. height: math.unit(8 + 3 / 12, "feet")
  19190. },
  19191. {
  19192. name: "Macro",
  19193. height: math.unit(82.5, "feet"),
  19194. default: true
  19195. },
  19196. ]
  19197. ))
  19198. characterMakers.push(() => makeCharacter(
  19199. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19200. {
  19201. front: {
  19202. height: math.unit(5 + 10 / 12, "feet"),
  19203. weight: math.unit(125, "lb"),
  19204. name: "Front",
  19205. image: {
  19206. source: "./media/characters/dharsi/front.svg",
  19207. extra: 716 / 630,
  19208. bottom: 0.035
  19209. }
  19210. },
  19211. },
  19212. [
  19213. {
  19214. name: "Nano",
  19215. height: math.unit(100, "nm")
  19216. },
  19217. {
  19218. name: "Micro",
  19219. height: math.unit(2, "inches")
  19220. },
  19221. {
  19222. name: "Normal",
  19223. height: math.unit(5 + 10 / 12, "feet"),
  19224. default: true
  19225. },
  19226. {
  19227. name: "Macro",
  19228. height: math.unit(1000, "feet")
  19229. },
  19230. {
  19231. name: "Megamacro",
  19232. height: math.unit(10, "miles")
  19233. },
  19234. {
  19235. name: "Gigamacro",
  19236. height: math.unit(3000, "miles")
  19237. },
  19238. {
  19239. name: "Teramacro",
  19240. height: math.unit(500000, "miles")
  19241. },
  19242. {
  19243. name: "Teramacro+",
  19244. height: math.unit(30, "galaxies")
  19245. },
  19246. ]
  19247. ))
  19248. characterMakers.push(() => makeCharacter(
  19249. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19250. {
  19251. front: {
  19252. height: math.unit(6, "feet"),
  19253. weight: math.unit(150, "lb"),
  19254. name: "Front",
  19255. image: {
  19256. source: "./media/characters/deathy/front.svg",
  19257. extra: 1552 / 1463,
  19258. bottom: 0.025
  19259. }
  19260. },
  19261. side: {
  19262. height: math.unit(6, "feet"),
  19263. weight: math.unit(150, "lb"),
  19264. name: "Side",
  19265. image: {
  19266. source: "./media/characters/deathy/side.svg",
  19267. extra: 1604 / 1455,
  19268. bottom: 0.025
  19269. }
  19270. },
  19271. back: {
  19272. height: math.unit(6, "feet"),
  19273. weight: math.unit(150, "lb"),
  19274. name: "Back",
  19275. image: {
  19276. source: "./media/characters/deathy/back.svg",
  19277. extra: 1580 / 1463,
  19278. bottom: 0.005
  19279. }
  19280. },
  19281. },
  19282. [
  19283. {
  19284. name: "Micro",
  19285. height: math.unit(5, "millimeters")
  19286. },
  19287. {
  19288. name: "Normal",
  19289. height: math.unit(6 + 5 / 12, "feet"),
  19290. default: true
  19291. },
  19292. ]
  19293. ))
  19294. characterMakers.push(() => makeCharacter(
  19295. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19296. {
  19297. front: {
  19298. height: math.unit(16, "feet"),
  19299. weight: math.unit(4000, "lb"),
  19300. name: "Front",
  19301. image: {
  19302. source: "./media/characters/juniper/front.svg",
  19303. bottom: 0.04
  19304. }
  19305. },
  19306. },
  19307. [
  19308. {
  19309. name: "Normal",
  19310. height: math.unit(16, "feet"),
  19311. default: true
  19312. },
  19313. ]
  19314. ))
  19315. characterMakers.push(() => makeCharacter(
  19316. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19317. {
  19318. front: {
  19319. height: math.unit(6, "feet"),
  19320. weight: math.unit(150, "lb"),
  19321. name: "Front",
  19322. image: {
  19323. source: "./media/characters/hipster/front.svg",
  19324. extra: 1312 / 1209,
  19325. bottom: 0.025
  19326. }
  19327. },
  19328. back: {
  19329. height: math.unit(6, "feet"),
  19330. weight: math.unit(150, "lb"),
  19331. name: "Back",
  19332. image: {
  19333. source: "./media/characters/hipster/back.svg",
  19334. extra: 1281 / 1196,
  19335. bottom: 0.01
  19336. }
  19337. },
  19338. },
  19339. [
  19340. {
  19341. name: "Micro",
  19342. height: math.unit(1, "mm")
  19343. },
  19344. {
  19345. name: "Normal",
  19346. height: math.unit(4, "inches"),
  19347. default: true
  19348. },
  19349. {
  19350. name: "Macro",
  19351. height: math.unit(500, "feet")
  19352. },
  19353. {
  19354. name: "Megamacro",
  19355. height: math.unit(1000, "miles")
  19356. },
  19357. ]
  19358. ))
  19359. characterMakers.push(() => makeCharacter(
  19360. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19361. {
  19362. front: {
  19363. height: math.unit(6, "feet"),
  19364. weight: math.unit(150, "lb"),
  19365. name: "Front",
  19366. image: {
  19367. source: "./media/characters/tendirmuldr/front.svg",
  19368. extra: 1878 / 1772,
  19369. bottom: 0.015
  19370. }
  19371. },
  19372. },
  19373. [
  19374. {
  19375. name: "Megamacro",
  19376. height: math.unit(1500, "miles"),
  19377. default: true
  19378. },
  19379. ]
  19380. ))
  19381. characterMakers.push(() => makeCharacter(
  19382. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19383. {
  19384. front: {
  19385. height: math.unit(14, "feet"),
  19386. weight: math.unit(12000, "lb"),
  19387. name: "Front",
  19388. image: {
  19389. source: "./media/characters/mort/front.svg",
  19390. extra: 365 / 318,
  19391. bottom: 0.01
  19392. }
  19393. },
  19394. side: {
  19395. height: math.unit(14, "feet"),
  19396. weight: math.unit(12000, "lb"),
  19397. name: "Side",
  19398. image: {
  19399. source: "./media/characters/mort/side.svg",
  19400. extra: 365 / 318,
  19401. bottom: 0.052
  19402. },
  19403. default: true
  19404. },
  19405. back: {
  19406. height: math.unit(14, "feet"),
  19407. weight: math.unit(12000, "lb"),
  19408. name: "Back",
  19409. image: {
  19410. source: "./media/characters/mort/back.svg",
  19411. extra: 371 / 332,
  19412. bottom: 0.18
  19413. }
  19414. },
  19415. },
  19416. [
  19417. {
  19418. name: "Normal",
  19419. height: math.unit(14, "feet"),
  19420. default: true
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19426. {
  19427. front: {
  19428. height: math.unit(8, "feet"),
  19429. weight: math.unit(1, "ton"),
  19430. name: "Front",
  19431. image: {
  19432. source: "./media/characters/lycoa/front.svg",
  19433. extra: 1875 / 1789,
  19434. bottom: 0.022
  19435. }
  19436. },
  19437. back: {
  19438. height: math.unit(8, "feet"),
  19439. weight: math.unit(1, "ton"),
  19440. name: "Back",
  19441. image: {
  19442. source: "./media/characters/lycoa/back.svg",
  19443. extra: 1835 / 1781,
  19444. bottom: 0.03
  19445. }
  19446. },
  19447. head: {
  19448. height: math.unit(2.1, "feet"),
  19449. name: "Head",
  19450. image: {
  19451. source: "./media/characters/lycoa/head.svg"
  19452. }
  19453. },
  19454. tailmaw: {
  19455. height: math.unit(1.9, "feet"),
  19456. name: "Tailmaw",
  19457. image: {
  19458. source: "./media/characters/lycoa/tailmaw.svg"
  19459. }
  19460. },
  19461. tentacles: {
  19462. height: math.unit(2.1, "feet"),
  19463. name: "Tentacles",
  19464. image: {
  19465. source: "./media/characters/lycoa/tentacles.svg"
  19466. }
  19467. },
  19468. dick: {
  19469. height: math.unit(1.73, "feet"),
  19470. name: "Dick",
  19471. image: {
  19472. source: "./media/characters/lycoa/dick.svg"
  19473. }
  19474. },
  19475. },
  19476. [
  19477. {
  19478. name: "Normal",
  19479. height: math.unit(8, "feet"),
  19480. default: true
  19481. },
  19482. {
  19483. name: "Macro",
  19484. height: math.unit(30, "feet")
  19485. },
  19486. ]
  19487. ))
  19488. characterMakers.push(() => makeCharacter(
  19489. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19490. {
  19491. front: {
  19492. height: math.unit(4 + 2 / 12, "feet"),
  19493. weight: math.unit(70, "lb"),
  19494. name: "Front",
  19495. image: {
  19496. source: "./media/characters/naldara/front.svg",
  19497. extra: 841 / 720,
  19498. bottom: 0.04
  19499. }
  19500. },
  19501. naga: {
  19502. height: math.unit(23, "feet"),
  19503. weight: math.unit(15000, "kg"),
  19504. name: "Naga",
  19505. image: {
  19506. source: "./media/characters/naldara/naga.svg",
  19507. extra: 3290 / 2959,
  19508. bottom: 124 / 3432
  19509. }
  19510. },
  19511. },
  19512. [
  19513. {
  19514. name: "Normal",
  19515. height: math.unit(4 + 2 / 12, "feet"),
  19516. default: true
  19517. },
  19518. ]
  19519. ))
  19520. characterMakers.push(() => makeCharacter(
  19521. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19522. {
  19523. front: {
  19524. height: math.unit(13 + 7 / 12, "feet"),
  19525. weight: math.unit(1500, "lb"),
  19526. name: "Front",
  19527. image: {
  19528. source: "./media/characters/briar/front.svg",
  19529. extra: 626 / 596,
  19530. bottom: 0.08
  19531. }
  19532. },
  19533. },
  19534. [
  19535. {
  19536. name: "Normal",
  19537. height: math.unit(13 + 7 / 12, "feet"),
  19538. default: true
  19539. },
  19540. ]
  19541. ))
  19542. characterMakers.push(() => makeCharacter(
  19543. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19544. {
  19545. side: {
  19546. height: math.unit(10, "feet"),
  19547. weight: math.unit(500, "lb"),
  19548. name: "Side",
  19549. image: {
  19550. source: "./media/characters/vanguard/side.svg",
  19551. extra: 502 / 425,
  19552. bottom: 0.087
  19553. }
  19554. },
  19555. },
  19556. [
  19557. {
  19558. name: "Normal",
  19559. height: math.unit(10, "feet"),
  19560. default: true
  19561. },
  19562. ]
  19563. ))
  19564. characterMakers.push(() => makeCharacter(
  19565. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19566. {
  19567. front: {
  19568. height: math.unit(7.5, "feet"),
  19569. weight: math.unit(2, "lb"),
  19570. name: "Front",
  19571. image: {
  19572. source: "./media/characters/artemis/front.svg",
  19573. extra: 1192 / 1075,
  19574. bottom: 0.07
  19575. }
  19576. },
  19577. frontNsfw: {
  19578. height: math.unit(7.5, "feet"),
  19579. weight: math.unit(2, "lb"),
  19580. name: "Front (NSFW)",
  19581. image: {
  19582. source: "./media/characters/artemis/front-nsfw.svg",
  19583. extra: 1192 / 1075,
  19584. bottom: 0.07
  19585. }
  19586. },
  19587. frontNsfwer: {
  19588. height: math.unit(7.5, "feet"),
  19589. weight: math.unit(2, "lb"),
  19590. name: "Front (NSFW-er)",
  19591. image: {
  19592. source: "./media/characters/artemis/front-nsfwer.svg",
  19593. extra: 1192 / 1075,
  19594. bottom: 0.07
  19595. }
  19596. },
  19597. side: {
  19598. height: math.unit(7.5, "feet"),
  19599. weight: math.unit(2, "lb"),
  19600. name: "Side",
  19601. image: {
  19602. source: "./media/characters/artemis/side.svg",
  19603. extra: 1192 / 1075,
  19604. bottom: 0.07
  19605. }
  19606. },
  19607. sideNsfw: {
  19608. height: math.unit(7.5, "feet"),
  19609. weight: math.unit(2, "lb"),
  19610. name: "Side (NSFW)",
  19611. image: {
  19612. source: "./media/characters/artemis/side-nsfw.svg",
  19613. extra: 1192 / 1075,
  19614. bottom: 0.07
  19615. }
  19616. },
  19617. sideNsfwer: {
  19618. height: math.unit(7.5, "feet"),
  19619. weight: math.unit(2, "lb"),
  19620. name: "Side (NSFW-er)",
  19621. image: {
  19622. source: "./media/characters/artemis/side-nsfwer.svg",
  19623. extra: 1192 / 1075,
  19624. bottom: 0.07
  19625. }
  19626. },
  19627. maw: {
  19628. height: math.unit(1.1, "feet"),
  19629. name: "Maw",
  19630. image: {
  19631. source: "./media/characters/artemis/maw.svg"
  19632. }
  19633. },
  19634. stomach: {
  19635. height: math.unit(0.95, "feet"),
  19636. name: "Stomach",
  19637. image: {
  19638. source: "./media/characters/artemis/stomach.svg"
  19639. }
  19640. },
  19641. dickCanine: {
  19642. height: math.unit(1, "feet"),
  19643. name: "Dick (Canine)",
  19644. image: {
  19645. source: "./media/characters/artemis/dick-canine.svg"
  19646. }
  19647. },
  19648. dickEquine: {
  19649. height: math.unit(0.85, "feet"),
  19650. name: "Dick (Equine)",
  19651. image: {
  19652. source: "./media/characters/artemis/dick-equine.svg"
  19653. }
  19654. },
  19655. dickExotic: {
  19656. height: math.unit(0.85, "feet"),
  19657. name: "Dick (Exotic)",
  19658. image: {
  19659. source: "./media/characters/artemis/dick-exotic.svg"
  19660. }
  19661. },
  19662. },
  19663. [
  19664. {
  19665. name: "Normal",
  19666. height: math.unit(7.5, "feet"),
  19667. default: true
  19668. },
  19669. {
  19670. name: "Enlarged",
  19671. height: math.unit(12, "feet")
  19672. },
  19673. ]
  19674. ))
  19675. characterMakers.push(() => makeCharacter(
  19676. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19677. {
  19678. front: {
  19679. height: math.unit(5 + 3 / 12, "feet"),
  19680. weight: math.unit(160, "lb"),
  19681. name: "Front",
  19682. image: {
  19683. source: "./media/characters/kira/front.svg",
  19684. extra: 906 / 786,
  19685. bottom: 0.01
  19686. }
  19687. },
  19688. back: {
  19689. height: math.unit(5 + 3 / 12, "feet"),
  19690. weight: math.unit(160, "lb"),
  19691. name: "Back",
  19692. image: {
  19693. source: "./media/characters/kira/back.svg",
  19694. extra: 882 / 757,
  19695. bottom: 0.005
  19696. }
  19697. },
  19698. frontDressed: {
  19699. height: math.unit(5 + 3 / 12, "feet"),
  19700. weight: math.unit(160, "lb"),
  19701. name: "Front (Dressed)",
  19702. image: {
  19703. source: "./media/characters/kira/front-dressed.svg",
  19704. extra: 906 / 786,
  19705. bottom: 0.01
  19706. }
  19707. },
  19708. beans: {
  19709. height: math.unit(0.92, "feet"),
  19710. name: "Beans",
  19711. image: {
  19712. source: "./media/characters/kira/beans.svg"
  19713. }
  19714. },
  19715. },
  19716. [
  19717. {
  19718. name: "Normal",
  19719. height: math.unit(5 + 3 / 12, "feet"),
  19720. default: true
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19726. {
  19727. front: {
  19728. height: math.unit(5 + 4 / 12, "feet"),
  19729. weight: math.unit(145, "lb"),
  19730. name: "Front",
  19731. image: {
  19732. source: "./media/characters/scramble/front.svg",
  19733. extra: 763 / 727,
  19734. bottom: 0.05
  19735. }
  19736. },
  19737. back: {
  19738. height: math.unit(5 + 4 / 12, "feet"),
  19739. weight: math.unit(145, "lb"),
  19740. name: "Back",
  19741. image: {
  19742. source: "./media/characters/scramble/back.svg",
  19743. extra: 826 / 737,
  19744. bottom: 0.002
  19745. }
  19746. },
  19747. },
  19748. [
  19749. {
  19750. name: "Normal",
  19751. height: math.unit(5 + 4 / 12, "feet"),
  19752. default: true
  19753. },
  19754. ]
  19755. ))
  19756. characterMakers.push(() => makeCharacter(
  19757. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19758. {
  19759. side: {
  19760. height: math.unit(6 + 2 / 12, "feet"),
  19761. weight: math.unit(190, "lb"),
  19762. name: "Side",
  19763. image: {
  19764. source: "./media/characters/biscuit/side.svg",
  19765. extra: 858 / 791,
  19766. bottom: 0.044
  19767. }
  19768. },
  19769. },
  19770. [
  19771. {
  19772. name: "Normal",
  19773. height: math.unit(6 + 2 / 12, "feet"),
  19774. default: true
  19775. },
  19776. ]
  19777. ))
  19778. characterMakers.push(() => makeCharacter(
  19779. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19780. {
  19781. front: {
  19782. height: math.unit(5 + 2 / 12, "feet"),
  19783. weight: math.unit(120, "lb"),
  19784. name: "Front",
  19785. image: {
  19786. source: "./media/characters/poffin/front.svg",
  19787. extra: 786 / 680,
  19788. bottom: 0.005
  19789. }
  19790. },
  19791. },
  19792. [
  19793. {
  19794. name: "Normal",
  19795. height: math.unit(5 + 2 / 12, "feet"),
  19796. default: true
  19797. },
  19798. ]
  19799. ))
  19800. characterMakers.push(() => makeCharacter(
  19801. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19802. {
  19803. front: {
  19804. height: math.unit(6 + 3 / 12, "feet"),
  19805. weight: math.unit(519, "lb"),
  19806. name: "Front",
  19807. image: {
  19808. source: "./media/characters/dhari/front.svg",
  19809. extra: 1048 / 946,
  19810. bottom: 0.015
  19811. }
  19812. },
  19813. back: {
  19814. height: math.unit(6 + 3 / 12, "feet"),
  19815. weight: math.unit(519, "lb"),
  19816. name: "Back",
  19817. image: {
  19818. source: "./media/characters/dhari/back.svg",
  19819. extra: 1048 / 931,
  19820. bottom: 0.005
  19821. }
  19822. },
  19823. frontDressed: {
  19824. height: math.unit(6 + 3 / 12, "feet"),
  19825. weight: math.unit(519, "lb"),
  19826. name: "Front (Dressed)",
  19827. image: {
  19828. source: "./media/characters/dhari/front-dressed.svg",
  19829. extra: 1713 / 1546,
  19830. bottom: 0.02
  19831. }
  19832. },
  19833. backDressed: {
  19834. height: math.unit(6 + 3 / 12, "feet"),
  19835. weight: math.unit(519, "lb"),
  19836. name: "Back (Dressed)",
  19837. image: {
  19838. source: "./media/characters/dhari/back-dressed.svg",
  19839. extra: 1699 / 1537,
  19840. bottom: 0.01
  19841. }
  19842. },
  19843. maw: {
  19844. height: math.unit(0.95, "feet"),
  19845. name: "Maw",
  19846. image: {
  19847. source: "./media/characters/dhari/maw.svg"
  19848. }
  19849. },
  19850. wereFront: {
  19851. height: math.unit(12 + 8 / 12, "feet"),
  19852. weight: math.unit(4000, "lb"),
  19853. name: "Front (Were)",
  19854. image: {
  19855. source: "./media/characters/dhari/were-front.svg",
  19856. extra: 1065 / 969,
  19857. bottom: 0.015
  19858. }
  19859. },
  19860. wereBack: {
  19861. height: math.unit(12 + 8 / 12, "feet"),
  19862. weight: math.unit(4000, "lb"),
  19863. name: "Back (Were)",
  19864. image: {
  19865. source: "./media/characters/dhari/were-back.svg",
  19866. extra: 1065 / 969,
  19867. bottom: 0.012
  19868. }
  19869. },
  19870. wereMaw: {
  19871. height: math.unit(0.625, "meters"),
  19872. name: "Maw (Were)",
  19873. image: {
  19874. source: "./media/characters/dhari/were-maw.svg"
  19875. }
  19876. },
  19877. },
  19878. [
  19879. {
  19880. name: "Normal",
  19881. height: math.unit(6 + 3 / 12, "feet"),
  19882. default: true
  19883. },
  19884. ]
  19885. ))
  19886. characterMakers.push(() => makeCharacter(
  19887. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19888. {
  19889. anthro: {
  19890. height: math.unit(5 + 7 / 12, "feet"),
  19891. weight: math.unit(175, "lb"),
  19892. name: "Anthro",
  19893. image: {
  19894. source: "./media/characters/rena-dyne/anthro.svg",
  19895. extra: 1849 / 1785,
  19896. bottom: 0.005
  19897. }
  19898. },
  19899. taur: {
  19900. height: math.unit(15 + 6 / 12, "feet"),
  19901. weight: math.unit(8000, "lb"),
  19902. name: "Taur",
  19903. image: {
  19904. source: "./media/characters/rena-dyne/taur.svg",
  19905. extra: 2315 / 2234,
  19906. bottom: 0.033
  19907. }
  19908. },
  19909. },
  19910. [
  19911. {
  19912. name: "Normal",
  19913. height: math.unit(5 + 7 / 12, "feet"),
  19914. default: true
  19915. },
  19916. ]
  19917. ))
  19918. characterMakers.push(() => makeCharacter(
  19919. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19920. {
  19921. front: {
  19922. height: math.unit(8, "feet"),
  19923. weight: math.unit(600, "lb"),
  19924. name: "Front",
  19925. image: {
  19926. source: "./media/characters/weremeep/front.svg",
  19927. extra: 967 / 862,
  19928. bottom: 0.01
  19929. }
  19930. },
  19931. },
  19932. [
  19933. {
  19934. name: "Normal",
  19935. height: math.unit(8, "feet"),
  19936. default: true
  19937. },
  19938. {
  19939. name: "Lorg",
  19940. height: math.unit(12, "feet")
  19941. },
  19942. {
  19943. name: "Oh Lawd She Comin'",
  19944. height: math.unit(20, "feet")
  19945. },
  19946. ]
  19947. ))
  19948. characterMakers.push(() => makeCharacter(
  19949. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19950. {
  19951. front: {
  19952. height: math.unit(4, "feet"),
  19953. weight: math.unit(90, "lb"),
  19954. name: "Front",
  19955. image: {
  19956. source: "./media/characters/reza/front.svg",
  19957. extra: 1183 / 1111,
  19958. bottom: 0.017
  19959. }
  19960. },
  19961. back: {
  19962. height: math.unit(4, "feet"),
  19963. weight: math.unit(90, "lb"),
  19964. name: "Back",
  19965. image: {
  19966. source: "./media/characters/reza/back.svg",
  19967. extra: 1183 / 1111,
  19968. bottom: 0.01
  19969. }
  19970. },
  19971. drake: {
  19972. height: math.unit(30, "feet"),
  19973. weight: math.unit(246960, "lb"),
  19974. name: "Drake",
  19975. image: {
  19976. source: "./media/characters/reza/drake.svg",
  19977. extra: 2350 / 2024,
  19978. bottom: 60.7 / 2403
  19979. }
  19980. },
  19981. },
  19982. [
  19983. {
  19984. name: "Normal",
  19985. height: math.unit(4, "feet"),
  19986. default: true
  19987. },
  19988. ]
  19989. ))
  19990. characterMakers.push(() => makeCharacter(
  19991. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19992. {
  19993. side: {
  19994. height: math.unit(15, "feet"),
  19995. weight: math.unit(14, "tons"),
  19996. name: "Side",
  19997. image: {
  19998. source: "./media/characters/athea/side.svg",
  19999. extra: 960 / 540,
  20000. bottom: 0.003
  20001. }
  20002. },
  20003. sitting: {
  20004. height: math.unit(6 * 2.85, "feet"),
  20005. weight: math.unit(14, "tons"),
  20006. name: "Sitting",
  20007. image: {
  20008. source: "./media/characters/athea/sitting.svg",
  20009. extra: 621 / 581,
  20010. bottom: 0.075
  20011. }
  20012. },
  20013. maw: {
  20014. height: math.unit(7.59498031496063, "feet"),
  20015. name: "Maw",
  20016. image: {
  20017. source: "./media/characters/athea/maw.svg"
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Lap Cat",
  20024. height: math.unit(2.5, "feet")
  20025. },
  20026. {
  20027. name: "Minimacro",
  20028. height: math.unit(15, "feet"),
  20029. default: true
  20030. },
  20031. {
  20032. name: "Macro",
  20033. height: math.unit(120, "feet")
  20034. },
  20035. {
  20036. name: "Macro+",
  20037. height: math.unit(640, "feet")
  20038. },
  20039. {
  20040. name: "Colossus",
  20041. height: math.unit(2.2, "miles")
  20042. },
  20043. ]
  20044. ))
  20045. characterMakers.push(() => makeCharacter(
  20046. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20047. {
  20048. front: {
  20049. height: math.unit(8 + 8 / 12, "feet"),
  20050. weight: math.unit(130, "kg"),
  20051. name: "Front",
  20052. image: {
  20053. source: "./media/characters/seroko/front.svg",
  20054. extra: 1385 / 1280,
  20055. bottom: 0.025
  20056. }
  20057. },
  20058. back: {
  20059. height: math.unit(8 + 8 / 12, "feet"),
  20060. weight: math.unit(130, "kg"),
  20061. name: "Back",
  20062. image: {
  20063. source: "./media/characters/seroko/back.svg",
  20064. extra: 1369 / 1238,
  20065. bottom: 0.018
  20066. }
  20067. },
  20068. frontDressed: {
  20069. height: math.unit(8 + 8 / 12, "feet"),
  20070. weight: math.unit(130, "kg"),
  20071. name: "Front (Dressed)",
  20072. image: {
  20073. source: "./media/characters/seroko/front-dressed.svg",
  20074. extra: 1366 / 1275,
  20075. bottom: 0.03
  20076. }
  20077. },
  20078. },
  20079. [
  20080. {
  20081. name: "Normal",
  20082. height: math.unit(8 + 8 / 12, "feet"),
  20083. default: true
  20084. },
  20085. ]
  20086. ))
  20087. characterMakers.push(() => makeCharacter(
  20088. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20089. {
  20090. front: {
  20091. height: math.unit(5.5, "feet"),
  20092. weight: math.unit(160, "lb"),
  20093. name: "Front",
  20094. image: {
  20095. source: "./media/characters/quatzi/front.svg",
  20096. extra: 2346 / 2242,
  20097. bottom: 0.015
  20098. }
  20099. },
  20100. },
  20101. [
  20102. {
  20103. name: "Normal",
  20104. height: math.unit(5.5, "feet"),
  20105. default: true
  20106. },
  20107. {
  20108. name: "Big",
  20109. height: math.unit(7.7, "feet")
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20115. {
  20116. front: {
  20117. height: math.unit(5 + 11 / 12, "feet"),
  20118. weight: math.unit(180, "lb"),
  20119. name: "Front",
  20120. image: {
  20121. source: "./media/characters/sen/front.svg",
  20122. extra: 1321 / 1254,
  20123. bottom: 0.015
  20124. }
  20125. },
  20126. side: {
  20127. height: math.unit(5 + 11 / 12, "feet"),
  20128. weight: math.unit(180, "lb"),
  20129. name: "Side",
  20130. image: {
  20131. source: "./media/characters/sen/side.svg",
  20132. extra: 1321 / 1254,
  20133. bottom: 0.007
  20134. }
  20135. },
  20136. back: {
  20137. height: math.unit(5 + 11 / 12, "feet"),
  20138. weight: math.unit(180, "lb"),
  20139. name: "Back",
  20140. image: {
  20141. source: "./media/characters/sen/back.svg",
  20142. extra: 1321 / 1254
  20143. }
  20144. },
  20145. },
  20146. [
  20147. {
  20148. name: "Normal",
  20149. height: math.unit(5 + 11 / 12, "feet"),
  20150. default: true
  20151. },
  20152. ]
  20153. ))
  20154. characterMakers.push(() => makeCharacter(
  20155. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20156. {
  20157. front: {
  20158. height: math.unit(166.6, "cm"),
  20159. weight: math.unit(66.6, "kg"),
  20160. name: "Front",
  20161. image: {
  20162. source: "./media/characters/fruity/front.svg",
  20163. extra: 1510 / 1386,
  20164. bottom: 0.04
  20165. }
  20166. },
  20167. back: {
  20168. height: math.unit(166.6, "cm"),
  20169. weight: math.unit(66.6, "lb"),
  20170. name: "Back",
  20171. image: {
  20172. source: "./media/characters/fruity/back.svg",
  20173. extra: 1563 / 1435,
  20174. bottom: 0.005
  20175. }
  20176. },
  20177. },
  20178. [
  20179. {
  20180. name: "Normal",
  20181. height: math.unit(166.6, "cm"),
  20182. default: true
  20183. },
  20184. {
  20185. name: "Demonic",
  20186. height: math.unit(166.6, "feet")
  20187. },
  20188. ]
  20189. ))
  20190. characterMakers.push(() => makeCharacter(
  20191. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20192. {
  20193. side: {
  20194. height: math.unit(10, "feet"),
  20195. weight: math.unit(500, "lb"),
  20196. name: "Side",
  20197. image: {
  20198. source: "./media/characters/zost/side.svg",
  20199. extra: 966 / 880,
  20200. bottom: 0.075
  20201. }
  20202. },
  20203. mawFront: {
  20204. height: math.unit(1.08, "meters"),
  20205. name: "Maw (Front)",
  20206. image: {
  20207. source: "./media/characters/zost/maw-front.svg"
  20208. }
  20209. },
  20210. mawSide: {
  20211. height: math.unit(2.66, "feet"),
  20212. name: "Maw (Side)",
  20213. image: {
  20214. source: "./media/characters/zost/maw-side.svg"
  20215. }
  20216. },
  20217. },
  20218. [
  20219. {
  20220. name: "Normal",
  20221. height: math.unit(10, "feet"),
  20222. default: true
  20223. },
  20224. ]
  20225. ))
  20226. characterMakers.push(() => makeCharacter(
  20227. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20228. {
  20229. front: {
  20230. height: math.unit(5 + 4 / 12, "feet"),
  20231. weight: math.unit(120, "lb"),
  20232. name: "Front",
  20233. image: {
  20234. source: "./media/characters/luci/front.svg",
  20235. extra: 1985 / 1884,
  20236. bottom: 0.04
  20237. }
  20238. },
  20239. back: {
  20240. height: math.unit(5 + 4 / 12, "feet"),
  20241. weight: math.unit(120, "lb"),
  20242. name: "Back",
  20243. image: {
  20244. source: "./media/characters/luci/back.svg",
  20245. extra: 1892 / 1791,
  20246. bottom: 0.002
  20247. }
  20248. },
  20249. },
  20250. [
  20251. {
  20252. name: "Normal",
  20253. height: math.unit(5 + 4 / 12, "feet"),
  20254. default: true
  20255. },
  20256. ]
  20257. ))
  20258. characterMakers.push(() => makeCharacter(
  20259. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20260. {
  20261. front: {
  20262. height: math.unit(1500, "feet"),
  20263. weight: math.unit(3.8e6, "tons"),
  20264. name: "Front",
  20265. image: {
  20266. source: "./media/characters/2th/front.svg",
  20267. extra: 3489 / 3350,
  20268. bottom: 0.1
  20269. }
  20270. },
  20271. foot: {
  20272. height: math.unit(461, "feet"),
  20273. name: "Foot",
  20274. image: {
  20275. source: "./media/characters/2th/foot.svg"
  20276. }
  20277. },
  20278. },
  20279. [
  20280. {
  20281. name: "\"Micro\"",
  20282. height: math.unit(15 + 7 / 12, "feet")
  20283. },
  20284. {
  20285. name: "Normal",
  20286. height: math.unit(1500, "feet"),
  20287. default: true
  20288. },
  20289. {
  20290. name: "Macro",
  20291. height: math.unit(5000, "feet")
  20292. },
  20293. {
  20294. name: "Megamacro",
  20295. height: math.unit(15, "miles")
  20296. },
  20297. {
  20298. name: "Gigamacro",
  20299. height: math.unit(4000, "miles")
  20300. },
  20301. {
  20302. name: "Galactic",
  20303. height: math.unit(50, "AU")
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20309. {
  20310. front: {
  20311. height: math.unit(5 + 6 / 12, "feet"),
  20312. weight: math.unit(220, "lb"),
  20313. name: "Front",
  20314. image: {
  20315. source: "./media/characters/amethyst/front.svg",
  20316. extra: 2078 / 2040,
  20317. bottom: 0.045
  20318. }
  20319. },
  20320. back: {
  20321. height: math.unit(5 + 6 / 12, "feet"),
  20322. weight: math.unit(220, "lb"),
  20323. name: "Back",
  20324. image: {
  20325. source: "./media/characters/amethyst/back.svg",
  20326. extra: 2021 / 1989,
  20327. bottom: 0.02
  20328. }
  20329. },
  20330. },
  20331. [
  20332. {
  20333. name: "Normal",
  20334. height: math.unit(5 + 6 / 12, "feet"),
  20335. default: true
  20336. },
  20337. ]
  20338. ))
  20339. characterMakers.push(() => makeCharacter(
  20340. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20341. {
  20342. front: {
  20343. height: math.unit(4 + 11 / 12, "feet"),
  20344. weight: math.unit(120, "lb"),
  20345. name: "Front",
  20346. image: {
  20347. source: "./media/characters/yumi-akiyama/front.svg",
  20348. extra: 1327 / 1235,
  20349. bottom: 0.02
  20350. }
  20351. },
  20352. back: {
  20353. height: math.unit(4 + 11 / 12, "feet"),
  20354. weight: math.unit(120, "lb"),
  20355. name: "Back",
  20356. image: {
  20357. source: "./media/characters/yumi-akiyama/back.svg",
  20358. extra: 1287 / 1245,
  20359. bottom: 0.002
  20360. }
  20361. },
  20362. },
  20363. [
  20364. {
  20365. name: "Galactic",
  20366. height: math.unit(50, "galaxies"),
  20367. default: true
  20368. },
  20369. {
  20370. name: "Universal",
  20371. height: math.unit(100, "universes")
  20372. },
  20373. ]
  20374. ))
  20375. characterMakers.push(() => makeCharacter(
  20376. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20377. {
  20378. front: {
  20379. height: math.unit(8, "feet"),
  20380. weight: math.unit(500, "lb"),
  20381. name: "Front",
  20382. image: {
  20383. source: "./media/characters/rifter-yrmori/front.svg",
  20384. extra: 1180 / 1125,
  20385. bottom: 0.02
  20386. }
  20387. },
  20388. back: {
  20389. height: math.unit(8, "feet"),
  20390. weight: math.unit(500, "lb"),
  20391. name: "Back",
  20392. image: {
  20393. source: "./media/characters/rifter-yrmori/back.svg",
  20394. extra: 1190 / 1145,
  20395. bottom: 0.001
  20396. }
  20397. },
  20398. wings: {
  20399. height: math.unit(7.75, "feet"),
  20400. weight: math.unit(500, "lb"),
  20401. name: "Wings",
  20402. image: {
  20403. source: "./media/characters/rifter-yrmori/wings.svg",
  20404. extra: 1357 / 1285
  20405. }
  20406. },
  20407. maw: {
  20408. height: math.unit(0.8, "feet"),
  20409. name: "Maw",
  20410. image: {
  20411. source: "./media/characters/rifter-yrmori/maw.svg"
  20412. }
  20413. },
  20414. mawfront: {
  20415. height: math.unit(1.45, "feet"),
  20416. name: "Maw (Front)",
  20417. image: {
  20418. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20419. }
  20420. },
  20421. },
  20422. [
  20423. {
  20424. name: "Normal",
  20425. height: math.unit(8, "feet"),
  20426. default: true
  20427. },
  20428. {
  20429. name: "Macro",
  20430. height: math.unit(42, "meters")
  20431. },
  20432. ]
  20433. ))
  20434. characterMakers.push(() => makeCharacter(
  20435. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20436. {
  20437. were: {
  20438. height: math.unit(25 + 6 / 12, "feet"),
  20439. weight: math.unit(10000, "lb"),
  20440. name: "Were",
  20441. image: {
  20442. source: "./media/characters/tahajin/were.svg",
  20443. extra: 801 / 770,
  20444. bottom: 0.042
  20445. }
  20446. },
  20447. aquatic: {
  20448. height: math.unit(6 + 4 / 12, "feet"),
  20449. weight: math.unit(160, "lb"),
  20450. name: "Aquatic",
  20451. image: {
  20452. source: "./media/characters/tahajin/aquatic.svg",
  20453. extra: 572 / 542,
  20454. bottom: 0.04
  20455. }
  20456. },
  20457. chow: {
  20458. height: math.unit(8 + 11 / 12, "feet"),
  20459. weight: math.unit(450, "lb"),
  20460. name: "Chow",
  20461. image: {
  20462. source: "./media/characters/tahajin/chow.svg",
  20463. extra: 660 / 640,
  20464. bottom: 0.015
  20465. }
  20466. },
  20467. demiNaga: {
  20468. height: math.unit(6 + 8 / 12, "feet"),
  20469. weight: math.unit(300, "lb"),
  20470. name: "Demi Naga",
  20471. image: {
  20472. source: "./media/characters/tahajin/demi-naga.svg",
  20473. extra: 643 / 615,
  20474. bottom: 0.1
  20475. }
  20476. },
  20477. data: {
  20478. height: math.unit(5, "inches"),
  20479. weight: math.unit(0.1, "lb"),
  20480. name: "Data",
  20481. image: {
  20482. source: "./media/characters/tahajin/data.svg"
  20483. }
  20484. },
  20485. fluu: {
  20486. height: math.unit(5 + 7 / 12, "feet"),
  20487. weight: math.unit(140, "lb"),
  20488. name: "Fluu",
  20489. image: {
  20490. source: "./media/characters/tahajin/fluu.svg",
  20491. extra: 628 / 592,
  20492. bottom: 0.02
  20493. }
  20494. },
  20495. starWarrior: {
  20496. height: math.unit(4 + 5 / 12, "feet"),
  20497. weight: math.unit(50, "lb"),
  20498. name: "Star Warrior",
  20499. image: {
  20500. source: "./media/characters/tahajin/star-warrior.svg"
  20501. }
  20502. },
  20503. },
  20504. [
  20505. {
  20506. name: "Normal",
  20507. height: math.unit(25 + 6 / 12, "feet"),
  20508. default: true
  20509. },
  20510. ]
  20511. ))
  20512. characterMakers.push(() => makeCharacter(
  20513. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20514. {
  20515. front: {
  20516. height: math.unit(8, "feet"),
  20517. weight: math.unit(350, "lb"),
  20518. name: "Front",
  20519. image: {
  20520. source: "./media/characters/gabira/front.svg",
  20521. extra: 608 / 580,
  20522. bottom: 0.03
  20523. }
  20524. },
  20525. back: {
  20526. height: math.unit(8, "feet"),
  20527. weight: math.unit(350, "lb"),
  20528. name: "Back",
  20529. image: {
  20530. source: "./media/characters/gabira/back.svg",
  20531. extra: 608 / 580,
  20532. bottom: 0.03
  20533. }
  20534. },
  20535. },
  20536. [
  20537. {
  20538. name: "Normal",
  20539. height: math.unit(8, "feet"),
  20540. default: true
  20541. },
  20542. ]
  20543. ))
  20544. characterMakers.push(() => makeCharacter(
  20545. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20546. {
  20547. front: {
  20548. height: math.unit(5 + 3 / 12, "feet"),
  20549. weight: math.unit(137, "lb"),
  20550. name: "Front",
  20551. image: {
  20552. source: "./media/characters/sasha-katraine/front.svg",
  20553. bottom: 0.045
  20554. }
  20555. },
  20556. },
  20557. [
  20558. {
  20559. name: "Micro",
  20560. height: math.unit(5, "inches")
  20561. },
  20562. {
  20563. name: "Normal",
  20564. height: math.unit(5 + 3 / 12, "feet"),
  20565. default: true
  20566. },
  20567. ]
  20568. ))
  20569. characterMakers.push(() => makeCharacter(
  20570. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20571. {
  20572. side: {
  20573. height: math.unit(4, "inches"),
  20574. weight: math.unit(200, "grams"),
  20575. name: "Side",
  20576. image: {
  20577. source: "./media/characters/der/side.svg",
  20578. extra: 719 / 400,
  20579. bottom: 30.6 / 749.9187
  20580. }
  20581. },
  20582. },
  20583. [
  20584. {
  20585. name: "Micro",
  20586. height: math.unit(4, "inches"),
  20587. default: true
  20588. },
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20593. {
  20594. side: {
  20595. height: math.unit(30, "meters"),
  20596. weight: math.unit(700, "tonnes"),
  20597. name: "Side",
  20598. image: {
  20599. source: "./media/characters/fixerdragon/side.svg",
  20600. extra: (1293.0514 - 116.03) / 1106.86,
  20601. bottom: 116.03 / 1293.0514
  20602. }
  20603. },
  20604. },
  20605. [
  20606. {
  20607. name: "Planck",
  20608. height: math.unit(1.6e-35, "meters")
  20609. },
  20610. {
  20611. name: "Micro",
  20612. height: math.unit(0.4, "meters")
  20613. },
  20614. {
  20615. name: "Normal",
  20616. height: math.unit(30, "meters"),
  20617. default: true
  20618. },
  20619. {
  20620. name: "Megamacro",
  20621. height: math.unit(1.2, "megameters")
  20622. },
  20623. {
  20624. name: "Teramacro",
  20625. height: math.unit(130, "terameters")
  20626. },
  20627. {
  20628. name: "Yottamacro",
  20629. height: math.unit(6200, "yottameters")
  20630. },
  20631. ]
  20632. ));
  20633. characterMakers.push(() => makeCharacter(
  20634. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20635. {
  20636. front: {
  20637. height: math.unit(8, "feet"),
  20638. weight: math.unit(250, "lb"),
  20639. name: "Front",
  20640. image: {
  20641. source: "./media/characters/kite/front.svg",
  20642. extra: 2796 / 2659,
  20643. bottom: 0.002
  20644. }
  20645. },
  20646. },
  20647. [
  20648. {
  20649. name: "Normal",
  20650. height: math.unit(8, "feet"),
  20651. default: true
  20652. },
  20653. {
  20654. name: "Macro",
  20655. height: math.unit(360, "feet")
  20656. },
  20657. {
  20658. name: "Megamacro",
  20659. height: math.unit(1500, "feet")
  20660. },
  20661. ]
  20662. ))
  20663. characterMakers.push(() => makeCharacter(
  20664. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20665. {
  20666. front: {
  20667. height: math.unit(5 + 10 / 12, "feet"),
  20668. weight: math.unit(150, "lb"),
  20669. name: "Front",
  20670. image: {
  20671. source: "./media/characters/poojawa-vynar/front.svg",
  20672. extra: (1506.1547 - 55) / 1356.6,
  20673. bottom: 55 / 1506.1547
  20674. }
  20675. },
  20676. frontTailless: {
  20677. height: math.unit(5 + 10 / 12, "feet"),
  20678. weight: math.unit(150, "lb"),
  20679. name: "Front (Tailless)",
  20680. image: {
  20681. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20682. extra: (1506.1547 - 55) / 1356.6,
  20683. bottom: 55 / 1506.1547
  20684. }
  20685. },
  20686. },
  20687. [
  20688. {
  20689. name: "Normal",
  20690. height: math.unit(5 + 10 / 12, "feet"),
  20691. default: true
  20692. },
  20693. ]
  20694. ))
  20695. characterMakers.push(() => makeCharacter(
  20696. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20697. {
  20698. front: {
  20699. height: math.unit(293, "meters"),
  20700. weight: math.unit(70400, "tons"),
  20701. name: "Front",
  20702. image: {
  20703. source: "./media/characters/violette/front.svg",
  20704. extra: 1227 / 1180,
  20705. bottom: 0.005
  20706. }
  20707. },
  20708. back: {
  20709. height: math.unit(293, "meters"),
  20710. weight: math.unit(70400, "tons"),
  20711. name: "Back",
  20712. image: {
  20713. source: "./media/characters/violette/back.svg",
  20714. extra: 1227 / 1180,
  20715. bottom: 0.005
  20716. }
  20717. },
  20718. },
  20719. [
  20720. {
  20721. name: "Macro",
  20722. height: math.unit(293, "meters"),
  20723. default: true
  20724. },
  20725. ]
  20726. ))
  20727. characterMakers.push(() => makeCharacter(
  20728. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20729. {
  20730. front: {
  20731. height: math.unit(1050, "feet"),
  20732. weight: math.unit(200000, "tons"),
  20733. name: "Front",
  20734. image: {
  20735. source: "./media/characters/alessandra/front.svg",
  20736. extra: 960 / 912,
  20737. bottom: 0.06
  20738. }
  20739. },
  20740. },
  20741. [
  20742. {
  20743. name: "Macro",
  20744. height: math.unit(1050, "feet")
  20745. },
  20746. {
  20747. name: "Macro+",
  20748. height: math.unit(900, "meters"),
  20749. default: true
  20750. },
  20751. ]
  20752. ))
  20753. characterMakers.push(() => makeCharacter(
  20754. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20755. {
  20756. front: {
  20757. height: math.unit(5, "feet"),
  20758. weight: math.unit(187, "lb"),
  20759. name: "Front",
  20760. image: {
  20761. source: "./media/characters/person/front.svg",
  20762. extra: 3087 / 2945,
  20763. bottom: 91 / 3181
  20764. }
  20765. },
  20766. },
  20767. [
  20768. {
  20769. name: "Micro",
  20770. height: math.unit(3, "inches")
  20771. },
  20772. {
  20773. name: "Normal",
  20774. height: math.unit(5, "feet"),
  20775. default: true
  20776. },
  20777. {
  20778. name: "Macro",
  20779. height: math.unit(90, "feet")
  20780. },
  20781. {
  20782. name: "Max Size",
  20783. height: math.unit(280, "feet")
  20784. },
  20785. ]
  20786. ))
  20787. characterMakers.push(() => makeCharacter(
  20788. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20789. {
  20790. front: {
  20791. height: math.unit(4.5, "meters"),
  20792. weight: math.unit(3200, "lb"),
  20793. name: "Front",
  20794. image: {
  20795. source: "./media/characters/ty/front.svg",
  20796. extra: 1038 / 960,
  20797. bottom: 31.156 / 1068
  20798. }
  20799. },
  20800. back: {
  20801. height: math.unit(4.5, "meters"),
  20802. weight: math.unit(3200, "lb"),
  20803. name: "Back",
  20804. image: {
  20805. source: "./media/characters/ty/back.svg",
  20806. extra: 1044 / 966,
  20807. bottom: 7.48 / 1049
  20808. }
  20809. },
  20810. },
  20811. [
  20812. {
  20813. name: "Normal",
  20814. height: math.unit(4.5, "meters"),
  20815. default: true
  20816. },
  20817. ]
  20818. ))
  20819. characterMakers.push(() => makeCharacter(
  20820. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20821. {
  20822. front: {
  20823. height: math.unit(5 + 4 / 12, "feet"),
  20824. weight: math.unit(115, "lb"),
  20825. name: "Front",
  20826. image: {
  20827. source: "./media/characters/rocky/front.svg",
  20828. extra: 1012 / 975,
  20829. bottom: 54 / 1066
  20830. }
  20831. },
  20832. },
  20833. [
  20834. {
  20835. name: "Normal",
  20836. height: math.unit(5 + 4 / 12, "feet"),
  20837. default: true
  20838. },
  20839. ]
  20840. ))
  20841. characterMakers.push(() => makeCharacter(
  20842. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20843. {
  20844. upright: {
  20845. height: math.unit(6, "meters"),
  20846. weight: math.unit(4000, "kg"),
  20847. name: "Upright",
  20848. image: {
  20849. source: "./media/characters/ruin/upright.svg",
  20850. extra: 668 / 661,
  20851. bottom: 42 / 799.8396
  20852. }
  20853. },
  20854. },
  20855. [
  20856. {
  20857. name: "Normal",
  20858. height: math.unit(6, "meters"),
  20859. default: true
  20860. },
  20861. ]
  20862. ))
  20863. characterMakers.push(() => makeCharacter(
  20864. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20865. {
  20866. front: {
  20867. height: math.unit(5, "feet"),
  20868. weight: math.unit(106, "lb"),
  20869. name: "Front",
  20870. image: {
  20871. source: "./media/characters/robin/front.svg",
  20872. extra: 862 / 799,
  20873. bottom: 42.4 / 914.8856
  20874. }
  20875. },
  20876. },
  20877. [
  20878. {
  20879. name: "Normal",
  20880. height: math.unit(5, "feet"),
  20881. default: true
  20882. },
  20883. ]
  20884. ))
  20885. characterMakers.push(() => makeCharacter(
  20886. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20887. {
  20888. side: {
  20889. height: math.unit(3, "feet"),
  20890. weight: math.unit(225, "lb"),
  20891. name: "Side",
  20892. image: {
  20893. source: "./media/characters/saian/side.svg",
  20894. extra: 566 / 356,
  20895. bottom: 79.7 / 643
  20896. }
  20897. },
  20898. maw: {
  20899. height: math.unit(2.85, "feet"),
  20900. name: "Maw",
  20901. image: {
  20902. source: "./media/characters/saian/maw.svg"
  20903. }
  20904. },
  20905. },
  20906. [
  20907. {
  20908. name: "Normal",
  20909. height: math.unit(3, "feet"),
  20910. default: true
  20911. },
  20912. ]
  20913. ))
  20914. characterMakers.push(() => makeCharacter(
  20915. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20916. {
  20917. side: {
  20918. height: math.unit(8, "feet"),
  20919. weight: math.unit(300, "lb"),
  20920. name: "Side",
  20921. image: {
  20922. source: "./media/characters/equus-silvermane/side.svg",
  20923. extra: 2176 / 2050,
  20924. bottom: 65.7 / 2245
  20925. }
  20926. },
  20927. front: {
  20928. height: math.unit(8, "feet"),
  20929. weight: math.unit(300, "lb"),
  20930. name: "Front",
  20931. image: {
  20932. source: "./media/characters/equus-silvermane/front.svg",
  20933. extra: 4633 / 4400,
  20934. bottom: 71.3 / 4706.915
  20935. }
  20936. },
  20937. sideStepping: {
  20938. height: math.unit(8, "feet"),
  20939. weight: math.unit(300, "lb"),
  20940. name: "Side (Stepping)",
  20941. image: {
  20942. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20943. extra: 1968 / 1860,
  20944. bottom: 16.4 / 1989
  20945. }
  20946. },
  20947. },
  20948. [
  20949. {
  20950. name: "Normal",
  20951. height: math.unit(8, "feet")
  20952. },
  20953. {
  20954. name: "Minimacro",
  20955. height: math.unit(75, "feet"),
  20956. default: true
  20957. },
  20958. {
  20959. name: "Macro",
  20960. height: math.unit(150, "feet")
  20961. },
  20962. {
  20963. name: "Macro+",
  20964. height: math.unit(1000, "feet")
  20965. },
  20966. {
  20967. name: "Megamacro",
  20968. height: math.unit(1, "mile")
  20969. },
  20970. ]
  20971. ))
  20972. characterMakers.push(() => makeCharacter(
  20973. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20974. {
  20975. side: {
  20976. height: math.unit(20, "feet"),
  20977. weight: math.unit(30000, "kg"),
  20978. name: "Side",
  20979. image: {
  20980. source: "./media/characters/windar/side.svg",
  20981. extra: 1491 / 1248,
  20982. bottom: 82.56 / 1568
  20983. }
  20984. },
  20985. },
  20986. [
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(20, "feet"),
  20990. default: true
  20991. },
  20992. ]
  20993. ))
  20994. characterMakers.push(() => makeCharacter(
  20995. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20996. {
  20997. side: {
  20998. height: math.unit(15.66, "feet"),
  20999. weight: math.unit(150, "lb"),
  21000. name: "Side",
  21001. image: {
  21002. source: "./media/characters/melody/side.svg",
  21003. extra: 1097 / 944,
  21004. bottom: 11.8 / 1109
  21005. }
  21006. },
  21007. sideOutfit: {
  21008. height: math.unit(15.66, "feet"),
  21009. weight: math.unit(150, "lb"),
  21010. name: "Side (Outfit)",
  21011. image: {
  21012. source: "./media/characters/melody/side-outfit.svg",
  21013. extra: 1097 / 944,
  21014. bottom: 11.8 / 1109
  21015. }
  21016. },
  21017. },
  21018. [
  21019. {
  21020. name: "Normal",
  21021. height: math.unit(15.66, "feet"),
  21022. default: true
  21023. },
  21024. ]
  21025. ))
  21026. characterMakers.push(() => makeCharacter(
  21027. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21028. {
  21029. front: {
  21030. height: math.unit(8, "feet"),
  21031. weight: math.unit(325, "lb"),
  21032. name: "Front",
  21033. image: {
  21034. source: "./media/characters/windera/front.svg",
  21035. extra: 3180 / 2845,
  21036. bottom: 178 / 3365
  21037. }
  21038. },
  21039. },
  21040. [
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(8, "feet"),
  21044. default: true
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21050. {
  21051. front: {
  21052. height: math.unit(28.75, "feet"),
  21053. weight: math.unit(2000, "kg"),
  21054. name: "Front",
  21055. image: {
  21056. source: "./media/characters/sonear/front.svg",
  21057. extra: 1041.1 / 964.9,
  21058. bottom: 53.7 / 1096.6
  21059. }
  21060. },
  21061. },
  21062. [
  21063. {
  21064. name: "Normal",
  21065. height: math.unit(28.75, "feet"),
  21066. default: true
  21067. },
  21068. ]
  21069. ))
  21070. characterMakers.push(() => makeCharacter(
  21071. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21072. {
  21073. side: {
  21074. height: math.unit(25.5, "feet"),
  21075. weight: math.unit(23000, "kg"),
  21076. name: "Side",
  21077. image: {
  21078. source: "./media/characters/kanara/side.svg"
  21079. }
  21080. },
  21081. },
  21082. [
  21083. {
  21084. name: "Normal",
  21085. height: math.unit(25.5, "feet"),
  21086. default: true
  21087. },
  21088. ]
  21089. ))
  21090. characterMakers.push(() => makeCharacter(
  21091. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21092. {
  21093. side: {
  21094. height: math.unit(10, "feet"),
  21095. weight: math.unit(1000, "kg"),
  21096. name: "Side",
  21097. image: {
  21098. source: "./media/characters/ereus/side.svg",
  21099. extra: 1157 / 959,
  21100. bottom: 153 / 1312.5
  21101. }
  21102. },
  21103. },
  21104. [
  21105. {
  21106. name: "Normal",
  21107. height: math.unit(10, "feet"),
  21108. default: true
  21109. },
  21110. ]
  21111. ))
  21112. characterMakers.push(() => makeCharacter(
  21113. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21114. {
  21115. side: {
  21116. height: math.unit(4.5, "feet"),
  21117. weight: math.unit(500, "lb"),
  21118. name: "Side",
  21119. image: {
  21120. source: "./media/characters/e-ter/side.svg",
  21121. extra: 1550 / 1248,
  21122. bottom: 146 / 1694
  21123. }
  21124. },
  21125. },
  21126. [
  21127. {
  21128. name: "Normal",
  21129. height: math.unit(4.5, "feet"),
  21130. default: true
  21131. },
  21132. ]
  21133. ))
  21134. characterMakers.push(() => makeCharacter(
  21135. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21136. {
  21137. side: {
  21138. height: math.unit(9.7, "feet"),
  21139. weight: math.unit(4000, "kg"),
  21140. name: "Side",
  21141. image: {
  21142. source: "./media/characters/yamie/side.svg"
  21143. }
  21144. },
  21145. },
  21146. [
  21147. {
  21148. name: "Normal",
  21149. height: math.unit(9.7, "feet"),
  21150. default: true
  21151. },
  21152. ]
  21153. ))
  21154. characterMakers.push(() => makeCharacter(
  21155. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21156. {
  21157. front: {
  21158. height: math.unit(50, "feet"),
  21159. weight: math.unit(50000, "kg"),
  21160. name: "Front",
  21161. image: {
  21162. source: "./media/characters/anders/front.svg",
  21163. extra: 570 / 539,
  21164. bottom: 14.7 / 586.7
  21165. }
  21166. },
  21167. },
  21168. [
  21169. {
  21170. name: "Large",
  21171. height: math.unit(50, "feet")
  21172. },
  21173. {
  21174. name: "Macro",
  21175. height: math.unit(2000, "feet"),
  21176. default: true
  21177. },
  21178. {
  21179. name: "Megamacro",
  21180. height: math.unit(12, "miles")
  21181. },
  21182. ]
  21183. ))
  21184. characterMakers.push(() => makeCharacter(
  21185. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21186. {
  21187. front: {
  21188. height: math.unit(7 + 2 / 12, "feet"),
  21189. weight: math.unit(300, "lb"),
  21190. name: "Front",
  21191. image: {
  21192. source: "./media/characters/reban/front.svg",
  21193. extra: 516 / 487,
  21194. bottom: 42.82 / 558.356
  21195. }
  21196. },
  21197. dick: {
  21198. height: math.unit(7 / 5, "feet"),
  21199. name: "Dick",
  21200. image: {
  21201. source: "./media/characters/reban/dick.svg"
  21202. }
  21203. },
  21204. },
  21205. [
  21206. {
  21207. name: "Natural Height",
  21208. height: math.unit(7 + 2 / 12, "feet")
  21209. },
  21210. {
  21211. name: "Macro",
  21212. height: math.unit(500, "feet"),
  21213. default: true
  21214. },
  21215. {
  21216. name: "Canon Height",
  21217. height: math.unit(50, "AU")
  21218. },
  21219. ]
  21220. ))
  21221. characterMakers.push(() => makeCharacter(
  21222. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21223. {
  21224. front: {
  21225. height: math.unit(6, "feet"),
  21226. weight: math.unit(150, "lb"),
  21227. name: "Front",
  21228. image: {
  21229. source: "./media/characters/terrance-keayes/front.svg",
  21230. extra: 1.005,
  21231. bottom: 151 / 1615
  21232. }
  21233. },
  21234. side: {
  21235. height: math.unit(6, "feet"),
  21236. weight: math.unit(150, "lb"),
  21237. name: "Side",
  21238. image: {
  21239. source: "./media/characters/terrance-keayes/side.svg",
  21240. extra: 1.005,
  21241. bottom: 129.4 / 1544
  21242. }
  21243. },
  21244. back: {
  21245. height: math.unit(6, "feet"),
  21246. weight: math.unit(150, "lb"),
  21247. name: "Back",
  21248. image: {
  21249. source: "./media/characters/terrance-keayes/back.svg",
  21250. extra: 1.005,
  21251. bottom: 58.4 / 1557.3
  21252. }
  21253. },
  21254. dick: {
  21255. height: math.unit(6 * 0.208, "feet"),
  21256. name: "Dick",
  21257. image: {
  21258. source: "./media/characters/terrance-keayes/dick.svg"
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Canon Height",
  21265. height: math.unit(35, "miles"),
  21266. default: true
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21272. {
  21273. front: {
  21274. height: math.unit(6, "feet"),
  21275. weight: math.unit(150, "lb"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/ofelia/front.svg",
  21279. extra: 546 / 541,
  21280. bottom: 39 / 583
  21281. }
  21282. },
  21283. back: {
  21284. height: math.unit(6, "feet"),
  21285. weight: math.unit(150, "lb"),
  21286. name: "Back",
  21287. image: {
  21288. source: "./media/characters/ofelia/back.svg",
  21289. extra: 564 / 559.5,
  21290. bottom: 8.69 / 573.02
  21291. }
  21292. },
  21293. maw: {
  21294. height: math.unit(1, "feet"),
  21295. name: "Maw",
  21296. image: {
  21297. source: "./media/characters/ofelia/maw.svg"
  21298. }
  21299. },
  21300. foot: {
  21301. height: math.unit(1.949, "feet"),
  21302. name: "Foot",
  21303. image: {
  21304. source: "./media/characters/ofelia/foot.svg"
  21305. }
  21306. },
  21307. },
  21308. [
  21309. {
  21310. name: "Canon Height",
  21311. height: math.unit(2000, "miles"),
  21312. default: true
  21313. },
  21314. ]
  21315. ))
  21316. characterMakers.push(() => makeCharacter(
  21317. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21318. {
  21319. front: {
  21320. height: math.unit(6, "feet"),
  21321. weight: math.unit(150, "lb"),
  21322. name: "Front",
  21323. image: {
  21324. source: "./media/characters/samuel/front.svg",
  21325. extra: 265 / 258,
  21326. bottom: 2 / 266.1566
  21327. }
  21328. },
  21329. },
  21330. [
  21331. {
  21332. name: "Macro",
  21333. height: math.unit(100, "feet"),
  21334. default: true
  21335. },
  21336. {
  21337. name: "Full Size",
  21338. height: math.unit(1000, "miles")
  21339. },
  21340. ]
  21341. ))
  21342. characterMakers.push(() => makeCharacter(
  21343. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21344. {
  21345. front: {
  21346. height: math.unit(6, "feet"),
  21347. weight: math.unit(300, "lb"),
  21348. name: "Front",
  21349. image: {
  21350. source: "./media/characters/beishir-kiel/front.svg",
  21351. extra: 569 / 547,
  21352. bottom: 41.9 / 609
  21353. }
  21354. },
  21355. maw: {
  21356. height: math.unit(6 * 0.202, "feet"),
  21357. name: "Maw",
  21358. image: {
  21359. source: "./media/characters/beishir-kiel/maw.svg"
  21360. }
  21361. },
  21362. },
  21363. [
  21364. {
  21365. name: "Macro",
  21366. height: math.unit(300, "feet"),
  21367. default: true
  21368. },
  21369. ]
  21370. ))
  21371. characterMakers.push(() => makeCharacter(
  21372. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21373. {
  21374. front: {
  21375. height: math.unit(5 + 8 / 12, "feet"),
  21376. weight: math.unit(120, "lb"),
  21377. name: "Front",
  21378. image: {
  21379. source: "./media/characters/logan-grey/front.svg",
  21380. extra: 2539 / 2393,
  21381. bottom: 97.6 / 2636.37
  21382. }
  21383. },
  21384. frontAlt: {
  21385. height: math.unit(5 + 8 / 12, "feet"),
  21386. weight: math.unit(120, "lb"),
  21387. name: "Front (Alt)",
  21388. image: {
  21389. source: "./media/characters/logan-grey/front-alt.svg",
  21390. extra: 958 / 893,
  21391. bottom: 15 / 970.768
  21392. }
  21393. },
  21394. back: {
  21395. height: math.unit(5 + 8 / 12, "feet"),
  21396. weight: math.unit(120, "lb"),
  21397. name: "Back",
  21398. image: {
  21399. source: "./media/characters/logan-grey/back.svg",
  21400. extra: 958 / 893,
  21401. bottom: 2.1881 / 970.9788
  21402. }
  21403. },
  21404. dick: {
  21405. height: math.unit(1.437, "feet"),
  21406. name: "Dick",
  21407. image: {
  21408. source: "./media/characters/logan-grey/dick.svg"
  21409. }
  21410. },
  21411. },
  21412. [
  21413. {
  21414. name: "Normal",
  21415. height: math.unit(5 + 8 / 12, "feet")
  21416. },
  21417. {
  21418. name: "The 500 Foot Femboy",
  21419. height: math.unit(500, "feet"),
  21420. default: true
  21421. },
  21422. {
  21423. name: "Megmacro",
  21424. height: math.unit(20, "miles")
  21425. },
  21426. ]
  21427. ))
  21428. characterMakers.push(() => makeCharacter(
  21429. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21430. {
  21431. front: {
  21432. height: math.unit(8 + 2 / 12, "feet"),
  21433. weight: math.unit(275, "lb"),
  21434. name: "Front",
  21435. image: {
  21436. source: "./media/characters/draganta/front.svg",
  21437. extra: 1177 / 1135,
  21438. bottom: 33.46 / 1212.1
  21439. }
  21440. },
  21441. },
  21442. [
  21443. {
  21444. name: "Normal",
  21445. height: math.unit(8 + 6 / 12, "feet"),
  21446. default: true
  21447. },
  21448. {
  21449. name: "Macro",
  21450. height: math.unit(150, "feet")
  21451. },
  21452. {
  21453. name: "Megamacro",
  21454. height: math.unit(1000, "miles")
  21455. },
  21456. ]
  21457. ))
  21458. characterMakers.push(() => makeCharacter(
  21459. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21460. {
  21461. front: {
  21462. height: math.unit(1.72, "m"),
  21463. weight: math.unit(80, "lb"),
  21464. name: "Front",
  21465. image: {
  21466. source: "./media/characters/voski/front.svg",
  21467. extra: 2076.22 / 2022.4,
  21468. bottom: 102.7 / 2177.3866
  21469. }
  21470. },
  21471. frontNsfw: {
  21472. height: math.unit(1.72, "m"),
  21473. weight: math.unit(80, "lb"),
  21474. name: "Front (NSFW)",
  21475. image: {
  21476. source: "./media/characters/voski/front-nsfw.svg",
  21477. extra: 2076.22 / 2022.4,
  21478. bottom: 102.7 / 2177.3866
  21479. }
  21480. },
  21481. back: {
  21482. height: math.unit(1.72, "m"),
  21483. weight: math.unit(80, "lb"),
  21484. name: "Back",
  21485. image: {
  21486. source: "./media/characters/voski/back.svg",
  21487. extra: 2104 / 2051,
  21488. bottom: 10.45 / 2113.63
  21489. }
  21490. },
  21491. },
  21492. [
  21493. {
  21494. name: "Normal",
  21495. height: math.unit(1.72, "m")
  21496. },
  21497. {
  21498. name: "Macro",
  21499. height: math.unit(55, "m"),
  21500. default: true
  21501. },
  21502. {
  21503. name: "Macro+",
  21504. height: math.unit(300, "m")
  21505. },
  21506. {
  21507. name: "Macro++",
  21508. height: math.unit(700, "m")
  21509. },
  21510. {
  21511. name: "Macro+++",
  21512. height: math.unit(4500, "m")
  21513. },
  21514. {
  21515. name: "Macro++++",
  21516. height: math.unit(45, "km")
  21517. },
  21518. {
  21519. name: "Macro+++++",
  21520. height: math.unit(1220, "km")
  21521. },
  21522. ]
  21523. ))
  21524. characterMakers.push(() => makeCharacter(
  21525. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21526. {
  21527. front: {
  21528. height: math.unit(2.3, "m"),
  21529. weight: math.unit(304, "kg"),
  21530. name: "Front",
  21531. image: {
  21532. source: "./media/characters/icowom-lee/front.svg",
  21533. extra: 985 / 955,
  21534. bottom: 25.4 / 1012
  21535. }
  21536. },
  21537. fronttentacles: {
  21538. height: math.unit(2.3, "m"),
  21539. weight: math.unit(304, "kg"),
  21540. name: "Front-tentacles",
  21541. image: {
  21542. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21543. extra: 985 / 955,
  21544. bottom: 25.4 / 1012
  21545. }
  21546. },
  21547. back: {
  21548. height: math.unit(2.3, "m"),
  21549. weight: math.unit(304, "kg"),
  21550. name: "Back",
  21551. image: {
  21552. source: "./media/characters/icowom-lee/back.svg",
  21553. extra: 975 / 954,
  21554. bottom: 9.5 / 985
  21555. }
  21556. },
  21557. backtentacles: {
  21558. height: math.unit(2.3, "m"),
  21559. weight: math.unit(304, "kg"),
  21560. name: "Back-tentacles",
  21561. image: {
  21562. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21563. extra: 975 / 954,
  21564. bottom: 9.5 / 985
  21565. }
  21566. },
  21567. frontDressed: {
  21568. height: math.unit(2.3, "m"),
  21569. weight: math.unit(304, "kg"),
  21570. name: "Front (Dressed)",
  21571. image: {
  21572. source: "./media/characters/icowom-lee/front-dressed.svg",
  21573. extra: 3076 / 2933,
  21574. bottom: 51.4 / 3125.1889
  21575. }
  21576. },
  21577. rump: {
  21578. height: math.unit(0.776, "meters"),
  21579. name: "Rump",
  21580. image: {
  21581. source: "./media/characters/icowom-lee/rump.svg"
  21582. }
  21583. },
  21584. genitals: {
  21585. height: math.unit(0.78, "meters"),
  21586. name: "Genitals",
  21587. image: {
  21588. source: "./media/characters/icowom-lee/genitals.svg"
  21589. }
  21590. },
  21591. },
  21592. [
  21593. {
  21594. name: "Normal",
  21595. height: math.unit(2.3, "meters"),
  21596. default: true
  21597. },
  21598. {
  21599. name: "Macro",
  21600. height: math.unit(94, "meters"),
  21601. default: true
  21602. },
  21603. ]
  21604. ))
  21605. characterMakers.push(() => makeCharacter(
  21606. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21607. {
  21608. front: {
  21609. height: math.unit(22, "meters"),
  21610. weight: math.unit(21000, "kg"),
  21611. name: "Front",
  21612. image: {
  21613. source: "./media/characters/shock-diamond/front.svg",
  21614. extra: 2204 / 2053,
  21615. bottom: 65 / 2239.47
  21616. }
  21617. },
  21618. frontNude: {
  21619. height: math.unit(22, "meters"),
  21620. weight: math.unit(21000, "kg"),
  21621. name: "Front (Nude)",
  21622. image: {
  21623. source: "./media/characters/shock-diamond/front-nude.svg",
  21624. extra: 2514 / 2285,
  21625. bottom: 13 / 2527.56
  21626. }
  21627. },
  21628. },
  21629. [
  21630. {
  21631. name: "Normal",
  21632. height: math.unit(3, "meters")
  21633. },
  21634. {
  21635. name: "Macro",
  21636. height: math.unit(22, "meters"),
  21637. default: true
  21638. },
  21639. ]
  21640. ))
  21641. characterMakers.push(() => makeCharacter(
  21642. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21643. {
  21644. front: {
  21645. height: math.unit(5 + 4 / 12, "feet"),
  21646. weight: math.unit(120, "lb"),
  21647. name: "Front",
  21648. image: {
  21649. source: "./media/characters/rory/front.svg",
  21650. extra: 589 / 556,
  21651. bottom: 45.7 / 635.76
  21652. }
  21653. },
  21654. frontNude: {
  21655. height: math.unit(5 + 4 / 12, "feet"),
  21656. weight: math.unit(120, "lb"),
  21657. name: "Front (Nude)",
  21658. image: {
  21659. source: "./media/characters/rory/front-nude.svg",
  21660. extra: 589 / 556,
  21661. bottom: 45.7 / 635.76
  21662. }
  21663. },
  21664. side: {
  21665. height: math.unit(5 + 4 / 12, "feet"),
  21666. weight: math.unit(120, "lb"),
  21667. name: "Side",
  21668. image: {
  21669. source: "./media/characters/rory/side.svg",
  21670. extra: 597 / 564,
  21671. bottom: 55 / 653
  21672. }
  21673. },
  21674. back: {
  21675. height: math.unit(5 + 4 / 12, "feet"),
  21676. weight: math.unit(120, "lb"),
  21677. name: "Back",
  21678. image: {
  21679. source: "./media/characters/rory/back.svg",
  21680. extra: 620 / 585,
  21681. bottom: 8.86 / 630.43
  21682. }
  21683. },
  21684. dick: {
  21685. height: math.unit(0.86, "feet"),
  21686. name: "Dick",
  21687. image: {
  21688. source: "./media/characters/rory/dick.svg"
  21689. }
  21690. },
  21691. },
  21692. [
  21693. {
  21694. name: "Normal",
  21695. height: math.unit(5 + 4 / 12, "feet"),
  21696. default: true
  21697. },
  21698. {
  21699. name: "Macro",
  21700. height: math.unit(100, "feet")
  21701. },
  21702. {
  21703. name: "Macro+",
  21704. height: math.unit(140, "feet")
  21705. },
  21706. {
  21707. name: "Macro++",
  21708. height: math.unit(300, "feet")
  21709. },
  21710. ]
  21711. ))
  21712. characterMakers.push(() => makeCharacter(
  21713. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21714. {
  21715. front: {
  21716. height: math.unit(5 + 9 / 12, "feet"),
  21717. weight: math.unit(190, "lb"),
  21718. name: "Front",
  21719. image: {
  21720. source: "./media/characters/sprisk/front.svg",
  21721. extra: 1225 / 1180,
  21722. bottom: 42.7 / 1266.4
  21723. }
  21724. },
  21725. frontNsfw: {
  21726. height: math.unit(5 + 9 / 12, "feet"),
  21727. weight: math.unit(190, "lb"),
  21728. name: "Front (NSFW)",
  21729. image: {
  21730. source: "./media/characters/sprisk/front-nsfw.svg",
  21731. extra: 1225 / 1180,
  21732. bottom: 42.7 / 1266.4
  21733. }
  21734. },
  21735. back: {
  21736. height: math.unit(5 + 9 / 12, "feet"),
  21737. weight: math.unit(190, "lb"),
  21738. name: "Back",
  21739. image: {
  21740. source: "./media/characters/sprisk/back.svg",
  21741. extra: 1247 / 1200,
  21742. bottom: 5.6 / 1253.04
  21743. }
  21744. },
  21745. },
  21746. [
  21747. {
  21748. name: "Tiny",
  21749. height: math.unit(2, "inches")
  21750. },
  21751. {
  21752. name: "Normal",
  21753. height: math.unit(5 + 9 / 12, "feet"),
  21754. default: true
  21755. },
  21756. {
  21757. name: "Mini Macro",
  21758. height: math.unit(18, "feet")
  21759. },
  21760. {
  21761. name: "Macro",
  21762. height: math.unit(100, "feet")
  21763. },
  21764. {
  21765. name: "MACRO",
  21766. height: math.unit(50, "miles")
  21767. },
  21768. {
  21769. name: "M A C R O",
  21770. height: math.unit(300, "miles")
  21771. },
  21772. ]
  21773. ))
  21774. characterMakers.push(() => makeCharacter(
  21775. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21776. {
  21777. side: {
  21778. height: math.unit(15.6, "meters"),
  21779. weight: math.unit(700000, "kg"),
  21780. name: "Side",
  21781. image: {
  21782. source: "./media/characters/bunsen/side.svg",
  21783. extra: 1644 / 358
  21784. }
  21785. },
  21786. foot: {
  21787. height: math.unit(1.611 * 1644 / 358, "meter"),
  21788. name: "Foot",
  21789. image: {
  21790. source: "./media/characters/bunsen/foot.svg"
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Small",
  21797. height: math.unit(10, "feet")
  21798. },
  21799. {
  21800. name: "Normal",
  21801. height: math.unit(15.6, "meters"),
  21802. default: true
  21803. },
  21804. ]
  21805. ))
  21806. characterMakers.push(() => makeCharacter(
  21807. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21808. {
  21809. front: {
  21810. height: math.unit(4 + 11 / 12, "feet"),
  21811. weight: math.unit(140, "lb"),
  21812. name: "Front",
  21813. image: {
  21814. source: "./media/characters/sesh/front.svg",
  21815. extra: 3420 / 3231,
  21816. bottom: 72 / 3949.5
  21817. }
  21818. },
  21819. },
  21820. [
  21821. {
  21822. name: "Normal",
  21823. height: math.unit(4 + 11 / 12, "feet")
  21824. },
  21825. {
  21826. name: "Grown",
  21827. height: math.unit(15, "feet"),
  21828. default: true
  21829. },
  21830. {
  21831. name: "Macro",
  21832. height: math.unit(1500, "feet")
  21833. },
  21834. {
  21835. name: "Megamacro",
  21836. height: math.unit(30, "miles")
  21837. },
  21838. {
  21839. name: "Continental",
  21840. height: math.unit(3000, "miles")
  21841. },
  21842. {
  21843. name: "Gravity Mass",
  21844. height: math.unit(300000, "miles")
  21845. },
  21846. {
  21847. name: "Planet Buster",
  21848. height: math.unit(30000000, "miles")
  21849. },
  21850. {
  21851. name: "Big",
  21852. height: math.unit(3000000000, "miles")
  21853. },
  21854. ]
  21855. ))
  21856. characterMakers.push(() => makeCharacter(
  21857. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21858. {
  21859. front: {
  21860. height: math.unit(9, "feet"),
  21861. weight: math.unit(350, "lb"),
  21862. name: "Front",
  21863. image: {
  21864. source: "./media/characters/pepper/front.svg",
  21865. extra: 1448 / 1312,
  21866. bottom: 9.4 / 1457.88
  21867. }
  21868. },
  21869. back: {
  21870. height: math.unit(9, "feet"),
  21871. weight: math.unit(350, "lb"),
  21872. name: "Back",
  21873. image: {
  21874. source: "./media/characters/pepper/back.svg",
  21875. extra: 1423 / 1300,
  21876. bottom: 4.6 / 1429
  21877. }
  21878. },
  21879. maw: {
  21880. height: math.unit(0.932, "feet"),
  21881. name: "Maw",
  21882. image: {
  21883. source: "./media/characters/pepper/maw.svg"
  21884. }
  21885. },
  21886. },
  21887. [
  21888. {
  21889. name: "Normal",
  21890. height: math.unit(9, "feet"),
  21891. default: true
  21892. },
  21893. ]
  21894. ))
  21895. characterMakers.push(() => makeCharacter(
  21896. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21897. {
  21898. front: {
  21899. height: math.unit(6, "feet"),
  21900. weight: math.unit(150, "lb"),
  21901. name: "Front",
  21902. image: {
  21903. source: "./media/characters/maelstrom/front.svg",
  21904. extra: 2100 / 1883,
  21905. bottom: 94 / 2196.7
  21906. }
  21907. },
  21908. },
  21909. [
  21910. {
  21911. name: "Less Kaiju",
  21912. height: math.unit(200, "feet")
  21913. },
  21914. {
  21915. name: "Kaiju",
  21916. height: math.unit(400, "feet"),
  21917. default: true
  21918. },
  21919. {
  21920. name: "Kaiju-er",
  21921. height: math.unit(600, "feet")
  21922. },
  21923. ]
  21924. ))
  21925. characterMakers.push(() => makeCharacter(
  21926. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21927. {
  21928. front: {
  21929. height: math.unit(6 + 5 / 12, "feet"),
  21930. weight: math.unit(180, "lb"),
  21931. name: "Front",
  21932. image: {
  21933. source: "./media/characters/lexir/front.svg",
  21934. extra: 180 / 172,
  21935. bottom: 12 / 192
  21936. }
  21937. },
  21938. back: {
  21939. height: math.unit(6 + 5 / 12, "feet"),
  21940. weight: math.unit(180, "lb"),
  21941. name: "Back",
  21942. image: {
  21943. source: "./media/characters/lexir/back.svg",
  21944. extra: 183.84 / 175.5,
  21945. bottom: 3.1 / 187
  21946. }
  21947. },
  21948. },
  21949. [
  21950. {
  21951. name: "Very Smal",
  21952. height: math.unit(1, "nm")
  21953. },
  21954. {
  21955. name: "Normal",
  21956. height: math.unit(6 + 5 / 12, "feet"),
  21957. default: true
  21958. },
  21959. {
  21960. name: "Macro",
  21961. height: math.unit(1, "mile")
  21962. },
  21963. {
  21964. name: "Megamacro",
  21965. height: math.unit(50, "miles")
  21966. },
  21967. ]
  21968. ))
  21969. characterMakers.push(() => makeCharacter(
  21970. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21971. {
  21972. front: {
  21973. height: math.unit(1.5, "meters"),
  21974. weight: math.unit(100, "lb"),
  21975. name: "Front",
  21976. image: {
  21977. source: "./media/characters/maksio/front.svg",
  21978. extra: 1549 / 1531,
  21979. bottom: 123.7 / 1674.5429
  21980. }
  21981. },
  21982. back: {
  21983. height: math.unit(1.5, "meters"),
  21984. weight: math.unit(100, "lb"),
  21985. name: "Back",
  21986. image: {
  21987. source: "./media/characters/maksio/back.svg",
  21988. extra: 1541 / 1509,
  21989. bottom: 97 / 1639
  21990. }
  21991. },
  21992. hand: {
  21993. height: math.unit(0.621, "feet"),
  21994. name: "Hand",
  21995. image: {
  21996. source: "./media/characters/maksio/hand.svg"
  21997. }
  21998. },
  21999. foot: {
  22000. height: math.unit(1.611, "feet"),
  22001. name: "Foot",
  22002. image: {
  22003. source: "./media/characters/maksio/foot.svg"
  22004. }
  22005. },
  22006. },
  22007. [
  22008. {
  22009. name: "Shrunken",
  22010. height: math.unit(10, "cm")
  22011. },
  22012. {
  22013. name: "Normal",
  22014. height: math.unit(150, "cm"),
  22015. default: true
  22016. },
  22017. ]
  22018. ))
  22019. characterMakers.push(() => makeCharacter(
  22020. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22021. {
  22022. front: {
  22023. height: math.unit(100, "feet"),
  22024. name: "Front",
  22025. image: {
  22026. source: "./media/characters/erza-bear/front.svg",
  22027. extra: 2449 / 2390,
  22028. bottom: 46 / 2494
  22029. }
  22030. },
  22031. back: {
  22032. height: math.unit(100, "feet"),
  22033. name: "Back",
  22034. image: {
  22035. source: "./media/characters/erza-bear/back.svg",
  22036. extra: 2489 / 2430,
  22037. bottom: 85.4 / 2480
  22038. }
  22039. },
  22040. tail: {
  22041. height: math.unit(42, "feet"),
  22042. name: "Tail",
  22043. image: {
  22044. source: "./media/characters/erza-bear/tail.svg"
  22045. }
  22046. },
  22047. tongue: {
  22048. height: math.unit(8, "feet"),
  22049. name: "Tongue",
  22050. image: {
  22051. source: "./media/characters/erza-bear/tongue.svg"
  22052. }
  22053. },
  22054. dick: {
  22055. height: math.unit(10.5, "feet"),
  22056. name: "Dick",
  22057. image: {
  22058. source: "./media/characters/erza-bear/dick.svg"
  22059. }
  22060. },
  22061. dickVertical: {
  22062. height: math.unit(16.9, "feet"),
  22063. name: "Dick (Vertical)",
  22064. image: {
  22065. source: "./media/characters/erza-bear/dick-vertical.svg"
  22066. }
  22067. },
  22068. },
  22069. [
  22070. {
  22071. name: "Macro",
  22072. height: math.unit(100, "feet"),
  22073. default: true
  22074. },
  22075. ]
  22076. ))
  22077. characterMakers.push(() => makeCharacter(
  22078. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22079. {
  22080. front: {
  22081. height: math.unit(172, "cm"),
  22082. weight: math.unit(73, "kg"),
  22083. name: "Front",
  22084. image: {
  22085. source: "./media/characters/violet-flor/front.svg",
  22086. extra: 1530 / 1442,
  22087. bottom: 61.9 / 1588.8
  22088. }
  22089. },
  22090. back: {
  22091. height: math.unit(180, "cm"),
  22092. weight: math.unit(73, "kg"),
  22093. name: "Back",
  22094. image: {
  22095. source: "./media/characters/violet-flor/back.svg",
  22096. extra: 1692 / 1630,
  22097. bottom: 20 / 1712
  22098. }
  22099. },
  22100. },
  22101. [
  22102. {
  22103. name: "Normal",
  22104. height: math.unit(172, "cm"),
  22105. default: true
  22106. },
  22107. ]
  22108. ))
  22109. characterMakers.push(() => makeCharacter(
  22110. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22111. {
  22112. front: {
  22113. height: math.unit(6, "feet"),
  22114. weight: math.unit(220, "lb"),
  22115. name: "Front",
  22116. image: {
  22117. source: "./media/characters/lynn-rhea/front.svg",
  22118. extra: 310 / 273
  22119. }
  22120. },
  22121. back: {
  22122. height: math.unit(6, "feet"),
  22123. weight: math.unit(220, "lb"),
  22124. name: "Back",
  22125. image: {
  22126. source: "./media/characters/lynn-rhea/back.svg",
  22127. extra: 310 / 273
  22128. }
  22129. },
  22130. dicks: {
  22131. height: math.unit(0.9, "feet"),
  22132. name: "Dicks",
  22133. image: {
  22134. source: "./media/characters/lynn-rhea/dicks.svg"
  22135. }
  22136. },
  22137. slit: {
  22138. height: math.unit(0.4, "feet"),
  22139. name: "Slit",
  22140. image: {
  22141. source: "./media/characters/lynn-rhea/slit.svg"
  22142. }
  22143. },
  22144. },
  22145. [
  22146. {
  22147. name: "Micro",
  22148. height: math.unit(1, "inch")
  22149. },
  22150. {
  22151. name: "Macro",
  22152. height: math.unit(60, "feet"),
  22153. default: true
  22154. },
  22155. {
  22156. name: "Megamacro",
  22157. height: math.unit(2, "miles")
  22158. },
  22159. {
  22160. name: "Gigamacro",
  22161. height: math.unit(3, "earths")
  22162. },
  22163. {
  22164. name: "Galactic",
  22165. height: math.unit(0.8, "galaxies")
  22166. },
  22167. ]
  22168. ))
  22169. characterMakers.push(() => makeCharacter(
  22170. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22171. {
  22172. front: {
  22173. height: math.unit(1600, "feet"),
  22174. weight: math.unit(85758785169, "kg"),
  22175. name: "Front",
  22176. image: {
  22177. source: "./media/characters/valathos/front.svg",
  22178. extra: 1451 / 1339
  22179. }
  22180. },
  22181. },
  22182. [
  22183. {
  22184. name: "Macro",
  22185. height: math.unit(1600, "feet"),
  22186. default: true
  22187. },
  22188. ]
  22189. ))
  22190. characterMakers.push(() => makeCharacter(
  22191. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22192. {
  22193. front: {
  22194. height: math.unit(7 + 5 / 12, "feet"),
  22195. weight: math.unit(300, "lb"),
  22196. name: "Front",
  22197. image: {
  22198. source: "./media/characters/azula/front.svg",
  22199. extra: 3208 / 2880,
  22200. bottom: 80.2 / 3277
  22201. }
  22202. },
  22203. back: {
  22204. height: math.unit(7 + 5 / 12, "feet"),
  22205. weight: math.unit(300, "lb"),
  22206. name: "Back",
  22207. image: {
  22208. source: "./media/characters/azula/back.svg",
  22209. extra: 3169 / 2822,
  22210. bottom: 150.6 / 3321
  22211. }
  22212. },
  22213. },
  22214. [
  22215. {
  22216. name: "Normal",
  22217. height: math.unit(7 + 5 / 12, "feet"),
  22218. default: true
  22219. },
  22220. {
  22221. name: "Big",
  22222. height: math.unit(20, "feet")
  22223. },
  22224. ]
  22225. ))
  22226. characterMakers.push(() => makeCharacter(
  22227. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22228. {
  22229. front: {
  22230. height: math.unit(5 + 1 / 12, "feet"),
  22231. weight: math.unit(110, "lb"),
  22232. name: "Front",
  22233. image: {
  22234. source: "./media/characters/rupert/front.svg",
  22235. extra: 1549 / 1495,
  22236. bottom: 54.2 / 1604.4
  22237. }
  22238. },
  22239. },
  22240. [
  22241. {
  22242. name: "Normal",
  22243. height: math.unit(5 + 1 / 12, "feet"),
  22244. default: true
  22245. },
  22246. ]
  22247. ))
  22248. characterMakers.push(() => makeCharacter(
  22249. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22250. {
  22251. front: {
  22252. height: math.unit(8 + 4 / 12, "feet"),
  22253. weight: math.unit(350, "lb"),
  22254. name: "Front",
  22255. image: {
  22256. source: "./media/characters/sheera-castellar/front.svg",
  22257. extra: 1957 / 1894,
  22258. bottom: 26.97 / 1975.017
  22259. }
  22260. },
  22261. side: {
  22262. height: math.unit(8 + 4 / 12, "feet"),
  22263. weight: math.unit(350, "lb"),
  22264. name: "Side",
  22265. image: {
  22266. source: "./media/characters/sheera-castellar/side.svg",
  22267. extra: 1957 / 1894
  22268. }
  22269. },
  22270. back: {
  22271. height: math.unit(8 + 4 / 12, "feet"),
  22272. weight: math.unit(350, "lb"),
  22273. name: "Back",
  22274. image: {
  22275. source: "./media/characters/sheera-castellar/back.svg",
  22276. extra: 1957 / 1894
  22277. }
  22278. },
  22279. angled: {
  22280. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22281. weight: math.unit(350, "lb"),
  22282. name: "Angled",
  22283. image: {
  22284. source: "./media/characters/sheera-castellar/angled.svg",
  22285. extra: 1807 / 1707,
  22286. bottom: 68 / 1875
  22287. }
  22288. },
  22289. genitals: {
  22290. height: math.unit(2.2, "feet"),
  22291. name: "Genitals",
  22292. image: {
  22293. source: "./media/characters/sheera-castellar/genitals.svg"
  22294. }
  22295. },
  22296. },
  22297. [
  22298. {
  22299. name: "Normal",
  22300. height: math.unit(8 + 4 / 12, "feet")
  22301. },
  22302. {
  22303. name: "Macro",
  22304. height: math.unit(150, "feet"),
  22305. default: true
  22306. },
  22307. {
  22308. name: "Macro+",
  22309. height: math.unit(800, "feet")
  22310. },
  22311. ]
  22312. ))
  22313. characterMakers.push(() => makeCharacter(
  22314. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22315. {
  22316. front: {
  22317. height: math.unit(6, "feet"),
  22318. weight: math.unit(150, "lb"),
  22319. name: "Front",
  22320. image: {
  22321. source: "./media/characters/jaipur/front.svg",
  22322. extra: 3860 / 3731,
  22323. bottom: 287 / 4140
  22324. }
  22325. },
  22326. back: {
  22327. height: math.unit(6, "feet"),
  22328. weight: math.unit(150, "lb"),
  22329. name: "Back",
  22330. image: {
  22331. source: "./media/characters/jaipur/back.svg",
  22332. extra: 4060 / 3930,
  22333. bottom: 151 / 4200
  22334. }
  22335. },
  22336. },
  22337. [
  22338. {
  22339. name: "Normal",
  22340. height: math.unit(1.85, "meters"),
  22341. default: true
  22342. },
  22343. {
  22344. name: "Macro",
  22345. height: math.unit(150, "meters")
  22346. },
  22347. {
  22348. name: "Macro+",
  22349. height: math.unit(0.5, "miles")
  22350. },
  22351. {
  22352. name: "Macro++",
  22353. height: math.unit(2.5, "miles")
  22354. },
  22355. {
  22356. name: "Macro+++",
  22357. height: math.unit(12, "miles")
  22358. },
  22359. {
  22360. name: "Macro++++",
  22361. height: math.unit(120, "miles")
  22362. },
  22363. {
  22364. name: "Macro+++++",
  22365. height: math.unit(1200, "miles")
  22366. },
  22367. ]
  22368. ))
  22369. characterMakers.push(() => makeCharacter(
  22370. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22371. {
  22372. front: {
  22373. height: math.unit(6, "feet"),
  22374. weight: math.unit(150, "lb"),
  22375. name: "Front",
  22376. image: {
  22377. source: "./media/characters/sheila-wolf/front.svg",
  22378. extra: 1931 / 1808,
  22379. bottom: 29.5 / 1960
  22380. }
  22381. },
  22382. dick: {
  22383. height: math.unit(1.464, "feet"),
  22384. name: "Dick",
  22385. image: {
  22386. source: "./media/characters/sheila-wolf/dick.svg"
  22387. }
  22388. },
  22389. muzzle: {
  22390. height: math.unit(0.513, "feet"),
  22391. name: "Muzzle",
  22392. image: {
  22393. source: "./media/characters/sheila-wolf/muzzle.svg"
  22394. }
  22395. },
  22396. },
  22397. [
  22398. {
  22399. name: "Macro",
  22400. height: math.unit(70, "feet"),
  22401. default: true
  22402. },
  22403. ]
  22404. ))
  22405. characterMakers.push(() => makeCharacter(
  22406. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22407. {
  22408. front: {
  22409. height: math.unit(32, "meters"),
  22410. weight: math.unit(300000, "kg"),
  22411. name: "Front",
  22412. image: {
  22413. source: "./media/characters/almor/front.svg",
  22414. extra: 1408 / 1322,
  22415. bottom: 94.6 / 1506.5
  22416. }
  22417. },
  22418. },
  22419. [
  22420. {
  22421. name: "Macro",
  22422. height: math.unit(32, "meters"),
  22423. default: true
  22424. },
  22425. ]
  22426. ))
  22427. characterMakers.push(() => makeCharacter(
  22428. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22429. {
  22430. front: {
  22431. height: math.unit(7, "feet"),
  22432. weight: math.unit(200, "lb"),
  22433. name: "Front",
  22434. image: {
  22435. source: "./media/characters/silver/front.svg",
  22436. extra: 472.1 / 450.5,
  22437. bottom: 26.5 / 499.424
  22438. }
  22439. },
  22440. },
  22441. [
  22442. {
  22443. name: "Normal",
  22444. height: math.unit(7, "feet"),
  22445. default: true
  22446. },
  22447. {
  22448. name: "Macro",
  22449. height: math.unit(800, "feet")
  22450. },
  22451. {
  22452. name: "Megamacro",
  22453. height: math.unit(250, "miles")
  22454. },
  22455. ]
  22456. ))
  22457. characterMakers.push(() => makeCharacter(
  22458. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22459. {
  22460. front: {
  22461. height: math.unit(6, "feet"),
  22462. weight: math.unit(150, "lb"),
  22463. name: "Front",
  22464. image: {
  22465. source: "./media/characters/pliskin/front.svg",
  22466. extra: 1469 / 1359,
  22467. bottom: 70 / 1540
  22468. }
  22469. },
  22470. },
  22471. [
  22472. {
  22473. name: "Micro",
  22474. height: math.unit(3, "inches")
  22475. },
  22476. {
  22477. name: "Normal",
  22478. height: math.unit(5 + 11 / 12, "feet"),
  22479. default: true
  22480. },
  22481. {
  22482. name: "Macro",
  22483. height: math.unit(120, "feet")
  22484. },
  22485. ]
  22486. ))
  22487. characterMakers.push(() => makeCharacter(
  22488. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22489. {
  22490. front: {
  22491. height: math.unit(6, "feet"),
  22492. weight: math.unit(150, "lb"),
  22493. name: "Front",
  22494. image: {
  22495. source: "./media/characters/sammy/front.svg",
  22496. extra: 1193 / 1089,
  22497. bottom: 30.5 / 1226
  22498. }
  22499. },
  22500. },
  22501. [
  22502. {
  22503. name: "Macro",
  22504. height: math.unit(1700, "feet"),
  22505. default: true
  22506. },
  22507. {
  22508. name: "Examacro",
  22509. height: math.unit(2.5e9, "lightyears")
  22510. },
  22511. ]
  22512. ))
  22513. characterMakers.push(() => makeCharacter(
  22514. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22515. {
  22516. front: {
  22517. height: math.unit(21, "meters"),
  22518. weight: math.unit(12, "tonnes"),
  22519. name: "Front",
  22520. image: {
  22521. source: "./media/characters/kuru/front.svg",
  22522. extra: 4301 / 3785,
  22523. bottom: 371.3 / 4691
  22524. }
  22525. },
  22526. },
  22527. [
  22528. {
  22529. name: "Macro",
  22530. height: math.unit(21, "meters"),
  22531. default: true
  22532. },
  22533. ]
  22534. ))
  22535. characterMakers.push(() => makeCharacter(
  22536. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22537. {
  22538. front: {
  22539. height: math.unit(23, "meters"),
  22540. weight: math.unit(12.2, "tonnes"),
  22541. name: "Front",
  22542. image: {
  22543. source: "./media/characters/rakka/front.svg",
  22544. extra: 4670 / 4169,
  22545. bottom: 301 / 4968.7
  22546. }
  22547. },
  22548. },
  22549. [
  22550. {
  22551. name: "Macro",
  22552. height: math.unit(23, "meters"),
  22553. default: true
  22554. },
  22555. ]
  22556. ))
  22557. characterMakers.push(() => makeCharacter(
  22558. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22559. {
  22560. front: {
  22561. height: math.unit(6, "feet"),
  22562. weight: math.unit(150, "lb"),
  22563. name: "Front",
  22564. image: {
  22565. source: "./media/characters/rhys-feline/front.svg",
  22566. extra: 2488 / 2308,
  22567. bottom: 35.67 / 2519.19
  22568. }
  22569. },
  22570. },
  22571. [
  22572. {
  22573. name: "Really Small",
  22574. height: math.unit(1, "nm")
  22575. },
  22576. {
  22577. name: "Micro",
  22578. height: math.unit(4, "inches")
  22579. },
  22580. {
  22581. name: "Normal",
  22582. height: math.unit(4 + 10 / 12, "feet"),
  22583. default: true
  22584. },
  22585. {
  22586. name: "Macro",
  22587. height: math.unit(100, "feet")
  22588. },
  22589. {
  22590. name: "Megamacto",
  22591. height: math.unit(50, "miles")
  22592. },
  22593. ]
  22594. ))
  22595. characterMakers.push(() => makeCharacter(
  22596. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22597. {
  22598. side: {
  22599. height: math.unit(30, "feet"),
  22600. weight: math.unit(35000, "kg"),
  22601. name: "Side",
  22602. image: {
  22603. source: "./media/characters/alydar/side.svg",
  22604. extra: 234 / 222,
  22605. bottom: 6.5 / 241
  22606. }
  22607. },
  22608. front: {
  22609. height: math.unit(30, "feet"),
  22610. weight: math.unit(35000, "kg"),
  22611. name: "Front",
  22612. image: {
  22613. source: "./media/characters/alydar/front.svg",
  22614. extra: 223.37 / 210.2,
  22615. bottom: 22.3 / 246.76
  22616. }
  22617. },
  22618. top: {
  22619. height: math.unit(64.54, "feet"),
  22620. weight: math.unit(35000, "kg"),
  22621. name: "Top",
  22622. image: {
  22623. source: "./media/characters/alydar/top.svg"
  22624. }
  22625. },
  22626. anthro: {
  22627. height: math.unit(30, "feet"),
  22628. weight: math.unit(9000, "kg"),
  22629. name: "Anthro",
  22630. image: {
  22631. source: "./media/characters/alydar/anthro.svg",
  22632. extra: 432 / 421,
  22633. bottom: 7.18 / 440
  22634. }
  22635. },
  22636. maw: {
  22637. height: math.unit(11.693, "feet"),
  22638. name: "Maw",
  22639. image: {
  22640. source: "./media/characters/alydar/maw.svg"
  22641. }
  22642. },
  22643. head: {
  22644. height: math.unit(11.693, "feet"),
  22645. name: "Head",
  22646. image: {
  22647. source: "./media/characters/alydar/head.svg"
  22648. }
  22649. },
  22650. headAlt: {
  22651. height: math.unit(12.861, "feet"),
  22652. name: "Head (Alt)",
  22653. image: {
  22654. source: "./media/characters/alydar/head-alt.svg"
  22655. }
  22656. },
  22657. wing: {
  22658. height: math.unit(20.712, "feet"),
  22659. name: "Wing",
  22660. image: {
  22661. source: "./media/characters/alydar/wing.svg"
  22662. }
  22663. },
  22664. wingFeather: {
  22665. height: math.unit(9.662, "feet"),
  22666. name: "Wing Feather",
  22667. image: {
  22668. source: "./media/characters/alydar/wing-feather.svg"
  22669. }
  22670. },
  22671. countourFeather: {
  22672. height: math.unit(4.154, "feet"),
  22673. name: "Contour Feather",
  22674. image: {
  22675. source: "./media/characters/alydar/contour-feather.svg"
  22676. }
  22677. },
  22678. },
  22679. [
  22680. {
  22681. name: "Diplomatic",
  22682. height: math.unit(13, "feet"),
  22683. default: true
  22684. },
  22685. {
  22686. name: "Small",
  22687. height: math.unit(30, "feet")
  22688. },
  22689. {
  22690. name: "Normal",
  22691. height: math.unit(95, "feet"),
  22692. default: true
  22693. },
  22694. {
  22695. name: "Large",
  22696. height: math.unit(285, "feet")
  22697. },
  22698. {
  22699. name: "Incomprehensible",
  22700. height: math.unit(450, "megameters")
  22701. },
  22702. ]
  22703. ))
  22704. characterMakers.push(() => makeCharacter(
  22705. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22706. {
  22707. side: {
  22708. height: math.unit(11, "feet"),
  22709. weight: math.unit(1750, "kg"),
  22710. name: "Side",
  22711. image: {
  22712. source: "./media/characters/selicia/side.svg",
  22713. extra: 440 / 396,
  22714. bottom: 24.8 / 465.979
  22715. }
  22716. },
  22717. maw: {
  22718. height: math.unit(4.665, "feet"),
  22719. name: "Maw",
  22720. image: {
  22721. source: "./media/characters/selicia/maw.svg"
  22722. }
  22723. },
  22724. },
  22725. [
  22726. {
  22727. name: "Normal",
  22728. height: math.unit(11, "feet"),
  22729. default: true
  22730. },
  22731. ]
  22732. ))
  22733. characterMakers.push(() => makeCharacter(
  22734. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22735. {
  22736. side: {
  22737. height: math.unit(2 + 6 / 12, "feet"),
  22738. weight: math.unit(30, "lb"),
  22739. name: "Side",
  22740. image: {
  22741. source: "./media/characters/layla/side.svg",
  22742. extra: 244 / 188,
  22743. bottom: 18.2 / 262.1
  22744. }
  22745. },
  22746. back: {
  22747. height: math.unit(2 + 6 / 12, "feet"),
  22748. weight: math.unit(30, "lb"),
  22749. name: "Back",
  22750. image: {
  22751. source: "./media/characters/layla/back.svg",
  22752. extra: 308 / 241.5,
  22753. bottom: 8.9 / 316.8
  22754. }
  22755. },
  22756. cumming: {
  22757. height: math.unit(2 + 6 / 12, "feet"),
  22758. weight: math.unit(30, "lb"),
  22759. name: "Cumming",
  22760. image: {
  22761. source: "./media/characters/layla/cumming.svg",
  22762. extra: 342 / 279,
  22763. bottom: 595 / 938
  22764. }
  22765. },
  22766. dickFlaccid: {
  22767. height: math.unit(2.595, "feet"),
  22768. name: "Flaccid Genitals",
  22769. image: {
  22770. source: "./media/characters/layla/dick-flaccid.svg"
  22771. }
  22772. },
  22773. dickErect: {
  22774. height: math.unit(2.359, "feet"),
  22775. name: "Erect Genitals",
  22776. image: {
  22777. source: "./media/characters/layla/dick-erect.svg"
  22778. }
  22779. },
  22780. },
  22781. [
  22782. {
  22783. name: "Micro",
  22784. height: math.unit(1, "inch")
  22785. },
  22786. {
  22787. name: "Small",
  22788. height: math.unit(1, "foot")
  22789. },
  22790. {
  22791. name: "Normal",
  22792. height: math.unit(2 + 6 / 12, "feet"),
  22793. default: true
  22794. },
  22795. {
  22796. name: "Macro",
  22797. height: math.unit(200, "feet")
  22798. },
  22799. {
  22800. name: "Megamacro",
  22801. height: math.unit(1000, "miles")
  22802. },
  22803. {
  22804. name: "Planetary",
  22805. height: math.unit(8000, "miles")
  22806. },
  22807. {
  22808. name: "True Layla",
  22809. height: math.unit(200000 * 7, "multiverses")
  22810. },
  22811. ]
  22812. ))
  22813. characterMakers.push(() => makeCharacter(
  22814. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22815. {
  22816. back: {
  22817. height: math.unit(10.5, "feet"),
  22818. weight: math.unit(800, "lb"),
  22819. name: "Back",
  22820. image: {
  22821. source: "./media/characters/knox/back.svg",
  22822. extra: 1486 / 1089,
  22823. bottom: 107 / 1601.4
  22824. }
  22825. },
  22826. side: {
  22827. height: math.unit(10.5, "feet"),
  22828. weight: math.unit(800, "lb"),
  22829. name: "Side",
  22830. image: {
  22831. source: "./media/characters/knox/side.svg",
  22832. extra: 244 / 218,
  22833. bottom: 14 / 260
  22834. }
  22835. },
  22836. },
  22837. [
  22838. {
  22839. name: "Compact",
  22840. height: math.unit(10.5, "feet"),
  22841. default: true
  22842. },
  22843. {
  22844. name: "Dynamax",
  22845. height: math.unit(210, "feet")
  22846. },
  22847. {
  22848. name: "Full Macro",
  22849. height: math.unit(850, "feet")
  22850. },
  22851. ]
  22852. ))
  22853. characterMakers.push(() => makeCharacter(
  22854. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22855. {
  22856. front: {
  22857. height: math.unit(6, "feet"),
  22858. weight: math.unit(152, "lb"),
  22859. name: "Front",
  22860. image: {
  22861. source: "./media/characters/shin-pikachu/front.svg",
  22862. extra: 1574 / 1480,
  22863. bottom: 53.3 / 1626
  22864. }
  22865. },
  22866. hand: {
  22867. height: math.unit(1.055, "feet"),
  22868. name: "Hand",
  22869. image: {
  22870. source: "./media/characters/shin-pikachu/hand.svg"
  22871. }
  22872. },
  22873. foot: {
  22874. height: math.unit(1.1, "feet"),
  22875. name: "Foot",
  22876. image: {
  22877. source: "./media/characters/shin-pikachu/foot.svg"
  22878. }
  22879. },
  22880. collar: {
  22881. height: math.unit(0.386, "feet"),
  22882. name: "Collar",
  22883. image: {
  22884. source: "./media/characters/shin-pikachu/collar.svg"
  22885. }
  22886. },
  22887. },
  22888. [
  22889. {
  22890. name: "Smallest",
  22891. height: math.unit(0.5, "inches")
  22892. },
  22893. {
  22894. name: "Micro",
  22895. height: math.unit(6, "inches")
  22896. },
  22897. {
  22898. name: "Normal",
  22899. height: math.unit(6, "feet"),
  22900. default: true
  22901. },
  22902. {
  22903. name: "Macro",
  22904. height: math.unit(150, "feet")
  22905. },
  22906. ]
  22907. ))
  22908. characterMakers.push(() => makeCharacter(
  22909. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22910. {
  22911. front: {
  22912. height: math.unit(28, "feet"),
  22913. weight: math.unit(10500, "lb"),
  22914. name: "Front",
  22915. image: {
  22916. source: "./media/characters/kayda/front.svg",
  22917. extra: 1536 / 1428,
  22918. bottom: 68.7 / 1603
  22919. }
  22920. },
  22921. back: {
  22922. height: math.unit(28, "feet"),
  22923. weight: math.unit(10500, "lb"),
  22924. name: "Back",
  22925. image: {
  22926. source: "./media/characters/kayda/back.svg",
  22927. extra: 1557 / 1464,
  22928. bottom: 39.5 / 1597.49
  22929. }
  22930. },
  22931. dick: {
  22932. height: math.unit(3.858, "feet"),
  22933. name: "Dick",
  22934. image: {
  22935. source: "./media/characters/kayda/dick.svg"
  22936. }
  22937. },
  22938. },
  22939. [
  22940. {
  22941. name: "Macro",
  22942. height: math.unit(28, "feet"),
  22943. default: true
  22944. },
  22945. ]
  22946. ))
  22947. characterMakers.push(() => makeCharacter(
  22948. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22949. {
  22950. front: {
  22951. height: math.unit(10 + 11 / 12, "feet"),
  22952. weight: math.unit(1400, "lb"),
  22953. name: "Front",
  22954. image: {
  22955. source: "./media/characters/brian/front.svg",
  22956. extra: 737 / 692,
  22957. bottom: 55.4 / 785
  22958. }
  22959. },
  22960. },
  22961. [
  22962. {
  22963. name: "Normal",
  22964. height: math.unit(10 + 11 / 12, "feet"),
  22965. default: true
  22966. },
  22967. ]
  22968. ))
  22969. characterMakers.push(() => makeCharacter(
  22970. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22971. {
  22972. front: {
  22973. height: math.unit(5 + 8 / 12, "feet"),
  22974. weight: math.unit(140, "lb"),
  22975. name: "Front",
  22976. image: {
  22977. source: "./media/characters/khemri/front.svg",
  22978. extra: 4780 / 4059,
  22979. bottom: 80.1 / 4859.25
  22980. }
  22981. },
  22982. },
  22983. [
  22984. {
  22985. name: "Micro",
  22986. height: math.unit(6, "inches")
  22987. },
  22988. {
  22989. name: "Normal",
  22990. height: math.unit(5 + 8 / 12, "feet"),
  22991. default: true
  22992. },
  22993. ]
  22994. ))
  22995. characterMakers.push(() => makeCharacter(
  22996. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22997. {
  22998. front: {
  22999. height: math.unit(13, "feet"),
  23000. weight: math.unit(1700, "lb"),
  23001. name: "Front",
  23002. image: {
  23003. source: "./media/characters/felix-braveheart/front.svg",
  23004. extra: 1222 / 1157,
  23005. bottom: 53.2 / 1280
  23006. }
  23007. },
  23008. back: {
  23009. height: math.unit(13, "feet"),
  23010. weight: math.unit(1700, "lb"),
  23011. name: "Back",
  23012. image: {
  23013. source: "./media/characters/felix-braveheart/back.svg",
  23014. extra: 1277 / 1203,
  23015. bottom: 50.2 / 1327
  23016. }
  23017. },
  23018. feral: {
  23019. height: math.unit(6, "feet"),
  23020. weight: math.unit(400, "lb"),
  23021. name: "Feral",
  23022. image: {
  23023. source: "./media/characters/felix-braveheart/feral.svg",
  23024. extra: 682 / 625,
  23025. bottom: 6.9 / 688
  23026. }
  23027. },
  23028. },
  23029. [
  23030. {
  23031. name: "Normal",
  23032. height: math.unit(13, "feet"),
  23033. default: true
  23034. },
  23035. ]
  23036. ))
  23037. characterMakers.push(() => makeCharacter(
  23038. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23039. {
  23040. side: {
  23041. height: math.unit(5 + 11 / 12, "feet"),
  23042. weight: math.unit(1400, "lb"),
  23043. name: "Side",
  23044. image: {
  23045. source: "./media/characters/shadow-blade/side.svg",
  23046. extra: 1726 / 1267,
  23047. bottom: 58.4 / 1785
  23048. }
  23049. },
  23050. },
  23051. [
  23052. {
  23053. name: "Normal",
  23054. height: math.unit(5 + 11 / 12, "feet"),
  23055. default: true
  23056. },
  23057. ]
  23058. ))
  23059. characterMakers.push(() => makeCharacter(
  23060. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23061. {
  23062. front: {
  23063. height: math.unit(1 + 6 / 12, "feet"),
  23064. weight: math.unit(25, "lb"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/karla-halldor/front.svg",
  23068. extra: 1459 / 1383,
  23069. bottom: 12 / 1472
  23070. }
  23071. },
  23072. },
  23073. [
  23074. {
  23075. name: "Normal",
  23076. height: math.unit(1 + 6 / 12, "feet"),
  23077. default: true
  23078. },
  23079. ]
  23080. ))
  23081. characterMakers.push(() => makeCharacter(
  23082. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23083. {
  23084. front: {
  23085. height: math.unit(6 + 2 / 12, "feet"),
  23086. weight: math.unit(160, "lb"),
  23087. name: "Front",
  23088. image: {
  23089. source: "./media/characters/ariam/front.svg",
  23090. extra: 714 / 617,
  23091. bottom: 23.4 / 737,
  23092. }
  23093. },
  23094. squatting: {
  23095. height: math.unit(4.1, "feet"),
  23096. weight: math.unit(160, "lb"),
  23097. name: "Squatting",
  23098. image: {
  23099. source: "./media/characters/ariam/squatting.svg",
  23100. extra: 2617 / 2112,
  23101. bottom: 61.2 / 2681,
  23102. }
  23103. },
  23104. },
  23105. [
  23106. {
  23107. name: "Normal",
  23108. height: math.unit(6 + 2 / 12, "feet"),
  23109. default: true
  23110. },
  23111. {
  23112. name: "Normal+",
  23113. height: math.unit(4, "meters")
  23114. },
  23115. {
  23116. name: "Macro",
  23117. height: math.unit(50, "meters")
  23118. },
  23119. {
  23120. name: "Macro+",
  23121. height: math.unit(100, "meters")
  23122. },
  23123. {
  23124. name: "Megamacro",
  23125. height: math.unit(20, "km")
  23126. },
  23127. ]
  23128. ))
  23129. characterMakers.push(() => makeCharacter(
  23130. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23131. {
  23132. front: {
  23133. height: math.unit(1.67, "meters"),
  23134. weight: math.unit(140, "lb"),
  23135. name: "Front",
  23136. image: {
  23137. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23138. extra: 438 / 410,
  23139. bottom: 0.75 / 439
  23140. }
  23141. },
  23142. },
  23143. [
  23144. {
  23145. name: "Shrunken",
  23146. height: math.unit(7.6, "cm")
  23147. },
  23148. {
  23149. name: "Human Scale",
  23150. height: math.unit(1.67, "meters")
  23151. },
  23152. {
  23153. name: "Wolxi Scale",
  23154. height: math.unit(36.7, "meters"),
  23155. default: true
  23156. },
  23157. ]
  23158. ))
  23159. characterMakers.push(() => makeCharacter(
  23160. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23161. {
  23162. front: {
  23163. height: math.unit(1.73, "meters"),
  23164. weight: math.unit(240, "lb"),
  23165. name: "Front",
  23166. image: {
  23167. source: "./media/characters/izue-two-mothers/front.svg",
  23168. extra: 469 / 437,
  23169. bottom: 1.24 / 470.6
  23170. }
  23171. },
  23172. },
  23173. [
  23174. {
  23175. name: "Shrunken",
  23176. height: math.unit(7.86, "cm")
  23177. },
  23178. {
  23179. name: "Human Scale",
  23180. height: math.unit(1.73, "meters")
  23181. },
  23182. {
  23183. name: "Wolxi Scale",
  23184. height: math.unit(38, "meters"),
  23185. default: true
  23186. },
  23187. ]
  23188. ))
  23189. characterMakers.push(() => makeCharacter(
  23190. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23191. {
  23192. front: {
  23193. height: math.unit(1.55, "meters"),
  23194. weight: math.unit(120, "lb"),
  23195. name: "Front",
  23196. image: {
  23197. source: "./media/characters/teeku-love-shack/front.svg",
  23198. extra: 387 / 362,
  23199. bottom: 1.51 / 388
  23200. }
  23201. },
  23202. },
  23203. [
  23204. {
  23205. name: "Shrunken",
  23206. height: math.unit(7, "cm")
  23207. },
  23208. {
  23209. name: "Human Scale",
  23210. height: math.unit(1.55, "meters")
  23211. },
  23212. {
  23213. name: "Wolxi Scale",
  23214. height: math.unit(34.1, "meters"),
  23215. default: true
  23216. },
  23217. ]
  23218. ))
  23219. characterMakers.push(() => makeCharacter(
  23220. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23221. {
  23222. front: {
  23223. height: math.unit(1.83, "meters"),
  23224. weight: math.unit(135, "lb"),
  23225. name: "Front",
  23226. image: {
  23227. source: "./media/characters/dejma-the-red/front.svg",
  23228. extra: 480 / 458,
  23229. bottom: 1.8 / 482
  23230. }
  23231. },
  23232. },
  23233. [
  23234. {
  23235. name: "Shrunken",
  23236. height: math.unit(8.3, "cm")
  23237. },
  23238. {
  23239. name: "Human Scale",
  23240. height: math.unit(1.83, "meters")
  23241. },
  23242. {
  23243. name: "Wolxi Scale",
  23244. height: math.unit(40, "meters"),
  23245. default: true
  23246. },
  23247. ]
  23248. ))
  23249. characterMakers.push(() => makeCharacter(
  23250. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23251. {
  23252. front: {
  23253. height: math.unit(1.78, "meters"),
  23254. weight: math.unit(65, "kg"),
  23255. name: "Front",
  23256. image: {
  23257. source: "./media/characters/aki/front.svg",
  23258. extra: 452 / 415
  23259. }
  23260. },
  23261. frontNsfw: {
  23262. height: math.unit(1.78, "meters"),
  23263. weight: math.unit(65, "kg"),
  23264. name: "Front (NSFW)",
  23265. image: {
  23266. source: "./media/characters/aki/front-nsfw.svg",
  23267. extra: 452 / 415
  23268. }
  23269. },
  23270. back: {
  23271. height: math.unit(1.78, "meters"),
  23272. weight: math.unit(65, "kg"),
  23273. name: "Back",
  23274. image: {
  23275. source: "./media/characters/aki/back.svg",
  23276. extra: 452 / 415
  23277. }
  23278. },
  23279. rump: {
  23280. height: math.unit(2.05, "feet"),
  23281. name: "Rump",
  23282. image: {
  23283. source: "./media/characters/aki/rump.svg"
  23284. }
  23285. },
  23286. dick: {
  23287. height: math.unit(0.95, "feet"),
  23288. name: "Dick",
  23289. image: {
  23290. source: "./media/characters/aki/dick.svg"
  23291. }
  23292. },
  23293. },
  23294. [
  23295. {
  23296. name: "Micro",
  23297. height: math.unit(15, "cm")
  23298. },
  23299. {
  23300. name: "Normal",
  23301. height: math.unit(178, "cm"),
  23302. default: true
  23303. },
  23304. {
  23305. name: "Macro",
  23306. height: math.unit(214, "m")
  23307. },
  23308. {
  23309. name: "Macro+",
  23310. height: math.unit(534, "m")
  23311. },
  23312. ]
  23313. ))
  23314. characterMakers.push(() => makeCharacter(
  23315. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23316. {
  23317. front: {
  23318. height: math.unit(5 + 5 / 12, "feet"),
  23319. weight: math.unit(120, "lb"),
  23320. name: "Front",
  23321. image: {
  23322. source: "./media/characters/ari/front.svg",
  23323. extra: 714.5 / 682,
  23324. bottom: 8 / 722.5
  23325. }
  23326. },
  23327. },
  23328. [
  23329. {
  23330. name: "Normal",
  23331. height: math.unit(5 + 5 / 12, "feet")
  23332. },
  23333. {
  23334. name: "Macro",
  23335. height: math.unit(100, "feet"),
  23336. default: true
  23337. },
  23338. {
  23339. name: "Megamacro",
  23340. height: math.unit(100, "miles")
  23341. },
  23342. {
  23343. name: "Gigamacro",
  23344. height: math.unit(80000, "miles")
  23345. },
  23346. ]
  23347. ))
  23348. characterMakers.push(() => makeCharacter(
  23349. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23350. {
  23351. side: {
  23352. height: math.unit(9, "feet"),
  23353. weight: math.unit(400, "kg"),
  23354. name: "Side",
  23355. image: {
  23356. source: "./media/characters/bolt/side.svg",
  23357. extra: 1126 / 896,
  23358. bottom: 60 / 1187.3,
  23359. }
  23360. },
  23361. },
  23362. [
  23363. {
  23364. name: "Micro",
  23365. height: math.unit(5, "inches")
  23366. },
  23367. {
  23368. name: "Normal",
  23369. height: math.unit(9, "feet"),
  23370. default: true
  23371. },
  23372. {
  23373. name: "Macro",
  23374. height: math.unit(700, "feet")
  23375. },
  23376. {
  23377. name: "Max Size",
  23378. height: math.unit(1.52e22, "yottameters")
  23379. },
  23380. ]
  23381. ))
  23382. characterMakers.push(() => makeCharacter(
  23383. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23384. {
  23385. front: {
  23386. height: math.unit(4.53, "meters"),
  23387. weight: math.unit(3, "tons"),
  23388. name: "Front",
  23389. image: {
  23390. source: "./media/characters/draekon-sylviar/front.svg",
  23391. extra: 1228 / 1068,
  23392. bottom: 41 / 1270
  23393. }
  23394. },
  23395. tail: {
  23396. height: math.unit(1.772, "meter"),
  23397. name: "Tail",
  23398. image: {
  23399. source: "./media/characters/draekon-sylviar/tail.svg"
  23400. }
  23401. },
  23402. head: {
  23403. height: math.unit(1.331, "meter"),
  23404. name: "Head",
  23405. image: {
  23406. source: "./media/characters/draekon-sylviar/head.svg"
  23407. }
  23408. },
  23409. hand: {
  23410. height: math.unit(0.564, "meter"),
  23411. name: "Hand",
  23412. image: {
  23413. source: "./media/characters/draekon-sylviar/hand.svg"
  23414. }
  23415. },
  23416. foot: {
  23417. height: math.unit(0.621, "meter"),
  23418. name: "Foot",
  23419. image: {
  23420. source: "./media/characters/draekon-sylviar/foot.svg",
  23421. bottom: 32 / 324
  23422. }
  23423. },
  23424. dick: {
  23425. height: math.unit(61, "cm"),
  23426. name: "Dick",
  23427. image: {
  23428. source: "./media/characters/draekon-sylviar/dick.svg"
  23429. }
  23430. },
  23431. dickseparated: {
  23432. height: math.unit(61, "cm"),
  23433. name: "Dick-separated",
  23434. image: {
  23435. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23436. }
  23437. },
  23438. },
  23439. [
  23440. {
  23441. name: "Small",
  23442. height: math.unit(4.53 / 2, "meters"),
  23443. default: true
  23444. },
  23445. {
  23446. name: "Normal",
  23447. height: math.unit(4.53, "meters"),
  23448. default: true
  23449. },
  23450. {
  23451. name: "Large",
  23452. height: math.unit(4.53 * 2, "meters"),
  23453. },
  23454. ]
  23455. ))
  23456. characterMakers.push(() => makeCharacter(
  23457. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23458. {
  23459. front: {
  23460. height: math.unit(6 + 2 / 12, "feet"),
  23461. weight: math.unit(180, "lb"),
  23462. name: "Front",
  23463. image: {
  23464. source: "./media/characters/brawler/front.svg",
  23465. extra: 3301 / 3027,
  23466. bottom: 138 / 3439
  23467. }
  23468. },
  23469. },
  23470. [
  23471. {
  23472. name: "Normal",
  23473. height: math.unit(6 + 2 / 12, "feet"),
  23474. default: true
  23475. },
  23476. ]
  23477. ))
  23478. characterMakers.push(() => makeCharacter(
  23479. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23480. {
  23481. front: {
  23482. height: math.unit(11, "feet"),
  23483. weight: math.unit(1000, "lb"),
  23484. name: "Front",
  23485. image: {
  23486. source: "./media/characters/alex/front.svg",
  23487. bottom: 44.5 / 620
  23488. }
  23489. },
  23490. },
  23491. [
  23492. {
  23493. name: "Micro",
  23494. height: math.unit(5, "inches")
  23495. },
  23496. {
  23497. name: "Normal",
  23498. height: math.unit(11, "feet"),
  23499. default: true
  23500. },
  23501. {
  23502. name: "Macro",
  23503. height: math.unit(9.5e9, "feet")
  23504. },
  23505. {
  23506. name: "Max Size",
  23507. height: math.unit(1.4e283, "yottameters")
  23508. },
  23509. ]
  23510. ))
  23511. characterMakers.push(() => makeCharacter(
  23512. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23513. {
  23514. female: {
  23515. height: math.unit(29.9, "m"),
  23516. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23517. name: "Female",
  23518. image: {
  23519. source: "./media/characters/zenari/female.svg",
  23520. extra: 3281.6 / 3217,
  23521. bottom: 72.2 / 3353
  23522. }
  23523. },
  23524. male: {
  23525. height: math.unit(27.7, "m"),
  23526. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23527. name: "Male",
  23528. image: {
  23529. source: "./media/characters/zenari/male.svg",
  23530. extra: 3008 / 2991,
  23531. bottom: 54.6 / 3069
  23532. }
  23533. },
  23534. },
  23535. [
  23536. {
  23537. name: "Macro",
  23538. height: math.unit(29.7, "meters"),
  23539. default: true
  23540. },
  23541. ]
  23542. ))
  23543. characterMakers.push(() => makeCharacter(
  23544. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23545. {
  23546. female: {
  23547. height: math.unit(23.8, "m"),
  23548. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23549. name: "Female",
  23550. image: {
  23551. source: "./media/characters/mactarian/female.svg",
  23552. extra: 2662 / 2569,
  23553. bottom: 73 / 2736
  23554. }
  23555. },
  23556. male: {
  23557. height: math.unit(23.8, "m"),
  23558. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23559. name: "Male",
  23560. image: {
  23561. source: "./media/characters/mactarian/male.svg",
  23562. extra: 2673 / 2600,
  23563. bottom: 76 / 2750
  23564. }
  23565. },
  23566. },
  23567. [
  23568. {
  23569. name: "Macro",
  23570. height: math.unit(23.8, "meters"),
  23571. default: true
  23572. },
  23573. ]
  23574. ))
  23575. characterMakers.push(() => makeCharacter(
  23576. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23577. {
  23578. female: {
  23579. height: math.unit(19.3, "m"),
  23580. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23581. name: "Female",
  23582. image: {
  23583. source: "./media/characters/umok/female.svg",
  23584. extra: 2186 / 2078,
  23585. bottom: 87 / 2277
  23586. }
  23587. },
  23588. male: {
  23589. height: math.unit(19.5, "m"),
  23590. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23591. name: "Male",
  23592. image: {
  23593. source: "./media/characters/umok/male.svg",
  23594. extra: 2233 / 2140,
  23595. bottom: 24.4 / 2258
  23596. }
  23597. },
  23598. },
  23599. [
  23600. {
  23601. name: "Macro",
  23602. height: math.unit(19.3, "meters"),
  23603. default: true
  23604. },
  23605. ]
  23606. ))
  23607. characterMakers.push(() => makeCharacter(
  23608. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23609. {
  23610. female: {
  23611. height: math.unit(26.15, "m"),
  23612. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23613. name: "Female",
  23614. image: {
  23615. source: "./media/characters/joraxian/female.svg",
  23616. extra: 2912 / 2824,
  23617. bottom: 36 / 2956
  23618. }
  23619. },
  23620. male: {
  23621. height: math.unit(25.4, "m"),
  23622. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23623. name: "Male",
  23624. image: {
  23625. source: "./media/characters/joraxian/male.svg",
  23626. extra: 2877 / 2721,
  23627. bottom: 82 / 2967
  23628. }
  23629. },
  23630. },
  23631. [
  23632. {
  23633. name: "Macro",
  23634. height: math.unit(26.15, "meters"),
  23635. default: true
  23636. },
  23637. ]
  23638. ))
  23639. characterMakers.push(() => makeCharacter(
  23640. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23641. {
  23642. female: {
  23643. height: math.unit(21.6, "m"),
  23644. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23645. name: "Female",
  23646. image: {
  23647. source: "./media/characters/sthara/female.svg",
  23648. extra: 2516 / 2347,
  23649. bottom: 21.5 / 2537
  23650. }
  23651. },
  23652. male: {
  23653. height: math.unit(24, "m"),
  23654. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23655. name: "Male",
  23656. image: {
  23657. source: "./media/characters/sthara/male.svg",
  23658. extra: 2732 / 2607,
  23659. bottom: 23 / 2732
  23660. }
  23661. },
  23662. },
  23663. [
  23664. {
  23665. name: "Macro",
  23666. height: math.unit(21.6, "meters"),
  23667. default: true
  23668. },
  23669. ]
  23670. ))
  23671. characterMakers.push(() => makeCharacter(
  23672. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23673. {
  23674. front: {
  23675. height: math.unit(6 + 4 / 12, "feet"),
  23676. weight: math.unit(175, "lb"),
  23677. name: "Front",
  23678. image: {
  23679. source: "./media/characters/luka-bryzant/front.svg",
  23680. extra: 311 / 289,
  23681. bottom: 4 / 315
  23682. }
  23683. },
  23684. back: {
  23685. height: math.unit(6 + 4 / 12, "feet"),
  23686. weight: math.unit(175, "lb"),
  23687. name: "Back",
  23688. image: {
  23689. source: "./media/characters/luka-bryzant/back.svg",
  23690. extra: 311 / 289,
  23691. bottom: 3.8 / 313.7
  23692. }
  23693. },
  23694. },
  23695. [
  23696. {
  23697. name: "Micro",
  23698. height: math.unit(10, "inches")
  23699. },
  23700. {
  23701. name: "Normal",
  23702. height: math.unit(6 + 4 / 12, "feet"),
  23703. default: true
  23704. },
  23705. {
  23706. name: "Large",
  23707. height: math.unit(12, "feet")
  23708. },
  23709. ]
  23710. ))
  23711. characterMakers.push(() => makeCharacter(
  23712. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23713. {
  23714. front: {
  23715. height: math.unit(5 + 7 / 12, "feet"),
  23716. weight: math.unit(185, "lb"),
  23717. name: "Front",
  23718. image: {
  23719. source: "./media/characters/aman-aquila/front.svg",
  23720. extra: 1013 / 976,
  23721. bottom: 45.6 / 1057
  23722. }
  23723. },
  23724. side: {
  23725. height: math.unit(5 + 7 / 12, "feet"),
  23726. weight: math.unit(185, "lb"),
  23727. name: "Side",
  23728. image: {
  23729. source: "./media/characters/aman-aquila/side.svg",
  23730. extra: 1054 / 1011,
  23731. bottom: 15 / 1070
  23732. }
  23733. },
  23734. back: {
  23735. height: math.unit(5 + 7 / 12, "feet"),
  23736. weight: math.unit(185, "lb"),
  23737. name: "Back",
  23738. image: {
  23739. source: "./media/characters/aman-aquila/back.svg",
  23740. extra: 1026 / 970,
  23741. bottom: 12 / 1039
  23742. }
  23743. },
  23744. head: {
  23745. height: math.unit(1.211, "feet"),
  23746. name: "Head",
  23747. image: {
  23748. source: "./media/characters/aman-aquila/head.svg",
  23749. }
  23750. },
  23751. },
  23752. [
  23753. {
  23754. name: "Minimicro",
  23755. height: math.unit(0.057, "inches")
  23756. },
  23757. {
  23758. name: "Micro",
  23759. height: math.unit(7, "inches")
  23760. },
  23761. {
  23762. name: "Mini",
  23763. height: math.unit(3 + 7 / 12, "feet")
  23764. },
  23765. {
  23766. name: "Normal",
  23767. height: math.unit(5 + 7 / 12, "feet"),
  23768. default: true
  23769. },
  23770. {
  23771. name: "Macro",
  23772. height: math.unit(157 + 7 / 12, "feet")
  23773. },
  23774. {
  23775. name: "Megamacro",
  23776. height: math.unit(1557 + 7 / 12, "feet")
  23777. },
  23778. {
  23779. name: "Gigamacro",
  23780. height: math.unit(15557 + 7 / 12, "feet")
  23781. },
  23782. ]
  23783. ))
  23784. characterMakers.push(() => makeCharacter(
  23785. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23786. {
  23787. front: {
  23788. height: math.unit(3 + 2 / 12, "inches"),
  23789. weight: math.unit(0.3, "ounces"),
  23790. name: "Front",
  23791. image: {
  23792. source: "./media/characters/hiphae/front.svg",
  23793. extra: 1931 / 1683,
  23794. bottom: 24 / 1955
  23795. }
  23796. },
  23797. },
  23798. [
  23799. {
  23800. name: "Normal",
  23801. height: math.unit(3 + 1 / 2, "inches"),
  23802. default: true
  23803. },
  23804. ]
  23805. ))
  23806. characterMakers.push(() => makeCharacter(
  23807. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23808. {
  23809. front: {
  23810. height: math.unit(5 + 10 / 12, "feet"),
  23811. weight: math.unit(165, "lb"),
  23812. name: "Front",
  23813. image: {
  23814. source: "./media/characters/nicky/front.svg",
  23815. extra: 3144 / 2886,
  23816. bottom: 45.6 / 3192
  23817. }
  23818. },
  23819. back: {
  23820. height: math.unit(5 + 10 / 12, "feet"),
  23821. weight: math.unit(165, "lb"),
  23822. name: "Back",
  23823. image: {
  23824. source: "./media/characters/nicky/back.svg",
  23825. extra: 3055 / 2804,
  23826. bottom: 28.4 / 3087
  23827. }
  23828. },
  23829. frontclothed: {
  23830. height: math.unit(5 + 10 / 12, "feet"),
  23831. weight: math.unit(165, "lb"),
  23832. name: "Front-clothed",
  23833. image: {
  23834. source: "./media/characters/nicky/front-clothed.svg",
  23835. extra: 3184.9 / 2926.9,
  23836. bottom: 86.5 / 3239.9
  23837. }
  23838. },
  23839. foot: {
  23840. height: math.unit(1.16, "feet"),
  23841. name: "Foot",
  23842. image: {
  23843. source: "./media/characters/nicky/foot.svg"
  23844. }
  23845. },
  23846. feet: {
  23847. height: math.unit(1.34, "feet"),
  23848. name: "Feet",
  23849. image: {
  23850. source: "./media/characters/nicky/feet.svg"
  23851. }
  23852. },
  23853. maw: {
  23854. height: math.unit(0.9, "feet"),
  23855. name: "Maw",
  23856. image: {
  23857. source: "./media/characters/nicky/maw.svg"
  23858. }
  23859. },
  23860. },
  23861. [
  23862. {
  23863. name: "Normal",
  23864. height: math.unit(5 + 10 / 12, "feet"),
  23865. default: true
  23866. },
  23867. {
  23868. name: "Macro",
  23869. height: math.unit(60, "feet")
  23870. },
  23871. {
  23872. name: "Megamacro",
  23873. height: math.unit(1, "mile")
  23874. },
  23875. ]
  23876. ))
  23877. characterMakers.push(() => makeCharacter(
  23878. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23879. {
  23880. side: {
  23881. height: math.unit(10, "feet"),
  23882. weight: math.unit(600, "lb"),
  23883. name: "Side",
  23884. image: {
  23885. source: "./media/characters/blair/side.svg",
  23886. bottom: 16.6 / 475,
  23887. extra: 458 / 431
  23888. }
  23889. },
  23890. },
  23891. [
  23892. {
  23893. name: "Micro",
  23894. height: math.unit(8, "inches")
  23895. },
  23896. {
  23897. name: "Normal",
  23898. height: math.unit(10, "feet"),
  23899. default: true
  23900. },
  23901. {
  23902. name: "Macro",
  23903. height: math.unit(180, "feet")
  23904. },
  23905. ]
  23906. ))
  23907. characterMakers.push(() => makeCharacter(
  23908. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23909. {
  23910. front: {
  23911. height: math.unit(5 + 4 / 12, "feet"),
  23912. weight: math.unit(125, "lb"),
  23913. name: "Front",
  23914. image: {
  23915. source: "./media/characters/fisher/front.svg",
  23916. extra: 444 / 390,
  23917. bottom: 2 / 444.8
  23918. }
  23919. },
  23920. },
  23921. [
  23922. {
  23923. name: "Micro",
  23924. height: math.unit(4, "inches")
  23925. },
  23926. {
  23927. name: "Normal",
  23928. height: math.unit(5 + 4 / 12, "feet"),
  23929. default: true
  23930. },
  23931. {
  23932. name: "Macro",
  23933. height: math.unit(100, "feet")
  23934. },
  23935. ]
  23936. ))
  23937. characterMakers.push(() => makeCharacter(
  23938. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23939. {
  23940. front: {
  23941. height: math.unit(6.71, "feet"),
  23942. weight: math.unit(200, "lb"),
  23943. capacity: math.unit(1000000, "people"),
  23944. name: "Front",
  23945. image: {
  23946. source: "./media/characters/gliss/front.svg",
  23947. extra: 2347 / 2231,
  23948. bottom: 113 / 2462
  23949. }
  23950. },
  23951. hammerspaceSize: {
  23952. height: math.unit(6.71 * 717, "feet"),
  23953. weight: math.unit(200, "lb"),
  23954. capacity: math.unit(1000000, "people"),
  23955. name: "Hammerspace Size",
  23956. image: {
  23957. source: "./media/characters/gliss/front.svg",
  23958. extra: 2347 / 2231,
  23959. bottom: 113 / 2462
  23960. }
  23961. },
  23962. },
  23963. [
  23964. {
  23965. name: "Normal",
  23966. height: math.unit(6.71, "feet"),
  23967. default: true
  23968. },
  23969. ]
  23970. ))
  23971. characterMakers.push(() => makeCharacter(
  23972. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23973. {
  23974. side: {
  23975. height: math.unit(1.44, "m"),
  23976. weight: math.unit(80, "kg"),
  23977. name: "Side",
  23978. image: {
  23979. source: "./media/characters/dune-anderson/side.svg",
  23980. bottom: 49 / 1426
  23981. }
  23982. },
  23983. },
  23984. [
  23985. {
  23986. name: "Wolf-sized",
  23987. height: math.unit(1.44, "meters")
  23988. },
  23989. {
  23990. name: "Normal",
  23991. height: math.unit(5.05, "meters"),
  23992. default: true
  23993. },
  23994. {
  23995. name: "Big",
  23996. height: math.unit(14.4, "meters")
  23997. },
  23998. {
  23999. name: "Huge",
  24000. height: math.unit(144, "meters")
  24001. },
  24002. ]
  24003. ))
  24004. characterMakers.push(() => makeCharacter(
  24005. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24006. {
  24007. front: {
  24008. height: math.unit(7, "feet"),
  24009. weight: math.unit(425, "lb"),
  24010. name: "Front",
  24011. image: {
  24012. source: "./media/characters/hind/front.svg",
  24013. extra: 2091 / 1860,
  24014. bottom: 129 / 2220
  24015. }
  24016. },
  24017. back: {
  24018. height: math.unit(7, "feet"),
  24019. weight: math.unit(425, "lb"),
  24020. name: "Back",
  24021. image: {
  24022. source: "./media/characters/hind/back.svg",
  24023. extra: 2091 / 1860,
  24024. bottom: 24.6 / 2309
  24025. }
  24026. },
  24027. tail: {
  24028. height: math.unit(2.8, "feet"),
  24029. name: "Tail",
  24030. image: {
  24031. source: "./media/characters/hind/tail.svg"
  24032. }
  24033. },
  24034. head: {
  24035. height: math.unit(2.55, "feet"),
  24036. name: "Head",
  24037. image: {
  24038. source: "./media/characters/hind/head.svg"
  24039. }
  24040. },
  24041. },
  24042. [
  24043. {
  24044. name: "XS",
  24045. height: math.unit(0.7, "feet")
  24046. },
  24047. {
  24048. name: "Normal",
  24049. height: math.unit(7, "feet"),
  24050. default: true
  24051. },
  24052. {
  24053. name: "XL",
  24054. height: math.unit(70, "feet")
  24055. },
  24056. ]
  24057. ))
  24058. characterMakers.push(() => makeCharacter(
  24059. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24060. {
  24061. front: {
  24062. height: math.unit(6, "feet"),
  24063. weight: math.unit(150, "lb"),
  24064. name: "Front",
  24065. image: {
  24066. source: "./media/characters/dylan-skaven/front.svg",
  24067. extra: 2318 / 2063,
  24068. bottom: 93.4 / 2410
  24069. }
  24070. },
  24071. },
  24072. [
  24073. {
  24074. name: "Nano",
  24075. height: math.unit(1, "mm")
  24076. },
  24077. {
  24078. name: "Micro",
  24079. height: math.unit(1, "cm")
  24080. },
  24081. {
  24082. name: "Normal",
  24083. height: math.unit(2.1, "meters"),
  24084. default: true
  24085. },
  24086. ]
  24087. ))
  24088. characterMakers.push(() => makeCharacter(
  24089. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24090. {
  24091. front: {
  24092. height: math.unit(7 + 5 / 12, "feet"),
  24093. weight: math.unit(357, "lb"),
  24094. name: "Front",
  24095. image: {
  24096. source: "./media/characters/solex-draconov/front.svg",
  24097. extra: 1993 / 1865,
  24098. bottom: 117 / 2111
  24099. }
  24100. },
  24101. },
  24102. [
  24103. {
  24104. name: "Natural Height",
  24105. height: math.unit(7 + 5 / 12, "feet"),
  24106. default: true
  24107. },
  24108. {
  24109. name: "Macro",
  24110. height: math.unit(350, "feet")
  24111. },
  24112. {
  24113. name: "Macro+",
  24114. height: math.unit(1000, "feet")
  24115. },
  24116. {
  24117. name: "Megamacro",
  24118. height: math.unit(20, "km")
  24119. },
  24120. {
  24121. name: "Megamacro+",
  24122. height: math.unit(1000, "km")
  24123. },
  24124. {
  24125. name: "Gigamacro",
  24126. height: math.unit(2.5, "Gm")
  24127. },
  24128. {
  24129. name: "Teramacro",
  24130. height: math.unit(15, "Tm")
  24131. },
  24132. {
  24133. name: "Galactic",
  24134. height: math.unit(30, "Zm")
  24135. },
  24136. {
  24137. name: "Universal",
  24138. height: math.unit(21000, "Ym")
  24139. },
  24140. {
  24141. name: "Omniversal",
  24142. height: math.unit(9.861e50, "Ym")
  24143. },
  24144. {
  24145. name: "Existential",
  24146. height: math.unit(1e300, "meters")
  24147. },
  24148. ]
  24149. ))
  24150. characterMakers.push(() => makeCharacter(
  24151. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24152. {
  24153. side: {
  24154. height: math.unit(25, "feet"),
  24155. weight: math.unit(90000, "lb"),
  24156. name: "Side",
  24157. image: {
  24158. source: "./media/characters/mandarax/side.svg",
  24159. extra: 614 / 332,
  24160. bottom: 55 / 630
  24161. }
  24162. },
  24163. head: {
  24164. height: math.unit(11.4, "feet"),
  24165. name: "Head",
  24166. image: {
  24167. source: "./media/characters/mandarax/head.svg"
  24168. }
  24169. },
  24170. belly: {
  24171. height: math.unit(33, "feet"),
  24172. name: "Belly",
  24173. capacity: math.unit(500, "people"),
  24174. image: {
  24175. source: "./media/characters/mandarax/belly.svg"
  24176. }
  24177. },
  24178. dick: {
  24179. height: math.unit(8.46, "feet"),
  24180. name: "Dick",
  24181. image: {
  24182. source: "./media/characters/mandarax/dick.svg"
  24183. }
  24184. },
  24185. top: {
  24186. height: math.unit(28, "meters"),
  24187. name: "Top",
  24188. image: {
  24189. source: "./media/characters/mandarax/top.svg"
  24190. }
  24191. },
  24192. },
  24193. [
  24194. {
  24195. name: "Normal",
  24196. height: math.unit(25, "feet"),
  24197. default: true
  24198. },
  24199. ]
  24200. ))
  24201. characterMakers.push(() => makeCharacter(
  24202. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24203. {
  24204. front: {
  24205. height: math.unit(5, "feet"),
  24206. weight: math.unit(90, "lb"),
  24207. name: "Front",
  24208. image: {
  24209. source: "./media/characters/pixil/front.svg",
  24210. extra: 2000 / 1618,
  24211. bottom: 12.3 / 2011
  24212. }
  24213. },
  24214. },
  24215. [
  24216. {
  24217. name: "Normal",
  24218. height: math.unit(5, "feet"),
  24219. default: true
  24220. },
  24221. {
  24222. name: "Megamacro",
  24223. height: math.unit(10, "miles"),
  24224. },
  24225. ]
  24226. ))
  24227. characterMakers.push(() => makeCharacter(
  24228. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24229. {
  24230. front: {
  24231. height: math.unit(7 + 2 / 12, "feet"),
  24232. weight: math.unit(200, "lb"),
  24233. name: "Front",
  24234. image: {
  24235. source: "./media/characters/angel/front.svg",
  24236. extra: 1830 / 1737,
  24237. bottom: 22.6 / 1854,
  24238. }
  24239. },
  24240. },
  24241. [
  24242. {
  24243. name: "Normal",
  24244. height: math.unit(7 + 2 / 12, "feet"),
  24245. default: true
  24246. },
  24247. {
  24248. name: "Macro",
  24249. height: math.unit(1000, "feet")
  24250. },
  24251. {
  24252. name: "Megamacro",
  24253. height: math.unit(2, "miles")
  24254. },
  24255. {
  24256. name: "Gigamacro",
  24257. height: math.unit(20, "earths")
  24258. },
  24259. ]
  24260. ))
  24261. characterMakers.push(() => makeCharacter(
  24262. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24263. {
  24264. front: {
  24265. height: math.unit(5, "feet"),
  24266. weight: math.unit(180, "lb"),
  24267. name: "Front",
  24268. image: {
  24269. source: "./media/characters/mekana/front.svg",
  24270. extra: 1671 / 1605,
  24271. bottom: 3.5 / 1691
  24272. }
  24273. },
  24274. side: {
  24275. height: math.unit(5, "feet"),
  24276. weight: math.unit(180, "lb"),
  24277. name: "Side",
  24278. image: {
  24279. source: "./media/characters/mekana/side.svg",
  24280. extra: 1671 / 1605,
  24281. bottom: 3.5 / 1691
  24282. }
  24283. },
  24284. back: {
  24285. height: math.unit(5, "feet"),
  24286. weight: math.unit(180, "lb"),
  24287. name: "Back",
  24288. image: {
  24289. source: "./media/characters/mekana/back.svg",
  24290. extra: 1671 / 1605,
  24291. bottom: 3.5 / 1691
  24292. }
  24293. },
  24294. },
  24295. [
  24296. {
  24297. name: "Normal",
  24298. height: math.unit(5, "feet"),
  24299. default: true
  24300. },
  24301. ]
  24302. ))
  24303. characterMakers.push(() => makeCharacter(
  24304. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24305. {
  24306. front: {
  24307. height: math.unit(4 + 6 / 12, "feet"),
  24308. weight: math.unit(80, "lb"),
  24309. name: "Front",
  24310. image: {
  24311. source: "./media/characters/pixie/front.svg",
  24312. extra: 1924 / 1825,
  24313. bottom: 22.4 / 1946
  24314. }
  24315. },
  24316. },
  24317. [
  24318. {
  24319. name: "Normal",
  24320. height: math.unit(4 + 6 / 12, "feet"),
  24321. default: true
  24322. },
  24323. {
  24324. name: "Macro",
  24325. height: math.unit(40, "feet")
  24326. },
  24327. ]
  24328. ))
  24329. characterMakers.push(() => makeCharacter(
  24330. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24331. {
  24332. front: {
  24333. height: math.unit(2.1, "meters"),
  24334. weight: math.unit(200, "lb"),
  24335. name: "Front",
  24336. image: {
  24337. source: "./media/characters/the-lascivious/front.svg",
  24338. extra: 1 / 0.893,
  24339. bottom: 3.5 / 573.7
  24340. }
  24341. },
  24342. },
  24343. [
  24344. {
  24345. name: "Human Scale",
  24346. height: math.unit(2.1, "meters")
  24347. },
  24348. {
  24349. name: "Wolxi Scale",
  24350. height: math.unit(46.2, "m"),
  24351. default: true
  24352. },
  24353. {
  24354. name: "Boinker of Buildings",
  24355. height: math.unit(10, "km")
  24356. },
  24357. {
  24358. name: "Shagger of Skyscrapers",
  24359. height: math.unit(40, "km")
  24360. },
  24361. {
  24362. name: "Banger of Boroughs",
  24363. height: math.unit(4000, "km")
  24364. },
  24365. {
  24366. name: "Screwer of States",
  24367. height: math.unit(100000, "km")
  24368. },
  24369. {
  24370. name: "Pounder of Planets",
  24371. height: math.unit(2000000, "km")
  24372. },
  24373. ]
  24374. ))
  24375. characterMakers.push(() => makeCharacter(
  24376. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24377. {
  24378. front: {
  24379. height: math.unit(6, "feet"),
  24380. weight: math.unit(150, "lb"),
  24381. name: "Front",
  24382. image: {
  24383. source: "./media/characters/aj/front.svg",
  24384. extra: 2039 / 1562,
  24385. bottom: 40 / 2079
  24386. }
  24387. },
  24388. },
  24389. [
  24390. {
  24391. name: "Normal",
  24392. height: math.unit(11 + 6 / 12, "feet"),
  24393. default: true
  24394. },
  24395. {
  24396. name: "Megamacro",
  24397. height: math.unit(60, "megameters")
  24398. },
  24399. ]
  24400. ))
  24401. characterMakers.push(() => makeCharacter(
  24402. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24403. {
  24404. side: {
  24405. height: math.unit(31 + 8 / 12, "feet"),
  24406. weight: math.unit(75000, "kg"),
  24407. name: "Side",
  24408. image: {
  24409. source: "./media/characters/koros/side.svg",
  24410. extra: 1442 / 1297,
  24411. bottom: 122.7 / 1562
  24412. }
  24413. },
  24414. dicksKingsCrown: {
  24415. height: math.unit(6, "feet"),
  24416. name: "Dicks (King's Crown)",
  24417. image: {
  24418. source: "./media/characters/koros/dicks-kings-crown.svg"
  24419. }
  24420. },
  24421. dicksTailSet: {
  24422. height: math.unit(3, "feet"),
  24423. name: "Dicks (Tail Set)",
  24424. image: {
  24425. source: "./media/characters/koros/dicks-tail-set.svg"
  24426. }
  24427. },
  24428. dickCumming: {
  24429. height: math.unit(7.98, "feet"),
  24430. name: "Dick (Cumming)",
  24431. image: {
  24432. source: "./media/characters/koros/dick-cumming.svg"
  24433. }
  24434. },
  24435. dicksBack: {
  24436. height: math.unit(5.9, "feet"),
  24437. name: "Dicks (Back)",
  24438. image: {
  24439. source: "./media/characters/koros/dicks-back.svg"
  24440. }
  24441. },
  24442. dicksFront: {
  24443. height: math.unit(3.72, "feet"),
  24444. name: "Dicks (Front)",
  24445. image: {
  24446. source: "./media/characters/koros/dicks-front.svg"
  24447. }
  24448. },
  24449. dicksPeeking: {
  24450. height: math.unit(3.0, "feet"),
  24451. name: "Dicks (Peeking)",
  24452. image: {
  24453. source: "./media/characters/koros/dicks-peeking.svg"
  24454. }
  24455. },
  24456. eye: {
  24457. height: math.unit(1.7, "feet"),
  24458. name: "Eye",
  24459. image: {
  24460. source: "./media/characters/koros/eye.svg"
  24461. }
  24462. },
  24463. headFront: {
  24464. height: math.unit(11.69, "feet"),
  24465. name: "Head (Front)",
  24466. image: {
  24467. source: "./media/characters/koros/head-front.svg"
  24468. }
  24469. },
  24470. headSide: {
  24471. height: math.unit(14, "feet"),
  24472. name: "Head (Side)",
  24473. image: {
  24474. source: "./media/characters/koros/head-side.svg"
  24475. }
  24476. },
  24477. leg: {
  24478. height: math.unit(17, "feet"),
  24479. name: "Leg",
  24480. image: {
  24481. source: "./media/characters/koros/leg.svg"
  24482. }
  24483. },
  24484. mawSide: {
  24485. height: math.unit(12.8, "feet"),
  24486. name: "Maw (Side)",
  24487. image: {
  24488. source: "./media/characters/koros/maw-side.svg"
  24489. }
  24490. },
  24491. mawSpitting: {
  24492. height: math.unit(17, "feet"),
  24493. name: "Maw (Spitting)",
  24494. image: {
  24495. source: "./media/characters/koros/maw-spitting.svg"
  24496. }
  24497. },
  24498. slit: {
  24499. height: math.unit(2.8, "feet"),
  24500. name: "Slit",
  24501. image: {
  24502. source: "./media/characters/koros/slit.svg"
  24503. }
  24504. },
  24505. stomach: {
  24506. height: math.unit(6.8, "feet"),
  24507. capacity: math.unit(20, "people"),
  24508. name: "Stomach",
  24509. image: {
  24510. source: "./media/characters/koros/stomach.svg"
  24511. }
  24512. },
  24513. wingspanBottom: {
  24514. height: math.unit(114, "feet"),
  24515. name: "Wingspan (Bottom)",
  24516. image: {
  24517. source: "./media/characters/koros/wingspan-bottom.svg"
  24518. }
  24519. },
  24520. wingspanTop: {
  24521. height: math.unit(104, "feet"),
  24522. name: "Wingspan (Top)",
  24523. image: {
  24524. source: "./media/characters/koros/wingspan-top.svg"
  24525. }
  24526. },
  24527. },
  24528. [
  24529. {
  24530. name: "Normal",
  24531. height: math.unit(31 + 8 / 12, "feet"),
  24532. default: true
  24533. },
  24534. ]
  24535. ))
  24536. characterMakers.push(() => makeCharacter(
  24537. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24538. {
  24539. front: {
  24540. height: math.unit(18 + 5 / 12, "feet"),
  24541. weight: math.unit(3750, "kg"),
  24542. name: "Front",
  24543. image: {
  24544. source: "./media/characters/vexx/front.svg",
  24545. extra: 426 / 396,
  24546. bottom: 31.5 / 458
  24547. }
  24548. },
  24549. maw: {
  24550. height: math.unit(6, "feet"),
  24551. name: "Maw",
  24552. image: {
  24553. source: "./media/characters/vexx/maw.svg"
  24554. }
  24555. },
  24556. },
  24557. [
  24558. {
  24559. name: "Normal",
  24560. height: math.unit(18 + 5 / 12, "feet"),
  24561. default: true
  24562. },
  24563. ]
  24564. ))
  24565. characterMakers.push(() => makeCharacter(
  24566. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24567. {
  24568. front: {
  24569. height: math.unit(17 + 6 / 12, "feet"),
  24570. weight: math.unit(150, "lb"),
  24571. name: "Front",
  24572. image: {
  24573. source: "./media/characters/baadra/front.svg",
  24574. extra: 3137 / 2890,
  24575. bottom: 168.4 / 3305
  24576. }
  24577. },
  24578. back: {
  24579. height: math.unit(17 + 6 / 12, "feet"),
  24580. weight: math.unit(150, "lb"),
  24581. name: "Back",
  24582. image: {
  24583. source: "./media/characters/baadra/back.svg",
  24584. extra: 3142 / 2890,
  24585. bottom: 220 / 3371
  24586. }
  24587. },
  24588. head: {
  24589. height: math.unit(5.45, "feet"),
  24590. name: "Head",
  24591. image: {
  24592. source: "./media/characters/baadra/head.svg"
  24593. }
  24594. },
  24595. headAngry: {
  24596. height: math.unit(4.95, "feet"),
  24597. name: "Head (Angry)",
  24598. image: {
  24599. source: "./media/characters/baadra/head-angry.svg"
  24600. }
  24601. },
  24602. headOpen: {
  24603. height: math.unit(6, "feet"),
  24604. name: "Head (Open)",
  24605. image: {
  24606. source: "./media/characters/baadra/head-open.svg"
  24607. }
  24608. },
  24609. },
  24610. [
  24611. {
  24612. name: "Normal",
  24613. height: math.unit(17 + 6 / 12, "feet"),
  24614. default: true
  24615. },
  24616. ]
  24617. ))
  24618. characterMakers.push(() => makeCharacter(
  24619. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24620. {
  24621. front: {
  24622. height: math.unit(7 + 3 / 12, "feet"),
  24623. weight: math.unit(180, "lb"),
  24624. name: "Front",
  24625. image: {
  24626. source: "./media/characters/juri/front.svg",
  24627. extra: 1401 / 1237,
  24628. bottom: 18.5 / 1418
  24629. }
  24630. },
  24631. side: {
  24632. height: math.unit(7 + 3 / 12, "feet"),
  24633. weight: math.unit(180, "lb"),
  24634. name: "Side",
  24635. image: {
  24636. source: "./media/characters/juri/side.svg",
  24637. extra: 1424 / 1242,
  24638. bottom: 18.5 / 1447
  24639. }
  24640. },
  24641. sitting: {
  24642. height: math.unit(6, "feet"),
  24643. weight: math.unit(180, "lb"),
  24644. name: "Sitting",
  24645. image: {
  24646. source: "./media/characters/juri/sitting.svg",
  24647. extra: 1270 / 1143,
  24648. bottom: 100 / 1343
  24649. }
  24650. },
  24651. back: {
  24652. height: math.unit(7 + 3 / 12, "feet"),
  24653. weight: math.unit(180, "lb"),
  24654. name: "Back",
  24655. image: {
  24656. source: "./media/characters/juri/back.svg",
  24657. extra: 1377 / 1240,
  24658. bottom: 23.7 / 1405
  24659. }
  24660. },
  24661. maw: {
  24662. height: math.unit(2.8, "feet"),
  24663. name: "Maw",
  24664. image: {
  24665. source: "./media/characters/juri/maw.svg"
  24666. }
  24667. },
  24668. stomach: {
  24669. height: math.unit(0.89, "feet"),
  24670. capacity: math.unit(4, "liters"),
  24671. name: "Stomach",
  24672. image: {
  24673. source: "./media/characters/juri/stomach.svg"
  24674. }
  24675. },
  24676. },
  24677. [
  24678. {
  24679. name: "Normal",
  24680. height: math.unit(7 + 3 / 12, "feet"),
  24681. default: true
  24682. },
  24683. ]
  24684. ))
  24685. characterMakers.push(() => makeCharacter(
  24686. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24687. {
  24688. fox: {
  24689. height: math.unit(5 + 6 / 12, "feet"),
  24690. weight: math.unit(140, "lb"),
  24691. name: "Fox",
  24692. image: {
  24693. source: "./media/characters/maxene-sita/fox.svg",
  24694. extra: 146 / 138,
  24695. bottom: 2.1 / 148.19
  24696. }
  24697. },
  24698. kitsune: {
  24699. height: math.unit(10, "feet"),
  24700. weight: math.unit(800, "lb"),
  24701. name: "Kitsune",
  24702. image: {
  24703. source: "./media/characters/maxene-sita/kitsune.svg",
  24704. extra: 185 / 176,
  24705. bottom: 4.7 / 189.9
  24706. }
  24707. },
  24708. },
  24709. [
  24710. {
  24711. name: "Normal",
  24712. height: math.unit(5 + 6 / 12, "feet"),
  24713. default: true
  24714. },
  24715. ]
  24716. ))
  24717. characterMakers.push(() => makeCharacter(
  24718. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24719. {
  24720. front: {
  24721. height: math.unit(3 + 4 / 12, "feet"),
  24722. weight: math.unit(70, "lb"),
  24723. name: "Front",
  24724. image: {
  24725. source: "./media/characters/maia/front.svg",
  24726. extra: 227 / 219.5,
  24727. bottom: 40 / 267
  24728. }
  24729. },
  24730. back: {
  24731. height: math.unit(3 + 4 / 12, "feet"),
  24732. weight: math.unit(70, "lb"),
  24733. name: "Back",
  24734. image: {
  24735. source: "./media/characters/maia/back.svg",
  24736. extra: 237 / 225
  24737. }
  24738. },
  24739. },
  24740. [
  24741. {
  24742. name: "Normal",
  24743. height: math.unit(3 + 4 / 12, "feet"),
  24744. default: true
  24745. },
  24746. ]
  24747. ))
  24748. characterMakers.push(() => makeCharacter(
  24749. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24750. {
  24751. front: {
  24752. height: math.unit(5 + 10 / 12, "feet"),
  24753. weight: math.unit(197, "lb"),
  24754. name: "Front",
  24755. image: {
  24756. source: "./media/characters/jabaro/front.svg",
  24757. extra: 225 / 216,
  24758. bottom: 5.06 / 230
  24759. }
  24760. },
  24761. back: {
  24762. height: math.unit(5 + 10 / 12, "feet"),
  24763. weight: math.unit(197, "lb"),
  24764. name: "Back",
  24765. image: {
  24766. source: "./media/characters/jabaro/back.svg",
  24767. extra: 225 / 219,
  24768. bottom: 1.9 / 227
  24769. }
  24770. },
  24771. },
  24772. [
  24773. {
  24774. name: "Normal",
  24775. height: math.unit(5 + 10 / 12, "feet"),
  24776. default: true
  24777. },
  24778. ]
  24779. ))
  24780. characterMakers.push(() => makeCharacter(
  24781. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24782. {
  24783. front: {
  24784. height: math.unit(5 + 8 / 12, "feet"),
  24785. weight: math.unit(139, "lb"),
  24786. name: "Front",
  24787. image: {
  24788. source: "./media/characters/risa/front.svg",
  24789. extra: 270 / 260,
  24790. bottom: 11.2 / 282
  24791. }
  24792. },
  24793. back: {
  24794. height: math.unit(5 + 8 / 12, "feet"),
  24795. weight: math.unit(139, "lb"),
  24796. name: "Back",
  24797. image: {
  24798. source: "./media/characters/risa/back.svg",
  24799. extra: 264 / 255,
  24800. bottom: 4 / 268
  24801. }
  24802. },
  24803. },
  24804. [
  24805. {
  24806. name: "Normal",
  24807. height: math.unit(5 + 8 / 12, "feet"),
  24808. default: true
  24809. },
  24810. ]
  24811. ))
  24812. characterMakers.push(() => makeCharacter(
  24813. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24814. {
  24815. front: {
  24816. height: math.unit(2 + 11 / 12, "feet"),
  24817. weight: math.unit(30, "lb"),
  24818. name: "Front",
  24819. image: {
  24820. source: "./media/characters/weatley/front.svg",
  24821. bottom: 10.7 / 414,
  24822. extra: 403.5 / 362
  24823. }
  24824. },
  24825. back: {
  24826. height: math.unit(2 + 11 / 12, "feet"),
  24827. weight: math.unit(30, "lb"),
  24828. name: "Back",
  24829. image: {
  24830. source: "./media/characters/weatley/back.svg",
  24831. bottom: 10.7 / 414,
  24832. extra: 403.5 / 362
  24833. }
  24834. },
  24835. },
  24836. [
  24837. {
  24838. name: "Normal",
  24839. height: math.unit(2 + 11 / 12, "feet"),
  24840. default: true
  24841. },
  24842. ]
  24843. ))
  24844. characterMakers.push(() => makeCharacter(
  24845. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24846. {
  24847. front: {
  24848. height: math.unit(5 + 2 / 12, "feet"),
  24849. weight: math.unit(50, "kg"),
  24850. name: "Front",
  24851. image: {
  24852. source: "./media/characters/mercury-crescent/front.svg",
  24853. extra: 1088 / 1033,
  24854. bottom: 18.9 / 1109
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Normal",
  24861. height: math.unit(5 + 2 / 12, "feet"),
  24862. default: true
  24863. },
  24864. ]
  24865. ))
  24866. characterMakers.push(() => makeCharacter(
  24867. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24868. {
  24869. front: {
  24870. height: math.unit(2, "feet"),
  24871. weight: math.unit(15, "kg"),
  24872. name: "Front",
  24873. image: {
  24874. source: "./media/characters/diamond-jones/front.svg",
  24875. bottom: 16 / 568
  24876. }
  24877. },
  24878. },
  24879. [
  24880. {
  24881. name: "Normal",
  24882. height: math.unit(2, "feet"),
  24883. default: true
  24884. },
  24885. ]
  24886. ))
  24887. characterMakers.push(() => makeCharacter(
  24888. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24889. {
  24890. front: {
  24891. height: math.unit(3, "feet"),
  24892. weight: math.unit(30, "kg"),
  24893. name: "Front",
  24894. image: {
  24895. source: "./media/characters/sweet-bit/front.svg",
  24896. extra: 675 / 567,
  24897. bottom: 27.7 / 703
  24898. }
  24899. },
  24900. },
  24901. [
  24902. {
  24903. name: "Normal",
  24904. height: math.unit(3, "feet"),
  24905. default: true
  24906. },
  24907. ]
  24908. ))
  24909. characterMakers.push(() => makeCharacter(
  24910. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24911. {
  24912. side: {
  24913. height: math.unit(9.178, "feet"),
  24914. weight: math.unit(500, "lb"),
  24915. name: "Side",
  24916. image: {
  24917. source: "./media/characters/umbrazen/side.svg",
  24918. extra: 1730 / 1473,
  24919. bottom: 34.6 / 1765
  24920. }
  24921. },
  24922. },
  24923. [
  24924. {
  24925. name: "Normal",
  24926. height: math.unit(9.178, "feet"),
  24927. default: true
  24928. },
  24929. ]
  24930. ))
  24931. characterMakers.push(() => makeCharacter(
  24932. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24933. {
  24934. front: {
  24935. height: math.unit(10, "feet"),
  24936. weight: math.unit(750, "lb"),
  24937. name: "Front",
  24938. image: {
  24939. source: "./media/characters/arlist/front.svg",
  24940. extra: 961 / 778,
  24941. bottom: 6.2 / 986
  24942. }
  24943. },
  24944. },
  24945. [
  24946. {
  24947. name: "Normal",
  24948. height: math.unit(10, "feet"),
  24949. default: true
  24950. },
  24951. ]
  24952. ))
  24953. characterMakers.push(() => makeCharacter(
  24954. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24955. {
  24956. front: {
  24957. height: math.unit(5 + 1 / 12, "feet"),
  24958. weight: math.unit(110, "lb"),
  24959. name: "Front",
  24960. image: {
  24961. source: "./media/characters/aradel/front.svg",
  24962. extra: 324 / 303,
  24963. bottom: 3.6 / 329.4
  24964. }
  24965. },
  24966. },
  24967. [
  24968. {
  24969. name: "Normal",
  24970. height: math.unit(5 + 1 / 12, "feet"),
  24971. default: true
  24972. },
  24973. ]
  24974. ))
  24975. characterMakers.push(() => makeCharacter(
  24976. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24977. {
  24978. front: {
  24979. height: math.unit(3 + 8 / 12, "feet"),
  24980. weight: math.unit(50, "lb"),
  24981. name: "Front",
  24982. image: {
  24983. source: "./media/characters/serryn/front.svg",
  24984. extra: 1792 / 1656,
  24985. bottom: 43.5 / 1840
  24986. }
  24987. },
  24988. },
  24989. [
  24990. {
  24991. name: "Normal",
  24992. height: math.unit(3 + 8 / 12, "feet"),
  24993. default: true
  24994. },
  24995. ]
  24996. ))
  24997. characterMakers.push(() => makeCharacter(
  24998. { name: "Xavier Thyme" },
  24999. {
  25000. front: {
  25001. height: math.unit(7 + 10 / 12, "feet"),
  25002. weight: math.unit(255, "lb"),
  25003. name: "Front",
  25004. image: {
  25005. source: "./media/characters/xavier-thyme/front.svg",
  25006. extra: 3733 / 3642,
  25007. bottom: 131 / 3869
  25008. }
  25009. },
  25010. frontRaven: {
  25011. height: math.unit(7 + 10 / 12, "feet"),
  25012. weight: math.unit(255, "lb"),
  25013. name: "Front (Raven)",
  25014. image: {
  25015. source: "./media/characters/xavier-thyme/front-raven.svg",
  25016. extra: 4385 / 3642,
  25017. bottom: 131 / 4517
  25018. }
  25019. },
  25020. },
  25021. [
  25022. {
  25023. name: "Normal",
  25024. height: math.unit(7 + 10 / 12, "feet"),
  25025. default: true
  25026. },
  25027. ]
  25028. ))
  25029. characterMakers.push(() => makeCharacter(
  25030. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25031. {
  25032. front: {
  25033. height: math.unit(1.6, "m"),
  25034. weight: math.unit(50, "kg"),
  25035. name: "Front",
  25036. image: {
  25037. source: "./media/characters/kiki/front.svg",
  25038. extra: 4682 / 3610,
  25039. bottom: 115 / 4777
  25040. }
  25041. },
  25042. },
  25043. [
  25044. {
  25045. name: "Normal",
  25046. height: math.unit(1.6, "meters"),
  25047. default: true
  25048. },
  25049. ]
  25050. ))
  25051. characterMakers.push(() => makeCharacter(
  25052. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25053. {
  25054. front: {
  25055. height: math.unit(50, "m"),
  25056. weight: math.unit(500, "tonnes"),
  25057. name: "Front",
  25058. image: {
  25059. source: "./media/characters/ryoko/front.svg",
  25060. extra: 4632 / 3926,
  25061. bottom: 193 / 4823
  25062. }
  25063. },
  25064. },
  25065. [
  25066. {
  25067. name: "Normal",
  25068. height: math.unit(50, "meters"),
  25069. default: true
  25070. },
  25071. ]
  25072. ))
  25073. characterMakers.push(() => makeCharacter(
  25074. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25075. {
  25076. front: {
  25077. height: math.unit(30, "m"),
  25078. weight: math.unit(22, "tonnes"),
  25079. name: "Front",
  25080. image: {
  25081. source: "./media/characters/elio/front.svg",
  25082. extra: 4582 / 3720,
  25083. bottom: 236 / 4828
  25084. }
  25085. },
  25086. },
  25087. [
  25088. {
  25089. name: "Normal",
  25090. height: math.unit(30, "meters"),
  25091. default: true
  25092. },
  25093. ]
  25094. ))
  25095. characterMakers.push(() => makeCharacter(
  25096. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25097. {
  25098. front: {
  25099. height: math.unit(6 + 3 / 12, "feet"),
  25100. weight: math.unit(120, "lb"),
  25101. name: "Front",
  25102. image: {
  25103. source: "./media/characters/azura/front.svg",
  25104. extra: 1149 / 1135,
  25105. bottom: 45 / 1194
  25106. }
  25107. },
  25108. frontClothed: {
  25109. height: math.unit(6 + 3 / 12, "feet"),
  25110. weight: math.unit(120, "lb"),
  25111. name: "Front (Clothed)",
  25112. image: {
  25113. source: "./media/characters/azura/front-clothed.svg",
  25114. extra: 1149 / 1135,
  25115. bottom: 45 / 1194
  25116. }
  25117. },
  25118. },
  25119. [
  25120. {
  25121. name: "Normal",
  25122. height: math.unit(6 + 3 / 12, "feet"),
  25123. default: true
  25124. },
  25125. {
  25126. name: "Macro",
  25127. height: math.unit(20 + 6 / 12, "feet")
  25128. },
  25129. {
  25130. name: "Megamacro",
  25131. height: math.unit(12, "miles")
  25132. },
  25133. {
  25134. name: "Gigamacro",
  25135. height: math.unit(10000, "miles")
  25136. },
  25137. {
  25138. name: "Teramacro",
  25139. height: math.unit(900000, "miles")
  25140. },
  25141. ]
  25142. ))
  25143. characterMakers.push(() => makeCharacter(
  25144. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25145. {
  25146. front: {
  25147. height: math.unit(12, "feet"),
  25148. weight: math.unit(1, "ton"),
  25149. capacity: math.unit(660000, "gallons"),
  25150. name: "Front",
  25151. image: {
  25152. source: "./media/characters/zeus/front.svg",
  25153. extra: 5005 / 4717,
  25154. bottom: 363 / 5388
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Normal",
  25161. height: math.unit(12, "feet")
  25162. },
  25163. {
  25164. name: "Preferred Size",
  25165. height: math.unit(0.5, "miles"),
  25166. default: true
  25167. },
  25168. {
  25169. name: "Giga Horse",
  25170. height: math.unit(300, "miles")
  25171. },
  25172. {
  25173. name: "Riding Planets",
  25174. height: math.unit(30, "megameters")
  25175. },
  25176. {
  25177. name: "Cosmic Giant",
  25178. height: math.unit(3, "zettameters")
  25179. },
  25180. {
  25181. name: "Breeding God",
  25182. height: math.unit(9.92e22, "yottameters")
  25183. },
  25184. ]
  25185. ))
  25186. characterMakers.push(() => makeCharacter(
  25187. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25188. {
  25189. side: {
  25190. height: math.unit(9, "feet"),
  25191. weight: math.unit(1500, "kg"),
  25192. name: "Side",
  25193. image: {
  25194. source: "./media/characters/fang/side.svg",
  25195. extra: 924 / 866,
  25196. bottom: 47.5 / 972.3
  25197. }
  25198. },
  25199. },
  25200. [
  25201. {
  25202. name: "Normal",
  25203. height: math.unit(9, "feet"),
  25204. default: true
  25205. },
  25206. {
  25207. name: "Macro",
  25208. height: math.unit(75 + 6 / 12, "feet")
  25209. },
  25210. {
  25211. name: "Teramacro",
  25212. height: math.unit(50000, "miles")
  25213. },
  25214. ]
  25215. ))
  25216. characterMakers.push(() => makeCharacter(
  25217. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25218. {
  25219. front: {
  25220. height: math.unit(10, "feet"),
  25221. weight: math.unit(2, "tons"),
  25222. name: "Front",
  25223. image: {
  25224. source: "./media/characters/rekhit/front.svg",
  25225. extra: 2796 / 2590,
  25226. bottom: 225 / 3022
  25227. }
  25228. },
  25229. },
  25230. [
  25231. {
  25232. name: "Normal",
  25233. height: math.unit(10, "feet"),
  25234. default: true
  25235. },
  25236. {
  25237. name: "Macro",
  25238. height: math.unit(500, "feet")
  25239. },
  25240. ]
  25241. ))
  25242. characterMakers.push(() => makeCharacter(
  25243. { name: "Dahlia Verrick" },
  25244. {
  25245. front: {
  25246. height: math.unit(7 + 6.451 / 12, "feet"),
  25247. weight: math.unit(310, "lb"),
  25248. name: "Front",
  25249. image: {
  25250. source: "./media/characters/dahlia-verrick/front.svg",
  25251. extra: 1488 / 1365,
  25252. bottom: 6.2 / 1495
  25253. }
  25254. },
  25255. back: {
  25256. height: math.unit(7 + 6.451 / 12, "feet"),
  25257. weight: math.unit(310, "lb"),
  25258. name: "Back",
  25259. image: {
  25260. source: "./media/characters/dahlia-verrick/back.svg",
  25261. extra: 1472 / 1351,
  25262. bottom: 5.28 / 1477
  25263. }
  25264. },
  25265. frontBusiness: {
  25266. height: math.unit(7 + 6.451 / 12, "feet"),
  25267. weight: math.unit(200, "lb"),
  25268. name: "Front (Business)",
  25269. image: {
  25270. source: "./media/characters/dahlia-verrick/front-business.svg",
  25271. extra: 1478 / 1381,
  25272. bottom: 5.5 / 1484
  25273. }
  25274. },
  25275. frontCasual: {
  25276. height: math.unit(7 + 6.451 / 12, "feet"),
  25277. weight: math.unit(200, "lb"),
  25278. name: "Front (Casual)",
  25279. image: {
  25280. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25281. extra: 1478 / 1381,
  25282. bottom: 5.5 / 1484
  25283. }
  25284. },
  25285. },
  25286. [
  25287. {
  25288. name: "Travel-Sized",
  25289. height: math.unit(7.45, "inches")
  25290. },
  25291. {
  25292. name: "Normal",
  25293. height: math.unit(7 + 6.451 / 12, "feet"),
  25294. default: true
  25295. },
  25296. {
  25297. name: "Hitting the Town",
  25298. height: math.unit(37 + 8 / 12, "feet")
  25299. },
  25300. {
  25301. name: "Stomp in the Suburbs",
  25302. height: math.unit(964 + 9.728 / 12, "feet")
  25303. },
  25304. {
  25305. name: "Sit on the City",
  25306. height: math.unit(61747 + 10.592 / 12, "feet")
  25307. },
  25308. {
  25309. name: "Glomp the Globe",
  25310. height: math.unit(252919327 + 4.832 / 12, "feet")
  25311. },
  25312. ]
  25313. ))
  25314. characterMakers.push(() => makeCharacter(
  25315. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25316. {
  25317. front: {
  25318. height: math.unit(6 + 4 / 12, "feet"),
  25319. weight: math.unit(320, "lb"),
  25320. name: "Front",
  25321. image: {
  25322. source: "./media/characters/balina-mahigan/front.svg",
  25323. extra: 447 / 428,
  25324. bottom: 18 / 466
  25325. }
  25326. },
  25327. back: {
  25328. height: math.unit(6 + 4 / 12, "feet"),
  25329. weight: math.unit(320, "lb"),
  25330. name: "Back",
  25331. image: {
  25332. source: "./media/characters/balina-mahigan/back.svg",
  25333. extra: 445 / 428,
  25334. bottom: 4.07 / 448
  25335. }
  25336. },
  25337. arm: {
  25338. height: math.unit(1.88, "feet"),
  25339. name: "Arm",
  25340. image: {
  25341. source: "./media/characters/balina-mahigan/arm.svg"
  25342. }
  25343. },
  25344. backPort: {
  25345. height: math.unit(0.685, "feet"),
  25346. name: "Back Port",
  25347. image: {
  25348. source: "./media/characters/balina-mahigan/back-port.svg"
  25349. }
  25350. },
  25351. hoofpaw: {
  25352. height: math.unit(1.41, "feet"),
  25353. name: "Hoofpaw",
  25354. image: {
  25355. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25356. }
  25357. },
  25358. leftHandBack: {
  25359. height: math.unit(0.938, "feet"),
  25360. name: "Left Hand (Back)",
  25361. image: {
  25362. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25363. }
  25364. },
  25365. leftHandFront: {
  25366. height: math.unit(0.938, "feet"),
  25367. name: "Left Hand (Front)",
  25368. image: {
  25369. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25370. }
  25371. },
  25372. rightHandBack: {
  25373. height: math.unit(0.95, "feet"),
  25374. name: "Right Hand (Back)",
  25375. image: {
  25376. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25377. }
  25378. },
  25379. rightHandFront: {
  25380. height: math.unit(0.95, "feet"),
  25381. name: "Right Hand (Front)",
  25382. image: {
  25383. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25384. }
  25385. },
  25386. },
  25387. [
  25388. {
  25389. name: "Normal",
  25390. height: math.unit(6 + 4 / 12, "feet"),
  25391. default: true
  25392. },
  25393. ]
  25394. ))
  25395. characterMakers.push(() => makeCharacter(
  25396. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25397. {
  25398. front: {
  25399. height: math.unit(6, "feet"),
  25400. weight: math.unit(320, "lb"),
  25401. name: "Front",
  25402. image: {
  25403. source: "./media/characters/balina-mejeri/front.svg",
  25404. extra: 517 / 488,
  25405. bottom: 44.2 / 561
  25406. }
  25407. },
  25408. },
  25409. [
  25410. {
  25411. name: "Normal",
  25412. height: math.unit(6 + 4 / 12, "feet")
  25413. },
  25414. {
  25415. name: "Business",
  25416. height: math.unit(155, "feet"),
  25417. default: true
  25418. },
  25419. ]
  25420. ))
  25421. characterMakers.push(() => makeCharacter(
  25422. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25423. {
  25424. kneeling: {
  25425. height: math.unit(6 + 4 / 12, "feet"),
  25426. weight: math.unit(300 * 20, "lb"),
  25427. name: "Kneeling",
  25428. image: {
  25429. source: "./media/characters/balbarian/kneeling.svg",
  25430. extra: 922 / 862,
  25431. bottom: 42.4 / 965
  25432. }
  25433. },
  25434. },
  25435. [
  25436. {
  25437. name: "Normal",
  25438. height: math.unit(6 + 4 / 12, "feet")
  25439. },
  25440. {
  25441. name: "Treasured",
  25442. height: math.unit(18 + 9 / 12, "feet"),
  25443. default: true
  25444. },
  25445. {
  25446. name: "Macro",
  25447. height: math.unit(900, "feet")
  25448. },
  25449. ]
  25450. ))
  25451. characterMakers.push(() => makeCharacter(
  25452. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25453. {
  25454. front: {
  25455. height: math.unit(6 + 4 / 12, "feet"),
  25456. weight: math.unit(325, "lb"),
  25457. name: "Front",
  25458. image: {
  25459. source: "./media/characters/balina-amarini/front.svg",
  25460. extra: 415 / 403,
  25461. bottom: 19 / 433.4
  25462. }
  25463. },
  25464. back: {
  25465. height: math.unit(6 + 4 / 12, "feet"),
  25466. weight: math.unit(325, "lb"),
  25467. name: "Back",
  25468. image: {
  25469. source: "./media/characters/balina-amarini/back.svg",
  25470. extra: 415 / 403,
  25471. bottom: 13.5 / 432
  25472. }
  25473. },
  25474. overdrive: {
  25475. height: math.unit(6 + 4 / 12, "feet"),
  25476. weight: math.unit(400, "lb"),
  25477. name: "Overdrive",
  25478. image: {
  25479. source: "./media/characters/balina-amarini/overdrive.svg",
  25480. extra: 269 / 259,
  25481. bottom: 12 / 282
  25482. }
  25483. },
  25484. },
  25485. [
  25486. {
  25487. name: "Boom",
  25488. height: math.unit(9 + 10 / 12, "feet"),
  25489. default: true
  25490. },
  25491. {
  25492. name: "Macro",
  25493. height: math.unit(280, "feet")
  25494. },
  25495. ]
  25496. ))
  25497. characterMakers.push(() => makeCharacter(
  25498. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25499. {
  25500. goddess: {
  25501. height: math.unit(600, "feet"),
  25502. weight: math.unit(2000000, "tons"),
  25503. name: "Goddess",
  25504. image: {
  25505. source: "./media/characters/lady-kubwa/goddess.svg",
  25506. extra: 1240.5 / 1223,
  25507. bottom: 22 / 1263
  25508. }
  25509. },
  25510. goddesser: {
  25511. height: math.unit(900, "feet"),
  25512. weight: math.unit(20000000, "lb"),
  25513. name: "Goddess-er",
  25514. image: {
  25515. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25516. extra: 899 / 888,
  25517. bottom: 12.6 / 912
  25518. }
  25519. },
  25520. },
  25521. [
  25522. {
  25523. name: "Macro",
  25524. height: math.unit(600, "feet"),
  25525. default: true
  25526. },
  25527. {
  25528. name: "Megamacro",
  25529. height: math.unit(250, "miles")
  25530. },
  25531. ]
  25532. ))
  25533. characterMakers.push(() => makeCharacter(
  25534. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25535. {
  25536. front: {
  25537. height: math.unit(7 + 7 / 12, "feet"),
  25538. weight: math.unit(250, "lb"),
  25539. name: "Front",
  25540. image: {
  25541. source: "./media/characters/tala-grovehorn/front.svg",
  25542. extra: 2636 / 2525,
  25543. bottom: 147 / 2781
  25544. }
  25545. },
  25546. back: {
  25547. height: math.unit(7 + 7 / 12, "feet"),
  25548. weight: math.unit(250, "lb"),
  25549. name: "Back",
  25550. image: {
  25551. source: "./media/characters/tala-grovehorn/back.svg",
  25552. extra: 2635 / 2539,
  25553. bottom: 100 / 2732.8
  25554. }
  25555. },
  25556. mouth: {
  25557. height: math.unit(1.15, "feet"),
  25558. name: "Mouth",
  25559. image: {
  25560. source: "./media/characters/tala-grovehorn/mouth.svg"
  25561. }
  25562. },
  25563. dick: {
  25564. height: math.unit(2.36, "feet"),
  25565. name: "Dick",
  25566. image: {
  25567. source: "./media/characters/tala-grovehorn/dick.svg"
  25568. }
  25569. },
  25570. slit: {
  25571. height: math.unit(0.61, "feet"),
  25572. name: "Slit",
  25573. image: {
  25574. source: "./media/characters/tala-grovehorn/slit.svg"
  25575. }
  25576. },
  25577. },
  25578. [
  25579. ]
  25580. ))
  25581. characterMakers.push(() => makeCharacter(
  25582. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25583. {
  25584. front: {
  25585. height: math.unit(7 + 7 / 12, "feet"),
  25586. weight: math.unit(225, "lb"),
  25587. name: "Front",
  25588. image: {
  25589. source: "./media/characters/epona/front.svg",
  25590. extra: 2445 / 2290,
  25591. bottom: 251 / 2696
  25592. }
  25593. },
  25594. back: {
  25595. height: math.unit(7 + 7 / 12, "feet"),
  25596. weight: math.unit(225, "lb"),
  25597. name: "Back",
  25598. image: {
  25599. source: "./media/characters/epona/back.svg",
  25600. extra: 2546 / 2408,
  25601. bottom: 44 / 2589
  25602. }
  25603. },
  25604. genitals: {
  25605. height: math.unit(1.5, "feet"),
  25606. name: "Genitals",
  25607. image: {
  25608. source: "./media/characters/epona/genitals.svg"
  25609. }
  25610. },
  25611. },
  25612. [
  25613. {
  25614. name: "Normal",
  25615. height: math.unit(7 + 7 / 12, "feet")
  25616. },
  25617. ]
  25618. ))
  25619. characterMakers.push(() => makeCharacter(
  25620. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25621. {
  25622. front: {
  25623. height: math.unit(7, "feet"),
  25624. weight: math.unit(518, "lb"),
  25625. name: "Front",
  25626. image: {
  25627. source: "./media/characters/avia-bloodbourn/front.svg",
  25628. extra: 1466 / 1350,
  25629. bottom: 65 / 1527
  25630. }
  25631. },
  25632. },
  25633. [
  25634. ]
  25635. ))
  25636. characterMakers.push(() => makeCharacter(
  25637. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25638. {
  25639. front: {
  25640. height: math.unit(9.35, "feet"),
  25641. weight: math.unit(600, "lb"),
  25642. name: "Front",
  25643. image: {
  25644. source: "./media/characters/amera/front.svg",
  25645. extra: 891 / 818,
  25646. bottom: 30 / 922.7
  25647. }
  25648. },
  25649. back: {
  25650. height: math.unit(9.35, "feet"),
  25651. weight: math.unit(600, "lb"),
  25652. name: "Back",
  25653. image: {
  25654. source: "./media/characters/amera/back.svg",
  25655. extra: 876 / 824,
  25656. bottom: 6.8 / 884
  25657. }
  25658. },
  25659. dick: {
  25660. height: math.unit(2.14, "feet"),
  25661. name: "Dick",
  25662. image: {
  25663. source: "./media/characters/amera/dick.svg"
  25664. }
  25665. },
  25666. },
  25667. [
  25668. {
  25669. name: "Normal",
  25670. height: math.unit(9.35, "feet"),
  25671. default: true
  25672. },
  25673. ]
  25674. ))
  25675. characterMakers.push(() => makeCharacter(
  25676. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25677. {
  25678. kneeling: {
  25679. height: math.unit(3 + 4 / 12, "feet"),
  25680. weight: math.unit(90, "lb"),
  25681. name: "Kneeling",
  25682. image: {
  25683. source: "./media/characters/rosewen/kneeling.svg",
  25684. extra: 1835 / 1571,
  25685. bottom: 27.7 / 1862
  25686. }
  25687. },
  25688. },
  25689. [
  25690. {
  25691. name: "Normal",
  25692. height: math.unit(3 + 4 / 12, "feet"),
  25693. default: true
  25694. },
  25695. ]
  25696. ))
  25697. characterMakers.push(() => makeCharacter(
  25698. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25699. {
  25700. front: {
  25701. height: math.unit(5 + 10 / 12, "feet"),
  25702. weight: math.unit(200, "lb"),
  25703. name: "Front",
  25704. image: {
  25705. source: "./media/characters/sabah/front.svg",
  25706. extra: 849 / 763,
  25707. bottom: 33.9 / 881
  25708. }
  25709. },
  25710. },
  25711. [
  25712. {
  25713. name: "Normal",
  25714. height: math.unit(5 + 10 / 12, "feet"),
  25715. default: true
  25716. },
  25717. ]
  25718. ))
  25719. characterMakers.push(() => makeCharacter(
  25720. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25721. {
  25722. front: {
  25723. height: math.unit(3 + 5 / 12, "feet"),
  25724. weight: math.unit(40, "kg"),
  25725. name: "Front",
  25726. image: {
  25727. source: "./media/characters/purple-flame/front.svg",
  25728. extra: 1577 / 1412,
  25729. bottom: 97 / 1694
  25730. }
  25731. },
  25732. frontDressed: {
  25733. height: math.unit(3 + 5 / 12, "feet"),
  25734. weight: math.unit(40, "kg"),
  25735. name: "Front (Dressed)",
  25736. image: {
  25737. source: "./media/characters/purple-flame/front-dressed.svg",
  25738. extra: 1577 / 1412,
  25739. bottom: 97 / 1694
  25740. }
  25741. },
  25742. headphones: {
  25743. height: math.unit(0.85, "feet"),
  25744. name: "Headphones",
  25745. image: {
  25746. source: "./media/characters/purple-flame/headphones.svg"
  25747. }
  25748. },
  25749. },
  25750. [
  25751. {
  25752. name: "Really Small",
  25753. height: math.unit(5, "cm")
  25754. },
  25755. {
  25756. name: "Micro",
  25757. height: math.unit(1 + 5 / 12, "feet")
  25758. },
  25759. {
  25760. name: "Normal",
  25761. height: math.unit(3 + 5 / 12, "feet"),
  25762. default: true
  25763. },
  25764. {
  25765. name: "Minimacro",
  25766. height: math.unit(125, "feet")
  25767. },
  25768. {
  25769. name: "Macro",
  25770. height: math.unit(0.5, "miles")
  25771. },
  25772. {
  25773. name: "Megamacro",
  25774. height: math.unit(50, "miles")
  25775. },
  25776. {
  25777. name: "Gigantic",
  25778. height: math.unit(750, "miles")
  25779. },
  25780. {
  25781. name: "Planetary",
  25782. height: math.unit(15000, "miles")
  25783. },
  25784. ]
  25785. ))
  25786. characterMakers.push(() => makeCharacter(
  25787. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25788. {
  25789. front: {
  25790. height: math.unit(14, "feet"),
  25791. weight: math.unit(959, "lb"),
  25792. name: "Front",
  25793. image: {
  25794. source: "./media/characters/arsenal/front.svg",
  25795. extra: 2357 / 2157,
  25796. bottom: 93 / 2458
  25797. }
  25798. },
  25799. },
  25800. [
  25801. {
  25802. name: "Normal",
  25803. height: math.unit(14, "feet"),
  25804. default: true
  25805. },
  25806. ]
  25807. ))
  25808. characterMakers.push(() => makeCharacter(
  25809. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25810. {
  25811. front: {
  25812. height: math.unit(6, "feet"),
  25813. weight: math.unit(150, "lb"),
  25814. name: "Front",
  25815. image: {
  25816. source: "./media/characters/adira/front.svg",
  25817. extra: 1078 / 1029,
  25818. bottom: 87 / 1166
  25819. }
  25820. },
  25821. },
  25822. [
  25823. {
  25824. name: "Micro",
  25825. height: math.unit(4, "inches"),
  25826. default: true
  25827. },
  25828. {
  25829. name: "Macro",
  25830. height: math.unit(50, "feet")
  25831. },
  25832. ]
  25833. ))
  25834. characterMakers.push(() => makeCharacter(
  25835. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25836. {
  25837. front: {
  25838. height: math.unit(16, "feet"),
  25839. weight: math.unit(1000, "lb"),
  25840. name: "Front",
  25841. image: {
  25842. source: "./media/characters/grim/front.svg",
  25843. extra: 622 / 614,
  25844. bottom: 18.1 / 642
  25845. }
  25846. },
  25847. back: {
  25848. height: math.unit(16, "feet"),
  25849. weight: math.unit(1000, "lb"),
  25850. name: "Back",
  25851. image: {
  25852. source: "./media/characters/grim/back.svg",
  25853. extra: 610.6 / 602,
  25854. bottom: 40.8 / 652
  25855. }
  25856. },
  25857. hunched: {
  25858. height: math.unit(9.75, "feet"),
  25859. weight: math.unit(1000, "lb"),
  25860. name: "Hunched",
  25861. image: {
  25862. source: "./media/characters/grim/hunched.svg",
  25863. extra: 304 / 297,
  25864. bottom: 35.4 / 394
  25865. }
  25866. },
  25867. },
  25868. [
  25869. {
  25870. name: "Normal",
  25871. height: math.unit(16, "feet"),
  25872. default: true
  25873. },
  25874. ]
  25875. ))
  25876. characterMakers.push(() => makeCharacter(
  25877. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25878. {
  25879. front: {
  25880. height: math.unit(2.3, "meters"),
  25881. weight: math.unit(300, "lb"),
  25882. name: "Front",
  25883. image: {
  25884. source: "./media/characters/sinja/front-sfw.svg",
  25885. extra: 1393 / 1294,
  25886. bottom: 70 / 1463
  25887. }
  25888. },
  25889. frontNsfw: {
  25890. height: math.unit(2.3, "meters"),
  25891. weight: math.unit(300, "lb"),
  25892. name: "Front (NSFW)",
  25893. image: {
  25894. source: "./media/characters/sinja/front-nsfw.svg",
  25895. extra: 1393 / 1294,
  25896. bottom: 70 / 1463
  25897. }
  25898. },
  25899. back: {
  25900. height: math.unit(2.3, "meters"),
  25901. weight: math.unit(300, "lb"),
  25902. name: "Back",
  25903. image: {
  25904. source: "./media/characters/sinja/back.svg",
  25905. extra: 1393 / 1294,
  25906. bottom: 70 / 1463
  25907. }
  25908. },
  25909. head: {
  25910. height: math.unit(1.771, "feet"),
  25911. name: "Head",
  25912. image: {
  25913. source: "./media/characters/sinja/head.svg"
  25914. }
  25915. },
  25916. slit: {
  25917. height: math.unit(0.8, "feet"),
  25918. name: "Slit",
  25919. image: {
  25920. source: "./media/characters/sinja/slit.svg"
  25921. }
  25922. },
  25923. },
  25924. [
  25925. {
  25926. name: "Normal",
  25927. height: math.unit(2.3, "meters")
  25928. },
  25929. {
  25930. name: "Macro",
  25931. height: math.unit(91, "meters"),
  25932. default: true
  25933. },
  25934. {
  25935. name: "Megamacro",
  25936. height: math.unit(91440, "meters")
  25937. },
  25938. {
  25939. name: "Gigamacro",
  25940. height: math.unit(60960000, "meters")
  25941. },
  25942. {
  25943. name: "Teramacro",
  25944. height: math.unit(9144000000, "meters")
  25945. },
  25946. ]
  25947. ))
  25948. characterMakers.push(() => makeCharacter(
  25949. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25950. {
  25951. front: {
  25952. height: math.unit(1.7, "meters"),
  25953. weight: math.unit(130, "lb"),
  25954. name: "Front",
  25955. image: {
  25956. source: "./media/characters/kyu/front.svg",
  25957. extra: 415 / 395,
  25958. bottom: 5 / 420
  25959. }
  25960. },
  25961. head: {
  25962. height: math.unit(1.75, "feet"),
  25963. name: "Head",
  25964. image: {
  25965. source: "./media/characters/kyu/head.svg"
  25966. }
  25967. },
  25968. foot: {
  25969. height: math.unit(0.81, "feet"),
  25970. name: "Foot",
  25971. image: {
  25972. source: "./media/characters/kyu/foot.svg"
  25973. }
  25974. },
  25975. },
  25976. [
  25977. {
  25978. name: "Normal",
  25979. height: math.unit(1.7, "meters")
  25980. },
  25981. {
  25982. name: "Macro",
  25983. height: math.unit(131, "feet"),
  25984. default: true
  25985. },
  25986. {
  25987. name: "Megamacro",
  25988. height: math.unit(91440, "meters")
  25989. },
  25990. {
  25991. name: "Gigamacro",
  25992. height: math.unit(60960000, "meters")
  25993. },
  25994. {
  25995. name: "Teramacro",
  25996. height: math.unit(9144000000, "meters")
  25997. },
  25998. ]
  25999. ))
  26000. characterMakers.push(() => makeCharacter(
  26001. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26002. {
  26003. front: {
  26004. height: math.unit(7 + 1 / 12, "feet"),
  26005. weight: math.unit(250, "lb"),
  26006. name: "Front",
  26007. image: {
  26008. source: "./media/characters/joey/front.svg",
  26009. extra: 1791 / 1537,
  26010. bottom: 28 / 1816
  26011. }
  26012. },
  26013. },
  26014. [
  26015. {
  26016. name: "Micro",
  26017. height: math.unit(3, "inches")
  26018. },
  26019. {
  26020. name: "Normal",
  26021. height: math.unit(7 + 1 / 12, "feet"),
  26022. default: true
  26023. },
  26024. ]
  26025. ))
  26026. characterMakers.push(() => makeCharacter(
  26027. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26028. {
  26029. front: {
  26030. height: math.unit(165, "cm"),
  26031. weight: math.unit(140, "lb"),
  26032. name: "Front",
  26033. image: {
  26034. source: "./media/characters/sam-evans/front.svg",
  26035. extra: 3417 / 3230,
  26036. bottom: 41.3 / 3417
  26037. }
  26038. },
  26039. frontSixTails: {
  26040. height: math.unit(165, "cm"),
  26041. weight: math.unit(140, "lb"),
  26042. name: "Front-six-tails",
  26043. image: {
  26044. source: "./media/characters/sam-evans/front-six-tails.svg",
  26045. extra: 3417 / 3230,
  26046. bottom: 41.3 / 3417
  26047. }
  26048. },
  26049. back: {
  26050. height: math.unit(165, "cm"),
  26051. weight: math.unit(140, "lb"),
  26052. name: "Back",
  26053. image: {
  26054. source: "./media/characters/sam-evans/back.svg",
  26055. extra: 3227 / 3032,
  26056. bottom: 6.8 / 3234
  26057. }
  26058. },
  26059. face: {
  26060. height: math.unit(0.68, "feet"),
  26061. name: "Face",
  26062. image: {
  26063. source: "./media/characters/sam-evans/face.svg"
  26064. }
  26065. },
  26066. },
  26067. [
  26068. {
  26069. name: "Normal",
  26070. height: math.unit(165, "cm"),
  26071. default: true
  26072. },
  26073. {
  26074. name: "Macro",
  26075. height: math.unit(100, "meters")
  26076. },
  26077. {
  26078. name: "Macro+",
  26079. height: math.unit(800, "meters")
  26080. },
  26081. {
  26082. name: "Macro++",
  26083. height: math.unit(3, "km")
  26084. },
  26085. {
  26086. name: "Macro+++",
  26087. height: math.unit(30, "km")
  26088. },
  26089. ]
  26090. ))
  26091. characterMakers.push(() => makeCharacter(
  26092. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26093. {
  26094. front: {
  26095. height: math.unit(10, "feet"),
  26096. weight: math.unit(750, "lb"),
  26097. name: "Front",
  26098. image: {
  26099. source: "./media/characters/juliet-a/front.svg",
  26100. extra: 1766 / 1720,
  26101. bottom: 43 / 1809
  26102. }
  26103. },
  26104. back: {
  26105. height: math.unit(10, "feet"),
  26106. weight: math.unit(750, "lb"),
  26107. name: "Back",
  26108. image: {
  26109. source: "./media/characters/juliet-a/back.svg",
  26110. extra: 1781 / 1734,
  26111. bottom: 35 / 1810,
  26112. }
  26113. },
  26114. },
  26115. [
  26116. {
  26117. name: "Normal",
  26118. height: math.unit(10, "feet"),
  26119. default: true
  26120. },
  26121. {
  26122. name: "Dragon Form",
  26123. height: math.unit(250, "feet")
  26124. },
  26125. {
  26126. name: "Macro",
  26127. height: math.unit(1000, "feet")
  26128. },
  26129. {
  26130. name: "Megamacro",
  26131. height: math.unit(10000, "feet")
  26132. }
  26133. ]
  26134. ))
  26135. characterMakers.push(() => makeCharacter(
  26136. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26137. {
  26138. regular: {
  26139. height: math.unit(7 + 3 / 12, "feet"),
  26140. weight: math.unit(260, "lb"),
  26141. name: "Regular",
  26142. image: {
  26143. source: "./media/characters/wild/regular.svg",
  26144. extra: 97.45 / 92,
  26145. bottom: 6.8 / 104.3
  26146. }
  26147. },
  26148. biggums: {
  26149. height: math.unit(8 + 6 / 12, "feet"),
  26150. weight: math.unit(425, "lb"),
  26151. name: "Biggums",
  26152. image: {
  26153. source: "./media/characters/wild/biggums.svg",
  26154. extra: 97.45 / 92,
  26155. bottom: 7.5 / 132.34
  26156. }
  26157. },
  26158. mawRegular: {
  26159. height: math.unit(1.24, "feet"),
  26160. name: "Maw (Regular)",
  26161. image: {
  26162. source: "./media/characters/wild/maw.svg"
  26163. }
  26164. },
  26165. mawBiggums: {
  26166. height: math.unit(1.47, "feet"),
  26167. name: "Maw (Biggums)",
  26168. image: {
  26169. source: "./media/characters/wild/maw.svg"
  26170. }
  26171. },
  26172. },
  26173. [
  26174. {
  26175. name: "Normal",
  26176. height: math.unit(7 + 3 / 12, "feet"),
  26177. default: true
  26178. },
  26179. ]
  26180. ))
  26181. characterMakers.push(() => makeCharacter(
  26182. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26183. {
  26184. front: {
  26185. height: math.unit(2.5, "meters"),
  26186. weight: math.unit(200, "kg"),
  26187. name: "Front",
  26188. image: {
  26189. source: "./media/characters/vidar/front.svg",
  26190. extra: 2994 / 2795,
  26191. bottom: 56 / 3061
  26192. }
  26193. },
  26194. back: {
  26195. height: math.unit(2.5, "meters"),
  26196. weight: math.unit(200, "kg"),
  26197. name: "Back",
  26198. image: {
  26199. source: "./media/characters/vidar/back.svg",
  26200. extra: 3131 / 2928,
  26201. bottom: 13.5 / 3141.5
  26202. }
  26203. },
  26204. feral: {
  26205. height: math.unit(2.5, "meters"),
  26206. weight: math.unit(2000, "kg"),
  26207. name: "Feral",
  26208. image: {
  26209. source: "./media/characters/vidar/feral.svg",
  26210. extra: 2790 / 1765,
  26211. bottom: 6 / 2796
  26212. }
  26213. },
  26214. },
  26215. [
  26216. {
  26217. name: "Normal",
  26218. height: math.unit(2.5, "meters"),
  26219. default: true
  26220. },
  26221. {
  26222. name: "Macro",
  26223. height: math.unit(100, "meters")
  26224. },
  26225. ]
  26226. ))
  26227. characterMakers.push(() => makeCharacter(
  26228. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26229. {
  26230. front: {
  26231. height: math.unit(5 + 9 / 12, "feet"),
  26232. weight: math.unit(120, "lb"),
  26233. name: "Front",
  26234. image: {
  26235. source: "./media/characters/ash/front.svg",
  26236. extra: 2189 / 1961,
  26237. bottom: 5.2 / 2194
  26238. }
  26239. },
  26240. },
  26241. [
  26242. {
  26243. name: "Normal",
  26244. height: math.unit(5 + 9 / 12, "feet"),
  26245. default: true
  26246. },
  26247. ]
  26248. ))
  26249. characterMakers.push(() => makeCharacter(
  26250. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26251. {
  26252. front: {
  26253. height: math.unit(9, "feet"),
  26254. weight: math.unit(10000, "lb"),
  26255. name: "Front",
  26256. image: {
  26257. source: "./media/characters/gygabite/front.svg",
  26258. bottom: 31.7 / 537.8,
  26259. extra: 505 / 370
  26260. }
  26261. },
  26262. },
  26263. [
  26264. {
  26265. name: "Normal",
  26266. height: math.unit(9, "feet"),
  26267. default: true
  26268. },
  26269. ]
  26270. ))
  26271. characterMakers.push(() => makeCharacter(
  26272. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26273. {
  26274. front: {
  26275. height: math.unit(12, "feet"),
  26276. weight: math.unit(35000, "lb"),
  26277. name: "Front",
  26278. image: {
  26279. source: "./media/characters/p0tat0/front.svg",
  26280. extra: 1065 / 921,
  26281. bottom: 55.7 / 1121.25
  26282. }
  26283. },
  26284. },
  26285. [
  26286. {
  26287. name: "Normal",
  26288. height: math.unit(12, "feet"),
  26289. default: true
  26290. },
  26291. ]
  26292. ))
  26293. characterMakers.push(() => makeCharacter(
  26294. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26295. {
  26296. side: {
  26297. height: math.unit(6.5, "feet"),
  26298. weight: math.unit(800, "lb"),
  26299. name: "Side",
  26300. image: {
  26301. source: "./media/characters/dusk/side.svg",
  26302. extra: 615 / 373,
  26303. bottom: 53 / 664
  26304. }
  26305. },
  26306. sitting: {
  26307. height: math.unit(7, "feet"),
  26308. weight: math.unit(800, "lb"),
  26309. name: "Sitting",
  26310. image: {
  26311. source: "./media/characters/dusk/sitting.svg",
  26312. extra: 753 / 425,
  26313. bottom: 33 / 774
  26314. }
  26315. },
  26316. head: {
  26317. height: math.unit(6.1, "feet"),
  26318. name: "Head",
  26319. image: {
  26320. source: "./media/characters/dusk/head.svg"
  26321. }
  26322. },
  26323. },
  26324. [
  26325. {
  26326. name: "Normal",
  26327. height: math.unit(7, "feet"),
  26328. default: true
  26329. },
  26330. ]
  26331. ))
  26332. characterMakers.push(() => makeCharacter(
  26333. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26334. {
  26335. front: {
  26336. height: math.unit(15, "feet"),
  26337. weight: math.unit(7000, "lb"),
  26338. name: "Front",
  26339. image: {
  26340. source: "./media/characters/jay-direwolf/front.svg",
  26341. extra: 1810 / 1732,
  26342. bottom: 66 / 1892
  26343. }
  26344. },
  26345. },
  26346. [
  26347. {
  26348. name: "Normal",
  26349. height: math.unit(15, "feet"),
  26350. default: true
  26351. },
  26352. ]
  26353. ))
  26354. characterMakers.push(() => makeCharacter(
  26355. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26356. {
  26357. front: {
  26358. height: math.unit(4 + 9 / 12, "feet"),
  26359. weight: math.unit(130, "lb"),
  26360. name: "Front",
  26361. image: {
  26362. source: "./media/characters/anchovie/front.svg",
  26363. extra: 382 / 350,
  26364. bottom: 25 / 409
  26365. }
  26366. },
  26367. back: {
  26368. height: math.unit(4 + 9 / 12, "feet"),
  26369. weight: math.unit(130, "lb"),
  26370. name: "Back",
  26371. image: {
  26372. source: "./media/characters/anchovie/back.svg",
  26373. extra: 385 / 352,
  26374. bottom: 16.6 / 402
  26375. }
  26376. },
  26377. frontDressed: {
  26378. height: math.unit(4 + 9 / 12, "feet"),
  26379. weight: math.unit(130, "lb"),
  26380. name: "Front (Dressed)",
  26381. image: {
  26382. source: "./media/characters/anchovie/front-dressed.svg",
  26383. extra: 382 / 350,
  26384. bottom: 25 / 409
  26385. }
  26386. },
  26387. backDressed: {
  26388. height: math.unit(4 + 9 / 12, "feet"),
  26389. weight: math.unit(130, "lb"),
  26390. name: "Back (Dressed)",
  26391. image: {
  26392. source: "./media/characters/anchovie/back-dressed.svg",
  26393. extra: 385 / 352,
  26394. bottom: 16.6 / 402
  26395. }
  26396. },
  26397. },
  26398. [
  26399. {
  26400. name: "Micro",
  26401. height: math.unit(6.4, "inches")
  26402. },
  26403. {
  26404. name: "Normal",
  26405. height: math.unit(4 + 9 / 12, "feet"),
  26406. default: true
  26407. },
  26408. ]
  26409. ))
  26410. characterMakers.push(() => makeCharacter(
  26411. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26412. {
  26413. front: {
  26414. height: math.unit(2, "meters"),
  26415. weight: math.unit(180, "lb"),
  26416. name: "Front",
  26417. image: {
  26418. source: "./media/characters/acidrenamon/front.svg",
  26419. extra: 987 / 890,
  26420. bottom: 22.8 / 1009
  26421. }
  26422. },
  26423. back: {
  26424. height: math.unit(2, "meters"),
  26425. weight: math.unit(180, "lb"),
  26426. name: "Back",
  26427. image: {
  26428. source: "./media/characters/acidrenamon/back.svg",
  26429. extra: 983 / 891,
  26430. bottom: 8.4 / 992
  26431. }
  26432. },
  26433. head: {
  26434. height: math.unit(1.92, "feet"),
  26435. name: "Head",
  26436. image: {
  26437. source: "./media/characters/acidrenamon/head.svg"
  26438. }
  26439. },
  26440. rump: {
  26441. height: math.unit(1.72, "feet"),
  26442. name: "Rump",
  26443. image: {
  26444. source: "./media/characters/acidrenamon/rump.svg"
  26445. }
  26446. },
  26447. tail: {
  26448. height: math.unit(4.2, "feet"),
  26449. name: "Tail",
  26450. image: {
  26451. source: "./media/characters/acidrenamon/tail.svg"
  26452. }
  26453. },
  26454. },
  26455. [
  26456. {
  26457. name: "Normal",
  26458. height: math.unit(2, "meters"),
  26459. default: true
  26460. },
  26461. {
  26462. name: "Minimacro",
  26463. height: math.unit(7, "meters")
  26464. },
  26465. {
  26466. name: "Macro",
  26467. height: math.unit(200, "meters")
  26468. },
  26469. {
  26470. name: "Gigamacro",
  26471. height: math.unit(0.2, "earths")
  26472. },
  26473. ]
  26474. ))
  26475. characterMakers.push(() => makeCharacter(
  26476. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26477. {
  26478. front: {
  26479. height: math.unit(6, "feet"),
  26480. weight: math.unit(150, "lb"),
  26481. name: "Front",
  26482. image: {
  26483. source: "./media/characters/kenzie-lee/front.svg",
  26484. extra: 1525 / 1465,
  26485. bottom: 45 / 1570
  26486. }
  26487. },
  26488. side: {
  26489. height: math.unit(6, "feet"),
  26490. weight: math.unit(150, "lb"),
  26491. name: "Side",
  26492. image: {
  26493. source: "./media/characters/kenzie-lee/side.svg",
  26494. extra: 5505 / 5383,
  26495. bottom: 60 / 5573
  26496. }
  26497. },
  26498. },
  26499. [
  26500. {
  26501. name: "Normal",
  26502. height: math.unit(152, "feet"),
  26503. default: true
  26504. },
  26505. {
  26506. name: "Megamacro",
  26507. height: math.unit(7, "miles")
  26508. },
  26509. {
  26510. name: "Gigamacro",
  26511. height: math.unit(8000, "miles")
  26512. },
  26513. ]
  26514. ))
  26515. characterMakers.push(() => makeCharacter(
  26516. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26517. {
  26518. side: {
  26519. height: math.unit(6, "feet"),
  26520. weight: math.unit(150, "lb"),
  26521. name: "Side",
  26522. image: {
  26523. source: "./media/characters/withers/side.svg",
  26524. extra: 1830 / 1728,
  26525. bottom: 96 / 1927
  26526. }
  26527. },
  26528. front: {
  26529. height: math.unit(6, "feet"),
  26530. weight: math.unit(150, "lb"),
  26531. name: "Front",
  26532. image: {
  26533. source: "./media/characters/withers/front.svg",
  26534. extra: 1514 / 1438,
  26535. bottom: 118 / 1632
  26536. }
  26537. },
  26538. },
  26539. [
  26540. {
  26541. name: "Normal",
  26542. height: math.unit(6, "feet")
  26543. },
  26544. {
  26545. name: "Macro",
  26546. height: math.unit(50, "feet")
  26547. },
  26548. {
  26549. name: "Megamacro",
  26550. height: math.unit(15, "miles"),
  26551. default: true
  26552. },
  26553. {
  26554. name: "Megamacro+",
  26555. height: math.unit(100, "km")
  26556. },
  26557. {
  26558. name: "Gigamacro",
  26559. height: math.unit(4750, "miles")
  26560. },
  26561. {
  26562. name: "Gigamacro+",
  26563. height: math.unit(32000, "miles")
  26564. },
  26565. ]
  26566. ))
  26567. characterMakers.push(() => makeCharacter(
  26568. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26569. {
  26570. front: {
  26571. height: math.unit(6 + 7 / 12, "feet"),
  26572. weight: math.unit(250, "lb"),
  26573. name: "Front",
  26574. image: {
  26575. source: "./media/characters/nemoskii/front.svg",
  26576. extra: 2270 / 1734,
  26577. bottom: 86 / 2354
  26578. }
  26579. },
  26580. back: {
  26581. height: math.unit(6 + 7 / 12, "feet"),
  26582. weight: math.unit(250, "lb"),
  26583. name: "Back",
  26584. image: {
  26585. source: "./media/characters/nemoskii/back.svg",
  26586. extra: 1845 / 1788,
  26587. bottom: 10.5 / 1852
  26588. }
  26589. },
  26590. head: {
  26591. height: math.unit(1.31, "feet"),
  26592. name: "Head",
  26593. image: {
  26594. source: "./media/characters/nemoskii/head.svg"
  26595. }
  26596. },
  26597. },
  26598. [
  26599. {
  26600. name: "Normal",
  26601. height: math.unit(6 + 7 / 12, "feet"),
  26602. default: true
  26603. },
  26604. ]
  26605. ))
  26606. characterMakers.push(() => makeCharacter(
  26607. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26608. {
  26609. front: {
  26610. height: math.unit(1, "mile"),
  26611. weight: math.unit(265261.9, "lb"),
  26612. name: "Front",
  26613. image: {
  26614. source: "./media/characters/shui/front.svg",
  26615. extra: 1633 / 1564,
  26616. bottom: 91.5 / 1726
  26617. }
  26618. },
  26619. },
  26620. [
  26621. {
  26622. name: "Macro",
  26623. height: math.unit(1, "mile"),
  26624. default: true
  26625. },
  26626. ]
  26627. ))
  26628. characterMakers.push(() => makeCharacter(
  26629. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26630. {
  26631. front: {
  26632. height: math.unit(12 + 6 / 12, "feet"),
  26633. weight: math.unit(1342, "lb"),
  26634. name: "Front",
  26635. image: {
  26636. source: "./media/characters/arokh-takakura/front.svg",
  26637. extra: 1089 / 1043,
  26638. bottom: 77.4 / 1176.7
  26639. }
  26640. },
  26641. back: {
  26642. height: math.unit(12 + 6 / 12, "feet"),
  26643. weight: math.unit(1342, "lb"),
  26644. name: "Back",
  26645. image: {
  26646. source: "./media/characters/arokh-takakura/back.svg",
  26647. extra: 1046 / 1019,
  26648. bottom: 102 / 1150
  26649. }
  26650. },
  26651. },
  26652. [
  26653. {
  26654. name: "Big",
  26655. height: math.unit(12 + 6 / 12, "feet"),
  26656. default: true
  26657. },
  26658. ]
  26659. ))
  26660. characterMakers.push(() => makeCharacter(
  26661. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26662. {
  26663. front: {
  26664. height: math.unit(5 + 6 / 12, "feet"),
  26665. weight: math.unit(150, "lb"),
  26666. name: "Front",
  26667. image: {
  26668. source: "./media/characters/theo/front.svg",
  26669. extra: 1184 / 1131,
  26670. bottom: 7.4 / 1191
  26671. }
  26672. },
  26673. },
  26674. [
  26675. {
  26676. name: "Micro",
  26677. height: math.unit(5, "inches")
  26678. },
  26679. {
  26680. name: "Normal",
  26681. height: math.unit(5 + 6 / 12, "feet"),
  26682. default: true
  26683. },
  26684. ]
  26685. ))
  26686. characterMakers.push(() => makeCharacter(
  26687. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26688. {
  26689. front: {
  26690. height: math.unit(5 + 9 / 12, "feet"),
  26691. weight: math.unit(130, "lb"),
  26692. name: "Front",
  26693. image: {
  26694. source: "./media/characters/cecelia-swift/front.svg",
  26695. extra: 502 / 484,
  26696. bottom: 23 / 523
  26697. }
  26698. },
  26699. back: {
  26700. height: math.unit(5 + 9 / 12, "feet"),
  26701. weight: math.unit(130, "lb"),
  26702. name: "Back",
  26703. image: {
  26704. source: "./media/characters/cecelia-swift/back.svg",
  26705. extra: 499 / 485,
  26706. bottom: 12 / 511
  26707. }
  26708. },
  26709. head: {
  26710. height: math.unit(0.90, "feet"),
  26711. name: "Head",
  26712. image: {
  26713. source: "./media/characters/cecelia-swift/head.svg"
  26714. }
  26715. },
  26716. rump: {
  26717. height: math.unit(1.75, "feet"),
  26718. name: "Rump",
  26719. image: {
  26720. source: "./media/characters/cecelia-swift/rump.svg"
  26721. }
  26722. },
  26723. },
  26724. [
  26725. {
  26726. name: "Normal",
  26727. height: math.unit(5 + 9 / 12, "feet"),
  26728. default: true
  26729. },
  26730. {
  26731. name: "Big",
  26732. height: math.unit(50, "feet")
  26733. },
  26734. {
  26735. name: "Macro",
  26736. height: math.unit(100, "feet")
  26737. },
  26738. {
  26739. name: "Macro+",
  26740. height: math.unit(500, "feet")
  26741. },
  26742. {
  26743. name: "Macro++",
  26744. height: math.unit(1000, "feet")
  26745. },
  26746. ]
  26747. ))
  26748. characterMakers.push(() => makeCharacter(
  26749. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26750. {
  26751. front: {
  26752. height: math.unit(6, "feet"),
  26753. weight: math.unit(150, "lb"),
  26754. name: "Front",
  26755. image: {
  26756. source: "./media/characters/kaunan/front.svg",
  26757. extra: 2890 / 2523,
  26758. bottom: 49 / 2939
  26759. }
  26760. },
  26761. },
  26762. [
  26763. {
  26764. name: "Macro",
  26765. height: math.unit(150, "feet"),
  26766. default: true
  26767. },
  26768. ]
  26769. ))
  26770. characterMakers.push(() => makeCharacter(
  26771. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26772. {
  26773. front: {
  26774. height: math.unit(175, "cm"),
  26775. weight: math.unit(60, "kg"),
  26776. name: "Front",
  26777. image: {
  26778. source: "./media/characters/fei/front.svg",
  26779. extra: 2581 / 2400,
  26780. bottom: 82.2 / 2663
  26781. }
  26782. },
  26783. },
  26784. [
  26785. {
  26786. name: "Mortal",
  26787. height: math.unit(175, "cm")
  26788. },
  26789. {
  26790. name: "Normal",
  26791. height: math.unit(3500, "m"),
  26792. default: true
  26793. },
  26794. {
  26795. name: "Stroll",
  26796. height: math.unit(17.5, "km")
  26797. },
  26798. {
  26799. name: "Showoff",
  26800. height: math.unit(175, "km")
  26801. },
  26802. ]
  26803. ))
  26804. characterMakers.push(() => makeCharacter(
  26805. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26806. {
  26807. front: {
  26808. height: math.unit(7, "feet"),
  26809. weight: math.unit(1000, "kg"),
  26810. name: "Front",
  26811. image: {
  26812. source: "./media/characters/edrax/front.svg",
  26813. extra: 2838 / 2550,
  26814. bottom: 130 / 2968
  26815. }
  26816. },
  26817. },
  26818. [
  26819. {
  26820. name: "Small",
  26821. height: math.unit(7, "feet")
  26822. },
  26823. {
  26824. name: "Normal",
  26825. height: math.unit(1500, "meters")
  26826. },
  26827. {
  26828. name: "Mega",
  26829. height: math.unit(12000000, "km"),
  26830. default: true
  26831. },
  26832. {
  26833. name: "Megamacro",
  26834. height: math.unit(10600000, "lightyears")
  26835. },
  26836. {
  26837. name: "Hypermacro",
  26838. height: math.unit(256, "yottameters")
  26839. },
  26840. ]
  26841. ))
  26842. characterMakers.push(() => makeCharacter(
  26843. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26844. {
  26845. front: {
  26846. height: math.unit(10, "feet"),
  26847. weight: math.unit(750, "lb"),
  26848. name: "Front",
  26849. image: {
  26850. source: "./media/characters/clove/front.svg",
  26851. extra: 2031 / 1860,
  26852. bottom: 47.8 / 2080
  26853. }
  26854. },
  26855. back: {
  26856. height: math.unit(10, "feet"),
  26857. weight: math.unit(750, "lb"),
  26858. name: "Back",
  26859. image: {
  26860. source: "./media/characters/clove/back.svg",
  26861. extra: 2025 / 1859,
  26862. bottom: 46 / 2071
  26863. }
  26864. },
  26865. },
  26866. [
  26867. {
  26868. name: "Normal",
  26869. height: math.unit(10, "feet")
  26870. },
  26871. ]
  26872. ))
  26873. characterMakers.push(() => makeCharacter(
  26874. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26875. {
  26876. front: {
  26877. height: math.unit(4, "feet"),
  26878. weight: math.unit(50, "lb"),
  26879. name: "Front",
  26880. image: {
  26881. source: "./media/characters/alex-rabbit/front.svg",
  26882. extra: 507 / 458,
  26883. bottom: 18.5 / 527
  26884. }
  26885. },
  26886. back: {
  26887. height: math.unit(4, "feet"),
  26888. weight: math.unit(50, "lb"),
  26889. name: "Back",
  26890. image: {
  26891. source: "./media/characters/alex-rabbit/back.svg",
  26892. extra: 502 / 460,
  26893. bottom: 18.9 / 521
  26894. }
  26895. },
  26896. },
  26897. [
  26898. {
  26899. name: "Normal",
  26900. height: math.unit(4, "feet"),
  26901. default: true
  26902. },
  26903. ]
  26904. ))
  26905. characterMakers.push(() => makeCharacter(
  26906. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26907. {
  26908. front: {
  26909. height: math.unit(1 + 3 / 12, "feet"),
  26910. weight: math.unit(80, "lb"),
  26911. name: "Front",
  26912. image: {
  26913. source: "./media/characters/zander-rose/front.svg",
  26914. extra: 916 / 797,
  26915. bottom: 17 / 933
  26916. }
  26917. },
  26918. back: {
  26919. height: math.unit(1 + 3 / 12, "feet"),
  26920. weight: math.unit(80, "lb"),
  26921. name: "Back",
  26922. image: {
  26923. source: "./media/characters/zander-rose/back.svg",
  26924. extra: 903 / 779,
  26925. bottom: 31 / 934
  26926. }
  26927. },
  26928. },
  26929. [
  26930. {
  26931. name: "Normal",
  26932. height: math.unit(1 + 3 / 12, "feet"),
  26933. default: true
  26934. },
  26935. ]
  26936. ))
  26937. characterMakers.push(() => makeCharacter(
  26938. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26939. {
  26940. anthro: {
  26941. height: math.unit(6, "feet"),
  26942. weight: math.unit(150, "lb"),
  26943. name: "Anthro",
  26944. image: {
  26945. source: "./media/characters/razz/anthro.svg",
  26946. extra: 1437 / 1343,
  26947. bottom: 48 / 1485
  26948. }
  26949. },
  26950. feral: {
  26951. height: math.unit(6, "feet"),
  26952. weight: math.unit(150, "lb"),
  26953. name: "Feral",
  26954. image: {
  26955. source: "./media/characters/razz/feral.svg",
  26956. extra: 2569 / 1385,
  26957. bottom: 95 / 2664
  26958. }
  26959. },
  26960. },
  26961. [
  26962. {
  26963. name: "Normal",
  26964. height: math.unit(6, "feet"),
  26965. default: true
  26966. },
  26967. ]
  26968. ))
  26969. characterMakers.push(() => makeCharacter(
  26970. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  26971. {
  26972. front: {
  26973. height: math.unit(9 + 4 / 12, "feet"),
  26974. weight: math.unit(500, "lb"),
  26975. name: "Front",
  26976. image: {
  26977. source: "./media/characters/morrigan/front.svg",
  26978. extra: 2707 / 2579,
  26979. bottom: 156 / 2863
  26980. }
  26981. },
  26982. },
  26983. [
  26984. {
  26985. name: "Normal",
  26986. height: math.unit(9 + 4 / 12, "feet"),
  26987. default: true
  26988. },
  26989. ]
  26990. ))
  26991. characterMakers.push(() => makeCharacter(
  26992. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  26993. {
  26994. front: {
  26995. height: math.unit(5, "stories"),
  26996. weight: math.unit(4000, "lb"),
  26997. name: "Front",
  26998. image: {
  26999. source: "./media/characters/jenene/front.svg",
  27000. extra: 1780 / 1710,
  27001. bottom: 57 / 1837
  27002. }
  27003. },
  27004. },
  27005. [
  27006. {
  27007. name: "Normal",
  27008. height: math.unit(5, "stories"),
  27009. default: true
  27010. },
  27011. ]
  27012. ))
  27013. characterMakers.push(() => makeCharacter(
  27014. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27015. {
  27016. front: {
  27017. height: math.unit(6, "feet"),
  27018. weight: math.unit(150, "lb"),
  27019. name: "Front",
  27020. image: {
  27021. source: "./media/characters/vix-archaser/front.svg",
  27022. extra: 2767 / 2562,
  27023. bottom: 36 / 2803
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Micro",
  27030. height: math.unit(1, "foot")
  27031. },
  27032. {
  27033. name: "Normal",
  27034. height: math.unit(6 + 5 / 12, "feet")
  27035. },
  27036. {
  27037. name: "Minimacro",
  27038. height: math.unit(500, "feet")
  27039. },
  27040. {
  27041. name: "Macro",
  27042. height: math.unit(4, "miles")
  27043. },
  27044. {
  27045. name: "Megamacro",
  27046. height: math.unit(250, "miles"),
  27047. default: true
  27048. },
  27049. {
  27050. name: "Gigamacro",
  27051. height: math.unit(1, "universe")
  27052. },
  27053. {
  27054. name: "Endgame",
  27055. height: math.unit(100, "multiverses")
  27056. }
  27057. ]
  27058. ))
  27059. characterMakers.push(() => makeCharacter(
  27060. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27061. {
  27062. taurSfw: {
  27063. height: math.unit(10, "meters"),
  27064. weight: math.unit(17500, "kg"),
  27065. name: "Taur",
  27066. image: {
  27067. source: "./media/characters/faey/taur-sfw.svg",
  27068. extra: 1200 / 968,
  27069. bottom: 41 / 1241
  27070. }
  27071. },
  27072. chestmaw: {
  27073. height: math.unit(2.01, "meters"),
  27074. name: "Chestmaw",
  27075. image: {
  27076. source: "./media/characters/faey/chestmaw.svg"
  27077. }
  27078. },
  27079. foot: {
  27080. height: math.unit(2.43, "meters"),
  27081. name: "Foot",
  27082. image: {
  27083. source: "./media/characters/faey/foot.svg"
  27084. }
  27085. },
  27086. jaws: {
  27087. height: math.unit(1.66, "meters"),
  27088. name: "Jaws",
  27089. image: {
  27090. source: "./media/characters/faey/jaws.svg"
  27091. }
  27092. },
  27093. tongues: {
  27094. height: math.unit(2.01, "meters"),
  27095. name: "Tongues",
  27096. image: {
  27097. source: "./media/characters/faey/tongues.svg"
  27098. }
  27099. },
  27100. },
  27101. [
  27102. {
  27103. name: "Small",
  27104. height: math.unit(10, "meters"),
  27105. default: true
  27106. },
  27107. {
  27108. name: "Big",
  27109. height: math.unit(500000, "km")
  27110. },
  27111. ]
  27112. ))
  27113. characterMakers.push(() => makeCharacter(
  27114. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27115. {
  27116. front: {
  27117. height: math.unit(7, "feet"),
  27118. weight: math.unit(275, "lb"),
  27119. name: "Front",
  27120. image: {
  27121. source: "./media/characters/roku/front.svg",
  27122. extra: 903 / 878,
  27123. bottom: 37 / 940
  27124. }
  27125. },
  27126. },
  27127. [
  27128. {
  27129. name: "Normal",
  27130. height: math.unit(7, "feet"),
  27131. default: true
  27132. },
  27133. {
  27134. name: "Macro",
  27135. height: math.unit(500, "feet")
  27136. },
  27137. {
  27138. name: "Megamacro",
  27139. height: math.unit(200, "miles")
  27140. },
  27141. ]
  27142. ))
  27143. characterMakers.push(() => makeCharacter(
  27144. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27145. {
  27146. front: {
  27147. height: math.unit(6 + 2 / 12, "feet"),
  27148. weight: math.unit(150, "lb"),
  27149. name: "Front",
  27150. image: {
  27151. source: "./media/characters/lira/front.svg",
  27152. extra: 1727 / 1605,
  27153. bottom: 26 / 1753
  27154. }
  27155. },
  27156. back: {
  27157. height: math.unit(6 + 2 / 12, "feet"),
  27158. weight: math.unit(150, "lb"),
  27159. name: "Back",
  27160. image: {
  27161. source: "./media/characters/lira/back.svg",
  27162. extra: 1713 / 159,
  27163. bottom: 20 / 1733
  27164. }
  27165. },
  27166. hand: {
  27167. height: math.unit(0.75, "feet"),
  27168. name: "Hand",
  27169. image: {
  27170. source: "./media/characters/lira/hand.svg"
  27171. }
  27172. },
  27173. maw: {
  27174. height: math.unit(0.65, "feet"),
  27175. name: "Maw",
  27176. image: {
  27177. source: "./media/characters/lira/maw.svg"
  27178. }
  27179. },
  27180. pawDigi: {
  27181. height: math.unit(1.6, "feet"),
  27182. name: "Paw Digi",
  27183. image: {
  27184. source: "./media/characters/lira/paw-digi.svg"
  27185. }
  27186. },
  27187. pawPlanti: {
  27188. height: math.unit(1.4, "feet"),
  27189. name: "Paw Planti",
  27190. image: {
  27191. source: "./media/characters/lira/paw-planti.svg"
  27192. }
  27193. },
  27194. },
  27195. [
  27196. {
  27197. name: "Normal",
  27198. height: math.unit(6 + 2 / 12, "feet"),
  27199. default: true
  27200. },
  27201. {
  27202. name: "Macro",
  27203. height: math.unit(100, "feet")
  27204. },
  27205. {
  27206. name: "Macro²",
  27207. height: math.unit(1600, "feet")
  27208. },
  27209. {
  27210. name: "Planetary",
  27211. height: math.unit(20, "earths")
  27212. },
  27213. ]
  27214. ))
  27215. characterMakers.push(() => makeCharacter(
  27216. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27217. {
  27218. front: {
  27219. height: math.unit(6, "feet"),
  27220. weight: math.unit(150, "lb"),
  27221. name: "Front",
  27222. image: {
  27223. source: "./media/characters/hadjet/front.svg",
  27224. extra: 1480 / 1346,
  27225. bottom: 26 / 1506
  27226. }
  27227. },
  27228. frontNsfw: {
  27229. height: math.unit(6, "feet"),
  27230. weight: math.unit(150, "lb"),
  27231. name: "Front (NSFW)",
  27232. image: {
  27233. source: "./media/characters/hadjet/front-nsfw.svg",
  27234. extra: 1440 / 1358,
  27235. bottom: 52 / 1492
  27236. }
  27237. },
  27238. },
  27239. [
  27240. {
  27241. name: "Macro",
  27242. height: math.unit(10, "stories"),
  27243. default: true
  27244. },
  27245. {
  27246. name: "Megamacro",
  27247. height: math.unit(1.5, "miles")
  27248. },
  27249. {
  27250. name: "Megamacro+",
  27251. height: math.unit(5, "miles")
  27252. },
  27253. ]
  27254. ))
  27255. characterMakers.push(() => makeCharacter(
  27256. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27257. {
  27258. side: {
  27259. height: math.unit(106, "feet"),
  27260. weight: math.unit(500, "tonnes"),
  27261. name: "Side",
  27262. image: {
  27263. source: "./media/characters/kodran/side.svg",
  27264. extra: 553 / 480,
  27265. bottom: 33 / 586
  27266. }
  27267. },
  27268. front: {
  27269. height: math.unit(132, "feet"),
  27270. weight: math.unit(500, "tonnes"),
  27271. name: "Front",
  27272. image: {
  27273. source: "./media/characters/kodran/front.svg",
  27274. extra: 667 / 643,
  27275. bottom: 42 / 709
  27276. }
  27277. },
  27278. flying: {
  27279. height: math.unit(350, "feet"),
  27280. weight: math.unit(500, "tonnes"),
  27281. name: "Flying",
  27282. image: {
  27283. source: "./media/characters/kodran/flying.svg"
  27284. }
  27285. },
  27286. foot: {
  27287. height: math.unit(33, "feet"),
  27288. name: "Foot",
  27289. image: {
  27290. source: "./media/characters/kodran/foot.svg"
  27291. }
  27292. },
  27293. footFront: {
  27294. height: math.unit(19, "feet"),
  27295. name: "Foot (Front)",
  27296. image: {
  27297. source: "./media/characters/kodran/foot-front.svg",
  27298. extra: 261 / 261,
  27299. bottom: 91 / 352
  27300. }
  27301. },
  27302. headFront: {
  27303. height: math.unit(53, "feet"),
  27304. name: "Head (Front)",
  27305. image: {
  27306. source: "./media/characters/kodran/head-front.svg"
  27307. }
  27308. },
  27309. headSide: {
  27310. height: math.unit(65, "feet"),
  27311. name: "Head (Side)",
  27312. image: {
  27313. source: "./media/characters/kodran/head-side.svg"
  27314. }
  27315. },
  27316. throat: {
  27317. height: math.unit(79, "feet"),
  27318. name: "Throat",
  27319. image: {
  27320. source: "./media/characters/kodran/throat.svg"
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Large",
  27327. height: math.unit(106, "feet"),
  27328. default: true
  27329. },
  27330. ]
  27331. ))
  27332. characterMakers.push(() => makeCharacter(
  27333. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27334. {
  27335. side: {
  27336. height: math.unit(11, "feet"),
  27337. weight: math.unit(150, "lb"),
  27338. name: "Side",
  27339. image: {
  27340. source: "./media/characters/pyxaron/side.svg",
  27341. extra: 305 / 195,
  27342. bottom: 17 / 322
  27343. }
  27344. },
  27345. },
  27346. [
  27347. {
  27348. name: "Normal",
  27349. height: math.unit(11, "feet")
  27350. },
  27351. ]
  27352. ))
  27353. characterMakers.push(() => makeCharacter(
  27354. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27355. {
  27356. front: {
  27357. height: math.unit(6, "feet"),
  27358. weight: math.unit(150, "lb"),
  27359. name: "Front",
  27360. image: {
  27361. source: "./media/characters/meep/front.svg",
  27362. extra: 88 / 80,
  27363. bottom: 6 / 94
  27364. }
  27365. },
  27366. },
  27367. [
  27368. {
  27369. name: "Fun Sized",
  27370. height: math.unit(2, "inches"),
  27371. default: true
  27372. },
  27373. {
  27374. name: "Friend Sized",
  27375. height: math.unit(8, "inches")
  27376. },
  27377. ]
  27378. ))
  27379. characterMakers.push(() => makeCharacter(
  27380. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27381. {
  27382. front: {
  27383. height: math.unit(15, "feet"),
  27384. weight: math.unit(2500, "lb"),
  27385. name: "Front",
  27386. image: {
  27387. source: "./media/characters/holly-rabbit/front.svg",
  27388. extra: 1433 / 1233,
  27389. bottom: 125 / 1558
  27390. }
  27391. },
  27392. dick: {
  27393. height: math.unit(4.6, "feet"),
  27394. name: "Dick",
  27395. image: {
  27396. source: "./media/characters/holly-rabbit/dick.svg"
  27397. }
  27398. },
  27399. },
  27400. [
  27401. {
  27402. name: "Normal",
  27403. height: math.unit(15, "feet"),
  27404. default: true
  27405. },
  27406. {
  27407. name: "Macro",
  27408. height: math.unit(250, "feet")
  27409. },
  27410. {
  27411. name: "Macro+",
  27412. height: math.unit(2500, "feet")
  27413. },
  27414. ]
  27415. ))
  27416. characterMakers.push(() => makeCharacter(
  27417. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27418. {
  27419. front: {
  27420. height: math.unit(3.02, "meters"),
  27421. weight: math.unit(500, "kg"),
  27422. name: "Front",
  27423. image: {
  27424. source: "./media/characters/drena/front.svg",
  27425. extra: 282 / 243,
  27426. bottom: 8 / 290
  27427. }
  27428. },
  27429. side: {
  27430. height: math.unit(3.02, "meters"),
  27431. weight: math.unit(500, "kg"),
  27432. name: "Side",
  27433. image: {
  27434. source: "./media/characters/drena/side.svg",
  27435. extra: 280 / 245,
  27436. bottom: 10 / 290
  27437. }
  27438. },
  27439. back: {
  27440. height: math.unit(3.02, "meters"),
  27441. weight: math.unit(500, "kg"),
  27442. name: "Back",
  27443. image: {
  27444. source: "./media/characters/drena/back.svg",
  27445. extra: 278 / 243,
  27446. bottom: 2 / 280
  27447. }
  27448. },
  27449. foot: {
  27450. height: math.unit(0.75, "meters"),
  27451. name: "Foot",
  27452. image: {
  27453. source: "./media/characters/drena/foot.svg"
  27454. }
  27455. },
  27456. maw: {
  27457. height: math.unit(0.82, "meters"),
  27458. name: "Maw",
  27459. image: {
  27460. source: "./media/characters/drena/maw.svg"
  27461. }
  27462. },
  27463. rump: {
  27464. height: math.unit(0.93, "meters"),
  27465. name: "Rump",
  27466. image: {
  27467. source: "./media/characters/drena/rump.svg"
  27468. }
  27469. },
  27470. },
  27471. [
  27472. {
  27473. name: "Normal",
  27474. height: math.unit(3.02, "meters"),
  27475. default: true
  27476. },
  27477. ]
  27478. ))
  27479. characterMakers.push(() => makeCharacter(
  27480. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27481. {
  27482. front: {
  27483. height: math.unit(6 + 4 / 12, "feet"),
  27484. weight: math.unit(250, "lb"),
  27485. name: "Front",
  27486. image: {
  27487. source: "./media/characters/remmyzilla/front.svg",
  27488. extra: 4033 / 3588,
  27489. bottom: 123 / 4156
  27490. }
  27491. },
  27492. back: {
  27493. height: math.unit(6 + 4 / 12, "feet"),
  27494. weight: math.unit(250, "lb"),
  27495. name: "Back",
  27496. image: {
  27497. source: "./media/characters/remmyzilla/back.svg",
  27498. extra: 2687 / 2555,
  27499. bottom: 48 / 2735
  27500. }
  27501. },
  27502. frontFancy: {
  27503. height: math.unit(6 + 4 / 12, "feet"),
  27504. weight: math.unit(250, "lb"),
  27505. name: "Front (Fancy)",
  27506. image: {
  27507. source: "./media/characters/remmyzilla/front-fancy.svg",
  27508. extra: 4119 / 3419,
  27509. bottom: 237 / 4356
  27510. }
  27511. },
  27512. paw: {
  27513. height: math.unit(1.73, "feet"),
  27514. name: "Paw",
  27515. image: {
  27516. source: "./media/characters/remmyzilla/paw.svg"
  27517. }
  27518. },
  27519. maw: {
  27520. height: math.unit(1.73, "feet"),
  27521. name: "Maw",
  27522. image: {
  27523. source: "./media/characters/remmyzilla/maw.svg"
  27524. }
  27525. },
  27526. },
  27527. [
  27528. {
  27529. name: "Normal",
  27530. height: math.unit(6 + 4 / 12, "feet")
  27531. },
  27532. {
  27533. name: "Minimacro",
  27534. height: math.unit(12 + 8 / 12, "feet")
  27535. },
  27536. {
  27537. name: "Normal",
  27538. height: math.unit(640, "feet"),
  27539. default: true
  27540. },
  27541. {
  27542. name: "Megamacro",
  27543. height: math.unit(6400, "feet")
  27544. },
  27545. {
  27546. name: "Gigamacro",
  27547. height: math.unit(64000, "miles")
  27548. },
  27549. ]
  27550. ))
  27551. characterMakers.push(() => makeCharacter(
  27552. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27553. {
  27554. front: {
  27555. height: math.unit(2.5, "meters"),
  27556. weight: math.unit(300, "lb"),
  27557. name: "Front",
  27558. image: {
  27559. source: "./media/characters/lawrence/front.svg",
  27560. extra: 357 / 335,
  27561. bottom: 30 / 387
  27562. }
  27563. },
  27564. back: {
  27565. height: math.unit(2.5, "meters"),
  27566. weight: math.unit(300, "lb"),
  27567. name: "Back",
  27568. image: {
  27569. source: "./media/characters/lawrence/back.svg",
  27570. extra: 357 / 338,
  27571. bottom: 16 / 373
  27572. }
  27573. },
  27574. head: {
  27575. height: math.unit(0.9, "meter"),
  27576. name: "Head",
  27577. image: {
  27578. source: "./media/characters/lawrence/head.svg"
  27579. }
  27580. },
  27581. maw: {
  27582. height: math.unit(0.7, "meter"),
  27583. name: "Maw",
  27584. image: {
  27585. source: "./media/characters/lawrence/maw.svg"
  27586. }
  27587. },
  27588. footBottom: {
  27589. height: math.unit(0.5, "meter"),
  27590. name: "Foot (Bottom)",
  27591. image: {
  27592. source: "./media/characters/lawrence/foot-bottom.svg"
  27593. }
  27594. },
  27595. footTop: {
  27596. height: math.unit(0.5, "meter"),
  27597. name: "Foot (Top)",
  27598. image: {
  27599. source: "./media/characters/lawrence/foot-top.svg"
  27600. }
  27601. },
  27602. },
  27603. [
  27604. {
  27605. name: "Normal",
  27606. height: math.unit(2.5, "meters"),
  27607. default: true
  27608. },
  27609. {
  27610. name: "Macro",
  27611. height: math.unit(95, "meters")
  27612. },
  27613. {
  27614. name: "Megamacro",
  27615. height: math.unit(150, "km")
  27616. },
  27617. ]
  27618. ))
  27619. characterMakers.push(() => makeCharacter(
  27620. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27621. {
  27622. front: {
  27623. height: math.unit(4.2, "meters"),
  27624. name: "Front",
  27625. image: {
  27626. source: "./media/characters/sydney/front.svg",
  27627. extra: 1323 / 1277,
  27628. bottom: 111 / 1434
  27629. }
  27630. },
  27631. },
  27632. [
  27633. {
  27634. name: "Normal",
  27635. height: math.unit(4.2, "meters")
  27636. },
  27637. ]
  27638. ))
  27639. characterMakers.push(() => makeCharacter(
  27640. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27641. {
  27642. back: {
  27643. height: math.unit(201, "feet"),
  27644. name: "Back",
  27645. image: {
  27646. source: "./media/characters/jessica/back.svg",
  27647. extra: 273 / 259,
  27648. bottom: 7 / 280
  27649. }
  27650. },
  27651. },
  27652. [
  27653. {
  27654. name: "Normal",
  27655. height: math.unit(201, "feet"),
  27656. default: true
  27657. },
  27658. {
  27659. name: "Megamacro",
  27660. height: math.unit(8, "miles")
  27661. },
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27666. {
  27667. side: {
  27668. height: math.unit(320, "cm"),
  27669. name: "Side",
  27670. image: {
  27671. source: "./media/characters/victoria/side.svg",
  27672. extra: 778 / 346,
  27673. bottom: 56 / 834
  27674. }
  27675. },
  27676. maw: {
  27677. height: math.unit(5.9, "feet"),
  27678. name: "Maw",
  27679. image: {
  27680. source: "./media/characters/victoria/maw.svg"
  27681. }
  27682. },
  27683. },
  27684. [
  27685. {
  27686. name: "Normal",
  27687. height: math.unit(320, "cm"),
  27688. default: true
  27689. },
  27690. ]
  27691. ))
  27692. characterMakers.push(() => makeCharacter(
  27693. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27694. {
  27695. front: {
  27696. height: math.unit(5 + 6 / 12, "feet"),
  27697. name: "Front",
  27698. image: {
  27699. source: "./media/characters/cat/front.svg",
  27700. extra: 1374 / 1257,
  27701. bottom: 59 / 1433
  27702. }
  27703. },
  27704. back: {
  27705. height: math.unit(5 + 6 / 12, "feet"),
  27706. name: "Back",
  27707. image: {
  27708. source: "./media/characters/cat/back.svg",
  27709. extra: 1337 / 1226,
  27710. bottom: 34 / 1371
  27711. }
  27712. },
  27713. taur: {
  27714. height: math.unit(7, "feet"),
  27715. name: "Taur",
  27716. image: {
  27717. source: "./media/characters/cat/taur.svg",
  27718. extra: 1345 / 1231,
  27719. bottom: 66 / 1411
  27720. }
  27721. },
  27722. lucario: {
  27723. height: math.unit(4, "feet"),
  27724. name: "Lucario",
  27725. image: {
  27726. source: "./media/characters/cat/lucario.svg",
  27727. extra: 1470 / 1318,
  27728. bottom: 65 / 1535
  27729. }
  27730. },
  27731. megaLucario: {
  27732. height: math.unit(4, "feet"),
  27733. name: "Mega Lucario",
  27734. image: {
  27735. source: "./media/characters/cat/mega-lucario.svg",
  27736. extra: 1515 / 1319,
  27737. bottom: 63 / 1578
  27738. }
  27739. },
  27740. nickit: {
  27741. height: math.unit(2, "feet"),
  27742. name: "Nickit",
  27743. image: {
  27744. source: "./media/characters/cat/nickit.svg",
  27745. extra: 1980 / 1585,
  27746. bottom: 102 / 2082
  27747. }
  27748. },
  27749. lopunnyFront: {
  27750. height: math.unit(5, "feet"),
  27751. name: "Lopunny (Front)",
  27752. image: {
  27753. source: "./media/characters/cat/lopunny-front.svg",
  27754. extra: 1782 / 1469,
  27755. bottom: 38 / 1820
  27756. }
  27757. },
  27758. lopunnyBack: {
  27759. height: math.unit(5, "feet"),
  27760. name: "Lopunny (Back)",
  27761. image: {
  27762. source: "./media/characters/cat/lopunny-back.svg",
  27763. extra: 1660 / 1490,
  27764. bottom: 25 / 1685
  27765. }
  27766. },
  27767. },
  27768. [
  27769. {
  27770. name: "Really small",
  27771. height: math.unit(1, "nm")
  27772. },
  27773. {
  27774. name: "Micro",
  27775. height: math.unit(5, "inches")
  27776. },
  27777. {
  27778. name: "Normal",
  27779. height: math.unit(5 + 6 / 12, "feet"),
  27780. default: true
  27781. },
  27782. {
  27783. name: "Macro",
  27784. height: math.unit(50, "feet")
  27785. },
  27786. {
  27787. name: "Macro+",
  27788. height: math.unit(150, "feet")
  27789. },
  27790. {
  27791. name: "Megamacro",
  27792. height: math.unit(100, "miles")
  27793. },
  27794. ]
  27795. ))
  27796. characterMakers.push(() => makeCharacter(
  27797. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27798. {
  27799. front: {
  27800. height: math.unit(63.4, "meters"),
  27801. weight: math.unit(3.28349e+6, "kilograms"),
  27802. name: "Front",
  27803. image: {
  27804. source: "./media/characters/kirina-violet/front.svg",
  27805. extra: 2812/2725,
  27806. bottom: 0/2812
  27807. }
  27808. },
  27809. back: {
  27810. height: math.unit(63.4, "meters"),
  27811. weight: math.unit(3.28349e+6, "kilograms"),
  27812. name: "Back",
  27813. image: {
  27814. source: "./media/characters/kirina-violet/back.svg",
  27815. extra: 2812/2725,
  27816. bottom: 0/2812
  27817. }
  27818. },
  27819. mouth: {
  27820. height: math.unit(4.35, "meters"),
  27821. name: "Mouth",
  27822. image: {
  27823. source: "./media/characters/kirina-violet/mouth.svg"
  27824. }
  27825. },
  27826. paw: {
  27827. height: math.unit(5.6, "meters"),
  27828. name: "Paw",
  27829. image: {
  27830. source: "./media/characters/kirina-violet/paw.svg"
  27831. }
  27832. },
  27833. tail: {
  27834. height: math.unit(18, "meters"),
  27835. name: "Tail",
  27836. image: {
  27837. source: "./media/characters/kirina-violet/tail.svg"
  27838. }
  27839. },
  27840. },
  27841. [
  27842. {
  27843. name: "Macro",
  27844. height: math.unit(63.4, "meters"),
  27845. default: true
  27846. },
  27847. ]
  27848. ))
  27849. characterMakers.push(() => makeCharacter(
  27850. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  27851. {
  27852. front: {
  27853. height: math.unit(60, "feet"),
  27854. name: "Front",
  27855. image: {
  27856. source: "./media/characters/cat-gigachu/front.svg",
  27857. extra: 1024/780,
  27858. bottom: 23/1047
  27859. }
  27860. },
  27861. back: {
  27862. height: math.unit(60, "feet"),
  27863. name: "Back",
  27864. image: {
  27865. source: "./media/characters/cat-gigachu/back.svg",
  27866. extra: 1024/780,
  27867. bottom: 23/1047
  27868. }
  27869. },
  27870. },
  27871. [
  27872. {
  27873. name: "Dynamax",
  27874. height: math.unit(60, "feet"),
  27875. default: true
  27876. },
  27877. ]
  27878. ))
  27879. characterMakers.push(() => makeCharacter(
  27880. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  27881. {
  27882. front: {
  27883. height: math.unit(6, "feet"),
  27884. weight: math.unit(150, "lb"),
  27885. name: "Front",
  27886. image: {
  27887. source: "./media/characters/sfaiyan/front.svg",
  27888. extra: 999/978,
  27889. bottom: 5/1004
  27890. }
  27891. },
  27892. },
  27893. [
  27894. {
  27895. name: "Normal",
  27896. height: math.unit(1.82, "meters")
  27897. },
  27898. {
  27899. name: "Giant",
  27900. height: math.unit(2.27, "km"),
  27901. default: true
  27902. },
  27903. ]
  27904. ))
  27905. characterMakers.push(() => makeCharacter(
  27906. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  27907. {
  27908. front: {
  27909. height: math.unit(179, "cm"),
  27910. weight: math.unit(100, "kg"),
  27911. name: "Front",
  27912. image: {
  27913. source: "./media/characters/raunehkeli/front.svg",
  27914. extra: 1934/1926,
  27915. bottom: 0/1934
  27916. }
  27917. },
  27918. },
  27919. [
  27920. {
  27921. name: "Normal",
  27922. height: math.unit(179, "cm")
  27923. },
  27924. {
  27925. name: "Maximum",
  27926. height: math.unit(575, "meters"),
  27927. default: true
  27928. },
  27929. ]
  27930. ))
  27931. characterMakers.push(() => makeCharacter(
  27932. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  27933. {
  27934. front: {
  27935. height: math.unit(6, "feet"),
  27936. weight: math.unit(150, "lb"),
  27937. name: "Front",
  27938. image: {
  27939. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  27940. extra: 2625/2518,
  27941. bottom: 60/2685
  27942. }
  27943. },
  27944. },
  27945. [
  27946. {
  27947. name: "Normal",
  27948. height: math.unit(6 + 2/12, "feet"),
  27949. default: true
  27950. },
  27951. {
  27952. name: "Macro",
  27953. height: math.unit(1180, "feet")
  27954. },
  27955. ]
  27956. ))
  27957. characterMakers.push(() => makeCharacter(
  27958. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  27959. {
  27960. front: {
  27961. height: math.unit(5 + 6/12, "feet"),
  27962. weight: math.unit(108, "lb"),
  27963. name: "Front",
  27964. image: {
  27965. source: "./media/characters/lilith-zott/front.svg",
  27966. extra: 2510/2238,
  27967. bottom: 100/2610
  27968. }
  27969. },
  27970. frontDressed: {
  27971. height: math.unit(5 + 6/12, "feet"),
  27972. weight: math.unit(108, "lb"),
  27973. name: "Front (Dressed)",
  27974. image: {
  27975. source: "./media/characters/lilith-zott/front-dressed.svg",
  27976. extra: 2510/2238,
  27977. bottom: 100/2610
  27978. }
  27979. },
  27980. },
  27981. [
  27982. {
  27983. name: "Normal",
  27984. height: math.unit(5 + 6/12, "feet")
  27985. },
  27986. {
  27987. name: "Macro",
  27988. height: math.unit(200, "feet"),
  27989. default: true
  27990. },
  27991. {
  27992. name: "Macro+",
  27993. height: math.unit(1030, "feet")
  27994. },
  27995. ]
  27996. ))
  27997. characterMakers.push(() => makeCharacter(
  27998. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  27999. {
  28000. front: {
  28001. height: math.unit(6, "feet"),
  28002. weight: math.unit(150, "lb"),
  28003. name: "Front",
  28004. image: {
  28005. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28006. extra: 2567/2435,
  28007. bottom: 39/2606
  28008. }
  28009. },
  28010. frontSuper: {
  28011. height: math.unit(6, "feet"),
  28012. name: "Front (Super)",
  28013. image: {
  28014. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28015. extra: 2567/2435,
  28016. bottom: 39/2606
  28017. }
  28018. },
  28019. },
  28020. [
  28021. {
  28022. name: "Normal",
  28023. height: math.unit(5 + 10/12, "feet")
  28024. },
  28025. {
  28026. name: "Macro",
  28027. height: math.unit(220, "feet"),
  28028. default: true
  28029. },
  28030. {
  28031. name: "Macro+",
  28032. height: math.unit(1100, "feet")
  28033. },
  28034. ]
  28035. ))
  28036. characterMakers.push(() => makeCharacter(
  28037. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28038. {
  28039. front: {
  28040. height: math.unit(100, "miles"),
  28041. name: "Front",
  28042. image: {
  28043. source: "./media/characters/sona/front.svg",
  28044. extra: 2433/2201,
  28045. bottom: 53/2486
  28046. }
  28047. },
  28048. foot: {
  28049. height: math.unit(16.1, "miles"),
  28050. name: "Foot",
  28051. image: {
  28052. source: "./media/characters/sona/foot.svg"
  28053. }
  28054. },
  28055. },
  28056. [
  28057. {
  28058. name: "Macro",
  28059. height: math.unit(100, "miles"),
  28060. default: true
  28061. },
  28062. ]
  28063. ))
  28064. characterMakers.push(() => makeCharacter(
  28065. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28066. {
  28067. front: {
  28068. height: math.unit(6, "feet"),
  28069. weight: math.unit(150, "lb"),
  28070. name: "Front",
  28071. image: {
  28072. source: "./media/characters/bailey/front.svg",
  28073. extra: 1778/1724,
  28074. bottom: 30/1808
  28075. }
  28076. },
  28077. },
  28078. [
  28079. {
  28080. name: "Micro",
  28081. height: math.unit(4, "inches")
  28082. },
  28083. {
  28084. name: "Normal",
  28085. height: math.unit(5 + 5/12, "feet"),
  28086. default: true
  28087. },
  28088. {
  28089. name: "Macro",
  28090. height: math.unit(250, "feet")
  28091. },
  28092. {
  28093. name: "Megamacro",
  28094. height: math.unit(100, "miles")
  28095. },
  28096. ]
  28097. ))
  28098. characterMakers.push(() => makeCharacter(
  28099. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28100. {
  28101. front: {
  28102. height: math.unit(5 + 2/12, "feet"),
  28103. weight: math.unit(120, "lb"),
  28104. name: "Front",
  28105. image: {
  28106. source: "./media/characters/snaps/front.svg",
  28107. extra: 2370/2177,
  28108. bottom: 48/2418
  28109. }
  28110. },
  28111. back: {
  28112. height: math.unit(5 + 2/12, "feet"),
  28113. weight: math.unit(120, "lb"),
  28114. name: "Back",
  28115. image: {
  28116. source: "./media/characters/snaps/back.svg",
  28117. extra: 2408/2258,
  28118. bottom: 15/2423
  28119. }
  28120. },
  28121. },
  28122. [
  28123. {
  28124. name: "Micro",
  28125. height: math.unit(9, "inches")
  28126. },
  28127. {
  28128. name: "Normal",
  28129. height: math.unit(5 + 2/12, "feet"),
  28130. default: true
  28131. },
  28132. {
  28133. name: "Mini Macro",
  28134. height: math.unit(10, "feet")
  28135. },
  28136. ]
  28137. ))
  28138. characterMakers.push(() => makeCharacter(
  28139. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28140. {
  28141. front: {
  28142. height: math.unit(1.8, "meters"),
  28143. weight: math.unit(85, "kg"),
  28144. name: "Front",
  28145. image: {
  28146. source: "./media/characters/azteck/front.svg",
  28147. extra: 2815/2625,
  28148. bottom: 89/2904
  28149. }
  28150. },
  28151. back: {
  28152. height: math.unit(1.8, "meters"),
  28153. weight: math.unit(85, "kg"),
  28154. name: "Back",
  28155. image: {
  28156. source: "./media/characters/azteck/back.svg",
  28157. extra: 2856/2648,
  28158. bottom: 85/2941
  28159. }
  28160. },
  28161. frontDressed: {
  28162. height: math.unit(1.8, "meters"),
  28163. weight: math.unit(85, "kg"),
  28164. name: "Front (Dressed)",
  28165. image: {
  28166. source: "./media/characters/azteck/front-dressed.svg",
  28167. extra: 2147/2003,
  28168. bottom: 68/2215
  28169. }
  28170. },
  28171. head: {
  28172. height: math.unit(0.47, "meters"),
  28173. weight: math.unit(85, "kg"),
  28174. name: "Head",
  28175. image: {
  28176. source: "./media/characters/azteck/head.svg"
  28177. }
  28178. },
  28179. },
  28180. [
  28181. {
  28182. name: "Bite sized",
  28183. height: math.unit(16, "cm")
  28184. },
  28185. {
  28186. name: "Normal",
  28187. height: math.unit(1.8, "meters"),
  28188. default: true
  28189. },
  28190. ]
  28191. ))
  28192. characterMakers.push(() => makeCharacter(
  28193. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28194. {
  28195. front: {
  28196. height: math.unit(6, "feet"),
  28197. weight: math.unit(150, "lb"),
  28198. name: "Front",
  28199. image: {
  28200. source: "./media/characters/pidge/front.svg",
  28201. extra: 620/588,
  28202. bottom: 9/629
  28203. }
  28204. },
  28205. back: {
  28206. height: math.unit(6, "feet"),
  28207. weight: math.unit(150, "lb"),
  28208. name: "Back",
  28209. image: {
  28210. source: "./media/characters/pidge/back.svg",
  28211. extra: 620/588,
  28212. bottom: 9/629
  28213. }
  28214. },
  28215. },
  28216. [
  28217. {
  28218. name: "Macro",
  28219. height: math.unit(1, "mile"),
  28220. default: true
  28221. },
  28222. ]
  28223. ))
  28224. characterMakers.push(() => makeCharacter(
  28225. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28226. {
  28227. front: {
  28228. height: math.unit(6, "feet"),
  28229. weight: math.unit(150, "lb"),
  28230. name: "Front",
  28231. image: {
  28232. source: "./media/characters/en/front.svg",
  28233. extra: 1697/1563,
  28234. bottom: 103/1800
  28235. }
  28236. },
  28237. back: {
  28238. height: math.unit(6, "feet"),
  28239. weight: math.unit(150, "lb"),
  28240. name: "Back",
  28241. image: {
  28242. source: "./media/characters/en/back.svg",
  28243. extra: 1700/1570,
  28244. bottom: 51/1751
  28245. }
  28246. },
  28247. frontDressed: {
  28248. height: math.unit(6, "feet"),
  28249. weight: math.unit(150, "lb"),
  28250. name: "Front (Dressed)",
  28251. image: {
  28252. source: "./media/characters/en/front-dressed.svg",
  28253. extra: 1697/1563,
  28254. bottom: 103/1800
  28255. }
  28256. },
  28257. backDressed: {
  28258. height: math.unit(6, "feet"),
  28259. weight: math.unit(150, "lb"),
  28260. name: "Back (Dressed)",
  28261. image: {
  28262. source: "./media/characters/en/back-dressed.svg",
  28263. extra: 1700/1570,
  28264. bottom: 51/1751
  28265. }
  28266. },
  28267. },
  28268. [
  28269. {
  28270. name: "Macro",
  28271. height: math.unit(210, "feet"),
  28272. default: true
  28273. },
  28274. ]
  28275. ))
  28276. characterMakers.push(() => makeCharacter(
  28277. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28278. {
  28279. front: {
  28280. height: math.unit(6, "feet"),
  28281. weight: math.unit(150, "lb"),
  28282. name: "Front",
  28283. image: {
  28284. source: "./media/characters/haze-orris/front.svg",
  28285. extra: 3975/3525,
  28286. bottom: 137/4112
  28287. }
  28288. },
  28289. },
  28290. [
  28291. {
  28292. name: "Micro",
  28293. height: math.unit(150, "mm"),
  28294. default: true
  28295. },
  28296. ]
  28297. ))
  28298. //characters
  28299. function makeCharacters() {
  28300. const results = [];
  28301. characterMakers.forEach(character => {
  28302. results.push(character());
  28303. });
  28304. return results;
  28305. }