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

29631 строка
740 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon", "candy"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. }
  1380. //species
  1381. function getSpeciesInfo(speciesList) {
  1382. let result = new Set();
  1383. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1384. result.add(entry)
  1385. });
  1386. return Array.from(result);
  1387. };
  1388. function getSpeciesInfoHelper(species) {
  1389. if (!speciesData[species]) {
  1390. console.warn(species + " doesn't exist");
  1391. return [];
  1392. }
  1393. if (speciesData[species].parents) {
  1394. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1395. } else {
  1396. return [species];
  1397. }
  1398. }
  1399. characterMakers.push(() => makeCharacter(
  1400. {
  1401. name: "Fen",
  1402. species: ["crux"],
  1403. description: {
  1404. title: "Bio",
  1405. text: "Very furry. Sheds on everything."
  1406. },
  1407. tags: [
  1408. "anthro",
  1409. "goo"
  1410. ]
  1411. },
  1412. {
  1413. back: {
  1414. height: math.unit(2.2428, "meter"),
  1415. weight: math.unit(124.738, "kg"),
  1416. name: "Back",
  1417. image: {
  1418. source: "./media/characters/fen/back.svg",
  1419. extra: 2024 / 1867,
  1420. bottom: 13 / 2037
  1421. },
  1422. info: {
  1423. description: {
  1424. mode: "append",
  1425. text: "\n\nHe is not currently looking at you."
  1426. }
  1427. }
  1428. },
  1429. full: {
  1430. height: math.unit(1.34, "meter"),
  1431. weight: math.unit(225, "kg"),
  1432. name: "Full",
  1433. image: {
  1434. source: "./media/characters/fen/full.svg"
  1435. },
  1436. info: {
  1437. description: {
  1438. mode: "append",
  1439. text: "\n\nMunch."
  1440. }
  1441. }
  1442. },
  1443. kneeling: {
  1444. height: math.unit(5.4, "feet"),
  1445. weight: math.unit(124.738, "kg"),
  1446. name: "Kneeling",
  1447. image: {
  1448. source: "./media/characters/fen/kneeling.svg",
  1449. extra: 563 / 507
  1450. }
  1451. },
  1452. goo: {
  1453. height: math.unit(2.8, "feet"),
  1454. weight: math.unit(125, "kg"),
  1455. capacity: math.unit(1, "people"),
  1456. name: "Goo",
  1457. image: {
  1458. source: "./media/characters/fen/goo.svg",
  1459. bottom: 116 / 613
  1460. }
  1461. },
  1462. lounging: {
  1463. height: math.unit(6.5, "feet"),
  1464. weight: math.unit(125, "kg"),
  1465. name: "Lounging",
  1466. image: {
  1467. source: "./media/characters/fen/lounging.svg"
  1468. }
  1469. },
  1470. },
  1471. [
  1472. {
  1473. name: "Normal",
  1474. height: math.unit(2.2428, "meter")
  1475. },
  1476. {
  1477. name: "Big",
  1478. height: math.unit(12, "feet")
  1479. },
  1480. {
  1481. name: "Minimacro",
  1482. height: math.unit(40, "feet"),
  1483. default: true,
  1484. info: {
  1485. description: {
  1486. mode: "append",
  1487. text: "\n\nTOO DAMN BIG"
  1488. }
  1489. }
  1490. },
  1491. {
  1492. name: "Macro",
  1493. height: math.unit(100, "feet"),
  1494. info: {
  1495. description: {
  1496. mode: "append",
  1497. text: "\n\nTOO DAMN BIG"
  1498. }
  1499. }
  1500. },
  1501. {
  1502. name: "Macro+",
  1503. height: math.unit(300, "feet")
  1504. },
  1505. {
  1506. name: "Megamacro",
  1507. height: math.unit(2, "miles")
  1508. }
  1509. ]
  1510. ))
  1511. characterMakers.push(() => makeCharacter(
  1512. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1513. {
  1514. front: {
  1515. height: math.unit(183, "cm"),
  1516. weight: math.unit(80, "kg"),
  1517. name: "Front",
  1518. image: {
  1519. source: "./media/characters/sofia-fluttertail/front.svg",
  1520. bottom: 0.01,
  1521. extra: 2154 / 2081
  1522. }
  1523. },
  1524. frontAlt: {
  1525. height: math.unit(183, "cm"),
  1526. weight: math.unit(80, "kg"),
  1527. name: "Front (alt)",
  1528. image: {
  1529. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1530. }
  1531. },
  1532. back: {
  1533. height: math.unit(183, "cm"),
  1534. weight: math.unit(80, "kg"),
  1535. name: "Back",
  1536. image: {
  1537. source: "./media/characters/sofia-fluttertail/back.svg"
  1538. }
  1539. },
  1540. kneeling: {
  1541. height: math.unit(125, "cm"),
  1542. weight: math.unit(80, "kg"),
  1543. name: "Kneeling",
  1544. image: {
  1545. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1546. extra: 1033 / 977,
  1547. bottom: 23.7 / 1057
  1548. }
  1549. },
  1550. maw: {
  1551. height: math.unit(183 / 5, "cm"),
  1552. name: "Maw",
  1553. image: {
  1554. source: "./media/characters/sofia-fluttertail/maw.svg"
  1555. }
  1556. },
  1557. mawcloseup: {
  1558. height: math.unit(183 / 5 * 0.41, "cm"),
  1559. name: "Maw (Closeup)",
  1560. image: {
  1561. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1562. }
  1563. },
  1564. },
  1565. [
  1566. {
  1567. name: "Normal",
  1568. height: math.unit(1.83, "meter")
  1569. },
  1570. {
  1571. name: "Size Thief",
  1572. height: math.unit(18, "feet")
  1573. },
  1574. {
  1575. name: "50 Foot Collie",
  1576. height: math.unit(50, "feet")
  1577. },
  1578. {
  1579. name: "Macro",
  1580. height: math.unit(96, "feet"),
  1581. default: true
  1582. },
  1583. {
  1584. name: "Megamerger",
  1585. height: math.unit(650, "feet")
  1586. },
  1587. ]
  1588. ))
  1589. characterMakers.push(() => makeCharacter(
  1590. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1591. {
  1592. front: {
  1593. height: math.unit(7, "feet"),
  1594. weight: math.unit(100, "kg"),
  1595. name: "Front",
  1596. image: {
  1597. source: "./media/characters/march/front.svg",
  1598. extra: 1,
  1599. bottom: 0.015
  1600. }
  1601. },
  1602. foot: {
  1603. height: math.unit(0.9, "feet"),
  1604. name: "Foot",
  1605. image: {
  1606. source: "./media/characters/march/foot.svg"
  1607. }
  1608. },
  1609. },
  1610. [
  1611. {
  1612. name: "Normal",
  1613. height: math.unit(7.9, "feet")
  1614. },
  1615. {
  1616. name: "Macro",
  1617. height: math.unit(220, "meters")
  1618. },
  1619. {
  1620. name: "Megamacro",
  1621. height: math.unit(2.98, "km"),
  1622. default: true
  1623. },
  1624. {
  1625. name: "Gigamacro",
  1626. height: math.unit(15963, "km")
  1627. },
  1628. {
  1629. name: "Teramacro",
  1630. height: math.unit(2980000000, "km")
  1631. },
  1632. {
  1633. name: "Examacro",
  1634. height: math.unit(250, "parsecs")
  1635. },
  1636. ]
  1637. ))
  1638. characterMakers.push(() => makeCharacter(
  1639. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1640. {
  1641. front: {
  1642. height: math.unit(6, "feet"),
  1643. weight: math.unit(60, "kg"),
  1644. name: "Front",
  1645. image: {
  1646. source: "./media/characters/noir/front.svg",
  1647. extra: 1,
  1648. bottom: 0.032
  1649. }
  1650. },
  1651. },
  1652. [
  1653. {
  1654. name: "Normal",
  1655. height: math.unit(6.6, "feet")
  1656. },
  1657. {
  1658. name: "Macro",
  1659. height: math.unit(500, "feet")
  1660. },
  1661. {
  1662. name: "Megamacro",
  1663. height: math.unit(2.5, "km"),
  1664. default: true
  1665. },
  1666. {
  1667. name: "Gigamacro",
  1668. height: math.unit(22500, "km")
  1669. },
  1670. {
  1671. name: "Teramacro",
  1672. height: math.unit(2500000000, "km")
  1673. },
  1674. {
  1675. name: "Examacro",
  1676. height: math.unit(200, "parsecs")
  1677. },
  1678. ]
  1679. ))
  1680. characterMakers.push(() => makeCharacter(
  1681. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1682. {
  1683. front: {
  1684. height: math.unit(7, "feet"),
  1685. weight: math.unit(100, "kg"),
  1686. name: "Front",
  1687. image: {
  1688. source: "./media/characters/okuri/front.svg",
  1689. extra: 1,
  1690. bottom: 0.037
  1691. }
  1692. },
  1693. back: {
  1694. height: math.unit(7, "feet"),
  1695. weight: math.unit(100, "kg"),
  1696. name: "Back",
  1697. image: {
  1698. source: "./media/characters/okuri/back.svg",
  1699. extra: 1,
  1700. bottom: 0.007
  1701. }
  1702. },
  1703. },
  1704. [
  1705. {
  1706. name: "Megamacro",
  1707. height: math.unit(100, "miles"),
  1708. default: true
  1709. },
  1710. ]
  1711. ))
  1712. characterMakers.push(() => makeCharacter(
  1713. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1714. {
  1715. front: {
  1716. height: math.unit(7, "feet"),
  1717. weight: math.unit(100, "kg"),
  1718. name: "Front",
  1719. image: {
  1720. source: "./media/characters/manny/front.svg",
  1721. extra: 1,
  1722. bottom: 0.06
  1723. }
  1724. },
  1725. back: {
  1726. height: math.unit(7, "feet"),
  1727. weight: math.unit(100, "kg"),
  1728. name: "Back",
  1729. image: {
  1730. source: "./media/characters/manny/back.svg",
  1731. extra: 1,
  1732. bottom: 0.014
  1733. }
  1734. },
  1735. },
  1736. [
  1737. {
  1738. name: "Normal",
  1739. height: math.unit(7, "feet"),
  1740. },
  1741. {
  1742. name: "Macro",
  1743. height: math.unit(78, "feet"),
  1744. default: true
  1745. },
  1746. {
  1747. name: "Macro+",
  1748. height: math.unit(300, "meters")
  1749. },
  1750. {
  1751. name: "Macro++",
  1752. height: math.unit(2400, "meters")
  1753. },
  1754. {
  1755. name: "Megamacro",
  1756. height: math.unit(5167, "meters")
  1757. },
  1758. {
  1759. name: "Gigamacro",
  1760. height: math.unit(41769, "miles")
  1761. },
  1762. ]
  1763. ))
  1764. characterMakers.push(() => makeCharacter(
  1765. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1766. {
  1767. front: {
  1768. height: math.unit(7, "feet"),
  1769. weight: math.unit(100, "kg"),
  1770. name: "Front",
  1771. image: {
  1772. source: "./media/characters/adake/front-1.svg"
  1773. }
  1774. },
  1775. frontAlt: {
  1776. height: math.unit(7, "feet"),
  1777. weight: math.unit(100, "kg"),
  1778. name: "Front (Alt)",
  1779. image: {
  1780. source: "./media/characters/adake/front-2.svg",
  1781. extra: 1,
  1782. bottom: 0.01
  1783. }
  1784. },
  1785. back: {
  1786. height: math.unit(7, "feet"),
  1787. weight: math.unit(100, "kg"),
  1788. name: "Back",
  1789. image: {
  1790. source: "./media/characters/adake/back.svg",
  1791. }
  1792. },
  1793. kneel: {
  1794. height: math.unit(5.385, "feet"),
  1795. weight: math.unit(100, "kg"),
  1796. name: "Kneeling",
  1797. image: {
  1798. source: "./media/characters/adake/kneel.svg",
  1799. bottom: 0.052
  1800. }
  1801. },
  1802. },
  1803. [
  1804. {
  1805. name: "Normal",
  1806. height: math.unit(7, "feet"),
  1807. },
  1808. {
  1809. name: "Macro",
  1810. height: math.unit(78, "feet"),
  1811. default: true
  1812. },
  1813. {
  1814. name: "Macro+",
  1815. height: math.unit(300, "meters")
  1816. },
  1817. {
  1818. name: "Macro++",
  1819. height: math.unit(2400, "meters")
  1820. },
  1821. {
  1822. name: "Megamacro",
  1823. height: math.unit(5167, "meters")
  1824. },
  1825. {
  1826. name: "Gigamacro",
  1827. height: math.unit(41769, "miles")
  1828. },
  1829. ]
  1830. ))
  1831. characterMakers.push(() => makeCharacter(
  1832. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1833. {
  1834. front: {
  1835. height: math.unit(1.65, "meters"),
  1836. weight: math.unit(50, "kg"),
  1837. name: "Front",
  1838. image: {
  1839. source: "./media/characters/elijah/front.svg",
  1840. extra: 858 / 830,
  1841. bottom: 95.5 / 953.8559
  1842. }
  1843. },
  1844. back: {
  1845. height: math.unit(1.65, "meters"),
  1846. weight: math.unit(50, "kg"),
  1847. name: "Back",
  1848. image: {
  1849. source: "./media/characters/elijah/back.svg",
  1850. extra: 895 / 850,
  1851. bottom: 5.3 / 897.956
  1852. }
  1853. },
  1854. frontNsfw: {
  1855. height: math.unit(1.65, "meters"),
  1856. weight: math.unit(50, "kg"),
  1857. name: "Front (NSFW)",
  1858. image: {
  1859. source: "./media/characters/elijah/front-nsfw.svg",
  1860. extra: 858 / 830,
  1861. bottom: 95.5 / 953.8559
  1862. }
  1863. },
  1864. backNsfw: {
  1865. height: math.unit(1.65, "meters"),
  1866. weight: math.unit(50, "kg"),
  1867. name: "Back (NSFW)",
  1868. image: {
  1869. source: "./media/characters/elijah/back-nsfw.svg",
  1870. extra: 895 / 850,
  1871. bottom: 5.3 / 897.956
  1872. }
  1873. },
  1874. dick: {
  1875. height: math.unit(1, "feet"),
  1876. name: "Dick",
  1877. image: {
  1878. source: "./media/characters/elijah/dick.svg"
  1879. }
  1880. },
  1881. beakOpen: {
  1882. height: math.unit(1.25, "feet"),
  1883. name: "Beak (Open)",
  1884. image: {
  1885. source: "./media/characters/elijah/beak-open.svg"
  1886. }
  1887. },
  1888. beakShut: {
  1889. height: math.unit(1.25, "feet"),
  1890. name: "Beak (Shut)",
  1891. image: {
  1892. source: "./media/characters/elijah/beak-shut.svg"
  1893. }
  1894. },
  1895. footFlexing: {
  1896. height: math.unit(1.61, "feet"),
  1897. name: "Foot (Flexing)",
  1898. image: {
  1899. source: "./media/characters/elijah/foot-flexing.svg"
  1900. }
  1901. },
  1902. footStepping: {
  1903. height: math.unit(1.44, "feet"),
  1904. name: "Foot (Stepping)",
  1905. image: {
  1906. source: "./media/characters/elijah/foot-stepping.svg"
  1907. }
  1908. },
  1909. plantigradeLeg: {
  1910. height: math.unit(2.34, "feet"),
  1911. name: "Plantigrade Leg",
  1912. image: {
  1913. source: "./media/characters/elijah/plantigrade-leg.svg"
  1914. }
  1915. },
  1916. plantigradeFootLeft: {
  1917. height: math.unit(0.9, "feet"),
  1918. name: "Plantigrade Foot (Left)",
  1919. image: {
  1920. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1921. }
  1922. },
  1923. plantigradeFootRight: {
  1924. height: math.unit(0.9, "feet"),
  1925. name: "Plantigrade Foot (Right)",
  1926. image: {
  1927. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1928. }
  1929. },
  1930. },
  1931. [
  1932. {
  1933. name: "Normal",
  1934. height: math.unit(1.65, "meters")
  1935. },
  1936. {
  1937. name: "Macro",
  1938. height: math.unit(55, "meters"),
  1939. default: true
  1940. },
  1941. {
  1942. name: "Macro+",
  1943. height: math.unit(105, "meters")
  1944. },
  1945. ]
  1946. ))
  1947. characterMakers.push(() => makeCharacter(
  1948. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1949. {
  1950. front: {
  1951. height: math.unit(11, "feet"),
  1952. weight: math.unit(80, "kg"),
  1953. name: "Front",
  1954. image: {
  1955. source: "./media/characters/rai/front.svg",
  1956. extra: 1,
  1957. bottom: 0.03
  1958. }
  1959. },
  1960. side: {
  1961. height: math.unit(11, "feet"),
  1962. weight: math.unit(80, "kg"),
  1963. name: "Side",
  1964. image: {
  1965. source: "./media/characters/rai/side.svg"
  1966. }
  1967. },
  1968. back: {
  1969. height: math.unit(11, "feet"),
  1970. weight: math.unit(80, "lb"),
  1971. name: "Back",
  1972. image: {
  1973. source: "./media/characters/rai/back.svg",
  1974. extra: 1,
  1975. bottom: 0.01
  1976. }
  1977. },
  1978. feral: {
  1979. height: math.unit(11, "feet"),
  1980. weight: math.unit(800, "lb"),
  1981. name: "Feral",
  1982. image: {
  1983. source: "./media/characters/rai/feral.svg",
  1984. extra: 1050 / 659,
  1985. bottom: 0.07
  1986. }
  1987. },
  1988. dragon: {
  1989. height: math.unit(23, "feet"),
  1990. weight: math.unit(50000, "lb"),
  1991. name: "Dragon",
  1992. image: {
  1993. source: "./media/characters/rai/dragon.svg",
  1994. extra: 2498 / 2030,
  1995. bottom: 85.2 / 2584
  1996. }
  1997. },
  1998. maw: {
  1999. height: math.unit(6 / 3.81416, "feet"),
  2000. name: "Maw",
  2001. image: {
  2002. source: "./media/characters/rai/maw.svg"
  2003. }
  2004. },
  2005. },
  2006. [
  2007. {
  2008. name: "Normal",
  2009. height: math.unit(11, "feet")
  2010. },
  2011. {
  2012. name: "Macro",
  2013. height: math.unit(302, "feet"),
  2014. default: true
  2015. },
  2016. ]
  2017. ))
  2018. characterMakers.push(() => makeCharacter(
  2019. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2020. {
  2021. frontDressed: {
  2022. height: math.unit(216, "feet"),
  2023. weight: math.unit(7000000, "lb"),
  2024. name: "Front (Dressed)",
  2025. image: {
  2026. source: "./media/characters/jazzy/front-dressed.svg",
  2027. extra: 2738 / 2651,
  2028. bottom: 41.8 / 2786
  2029. }
  2030. },
  2031. backDressed: {
  2032. height: math.unit(216, "feet"),
  2033. weight: math.unit(7000000, "lb"),
  2034. name: "Back (Dressed)",
  2035. image: {
  2036. source: "./media/characters/jazzy/back-dressed.svg",
  2037. extra: 2775 / 2673,
  2038. bottom: 36.8 / 2817
  2039. }
  2040. },
  2041. front: {
  2042. height: math.unit(216, "feet"),
  2043. weight: math.unit(7000000, "lb"),
  2044. name: "Front",
  2045. image: {
  2046. source: "./media/characters/jazzy/front.svg",
  2047. extra: 2738 / 2651,
  2048. bottom: 41.8 / 2786
  2049. }
  2050. },
  2051. back: {
  2052. height: math.unit(216, "feet"),
  2053. weight: math.unit(7000000, "lb"),
  2054. name: "Back",
  2055. image: {
  2056. source: "./media/characters/jazzy/back.svg",
  2057. extra: 2775 / 2673,
  2058. bottom: 36.8 / 2817
  2059. }
  2060. },
  2061. maw: {
  2062. height: math.unit(20, "feet"),
  2063. name: "Maw",
  2064. image: {
  2065. source: "./media/characters/jazzy/maw.svg"
  2066. }
  2067. },
  2068. paws: {
  2069. height: math.unit(27.5, "feet"),
  2070. name: "Paws",
  2071. image: {
  2072. source: "./media/characters/jazzy/paws.svg"
  2073. }
  2074. },
  2075. eye: {
  2076. height: math.unit(4.4, "feet"),
  2077. name: "Eye",
  2078. image: {
  2079. source: "./media/characters/jazzy/eye.svg"
  2080. }
  2081. },
  2082. droneOffense: {
  2083. height: math.unit(9.5, "inches"),
  2084. name: "Drone (Offense)",
  2085. image: {
  2086. source: "./media/characters/jazzy/drone-offense.svg"
  2087. }
  2088. },
  2089. droneRecon: {
  2090. height: math.unit(9.5, "inches"),
  2091. name: "Drone (Recon)",
  2092. image: {
  2093. source: "./media/characters/jazzy/drone-recon.svg"
  2094. }
  2095. },
  2096. droneDefense: {
  2097. height: math.unit(9.5, "inches"),
  2098. name: "Drone (Defense)",
  2099. image: {
  2100. source: "./media/characters/jazzy/drone-defense.svg"
  2101. }
  2102. },
  2103. },
  2104. [
  2105. {
  2106. name: "Macro",
  2107. height: math.unit(216, "feet"),
  2108. default: true
  2109. },
  2110. ]
  2111. ))
  2112. characterMakers.push(() => makeCharacter(
  2113. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2114. {
  2115. front: {
  2116. height: math.unit(7, "feet"),
  2117. weight: math.unit(80, "kg"),
  2118. name: "Front",
  2119. image: {
  2120. source: "./media/characters/flamm/front.svg",
  2121. extra: 1794 / 1677,
  2122. bottom: 31.7 / 1828.5
  2123. }
  2124. },
  2125. },
  2126. [
  2127. {
  2128. name: "Normal",
  2129. height: math.unit(9.5, "feet")
  2130. },
  2131. {
  2132. name: "Macro",
  2133. height: math.unit(200, "feet"),
  2134. default: true
  2135. },
  2136. ]
  2137. ))
  2138. characterMakers.push(() => makeCharacter(
  2139. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2140. {
  2141. front: {
  2142. height: math.unit(7, "feet"),
  2143. weight: math.unit(80, "kg"),
  2144. name: "Front",
  2145. image: {
  2146. source: "./media/characters/zephiro/front.svg",
  2147. extra: 2309 / 2162,
  2148. bottom: 0.069
  2149. }
  2150. },
  2151. side: {
  2152. height: math.unit(7, "feet"),
  2153. weight: math.unit(80, "kg"),
  2154. name: "Side",
  2155. image: {
  2156. source: "./media/characters/zephiro/side.svg",
  2157. extra: 2403 / 2279,
  2158. bottom: 0.015
  2159. }
  2160. },
  2161. back: {
  2162. height: math.unit(7, "feet"),
  2163. weight: math.unit(80, "kg"),
  2164. name: "Back",
  2165. image: {
  2166. source: "./media/characters/zephiro/back.svg",
  2167. extra: 2373 / 2244,
  2168. bottom: 0.013
  2169. }
  2170. },
  2171. },
  2172. [
  2173. {
  2174. name: "Micro",
  2175. height: math.unit(3, "inches")
  2176. },
  2177. {
  2178. name: "Normal",
  2179. height: math.unit(5 + 3 / 12, "feet"),
  2180. default: true
  2181. },
  2182. {
  2183. name: "Macro",
  2184. height: math.unit(118, "feet")
  2185. },
  2186. ]
  2187. ))
  2188. characterMakers.push(() => makeCharacter(
  2189. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2190. {
  2191. front: {
  2192. height: math.unit(5, "feet"),
  2193. weight: math.unit(90, "kg"),
  2194. name: "Front",
  2195. image: {
  2196. source: "./media/characters/fory/front.svg",
  2197. extra: 2862 / 2674,
  2198. bottom: 180 / 3043.8
  2199. }
  2200. },
  2201. back: {
  2202. height: math.unit(5, "feet"),
  2203. weight: math.unit(90, "kg"),
  2204. name: "Back",
  2205. image: {
  2206. source: "./media/characters/fory/back.svg",
  2207. extra: 2962 / 2791,
  2208. bottom: 106 / 3071.8
  2209. }
  2210. },
  2211. foot: {
  2212. height: math.unit(2.14, "feet"),
  2213. name: "Foot",
  2214. image: {
  2215. source: "./media/characters/fory/foot.svg"
  2216. }
  2217. },
  2218. },
  2219. [
  2220. {
  2221. name: "Normal",
  2222. height: math.unit(5, "feet")
  2223. },
  2224. {
  2225. name: "Macro",
  2226. height: math.unit(50, "feet"),
  2227. default: true
  2228. },
  2229. {
  2230. name: "Megamacro",
  2231. height: math.unit(10, "miles")
  2232. },
  2233. {
  2234. name: "Gigamacro",
  2235. height: math.unit(5, "earths")
  2236. },
  2237. ]
  2238. ))
  2239. characterMakers.push(() => makeCharacter(
  2240. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2241. {
  2242. front: {
  2243. height: math.unit(7, "feet"),
  2244. weight: math.unit(90, "kg"),
  2245. name: "Front",
  2246. image: {
  2247. source: "./media/characters/kurrikage/front.svg",
  2248. extra: 1,
  2249. bottom: 0.035
  2250. }
  2251. },
  2252. back: {
  2253. height: math.unit(7, "feet"),
  2254. weight: math.unit(90, "lb"),
  2255. name: "Back",
  2256. image: {
  2257. source: "./media/characters/kurrikage/back.svg"
  2258. }
  2259. },
  2260. paw: {
  2261. height: math.unit(1.5, "feet"),
  2262. name: "Paw",
  2263. image: {
  2264. source: "./media/characters/kurrikage/paw.svg"
  2265. }
  2266. },
  2267. staff: {
  2268. height: math.unit(6.7, "feet"),
  2269. name: "Staff",
  2270. image: {
  2271. source: "./media/characters/kurrikage/staff.svg"
  2272. }
  2273. },
  2274. peek: {
  2275. height: math.unit(1.05, "feet"),
  2276. name: "Peeking",
  2277. image: {
  2278. source: "./media/characters/kurrikage/peek.svg",
  2279. bottom: 0.08
  2280. }
  2281. },
  2282. },
  2283. [
  2284. {
  2285. name: "Normal",
  2286. height: math.unit(12, "feet"),
  2287. default: true
  2288. },
  2289. {
  2290. name: "Big",
  2291. height: math.unit(20, "feet")
  2292. },
  2293. {
  2294. name: "Macro",
  2295. height: math.unit(500, "feet")
  2296. },
  2297. {
  2298. name: "Megamacro",
  2299. height: math.unit(20, "miles")
  2300. },
  2301. ]
  2302. ))
  2303. characterMakers.push(() => makeCharacter(
  2304. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2305. {
  2306. front: {
  2307. height: math.unit(6, "feet"),
  2308. weight: math.unit(75, "kg"),
  2309. name: "Front",
  2310. image: {
  2311. source: "./media/characters/shingo/front.svg",
  2312. extra: 3511 / 3338,
  2313. bottom: 0.005
  2314. }
  2315. },
  2316. paw: {
  2317. height: math.unit(1, "feet"),
  2318. name: "Paw",
  2319. image: {
  2320. source: "./media/characters/shingo/paw.svg"
  2321. }
  2322. },
  2323. },
  2324. [
  2325. {
  2326. name: "Micro",
  2327. height: math.unit(4, "inches")
  2328. },
  2329. {
  2330. name: "Normal",
  2331. height: math.unit(6, "feet"),
  2332. default: true
  2333. },
  2334. {
  2335. name: "Macro",
  2336. height: math.unit(108, "feet")
  2337. }
  2338. ]
  2339. ))
  2340. characterMakers.push(() => makeCharacter(
  2341. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2342. {
  2343. side: {
  2344. height: math.unit(6, "feet"),
  2345. weight: math.unit(75, "kg"),
  2346. name: "Side",
  2347. image: {
  2348. source: "./media/characters/aigey/side.svg"
  2349. }
  2350. },
  2351. },
  2352. [
  2353. {
  2354. name: "Macro",
  2355. height: math.unit(200, "feet"),
  2356. default: true
  2357. },
  2358. {
  2359. name: "Megamacro",
  2360. height: math.unit(100, "miles")
  2361. },
  2362. ]
  2363. )
  2364. )
  2365. characterMakers.push(() => makeCharacter(
  2366. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2367. {
  2368. front: {
  2369. height: math.unit(5 + 5 / 12, "feet"),
  2370. weight: math.unit(75, "kg"),
  2371. name: "Front",
  2372. image: {
  2373. source: "./media/characters/natasha/front.svg",
  2374. extra: 859 / 824,
  2375. bottom: 23 / 879.6
  2376. }
  2377. },
  2378. frontNsfw: {
  2379. height: math.unit(5 + 5 / 12, "feet"),
  2380. weight: math.unit(75, "kg"),
  2381. name: "Front (NSFW)",
  2382. image: {
  2383. source: "./media/characters/natasha/front-nsfw.svg",
  2384. extra: 859 / 824,
  2385. bottom: 23 / 879.6
  2386. }
  2387. },
  2388. frontErect: {
  2389. height: math.unit(5 + 5 / 12, "feet"),
  2390. weight: math.unit(75, "kg"),
  2391. name: "Front (Erect)",
  2392. image: {
  2393. source: "./media/characters/natasha/front-erect.svg",
  2394. extra: 859 / 824,
  2395. bottom: 23 / 879.6
  2396. }
  2397. },
  2398. back: {
  2399. height: math.unit(5 + 5 / 12, "feet"),
  2400. weight: math.unit(75, "kg"),
  2401. name: "Back",
  2402. image: {
  2403. source: "./media/characters/natasha/back.svg",
  2404. extra: 887.9 / 852.6,
  2405. bottom: 9.7 / 896.4
  2406. }
  2407. },
  2408. backAlt: {
  2409. height: math.unit(5 + 5 / 12, "feet"),
  2410. weight: math.unit(75, "kg"),
  2411. name: "Back (Alt)",
  2412. image: {
  2413. source: "./media/characters/natasha/back-alt.svg",
  2414. extra: 1236.7 / 1192,
  2415. bottom: 22.3 / 1258.2
  2416. }
  2417. },
  2418. dick: {
  2419. height: math.unit(1.772, "feet"),
  2420. name: "Dick",
  2421. image: {
  2422. source: "./media/characters/natasha/dick.svg"
  2423. }
  2424. },
  2425. paw: {
  2426. height: math.unit(0.250, "meters"),
  2427. name: "Paw",
  2428. image: {
  2429. source: "./media/characters/natasha/paw.svg"
  2430. }
  2431. },
  2432. },
  2433. [
  2434. {
  2435. name: "Normal",
  2436. height: math.unit(5 + 5 / 12, "feet")
  2437. },
  2438. {
  2439. name: "Large",
  2440. height: math.unit(12, "feet")
  2441. },
  2442. {
  2443. name: "Macro",
  2444. height: math.unit(100, "feet"),
  2445. default: true
  2446. },
  2447. {
  2448. name: "Macro+",
  2449. height: math.unit(260, "feet")
  2450. },
  2451. {
  2452. name: "Macro++",
  2453. height: math.unit(1, "mile")
  2454. },
  2455. ]
  2456. ))
  2457. characterMakers.push(() => makeCharacter(
  2458. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2459. {
  2460. front: {
  2461. height: math.unit(6, "feet"),
  2462. weight: math.unit(75, "kg"),
  2463. name: "Front",
  2464. image: {
  2465. source: "./media/characters/malik/front.svg"
  2466. }
  2467. },
  2468. side: {
  2469. height: math.unit(6, "feet"),
  2470. weight: math.unit(75, "kg"),
  2471. name: "Side",
  2472. image: {
  2473. source: "./media/characters/malik/side.svg",
  2474. extra: 1.1539
  2475. }
  2476. },
  2477. back: {
  2478. height: math.unit(6, "feet"),
  2479. weight: math.unit(75, "kg"),
  2480. name: "Back",
  2481. image: {
  2482. source: "./media/characters/malik/back.svg"
  2483. }
  2484. },
  2485. },
  2486. [
  2487. {
  2488. name: "Macro",
  2489. height: math.unit(156, "feet"),
  2490. default: true
  2491. },
  2492. {
  2493. name: "Macro+",
  2494. height: math.unit(1188, "feet")
  2495. },
  2496. ]
  2497. ))
  2498. characterMakers.push(() => makeCharacter(
  2499. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2500. {
  2501. front: {
  2502. height: math.unit(6, "feet"),
  2503. weight: math.unit(75, "kg"),
  2504. name: "Front",
  2505. image: {
  2506. source: "./media/characters/sefer/front.svg",
  2507. extra: 848 / 659,
  2508. bottom: 28.3 / 876.442
  2509. }
  2510. },
  2511. back: {
  2512. height: math.unit(6, "feet"),
  2513. weight: math.unit(75, "kg"),
  2514. name: "Back",
  2515. image: {
  2516. source: "./media/characters/sefer/back.svg",
  2517. extra: 864 / 695,
  2518. bottom: 10 / 871
  2519. }
  2520. },
  2521. frontDressed: {
  2522. height: math.unit(6, "feet"),
  2523. weight: math.unit(75, "kg"),
  2524. name: "Front (Dressed)",
  2525. image: {
  2526. source: "./media/characters/sefer/front-dressed.svg",
  2527. extra: 839 / 653,
  2528. bottom: 37.6 / 878
  2529. }
  2530. },
  2531. },
  2532. [
  2533. {
  2534. name: "Normal",
  2535. height: math.unit(6, "feet"),
  2536. default: true
  2537. },
  2538. ]
  2539. ))
  2540. characterMakers.push(() => makeCharacter(
  2541. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2542. {
  2543. body: {
  2544. height: math.unit(2.2428, "meter"),
  2545. weight: math.unit(124.738, "kg"),
  2546. name: "Body",
  2547. image: {
  2548. extra: 1225 / 1050,
  2549. source: "./media/characters/north/front.svg"
  2550. }
  2551. }
  2552. },
  2553. [
  2554. {
  2555. name: "Micro",
  2556. height: math.unit(4, "inches")
  2557. },
  2558. {
  2559. name: "Macro",
  2560. height: math.unit(63, "meters")
  2561. },
  2562. {
  2563. name: "Megamacro",
  2564. height: math.unit(101, "miles"),
  2565. default: true
  2566. }
  2567. ]
  2568. ))
  2569. characterMakers.push(() => makeCharacter(
  2570. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2571. {
  2572. angled: {
  2573. height: math.unit(4, "meter"),
  2574. weight: math.unit(150, "kg"),
  2575. name: "Angled",
  2576. image: {
  2577. source: "./media/characters/talan/angled-sfw.svg",
  2578. bottom: 29 / 3734
  2579. }
  2580. },
  2581. angledNsfw: {
  2582. height: math.unit(4, "meter"),
  2583. weight: math.unit(150, "kg"),
  2584. name: "Angled (NSFW)",
  2585. image: {
  2586. source: "./media/characters/talan/angled-nsfw.svg",
  2587. bottom: 29 / 3734
  2588. }
  2589. },
  2590. frontNsfw: {
  2591. height: math.unit(4, "meter"),
  2592. weight: math.unit(150, "kg"),
  2593. name: "Front (NSFW)",
  2594. image: {
  2595. source: "./media/characters/talan/front-nsfw.svg",
  2596. bottom: 29 / 3734
  2597. }
  2598. },
  2599. sideNsfw: {
  2600. height: math.unit(4, "meter"),
  2601. weight: math.unit(150, "kg"),
  2602. name: "Side (NSFW)",
  2603. image: {
  2604. source: "./media/characters/talan/side-nsfw.svg",
  2605. bottom: 29 / 3734
  2606. }
  2607. },
  2608. back: {
  2609. height: math.unit(4, "meter"),
  2610. weight: math.unit(150, "kg"),
  2611. name: "Back",
  2612. image: {
  2613. source: "./media/characters/talan/back.svg"
  2614. }
  2615. },
  2616. dickBottom: {
  2617. height: math.unit(0.621, "meter"),
  2618. name: "Dick (Bottom)",
  2619. image: {
  2620. source: "./media/characters/talan/dick-bottom.svg"
  2621. }
  2622. },
  2623. dickTop: {
  2624. height: math.unit(0.621, "meter"),
  2625. name: "Dick (Top)",
  2626. image: {
  2627. source: "./media/characters/talan/dick-top.svg"
  2628. }
  2629. },
  2630. dickSide: {
  2631. height: math.unit(0.305, "meter"),
  2632. name: "Dick (Side)",
  2633. image: {
  2634. source: "./media/characters/talan/dick-side.svg"
  2635. }
  2636. },
  2637. dickFront: {
  2638. height: math.unit(0.305, "meter"),
  2639. name: "Dick (Front)",
  2640. image: {
  2641. source: "./media/characters/talan/dick-front.svg"
  2642. }
  2643. },
  2644. },
  2645. [
  2646. {
  2647. name: "Normal",
  2648. height: math.unit(4, "meters")
  2649. },
  2650. {
  2651. name: "Macro",
  2652. height: math.unit(100, "meters")
  2653. },
  2654. {
  2655. name: "Megamacro",
  2656. height: math.unit(2, "miles"),
  2657. default: true
  2658. },
  2659. {
  2660. name: "Gigamacro",
  2661. height: math.unit(5000, "miles")
  2662. },
  2663. {
  2664. name: "Teramacro",
  2665. height: math.unit(100, "parsecs")
  2666. }
  2667. ]
  2668. ))
  2669. characterMakers.push(() => makeCharacter(
  2670. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2671. {
  2672. front: {
  2673. height: math.unit(2, "meter"),
  2674. weight: math.unit(90, "kg"),
  2675. name: "Front",
  2676. image: {
  2677. source: "./media/characters/gael'rathus/front.svg"
  2678. }
  2679. },
  2680. frontAlt: {
  2681. height: math.unit(2, "meter"),
  2682. weight: math.unit(90, "kg"),
  2683. name: "Front (alt)",
  2684. image: {
  2685. source: "./media/characters/gael'rathus/front-alt.svg"
  2686. }
  2687. },
  2688. frontAlt2: {
  2689. height: math.unit(2, "meter"),
  2690. weight: math.unit(90, "kg"),
  2691. name: "Front (alt 2)",
  2692. image: {
  2693. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2694. }
  2695. }
  2696. },
  2697. [
  2698. {
  2699. name: "Normal",
  2700. height: math.unit(9, "feet"),
  2701. default: true
  2702. },
  2703. {
  2704. name: "Large",
  2705. height: math.unit(25, "feet")
  2706. },
  2707. {
  2708. name: "Macro",
  2709. height: math.unit(0.25, "miles")
  2710. },
  2711. {
  2712. name: "Megamacro",
  2713. height: math.unit(10, "miles")
  2714. }
  2715. ]
  2716. ))
  2717. characterMakers.push(() => makeCharacter(
  2718. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2719. {
  2720. side: {
  2721. height: math.unit(2, "meter"),
  2722. weight: math.unit(140, "kg"),
  2723. name: "Side",
  2724. image: {
  2725. source: "./media/characters/sosha/side.svg",
  2726. bottom: 0.042
  2727. }
  2728. },
  2729. },
  2730. [
  2731. {
  2732. name: "Normal",
  2733. height: math.unit(12, "feet"),
  2734. default: true
  2735. }
  2736. ]
  2737. ))
  2738. characterMakers.push(() => makeCharacter(
  2739. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2740. {
  2741. side: {
  2742. height: math.unit(5 + 5 / 12, "feet"),
  2743. weight: math.unit(170, "kg"),
  2744. name: "Side",
  2745. image: {
  2746. source: "./media/characters/runnola/side.svg",
  2747. extra: 741 / 448,
  2748. bottom: 0.05
  2749. }
  2750. },
  2751. },
  2752. [
  2753. {
  2754. name: "Small",
  2755. height: math.unit(3, "feet")
  2756. },
  2757. {
  2758. name: "Normal",
  2759. height: math.unit(5 + 5 / 12, "feet"),
  2760. default: true
  2761. },
  2762. {
  2763. name: "Big",
  2764. height: math.unit(10, "feet")
  2765. },
  2766. ]
  2767. ))
  2768. characterMakers.push(() => makeCharacter(
  2769. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2770. {
  2771. front: {
  2772. height: math.unit(2, "meter"),
  2773. weight: math.unit(50, "kg"),
  2774. name: "Front",
  2775. image: {
  2776. source: "./media/characters/kurribird/front.svg",
  2777. bottom: 0.015
  2778. }
  2779. },
  2780. frontAlt: {
  2781. height: math.unit(1.5, "meter"),
  2782. weight: math.unit(50, "kg"),
  2783. name: "Front (Alt)",
  2784. image: {
  2785. source: "./media/characters/kurribird/front-alt.svg",
  2786. extra: 1.45
  2787. }
  2788. },
  2789. },
  2790. [
  2791. {
  2792. name: "Normal",
  2793. height: math.unit(7, "feet")
  2794. },
  2795. {
  2796. name: "Big",
  2797. height: math.unit(12, "feet"),
  2798. default: true
  2799. },
  2800. {
  2801. name: "Macro",
  2802. height: math.unit(1500, "feet")
  2803. },
  2804. {
  2805. name: "Megamacro",
  2806. height: math.unit(2, "miles")
  2807. }
  2808. ]
  2809. ))
  2810. characterMakers.push(() => makeCharacter(
  2811. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2812. {
  2813. front: {
  2814. height: math.unit(2, "meter"),
  2815. weight: math.unit(80, "kg"),
  2816. name: "Front",
  2817. image: {
  2818. source: "./media/characters/elbial/front.svg",
  2819. extra: 1643 / 1556,
  2820. bottom: 60.2 / 1696
  2821. }
  2822. },
  2823. side: {
  2824. height: math.unit(2, "meter"),
  2825. weight: math.unit(80, "kg"),
  2826. name: "Side",
  2827. image: {
  2828. source: "./media/characters/elbial/side.svg",
  2829. extra: 1630 / 1565,
  2830. bottom: 71.5 / 1697
  2831. }
  2832. },
  2833. back: {
  2834. height: math.unit(2, "meter"),
  2835. weight: math.unit(80, "kg"),
  2836. name: "Back",
  2837. image: {
  2838. source: "./media/characters/elbial/back.svg",
  2839. extra: 1668 / 1595,
  2840. bottom: 5.6 / 1672
  2841. }
  2842. },
  2843. frontDressed: {
  2844. height: math.unit(2, "meter"),
  2845. weight: math.unit(80, "kg"),
  2846. name: "Front (Dressed)",
  2847. image: {
  2848. source: "./media/characters/elbial/front-dressed.svg",
  2849. extra: 1653 / 1584,
  2850. bottom: 57 / 1708
  2851. }
  2852. },
  2853. genitals: {
  2854. height: math.unit(2 / 3.367, "meter"),
  2855. name: "Genitals",
  2856. image: {
  2857. source: "./media/characters/elbial/genitals.svg"
  2858. }
  2859. },
  2860. },
  2861. [
  2862. {
  2863. name: "Large",
  2864. height: math.unit(100, "feet")
  2865. },
  2866. {
  2867. name: "Macro",
  2868. height: math.unit(500, "feet"),
  2869. default: true
  2870. },
  2871. {
  2872. name: "Megamacro",
  2873. height: math.unit(10, "miles")
  2874. },
  2875. {
  2876. name: "Gigamacro",
  2877. height: math.unit(25000, "miles")
  2878. },
  2879. {
  2880. name: "Full-Size",
  2881. height: math.unit(8000000, "gigaparsecs")
  2882. }
  2883. ]
  2884. ))
  2885. characterMakers.push(() => makeCharacter(
  2886. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2887. {
  2888. front: {
  2889. height: math.unit(2, "meter"),
  2890. weight: math.unit(60, "kg"),
  2891. name: "Front",
  2892. image: {
  2893. source: "./media/characters/noah/front.svg"
  2894. }
  2895. },
  2896. talons: {
  2897. height: math.unit(0.315, "meter"),
  2898. name: "Talons",
  2899. image: {
  2900. source: "./media/characters/noah/talons.svg"
  2901. }
  2902. }
  2903. },
  2904. [
  2905. {
  2906. name: "Large",
  2907. height: math.unit(50, "feet")
  2908. },
  2909. {
  2910. name: "Macro",
  2911. height: math.unit(750, "feet"),
  2912. default: true
  2913. },
  2914. {
  2915. name: "Megamacro",
  2916. height: math.unit(50, "miles")
  2917. },
  2918. {
  2919. name: "Gigamacro",
  2920. height: math.unit(100000, "miles")
  2921. },
  2922. {
  2923. name: "Full-Size",
  2924. height: math.unit(3000000000, "miles")
  2925. }
  2926. ]
  2927. ))
  2928. characterMakers.push(() => makeCharacter(
  2929. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2930. {
  2931. front: {
  2932. height: math.unit(2, "meter"),
  2933. weight: math.unit(80, "kg"),
  2934. name: "Front",
  2935. image: {
  2936. source: "./media/characters/natalya/front.svg"
  2937. }
  2938. },
  2939. back: {
  2940. height: math.unit(2, "meter"),
  2941. weight: math.unit(80, "kg"),
  2942. name: "Back",
  2943. image: {
  2944. source: "./media/characters/natalya/back.svg"
  2945. }
  2946. }
  2947. },
  2948. [
  2949. {
  2950. name: "Normal",
  2951. height: math.unit(150, "feet"),
  2952. default: true
  2953. },
  2954. {
  2955. name: "Megamacro",
  2956. height: math.unit(5, "miles")
  2957. },
  2958. {
  2959. name: "Full-Size",
  2960. height: math.unit(600, "kiloparsecs")
  2961. }
  2962. ]
  2963. ))
  2964. characterMakers.push(() => makeCharacter(
  2965. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2966. {
  2967. front: {
  2968. height: math.unit(2, "meter"),
  2969. weight: math.unit(50, "kg"),
  2970. name: "Front",
  2971. image: {
  2972. source: "./media/characters/erestrebah/front.svg",
  2973. extra: 208 / 193,
  2974. bottom: 0.055
  2975. }
  2976. },
  2977. back: {
  2978. height: math.unit(2, "meter"),
  2979. weight: math.unit(50, "kg"),
  2980. name: "Back",
  2981. image: {
  2982. source: "./media/characters/erestrebah/back.svg",
  2983. extra: 1.3
  2984. }
  2985. }
  2986. },
  2987. [
  2988. {
  2989. name: "Normal",
  2990. height: math.unit(10, "feet")
  2991. },
  2992. {
  2993. name: "Large",
  2994. height: math.unit(50, "feet"),
  2995. default: true
  2996. },
  2997. {
  2998. name: "Macro",
  2999. height: math.unit(300, "feet")
  3000. },
  3001. {
  3002. name: "Macro+",
  3003. height: math.unit(750, "feet")
  3004. },
  3005. {
  3006. name: "Megamacro",
  3007. height: math.unit(3, "miles")
  3008. }
  3009. ]
  3010. ))
  3011. characterMakers.push(() => makeCharacter(
  3012. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3013. {
  3014. front: {
  3015. height: math.unit(2, "meter"),
  3016. weight: math.unit(80, "kg"),
  3017. name: "Front",
  3018. image: {
  3019. source: "./media/characters/jennifer/front.svg",
  3020. bottom: 0.11,
  3021. extra: 1.16
  3022. }
  3023. },
  3024. frontAlt: {
  3025. height: math.unit(2, "meter"),
  3026. weight: math.unit(80, "kg"),
  3027. name: "Front (Alt)",
  3028. image: {
  3029. source: "./media/characters/jennifer/front-alt.svg"
  3030. }
  3031. }
  3032. },
  3033. [
  3034. {
  3035. name: "Canon Height",
  3036. height: math.unit(120, "feet"),
  3037. default: true
  3038. },
  3039. {
  3040. name: "Macro+",
  3041. height: math.unit(300, "feet")
  3042. },
  3043. {
  3044. name: "Megamacro",
  3045. height: math.unit(20000, "feet")
  3046. }
  3047. ]
  3048. ))
  3049. characterMakers.push(() => makeCharacter(
  3050. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3051. {
  3052. front: {
  3053. height: math.unit(2, "meter"),
  3054. weight: math.unit(50, "kg"),
  3055. name: "Front",
  3056. image: {
  3057. source: "./media/characters/kalista/front.svg",
  3058. extra: 1947 / 1700,
  3059. bottom: 76.6 / 1412.98
  3060. }
  3061. },
  3062. back: {
  3063. height: math.unit(2, "meter"),
  3064. weight: math.unit(50, "kg"),
  3065. name: "Back",
  3066. image: {
  3067. source: "./media/characters/kalista/back.svg",
  3068. extra: 1366 / 1156,
  3069. bottom: 33.9 / 1362.78
  3070. }
  3071. }
  3072. },
  3073. [
  3074. {
  3075. name: "Uncomfortably Small",
  3076. height: math.unit(10, "feet")
  3077. },
  3078. {
  3079. name: "Small",
  3080. height: math.unit(30, "feet")
  3081. },
  3082. {
  3083. name: "Macro",
  3084. height: math.unit(100, "feet"),
  3085. default: true
  3086. },
  3087. {
  3088. name: "Macro+",
  3089. height: math.unit(2000, "feet")
  3090. },
  3091. {
  3092. name: "True Form",
  3093. height: math.unit(8924, "miles")
  3094. }
  3095. ]
  3096. ))
  3097. characterMakers.push(() => makeCharacter(
  3098. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3099. {
  3100. front: {
  3101. height: math.unit(2, "meter"),
  3102. weight: math.unit(120, "kg"),
  3103. name: "Front",
  3104. image: {
  3105. source: "./media/characters/ggv/front.svg"
  3106. }
  3107. },
  3108. side: {
  3109. height: math.unit(2, "meter"),
  3110. weight: math.unit(120, "kg"),
  3111. name: "Side",
  3112. image: {
  3113. source: "./media/characters/ggv/side.svg"
  3114. }
  3115. }
  3116. },
  3117. [
  3118. {
  3119. name: "Extremely Puny",
  3120. height: math.unit(9 + 5 / 12, "feet")
  3121. },
  3122. {
  3123. name: "Horribly Small",
  3124. height: math.unit(47.7, "miles"),
  3125. default: true
  3126. },
  3127. {
  3128. name: "Reasonably Sized",
  3129. height: math.unit(25000, "parsecs")
  3130. },
  3131. {
  3132. name: "Slightly Uncompressed",
  3133. height: math.unit(7.77e31, "parsecs")
  3134. },
  3135. {
  3136. name: "Omniversal",
  3137. height: math.unit(1e300, "meters")
  3138. },
  3139. ]
  3140. ))
  3141. characterMakers.push(() => makeCharacter(
  3142. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3143. {
  3144. front: {
  3145. height: math.unit(2, "meter"),
  3146. weight: math.unit(75, "lb"),
  3147. name: "Front",
  3148. image: {
  3149. source: "./media/characters/napalm/front.svg"
  3150. }
  3151. },
  3152. back: {
  3153. height: math.unit(2, "meter"),
  3154. weight: math.unit(75, "lb"),
  3155. name: "Back",
  3156. image: {
  3157. source: "./media/characters/napalm/back.svg"
  3158. }
  3159. }
  3160. },
  3161. [
  3162. {
  3163. name: "Standard",
  3164. height: math.unit(55, "feet"),
  3165. default: true
  3166. }
  3167. ]
  3168. ))
  3169. characterMakers.push(() => makeCharacter(
  3170. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3171. {
  3172. front: {
  3173. height: math.unit(7 + 5 / 6, "feet"),
  3174. weight: math.unit(325, "lb"),
  3175. name: "Front",
  3176. image: {
  3177. source: "./media/characters/asana/front.svg",
  3178. extra: 1133 / 1060,
  3179. bottom: 15.2 / 1148.6
  3180. }
  3181. },
  3182. back: {
  3183. height: math.unit(7 + 5 / 6, "feet"),
  3184. weight: math.unit(325, "lb"),
  3185. name: "Back",
  3186. image: {
  3187. source: "./media/characters/asana/back.svg",
  3188. extra: 1114 / 1043,
  3189. bottom: 5 / 1120
  3190. }
  3191. },
  3192. dressedDark: {
  3193. height: math.unit(7 + 5 / 6, "feet"),
  3194. weight: math.unit(325, "lb"),
  3195. name: "Dressed (Dark)",
  3196. image: {
  3197. source: "./media/characters/asana/dressed-dark.svg",
  3198. extra: 1133 / 1060,
  3199. bottom: 15.2 / 1148.6
  3200. }
  3201. },
  3202. dressedLight: {
  3203. height: math.unit(7 + 5 / 6, "feet"),
  3204. weight: math.unit(325, "lb"),
  3205. name: "Dressed (Light)",
  3206. image: {
  3207. source: "./media/characters/asana/dressed-light.svg",
  3208. extra: 1133 / 1060,
  3209. bottom: 15.2 / 1148.6
  3210. }
  3211. },
  3212. },
  3213. [
  3214. {
  3215. name: "Standard",
  3216. height: math.unit(7 + 5 / 6, "feet"),
  3217. default: true
  3218. },
  3219. {
  3220. name: "Large",
  3221. height: math.unit(10, "meters")
  3222. },
  3223. {
  3224. name: "Macro",
  3225. height: math.unit(2500, "meters")
  3226. },
  3227. {
  3228. name: "Megamacro",
  3229. height: math.unit(5e6, "meters")
  3230. },
  3231. {
  3232. name: "Examacro",
  3233. height: math.unit(5e12, "lightyears")
  3234. },
  3235. {
  3236. name: "Max Size",
  3237. height: math.unit(1e31, "lightyears")
  3238. }
  3239. ]
  3240. ))
  3241. characterMakers.push(() => makeCharacter(
  3242. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3243. {
  3244. front: {
  3245. height: math.unit(2, "meter"),
  3246. weight: math.unit(60, "kg"),
  3247. name: "Front",
  3248. image: {
  3249. source: "./media/characters/ebony/front.svg",
  3250. bottom: 0.03,
  3251. extra: 1045 / 810 + 0.03
  3252. }
  3253. },
  3254. side: {
  3255. height: math.unit(2, "meter"),
  3256. weight: math.unit(60, "kg"),
  3257. name: "Side",
  3258. image: {
  3259. source: "./media/characters/ebony/side.svg",
  3260. bottom: 0.03,
  3261. extra: 1045 / 810 + 0.03
  3262. }
  3263. },
  3264. back: {
  3265. height: math.unit(2, "meter"),
  3266. weight: math.unit(60, "kg"),
  3267. name: "Back",
  3268. image: {
  3269. source: "./media/characters/ebony/back.svg",
  3270. bottom: 0.01,
  3271. extra: 1045 / 810 + 0.01
  3272. }
  3273. },
  3274. },
  3275. [
  3276. // TODO check why I did this lol
  3277. {
  3278. name: "Standard",
  3279. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3280. default: true
  3281. },
  3282. {
  3283. name: "Macro",
  3284. height: math.unit(200, "feet")
  3285. },
  3286. {
  3287. name: "Gigamacro",
  3288. height: math.unit(13000, "km")
  3289. }
  3290. ]
  3291. ))
  3292. characterMakers.push(() => makeCharacter(
  3293. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3294. {
  3295. front: {
  3296. height: math.unit(6, "feet"),
  3297. weight: math.unit(175, "lb"),
  3298. name: "Front",
  3299. image: {
  3300. source: "./media/characters/mountain/front.svg",
  3301. extra: 972 / 955,
  3302. bottom: 64 / 1036.6
  3303. }
  3304. },
  3305. back: {
  3306. height: math.unit(6, "feet"),
  3307. weight: math.unit(175, "lb"),
  3308. name: "Back",
  3309. image: {
  3310. source: "./media/characters/mountain/back.svg",
  3311. extra: 970 / 950,
  3312. bottom: 28.25 / 999
  3313. }
  3314. },
  3315. },
  3316. [
  3317. {
  3318. name: "Large",
  3319. height: math.unit(20, "meters")
  3320. },
  3321. {
  3322. name: "Macro",
  3323. height: math.unit(300, "meters")
  3324. },
  3325. {
  3326. name: "Gigamacro",
  3327. height: math.unit(10000, "km"),
  3328. default: true
  3329. },
  3330. {
  3331. name: "Examacro",
  3332. height: math.unit(10e9, "lightyears")
  3333. }
  3334. ]
  3335. ))
  3336. characterMakers.push(() => makeCharacter(
  3337. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3338. {
  3339. front: {
  3340. height: math.unit(8, "feet"),
  3341. weight: math.unit(500, "lb"),
  3342. name: "Front",
  3343. image: {
  3344. source: "./media/characters/rick/front.svg"
  3345. }
  3346. }
  3347. },
  3348. [
  3349. {
  3350. name: "Normal",
  3351. height: math.unit(8, "feet"),
  3352. default: true
  3353. },
  3354. {
  3355. name: "Macro",
  3356. height: math.unit(5, "km")
  3357. }
  3358. ]
  3359. ))
  3360. characterMakers.push(() => makeCharacter(
  3361. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3362. {
  3363. front: {
  3364. height: math.unit(8, "feet"),
  3365. weight: math.unit(120, "lb"),
  3366. name: "Front",
  3367. image: {
  3368. source: "./media/characters/ona/front.svg"
  3369. }
  3370. },
  3371. frontAlt: {
  3372. height: math.unit(8, "feet"),
  3373. weight: math.unit(120, "lb"),
  3374. name: "Front (Alt)",
  3375. image: {
  3376. source: "./media/characters/ona/front-alt.svg"
  3377. }
  3378. },
  3379. back: {
  3380. height: math.unit(8, "feet"),
  3381. weight: math.unit(120, "lb"),
  3382. name: "Back",
  3383. image: {
  3384. source: "./media/characters/ona/back.svg"
  3385. }
  3386. },
  3387. foot: {
  3388. height: math.unit(1.1, "feet"),
  3389. name: "Foot",
  3390. image: {
  3391. source: "./media/characters/ona/foot.svg"
  3392. }
  3393. }
  3394. },
  3395. [
  3396. {
  3397. name: "Megamacro",
  3398. height: math.unit(70, "km"),
  3399. default: true
  3400. },
  3401. {
  3402. name: "Gigamacro",
  3403. height: math.unit(681818, "miles")
  3404. },
  3405. {
  3406. name: "Examacro",
  3407. height: math.unit(3800000, "lightyears")
  3408. },
  3409. ]
  3410. ))
  3411. characterMakers.push(() => makeCharacter(
  3412. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3413. {
  3414. front: {
  3415. height: math.unit(12, "feet"),
  3416. weight: math.unit(3000, "lb"),
  3417. name: "Front",
  3418. image: {
  3419. source: "./media/characters/mech/front.svg",
  3420. extra: 2900/2770,
  3421. bottom: 110/3010
  3422. }
  3423. },
  3424. back: {
  3425. height: math.unit(12, "feet"),
  3426. weight: math.unit(3000, "lb"),
  3427. name: "Back",
  3428. image: {
  3429. source: "./media/characters/mech/back.svg",
  3430. extra: 3011/2890,
  3431. bottom: 94/3105
  3432. }
  3433. },
  3434. maw: {
  3435. height: math.unit(3.07, "feet"),
  3436. name: "Maw",
  3437. image: {
  3438. source: "./media/characters/mech/maw.svg"
  3439. }
  3440. },
  3441. head: {
  3442. height: math.unit(2.82, "feet"),
  3443. name: "Head",
  3444. image: {
  3445. source: "./media/characters/mech/head.svg"
  3446. }
  3447. },
  3448. dick: {
  3449. height: math.unit(1.43, "feet"),
  3450. name: "Dick",
  3451. image: {
  3452. source: "./media/characters/mech/dick.svg"
  3453. }
  3454. },
  3455. },
  3456. [
  3457. {
  3458. name: "Normal",
  3459. height: math.unit(12, "feet")
  3460. },
  3461. {
  3462. name: "Macro",
  3463. height: math.unit(300, "feet"),
  3464. default: true
  3465. },
  3466. {
  3467. name: "Macro+",
  3468. height: math.unit(1500, "feet")
  3469. },
  3470. ]
  3471. ))
  3472. characterMakers.push(() => makeCharacter(
  3473. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3474. {
  3475. front: {
  3476. height: math.unit(1.3, "meter"),
  3477. weight: math.unit(30, "kg"),
  3478. name: "Front",
  3479. image: {
  3480. source: "./media/characters/gregory/front.svg",
  3481. }
  3482. }
  3483. },
  3484. [
  3485. {
  3486. name: "Normal",
  3487. height: math.unit(1.3, "meter"),
  3488. default: true
  3489. },
  3490. {
  3491. name: "Macro",
  3492. height: math.unit(20, "meter")
  3493. }
  3494. ]
  3495. ))
  3496. characterMakers.push(() => makeCharacter(
  3497. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3498. {
  3499. front: {
  3500. height: math.unit(2.8, "meter"),
  3501. weight: math.unit(200, "kg"),
  3502. name: "Front",
  3503. image: {
  3504. source: "./media/characters/elory/front.svg",
  3505. }
  3506. }
  3507. },
  3508. [
  3509. {
  3510. name: "Normal",
  3511. height: math.unit(2.8, "meter"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Macro",
  3516. height: math.unit(38, "meter")
  3517. }
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(470, "feet"),
  3525. weight: math.unit(924, "tons"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/angelpatamon/front.svg",
  3529. }
  3530. }
  3531. },
  3532. [
  3533. {
  3534. name: "Normal",
  3535. height: math.unit(470, "feet"),
  3536. default: true
  3537. },
  3538. {
  3539. name: "Deity Size I",
  3540. height: math.unit(28651.2, "km")
  3541. },
  3542. {
  3543. name: "Deity Size II",
  3544. height: math.unit(171907.2, "km")
  3545. }
  3546. ]
  3547. ))
  3548. characterMakers.push(() => makeCharacter(
  3549. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3550. {
  3551. side: {
  3552. height: math.unit(7.2, "meter"),
  3553. weight: math.unit(8.2, "tons"),
  3554. name: "Side",
  3555. image: {
  3556. source: "./media/characters/cryae/side.svg",
  3557. extra: 3500 / 1500
  3558. }
  3559. }
  3560. },
  3561. [
  3562. {
  3563. name: "Normal",
  3564. height: math.unit(7.2, "meter"),
  3565. default: true
  3566. }
  3567. ]
  3568. ))
  3569. characterMakers.push(() => makeCharacter(
  3570. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3571. {
  3572. front: {
  3573. height: math.unit(6, "feet"),
  3574. weight: math.unit(175, "lb"),
  3575. name: "Front",
  3576. image: {
  3577. source: "./media/characters/xera/front.svg",
  3578. extra: 2377 / 1972,
  3579. bottom: 75.5 / 2452
  3580. }
  3581. },
  3582. side: {
  3583. height: math.unit(6, "feet"),
  3584. weight: math.unit(175, "lb"),
  3585. name: "Side",
  3586. image: {
  3587. source: "./media/characters/xera/side.svg",
  3588. extra: 2345 / 2019,
  3589. bottom: 39.7 / 2384
  3590. }
  3591. },
  3592. back: {
  3593. height: math.unit(6, "feet"),
  3594. weight: math.unit(175, "lb"),
  3595. name: "Back",
  3596. image: {
  3597. source: "./media/characters/xera/back.svg",
  3598. extra: 2095 / 1984,
  3599. bottom: 67 / 2166
  3600. }
  3601. },
  3602. },
  3603. [
  3604. {
  3605. name: "Small",
  3606. height: math.unit(10, "feet")
  3607. },
  3608. {
  3609. name: "Macro",
  3610. height: math.unit(500, "meters"),
  3611. default: true
  3612. },
  3613. {
  3614. name: "Macro+",
  3615. height: math.unit(10, "km")
  3616. },
  3617. {
  3618. name: "Gigamacro",
  3619. height: math.unit(25000, "km")
  3620. },
  3621. {
  3622. name: "Teramacro",
  3623. height: math.unit(3e6, "km")
  3624. }
  3625. ]
  3626. ))
  3627. characterMakers.push(() => makeCharacter(
  3628. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3629. {
  3630. front: {
  3631. height: math.unit(6, "feet"),
  3632. weight: math.unit(175, "lb"),
  3633. name: "Front",
  3634. image: {
  3635. source: "./media/characters/nebula/front.svg",
  3636. extra: 2566 / 2362,
  3637. bottom: 81 / 2644
  3638. }
  3639. }
  3640. },
  3641. [
  3642. {
  3643. name: "Small",
  3644. height: math.unit(4.5, "meters")
  3645. },
  3646. {
  3647. name: "Macro",
  3648. height: math.unit(1500, "meters"),
  3649. default: true
  3650. },
  3651. {
  3652. name: "Megamacro",
  3653. height: math.unit(150, "km")
  3654. },
  3655. {
  3656. name: "Gigamacro",
  3657. height: math.unit(27000, "km")
  3658. }
  3659. ]
  3660. ))
  3661. characterMakers.push(() => makeCharacter(
  3662. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3663. {
  3664. front: {
  3665. height: math.unit(6, "feet"),
  3666. weight: math.unit(225, "lb"),
  3667. name: "Front",
  3668. image: {
  3669. source: "./media/characters/abysgar/front.svg"
  3670. }
  3671. }
  3672. },
  3673. [
  3674. {
  3675. name: "Small",
  3676. height: math.unit(4.5, "meters")
  3677. },
  3678. {
  3679. name: "Macro",
  3680. height: math.unit(1250, "meters"),
  3681. default: true
  3682. },
  3683. {
  3684. name: "Megamacro",
  3685. height: math.unit(125, "km")
  3686. },
  3687. {
  3688. name: "Gigamacro",
  3689. height: math.unit(26000, "km")
  3690. }
  3691. ]
  3692. ))
  3693. characterMakers.push(() => makeCharacter(
  3694. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3695. {
  3696. front: {
  3697. height: math.unit(6, "feet"),
  3698. weight: math.unit(180, "lb"),
  3699. name: "Front",
  3700. image: {
  3701. source: "./media/characters/yakuz/front.svg"
  3702. }
  3703. }
  3704. },
  3705. [
  3706. {
  3707. name: "Small",
  3708. height: math.unit(5, "meters")
  3709. },
  3710. {
  3711. name: "Macro",
  3712. height: math.unit(1500, "meters"),
  3713. default: true
  3714. },
  3715. {
  3716. name: "Megamacro",
  3717. height: math.unit(200, "km")
  3718. },
  3719. {
  3720. name: "Gigamacro",
  3721. height: math.unit(100000, "km")
  3722. }
  3723. ]
  3724. ))
  3725. characterMakers.push(() => makeCharacter(
  3726. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3727. {
  3728. front: {
  3729. height: math.unit(6, "feet"),
  3730. weight: math.unit(175, "lb"),
  3731. name: "Front",
  3732. image: {
  3733. source: "./media/characters/mirova/front.svg",
  3734. extra: 3334 / 3071,
  3735. bottom: 42 / 3375.6
  3736. }
  3737. }
  3738. },
  3739. [
  3740. {
  3741. name: "Small",
  3742. height: math.unit(5, "meters")
  3743. },
  3744. {
  3745. name: "Macro",
  3746. height: math.unit(900, "meters"),
  3747. default: true
  3748. },
  3749. {
  3750. name: "Megamacro",
  3751. height: math.unit(135, "km")
  3752. },
  3753. {
  3754. name: "Gigamacro",
  3755. height: math.unit(20000, "km")
  3756. }
  3757. ]
  3758. ))
  3759. characterMakers.push(() => makeCharacter(
  3760. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3761. {
  3762. side: {
  3763. height: math.unit(28.35, "feet"),
  3764. weight: math.unit(99.75, "tons"),
  3765. name: "Side",
  3766. image: {
  3767. source: "./media/characters/asana-mech/side.svg",
  3768. extra: 923 / 699,
  3769. bottom: 50 / 975
  3770. }
  3771. },
  3772. chaingun: {
  3773. height: math.unit(7, "feet"),
  3774. weight: math.unit(2400, "lb"),
  3775. name: "Chaingun",
  3776. image: {
  3777. source: "./media/characters/asana-mech/chaingun.svg"
  3778. }
  3779. },
  3780. laser: {
  3781. height: math.unit(7.12, "feet"),
  3782. weight: math.unit(2000, "lb"),
  3783. name: "Laser",
  3784. image: {
  3785. source: "./media/characters/asana-mech/laser.svg"
  3786. }
  3787. },
  3788. },
  3789. [
  3790. {
  3791. name: "Normal",
  3792. height: math.unit(28.35, "feet"),
  3793. default: true
  3794. },
  3795. {
  3796. name: "Macro",
  3797. height: math.unit(2500, "feet")
  3798. },
  3799. {
  3800. name: "Megamacro",
  3801. height: math.unit(25, "miles")
  3802. },
  3803. {
  3804. name: "Examacro",
  3805. height: math.unit(6e8, "lightyears")
  3806. },
  3807. ]
  3808. ))
  3809. characterMakers.push(() => makeCharacter(
  3810. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3811. {
  3812. front: {
  3813. height: math.unit(5, "meters"),
  3814. weight: math.unit(1000, "kg"),
  3815. name: "Front",
  3816. image: {
  3817. source: "./media/characters/asche/front.svg",
  3818. extra: 1258 / 1190,
  3819. bottom: 47 / 1305
  3820. }
  3821. },
  3822. frontUnderwear: {
  3823. height: math.unit(5, "meters"),
  3824. weight: math.unit(1000, "kg"),
  3825. name: "Front (Underwear)",
  3826. image: {
  3827. source: "./media/characters/asche/front-underwear.svg",
  3828. extra: 1258 / 1190,
  3829. bottom: 47 / 1305
  3830. }
  3831. },
  3832. frontDressed: {
  3833. height: math.unit(5, "meters"),
  3834. weight: math.unit(1000, "kg"),
  3835. name: "Front (Dressed)",
  3836. image: {
  3837. source: "./media/characters/asche/front-dressed.svg",
  3838. extra: 1258 / 1190,
  3839. bottom: 47 / 1305
  3840. }
  3841. },
  3842. frontArmor: {
  3843. height: math.unit(5, "meters"),
  3844. weight: math.unit(1000, "kg"),
  3845. name: "Front (Armored)",
  3846. image: {
  3847. source: "./media/characters/asche/front-armored.svg",
  3848. extra: 1374 / 1308,
  3849. bottom: 23 / 1397
  3850. }
  3851. },
  3852. mp724: {
  3853. height: math.unit(0.96, "meters"),
  3854. weight: math.unit(38, "kg"),
  3855. name: "H&K MP724",
  3856. image: {
  3857. source: "./media/characters/asche/h&k-mp724.svg"
  3858. }
  3859. },
  3860. side: {
  3861. height: math.unit(5, "meters"),
  3862. weight: math.unit(1000, "kg"),
  3863. name: "Side",
  3864. image: {
  3865. source: "./media/characters/asche/side.svg",
  3866. extra: 1717 / 1609,
  3867. bottom: 0.005
  3868. }
  3869. },
  3870. back: {
  3871. height: math.unit(5, "meters"),
  3872. weight: math.unit(1000, "kg"),
  3873. name: "Back",
  3874. image: {
  3875. source: "./media/characters/asche/back.svg",
  3876. extra: 1570 / 1501
  3877. }
  3878. },
  3879. },
  3880. [
  3881. {
  3882. name: "DEFCON 5",
  3883. height: math.unit(5, "meters")
  3884. },
  3885. {
  3886. name: "DEFCON 4",
  3887. height: math.unit(500, "meters"),
  3888. default: true
  3889. },
  3890. {
  3891. name: "DEFCON 3",
  3892. height: math.unit(5, "km")
  3893. },
  3894. {
  3895. name: "DEFCON 2",
  3896. height: math.unit(500, "km")
  3897. },
  3898. {
  3899. name: "DEFCON 1",
  3900. height: math.unit(500000, "km")
  3901. },
  3902. {
  3903. name: "DEFCON 0",
  3904. height: math.unit(3, "gigaparsecs")
  3905. },
  3906. ]
  3907. ))
  3908. characterMakers.push(() => makeCharacter(
  3909. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3910. {
  3911. front: {
  3912. height: math.unit(2, "meters"),
  3913. weight: math.unit(76, "kg"),
  3914. name: "Front",
  3915. image: {
  3916. source: "./media/characters/gale/front.svg"
  3917. }
  3918. },
  3919. frontAlt1: {
  3920. height: math.unit(2, "meters"),
  3921. weight: math.unit(76, "kg"),
  3922. name: "Front (Alt 1)",
  3923. image: {
  3924. source: "./media/characters/gale/front-alt-1.svg"
  3925. }
  3926. },
  3927. frontAlt2: {
  3928. height: math.unit(2, "meters"),
  3929. weight: math.unit(76, "kg"),
  3930. name: "Front (Alt 2)",
  3931. image: {
  3932. source: "./media/characters/gale/front-alt-2.svg"
  3933. }
  3934. },
  3935. },
  3936. [
  3937. {
  3938. name: "Normal",
  3939. height: math.unit(7, "feet")
  3940. },
  3941. {
  3942. name: "Macro",
  3943. height: math.unit(150, "feet"),
  3944. default: true
  3945. },
  3946. {
  3947. name: "Macro+",
  3948. height: math.unit(300, "feet")
  3949. },
  3950. ]
  3951. ))
  3952. characterMakers.push(() => makeCharacter(
  3953. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3954. {
  3955. front: {
  3956. height: math.unit(2, "meters"),
  3957. weight: math.unit(76, "kg"),
  3958. name: "Front",
  3959. image: {
  3960. source: "./media/characters/draylen/front.svg"
  3961. }
  3962. }
  3963. },
  3964. [
  3965. {
  3966. name: "Macro",
  3967. height: math.unit(150, "feet"),
  3968. default: true
  3969. }
  3970. ]
  3971. ))
  3972. characterMakers.push(() => makeCharacter(
  3973. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3974. {
  3975. front: {
  3976. height: math.unit(7 + 9 / 12, "feet"),
  3977. weight: math.unit(379, "lbs"),
  3978. name: "Front",
  3979. image: {
  3980. source: "./media/characters/chez/front.svg"
  3981. }
  3982. },
  3983. side: {
  3984. height: math.unit(7 + 9 / 12, "feet"),
  3985. weight: math.unit(379, "lbs"),
  3986. name: "Side",
  3987. image: {
  3988. source: "./media/characters/chez/side.svg"
  3989. }
  3990. }
  3991. },
  3992. [
  3993. {
  3994. name: "Normal",
  3995. height: math.unit(7 + 9 / 12, "feet"),
  3996. default: true
  3997. },
  3998. {
  3999. name: "God King",
  4000. height: math.unit(9750000, "meters")
  4001. }
  4002. ]
  4003. ))
  4004. characterMakers.push(() => makeCharacter(
  4005. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4006. {
  4007. front: {
  4008. height: math.unit(6, "feet"),
  4009. weight: math.unit(275, "lbs"),
  4010. name: "Front",
  4011. image: {
  4012. source: "./media/characters/kaylum/front.svg",
  4013. bottom: 0.01,
  4014. extra: 1166 / 1031
  4015. }
  4016. },
  4017. frontWingless: {
  4018. height: math.unit(6, "feet"),
  4019. weight: math.unit(275, "lbs"),
  4020. name: "Front (Wingless)",
  4021. image: {
  4022. source: "./media/characters/kaylum/front-wingless.svg",
  4023. bottom: 0.01,
  4024. extra: 1117 / 1031
  4025. }
  4026. }
  4027. },
  4028. [
  4029. {
  4030. name: "Normal",
  4031. height: math.unit(3.05, "meters")
  4032. },
  4033. {
  4034. name: "Master",
  4035. height: math.unit(5.5, "meters")
  4036. },
  4037. {
  4038. name: "Rampage",
  4039. height: math.unit(19, "meters")
  4040. },
  4041. {
  4042. name: "Macro Lite",
  4043. height: math.unit(37, "meters")
  4044. },
  4045. {
  4046. name: "Hyper Predator",
  4047. height: math.unit(61, "meters")
  4048. },
  4049. {
  4050. name: "Macro",
  4051. height: math.unit(138, "meters"),
  4052. default: true
  4053. }
  4054. ]
  4055. ))
  4056. characterMakers.push(() => makeCharacter(
  4057. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4058. {
  4059. front: {
  4060. height: math.unit(6, "feet"),
  4061. weight: math.unit(150, "lbs"),
  4062. name: "Front",
  4063. image: {
  4064. source: "./media/characters/geta/front.svg"
  4065. }
  4066. }
  4067. },
  4068. [
  4069. {
  4070. name: "Micro",
  4071. height: math.unit(3, "inches"),
  4072. default: true
  4073. },
  4074. {
  4075. name: "Normal",
  4076. height: math.unit(5 + 5 / 12, "feet")
  4077. }
  4078. ]
  4079. ))
  4080. characterMakers.push(() => makeCharacter(
  4081. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4082. {
  4083. front: {
  4084. height: math.unit(6, "feet"),
  4085. weight: math.unit(300, "lbs"),
  4086. name: "Front",
  4087. image: {
  4088. source: "./media/characters/tyrnn/front.svg"
  4089. }
  4090. }
  4091. },
  4092. [
  4093. {
  4094. name: "Main Height",
  4095. height: math.unit(355, "feet"),
  4096. default: true
  4097. },
  4098. {
  4099. name: "Fave. Height",
  4100. height: math.unit(2400, "feet")
  4101. }
  4102. ]
  4103. ))
  4104. characterMakers.push(() => makeCharacter(
  4105. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4106. {
  4107. front: {
  4108. height: math.unit(6, "feet"),
  4109. weight: math.unit(300, "lbs"),
  4110. name: "Front",
  4111. image: {
  4112. source: "./media/characters/appledectomy/front.svg"
  4113. }
  4114. }
  4115. },
  4116. [
  4117. {
  4118. name: "Macro",
  4119. height: math.unit(2500, "feet")
  4120. },
  4121. {
  4122. name: "Megamacro",
  4123. height: math.unit(50, "miles"),
  4124. default: true
  4125. },
  4126. {
  4127. name: "Gigamacro",
  4128. height: math.unit(5000, "miles")
  4129. },
  4130. {
  4131. name: "Teramacro",
  4132. height: math.unit(250000, "miles")
  4133. },
  4134. ]
  4135. ))
  4136. characterMakers.push(() => makeCharacter(
  4137. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4138. {
  4139. front: {
  4140. height: math.unit(6, "feet"),
  4141. weight: math.unit(200, "lbs"),
  4142. name: "Front",
  4143. image: {
  4144. source: "./media/characters/vulpes/front.svg",
  4145. extra: 573 / 543,
  4146. bottom: 0.033
  4147. }
  4148. },
  4149. side: {
  4150. height: math.unit(6, "feet"),
  4151. weight: math.unit(200, "lbs"),
  4152. name: "Side",
  4153. image: {
  4154. source: "./media/characters/vulpes/side.svg",
  4155. extra: 577 / 549,
  4156. bottom: 11 / 588
  4157. }
  4158. },
  4159. back: {
  4160. height: math.unit(6, "feet"),
  4161. weight: math.unit(200, "lbs"),
  4162. name: "Back",
  4163. image: {
  4164. source: "./media/characters/vulpes/back.svg",
  4165. extra: 573 / 549,
  4166. bottom: 20 / 593
  4167. }
  4168. },
  4169. feet: {
  4170. height: math.unit(1.276, "feet"),
  4171. name: "Feet",
  4172. image: {
  4173. source: "./media/characters/vulpes/feet.svg"
  4174. }
  4175. },
  4176. maw: {
  4177. height: math.unit(1.18, "feet"),
  4178. name: "Maw",
  4179. image: {
  4180. source: "./media/characters/vulpes/maw.svg"
  4181. }
  4182. },
  4183. },
  4184. [
  4185. {
  4186. name: "Micro",
  4187. height: math.unit(2, "inches")
  4188. },
  4189. {
  4190. name: "Normal",
  4191. height: math.unit(6.3, "feet")
  4192. },
  4193. {
  4194. name: "Macro",
  4195. height: math.unit(850, "feet")
  4196. },
  4197. {
  4198. name: "Megamacro",
  4199. height: math.unit(7500, "feet"),
  4200. default: true
  4201. },
  4202. {
  4203. name: "Gigamacro",
  4204. height: math.unit(570000, "miles")
  4205. }
  4206. ]
  4207. ))
  4208. characterMakers.push(() => makeCharacter(
  4209. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4210. {
  4211. front: {
  4212. height: math.unit(6, "feet"),
  4213. weight: math.unit(210, "lbs"),
  4214. name: "Front",
  4215. image: {
  4216. source: "./media/characters/rain-fallen/front.svg"
  4217. }
  4218. },
  4219. side: {
  4220. height: math.unit(6, "feet"),
  4221. weight: math.unit(210, "lbs"),
  4222. name: "Side",
  4223. image: {
  4224. source: "./media/characters/rain-fallen/side.svg"
  4225. }
  4226. },
  4227. back: {
  4228. height: math.unit(6, "feet"),
  4229. weight: math.unit(210, "lbs"),
  4230. name: "Back",
  4231. image: {
  4232. source: "./media/characters/rain-fallen/back.svg"
  4233. }
  4234. },
  4235. feral: {
  4236. height: math.unit(9, "feet"),
  4237. weight: math.unit(700, "lbs"),
  4238. name: "Feral",
  4239. image: {
  4240. source: "./media/characters/rain-fallen/feral.svg"
  4241. }
  4242. },
  4243. },
  4244. [
  4245. {
  4246. name: "Normal",
  4247. height: math.unit(5, "meter")
  4248. },
  4249. {
  4250. name: "Macro",
  4251. height: math.unit(150, "meter"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Megamacro",
  4256. height: math.unit(278e6, "meter")
  4257. },
  4258. {
  4259. name: "Gigamacro",
  4260. height: math.unit(2e9, "meter")
  4261. },
  4262. {
  4263. name: "Teramacro",
  4264. height: math.unit(8e12, "meter")
  4265. },
  4266. {
  4267. name: "Devourer",
  4268. height: math.unit(14, "zettameters")
  4269. },
  4270. {
  4271. name: "Scarlet King",
  4272. height: math.unit(18, "yottameters")
  4273. },
  4274. {
  4275. name: "Void",
  4276. height: math.unit(6.66e66, "yottameters")
  4277. }
  4278. ]
  4279. ))
  4280. characterMakers.push(() => makeCharacter(
  4281. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4282. {
  4283. standing: {
  4284. height: math.unit(6, "feet"),
  4285. weight: math.unit(180, "lbs"),
  4286. name: "Standing",
  4287. image: {
  4288. source: "./media/characters/zaakira/standing.svg"
  4289. }
  4290. },
  4291. laying: {
  4292. height: math.unit(3, "feet"),
  4293. weight: math.unit(180, "lbs"),
  4294. name: "Laying",
  4295. image: {
  4296. source: "./media/characters/zaakira/laying.svg"
  4297. }
  4298. },
  4299. },
  4300. [
  4301. {
  4302. name: "Normal",
  4303. height: math.unit(12, "feet")
  4304. },
  4305. {
  4306. name: "Macro",
  4307. height: math.unit(279, "feet"),
  4308. default: true
  4309. }
  4310. ]
  4311. ))
  4312. characterMakers.push(() => makeCharacter(
  4313. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4314. {
  4315. femSfw: {
  4316. height: math.unit(8, "feet"),
  4317. weight: math.unit(350, "lb"),
  4318. name: "Fem",
  4319. image: {
  4320. source: "./media/characters/sigvald/fem-sfw.svg",
  4321. extra: 182 / 164,
  4322. bottom: 8.7 / 190.5
  4323. }
  4324. },
  4325. femNsfw: {
  4326. height: math.unit(8, "feet"),
  4327. weight: math.unit(350, "lb"),
  4328. name: "Fem (NSFW)",
  4329. image: {
  4330. source: "./media/characters/sigvald/fem-nsfw.svg",
  4331. extra: 182 / 164,
  4332. bottom: 8.7 / 190.5
  4333. }
  4334. },
  4335. maleNsfw: {
  4336. height: math.unit(8, "feet"),
  4337. weight: math.unit(350, "lb"),
  4338. name: "Male (NSFW)",
  4339. image: {
  4340. source: "./media/characters/sigvald/male-nsfw.svg",
  4341. extra: 182 / 164,
  4342. bottom: 8.7 / 190.5
  4343. }
  4344. },
  4345. hermNsfw: {
  4346. height: math.unit(8, "feet"),
  4347. weight: math.unit(350, "lb"),
  4348. name: "Herm (NSFW)",
  4349. image: {
  4350. source: "./media/characters/sigvald/herm-nsfw.svg",
  4351. extra: 182 / 164,
  4352. bottom: 8.7 / 190.5
  4353. }
  4354. },
  4355. dick: {
  4356. height: math.unit(2.36, "feet"),
  4357. name: "Dick",
  4358. image: {
  4359. source: "./media/characters/sigvald/dick.svg"
  4360. }
  4361. },
  4362. eye: {
  4363. height: math.unit(0.31, "feet"),
  4364. name: "Eye",
  4365. image: {
  4366. source: "./media/characters/sigvald/eye.svg"
  4367. }
  4368. },
  4369. mouth: {
  4370. height: math.unit(0.92, "feet"),
  4371. name: "Mouth",
  4372. image: {
  4373. source: "./media/characters/sigvald/mouth.svg"
  4374. }
  4375. },
  4376. paws: {
  4377. height: math.unit(2.2, "feet"),
  4378. name: "Paws",
  4379. image: {
  4380. source: "./media/characters/sigvald/paws.svg"
  4381. }
  4382. }
  4383. },
  4384. [
  4385. {
  4386. name: "Normal",
  4387. height: math.unit(8, "feet")
  4388. },
  4389. {
  4390. name: "Large",
  4391. height: math.unit(12, "feet")
  4392. },
  4393. {
  4394. name: "Larger",
  4395. height: math.unit(20, "feet")
  4396. },
  4397. {
  4398. name: "Macro",
  4399. height: math.unit(150, "feet")
  4400. },
  4401. {
  4402. name: "Macro+",
  4403. height: math.unit(200, "feet"),
  4404. default: true
  4405. },
  4406. ]
  4407. ))
  4408. characterMakers.push(() => makeCharacter(
  4409. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4410. {
  4411. side: {
  4412. height: math.unit(12, "feet"),
  4413. weight: math.unit(2000, "kg"),
  4414. name: "Side",
  4415. image: {
  4416. source: "./media/characters/scott/side.svg",
  4417. extra: 754 / 724,
  4418. bottom: 0.069
  4419. }
  4420. },
  4421. upright: {
  4422. height: math.unit(12, "feet"),
  4423. weight: math.unit(2000, "kg"),
  4424. name: "Upright",
  4425. image: {
  4426. source: "./media/characters/scott/upright.svg",
  4427. extra: 3881 / 3722,
  4428. bottom: 0.05
  4429. }
  4430. },
  4431. },
  4432. [
  4433. {
  4434. name: "Normal",
  4435. height: math.unit(12, "feet"),
  4436. default: true
  4437. },
  4438. ]
  4439. ))
  4440. characterMakers.push(() => makeCharacter(
  4441. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4442. {
  4443. side: {
  4444. height: math.unit(8, "meters"),
  4445. weight: math.unit(84755, "lbs"),
  4446. name: "Side",
  4447. image: {
  4448. source: "./media/characters/tobias/side.svg",
  4449. extra: 1474 / 1096,
  4450. bottom: 38.9 / 1513.1235
  4451. }
  4452. },
  4453. },
  4454. [
  4455. {
  4456. name: "Normal",
  4457. height: math.unit(8, "meters"),
  4458. default: true
  4459. },
  4460. ]
  4461. ))
  4462. characterMakers.push(() => makeCharacter(
  4463. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4464. {
  4465. front: {
  4466. height: math.unit(5.5, "feet"),
  4467. weight: math.unit(400, "lbs"),
  4468. name: "Front",
  4469. image: {
  4470. source: "./media/characters/kieran/front.svg",
  4471. extra: 2694 / 2364,
  4472. bottom: 217 / 2908
  4473. }
  4474. },
  4475. side: {
  4476. height: math.unit(5.5, "feet"),
  4477. weight: math.unit(400, "lbs"),
  4478. name: "Side",
  4479. image: {
  4480. source: "./media/characters/kieran/side.svg",
  4481. extra: 875 / 777,
  4482. bottom: 84.6 / 959
  4483. }
  4484. },
  4485. },
  4486. [
  4487. {
  4488. name: "Normal",
  4489. height: math.unit(5.5, "feet"),
  4490. default: true
  4491. },
  4492. ]
  4493. ))
  4494. characterMakers.push(() => makeCharacter(
  4495. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4496. {
  4497. side: {
  4498. height: math.unit(2, "meters"),
  4499. weight: math.unit(70, "kg"),
  4500. name: "Side",
  4501. image: {
  4502. source: "./media/characters/sanya/side.svg",
  4503. bottom: 0.02,
  4504. extra: 1.02
  4505. }
  4506. },
  4507. },
  4508. [
  4509. {
  4510. name: "Small",
  4511. height: math.unit(2, "meters")
  4512. },
  4513. {
  4514. name: "Normal",
  4515. height: math.unit(3, "meters")
  4516. },
  4517. {
  4518. name: "Macro",
  4519. height: math.unit(16, "meters"),
  4520. default: true
  4521. },
  4522. ]
  4523. ))
  4524. characterMakers.push(() => makeCharacter(
  4525. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4526. {
  4527. front: {
  4528. height: math.unit(2, "meters"),
  4529. weight: math.unit(120, "kg"),
  4530. name: "Front",
  4531. image: {
  4532. source: "./media/characters/miranda/front.svg",
  4533. extra: 195 / 185,
  4534. bottom: 10.9 / 206.5
  4535. }
  4536. },
  4537. back: {
  4538. height: math.unit(2, "meters"),
  4539. weight: math.unit(120, "kg"),
  4540. name: "Back",
  4541. image: {
  4542. source: "./media/characters/miranda/back.svg",
  4543. extra: 201 / 193,
  4544. bottom: 2.3 / 203.7
  4545. }
  4546. },
  4547. },
  4548. [
  4549. {
  4550. name: "Normal",
  4551. height: math.unit(10, "feet"),
  4552. default: true
  4553. }
  4554. ]
  4555. ))
  4556. characterMakers.push(() => makeCharacter(
  4557. { name: "James", species: ["deer"], tags: ["anthro"] },
  4558. {
  4559. side: {
  4560. height: math.unit(2, "meters"),
  4561. weight: math.unit(100, "kg"),
  4562. name: "Front",
  4563. image: {
  4564. source: "./media/characters/james/front.svg",
  4565. extra: 10 / 8.5
  4566. }
  4567. },
  4568. },
  4569. [
  4570. {
  4571. name: "Normal",
  4572. height: math.unit(8.5, "feet"),
  4573. default: true
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4579. {
  4580. side: {
  4581. height: math.unit(9.5, "feet"),
  4582. weight: math.unit(2500, "lbs"),
  4583. name: "Side",
  4584. image: {
  4585. source: "./media/characters/heather/side.svg"
  4586. }
  4587. },
  4588. },
  4589. [
  4590. {
  4591. name: "Normal",
  4592. height: math.unit(9.5, "feet"),
  4593. default: true
  4594. }
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4599. {
  4600. side: {
  4601. height: math.unit(6.5, "feet"),
  4602. weight: math.unit(400, "lbs"),
  4603. name: "Side",
  4604. image: {
  4605. source: "./media/characters/lukas/side.svg",
  4606. extra: 7.25 / 6.5
  4607. }
  4608. },
  4609. },
  4610. [
  4611. {
  4612. name: "Normal",
  4613. height: math.unit(6.5, "feet"),
  4614. default: true
  4615. }
  4616. ]
  4617. ))
  4618. characterMakers.push(() => makeCharacter(
  4619. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4620. {
  4621. side: {
  4622. height: math.unit(5, "feet"),
  4623. weight: math.unit(3000, "lbs"),
  4624. name: "Side",
  4625. image: {
  4626. source: "./media/characters/louise/side.svg"
  4627. }
  4628. },
  4629. },
  4630. [
  4631. {
  4632. name: "Normal",
  4633. height: math.unit(5, "feet"),
  4634. default: true
  4635. }
  4636. ]
  4637. ))
  4638. characterMakers.push(() => makeCharacter(
  4639. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4640. {
  4641. side: {
  4642. height: math.unit(6, "feet"),
  4643. weight: math.unit(150, "lbs"),
  4644. name: "Side",
  4645. image: {
  4646. source: "./media/characters/ramona/side.svg"
  4647. }
  4648. },
  4649. },
  4650. [
  4651. {
  4652. name: "Normal",
  4653. height: math.unit(5.3, "meters"),
  4654. default: true
  4655. },
  4656. {
  4657. name: "Macro",
  4658. height: math.unit(20, "stories")
  4659. },
  4660. {
  4661. name: "Macro+",
  4662. height: math.unit(50, "stories")
  4663. },
  4664. ]
  4665. ))
  4666. characterMakers.push(() => makeCharacter(
  4667. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4668. {
  4669. standing: {
  4670. height: math.unit(5.75, "feet"),
  4671. weight: math.unit(160, "lbs"),
  4672. name: "Standing",
  4673. image: {
  4674. source: "./media/characters/deerpuff/standing.svg",
  4675. extra: 682 / 624
  4676. }
  4677. },
  4678. sitting: {
  4679. height: math.unit(5.75 / 1.79, "feet"),
  4680. weight: math.unit(160, "lbs"),
  4681. name: "Sitting",
  4682. image: {
  4683. source: "./media/characters/deerpuff/sitting.svg",
  4684. bottom: 44 / 400,
  4685. extra: 1
  4686. }
  4687. },
  4688. taurLaying: {
  4689. height: math.unit(6, "feet"),
  4690. weight: math.unit(400, "lbs"),
  4691. name: "Taur (Laying)",
  4692. image: {
  4693. source: "./media/characters/deerpuff/taur-laying.svg"
  4694. }
  4695. },
  4696. },
  4697. [
  4698. {
  4699. name: "Puffball",
  4700. height: math.unit(6, "inches")
  4701. },
  4702. {
  4703. name: "Normalpuff",
  4704. height: math.unit(5.75, "feet")
  4705. },
  4706. {
  4707. name: "Macropuff",
  4708. height: math.unit(1500, "feet"),
  4709. default: true
  4710. },
  4711. {
  4712. name: "Megapuff",
  4713. height: math.unit(500, "miles")
  4714. },
  4715. {
  4716. name: "Gigapuff",
  4717. height: math.unit(250000, "miles")
  4718. },
  4719. {
  4720. name: "Omegapuff",
  4721. height: math.unit(1000, "lightyears")
  4722. },
  4723. ]
  4724. ))
  4725. characterMakers.push(() => makeCharacter(
  4726. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4727. {
  4728. stomping: {
  4729. height: math.unit(6, "feet"),
  4730. weight: math.unit(170, "lbs"),
  4731. name: "Stomping",
  4732. image: {
  4733. source: "./media/characters/vivian/stomping.svg"
  4734. }
  4735. },
  4736. sitting: {
  4737. height: math.unit(6 / 1.75, "feet"),
  4738. weight: math.unit(170, "lbs"),
  4739. name: "Sitting",
  4740. image: {
  4741. source: "./media/characters/vivian/sitting.svg",
  4742. bottom: 1 / 6.4,
  4743. extra: 1,
  4744. }
  4745. },
  4746. },
  4747. [
  4748. {
  4749. name: "Normal",
  4750. height: math.unit(7, "feet"),
  4751. default: true
  4752. },
  4753. {
  4754. name: "Macro",
  4755. height: math.unit(10, "stories")
  4756. },
  4757. {
  4758. name: "Macro+",
  4759. height: math.unit(30, "stories")
  4760. },
  4761. {
  4762. name: "Megamacro",
  4763. height: math.unit(10, "miles")
  4764. },
  4765. {
  4766. name: "Megamacro+",
  4767. height: math.unit(2750000, "meters")
  4768. },
  4769. ]
  4770. ))
  4771. characterMakers.push(() => makeCharacter(
  4772. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4773. {
  4774. front: {
  4775. height: math.unit(6, "feet"),
  4776. weight: math.unit(160, "lbs"),
  4777. name: "Front",
  4778. image: {
  4779. source: "./media/characters/prince/front.svg",
  4780. extra: 3400 / 3000
  4781. }
  4782. },
  4783. jumping: {
  4784. height: math.unit(6, "feet"),
  4785. weight: math.unit(160, "lbs"),
  4786. name: "Jumping",
  4787. image: {
  4788. source: "./media/characters/prince/jump.svg",
  4789. extra: 2555 / 2134
  4790. }
  4791. },
  4792. },
  4793. [
  4794. {
  4795. name: "Normal",
  4796. height: math.unit(7.75, "feet"),
  4797. default: true
  4798. },
  4799. {
  4800. name: "Not cute",
  4801. height: math.unit(17, "feet")
  4802. },
  4803. {
  4804. name: "I said NOT",
  4805. height: math.unit(91, "feet")
  4806. },
  4807. {
  4808. name: "Please stop",
  4809. height: math.unit(560, "feet")
  4810. },
  4811. {
  4812. name: "What have you done",
  4813. height: math.unit(2200, "feet")
  4814. },
  4815. {
  4816. name: "Deer God",
  4817. height: math.unit(3.6, "miles")
  4818. },
  4819. ]
  4820. ))
  4821. characterMakers.push(() => makeCharacter(
  4822. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4823. {
  4824. standing: {
  4825. height: math.unit(6, "feet"),
  4826. weight: math.unit(300, "lbs"),
  4827. name: "Standing",
  4828. image: {
  4829. source: "./media/characters/psymon/standing.svg",
  4830. extra: 1888 / 1810,
  4831. bottom: 0.05
  4832. }
  4833. },
  4834. slithering: {
  4835. height: math.unit(6, "feet"),
  4836. weight: math.unit(300, "lbs"),
  4837. name: "Slithering",
  4838. image: {
  4839. source: "./media/characters/psymon/slithering.svg",
  4840. extra: 1330 / 1224
  4841. }
  4842. },
  4843. slitheringAlt: {
  4844. height: math.unit(6, "feet"),
  4845. weight: math.unit(300, "lbs"),
  4846. name: "Slithering (Alt)",
  4847. image: {
  4848. source: "./media/characters/psymon/slithering-alt.svg",
  4849. extra: 1330 / 1224
  4850. }
  4851. },
  4852. },
  4853. [
  4854. {
  4855. name: "Normal",
  4856. height: math.unit(11.25, "feet"),
  4857. default: true
  4858. },
  4859. {
  4860. name: "Large",
  4861. height: math.unit(27, "feet")
  4862. },
  4863. {
  4864. name: "Giant",
  4865. height: math.unit(87, "feet")
  4866. },
  4867. {
  4868. name: "Macro",
  4869. height: math.unit(365, "feet")
  4870. },
  4871. {
  4872. name: "Megamacro",
  4873. height: math.unit(3, "miles")
  4874. },
  4875. {
  4876. name: "World Serpent",
  4877. height: math.unit(8000, "miles")
  4878. },
  4879. ]
  4880. ))
  4881. characterMakers.push(() => makeCharacter(
  4882. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4883. {
  4884. front: {
  4885. height: math.unit(6, "feet"),
  4886. weight: math.unit(180, "lbs"),
  4887. name: "Front",
  4888. image: {
  4889. source: "./media/characters/daimos/front.svg",
  4890. extra: 4160 / 3897,
  4891. bottom: 0.021
  4892. }
  4893. }
  4894. },
  4895. [
  4896. {
  4897. name: "Normal",
  4898. height: math.unit(8, "feet"),
  4899. default: true
  4900. },
  4901. {
  4902. name: "Big Dog",
  4903. height: math.unit(22, "feet")
  4904. },
  4905. {
  4906. name: "Macro",
  4907. height: math.unit(127, "feet")
  4908. },
  4909. {
  4910. name: "Megamacro",
  4911. height: math.unit(3600, "feet")
  4912. },
  4913. ]
  4914. ))
  4915. characterMakers.push(() => makeCharacter(
  4916. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4917. {
  4918. side: {
  4919. height: math.unit(6, "feet"),
  4920. weight: math.unit(180, "lbs"),
  4921. name: "Side",
  4922. image: {
  4923. source: "./media/characters/blake/side.svg",
  4924. extra: 1212 / 1120,
  4925. bottom: 0.05
  4926. }
  4927. },
  4928. crouched: {
  4929. height: math.unit(6 * 0.57, "feet"),
  4930. weight: math.unit(180, "lbs"),
  4931. name: "Crouched",
  4932. image: {
  4933. source: "./media/characters/blake/crouched.svg",
  4934. extra: 840 / 587,
  4935. bottom: 0.04
  4936. }
  4937. },
  4938. bent: {
  4939. height: math.unit(6 * 0.75, "feet"),
  4940. weight: math.unit(180, "lbs"),
  4941. name: "Bent",
  4942. image: {
  4943. source: "./media/characters/blake/bent.svg",
  4944. extra: 592 / 544,
  4945. bottom: 0.035
  4946. }
  4947. },
  4948. },
  4949. [
  4950. {
  4951. name: "Normal",
  4952. height: math.unit(8 + 1 / 6, "feet"),
  4953. default: true
  4954. },
  4955. {
  4956. name: "Big Backside",
  4957. height: math.unit(37, "feet")
  4958. },
  4959. {
  4960. name: "Subway Shredder",
  4961. height: math.unit(72, "feet")
  4962. },
  4963. {
  4964. name: "City Carver",
  4965. height: math.unit(1675, "feet")
  4966. },
  4967. {
  4968. name: "Tectonic Tweaker",
  4969. height: math.unit(2300, "miles")
  4970. },
  4971. ]
  4972. ))
  4973. characterMakers.push(() => makeCharacter(
  4974. { name: "Guisetto", species: ["beetle", "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/guisetto/front.svg",
  4982. extra: 856 / 817,
  4983. bottom: 0.06
  4984. }
  4985. },
  4986. airborne: {
  4987. height: math.unit(6, "feet"),
  4988. weight: math.unit(180, "lbs"),
  4989. name: "Airborne",
  4990. image: {
  4991. source: "./media/characters/guisetto/airborne.svg",
  4992. extra: 584 / 525
  4993. }
  4994. },
  4995. },
  4996. [
  4997. {
  4998. name: "Normal",
  4999. height: math.unit(10 + 11 / 12, "feet"),
  5000. default: true
  5001. },
  5002. {
  5003. name: "Large",
  5004. height: math.unit(35, "feet")
  5005. },
  5006. {
  5007. name: "Macro",
  5008. height: math.unit(475, "feet")
  5009. },
  5010. ]
  5011. ))
  5012. characterMakers.push(() => makeCharacter(
  5013. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5014. {
  5015. front: {
  5016. height: math.unit(6, "feet"),
  5017. weight: math.unit(180, "lbs"),
  5018. name: "Front",
  5019. image: {
  5020. source: "./media/characters/luxor/front.svg",
  5021. extra: 2940 / 2152
  5022. }
  5023. },
  5024. back: {
  5025. height: math.unit(6, "feet"),
  5026. weight: math.unit(180, "lbs"),
  5027. name: "Back",
  5028. image: {
  5029. source: "./media/characters/luxor/back.svg",
  5030. extra: 1083 / 960
  5031. }
  5032. },
  5033. },
  5034. [
  5035. {
  5036. name: "Normal",
  5037. height: math.unit(5 + 5 / 6, "feet"),
  5038. default: true
  5039. },
  5040. {
  5041. name: "Lamp",
  5042. height: math.unit(50, "feet")
  5043. },
  5044. {
  5045. name: "Lämp",
  5046. height: math.unit(300, "feet")
  5047. },
  5048. {
  5049. name: "The sun is a lamp",
  5050. height: math.unit(250000, "miles")
  5051. },
  5052. ]
  5053. ))
  5054. characterMakers.push(() => makeCharacter(
  5055. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5056. {
  5057. front: {
  5058. height: math.unit(6, "feet"),
  5059. weight: math.unit(50, "lbs"),
  5060. name: "Front",
  5061. image: {
  5062. source: "./media/characters/huoyan/front.svg"
  5063. }
  5064. },
  5065. side: {
  5066. height: math.unit(6, "feet"),
  5067. weight: math.unit(180, "lbs"),
  5068. name: "Side",
  5069. image: {
  5070. source: "./media/characters/huoyan/side.svg"
  5071. }
  5072. },
  5073. },
  5074. [
  5075. {
  5076. name: "Chef",
  5077. height: math.unit(9, "feet")
  5078. },
  5079. {
  5080. name: "Normal",
  5081. height: math.unit(65, "feet"),
  5082. default: true
  5083. },
  5084. {
  5085. name: "Macro",
  5086. height: math.unit(780, "feet")
  5087. },
  5088. {
  5089. name: "Flaming Mountain",
  5090. height: math.unit(4.8, "miles")
  5091. },
  5092. {
  5093. name: "Celestial",
  5094. height: math.unit(765000, "miles")
  5095. },
  5096. ]
  5097. ))
  5098. characterMakers.push(() => makeCharacter(
  5099. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5100. {
  5101. front: {
  5102. height: math.unit(5 + 3 / 4, "feet"),
  5103. weight: math.unit(120, "lbs"),
  5104. name: "Front",
  5105. image: {
  5106. source: "./media/characters/tails/front.svg"
  5107. }
  5108. }
  5109. },
  5110. [
  5111. {
  5112. name: "Normal",
  5113. height: math.unit(5 + 3 / 4, "feet"),
  5114. default: true
  5115. }
  5116. ]
  5117. ))
  5118. characterMakers.push(() => makeCharacter(
  5119. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5120. {
  5121. front: {
  5122. height: math.unit(4, "feet"),
  5123. weight: math.unit(50, "lbs"),
  5124. name: "Front",
  5125. image: {
  5126. source: "./media/characters/rainy/front.svg"
  5127. }
  5128. }
  5129. },
  5130. [
  5131. {
  5132. name: "Macro",
  5133. height: math.unit(800, "feet"),
  5134. default: true
  5135. }
  5136. ]
  5137. ))
  5138. characterMakers.push(() => makeCharacter(
  5139. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5140. {
  5141. front: {
  5142. height: math.unit(6, "feet"),
  5143. weight: math.unit(150, "lbs"),
  5144. name: "Front",
  5145. image: {
  5146. source: "./media/characters/rainier/front.svg"
  5147. }
  5148. }
  5149. },
  5150. [
  5151. {
  5152. name: "Micro",
  5153. height: math.unit(2, "mm"),
  5154. default: true
  5155. }
  5156. ]
  5157. ))
  5158. characterMakers.push(() => makeCharacter(
  5159. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5160. {
  5161. front: {
  5162. height: math.unit(6, "feet"),
  5163. weight: math.unit(180, "lbs"),
  5164. name: "Front",
  5165. image: {
  5166. source: "./media/characters/andy/front.svg"
  5167. }
  5168. }
  5169. },
  5170. [
  5171. {
  5172. name: "Normal",
  5173. height: math.unit(8, "feet"),
  5174. default: true
  5175. },
  5176. {
  5177. name: "Macro",
  5178. height: math.unit(1000, "feet")
  5179. },
  5180. {
  5181. name: "Megamacro",
  5182. height: math.unit(5, "miles")
  5183. },
  5184. {
  5185. name: "Gigamacro",
  5186. height: math.unit(5000, "miles")
  5187. },
  5188. ]
  5189. ))
  5190. characterMakers.push(() => makeCharacter(
  5191. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5192. {
  5193. front: {
  5194. height: math.unit(6, "feet"),
  5195. weight: math.unit(210, "lbs"),
  5196. name: "Front",
  5197. image: {
  5198. source: "./media/characters/cimmaron/front-sfw.svg",
  5199. extra: 701 / 676,
  5200. bottom: 0.046
  5201. }
  5202. },
  5203. back: {
  5204. height: math.unit(6, "feet"),
  5205. weight: math.unit(210, "lbs"),
  5206. name: "Back",
  5207. image: {
  5208. source: "./media/characters/cimmaron/back-sfw.svg",
  5209. extra: 701 / 676,
  5210. bottom: 0.046
  5211. }
  5212. },
  5213. frontNsfw: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(210, "lbs"),
  5216. name: "Front (NSFW)",
  5217. image: {
  5218. source: "./media/characters/cimmaron/front-nsfw.svg",
  5219. extra: 701 / 676,
  5220. bottom: 0.046
  5221. }
  5222. },
  5223. backNsfw: {
  5224. height: math.unit(6, "feet"),
  5225. weight: math.unit(210, "lbs"),
  5226. name: "Back (NSFW)",
  5227. image: {
  5228. source: "./media/characters/cimmaron/back-nsfw.svg",
  5229. extra: 701 / 676,
  5230. bottom: 0.046
  5231. }
  5232. },
  5233. dick: {
  5234. height: math.unit(1.714, "feet"),
  5235. name: "Dick",
  5236. image: {
  5237. source: "./media/characters/cimmaron/dick.svg"
  5238. }
  5239. },
  5240. },
  5241. [
  5242. {
  5243. name: "Normal",
  5244. height: math.unit(6, "feet"),
  5245. default: true
  5246. },
  5247. {
  5248. name: "Macro Mayor",
  5249. height: math.unit(350, "meters")
  5250. },
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5255. {
  5256. front: {
  5257. height: math.unit(6, "feet"),
  5258. weight: math.unit(200, "lbs"),
  5259. name: "Front",
  5260. image: {
  5261. source: "./media/characters/akari/front.svg",
  5262. extra: 962 / 901,
  5263. bottom: 0.04
  5264. }
  5265. }
  5266. },
  5267. [
  5268. {
  5269. name: "Micro",
  5270. height: math.unit(5, "inches"),
  5271. default: true
  5272. },
  5273. {
  5274. name: "Normal",
  5275. height: math.unit(7, "feet")
  5276. },
  5277. ]
  5278. ))
  5279. characterMakers.push(() => makeCharacter(
  5280. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5281. {
  5282. front: {
  5283. height: math.unit(6, "feet"),
  5284. weight: math.unit(140, "lbs"),
  5285. name: "Front",
  5286. image: {
  5287. source: "./media/characters/cynosura/front.svg",
  5288. extra: 896 / 847
  5289. }
  5290. },
  5291. back: {
  5292. height: math.unit(6, "feet"),
  5293. weight: math.unit(140, "lbs"),
  5294. name: "Back",
  5295. image: {
  5296. source: "./media/characters/cynosura/back.svg",
  5297. extra: 1365 / 1250
  5298. }
  5299. },
  5300. },
  5301. [
  5302. {
  5303. name: "Micro",
  5304. height: math.unit(4, "inches")
  5305. },
  5306. {
  5307. name: "Normal",
  5308. height: math.unit(5.75, "feet"),
  5309. default: true
  5310. },
  5311. {
  5312. name: "Tall",
  5313. height: math.unit(10, "feet")
  5314. },
  5315. {
  5316. name: "Big",
  5317. height: math.unit(20, "feet")
  5318. },
  5319. {
  5320. name: "Macro",
  5321. height: math.unit(50, "feet")
  5322. },
  5323. ]
  5324. ))
  5325. characterMakers.push(() => makeCharacter(
  5326. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5327. {
  5328. front: {
  5329. height: math.unit(6, "feet"),
  5330. weight: math.unit(170, "lbs"),
  5331. name: "Front",
  5332. image: {
  5333. source: "./media/characters/gin/front.svg",
  5334. extra: 1.053,
  5335. bottom: 0.025
  5336. }
  5337. },
  5338. foot: {
  5339. height: math.unit(6 / 4.25, "feet"),
  5340. name: "Foot",
  5341. image: {
  5342. source: "./media/characters/gin/foot.svg"
  5343. }
  5344. },
  5345. sole: {
  5346. height: math.unit(6 / 4.40, "feet"),
  5347. name: "Sole",
  5348. image: {
  5349. source: "./media/characters/gin/sole.svg"
  5350. }
  5351. },
  5352. },
  5353. [
  5354. {
  5355. name: "Normal",
  5356. height: math.unit(13 + 2 / 12, "feet")
  5357. },
  5358. {
  5359. name: "Macro",
  5360. height: math.unit(1500, "feet")
  5361. },
  5362. {
  5363. name: "Megamacro",
  5364. height: math.unit(200, "miles"),
  5365. default: true
  5366. },
  5367. {
  5368. name: "Gigamacro",
  5369. height: math.unit(500, "megameters")
  5370. },
  5371. {
  5372. name: "Teramacro",
  5373. height: math.unit(15, "lightyears")
  5374. }
  5375. ]
  5376. ))
  5377. characterMakers.push(() => makeCharacter(
  5378. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5379. {
  5380. front: {
  5381. height: math.unit(6 + 1 / 6, "feet"),
  5382. weight: math.unit(178, "lbs"),
  5383. name: "Front",
  5384. image: {
  5385. source: "./media/characters/guy/front.svg"
  5386. }
  5387. }
  5388. },
  5389. [
  5390. {
  5391. name: "Normal",
  5392. height: math.unit(6 + 1 / 6, "feet"),
  5393. default: true
  5394. },
  5395. {
  5396. name: "Large",
  5397. height: math.unit(25 + 7 / 12, "feet")
  5398. },
  5399. {
  5400. name: "Macro",
  5401. height: math.unit(60 + 9 / 12, "feet")
  5402. },
  5403. {
  5404. name: "Macro+",
  5405. height: math.unit(246, "feet")
  5406. },
  5407. {
  5408. name: "Macro++",
  5409. height: math.unit(878, "feet")
  5410. }
  5411. ]
  5412. ))
  5413. characterMakers.push(() => makeCharacter(
  5414. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5415. {
  5416. front: {
  5417. height: math.unit(9, "feet"),
  5418. weight: math.unit(800, "lbs"),
  5419. name: "Front",
  5420. image: {
  5421. source: "./media/characters/tiberius/front.svg",
  5422. extra: 2295 / 2071
  5423. }
  5424. },
  5425. back: {
  5426. height: math.unit(9, "feet"),
  5427. weight: math.unit(800, "lbs"),
  5428. name: "Back",
  5429. image: {
  5430. source: "./media/characters/tiberius/back.svg",
  5431. extra: 2373 / 2160
  5432. }
  5433. },
  5434. },
  5435. [
  5436. {
  5437. name: "Normal",
  5438. height: math.unit(9, "feet"),
  5439. default: true
  5440. }
  5441. ]
  5442. ))
  5443. characterMakers.push(() => makeCharacter(
  5444. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5445. {
  5446. front: {
  5447. height: math.unit(6, "feet"),
  5448. weight: math.unit(600, "lbs"),
  5449. name: "Front",
  5450. image: {
  5451. source: "./media/characters/surgo/front.svg",
  5452. extra: 3591 / 2227
  5453. }
  5454. },
  5455. back: {
  5456. height: math.unit(6, "feet"),
  5457. weight: math.unit(600, "lbs"),
  5458. name: "Back",
  5459. image: {
  5460. source: "./media/characters/surgo/back.svg",
  5461. extra: 3557 / 2228
  5462. }
  5463. },
  5464. laying: {
  5465. height: math.unit(6 * 0.85, "feet"),
  5466. weight: math.unit(600, "lbs"),
  5467. name: "Laying",
  5468. image: {
  5469. source: "./media/characters/surgo/laying.svg"
  5470. }
  5471. },
  5472. },
  5473. [
  5474. {
  5475. name: "Normal",
  5476. height: math.unit(6, "feet"),
  5477. default: true
  5478. }
  5479. ]
  5480. ))
  5481. characterMakers.push(() => makeCharacter(
  5482. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5483. {
  5484. side: {
  5485. height: math.unit(6, "feet"),
  5486. weight: math.unit(150, "lbs"),
  5487. name: "Side",
  5488. image: {
  5489. source: "./media/characters/cibus/side.svg",
  5490. extra: 800 / 400
  5491. }
  5492. },
  5493. },
  5494. [
  5495. {
  5496. name: "Normal",
  5497. height: math.unit(6, "feet"),
  5498. default: true
  5499. }
  5500. ]
  5501. ))
  5502. characterMakers.push(() => makeCharacter(
  5503. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5504. {
  5505. front: {
  5506. height: math.unit(6, "feet"),
  5507. weight: math.unit(240, "lbs"),
  5508. name: "Front",
  5509. image: {
  5510. source: "./media/characters/nibbles/front.svg"
  5511. }
  5512. },
  5513. side: {
  5514. height: math.unit(6, "feet"),
  5515. weight: math.unit(240, "lbs"),
  5516. name: "Side",
  5517. image: {
  5518. source: "./media/characters/nibbles/side.svg"
  5519. }
  5520. },
  5521. },
  5522. [
  5523. {
  5524. name: "Normal",
  5525. height: math.unit(9, "feet"),
  5526. default: true
  5527. }
  5528. ]
  5529. ))
  5530. characterMakers.push(() => makeCharacter(
  5531. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5532. {
  5533. side: {
  5534. height: math.unit(5 + 1 / 6, "feet"),
  5535. weight: math.unit(130, "lbs"),
  5536. name: "Side",
  5537. image: {
  5538. source: "./media/characters/rikky/side.svg",
  5539. extra: 851 / 801
  5540. }
  5541. },
  5542. },
  5543. [
  5544. {
  5545. name: "Normal",
  5546. height: math.unit(5 + 1 / 6, "feet")
  5547. },
  5548. {
  5549. name: "Macro",
  5550. height: math.unit(152, "feet"),
  5551. default: true
  5552. },
  5553. {
  5554. name: "Megamacro",
  5555. height: math.unit(7, "miles")
  5556. }
  5557. ]
  5558. ))
  5559. characterMakers.push(() => makeCharacter(
  5560. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5561. {
  5562. side: {
  5563. height: math.unit(370, "cm"),
  5564. weight: math.unit(350, "lbs"),
  5565. name: "Side",
  5566. image: {
  5567. source: "./media/characters/malfressa/side.svg"
  5568. }
  5569. },
  5570. walking: {
  5571. height: math.unit(370, "cm"),
  5572. weight: math.unit(350, "lbs"),
  5573. name: "Walking",
  5574. image: {
  5575. source: "./media/characters/malfressa/walking.svg"
  5576. }
  5577. },
  5578. feral: {
  5579. height: math.unit(2500, "cm"),
  5580. weight: math.unit(100000, "lbs"),
  5581. name: "Feral",
  5582. image: {
  5583. source: "./media/characters/malfressa/feral.svg",
  5584. extra: 2108 / 837,
  5585. bottom: 0.02
  5586. }
  5587. },
  5588. },
  5589. [
  5590. {
  5591. name: "Normal",
  5592. height: math.unit(370, "cm")
  5593. },
  5594. {
  5595. name: "Macro",
  5596. height: math.unit(300, "meters"),
  5597. default: true
  5598. }
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(60, "kg"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/jaro/front.svg"
  5610. }
  5611. },
  5612. back: {
  5613. height: math.unit(6, "feet"),
  5614. weight: math.unit(60, "kg"),
  5615. name: "Back",
  5616. image: {
  5617. source: "./media/characters/jaro/back.svg"
  5618. }
  5619. },
  5620. },
  5621. [
  5622. {
  5623. name: "Micro",
  5624. height: math.unit(7, "inches")
  5625. },
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(5.5, "feet"),
  5629. default: true
  5630. },
  5631. {
  5632. name: "Minimacro",
  5633. height: math.unit(20, "feet")
  5634. },
  5635. {
  5636. name: "Macro",
  5637. height: math.unit(200, "meters")
  5638. }
  5639. ]
  5640. ))
  5641. characterMakers.push(() => makeCharacter(
  5642. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5643. {
  5644. front: {
  5645. height: math.unit(6, "feet"),
  5646. weight: math.unit(195, "lb"),
  5647. name: "Front",
  5648. image: {
  5649. source: "./media/characters/rogue/front.svg"
  5650. }
  5651. },
  5652. },
  5653. [
  5654. {
  5655. name: "Macro",
  5656. height: math.unit(90, "feet"),
  5657. default: true
  5658. },
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5663. {
  5664. front: {
  5665. height: math.unit(5 + 8 / 12, "feet"),
  5666. weight: math.unit(140, "lb"),
  5667. name: "Front",
  5668. image: {
  5669. source: "./media/characters/piper/front.svg",
  5670. extra: 3928 / 3681
  5671. }
  5672. },
  5673. },
  5674. [
  5675. {
  5676. name: "Micro",
  5677. height: math.unit(2, "inches")
  5678. },
  5679. {
  5680. name: "Normal",
  5681. height: math.unit(5 + 8 / 12, "feet")
  5682. },
  5683. {
  5684. name: "Macro",
  5685. height: math.unit(250, "feet"),
  5686. default: true
  5687. },
  5688. {
  5689. name: "Megamacro",
  5690. height: math.unit(7, "miles")
  5691. },
  5692. ]
  5693. ))
  5694. characterMakers.push(() => makeCharacter(
  5695. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5696. {
  5697. front: {
  5698. height: math.unit(6, "feet"),
  5699. weight: math.unit(220, "lb"),
  5700. name: "Front",
  5701. image: {
  5702. source: "./media/characters/gemini/front.svg"
  5703. }
  5704. },
  5705. back: {
  5706. height: math.unit(6, "feet"),
  5707. weight: math.unit(220, "lb"),
  5708. name: "Back",
  5709. image: {
  5710. source: "./media/characters/gemini/back.svg"
  5711. }
  5712. },
  5713. kneeling: {
  5714. height: math.unit(6 / 1.5, "feet"),
  5715. weight: math.unit(220, "lb"),
  5716. name: "Kneeling",
  5717. image: {
  5718. source: "./media/characters/gemini/kneeling.svg",
  5719. bottom: 0.02
  5720. }
  5721. },
  5722. },
  5723. [
  5724. {
  5725. name: "Macro",
  5726. height: math.unit(300, "meters"),
  5727. default: true
  5728. },
  5729. {
  5730. name: "Megamacro",
  5731. height: math.unit(6900, "meters")
  5732. },
  5733. ]
  5734. ))
  5735. characterMakers.push(() => makeCharacter(
  5736. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5737. {
  5738. anthro: {
  5739. height: math.unit(2.35, "meters"),
  5740. weight: math.unit(73, "kg"),
  5741. name: "Anthro",
  5742. image: {
  5743. source: "./media/characters/alicia/anthro.svg",
  5744. extra: 2571 / 2385,
  5745. bottom: 75 / 2648
  5746. }
  5747. },
  5748. paw: {
  5749. height: math.unit(1.32, "feet"),
  5750. name: "Paw",
  5751. image: {
  5752. source: "./media/characters/alicia/paw.svg"
  5753. }
  5754. },
  5755. feral: {
  5756. height: math.unit(1.69, "meters"),
  5757. weight: math.unit(73, "kg"),
  5758. name: "Feral",
  5759. image: {
  5760. source: "./media/characters/alicia/feral.svg",
  5761. extra: 2123 / 1715,
  5762. bottom: 222 / 2349
  5763. }
  5764. },
  5765. },
  5766. [
  5767. {
  5768. name: "Normal",
  5769. height: math.unit(2.35, "meters")
  5770. },
  5771. {
  5772. name: "Macro",
  5773. height: math.unit(60, "meters"),
  5774. default: true
  5775. },
  5776. {
  5777. name: "Megamacro",
  5778. height: math.unit(10000, "kilometers")
  5779. },
  5780. ]
  5781. ))
  5782. characterMakers.push(() => makeCharacter(
  5783. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5784. {
  5785. front: {
  5786. height: math.unit(7, "feet"),
  5787. weight: math.unit(250, "lbs"),
  5788. name: "Front",
  5789. image: {
  5790. source: "./media/characters/archy/front.svg"
  5791. }
  5792. }
  5793. },
  5794. [
  5795. {
  5796. name: "Micro",
  5797. height: math.unit(1, "inch")
  5798. },
  5799. {
  5800. name: "Shorty",
  5801. height: math.unit(5, "feet")
  5802. },
  5803. {
  5804. name: "Normal",
  5805. height: math.unit(7, "feet")
  5806. },
  5807. {
  5808. name: "Macro",
  5809. height: math.unit(600, "meters"),
  5810. default: true
  5811. },
  5812. {
  5813. name: "Megamacro",
  5814. height: math.unit(1, "mile")
  5815. },
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5820. {
  5821. front: {
  5822. height: math.unit(1.65, "meters"),
  5823. weight: math.unit(74, "kg"),
  5824. name: "Front",
  5825. image: {
  5826. source: "./media/characters/berri/front.svg",
  5827. extra: 857 / 837,
  5828. bottom: 18 / 877
  5829. }
  5830. },
  5831. bum: {
  5832. height: math.unit(1.46, "feet"),
  5833. name: "Bum",
  5834. image: {
  5835. source: "./media/characters/berri/bum.svg"
  5836. }
  5837. },
  5838. mouth: {
  5839. height: math.unit(0.44, "feet"),
  5840. name: "Mouth",
  5841. image: {
  5842. source: "./media/characters/berri/mouth.svg"
  5843. }
  5844. },
  5845. paw: {
  5846. height: math.unit(0.826, "feet"),
  5847. name: "Paw",
  5848. image: {
  5849. source: "./media/characters/berri/paw.svg"
  5850. }
  5851. },
  5852. },
  5853. [
  5854. {
  5855. name: "Normal",
  5856. height: math.unit(1.65, "meters")
  5857. },
  5858. {
  5859. name: "Macro",
  5860. height: math.unit(60, "m"),
  5861. default: true
  5862. },
  5863. {
  5864. name: "Megamacro",
  5865. height: math.unit(9.213, "km")
  5866. },
  5867. {
  5868. name: "Planet Eater",
  5869. height: math.unit(489, "megameters")
  5870. },
  5871. {
  5872. name: "Teramacro",
  5873. height: math.unit(2471635000000, "meters")
  5874. },
  5875. {
  5876. name: "Examacro",
  5877. height: math.unit(8.0624e+26, "meters")
  5878. }
  5879. ]
  5880. ))
  5881. characterMakers.push(() => makeCharacter(
  5882. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5883. {
  5884. front: {
  5885. height: math.unit(1.72, "meters"),
  5886. weight: math.unit(68, "kg"),
  5887. name: "Front",
  5888. image: {
  5889. source: "./media/characters/lexi/front.svg"
  5890. }
  5891. }
  5892. },
  5893. [
  5894. {
  5895. name: "Very Smol",
  5896. height: math.unit(10, "mm")
  5897. },
  5898. {
  5899. name: "Micro",
  5900. height: math.unit(6.8, "cm"),
  5901. default: true
  5902. },
  5903. {
  5904. name: "Normal",
  5905. height: math.unit(1.72, "m")
  5906. }
  5907. ]
  5908. ))
  5909. characterMakers.push(() => makeCharacter(
  5910. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5911. {
  5912. front: {
  5913. height: math.unit(1.69, "meters"),
  5914. weight: math.unit(68, "kg"),
  5915. name: "Front",
  5916. image: {
  5917. source: "./media/characters/martin/front.svg",
  5918. extra: 596 / 581
  5919. }
  5920. }
  5921. },
  5922. [
  5923. {
  5924. name: "Micro",
  5925. height: math.unit(6.85, "cm"),
  5926. default: true
  5927. },
  5928. {
  5929. name: "Normal",
  5930. height: math.unit(1.69, "m")
  5931. }
  5932. ]
  5933. ))
  5934. characterMakers.push(() => makeCharacter(
  5935. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5936. {
  5937. front: {
  5938. height: math.unit(1.69, "meters"),
  5939. weight: math.unit(68, "kg"),
  5940. name: "Front",
  5941. image: {
  5942. source: "./media/characters/juno/front.svg"
  5943. }
  5944. }
  5945. },
  5946. [
  5947. {
  5948. name: "Micro",
  5949. height: math.unit(7, "cm")
  5950. },
  5951. {
  5952. name: "Normal",
  5953. height: math.unit(1.89, "m")
  5954. },
  5955. {
  5956. name: "Macro",
  5957. height: math.unit(353, "meters"),
  5958. default: true
  5959. }
  5960. ]
  5961. ))
  5962. characterMakers.push(() => makeCharacter(
  5963. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5964. {
  5965. front: {
  5966. height: math.unit(1.93, "meters"),
  5967. weight: math.unit(83, "kg"),
  5968. name: "Front",
  5969. image: {
  5970. source: "./media/characters/samantha/front.svg"
  5971. }
  5972. },
  5973. frontClothed: {
  5974. height: math.unit(1.93, "meters"),
  5975. weight: math.unit(83, "kg"),
  5976. name: "Front (Clothed)",
  5977. image: {
  5978. source: "./media/characters/samantha/front-clothed.svg"
  5979. }
  5980. },
  5981. back: {
  5982. height: math.unit(1.93, "meters"),
  5983. weight: math.unit(83, "kg"),
  5984. name: "Back",
  5985. image: {
  5986. source: "./media/characters/samantha/back.svg"
  5987. }
  5988. },
  5989. },
  5990. [
  5991. {
  5992. name: "Normal",
  5993. height: math.unit(1.93, "m")
  5994. },
  5995. {
  5996. name: "Macro",
  5997. height: math.unit(74, "meters"),
  5998. default: true
  5999. },
  6000. {
  6001. name: "Macro+",
  6002. height: math.unit(223, "meters"),
  6003. },
  6004. {
  6005. name: "Megamacro",
  6006. height: math.unit(8381, "meters"),
  6007. },
  6008. {
  6009. name: "Megamacro+",
  6010. height: math.unit(12000, "kilometers")
  6011. },
  6012. ]
  6013. ))
  6014. characterMakers.push(() => makeCharacter(
  6015. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6016. {
  6017. front: {
  6018. height: math.unit(1.92, "meters"),
  6019. weight: math.unit(80, "kg"),
  6020. name: "Front",
  6021. image: {
  6022. source: "./media/characters/dr-clay/front.svg"
  6023. }
  6024. },
  6025. frontClothed: {
  6026. height: math.unit(1.92, "meters"),
  6027. weight: math.unit(80, "kg"),
  6028. name: "Front (Clothed)",
  6029. image: {
  6030. source: "./media/characters/dr-clay/front-clothed.svg"
  6031. }
  6032. }
  6033. },
  6034. [
  6035. {
  6036. name: "Normal",
  6037. height: math.unit(1.92, "m")
  6038. },
  6039. {
  6040. name: "Macro",
  6041. height: math.unit(214, "meters"),
  6042. default: true
  6043. },
  6044. {
  6045. name: "Macro+",
  6046. height: math.unit(12.237, "meters"),
  6047. },
  6048. {
  6049. name: "Megamacro",
  6050. height: math.unit(557, "megameters"),
  6051. },
  6052. {
  6053. name: "Unimaginable",
  6054. height: math.unit(120e9, "lightyears")
  6055. },
  6056. ]
  6057. ))
  6058. characterMakers.push(() => makeCharacter(
  6059. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6060. {
  6061. front: {
  6062. height: math.unit(2, "meters"),
  6063. weight: math.unit(80, "kg"),
  6064. name: "Front",
  6065. image: {
  6066. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6067. }
  6068. }
  6069. },
  6070. [
  6071. {
  6072. name: "Teramacro",
  6073. height: math.unit(500000, "lightyears"),
  6074. default: true
  6075. },
  6076. ]
  6077. ))
  6078. characterMakers.push(() => makeCharacter(
  6079. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6080. {
  6081. front: {
  6082. height: math.unit(2, "meters"),
  6083. weight: math.unit(150, "kg"),
  6084. name: "Front",
  6085. image: {
  6086. source: "./media/characters/vemus/front.svg",
  6087. extra: 2384 / 2084,
  6088. bottom: 0.0123
  6089. }
  6090. }
  6091. },
  6092. [
  6093. {
  6094. name: "Normal",
  6095. height: math.unit(3.75, "meters"),
  6096. default: true
  6097. },
  6098. {
  6099. name: "Big",
  6100. height: math.unit(8, "meters")
  6101. },
  6102. {
  6103. name: "Macro",
  6104. height: math.unit(100, "meters")
  6105. },
  6106. {
  6107. name: "Macro+",
  6108. height: math.unit(1500, "meters")
  6109. },
  6110. {
  6111. name: "Stellar",
  6112. height: math.unit(14e8, "meters")
  6113. },
  6114. ]
  6115. ))
  6116. characterMakers.push(() => makeCharacter(
  6117. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6118. {
  6119. front: {
  6120. height: math.unit(2, "meters"),
  6121. weight: math.unit(70, "kg"),
  6122. name: "Front",
  6123. image: {
  6124. source: "./media/characters/beherit/front.svg",
  6125. extra: 1408 / 1242
  6126. }
  6127. }
  6128. },
  6129. [
  6130. {
  6131. name: "Normal",
  6132. height: math.unit(6, "feet")
  6133. },
  6134. {
  6135. name: "Lorg",
  6136. height: math.unit(25, "feet"),
  6137. default: true
  6138. },
  6139. {
  6140. name: "Lorger",
  6141. height: math.unit(75, "feet")
  6142. },
  6143. {
  6144. name: "Macro",
  6145. height: math.unit(200, "meters")
  6146. },
  6147. ]
  6148. ))
  6149. characterMakers.push(() => makeCharacter(
  6150. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6151. {
  6152. front: {
  6153. height: math.unit(2, "meters"),
  6154. weight: math.unit(150, "kg"),
  6155. name: "Front",
  6156. image: {
  6157. source: "./media/characters/everett/front.svg",
  6158. extra: 2038 / 1737,
  6159. bottom: 0.03
  6160. }
  6161. },
  6162. paw: {
  6163. height: math.unit(2 / 3.6, "meters"),
  6164. name: "Paw",
  6165. image: {
  6166. source: "./media/characters/everett/paw.svg"
  6167. }
  6168. },
  6169. },
  6170. [
  6171. {
  6172. name: "Normal",
  6173. height: math.unit(15, "feet"),
  6174. default: true
  6175. },
  6176. {
  6177. name: "Lorg",
  6178. height: math.unit(70, "feet"),
  6179. default: true
  6180. },
  6181. {
  6182. name: "Lorger",
  6183. height: math.unit(250, "feet")
  6184. },
  6185. {
  6186. name: "Macro",
  6187. height: math.unit(500, "meters")
  6188. },
  6189. ]
  6190. ))
  6191. characterMakers.push(() => makeCharacter(
  6192. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6193. {
  6194. front: {
  6195. height: math.unit(2, "meters"),
  6196. weight: math.unit(86, "kg"),
  6197. name: "Front",
  6198. image: {
  6199. source: "./media/characters/rose-lion/front.svg"
  6200. }
  6201. },
  6202. bent: {
  6203. height: math.unit(2 / 1.4288, "meters"),
  6204. weight: math.unit(86, "kg"),
  6205. name: "Bent",
  6206. image: {
  6207. source: "./media/characters/rose-lion/bent.svg"
  6208. }
  6209. }
  6210. },
  6211. [
  6212. {
  6213. name: "Mini-Micro",
  6214. height: math.unit(1, "cm")
  6215. },
  6216. {
  6217. name: "Micro",
  6218. height: math.unit(3.5, "inches"),
  6219. default: true
  6220. },
  6221. {
  6222. name: "Normal",
  6223. height: math.unit(6 + 1 / 6, "feet")
  6224. },
  6225. {
  6226. name: "Mini-Macro",
  6227. height: math.unit(9 + 10 / 12, "feet")
  6228. },
  6229. ]
  6230. ))
  6231. characterMakers.push(() => makeCharacter(
  6232. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6233. {
  6234. front: {
  6235. height: math.unit(2, "meters"),
  6236. weight: math.unit(350, "lbs"),
  6237. name: "Front",
  6238. image: {
  6239. source: "./media/characters/regal/front.svg"
  6240. }
  6241. },
  6242. back: {
  6243. height: math.unit(2, "meters"),
  6244. weight: math.unit(350, "lbs"),
  6245. name: "Back",
  6246. image: {
  6247. source: "./media/characters/regal/back.svg"
  6248. }
  6249. },
  6250. },
  6251. [
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(350, "feet"),
  6255. default: true
  6256. }
  6257. ]
  6258. ))
  6259. characterMakers.push(() => makeCharacter(
  6260. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6261. {
  6262. front: {
  6263. height: math.unit(4 + 11 / 12, "feet"),
  6264. weight: math.unit(100, "lbs"),
  6265. name: "Front",
  6266. image: {
  6267. source: "./media/characters/opal/front.svg"
  6268. }
  6269. },
  6270. frontAlt: {
  6271. height: math.unit(4 + 11 / 12, "feet"),
  6272. weight: math.unit(100, "lbs"),
  6273. name: "Front (Alt)",
  6274. image: {
  6275. source: "./media/characters/opal/front-alt.svg"
  6276. }
  6277. },
  6278. },
  6279. [
  6280. {
  6281. name: "Small",
  6282. height: math.unit(4 + 11 / 12, "feet")
  6283. },
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(20, "feet"),
  6287. default: true
  6288. },
  6289. {
  6290. name: "Macro",
  6291. height: math.unit(120, "feet")
  6292. },
  6293. {
  6294. name: "Megamacro",
  6295. height: math.unit(80, "miles")
  6296. },
  6297. {
  6298. name: "True Size",
  6299. height: math.unit(100000, "lightyears")
  6300. },
  6301. ]
  6302. ))
  6303. characterMakers.push(() => makeCharacter(
  6304. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6305. {
  6306. front: {
  6307. height: math.unit(6, "feet"),
  6308. weight: math.unit(200, "lbs"),
  6309. name: "Front",
  6310. image: {
  6311. source: "./media/characters/vector-wuff/front.svg"
  6312. }
  6313. }
  6314. },
  6315. [
  6316. {
  6317. name: "Normal",
  6318. height: math.unit(2.8, "meters")
  6319. },
  6320. {
  6321. name: "Macro",
  6322. height: math.unit(450, "meters"),
  6323. default: true
  6324. },
  6325. {
  6326. name: "Megamacro",
  6327. height: math.unit(15, "kilometers")
  6328. }
  6329. ]
  6330. ))
  6331. characterMakers.push(() => makeCharacter(
  6332. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6333. {
  6334. front: {
  6335. height: math.unit(6, "feet"),
  6336. weight: math.unit(256, "lbs"),
  6337. name: "Front",
  6338. image: {
  6339. source: "./media/characters/dannik/front.svg"
  6340. }
  6341. }
  6342. },
  6343. [
  6344. {
  6345. name: "Macro",
  6346. height: math.unit(69.57, "meters"),
  6347. default: true
  6348. },
  6349. ]
  6350. ))
  6351. characterMakers.push(() => makeCharacter(
  6352. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6353. {
  6354. front: {
  6355. height: math.unit(6, "feet"),
  6356. weight: math.unit(120, "lbs"),
  6357. name: "Front",
  6358. image: {
  6359. source: "./media/characters/azura-saharah/front.svg"
  6360. }
  6361. },
  6362. back: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(120, "lbs"),
  6365. name: "Back",
  6366. image: {
  6367. source: "./media/characters/azura-saharah/back.svg"
  6368. }
  6369. },
  6370. },
  6371. [
  6372. {
  6373. name: "Macro",
  6374. height: math.unit(100, "feet"),
  6375. default: true
  6376. },
  6377. ]
  6378. ))
  6379. characterMakers.push(() => makeCharacter(
  6380. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6381. {
  6382. side: {
  6383. height: math.unit(5 + 4 / 12, "feet"),
  6384. weight: math.unit(163, "lbs"),
  6385. name: "Side",
  6386. image: {
  6387. source: "./media/characters/kennedy/side.svg"
  6388. }
  6389. }
  6390. },
  6391. [
  6392. {
  6393. name: "Standard Doggo",
  6394. height: math.unit(5 + 4 / 12, "feet")
  6395. },
  6396. {
  6397. name: "Big Doggo",
  6398. height: math.unit(25 + 3 / 12, "feet"),
  6399. default: true
  6400. },
  6401. ]
  6402. ))
  6403. characterMakers.push(() => makeCharacter(
  6404. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6405. {
  6406. front: {
  6407. height: math.unit(6, "feet"),
  6408. weight: math.unit(90, "lbs"),
  6409. name: "Front",
  6410. image: {
  6411. source: "./media/characters/odi-lunar/front.svg"
  6412. }
  6413. }
  6414. },
  6415. [
  6416. {
  6417. name: "Micro",
  6418. height: math.unit(3, "inches"),
  6419. default: true
  6420. },
  6421. {
  6422. name: "Normal",
  6423. height: math.unit(5.5, "feet")
  6424. }
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6429. {
  6430. back: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(220, "lbs"),
  6433. name: "Back",
  6434. image: {
  6435. source: "./media/characters/mandake/back.svg"
  6436. }
  6437. }
  6438. },
  6439. [
  6440. {
  6441. name: "Normal",
  6442. height: math.unit(7, "feet"),
  6443. default: true
  6444. },
  6445. {
  6446. name: "Macro",
  6447. height: math.unit(78, "feet")
  6448. },
  6449. {
  6450. name: "Macro+",
  6451. height: math.unit(300, "meters")
  6452. },
  6453. {
  6454. name: "Macro++",
  6455. height: math.unit(2400, "feet")
  6456. },
  6457. {
  6458. name: "Megamacro",
  6459. height: math.unit(5167, "meters")
  6460. },
  6461. {
  6462. name: "Gigamacro",
  6463. height: math.unit(41769, "miles")
  6464. },
  6465. ]
  6466. ))
  6467. characterMakers.push(() => makeCharacter(
  6468. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6469. {
  6470. front: {
  6471. height: math.unit(6, "feet"),
  6472. weight: math.unit(120, "lbs"),
  6473. name: "Front",
  6474. image: {
  6475. source: "./media/characters/yozey/front.svg"
  6476. }
  6477. },
  6478. frontAlt: {
  6479. height: math.unit(6, "feet"),
  6480. weight: math.unit(120, "lbs"),
  6481. name: "Front (Alt)",
  6482. image: {
  6483. source: "./media/characters/yozey/front-alt.svg"
  6484. }
  6485. },
  6486. side: {
  6487. height: math.unit(6, "feet"),
  6488. weight: math.unit(120, "lbs"),
  6489. name: "Side",
  6490. image: {
  6491. source: "./media/characters/yozey/side.svg"
  6492. }
  6493. },
  6494. },
  6495. [
  6496. {
  6497. name: "Micro",
  6498. height: math.unit(3, "inches"),
  6499. default: true
  6500. },
  6501. {
  6502. name: "Normal",
  6503. height: math.unit(6, "feet")
  6504. }
  6505. ]
  6506. ))
  6507. characterMakers.push(() => makeCharacter(
  6508. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6509. {
  6510. front: {
  6511. height: math.unit(6, "feet"),
  6512. weight: math.unit(103, "lbs"),
  6513. name: "Front",
  6514. image: {
  6515. source: "./media/characters/valeska-voss/front.svg"
  6516. }
  6517. }
  6518. },
  6519. [
  6520. {
  6521. name: "Mini-Sized Sub",
  6522. height: math.unit(3.1, "inches")
  6523. },
  6524. {
  6525. name: "Mid-Sized Sub",
  6526. height: math.unit(6.2, "inches")
  6527. },
  6528. {
  6529. name: "Full-Sized Sub",
  6530. height: math.unit(9.3, "inches")
  6531. },
  6532. {
  6533. name: "Normal",
  6534. height: math.unit(5 + 2 / 12, "foot"),
  6535. default: true
  6536. },
  6537. ]
  6538. ))
  6539. characterMakers.push(() => makeCharacter(
  6540. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6541. {
  6542. front: {
  6543. height: math.unit(6, "feet"),
  6544. weight: math.unit(160, "lbs"),
  6545. name: "Front",
  6546. image: {
  6547. source: "./media/characters/gene-zeta/front.svg",
  6548. extra: 3006/2826,
  6549. bottom: 182/3188
  6550. }
  6551. }
  6552. },
  6553. [
  6554. {
  6555. name: "Micro",
  6556. height: math.unit(6, "inches")
  6557. },
  6558. {
  6559. name: "Normal",
  6560. height: math.unit(5 + 11/12, "foot"),
  6561. default: true
  6562. },
  6563. {
  6564. name: "Macro",
  6565. height: math.unit(140, "feet")
  6566. },
  6567. {
  6568. name: "Supercharged",
  6569. height: math.unit(2500, "feet")
  6570. },
  6571. ]
  6572. ))
  6573. characterMakers.push(() => makeCharacter(
  6574. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6575. {
  6576. front: {
  6577. height: math.unit(6, "feet"),
  6578. weight: math.unit(350, "lbs"),
  6579. name: "Front",
  6580. image: {
  6581. source: "./media/characters/razinox/front.svg",
  6582. extra: 1686 / 1548,
  6583. bottom: 28.2 / 1868
  6584. }
  6585. },
  6586. back: {
  6587. height: math.unit(6, "feet"),
  6588. weight: math.unit(350, "lbs"),
  6589. name: "Back",
  6590. image: {
  6591. source: "./media/characters/razinox/back.svg",
  6592. extra: 1660 / 1590,
  6593. bottom: 15 / 1665
  6594. }
  6595. },
  6596. },
  6597. [
  6598. {
  6599. name: "Normal",
  6600. height: math.unit(10 + 8 / 12, "foot")
  6601. },
  6602. {
  6603. name: "Minimacro",
  6604. height: math.unit(15, "foot")
  6605. },
  6606. {
  6607. name: "Macro",
  6608. height: math.unit(60, "foot"),
  6609. default: true
  6610. },
  6611. {
  6612. name: "Megamacro",
  6613. height: math.unit(5, "miles")
  6614. },
  6615. {
  6616. name: "Gigamacro",
  6617. height: math.unit(6000, "miles")
  6618. },
  6619. ]
  6620. ))
  6621. characterMakers.push(() => makeCharacter(
  6622. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6623. {
  6624. front: {
  6625. height: math.unit(6, "feet"),
  6626. weight: math.unit(150, "lbs"),
  6627. name: "Front",
  6628. image: {
  6629. source: "./media/characters/cobalt/front.svg"
  6630. }
  6631. }
  6632. },
  6633. [
  6634. {
  6635. name: "Normal",
  6636. height: math.unit(8 + 1 / 12, "foot")
  6637. },
  6638. {
  6639. name: "Macro",
  6640. height: math.unit(111, "foot"),
  6641. default: true
  6642. },
  6643. {
  6644. name: "Supracosmic",
  6645. height: math.unit(1e42, "feet")
  6646. },
  6647. ]
  6648. ))
  6649. characterMakers.push(() => makeCharacter(
  6650. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6651. {
  6652. front: {
  6653. height: math.unit(6, "feet"),
  6654. weight: math.unit(140, "lbs"),
  6655. name: "Front",
  6656. image: {
  6657. source: "./media/characters/amanda/front.svg"
  6658. }
  6659. }
  6660. },
  6661. [
  6662. {
  6663. name: "Micro",
  6664. height: math.unit(5, "inches"),
  6665. default: true
  6666. },
  6667. ]
  6668. ))
  6669. characterMakers.push(() => makeCharacter(
  6670. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6671. {
  6672. front: {
  6673. height: math.unit(5.59, "feet"),
  6674. weight: math.unit(250, "lbs"),
  6675. name: "Front",
  6676. image: {
  6677. source: "./media/characters/teal/front.svg"
  6678. }
  6679. },
  6680. frontAlt: {
  6681. height: math.unit(6, "feet"),
  6682. weight: math.unit(250, "lbs"),
  6683. name: "Front (Alt)",
  6684. image: {
  6685. source: "./media/characters/teal/front-alt.svg",
  6686. bottom: 0.04,
  6687. extra: 1
  6688. }
  6689. },
  6690. },
  6691. [
  6692. {
  6693. name: "Normal",
  6694. height: math.unit(12, "feet"),
  6695. default: true
  6696. },
  6697. {
  6698. name: "Macro",
  6699. height: math.unit(300, "feet")
  6700. },
  6701. ]
  6702. ))
  6703. characterMakers.push(() => makeCharacter(
  6704. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6705. {
  6706. frontCat: {
  6707. height: math.unit(6, "feet"),
  6708. weight: math.unit(180, "lbs"),
  6709. name: "Front (Cat)",
  6710. image: {
  6711. source: "./media/characters/ravin-amulet/front-cat.svg"
  6712. }
  6713. },
  6714. frontCatAlt: {
  6715. height: math.unit(6, "feet"),
  6716. weight: math.unit(180, "lbs"),
  6717. name: "Front (Alt, Cat)",
  6718. image: {
  6719. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6720. }
  6721. },
  6722. frontWerewolf: {
  6723. height: math.unit(6 * 1.2, "feet"),
  6724. weight: math.unit(225, "lbs"),
  6725. name: "Front (Werewolf)",
  6726. image: {
  6727. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6728. }
  6729. },
  6730. backWerewolf: {
  6731. height: math.unit(6 * 1.2, "feet"),
  6732. weight: math.unit(225, "lbs"),
  6733. name: "Back (Werewolf)",
  6734. image: {
  6735. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6736. }
  6737. },
  6738. },
  6739. [
  6740. {
  6741. name: "Nano",
  6742. height: math.unit(1, "micrometer")
  6743. },
  6744. {
  6745. name: "Micro",
  6746. height: math.unit(1, "inch")
  6747. },
  6748. {
  6749. name: "Normal",
  6750. height: math.unit(6, "feet"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Macro",
  6755. height: math.unit(60, "feet")
  6756. }
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(6, "feet"),
  6764. weight: math.unit(165, "lbs"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/fluoresce/front.svg"
  6768. }
  6769. }
  6770. },
  6771. [
  6772. {
  6773. name: "Micro",
  6774. height: math.unit(6, "cm")
  6775. },
  6776. {
  6777. name: "Normal",
  6778. height: math.unit(5 + 7 / 12, "feet"),
  6779. default: true
  6780. },
  6781. {
  6782. name: "Macro",
  6783. height: math.unit(56, "feet")
  6784. },
  6785. {
  6786. name: "Megamacro",
  6787. height: math.unit(1.9, "miles")
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(9 + 6 / 12, "feet"),
  6796. weight: math.unit(523, "lbs"),
  6797. name: "Side",
  6798. image: {
  6799. source: "./media/characters/aurora/side.svg"
  6800. }
  6801. }
  6802. },
  6803. [
  6804. {
  6805. name: "Normal",
  6806. height: math.unit(9 + 6 / 12, "feet")
  6807. },
  6808. {
  6809. name: "Macro",
  6810. height: math.unit(96, "feet"),
  6811. default: true
  6812. },
  6813. {
  6814. name: "Macro+",
  6815. height: math.unit(243, "feet")
  6816. },
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6821. {
  6822. front: {
  6823. height: math.unit(194, "cm"),
  6824. weight: math.unit(90, "kg"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/ranek/front.svg"
  6828. }
  6829. },
  6830. side: {
  6831. height: math.unit(194, "cm"),
  6832. weight: math.unit(90, "kg"),
  6833. name: "Side",
  6834. image: {
  6835. source: "./media/characters/ranek/side.svg"
  6836. }
  6837. },
  6838. back: {
  6839. height: math.unit(194, "cm"),
  6840. weight: math.unit(90, "kg"),
  6841. name: "Back",
  6842. image: {
  6843. source: "./media/characters/ranek/back.svg"
  6844. }
  6845. },
  6846. feral: {
  6847. height: math.unit(30, "cm"),
  6848. weight: math.unit(1.6, "lbs"),
  6849. name: "Feral",
  6850. image: {
  6851. source: "./media/characters/ranek/feral.svg"
  6852. }
  6853. },
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(194, "cm"),
  6859. default: true
  6860. },
  6861. {
  6862. name: "Macro",
  6863. height: math.unit(100, "meters")
  6864. },
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6869. {
  6870. front: {
  6871. height: math.unit(5 + 6 / 12, "feet"),
  6872. weight: math.unit(153, "lbs"),
  6873. name: "Front",
  6874. image: {
  6875. source: "./media/characters/andrew-cooper/front.svg"
  6876. }
  6877. },
  6878. },
  6879. [
  6880. {
  6881. name: "Nano",
  6882. height: math.unit(1, "mm")
  6883. },
  6884. {
  6885. name: "Micro",
  6886. height: math.unit(2, "inches")
  6887. },
  6888. {
  6889. name: "Normal",
  6890. height: math.unit(5 + 6 / 12, "feet"),
  6891. default: true
  6892. }
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6897. {
  6898. front: {
  6899. height: math.unit(6, "feet"),
  6900. weight: math.unit(180, "lbs"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/akane-sato/front.svg",
  6904. extra: 1219 / 1140
  6905. }
  6906. },
  6907. back: {
  6908. height: math.unit(6, "feet"),
  6909. weight: math.unit(180, "lbs"),
  6910. name: "Back",
  6911. image: {
  6912. source: "./media/characters/akane-sato/back.svg",
  6913. extra: 1219 / 1170
  6914. }
  6915. },
  6916. },
  6917. [
  6918. {
  6919. name: "Normal",
  6920. height: math.unit(2.5, "meters")
  6921. },
  6922. {
  6923. name: "Macro",
  6924. height: math.unit(250, "meters"),
  6925. default: true
  6926. },
  6927. {
  6928. name: "Megamacro",
  6929. height: math.unit(25, "km")
  6930. },
  6931. ]
  6932. ))
  6933. characterMakers.push(() => makeCharacter(
  6934. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6935. {
  6936. front: {
  6937. height: math.unit(6, "feet"),
  6938. weight: math.unit(65, "kg"),
  6939. name: "Front",
  6940. image: {
  6941. source: "./media/characters/rook/front.svg",
  6942. extra: 960 / 950
  6943. }
  6944. }
  6945. },
  6946. [
  6947. {
  6948. name: "Normal",
  6949. height: math.unit(8.8, "feet")
  6950. },
  6951. {
  6952. name: "Macro",
  6953. height: math.unit(88, "feet"),
  6954. default: true
  6955. },
  6956. {
  6957. name: "Megamacro",
  6958. height: math.unit(8, "miles")
  6959. },
  6960. ]
  6961. ))
  6962. characterMakers.push(() => makeCharacter(
  6963. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6964. {
  6965. front: {
  6966. height: math.unit(12 + 2 / 12, "feet"),
  6967. weight: math.unit(808, "lbs"),
  6968. name: "Front",
  6969. image: {
  6970. source: "./media/characters/prodigy/front.svg"
  6971. }
  6972. }
  6973. },
  6974. [
  6975. {
  6976. name: "Normal",
  6977. height: math.unit(12 + 2 / 12, "feet"),
  6978. default: true
  6979. },
  6980. {
  6981. name: "Macro",
  6982. height: math.unit(143, "feet")
  6983. },
  6984. {
  6985. name: "Macro+",
  6986. height: math.unit(400, "feet")
  6987. },
  6988. ]
  6989. ))
  6990. characterMakers.push(() => makeCharacter(
  6991. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6992. {
  6993. front: {
  6994. height: math.unit(6, "feet"),
  6995. weight: math.unit(225, "lbs"),
  6996. name: "Front",
  6997. image: {
  6998. source: "./media/characters/daniel/front.svg"
  6999. }
  7000. },
  7001. leaning: {
  7002. height: math.unit(6, "feet"),
  7003. weight: math.unit(225, "lbs"),
  7004. name: "Leaning",
  7005. image: {
  7006. source: "./media/characters/daniel/leaning.svg"
  7007. }
  7008. },
  7009. },
  7010. [
  7011. {
  7012. name: "Macro",
  7013. height: math.unit(1000, "feet"),
  7014. default: true
  7015. },
  7016. ]
  7017. ))
  7018. characterMakers.push(() => makeCharacter(
  7019. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7020. {
  7021. front: {
  7022. height: math.unit(6, "feet"),
  7023. weight: math.unit(88, "lbs"),
  7024. name: "Front",
  7025. image: {
  7026. source: "./media/characters/chiros/front.svg",
  7027. extra: 306 / 226
  7028. }
  7029. },
  7030. side: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(88, "lbs"),
  7033. name: "Side",
  7034. image: {
  7035. source: "./media/characters/chiros/side.svg",
  7036. extra: 306 / 226
  7037. }
  7038. },
  7039. },
  7040. [
  7041. {
  7042. name: "Normal",
  7043. height: math.unit(6, "cm"),
  7044. default: true
  7045. },
  7046. ]
  7047. ))
  7048. characterMakers.push(() => makeCharacter(
  7049. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7050. {
  7051. front: {
  7052. height: math.unit(6, "feet"),
  7053. weight: math.unit(100, "lbs"),
  7054. name: "Front",
  7055. image: {
  7056. source: "./media/characters/selka/front.svg",
  7057. extra: 947 / 887
  7058. }
  7059. }
  7060. },
  7061. [
  7062. {
  7063. name: "Normal",
  7064. height: math.unit(5, "cm"),
  7065. default: true
  7066. },
  7067. ]
  7068. ))
  7069. characterMakers.push(() => makeCharacter(
  7070. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7071. {
  7072. front: {
  7073. height: math.unit(8 + 3 / 12, "feet"),
  7074. weight: math.unit(424, "lbs"),
  7075. name: "Front",
  7076. image: {
  7077. source: "./media/characters/verin/front.svg",
  7078. extra: 1845 / 1550
  7079. }
  7080. },
  7081. frontArmored: {
  7082. height: math.unit(8 + 3 / 12, "feet"),
  7083. weight: math.unit(424, "lbs"),
  7084. name: "Front (Armored)",
  7085. image: {
  7086. source: "./media/characters/verin/front-armor.svg",
  7087. extra: 1845 / 1550,
  7088. bottom: 0.01
  7089. }
  7090. },
  7091. back: {
  7092. height: math.unit(8 + 3 / 12, "feet"),
  7093. weight: math.unit(424, "lbs"),
  7094. name: "Back",
  7095. image: {
  7096. source: "./media/characters/verin/back.svg",
  7097. bottom: 0.1,
  7098. extra: 1
  7099. }
  7100. },
  7101. foot: {
  7102. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7103. name: "Foot",
  7104. image: {
  7105. source: "./media/characters/verin/foot.svg"
  7106. }
  7107. },
  7108. },
  7109. [
  7110. {
  7111. name: "Normal",
  7112. height: math.unit(8 + 3 / 12, "feet")
  7113. },
  7114. {
  7115. name: "Minimacro",
  7116. height: math.unit(21, "feet"),
  7117. default: true
  7118. },
  7119. {
  7120. name: "Macro",
  7121. height: math.unit(626, "feet")
  7122. },
  7123. ]
  7124. ))
  7125. characterMakers.push(() => makeCharacter(
  7126. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7127. {
  7128. front: {
  7129. height: math.unit(2.718, "meters"),
  7130. weight: math.unit(150, "lbs"),
  7131. name: "Front",
  7132. image: {
  7133. source: "./media/characters/sovrim-terraquian/front.svg"
  7134. }
  7135. },
  7136. back: {
  7137. height: math.unit(2.718, "meters"),
  7138. weight: math.unit(150, "lbs"),
  7139. name: "Back",
  7140. image: {
  7141. source: "./media/characters/sovrim-terraquian/back.svg"
  7142. }
  7143. }
  7144. },
  7145. [
  7146. {
  7147. name: "Micro",
  7148. height: math.unit(2, "inches")
  7149. },
  7150. {
  7151. name: "Small",
  7152. height: math.unit(1, "meter")
  7153. },
  7154. {
  7155. name: "Normal",
  7156. height: math.unit(Math.E, "meters"),
  7157. default: true
  7158. },
  7159. {
  7160. name: "Macro",
  7161. height: math.unit(20, "meters")
  7162. },
  7163. {
  7164. name: "Macro+",
  7165. height: math.unit(400, "meters")
  7166. },
  7167. ]
  7168. ))
  7169. characterMakers.push(() => makeCharacter(
  7170. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7171. {
  7172. front: {
  7173. height: math.unit(7, "feet"),
  7174. weight: math.unit(489, "lbs"),
  7175. name: "Front",
  7176. image: {
  7177. source: "./media/characters/reece-silvermane/front.svg",
  7178. bottom: 0.02,
  7179. extra: 1
  7180. }
  7181. },
  7182. },
  7183. [
  7184. {
  7185. name: "Macro",
  7186. height: math.unit(1.5, "miles"),
  7187. default: true
  7188. },
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7193. {
  7194. front: {
  7195. height: math.unit(6, "feet"),
  7196. weight: math.unit(78, "kg"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/kane/front.svg",
  7200. extra: 978 / 899
  7201. }
  7202. },
  7203. },
  7204. [
  7205. {
  7206. name: "Normal",
  7207. height: math.unit(2.1, "m"),
  7208. },
  7209. {
  7210. name: "Macro",
  7211. height: math.unit(1, "km"),
  7212. default: true
  7213. },
  7214. ]
  7215. ))
  7216. characterMakers.push(() => makeCharacter(
  7217. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7218. {
  7219. front: {
  7220. height: math.unit(6, "feet"),
  7221. weight: math.unit(200, "kg"),
  7222. name: "Front",
  7223. image: {
  7224. source: "./media/characters/tegon/front.svg",
  7225. bottom: 0.01,
  7226. extra: 1
  7227. }
  7228. },
  7229. },
  7230. [
  7231. {
  7232. name: "Micro",
  7233. height: math.unit(1, "inch")
  7234. },
  7235. {
  7236. name: "Normal",
  7237. height: math.unit(6 + 3 / 12, "feet"),
  7238. default: true
  7239. },
  7240. {
  7241. name: "Macro",
  7242. height: math.unit(300, "feet")
  7243. },
  7244. {
  7245. name: "Megamacro",
  7246. height: math.unit(69, "miles")
  7247. },
  7248. ]
  7249. ))
  7250. characterMakers.push(() => makeCharacter(
  7251. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7252. {
  7253. side: {
  7254. height: math.unit(6, "feet"),
  7255. weight: math.unit(2304, "lbs"),
  7256. name: "Side",
  7257. image: {
  7258. source: "./media/characters/arcturax/side.svg",
  7259. extra: 790 / 376,
  7260. bottom: 0.01
  7261. }
  7262. },
  7263. },
  7264. [
  7265. {
  7266. name: "Micro",
  7267. height: math.unit(2, "inch")
  7268. },
  7269. {
  7270. name: "Normal",
  7271. height: math.unit(6, "feet")
  7272. },
  7273. {
  7274. name: "Macro",
  7275. height: math.unit(39, "feet"),
  7276. default: true
  7277. },
  7278. {
  7279. name: "Megamacro",
  7280. height: math.unit(7, "miles")
  7281. },
  7282. ]
  7283. ))
  7284. characterMakers.push(() => makeCharacter(
  7285. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7286. {
  7287. front: {
  7288. height: math.unit(6, "feet"),
  7289. weight: math.unit(50, "lbs"),
  7290. name: "Front",
  7291. image: {
  7292. source: "./media/characters/sentri/front.svg",
  7293. extra: 1750 / 1570,
  7294. bottom: 0.025
  7295. }
  7296. },
  7297. frontAlt: {
  7298. height: math.unit(6, "feet"),
  7299. weight: math.unit(50, "lbs"),
  7300. name: "Front (Alt)",
  7301. image: {
  7302. source: "./media/characters/sentri/front-alt.svg",
  7303. extra: 1750 / 1570,
  7304. bottom: 0.025
  7305. }
  7306. },
  7307. },
  7308. [
  7309. {
  7310. name: "Normal",
  7311. height: math.unit(15, "feet"),
  7312. default: true
  7313. },
  7314. {
  7315. name: "Macro",
  7316. height: math.unit(2500, "feet")
  7317. }
  7318. ]
  7319. ))
  7320. characterMakers.push(() => makeCharacter(
  7321. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7322. {
  7323. front: {
  7324. height: math.unit(5 + 8 / 12, "feet"),
  7325. weight: math.unit(130, "lbs"),
  7326. name: "Front",
  7327. image: {
  7328. source: "./media/characters/corvin/front.svg",
  7329. extra: 1803 / 1629
  7330. }
  7331. },
  7332. frontShirt: {
  7333. height: math.unit(5 + 8 / 12, "feet"),
  7334. weight: math.unit(130, "lbs"),
  7335. name: "Front (Shirt)",
  7336. image: {
  7337. source: "./media/characters/corvin/front-shirt.svg",
  7338. extra: 1803 / 1629
  7339. }
  7340. },
  7341. frontPoncho: {
  7342. height: math.unit(5 + 8 / 12, "feet"),
  7343. weight: math.unit(130, "lbs"),
  7344. name: "Front (Poncho)",
  7345. image: {
  7346. source: "./media/characters/corvin/front-poncho.svg",
  7347. extra: 1803 / 1629
  7348. }
  7349. },
  7350. side: {
  7351. height: math.unit(5 + 8 / 12, "feet"),
  7352. weight: math.unit(130, "lbs"),
  7353. name: "Side",
  7354. image: {
  7355. source: "./media/characters/corvin/side.svg",
  7356. extra: 1012 / 945
  7357. }
  7358. },
  7359. back: {
  7360. height: math.unit(5 + 8 / 12, "feet"),
  7361. weight: math.unit(130, "lbs"),
  7362. name: "Back",
  7363. image: {
  7364. source: "./media/characters/corvin/back.svg",
  7365. extra: 1803 / 1629
  7366. }
  7367. },
  7368. },
  7369. [
  7370. {
  7371. name: "Micro",
  7372. height: math.unit(3, "inches")
  7373. },
  7374. {
  7375. name: "Normal",
  7376. height: math.unit(5 + 8 / 12, "feet")
  7377. },
  7378. {
  7379. name: "Macro",
  7380. height: math.unit(300, "feet"),
  7381. default: true
  7382. },
  7383. {
  7384. name: "Megamacro",
  7385. height: math.unit(500, "miles")
  7386. }
  7387. ]
  7388. ))
  7389. characterMakers.push(() => makeCharacter(
  7390. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7391. {
  7392. front: {
  7393. height: math.unit(6, "feet"),
  7394. weight: math.unit(135, "lbs"),
  7395. name: "Front",
  7396. image: {
  7397. source: "./media/characters/q/front.svg",
  7398. extra: 854 / 752,
  7399. bottom: 0.005
  7400. }
  7401. },
  7402. back: {
  7403. height: math.unit(6, "feet"),
  7404. weight: math.unit(130, "lbs"),
  7405. name: "Back",
  7406. image: {
  7407. source: "./media/characters/q/back.svg",
  7408. extra: 854 / 752
  7409. }
  7410. },
  7411. },
  7412. [
  7413. {
  7414. name: "Macro",
  7415. height: math.unit(90, "feet"),
  7416. default: true
  7417. },
  7418. {
  7419. name: "Extra Macro",
  7420. height: math.unit(300, "feet"),
  7421. },
  7422. {
  7423. name: "BIG WALF",
  7424. height: math.unit(750, "feet"),
  7425. },
  7426. ]
  7427. ))
  7428. characterMakers.push(() => makeCharacter(
  7429. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7430. {
  7431. front: {
  7432. height: math.unit(6, "feet"),
  7433. weight: math.unit(150, "lbs"),
  7434. name: "Front",
  7435. image: {
  7436. source: "./media/characters/carley/front.svg",
  7437. extra: 3927 / 3540,
  7438. bottom: 29.2 / 735
  7439. }
  7440. }
  7441. },
  7442. [
  7443. {
  7444. name: "Normal",
  7445. height: math.unit(6 + 3 / 12, "feet")
  7446. },
  7447. {
  7448. name: "Macro",
  7449. height: math.unit(185, "feet"),
  7450. default: true
  7451. },
  7452. {
  7453. name: "Megamacro",
  7454. height: math.unit(8, "miles"),
  7455. },
  7456. ]
  7457. ))
  7458. characterMakers.push(() => makeCharacter(
  7459. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7460. {
  7461. front: {
  7462. height: math.unit(3, "feet"),
  7463. weight: math.unit(28, "lbs"),
  7464. name: "Front",
  7465. image: {
  7466. source: "./media/characters/citrine/front.svg"
  7467. }
  7468. }
  7469. },
  7470. [
  7471. {
  7472. name: "Normal",
  7473. height: math.unit(3, "feet"),
  7474. default: true
  7475. }
  7476. ]
  7477. ))
  7478. characterMakers.push(() => makeCharacter(
  7479. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7480. {
  7481. front: {
  7482. height: math.unit(14, "feet"),
  7483. weight: math.unit(1450, "kg"),
  7484. capacity: math.unit(15, "people"),
  7485. name: "Front",
  7486. image: {
  7487. source: "./media/characters/aura-starwind/front.svg",
  7488. extra: 1455 / 1335
  7489. }
  7490. },
  7491. side: {
  7492. height: math.unit(14, "feet"),
  7493. weight: math.unit(1450, "kg"),
  7494. capacity: math.unit(15, "people"),
  7495. name: "Side",
  7496. image: {
  7497. source: "./media/characters/aura-starwind/side.svg",
  7498. extra: 1654 / 1497
  7499. }
  7500. },
  7501. taur: {
  7502. height: math.unit(18, "feet"),
  7503. weight: math.unit(5500, "kg"),
  7504. capacity: math.unit(50, "people"),
  7505. name: "Taur",
  7506. image: {
  7507. source: "./media/characters/aura-starwind/taur.svg",
  7508. extra: 1760 / 1650
  7509. }
  7510. },
  7511. feral: {
  7512. height: math.unit(46, "feet"),
  7513. weight: math.unit(25000, "kg"),
  7514. capacity: math.unit(120, "people"),
  7515. name: "Feral",
  7516. image: {
  7517. source: "./media/characters/aura-starwind/feral.svg"
  7518. }
  7519. },
  7520. },
  7521. [
  7522. {
  7523. name: "Normal",
  7524. height: math.unit(14, "feet"),
  7525. default: true
  7526. },
  7527. {
  7528. name: "Macro",
  7529. height: math.unit(50, "meters")
  7530. },
  7531. {
  7532. name: "Megamacro",
  7533. height: math.unit(5000, "meters")
  7534. },
  7535. {
  7536. name: "Gigamacro",
  7537. height: math.unit(100000, "kilometers")
  7538. },
  7539. ]
  7540. ))
  7541. characterMakers.push(() => makeCharacter(
  7542. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7543. {
  7544. front: {
  7545. height: math.unit(2 + 7 / 12, "feet"),
  7546. weight: math.unit(32, "lbs"),
  7547. name: "Front",
  7548. image: {
  7549. source: "./media/characters/rivet/front.svg",
  7550. extra: 1716 / 1658,
  7551. bottom: 0.03
  7552. }
  7553. },
  7554. foot: {
  7555. height: math.unit(0.551, "feet"),
  7556. name: "Rivet's Foot",
  7557. image: {
  7558. source: "./media/characters/rivet/foot.svg"
  7559. },
  7560. rename: true
  7561. }
  7562. },
  7563. [
  7564. {
  7565. name: "Micro",
  7566. height: math.unit(1.5, "inches"),
  7567. },
  7568. {
  7569. name: "Normal",
  7570. height: math.unit(2 + 7 / 12, "feet"),
  7571. default: true
  7572. },
  7573. {
  7574. name: "Macro",
  7575. height: math.unit(85, "feet")
  7576. },
  7577. {
  7578. name: "Megamacro",
  7579. height: math.unit(2.2, "km")
  7580. }
  7581. ]
  7582. ))
  7583. characterMakers.push(() => makeCharacter(
  7584. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7585. {
  7586. front: {
  7587. height: math.unit(5 + 9 / 12, "feet"),
  7588. weight: math.unit(150, "lbs"),
  7589. name: "Front",
  7590. image: {
  7591. source: "./media/characters/coffee/front.svg",
  7592. extra: 3666 / 3032,
  7593. bottom: 0.04
  7594. }
  7595. },
  7596. foot: {
  7597. height: math.unit(1.29, "feet"),
  7598. name: "Foot",
  7599. image: {
  7600. source: "./media/characters/coffee/foot.svg"
  7601. }
  7602. },
  7603. },
  7604. [
  7605. {
  7606. name: "Micro",
  7607. height: math.unit(2, "inches"),
  7608. },
  7609. {
  7610. name: "Normal",
  7611. height: math.unit(5 + 9 / 12, "feet"),
  7612. default: true
  7613. },
  7614. {
  7615. name: "Macro",
  7616. height: math.unit(800, "feet")
  7617. },
  7618. {
  7619. name: "Megamacro",
  7620. height: math.unit(25, "miles")
  7621. }
  7622. ]
  7623. ))
  7624. characterMakers.push(() => makeCharacter(
  7625. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7626. {
  7627. front: {
  7628. height: math.unit(6, "feet"),
  7629. weight: math.unit(200, "lbs"),
  7630. name: "Front",
  7631. image: {
  7632. source: "./media/characters/chari-gal/front.svg",
  7633. extra: 1568 / 1385,
  7634. bottom: 0.047
  7635. }
  7636. },
  7637. gigantamax: {
  7638. height: math.unit(6 * 16, "feet"),
  7639. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7640. name: "Gigantamax",
  7641. image: {
  7642. source: "./media/characters/chari-gal/gigantamax.svg",
  7643. extra: 1124 / 888,
  7644. bottom: 0.03
  7645. }
  7646. },
  7647. },
  7648. [
  7649. {
  7650. name: "Normal",
  7651. height: math.unit(5 + 7 / 12, "feet")
  7652. },
  7653. {
  7654. name: "Macro",
  7655. height: math.unit(200, "feet"),
  7656. default: true
  7657. }
  7658. ]
  7659. ))
  7660. characterMakers.push(() => makeCharacter(
  7661. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7662. {
  7663. front: {
  7664. height: math.unit(6, "feet"),
  7665. weight: math.unit(150, "lbs"),
  7666. name: "Front",
  7667. image: {
  7668. source: "./media/characters/nova/front.svg",
  7669. extra: 5000 / 4722,
  7670. bottom: 0.02
  7671. }
  7672. }
  7673. },
  7674. [
  7675. {
  7676. name: "Micro-",
  7677. height: math.unit(0.8, "inches")
  7678. },
  7679. {
  7680. name: "Micro",
  7681. height: math.unit(2, "inches"),
  7682. default: true
  7683. },
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7688. {
  7689. front: {
  7690. height: math.unit(3 + 1 / 12, "feet"),
  7691. weight: math.unit(21.7, "lbs"),
  7692. name: "Front",
  7693. image: {
  7694. source: "./media/characters/argent/front.svg",
  7695. extra: 1471 / 1331,
  7696. bottom: 100.8 / 1575.5
  7697. }
  7698. }
  7699. },
  7700. [
  7701. {
  7702. name: "Micro",
  7703. height: math.unit(2, "inches")
  7704. },
  7705. {
  7706. name: "Normal",
  7707. height: math.unit(3 + 1 / 12, "feet"),
  7708. default: true
  7709. },
  7710. {
  7711. name: "Macro",
  7712. height: math.unit(120, "feet")
  7713. },
  7714. ]
  7715. ))
  7716. characterMakers.push(() => makeCharacter(
  7717. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7718. {
  7719. lamp: {
  7720. height: math.unit(7 * 1559 / 989, "feet"),
  7721. name: "Magic Lamp",
  7722. image: {
  7723. source: "./media/characters/mira-al-cul/lamp.svg",
  7724. extra: 1617 / 1559
  7725. }
  7726. },
  7727. front: {
  7728. height: math.unit(7, "feet"),
  7729. name: "Front",
  7730. image: {
  7731. source: "./media/characters/mira-al-cul/front.svg",
  7732. extra: 1044 / 990
  7733. }
  7734. },
  7735. },
  7736. [
  7737. {
  7738. name: "Heavily Restricted",
  7739. height: math.unit(7 * 1559 / 989, "feet")
  7740. },
  7741. {
  7742. name: "Freshly Freed",
  7743. height: math.unit(50 * 1559 / 989, "feet")
  7744. },
  7745. {
  7746. name: "World Encompassing",
  7747. height: math.unit(10000 * 1559 / 989, "miles")
  7748. },
  7749. {
  7750. name: "Galactic",
  7751. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7752. },
  7753. {
  7754. name: "Palmed Universe",
  7755. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7756. default: true
  7757. },
  7758. {
  7759. name: "Multiversal Matriarch",
  7760. height: math.unit(8.87e10, "yottameters")
  7761. },
  7762. {
  7763. name: "Void Mother",
  7764. height: math.unit(3.14e110, "yottaparsecs")
  7765. },
  7766. {
  7767. name: "Toying with Transcendence",
  7768. height: math.unit(1e307, "meters")
  7769. },
  7770. ]
  7771. ))
  7772. characterMakers.push(() => makeCharacter(
  7773. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7774. {
  7775. front: {
  7776. height: math.unit(17 + 1 / 12, "feet"),
  7777. weight: math.unit(476.2 * 5, "lbs"),
  7778. name: "Front",
  7779. image: {
  7780. source: "./media/characters/kuro-shi-uchū/front.svg",
  7781. extra: 2329 / 1835,
  7782. bottom: 0.02
  7783. }
  7784. },
  7785. },
  7786. [
  7787. {
  7788. name: "Micro",
  7789. height: math.unit(2, "inches")
  7790. },
  7791. {
  7792. name: "Normal",
  7793. height: math.unit(12, "meters")
  7794. },
  7795. {
  7796. name: "Planetary",
  7797. height: math.unit(0.00929, "AU"),
  7798. default: true
  7799. },
  7800. {
  7801. name: "Universal",
  7802. height: math.unit(20, "gigaparsecs")
  7803. },
  7804. ]
  7805. ))
  7806. characterMakers.push(() => makeCharacter(
  7807. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7808. {
  7809. front: {
  7810. height: math.unit(5 + 2 / 12, "feet"),
  7811. weight: math.unit(120, "lbs"),
  7812. name: "Front",
  7813. image: {
  7814. source: "./media/characters/katherine/front.svg",
  7815. extra: 2075 / 1969
  7816. }
  7817. },
  7818. dress: {
  7819. height: math.unit(5 + 2 / 12, "feet"),
  7820. weight: math.unit(120, "lbs"),
  7821. name: "Dress",
  7822. image: {
  7823. source: "./media/characters/katherine/dress.svg",
  7824. extra: 2258 / 2064
  7825. }
  7826. },
  7827. },
  7828. [
  7829. {
  7830. name: "Micro",
  7831. height: math.unit(1, "inches"),
  7832. default: true
  7833. },
  7834. {
  7835. name: "Normal",
  7836. height: math.unit(5 + 2 / 12, "feet")
  7837. },
  7838. {
  7839. name: "Macro",
  7840. height: math.unit(100, "meters")
  7841. },
  7842. {
  7843. name: "Megamacro",
  7844. height: math.unit(80, "miles")
  7845. },
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7850. {
  7851. front: {
  7852. height: math.unit(7 + 8 / 12, "feet"),
  7853. weight: math.unit(250, "lbs"),
  7854. name: "Front",
  7855. image: {
  7856. source: "./media/characters/yevis/front.svg",
  7857. extra: 1938 / 1755
  7858. }
  7859. }
  7860. },
  7861. [
  7862. {
  7863. name: "Mortal",
  7864. height: math.unit(7 + 8 / 12, "feet")
  7865. },
  7866. {
  7867. name: "Battle",
  7868. height: math.unit(25 + 11 / 12, "feet")
  7869. },
  7870. {
  7871. name: "Wrath",
  7872. height: math.unit(1654 + 11 / 12, "feet")
  7873. },
  7874. {
  7875. name: "Planet Destroyer",
  7876. height: math.unit(12000, "miles")
  7877. },
  7878. {
  7879. name: "Galaxy Conqueror",
  7880. height: math.unit(1.45, "zettameters"),
  7881. default: true
  7882. },
  7883. {
  7884. name: "Universal War",
  7885. height: math.unit(184, "gigaparsecs")
  7886. },
  7887. {
  7888. name: "Eternity War",
  7889. height: math.unit(1.98e55, "yottaparsecs")
  7890. },
  7891. ]
  7892. ))
  7893. characterMakers.push(() => makeCharacter(
  7894. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7895. {
  7896. front: {
  7897. height: math.unit(5 + 8 / 12, "feet"),
  7898. weight: math.unit(63, "kg"),
  7899. name: "Front",
  7900. image: {
  7901. source: "./media/characters/xavier/front.svg",
  7902. extra: 944 / 883
  7903. }
  7904. },
  7905. frontStretch: {
  7906. height: math.unit(5 + 8 / 12, "feet"),
  7907. weight: math.unit(63, "kg"),
  7908. name: "Stretching",
  7909. image: {
  7910. source: "./media/characters/xavier/front-stretch.svg",
  7911. extra: 962 / 820
  7912. }
  7913. },
  7914. },
  7915. [
  7916. {
  7917. name: "Normal",
  7918. height: math.unit(5 + 8 / 12, "feet")
  7919. },
  7920. {
  7921. name: "Macro",
  7922. height: math.unit(100, "meters"),
  7923. default: true
  7924. },
  7925. {
  7926. name: "McLargeHuge",
  7927. height: math.unit(10, "miles")
  7928. },
  7929. ]
  7930. ))
  7931. characterMakers.push(() => makeCharacter(
  7932. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7933. {
  7934. front: {
  7935. height: math.unit(5 + 5 / 12, "feet"),
  7936. weight: math.unit(150, "lb"),
  7937. name: "Front",
  7938. image: {
  7939. source: "./media/characters/joshii/front.svg",
  7940. extra: 765/653,
  7941. bottom: 51/816
  7942. }
  7943. },
  7944. foot: {
  7945. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7946. name: "Foot",
  7947. image: {
  7948. source: "./media/characters/joshii/foot.svg"
  7949. }
  7950. },
  7951. },
  7952. [
  7953. {
  7954. name: "Micro",
  7955. height: math.unit(2, "inches"),
  7956. default: true
  7957. },
  7958. {
  7959. name: "Normal",
  7960. height: math.unit(5 + 5 / 12, "feet")
  7961. },
  7962. {
  7963. name: "Macro",
  7964. height: math.unit(785, "feet")
  7965. },
  7966. {
  7967. name: "Megamacro",
  7968. height: math.unit(24.5, "miles")
  7969. },
  7970. ]
  7971. ))
  7972. characterMakers.push(() => makeCharacter(
  7973. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7974. {
  7975. front: {
  7976. height: math.unit(6, "feet"),
  7977. weight: math.unit(150, "lb"),
  7978. name: "Front",
  7979. image: {
  7980. source: "./media/characters/goddess-elizabeth/front.svg",
  7981. extra: 1800 / 1525,
  7982. bottom: 0.005
  7983. }
  7984. },
  7985. foot: {
  7986. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7987. name: "Foot",
  7988. image: {
  7989. source: "./media/characters/goddess-elizabeth/foot.svg"
  7990. }
  7991. },
  7992. mouth: {
  7993. height: math.unit(6, "feet"),
  7994. name: "Mouth",
  7995. image: {
  7996. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7997. }
  7998. },
  7999. },
  8000. [
  8001. {
  8002. name: "Micro",
  8003. height: math.unit(12, "feet")
  8004. },
  8005. {
  8006. name: "Normal",
  8007. height: math.unit(80, "miles"),
  8008. default: true
  8009. },
  8010. {
  8011. name: "Macro",
  8012. height: math.unit(15000, "parsecs")
  8013. },
  8014. ]
  8015. ))
  8016. characterMakers.push(() => makeCharacter(
  8017. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8018. {
  8019. front: {
  8020. height: math.unit(5 + 9 / 12, "feet"),
  8021. weight: math.unit(144, "lb"),
  8022. name: "Front",
  8023. image: {
  8024. source: "./media/characters/kara/front.svg"
  8025. }
  8026. },
  8027. feet: {
  8028. height: math.unit(6 / 6.765, "feet"),
  8029. name: "Kara's Feet",
  8030. rename: true,
  8031. image: {
  8032. source: "./media/characters/kara/feet.svg"
  8033. }
  8034. },
  8035. },
  8036. [
  8037. {
  8038. name: "Normal",
  8039. height: math.unit(5 + 9 / 12, "feet")
  8040. },
  8041. {
  8042. name: "Macro",
  8043. height: math.unit(174, "feet"),
  8044. default: true
  8045. },
  8046. ]
  8047. ))
  8048. characterMakers.push(() => makeCharacter(
  8049. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8050. {
  8051. front: {
  8052. height: math.unit(18, "feet"),
  8053. weight: math.unit(4050, "lb"),
  8054. name: "Front",
  8055. image: {
  8056. source: "./media/characters/tyrone/front.svg",
  8057. extra: 2520 / 2402,
  8058. bottom: 0.025
  8059. }
  8060. },
  8061. },
  8062. [
  8063. {
  8064. name: "Normal",
  8065. height: math.unit(18, "feet"),
  8066. default: true
  8067. },
  8068. {
  8069. name: "Macro",
  8070. height: math.unit(300, "feet")
  8071. },
  8072. ]
  8073. ))
  8074. characterMakers.push(() => makeCharacter(
  8075. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8076. {
  8077. front: {
  8078. height: math.unit(7 + 8 / 12, "feet"),
  8079. weight: math.unit(120, "lb"),
  8080. name: "Front",
  8081. image: {
  8082. source: "./media/characters/danny/front.svg",
  8083. extra: 1490 / 1350
  8084. }
  8085. },
  8086. back: {
  8087. height: math.unit(7 + 8 / 12, "feet"),
  8088. weight: math.unit(120, "lb"),
  8089. name: "Back",
  8090. image: {
  8091. source: "./media/characters/danny/back.svg",
  8092. extra: 1490 / 1350
  8093. }
  8094. },
  8095. },
  8096. [
  8097. {
  8098. name: "Normal",
  8099. height: math.unit(7 + 8 / 12, "feet"),
  8100. default: true
  8101. },
  8102. ]
  8103. ))
  8104. characterMakers.push(() => makeCharacter(
  8105. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8106. {
  8107. front: {
  8108. height: math.unit(3.5, "inches"),
  8109. weight: math.unit(19, "grams"),
  8110. name: "Front",
  8111. image: {
  8112. source: "./media/characters/mallow/front.svg",
  8113. extra: 471 / 431
  8114. }
  8115. },
  8116. back: {
  8117. height: math.unit(3.5, "inches"),
  8118. weight: math.unit(19, "grams"),
  8119. name: "Back",
  8120. image: {
  8121. source: "./media/characters/mallow/back.svg",
  8122. extra: 471 / 431
  8123. }
  8124. },
  8125. },
  8126. [
  8127. {
  8128. name: "Normal",
  8129. height: math.unit(3.5, "inches"),
  8130. default: true
  8131. },
  8132. ]
  8133. ))
  8134. characterMakers.push(() => makeCharacter(
  8135. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8136. {
  8137. front: {
  8138. height: math.unit(9, "feet"),
  8139. weight: math.unit(230, "kg"),
  8140. name: "Front",
  8141. image: {
  8142. source: "./media/characters/starry-aqua/front.svg"
  8143. }
  8144. },
  8145. back: {
  8146. height: math.unit(9, "feet"),
  8147. weight: math.unit(230, "kg"),
  8148. name: "Back",
  8149. image: {
  8150. source: "./media/characters/starry-aqua/back.svg"
  8151. }
  8152. },
  8153. hand: {
  8154. height: math.unit(9 * 0.1168, "feet"),
  8155. name: "Hand",
  8156. image: {
  8157. source: "./media/characters/starry-aqua/hand.svg"
  8158. }
  8159. },
  8160. foot: {
  8161. height: math.unit(9 * 0.18, "feet"),
  8162. name: "Foot",
  8163. image: {
  8164. source: "./media/characters/starry-aqua/foot.svg"
  8165. }
  8166. }
  8167. },
  8168. [
  8169. {
  8170. name: "Micro",
  8171. height: math.unit(3, "inches")
  8172. },
  8173. {
  8174. name: "Normal",
  8175. height: math.unit(9, "feet")
  8176. },
  8177. {
  8178. name: "Macro",
  8179. height: math.unit(300, "feet"),
  8180. default: true
  8181. },
  8182. {
  8183. name: "Megamacro",
  8184. height: math.unit(3200, "feet")
  8185. }
  8186. ]
  8187. ))
  8188. characterMakers.push(() => makeCharacter(
  8189. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8190. {
  8191. front: {
  8192. height: math.unit(6, "feet"),
  8193. weight: math.unit(230, "lb"),
  8194. name: "Front",
  8195. image: {
  8196. source: "./media/characters/luka/front.svg",
  8197. extra: 1,
  8198. bottom: 0.025
  8199. }
  8200. },
  8201. },
  8202. [
  8203. {
  8204. name: "Normal",
  8205. height: math.unit(12 + 8 / 12, "feet"),
  8206. default: true
  8207. },
  8208. {
  8209. name: "Minimacro",
  8210. height: math.unit(20, "feet")
  8211. },
  8212. {
  8213. name: "Macro",
  8214. height: math.unit(250, "feet")
  8215. },
  8216. {
  8217. name: "Megamacro",
  8218. height: math.unit(5, "miles")
  8219. },
  8220. {
  8221. name: "Gigamacro",
  8222. height: math.unit(8000, "miles")
  8223. },
  8224. ]
  8225. ))
  8226. characterMakers.push(() => makeCharacter(
  8227. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8228. {
  8229. front: {
  8230. height: math.unit(6, "feet"),
  8231. weight: math.unit(150, "lb"),
  8232. name: "Front",
  8233. image: {
  8234. source: "./media/characters/natalie-nightring/front.svg",
  8235. extra: 1,
  8236. bottom: 0.06
  8237. }
  8238. },
  8239. },
  8240. [
  8241. {
  8242. name: "Uh Oh",
  8243. height: math.unit(0.1, "mm")
  8244. },
  8245. {
  8246. name: "Small",
  8247. height: math.unit(3, "inches")
  8248. },
  8249. {
  8250. name: "Human Scale",
  8251. height: math.unit(6, "feet")
  8252. },
  8253. {
  8254. name: "Librarian",
  8255. height: math.unit(50, "feet"),
  8256. default: true
  8257. },
  8258. {
  8259. name: "Immense",
  8260. height: math.unit(200, "miles")
  8261. },
  8262. ]
  8263. ))
  8264. characterMakers.push(() => makeCharacter(
  8265. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8266. {
  8267. front: {
  8268. height: math.unit(6, "feet"),
  8269. weight: math.unit(180, "lbs"),
  8270. name: "Front",
  8271. image: {
  8272. source: "./media/characters/danni-rosie/front.svg",
  8273. extra: 1260 / 1128,
  8274. bottom: 0.022
  8275. }
  8276. },
  8277. },
  8278. [
  8279. {
  8280. name: "Micro",
  8281. height: math.unit(2, "inches"),
  8282. default: true
  8283. },
  8284. ]
  8285. ))
  8286. characterMakers.push(() => makeCharacter(
  8287. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8288. {
  8289. front: {
  8290. height: math.unit(5 + 9 / 12, "feet"),
  8291. weight: math.unit(220, "lb"),
  8292. name: "Front",
  8293. image: {
  8294. source: "./media/characters/samantha-kruse/front.svg",
  8295. extra: (985 / 935),
  8296. bottom: 0.03
  8297. }
  8298. },
  8299. frontUndressed: {
  8300. height: math.unit(5 + 9 / 12, "feet"),
  8301. weight: math.unit(220, "lb"),
  8302. name: "Front (Undressed)",
  8303. image: {
  8304. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8305. extra: (973 / 923),
  8306. bottom: 0.025
  8307. }
  8308. },
  8309. fat: {
  8310. height: math.unit(5 + 9 / 12, "feet"),
  8311. weight: math.unit(900, "lb"),
  8312. name: "Front (Fat)",
  8313. image: {
  8314. source: "./media/characters/samantha-kruse/fat.svg",
  8315. extra: 2688 / 2561
  8316. }
  8317. },
  8318. },
  8319. [
  8320. {
  8321. name: "Normal",
  8322. height: math.unit(5 + 9 / 12, "feet"),
  8323. default: true
  8324. }
  8325. ]
  8326. ))
  8327. characterMakers.push(() => makeCharacter(
  8328. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8329. {
  8330. back: {
  8331. height: math.unit(5 + 4 / 12, "feet"),
  8332. weight: math.unit(4963, "lb"),
  8333. name: "Back",
  8334. image: {
  8335. source: "./media/characters/amelia-rosie/back.svg",
  8336. extra: 1113 / 963,
  8337. bottom: 0.01
  8338. }
  8339. },
  8340. },
  8341. [
  8342. {
  8343. name: "Level 0",
  8344. height: math.unit(5 + 4 / 12, "feet")
  8345. },
  8346. {
  8347. name: "Level 1",
  8348. height: math.unit(164597, "feet"),
  8349. default: true
  8350. },
  8351. {
  8352. name: "Level 2",
  8353. height: math.unit(956243, "miles")
  8354. },
  8355. {
  8356. name: "Level 3",
  8357. height: math.unit(29421709423, "miles")
  8358. },
  8359. {
  8360. name: "Level 4",
  8361. height: math.unit(154, "lightyears")
  8362. },
  8363. {
  8364. name: "Level 5",
  8365. height: math.unit(4738272, "lightyears")
  8366. },
  8367. {
  8368. name: "Level 6",
  8369. height: math.unit(145787152896, "lightyears")
  8370. },
  8371. ]
  8372. ))
  8373. characterMakers.push(() => makeCharacter(
  8374. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8375. {
  8376. front: {
  8377. height: math.unit(5 + 11 / 12, "feet"),
  8378. weight: math.unit(65, "kg"),
  8379. name: "Front",
  8380. image: {
  8381. source: "./media/characters/rook-kitara/front.svg",
  8382. extra: 1347 / 1274,
  8383. bottom: 0.005
  8384. }
  8385. },
  8386. },
  8387. [
  8388. {
  8389. name: "Totally Unfair",
  8390. height: math.unit(1.8, "mm")
  8391. },
  8392. {
  8393. name: "Lap Rookie",
  8394. height: math.unit(1.4, "feet")
  8395. },
  8396. {
  8397. name: "Normal",
  8398. height: math.unit(5 + 11 / 12, "feet"),
  8399. default: true
  8400. },
  8401. {
  8402. name: "How Did This Happen",
  8403. height: math.unit(80, "miles")
  8404. }
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8409. {
  8410. front: {
  8411. height: math.unit(7, "feet"),
  8412. weight: math.unit(300, "lb"),
  8413. name: "Front",
  8414. image: {
  8415. source: "./media/characters/pisces/front.svg",
  8416. extra: 2255 / 2115,
  8417. bottom: 0.03
  8418. }
  8419. },
  8420. back: {
  8421. height: math.unit(7, "feet"),
  8422. weight: math.unit(300, "lb"),
  8423. name: "Back",
  8424. image: {
  8425. source: "./media/characters/pisces/back.svg",
  8426. extra: 2146 / 2055,
  8427. bottom: 0.04
  8428. }
  8429. },
  8430. },
  8431. [
  8432. {
  8433. name: "Normal",
  8434. height: math.unit(7, "feet"),
  8435. default: true
  8436. },
  8437. {
  8438. name: "Swimming Pool",
  8439. height: math.unit(12.2, "meters")
  8440. },
  8441. {
  8442. name: "Olympic Swimming Pool",
  8443. height: math.unit(56.3, "meters")
  8444. },
  8445. {
  8446. name: "Lake Superior",
  8447. height: math.unit(93900, "meters")
  8448. },
  8449. {
  8450. name: "Mediterranean Sea",
  8451. height: math.unit(644457, "meters")
  8452. },
  8453. {
  8454. name: "World's Oceans",
  8455. height: math.unit(4567491, "meters")
  8456. },
  8457. ]
  8458. ))
  8459. characterMakers.push(() => makeCharacter(
  8460. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8461. {
  8462. front: {
  8463. height: math.unit(2.3, "meters"),
  8464. weight: math.unit(120, "kg"),
  8465. name: "Front",
  8466. image: {
  8467. source: "./media/characters/zelas/front.svg"
  8468. }
  8469. },
  8470. side: {
  8471. height: math.unit(2.3, "meters"),
  8472. weight: math.unit(120, "kg"),
  8473. name: "Side",
  8474. image: {
  8475. source: "./media/characters/zelas/side.svg"
  8476. }
  8477. },
  8478. back: {
  8479. height: math.unit(2.3, "meters"),
  8480. weight: math.unit(120, "kg"),
  8481. name: "Back",
  8482. image: {
  8483. source: "./media/characters/zelas/back.svg"
  8484. }
  8485. },
  8486. foot: {
  8487. height: math.unit(1.116, "feet"),
  8488. name: "Foot",
  8489. image: {
  8490. source: "./media/characters/zelas/foot.svg"
  8491. }
  8492. },
  8493. },
  8494. [
  8495. {
  8496. name: "Normal",
  8497. height: math.unit(2.3, "meters")
  8498. },
  8499. {
  8500. name: "Macro",
  8501. height: math.unit(30, "meters"),
  8502. default: true
  8503. },
  8504. ]
  8505. ))
  8506. characterMakers.push(() => makeCharacter(
  8507. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8508. {
  8509. front: {
  8510. height: math.unit(1, "inch"),
  8511. weight: math.unit(0.21, "grams"),
  8512. name: "Front",
  8513. image: {
  8514. source: "./media/characters/talbot/front.svg",
  8515. extra: 594 / 544
  8516. }
  8517. },
  8518. },
  8519. [
  8520. {
  8521. name: "Micro",
  8522. height: math.unit(1, "inch"),
  8523. default: true
  8524. },
  8525. ]
  8526. ))
  8527. characterMakers.push(() => makeCharacter(
  8528. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8529. {
  8530. front: {
  8531. height: math.unit(3 + 3 / 12, "feet"),
  8532. weight: math.unit(51.8, "lb"),
  8533. name: "Front",
  8534. image: {
  8535. source: "./media/characters/fliss/front.svg",
  8536. extra: 840 / 640
  8537. }
  8538. },
  8539. },
  8540. [
  8541. {
  8542. name: "Teeny Tiny",
  8543. height: math.unit(1, "mm")
  8544. },
  8545. {
  8546. name: "Small",
  8547. height: math.unit(1, "inch"),
  8548. default: true
  8549. },
  8550. {
  8551. name: "Standard Sylveon",
  8552. height: math.unit(3 + 3 / 12, "feet")
  8553. },
  8554. {
  8555. name: "Large Nuisance",
  8556. height: math.unit(33, "feet")
  8557. },
  8558. {
  8559. name: "City Filler",
  8560. height: math.unit(3000, "feet")
  8561. },
  8562. {
  8563. name: "New Horizon",
  8564. height: math.unit(6000, "miles")
  8565. },
  8566. ]
  8567. ))
  8568. characterMakers.push(() => makeCharacter(
  8569. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8570. {
  8571. front: {
  8572. height: math.unit(5, "cm"),
  8573. weight: math.unit(1.94, "g"),
  8574. name: "Front",
  8575. image: {
  8576. source: "./media/characters/fleta/front.svg",
  8577. extra: 835 / 803
  8578. }
  8579. },
  8580. back: {
  8581. height: math.unit(5, "cm"),
  8582. weight: math.unit(1.94, "g"),
  8583. name: "Back",
  8584. image: {
  8585. source: "./media/characters/fleta/back.svg",
  8586. extra: 835 / 803
  8587. }
  8588. },
  8589. },
  8590. [
  8591. {
  8592. name: "Micro",
  8593. height: math.unit(5, "cm"),
  8594. default: true
  8595. },
  8596. ]
  8597. ))
  8598. characterMakers.push(() => makeCharacter(
  8599. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8600. {
  8601. front: {
  8602. height: math.unit(6, "feet"),
  8603. weight: math.unit(225, "lb"),
  8604. name: "Front",
  8605. image: {
  8606. source: "./media/characters/dominic/front.svg",
  8607. extra: 1770 / 1620,
  8608. bottom: 0.025
  8609. }
  8610. },
  8611. back: {
  8612. height: math.unit(6, "feet"),
  8613. weight: math.unit(225, "lb"),
  8614. name: "Back",
  8615. image: {
  8616. source: "./media/characters/dominic/back.svg",
  8617. extra: 1745 / 1620,
  8618. bottom: 0.065
  8619. }
  8620. },
  8621. },
  8622. [
  8623. {
  8624. name: "Nano",
  8625. height: math.unit(0.1, "mm")
  8626. },
  8627. {
  8628. name: "Micro-",
  8629. height: math.unit(1, "mm")
  8630. },
  8631. {
  8632. name: "Micro",
  8633. height: math.unit(4, "inches")
  8634. },
  8635. {
  8636. name: "Normal",
  8637. height: math.unit(6 + 4 / 12, "feet"),
  8638. default: true
  8639. },
  8640. {
  8641. name: "Macro",
  8642. height: math.unit(115, "feet")
  8643. },
  8644. {
  8645. name: "Macro+",
  8646. height: math.unit(955, "feet")
  8647. },
  8648. {
  8649. name: "Megamacro",
  8650. height: math.unit(8990, "feet")
  8651. },
  8652. {
  8653. name: "Gigmacro",
  8654. height: math.unit(9310, "miles")
  8655. },
  8656. {
  8657. name: "Teramacro",
  8658. height: math.unit(1567005010, "miles")
  8659. },
  8660. {
  8661. name: "Examacro",
  8662. height: math.unit(1425, "parsecs")
  8663. },
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8668. {
  8669. front: {
  8670. height: math.unit(400, "feet"),
  8671. weight: math.unit(44444444, "lb"),
  8672. name: "Front",
  8673. image: {
  8674. source: "./media/characters/major-colonel/front.svg"
  8675. }
  8676. },
  8677. back: {
  8678. height: math.unit(400, "feet"),
  8679. weight: math.unit(44444444, "lb"),
  8680. name: "Back",
  8681. image: {
  8682. source: "./media/characters/major-colonel/back.svg"
  8683. }
  8684. },
  8685. },
  8686. [
  8687. {
  8688. name: "Macro",
  8689. height: math.unit(400, "feet"),
  8690. default: true
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8696. {
  8697. catFront: {
  8698. height: math.unit(6, "feet"),
  8699. weight: math.unit(120, "lb"),
  8700. name: "Front (Cat Side)",
  8701. image: {
  8702. source: "./media/characters/axel-lycan/cat-front.svg",
  8703. extra: 430 / 402,
  8704. bottom: 43 / 472.35
  8705. }
  8706. },
  8707. catBack: {
  8708. height: math.unit(6, "feet"),
  8709. weight: math.unit(120, "lb"),
  8710. name: "Back (Cat Side)",
  8711. image: {
  8712. source: "./media/characters/axel-lycan/cat-back.svg",
  8713. extra: 447 / 419,
  8714. bottom: 23.3 / 469
  8715. }
  8716. },
  8717. wolfFront: {
  8718. height: math.unit(6, "feet"),
  8719. weight: math.unit(120, "lb"),
  8720. name: "Front (Wolf Side)",
  8721. image: {
  8722. source: "./media/characters/axel-lycan/wolf-front.svg",
  8723. extra: 485 / 456,
  8724. bottom: 19 / 504
  8725. }
  8726. },
  8727. wolfBack: {
  8728. height: math.unit(6, "feet"),
  8729. weight: math.unit(120, "lb"),
  8730. name: "Back (Wolf Side)",
  8731. image: {
  8732. source: "./media/characters/axel-lycan/wolf-back.svg",
  8733. extra: 475 / 438,
  8734. bottom: 39.2 / 514
  8735. }
  8736. },
  8737. },
  8738. [
  8739. {
  8740. name: "Macro",
  8741. height: math.unit(1, "km"),
  8742. default: true
  8743. },
  8744. ]
  8745. ))
  8746. characterMakers.push(() => makeCharacter(
  8747. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8748. {
  8749. front: {
  8750. height: math.unit(5 + 9 / 12, "feet"),
  8751. weight: math.unit(175, "lb"),
  8752. name: "Front",
  8753. image: {
  8754. source: "./media/characters/vanrel-hyena/front.svg",
  8755. extra: 1086 / 1010,
  8756. bottom: 0.04
  8757. }
  8758. },
  8759. },
  8760. [
  8761. {
  8762. name: "Normal",
  8763. height: math.unit(5 + 9 / 12, "feet"),
  8764. default: true
  8765. },
  8766. ]
  8767. ))
  8768. characterMakers.push(() => makeCharacter(
  8769. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8770. {
  8771. front: {
  8772. height: math.unit(6, "feet"),
  8773. weight: math.unit(103, "lb"),
  8774. name: "Front",
  8775. image: {
  8776. source: "./media/characters/abbott-absol/front.svg",
  8777. extra: 2010 / 1842
  8778. }
  8779. },
  8780. },
  8781. [
  8782. {
  8783. name: "Megamicro",
  8784. height: math.unit(0.1, "mm")
  8785. },
  8786. {
  8787. name: "Micro",
  8788. height: math.unit(1, "inch")
  8789. },
  8790. {
  8791. name: "Normal",
  8792. height: math.unit(6, "feet"),
  8793. default: true
  8794. },
  8795. ]
  8796. ))
  8797. characterMakers.push(() => makeCharacter(
  8798. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8799. {
  8800. front: {
  8801. height: math.unit(6, "feet"),
  8802. weight: math.unit(264, "lb"),
  8803. name: "Front",
  8804. image: {
  8805. source: "./media/characters/hector/front.svg",
  8806. extra: 2280 / 2130,
  8807. bottom: 0.07
  8808. }
  8809. },
  8810. },
  8811. [
  8812. {
  8813. name: "Normal",
  8814. height: math.unit(12.25, "foot"),
  8815. default: true
  8816. },
  8817. {
  8818. name: "Macro",
  8819. height: math.unit(160, "feet")
  8820. },
  8821. ]
  8822. ))
  8823. characterMakers.push(() => makeCharacter(
  8824. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8825. {
  8826. front: {
  8827. height: math.unit(6, "feet"),
  8828. weight: math.unit(150, "lb"),
  8829. name: "Front",
  8830. image: {
  8831. source: "./media/characters/sal/front.svg",
  8832. extra: 1846 / 1699,
  8833. bottom: 0.04
  8834. }
  8835. },
  8836. },
  8837. [
  8838. {
  8839. name: "Megamacro",
  8840. height: math.unit(10, "miles"),
  8841. default: true
  8842. },
  8843. ]
  8844. ))
  8845. characterMakers.push(() => makeCharacter(
  8846. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8847. {
  8848. front: {
  8849. height: math.unit(3, "meters"),
  8850. weight: math.unit(450, "kg"),
  8851. name: "front",
  8852. image: {
  8853. source: "./media/characters/ranger/front.svg",
  8854. extra: 2401 / 2243,
  8855. bottom: 0.05
  8856. }
  8857. },
  8858. },
  8859. [
  8860. {
  8861. name: "Normal",
  8862. height: math.unit(3, "meters"),
  8863. default: true
  8864. },
  8865. ]
  8866. ))
  8867. characterMakers.push(() => makeCharacter(
  8868. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8869. {
  8870. front: {
  8871. height: math.unit(14, "feet"),
  8872. weight: math.unit(800, "kg"),
  8873. name: "Front",
  8874. image: {
  8875. source: "./media/characters/theresa/front.svg",
  8876. extra: 3575 / 3346,
  8877. bottom: 0.03
  8878. }
  8879. },
  8880. },
  8881. [
  8882. {
  8883. name: "Normal",
  8884. height: math.unit(14, "feet"),
  8885. default: true
  8886. },
  8887. ]
  8888. ))
  8889. characterMakers.push(() => makeCharacter(
  8890. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8891. {
  8892. front: {
  8893. height: math.unit(6, "feet"),
  8894. weight: math.unit(3, "kg"),
  8895. name: "Front",
  8896. image: {
  8897. source: "./media/characters/ine/front.svg",
  8898. extra: 678 / 539,
  8899. bottom: 0.023
  8900. }
  8901. },
  8902. },
  8903. [
  8904. {
  8905. name: "Normal",
  8906. height: math.unit(2.265, "feet"),
  8907. default: true
  8908. },
  8909. ]
  8910. ))
  8911. characterMakers.push(() => makeCharacter(
  8912. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8913. {
  8914. front: {
  8915. height: math.unit(5, "feet"),
  8916. weight: math.unit(30, "kg"),
  8917. name: "Front",
  8918. image: {
  8919. source: "./media/characters/vial/front.svg",
  8920. extra: 1365 / 1277,
  8921. bottom: 0.04
  8922. }
  8923. },
  8924. },
  8925. [
  8926. {
  8927. name: "Normal",
  8928. height: math.unit(5, "feet"),
  8929. default: true
  8930. },
  8931. ]
  8932. ))
  8933. characterMakers.push(() => makeCharacter(
  8934. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8935. {
  8936. side: {
  8937. height: math.unit(3.4, "meters"),
  8938. weight: math.unit(1000, "lb"),
  8939. name: "Side",
  8940. image: {
  8941. source: "./media/characters/rovoska/side.svg",
  8942. extra: 4403 / 1515
  8943. }
  8944. },
  8945. },
  8946. [
  8947. {
  8948. name: "Normal",
  8949. height: math.unit(3.4, "meters"),
  8950. default: true
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(8, "feet"),
  8959. weight: math.unit(315, "lb"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/gunner-rotthbauer/front.svg"
  8963. }
  8964. },
  8965. back: {
  8966. height: math.unit(8, "feet"),
  8967. weight: math.unit(315, "lb"),
  8968. name: "Back",
  8969. image: {
  8970. source: "./media/characters/gunner-rotthbauer/back.svg"
  8971. }
  8972. },
  8973. },
  8974. [
  8975. {
  8976. name: "Micro",
  8977. height: math.unit(3.5, "inches")
  8978. },
  8979. {
  8980. name: "Normal",
  8981. height: math.unit(8, "feet"),
  8982. default: true
  8983. },
  8984. {
  8985. name: "Macro",
  8986. height: math.unit(250, "feet")
  8987. },
  8988. {
  8989. name: "Megamacro",
  8990. height: math.unit(1, "AU")
  8991. },
  8992. ]
  8993. ))
  8994. characterMakers.push(() => makeCharacter(
  8995. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8996. {
  8997. front: {
  8998. height: math.unit(5 + 5 / 12, "feet"),
  8999. weight: math.unit(140, "lb"),
  9000. name: "Front",
  9001. image: {
  9002. source: "./media/characters/allatia/front.svg",
  9003. extra: 1227 / 1180,
  9004. bottom: 0.027
  9005. }
  9006. },
  9007. },
  9008. [
  9009. {
  9010. name: "Normal",
  9011. height: math.unit(5 + 5 / 12, "feet")
  9012. },
  9013. {
  9014. name: "Macro",
  9015. height: math.unit(250, "feet"),
  9016. default: true
  9017. },
  9018. {
  9019. name: "Megamacro",
  9020. height: math.unit(8, "miles")
  9021. }
  9022. ]
  9023. ))
  9024. characterMakers.push(() => makeCharacter(
  9025. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9026. {
  9027. front: {
  9028. height: math.unit(6, "feet"),
  9029. weight: math.unit(120, "lb"),
  9030. name: "Front",
  9031. image: {
  9032. source: "./media/characters/tene/front.svg",
  9033. extra: 1728 / 1578,
  9034. bottom: 0.022
  9035. }
  9036. },
  9037. stomping: {
  9038. height: math.unit(2.025, "meters"),
  9039. weight: math.unit(120, "lb"),
  9040. name: "Stomping",
  9041. image: {
  9042. source: "./media/characters/tene/stomping.svg",
  9043. extra: 938 / 873,
  9044. bottom: 0.01
  9045. }
  9046. },
  9047. sitting: {
  9048. height: math.unit(1, "meter"),
  9049. weight: math.unit(120, "lb"),
  9050. name: "Sitting",
  9051. image: {
  9052. source: "./media/characters/tene/sitting.svg",
  9053. extra: 437 / 415,
  9054. bottom: 0.1
  9055. }
  9056. },
  9057. feral: {
  9058. height: math.unit(3.9, "feet"),
  9059. weight: math.unit(250, "lb"),
  9060. name: "Feral",
  9061. image: {
  9062. source: "./media/characters/tene/feral.svg",
  9063. extra: 717 / 458,
  9064. bottom: 0.179
  9065. }
  9066. },
  9067. },
  9068. [
  9069. {
  9070. name: "Normal",
  9071. height: math.unit(6, "feet")
  9072. },
  9073. {
  9074. name: "Macro",
  9075. height: math.unit(300, "feet"),
  9076. default: true
  9077. },
  9078. {
  9079. name: "Megamacro",
  9080. height: math.unit(5, "miles")
  9081. },
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9086. {
  9087. side: {
  9088. height: math.unit(6, "feet"),
  9089. name: "Side",
  9090. image: {
  9091. source: "./media/characters/evander/side.svg",
  9092. extra: 877 / 477
  9093. }
  9094. },
  9095. },
  9096. [
  9097. {
  9098. name: "Normal",
  9099. height: math.unit(0.83, "meters"),
  9100. default: true
  9101. },
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9106. {
  9107. front: {
  9108. height: math.unit(12, "feet"),
  9109. weight: math.unit(1000, "lb"),
  9110. name: "Front",
  9111. image: {
  9112. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9113. extra: 1762 / 1611
  9114. }
  9115. },
  9116. back: {
  9117. height: math.unit(12, "feet"),
  9118. weight: math.unit(1000, "lb"),
  9119. name: "Back",
  9120. image: {
  9121. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9122. extra: 1762 / 1611
  9123. }
  9124. },
  9125. },
  9126. [
  9127. {
  9128. name: "Normal",
  9129. height: math.unit(12, "feet"),
  9130. default: true
  9131. },
  9132. {
  9133. name: "Kaiju",
  9134. height: math.unit(150, "feet")
  9135. },
  9136. ]
  9137. ))
  9138. characterMakers.push(() => makeCharacter(
  9139. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9140. {
  9141. front: {
  9142. height: math.unit(6, "feet"),
  9143. weight: math.unit(150, "lb"),
  9144. name: "Front",
  9145. image: {
  9146. source: "./media/characters/zero-alurus/front.svg"
  9147. }
  9148. },
  9149. back: {
  9150. height: math.unit(6, "feet"),
  9151. weight: math.unit(150, "lb"),
  9152. name: "Back",
  9153. image: {
  9154. source: "./media/characters/zero-alurus/back.svg"
  9155. }
  9156. },
  9157. },
  9158. [
  9159. {
  9160. name: "Normal",
  9161. height: math.unit(5 + 10 / 12, "feet")
  9162. },
  9163. {
  9164. name: "Macro",
  9165. height: math.unit(60, "feet"),
  9166. default: true
  9167. },
  9168. {
  9169. name: "Macro+",
  9170. height: math.unit(450, "feet")
  9171. },
  9172. ]
  9173. ))
  9174. characterMakers.push(() => makeCharacter(
  9175. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9176. {
  9177. front: {
  9178. height: math.unit(6, "feet"),
  9179. weight: math.unit(200, "lb"),
  9180. name: "Front",
  9181. image: {
  9182. source: "./media/characters/mega-shi/front.svg",
  9183. extra: 1279 / 1250,
  9184. bottom: 0.02
  9185. }
  9186. },
  9187. back: {
  9188. height: math.unit(6, "feet"),
  9189. weight: math.unit(200, "lb"),
  9190. name: "Back",
  9191. image: {
  9192. source: "./media/characters/mega-shi/back.svg",
  9193. extra: 1279 / 1250,
  9194. bottom: 0.02
  9195. }
  9196. },
  9197. },
  9198. [
  9199. {
  9200. name: "Micro",
  9201. height: math.unit(16 + 6 / 12, "feet")
  9202. },
  9203. {
  9204. name: "Third Dimension",
  9205. height: math.unit(40, "meters")
  9206. },
  9207. {
  9208. name: "Normal",
  9209. height: math.unit(660, "feet"),
  9210. default: true
  9211. },
  9212. {
  9213. name: "Megamacro",
  9214. height: math.unit(10, "miles")
  9215. },
  9216. {
  9217. name: "Planetary Launch",
  9218. height: math.unit(500, "miles")
  9219. },
  9220. {
  9221. name: "Interstellar",
  9222. height: math.unit(1e9, "miles")
  9223. },
  9224. {
  9225. name: "Leaving the Universe",
  9226. height: math.unit(1, "gigaparsec")
  9227. },
  9228. {
  9229. name: "Travelling Universes",
  9230. height: math.unit(30e15, "parsecs")
  9231. },
  9232. ]
  9233. ))
  9234. characterMakers.push(() => makeCharacter(
  9235. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9236. {
  9237. front: {
  9238. height: math.unit(6, "feet"),
  9239. weight: math.unit(150, "lb"),
  9240. name: "Front",
  9241. image: {
  9242. source: "./media/characters/odyssey/front.svg",
  9243. extra: 1782 / 1582,
  9244. bottom: 0.01
  9245. }
  9246. },
  9247. side: {
  9248. height: math.unit(5.7, "feet"),
  9249. weight: math.unit(140, "lb"),
  9250. name: "Side",
  9251. image: {
  9252. source: "./media/characters/odyssey/side.svg",
  9253. extra: 6462 / 5700
  9254. }
  9255. },
  9256. },
  9257. [
  9258. {
  9259. name: "Normal",
  9260. height: math.unit(5 + 4 / 12, "feet")
  9261. },
  9262. {
  9263. name: "Macro",
  9264. height: math.unit(1, "km")
  9265. },
  9266. {
  9267. name: "Megamacro",
  9268. height: math.unit(3000, "km")
  9269. },
  9270. {
  9271. name: "Gigamacro",
  9272. height: math.unit(1, "AU"),
  9273. default: true
  9274. },
  9275. {
  9276. name: "Omniversal",
  9277. height: math.unit(100e14, "lightyears")
  9278. },
  9279. ]
  9280. ))
  9281. characterMakers.push(() => makeCharacter(
  9282. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9283. {
  9284. front: {
  9285. height: math.unit(6, "feet"),
  9286. weight: math.unit(300, "lb"),
  9287. name: "Front",
  9288. image: {
  9289. source: "./media/characters/mekuto/front.svg",
  9290. extra: 921 / 832,
  9291. bottom: 0.03
  9292. }
  9293. },
  9294. hand: {
  9295. height: math.unit(6 / 10.24, "feet"),
  9296. name: "Hand",
  9297. image: {
  9298. source: "./media/characters/mekuto/hand.svg"
  9299. }
  9300. },
  9301. foot: {
  9302. height: math.unit(6 / 5.05, "feet"),
  9303. name: "Foot",
  9304. image: {
  9305. source: "./media/characters/mekuto/foot.svg"
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Minimicro",
  9312. height: math.unit(0.2, "inches")
  9313. },
  9314. {
  9315. name: "Micro",
  9316. height: math.unit(1.5, "inches")
  9317. },
  9318. {
  9319. name: "Normal",
  9320. height: math.unit(5 + 11 / 12, "feet"),
  9321. default: true
  9322. },
  9323. {
  9324. name: "Minimacro",
  9325. height: math.unit(17 + 9 / 12, "feet")
  9326. },
  9327. {
  9328. name: "Macro",
  9329. height: math.unit(177.5, "feet")
  9330. },
  9331. {
  9332. name: "Megamacro",
  9333. height: math.unit(152, "miles")
  9334. },
  9335. ]
  9336. ))
  9337. characterMakers.push(() => makeCharacter(
  9338. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9339. {
  9340. front: {
  9341. height: math.unit(6.5, "inches"),
  9342. weight: math.unit(13, "oz"),
  9343. name: "Front",
  9344. image: {
  9345. source: "./media/characters/dafydd-tomos/front.svg",
  9346. extra: 2990 / 2603,
  9347. bottom: 0.03
  9348. }
  9349. },
  9350. },
  9351. [
  9352. {
  9353. name: "Micro",
  9354. height: math.unit(6.5, "inches"),
  9355. default: true
  9356. },
  9357. ]
  9358. ))
  9359. characterMakers.push(() => makeCharacter(
  9360. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9361. {
  9362. front: {
  9363. height: math.unit(6, "feet"),
  9364. weight: math.unit(150, "lb"),
  9365. name: "Front",
  9366. image: {
  9367. source: "./media/characters/splinter/front.svg",
  9368. extra: 2990 / 2882,
  9369. bottom: 0.04
  9370. }
  9371. },
  9372. back: {
  9373. height: math.unit(6, "feet"),
  9374. weight: math.unit(150, "lb"),
  9375. name: "Back",
  9376. image: {
  9377. source: "./media/characters/splinter/back.svg",
  9378. extra: 2990 / 2882,
  9379. bottom: 0.04
  9380. }
  9381. },
  9382. },
  9383. [
  9384. {
  9385. name: "Normal",
  9386. height: math.unit(6, "feet")
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(230, "meters"),
  9391. default: true
  9392. },
  9393. ]
  9394. ))
  9395. characterMakers.push(() => makeCharacter(
  9396. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9397. {
  9398. front: {
  9399. height: math.unit(4 + 10 / 12, "feet"),
  9400. weight: math.unit(480, "lb"),
  9401. name: "Front",
  9402. image: {
  9403. source: "./media/characters/snow-gabumon/front.svg",
  9404. extra: 1140 / 963,
  9405. bottom: 0.058
  9406. }
  9407. },
  9408. back: {
  9409. height: math.unit(4 + 10 / 12, "feet"),
  9410. weight: math.unit(480, "lb"),
  9411. name: "Back",
  9412. image: {
  9413. source: "./media/characters/snow-gabumon/back.svg",
  9414. extra: 1115 / 962,
  9415. bottom: 0.041
  9416. }
  9417. },
  9418. frontUndresed: {
  9419. height: math.unit(4 + 10 / 12, "feet"),
  9420. weight: math.unit(480, "lb"),
  9421. name: "Front (Undressed)",
  9422. image: {
  9423. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9424. extra: 1061 / 960,
  9425. bottom: 0.045
  9426. }
  9427. },
  9428. },
  9429. [
  9430. {
  9431. name: "Micro",
  9432. height: math.unit(1, "inch")
  9433. },
  9434. {
  9435. name: "Normal",
  9436. height: math.unit(4 + 10 / 12, "feet"),
  9437. default: true
  9438. },
  9439. {
  9440. name: "Macro",
  9441. height: math.unit(200, "feet")
  9442. },
  9443. {
  9444. name: "Megamacro",
  9445. height: math.unit(120, "miles")
  9446. },
  9447. {
  9448. name: "Gigamacro",
  9449. height: math.unit(9800, "miles")
  9450. },
  9451. ]
  9452. ))
  9453. characterMakers.push(() => makeCharacter(
  9454. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9455. {
  9456. front: {
  9457. height: math.unit(1.7, "meters"),
  9458. weight: math.unit(140, "lb"),
  9459. name: "Front",
  9460. image: {
  9461. source: "./media/characters/moody/front.svg",
  9462. extra: 3226 / 3007,
  9463. bottom: 0.087
  9464. }
  9465. },
  9466. },
  9467. [
  9468. {
  9469. name: "Micro",
  9470. height: math.unit(1, "mm")
  9471. },
  9472. {
  9473. name: "Normal",
  9474. height: math.unit(1.7, "meters"),
  9475. default: true
  9476. },
  9477. {
  9478. name: "Macro",
  9479. height: math.unit(80, "meters")
  9480. },
  9481. {
  9482. name: "Macro+",
  9483. height: math.unit(500, "meters")
  9484. },
  9485. ]
  9486. ))
  9487. characterMakers.push(() => makeCharacter(
  9488. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9489. {
  9490. front: {
  9491. height: math.unit(6, "feet"),
  9492. weight: math.unit(150, "lb"),
  9493. name: "Front",
  9494. image: {
  9495. source: "./media/characters/zyas/front.svg",
  9496. extra: 1180 / 1120,
  9497. bottom: 0.045
  9498. }
  9499. },
  9500. },
  9501. [
  9502. {
  9503. name: "Normal",
  9504. height: math.unit(10, "feet"),
  9505. default: true
  9506. },
  9507. {
  9508. name: "Macro",
  9509. height: math.unit(500, "feet")
  9510. },
  9511. {
  9512. name: "Megamacro",
  9513. height: math.unit(5, "miles")
  9514. },
  9515. {
  9516. name: "Teramacro",
  9517. height: math.unit(150000, "miles")
  9518. },
  9519. ]
  9520. ))
  9521. characterMakers.push(() => makeCharacter(
  9522. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9523. {
  9524. front: {
  9525. height: math.unit(6, "feet"),
  9526. weight: math.unit(150, "lb"),
  9527. name: "Front",
  9528. image: {
  9529. source: "./media/characters/cuon/front.svg",
  9530. extra: 1390 / 1320,
  9531. bottom: 0.008
  9532. }
  9533. },
  9534. },
  9535. [
  9536. {
  9537. name: "Micro",
  9538. height: math.unit(3, "inches")
  9539. },
  9540. {
  9541. name: "Normal",
  9542. height: math.unit(18 + 9 / 12, "feet"),
  9543. default: true
  9544. },
  9545. {
  9546. name: "Macro",
  9547. height: math.unit(360, "feet")
  9548. },
  9549. {
  9550. name: "Megamacro",
  9551. height: math.unit(360, "miles")
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9557. {
  9558. front: {
  9559. height: math.unit(2.4, "meters"),
  9560. weight: math.unit(70, "kg"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/nyanuxk/front.svg",
  9564. extra: 1172 / 1084,
  9565. bottom: 0.065
  9566. }
  9567. },
  9568. side: {
  9569. height: math.unit(2.4, "meters"),
  9570. weight: math.unit(70, "kg"),
  9571. name: "Side",
  9572. image: {
  9573. source: "./media/characters/nyanuxk/side.svg",
  9574. extra: 1190 / 1132,
  9575. bottom: 0.007
  9576. }
  9577. },
  9578. back: {
  9579. height: math.unit(2.4, "meters"),
  9580. weight: math.unit(70, "kg"),
  9581. name: "Back",
  9582. image: {
  9583. source: "./media/characters/nyanuxk/back.svg",
  9584. extra: 1200 / 1141,
  9585. bottom: 0.015
  9586. }
  9587. },
  9588. foot: {
  9589. height: math.unit(0.52, "meters"),
  9590. name: "Foot",
  9591. image: {
  9592. source: "./media/characters/nyanuxk/foot.svg"
  9593. }
  9594. },
  9595. },
  9596. [
  9597. {
  9598. name: "Micro",
  9599. height: math.unit(2, "cm")
  9600. },
  9601. {
  9602. name: "Normal",
  9603. height: math.unit(2.4, "meters"),
  9604. default: true
  9605. },
  9606. {
  9607. name: "Smaller Macro",
  9608. height: math.unit(120, "meters")
  9609. },
  9610. {
  9611. name: "Bigger Macro",
  9612. height: math.unit(1.2, "km")
  9613. },
  9614. {
  9615. name: "Megamacro",
  9616. height: math.unit(15, "kilometers")
  9617. },
  9618. {
  9619. name: "Gigamacro",
  9620. height: math.unit(2000, "km")
  9621. },
  9622. {
  9623. name: "Teramacro",
  9624. height: math.unit(500000, "km")
  9625. },
  9626. ]
  9627. ))
  9628. characterMakers.push(() => makeCharacter(
  9629. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9630. {
  9631. side: {
  9632. height: math.unit(6, "feet"),
  9633. name: "Side",
  9634. image: {
  9635. source: "./media/characters/ailbhe/side.svg",
  9636. extra: 757 / 464,
  9637. bottom: 0.041
  9638. }
  9639. },
  9640. },
  9641. [
  9642. {
  9643. name: "Normal",
  9644. height: math.unit(1.07, "meters"),
  9645. default: true
  9646. },
  9647. ]
  9648. ))
  9649. characterMakers.push(() => makeCharacter(
  9650. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9651. {
  9652. front: {
  9653. height: math.unit(6, "feet"),
  9654. weight: math.unit(120, "kg"),
  9655. name: "Front",
  9656. image: {
  9657. source: "./media/characters/zevulfius/front.svg",
  9658. extra: 965 / 903
  9659. }
  9660. },
  9661. side: {
  9662. height: math.unit(6, "feet"),
  9663. weight: math.unit(120, "kg"),
  9664. name: "Side",
  9665. image: {
  9666. source: "./media/characters/zevulfius/side.svg",
  9667. extra: 939 / 900
  9668. }
  9669. },
  9670. back: {
  9671. height: math.unit(6, "feet"),
  9672. weight: math.unit(120, "kg"),
  9673. name: "Back",
  9674. image: {
  9675. source: "./media/characters/zevulfius/back.svg",
  9676. extra: 918 / 854,
  9677. bottom: 0.005
  9678. }
  9679. },
  9680. foot: {
  9681. height: math.unit(6 / 3.72, "feet"),
  9682. name: "Foot",
  9683. image: {
  9684. source: "./media/characters/zevulfius/foot.svg"
  9685. }
  9686. },
  9687. },
  9688. [
  9689. {
  9690. name: "Macro",
  9691. height: math.unit(750, "meters")
  9692. },
  9693. {
  9694. name: "Megamacro",
  9695. height: math.unit(20, "km"),
  9696. default: true
  9697. },
  9698. {
  9699. name: "Gigamacro",
  9700. height: math.unit(2000, "km")
  9701. },
  9702. {
  9703. name: "Teramacro",
  9704. height: math.unit(250000, "km")
  9705. },
  9706. ]
  9707. ))
  9708. characterMakers.push(() => makeCharacter(
  9709. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9710. {
  9711. front: {
  9712. height: math.unit(100, "feet"),
  9713. weight: math.unit(350, "kg"),
  9714. name: "Front",
  9715. image: {
  9716. source: "./media/characters/rikes/front.svg",
  9717. extra: 1565 / 1483,
  9718. bottom: 0.017
  9719. }
  9720. },
  9721. },
  9722. [
  9723. {
  9724. name: "Macro",
  9725. height: math.unit(100, "feet"),
  9726. default: true
  9727. },
  9728. ]
  9729. ))
  9730. characterMakers.push(() => makeCharacter(
  9731. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9732. {
  9733. anthro: {
  9734. height: math.unit(8, "feet"),
  9735. weight: math.unit(120, "kg"),
  9736. name: "Anthro",
  9737. image: {
  9738. source: "./media/characters/adam-silver-mane/anthro.svg",
  9739. extra: 5743 / 5339,
  9740. bottom: 0.07
  9741. }
  9742. },
  9743. taur: {
  9744. height: math.unit(16, "feet"),
  9745. weight: math.unit(1500, "kg"),
  9746. name: "Taur",
  9747. image: {
  9748. source: "./media/characters/adam-silver-mane/taur.svg",
  9749. extra: 1713 / 1571,
  9750. bottom: 0.01
  9751. }
  9752. },
  9753. },
  9754. [
  9755. {
  9756. name: "Normal",
  9757. height: math.unit(8, "feet")
  9758. },
  9759. {
  9760. name: "Minimacro",
  9761. height: math.unit(80, "feet")
  9762. },
  9763. {
  9764. name: "Macro",
  9765. height: math.unit(800, "feet"),
  9766. default: true
  9767. },
  9768. {
  9769. name: "Megamacro",
  9770. height: math.unit(8000, "feet")
  9771. },
  9772. {
  9773. name: "Gigamacro",
  9774. height: math.unit(800, "miles")
  9775. },
  9776. {
  9777. name: "Teramacro",
  9778. height: math.unit(80000, "miles")
  9779. },
  9780. {
  9781. name: "Celestial",
  9782. height: math.unit(8e6, "miles")
  9783. },
  9784. {
  9785. name: "Star Dragon",
  9786. height: math.unit(800000, "parsecs")
  9787. },
  9788. {
  9789. name: "Godly",
  9790. height: math.unit(800, "teraparsecs")
  9791. },
  9792. ]
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9796. {
  9797. front: {
  9798. height: math.unit(6, "feet"),
  9799. weight: math.unit(150, "lb"),
  9800. name: "Front",
  9801. image: {
  9802. source: "./media/characters/ky'owin/front.svg",
  9803. extra: 3888 / 3068,
  9804. bottom: 0.015
  9805. }
  9806. },
  9807. },
  9808. [
  9809. {
  9810. name: "Normal",
  9811. height: math.unit(6 + 8 / 12, "feet")
  9812. },
  9813. {
  9814. name: "Large",
  9815. height: math.unit(68, "feet")
  9816. },
  9817. {
  9818. name: "Macro",
  9819. height: math.unit(132, "feet")
  9820. },
  9821. {
  9822. name: "Macro+",
  9823. height: math.unit(340, "feet")
  9824. },
  9825. {
  9826. name: "Macro++",
  9827. height: math.unit(680, "feet"),
  9828. default: true
  9829. },
  9830. {
  9831. name: "Megamacro",
  9832. height: math.unit(1, "mile")
  9833. },
  9834. {
  9835. name: "Megamacro+",
  9836. height: math.unit(10, "miles")
  9837. },
  9838. ]
  9839. ))
  9840. characterMakers.push(() => makeCharacter(
  9841. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9842. {
  9843. front: {
  9844. height: math.unit(4, "feet"),
  9845. weight: math.unit(50, "lb"),
  9846. name: "Front",
  9847. image: {
  9848. source: "./media/characters/mal/front.svg",
  9849. extra: 785 / 724,
  9850. bottom: 0.07
  9851. }
  9852. },
  9853. },
  9854. [
  9855. {
  9856. name: "Micro",
  9857. height: math.unit(4, "inches")
  9858. },
  9859. {
  9860. name: "Normal",
  9861. height: math.unit(4, "feet"),
  9862. default: true
  9863. },
  9864. {
  9865. name: "Macro",
  9866. height: math.unit(200, "feet")
  9867. },
  9868. ]
  9869. ))
  9870. characterMakers.push(() => makeCharacter(
  9871. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9872. {
  9873. front: {
  9874. height: math.unit(6, "feet"),
  9875. weight: math.unit(150, "lb"),
  9876. name: "Front",
  9877. image: {
  9878. source: "./media/characters/jordan-deware/front.svg",
  9879. extra: 1191 / 1012
  9880. }
  9881. },
  9882. },
  9883. [
  9884. {
  9885. name: "Nano",
  9886. height: math.unit(0.01, "mm")
  9887. },
  9888. {
  9889. name: "Minimicro",
  9890. height: math.unit(1, "mm")
  9891. },
  9892. {
  9893. name: "Micro",
  9894. height: math.unit(0.5, "inches")
  9895. },
  9896. {
  9897. name: "Normal",
  9898. height: math.unit(4, "feet"),
  9899. default: true
  9900. },
  9901. {
  9902. name: "Minimacro",
  9903. height: math.unit(40, "meters")
  9904. },
  9905. {
  9906. name: "Small Macro",
  9907. height: math.unit(400, "meters")
  9908. },
  9909. {
  9910. name: "Macro",
  9911. height: math.unit(4, "miles")
  9912. },
  9913. {
  9914. name: "Megamacro",
  9915. height: math.unit(40, "miles")
  9916. },
  9917. {
  9918. name: "Megamacro+",
  9919. height: math.unit(400, "miles")
  9920. },
  9921. {
  9922. name: "Gigamacro",
  9923. height: math.unit(400000, "miles")
  9924. },
  9925. ]
  9926. ))
  9927. characterMakers.push(() => makeCharacter(
  9928. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9929. {
  9930. side: {
  9931. height: math.unit(6, "feet"),
  9932. weight: math.unit(150, "lb"),
  9933. name: "Side",
  9934. image: {
  9935. source: "./media/characters/kimiko/side.svg",
  9936. extra: 600 / 358
  9937. }
  9938. },
  9939. },
  9940. [
  9941. {
  9942. name: "Normal",
  9943. height: math.unit(15, "feet"),
  9944. default: true
  9945. },
  9946. {
  9947. name: "Macro",
  9948. height: math.unit(220, "feet")
  9949. },
  9950. {
  9951. name: "Macro+",
  9952. height: math.unit(1450, "feet")
  9953. },
  9954. {
  9955. name: "Megamacro",
  9956. height: math.unit(11500, "feet")
  9957. },
  9958. {
  9959. name: "Gigamacro",
  9960. height: math.unit(9500, "miles")
  9961. },
  9962. {
  9963. name: "Teramacro",
  9964. height: math.unit(2208005005, "miles")
  9965. },
  9966. {
  9967. name: "Examacro",
  9968. height: math.unit(2750, "parsecs")
  9969. },
  9970. {
  9971. name: "Zettamacro",
  9972. height: math.unit(101500, "parsecs")
  9973. },
  9974. ]
  9975. ))
  9976. characterMakers.push(() => makeCharacter(
  9977. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9978. {
  9979. front: {
  9980. height: math.unit(6, "feet"),
  9981. weight: math.unit(70, "kg"),
  9982. name: "Front",
  9983. image: {
  9984. source: "./media/characters/andrew-sleepy/front.svg"
  9985. }
  9986. },
  9987. side: {
  9988. height: math.unit(6, "feet"),
  9989. weight: math.unit(70, "kg"),
  9990. name: "Side",
  9991. image: {
  9992. source: "./media/characters/andrew-sleepy/side.svg"
  9993. }
  9994. },
  9995. },
  9996. [
  9997. {
  9998. name: "Micro",
  9999. height: math.unit(1, "mm"),
  10000. default: true
  10001. },
  10002. ]
  10003. ))
  10004. characterMakers.push(() => makeCharacter(
  10005. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10006. {
  10007. front: {
  10008. height: math.unit(6, "feet"),
  10009. weight: math.unit(150, "lb"),
  10010. name: "Front",
  10011. image: {
  10012. source: "./media/characters/judio/front.svg",
  10013. extra: 1258 / 1110
  10014. }
  10015. },
  10016. },
  10017. [
  10018. {
  10019. name: "Normal",
  10020. height: math.unit(5 + 6 / 12, "feet")
  10021. },
  10022. {
  10023. name: "Macro",
  10024. height: math.unit(1000, "feet"),
  10025. default: true
  10026. },
  10027. {
  10028. name: "Megamacro",
  10029. height: math.unit(10, "miles")
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10035. {
  10036. front: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(68, "kg"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/nomaxice/front.svg",
  10042. extra: 1498 / 1073,
  10043. bottom: 0.075
  10044. }
  10045. },
  10046. foot: {
  10047. height: math.unit(1.1, "feet"),
  10048. name: "Foot",
  10049. image: {
  10050. source: "./media/characters/nomaxice/foot.svg"
  10051. }
  10052. },
  10053. },
  10054. [
  10055. {
  10056. name: "Micro",
  10057. height: math.unit(8, "cm")
  10058. },
  10059. {
  10060. name: "Norm",
  10061. height: math.unit(1.82, "m")
  10062. },
  10063. {
  10064. name: "Norm+",
  10065. height: math.unit(8.8, "feet")
  10066. },
  10067. {
  10068. name: "Big",
  10069. height: math.unit(8, "meters"),
  10070. default: true
  10071. },
  10072. {
  10073. name: "Macro",
  10074. height: math.unit(18, "meters")
  10075. },
  10076. {
  10077. name: "Macro+",
  10078. height: math.unit(88, "meters")
  10079. },
  10080. ]
  10081. ))
  10082. characterMakers.push(() => makeCharacter(
  10083. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10084. {
  10085. front: {
  10086. height: math.unit(12, "feet"),
  10087. weight: math.unit(1.5, "tons"),
  10088. name: "Front",
  10089. image: {
  10090. source: "./media/characters/dydros/front.svg",
  10091. extra: 863 / 800,
  10092. bottom: 0.015
  10093. }
  10094. },
  10095. back: {
  10096. height: math.unit(12, "feet"),
  10097. weight: math.unit(1.5, "tons"),
  10098. name: "Back",
  10099. image: {
  10100. source: "./media/characters/dydros/back.svg",
  10101. extra: 900 / 843,
  10102. bottom: 0.005
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Normal",
  10109. height: math.unit(12, "feet"),
  10110. default: true
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(6, "feet"),
  10119. weight: math.unit(100, "kg"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/riggi/front.svg",
  10123. extra: 5787 / 5303
  10124. }
  10125. },
  10126. hyper: {
  10127. height: math.unit(6 * 5 / 3, "feet"),
  10128. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10129. name: "Hyper",
  10130. image: {
  10131. source: "./media/characters/riggi/hyper.svg",
  10132. extra: 3595 / 3485
  10133. }
  10134. },
  10135. },
  10136. [
  10137. {
  10138. name: "Small Macro",
  10139. height: math.unit(50, "feet")
  10140. },
  10141. {
  10142. name: "Default",
  10143. height: math.unit(200, "feet"),
  10144. default: true
  10145. },
  10146. {
  10147. name: "Loom",
  10148. height: math.unit(10000, "feet")
  10149. },
  10150. {
  10151. name: "Cruising Altitude",
  10152. height: math.unit(30000, "feet")
  10153. },
  10154. {
  10155. name: "Megamacro",
  10156. height: math.unit(100, "miles")
  10157. },
  10158. {
  10159. name: "Continent Sized",
  10160. height: math.unit(2800, "miles")
  10161. },
  10162. {
  10163. name: "Earth Sized",
  10164. height: math.unit(8000, "miles")
  10165. },
  10166. ]
  10167. ))
  10168. characterMakers.push(() => makeCharacter(
  10169. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10170. {
  10171. front: {
  10172. height: math.unit(6, "feet"),
  10173. weight: math.unit(250, "lb"),
  10174. name: "Front",
  10175. image: {
  10176. source: "./media/characters/alexi/front.svg",
  10177. extra: 3483 / 3291,
  10178. bottom: 0.04
  10179. }
  10180. },
  10181. back: {
  10182. height: math.unit(6, "feet"),
  10183. weight: math.unit(250, "lb"),
  10184. name: "Back",
  10185. image: {
  10186. source: "./media/characters/alexi/back.svg",
  10187. extra: 3533 / 3356,
  10188. bottom: 0.021
  10189. }
  10190. },
  10191. frontTransforming: {
  10192. height: math.unit(8.58, "feet"),
  10193. weight: math.unit(1300, "lb"),
  10194. name: "Transforming",
  10195. image: {
  10196. source: "./media/characters/alexi/front-transforming.svg",
  10197. extra: 437 / 409,
  10198. bottom: 19 / 458.66
  10199. }
  10200. },
  10201. frontTransformed: {
  10202. height: math.unit(12.5, "feet"),
  10203. weight: math.unit(4000, "lb"),
  10204. name: "Transformed",
  10205. image: {
  10206. source: "./media/characters/alexi/front-transformed.svg",
  10207. extra: 639 / 614,
  10208. bottom: 30.55 / 671
  10209. }
  10210. },
  10211. },
  10212. [
  10213. {
  10214. name: "Normal",
  10215. height: math.unit(14, "feet"),
  10216. default: true
  10217. },
  10218. {
  10219. name: "Minimacro",
  10220. height: math.unit(30, "meters")
  10221. },
  10222. {
  10223. name: "Macro",
  10224. height: math.unit(500, "meters")
  10225. },
  10226. {
  10227. name: "Megamacro",
  10228. height: math.unit(9000, "km")
  10229. },
  10230. {
  10231. name: "Teramacro",
  10232. height: math.unit(384000, "km")
  10233. },
  10234. ]
  10235. ))
  10236. characterMakers.push(() => makeCharacter(
  10237. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10238. {
  10239. front: {
  10240. height: math.unit(6, "feet"),
  10241. weight: math.unit(150, "lb"),
  10242. name: "Front",
  10243. image: {
  10244. source: "./media/characters/kayroo/front.svg",
  10245. extra: 1153 / 1038,
  10246. bottom: 0.06
  10247. }
  10248. },
  10249. foot: {
  10250. height: math.unit(6, "feet"),
  10251. weight: math.unit(150, "lb"),
  10252. name: "Foot",
  10253. image: {
  10254. source: "./media/characters/kayroo/foot.svg"
  10255. }
  10256. },
  10257. },
  10258. [
  10259. {
  10260. name: "Normal",
  10261. height: math.unit(8, "feet"),
  10262. default: true
  10263. },
  10264. {
  10265. name: "Minimacro",
  10266. height: math.unit(250, "feet")
  10267. },
  10268. {
  10269. name: "Macro",
  10270. height: math.unit(2800, "feet")
  10271. },
  10272. {
  10273. name: "Megamacro",
  10274. height: math.unit(5200, "feet")
  10275. },
  10276. {
  10277. name: "Gigamacro",
  10278. height: math.unit(27000, "feet")
  10279. },
  10280. {
  10281. name: "Omega",
  10282. height: math.unit(45000, "feet")
  10283. },
  10284. ]
  10285. ))
  10286. characterMakers.push(() => makeCharacter(
  10287. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10288. {
  10289. front: {
  10290. height: math.unit(18, "feet"),
  10291. weight: math.unit(5800, "lb"),
  10292. name: "Front",
  10293. image: {
  10294. source: "./media/characters/rhys/front.svg",
  10295. extra: 3386 / 3090,
  10296. bottom: 0.07
  10297. }
  10298. },
  10299. },
  10300. [
  10301. {
  10302. name: "Normal",
  10303. height: math.unit(18, "feet"),
  10304. default: true
  10305. },
  10306. {
  10307. name: "Working Size",
  10308. height: math.unit(200, "feet")
  10309. },
  10310. {
  10311. name: "Demolition Size",
  10312. height: math.unit(2000, "feet")
  10313. },
  10314. {
  10315. name: "Maximum Licensed Size",
  10316. height: math.unit(5, "miles")
  10317. },
  10318. {
  10319. name: "Maximum Observed Size",
  10320. height: math.unit(10, "yottameters")
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(250, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/toto/front.svg",
  10333. extra: 527 / 479,
  10334. bottom: 0.05
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Micro",
  10341. height: math.unit(3, "feet")
  10342. },
  10343. {
  10344. name: "Normal",
  10345. height: math.unit(10, "feet")
  10346. },
  10347. {
  10348. name: "Macro",
  10349. height: math.unit(150, "feet"),
  10350. default: true
  10351. },
  10352. {
  10353. name: "Megamacro",
  10354. height: math.unit(1200, "feet")
  10355. },
  10356. ]
  10357. ))
  10358. characterMakers.push(() => makeCharacter(
  10359. { name: "King", species: ["lion"], tags: ["anthro"] },
  10360. {
  10361. back: {
  10362. height: math.unit(6, "feet"),
  10363. weight: math.unit(150, "lb"),
  10364. name: "Back",
  10365. image: {
  10366. source: "./media/characters/king/back.svg"
  10367. }
  10368. },
  10369. },
  10370. [
  10371. {
  10372. name: "Micro",
  10373. height: math.unit(2, "inches")
  10374. },
  10375. {
  10376. name: "Normal",
  10377. height: math.unit(8, "feet")
  10378. },
  10379. {
  10380. name: "Macro",
  10381. height: math.unit(200, "feet"),
  10382. default: true
  10383. },
  10384. {
  10385. name: "Megamacro",
  10386. height: math.unit(50, "miles")
  10387. },
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10392. {
  10393. anthro: {
  10394. height: math.unit(6 + 5 / 12, "feet"),
  10395. weight: math.unit(280, "lb"),
  10396. name: "Anthro",
  10397. image: {
  10398. source: "./media/characters/cordite/anthro.svg",
  10399. extra: 1986 / 1905,
  10400. bottom: 0.025
  10401. }
  10402. },
  10403. feral: {
  10404. height: math.unit(2, "feet"),
  10405. weight: math.unit(90, "lb"),
  10406. name: "Feral",
  10407. image: {
  10408. source: "./media/characters/cordite/feral.svg",
  10409. extra: 1260 / 755,
  10410. bottom: 0.05
  10411. }
  10412. },
  10413. },
  10414. [
  10415. {
  10416. name: "Normal",
  10417. height: math.unit(6 + 5 / 12, "feet"),
  10418. default: true
  10419. },
  10420. ]
  10421. ))
  10422. characterMakers.push(() => makeCharacter(
  10423. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10424. {
  10425. front: {
  10426. height: math.unit(6, "feet"),
  10427. weight: math.unit(150, "lb"),
  10428. name: "Front",
  10429. image: {
  10430. source: "./media/characters/pianostrong/front.svg",
  10431. extra: 6577 / 6254,
  10432. bottom: 0.02
  10433. }
  10434. },
  10435. side: {
  10436. height: math.unit(6, "feet"),
  10437. weight: math.unit(150, "lb"),
  10438. name: "Side",
  10439. image: {
  10440. source: "./media/characters/pianostrong/side.svg",
  10441. extra: 6106 / 5730
  10442. }
  10443. },
  10444. back: {
  10445. height: math.unit(6, "feet"),
  10446. weight: math.unit(150, "lb"),
  10447. name: "Back",
  10448. image: {
  10449. source: "./media/characters/pianostrong/back.svg",
  10450. extra: 6085 / 5733,
  10451. bottom: 0.01
  10452. }
  10453. },
  10454. },
  10455. [
  10456. {
  10457. name: "Macro",
  10458. height: math.unit(100, "feet")
  10459. },
  10460. {
  10461. name: "Macro+",
  10462. height: math.unit(300, "feet"),
  10463. default: true
  10464. },
  10465. {
  10466. name: "Macro++",
  10467. height: math.unit(1000, "feet")
  10468. },
  10469. ]
  10470. ))
  10471. characterMakers.push(() => makeCharacter(
  10472. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10473. {
  10474. front: {
  10475. height: math.unit(6, "feet"),
  10476. weight: math.unit(150, "lb"),
  10477. name: "Front",
  10478. image: {
  10479. source: "./media/characters/kona/front.svg",
  10480. extra: 2960 / 2629,
  10481. bottom: 0.005
  10482. }
  10483. },
  10484. },
  10485. [
  10486. {
  10487. name: "Normal",
  10488. height: math.unit(11 + 8 / 12, "feet")
  10489. },
  10490. {
  10491. name: "Macro",
  10492. height: math.unit(850, "feet"),
  10493. default: true
  10494. },
  10495. {
  10496. name: "Macro+",
  10497. height: math.unit(1.5, "km"),
  10498. default: true
  10499. },
  10500. {
  10501. name: "Megamacro",
  10502. height: math.unit(80, "miles")
  10503. },
  10504. {
  10505. name: "Gigamacro",
  10506. height: math.unit(3500, "miles")
  10507. },
  10508. ]
  10509. ))
  10510. characterMakers.push(() => makeCharacter(
  10511. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10512. {
  10513. side: {
  10514. height: math.unit(1.9, "meters"),
  10515. weight: math.unit(326, "kg"),
  10516. name: "Side",
  10517. image: {
  10518. source: "./media/characters/levi/side.svg",
  10519. extra: 1704 / 1334,
  10520. bottom: 0.02
  10521. }
  10522. },
  10523. },
  10524. [
  10525. {
  10526. name: "Normal",
  10527. height: math.unit(1.9, "meters"),
  10528. default: true
  10529. },
  10530. {
  10531. name: "Macro",
  10532. height: math.unit(20, "meters")
  10533. },
  10534. {
  10535. name: "Macro+",
  10536. height: math.unit(200, "meters")
  10537. },
  10538. {
  10539. name: "Megamacro",
  10540. height: math.unit(2, "km")
  10541. },
  10542. {
  10543. name: "Megamacro+",
  10544. height: math.unit(20, "km")
  10545. },
  10546. {
  10547. name: "Gigamacro",
  10548. height: math.unit(2500, "km")
  10549. },
  10550. {
  10551. name: "Gigamacro+",
  10552. height: math.unit(120000, "km")
  10553. },
  10554. {
  10555. name: "Teramacro",
  10556. height: math.unit(7.77e6, "km")
  10557. },
  10558. ]
  10559. ))
  10560. characterMakers.push(() => makeCharacter(
  10561. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10562. {
  10563. front: {
  10564. height: math.unit(6 + 4 / 12, "feet"),
  10565. weight: math.unit(188, "lb"),
  10566. name: "Front",
  10567. image: {
  10568. source: "./media/characters/bmc/front.svg",
  10569. extra: 1067 / 1022,
  10570. bottom: 0.047
  10571. }
  10572. },
  10573. },
  10574. [
  10575. {
  10576. name: "Human-sized",
  10577. height: math.unit(6 + 4 / 12, "feet")
  10578. },
  10579. {
  10580. name: "Small",
  10581. height: math.unit(250, "feet")
  10582. },
  10583. {
  10584. name: "Normal",
  10585. height: math.unit(1250, "feet"),
  10586. default: true
  10587. },
  10588. {
  10589. name: "Good Day",
  10590. height: math.unit(88, "miles")
  10591. },
  10592. {
  10593. name: "Largest Measured Size",
  10594. height: math.unit(11.2e6, "lightyears")
  10595. },
  10596. ]
  10597. ))
  10598. characterMakers.push(() => makeCharacter(
  10599. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10600. {
  10601. front: {
  10602. height: math.unit(20, "feet"),
  10603. weight: math.unit(2016, "kg"),
  10604. name: "Front",
  10605. image: {
  10606. source: "./media/characters/sven-the-kaiju/front.svg",
  10607. extra: 1479 / 1449,
  10608. bottom: 0.05
  10609. }
  10610. },
  10611. },
  10612. [
  10613. {
  10614. name: "Fairy",
  10615. height: math.unit(6, "inches")
  10616. },
  10617. {
  10618. name: "Normal",
  10619. height: math.unit(20, "feet"),
  10620. default: true
  10621. },
  10622. {
  10623. name: "Rampage",
  10624. height: math.unit(200, "feet")
  10625. },
  10626. {
  10627. name: "Archfey Forest Guardian",
  10628. height: math.unit(1, "mile")
  10629. },
  10630. ]
  10631. ))
  10632. characterMakers.push(() => makeCharacter(
  10633. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10634. {
  10635. front: {
  10636. height: math.unit(4, "meters"),
  10637. weight: math.unit(2, "tons"),
  10638. name: "Front",
  10639. image: {
  10640. source: "./media/characters/marik/front.svg",
  10641. extra: 1057 / 1003,
  10642. bottom: 0.08
  10643. }
  10644. },
  10645. },
  10646. [
  10647. {
  10648. name: "Normal",
  10649. height: math.unit(4, "meters"),
  10650. default: true
  10651. },
  10652. {
  10653. name: "Macro",
  10654. height: math.unit(20, "meters")
  10655. },
  10656. {
  10657. name: "Megamacro",
  10658. height: math.unit(50, "km")
  10659. },
  10660. {
  10661. name: "Gigamacro",
  10662. height: math.unit(100, "km")
  10663. },
  10664. {
  10665. name: "Alpha Macro",
  10666. height: math.unit(7.88e7, "yottameters")
  10667. },
  10668. ]
  10669. ))
  10670. characterMakers.push(() => makeCharacter(
  10671. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10672. {
  10673. front: {
  10674. height: math.unit(6, "feet"),
  10675. weight: math.unit(110, "lb"),
  10676. name: "Front",
  10677. image: {
  10678. source: "./media/characters/mel/front.svg",
  10679. extra: 736 / 617,
  10680. bottom: 0.017
  10681. }
  10682. },
  10683. },
  10684. [
  10685. {
  10686. name: "Pico",
  10687. height: math.unit(3, "pm")
  10688. },
  10689. {
  10690. name: "Nano",
  10691. height: math.unit(3, "nm")
  10692. },
  10693. {
  10694. name: "Micro",
  10695. height: math.unit(0.3, "mm"),
  10696. default: true
  10697. },
  10698. {
  10699. name: "Micro+",
  10700. height: math.unit(3, "mm")
  10701. },
  10702. {
  10703. name: "Normal",
  10704. height: math.unit(5 + 10.5 / 12, "feet")
  10705. },
  10706. ]
  10707. ))
  10708. characterMakers.push(() => makeCharacter(
  10709. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10710. {
  10711. kaiju: {
  10712. height: math.unit(1.75, "meters"),
  10713. weight: math.unit(55, "kg"),
  10714. name: "Kaiju",
  10715. image: {
  10716. source: "./media/characters/lykonous/kaiju.svg",
  10717. extra: 1055 / 946,
  10718. bottom: 0.135
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Normal",
  10725. height: math.unit(2.5, "meters"),
  10726. default: true
  10727. },
  10728. {
  10729. name: "Kaiju Dragon",
  10730. height: math.unit(60, "meters")
  10731. },
  10732. {
  10733. name: "Mega Kaiju",
  10734. height: math.unit(120, "km")
  10735. },
  10736. {
  10737. name: "Giga Kaiju",
  10738. height: math.unit(200, "megameters")
  10739. },
  10740. {
  10741. name: "Terra Kaiju",
  10742. height: math.unit(400, "gigameters")
  10743. },
  10744. {
  10745. name: "Kaiju Dragon God",
  10746. height: math.unit(13000, "exaparsecs")
  10747. },
  10748. ]
  10749. ))
  10750. characterMakers.push(() => makeCharacter(
  10751. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10752. {
  10753. front: {
  10754. height: math.unit(6, "feet"),
  10755. weight: math.unit(150, "lb"),
  10756. name: "Front",
  10757. image: {
  10758. source: "./media/characters/blü/front.svg",
  10759. extra: 1883 / 1564,
  10760. bottom: 0.031
  10761. }
  10762. },
  10763. },
  10764. [
  10765. {
  10766. name: "Normal",
  10767. height: math.unit(13, "feet"),
  10768. default: true
  10769. },
  10770. {
  10771. name: "Big Boi",
  10772. height: math.unit(150, "meters")
  10773. },
  10774. {
  10775. name: "Mini Stomper",
  10776. height: math.unit(300, "meters")
  10777. },
  10778. {
  10779. name: "Macro",
  10780. height: math.unit(1000, "meters")
  10781. },
  10782. {
  10783. name: "Megamacro",
  10784. height: math.unit(11000, "meters")
  10785. },
  10786. {
  10787. name: "Gigamacro",
  10788. height: math.unit(11000, "km")
  10789. },
  10790. {
  10791. name: "Teramacro",
  10792. height: math.unit(420000, "km")
  10793. },
  10794. {
  10795. name: "Examacro",
  10796. height: math.unit(120, "parsecs")
  10797. },
  10798. {
  10799. name: "God Tho",
  10800. height: math.unit(98000000000, "parsecs")
  10801. },
  10802. ]
  10803. ))
  10804. characterMakers.push(() => makeCharacter(
  10805. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10806. {
  10807. taurFront: {
  10808. height: math.unit(6, "feet"),
  10809. weight: math.unit(200, "lb"),
  10810. name: "Taur (Front)",
  10811. image: {
  10812. source: "./media/characters/scales/taur-front.svg",
  10813. extra: 1,
  10814. bottom: 0.05
  10815. }
  10816. },
  10817. taurBack: {
  10818. height: math.unit(6, "feet"),
  10819. weight: math.unit(200, "lb"),
  10820. name: "Taur (Back)",
  10821. image: {
  10822. source: "./media/characters/scales/taur-back.svg",
  10823. extra: 1,
  10824. bottom: 0.08
  10825. }
  10826. },
  10827. anthro: {
  10828. height: math.unit(6 * 7 / 12, "feet"),
  10829. weight: math.unit(100, "lb"),
  10830. name: "Anthro",
  10831. image: {
  10832. source: "./media/characters/scales/anthro.svg",
  10833. extra: 1,
  10834. bottom: 0.06
  10835. }
  10836. },
  10837. },
  10838. [
  10839. {
  10840. name: "Normal",
  10841. height: math.unit(12, "feet"),
  10842. default: true
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10848. {
  10849. front: {
  10850. height: math.unit(6, "feet"),
  10851. weight: math.unit(150, "lb"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/koragos/front.svg",
  10855. extra: 841 / 794,
  10856. bottom: 0.035
  10857. }
  10858. },
  10859. back: {
  10860. height: math.unit(6, "feet"),
  10861. weight: math.unit(150, "lb"),
  10862. name: "Back",
  10863. image: {
  10864. source: "./media/characters/koragos/back.svg",
  10865. extra: 841 / 810,
  10866. bottom: 0.022
  10867. }
  10868. },
  10869. },
  10870. [
  10871. {
  10872. name: "Normal",
  10873. height: math.unit(6 + 11 / 12, "feet"),
  10874. default: true
  10875. },
  10876. {
  10877. name: "Macro",
  10878. height: math.unit(490, "feet")
  10879. },
  10880. {
  10881. name: "Megamacro",
  10882. height: math.unit(10, "miles")
  10883. },
  10884. {
  10885. name: "Gigamacro",
  10886. height: math.unit(50, "miles")
  10887. },
  10888. ]
  10889. ))
  10890. characterMakers.push(() => makeCharacter(
  10891. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10892. {
  10893. front: {
  10894. height: math.unit(6, "feet"),
  10895. weight: math.unit(250, "lb"),
  10896. name: "Front",
  10897. image: {
  10898. source: "./media/characters/xylrem/front.svg",
  10899. extra: 3323 / 3050,
  10900. bottom: 0.065
  10901. }
  10902. },
  10903. },
  10904. [
  10905. {
  10906. name: "Micro",
  10907. height: math.unit(4, "feet")
  10908. },
  10909. {
  10910. name: "Normal",
  10911. height: math.unit(16, "feet"),
  10912. default: true
  10913. },
  10914. {
  10915. name: "Macro",
  10916. height: math.unit(2720, "feet")
  10917. },
  10918. {
  10919. name: "Megamacro",
  10920. height: math.unit(25000, "miles")
  10921. },
  10922. ]
  10923. ))
  10924. characterMakers.push(() => makeCharacter(
  10925. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10926. {
  10927. front: {
  10928. height: math.unit(8, "feet"),
  10929. weight: math.unit(250, "kg"),
  10930. name: "Front",
  10931. image: {
  10932. source: "./media/characters/ikideru/front.svg",
  10933. extra: 930 / 870,
  10934. bottom: 0.087
  10935. }
  10936. },
  10937. back: {
  10938. height: math.unit(8, "feet"),
  10939. weight: math.unit(250, "kg"),
  10940. name: "Back",
  10941. image: {
  10942. source: "./media/characters/ikideru/back.svg",
  10943. extra: 919 / 852,
  10944. bottom: 0.055
  10945. }
  10946. },
  10947. },
  10948. [
  10949. {
  10950. name: "Rare",
  10951. height: math.unit(8, "feet"),
  10952. default: true
  10953. },
  10954. {
  10955. name: "Playful Loom",
  10956. height: math.unit(80, "feet")
  10957. },
  10958. {
  10959. name: "City Leaner",
  10960. height: math.unit(230, "feet")
  10961. },
  10962. {
  10963. name: "Megamacro",
  10964. height: math.unit(2500, "feet")
  10965. },
  10966. {
  10967. name: "Gigamacro",
  10968. height: math.unit(26400, "feet")
  10969. },
  10970. {
  10971. name: "Tectonic Shifter",
  10972. height: math.unit(1.7, "megameters")
  10973. },
  10974. {
  10975. name: "Planet Carer",
  10976. height: math.unit(21, "megameters")
  10977. },
  10978. {
  10979. name: "God",
  10980. height: math.unit(11157.22, "parsecs")
  10981. },
  10982. ]
  10983. ))
  10984. characterMakers.push(() => makeCharacter(
  10985. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10986. {
  10987. front: {
  10988. height: math.unit(6, "feet"),
  10989. weight: math.unit(120, "lb"),
  10990. name: "Front",
  10991. image: {
  10992. source: "./media/characters/neo/front.svg"
  10993. }
  10994. },
  10995. },
  10996. [
  10997. {
  10998. name: "Micro",
  10999. height: math.unit(2, "inches"),
  11000. default: true
  11001. },
  11002. {
  11003. name: "Human Size",
  11004. height: math.unit(5 + 8 / 12, "feet")
  11005. },
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11010. {
  11011. front: {
  11012. height: math.unit(13 + 10 / 12, "feet"),
  11013. weight: math.unit(5320, "lb"),
  11014. name: "Front",
  11015. image: {
  11016. source: "./media/characters/chauncey-chantz/front.svg",
  11017. extra: 1587 / 1435,
  11018. bottom: 0.02
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Normal",
  11025. height: math.unit(13 + 10 / 12, "feet"),
  11026. default: true
  11027. },
  11028. {
  11029. name: "Macro",
  11030. height: math.unit(45, "feet")
  11031. },
  11032. {
  11033. name: "Megamacro",
  11034. height: math.unit(250, "miles")
  11035. },
  11036. {
  11037. name: "Planetary",
  11038. height: math.unit(10000, "miles")
  11039. },
  11040. {
  11041. name: "Galactic",
  11042. height: math.unit(40000, "parsecs")
  11043. },
  11044. {
  11045. name: "Universal",
  11046. height: math.unit(1, "yottameter")
  11047. },
  11048. ]
  11049. ))
  11050. characterMakers.push(() => makeCharacter(
  11051. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11052. {
  11053. front: {
  11054. height: math.unit(6, "feet"),
  11055. weight: math.unit(150, "lb"),
  11056. name: "Front",
  11057. image: {
  11058. source: "./media/characters/epifox/front.svg",
  11059. extra: 1,
  11060. bottom: 0.075
  11061. }
  11062. },
  11063. },
  11064. [
  11065. {
  11066. name: "Micro",
  11067. height: math.unit(6, "inches")
  11068. },
  11069. {
  11070. name: "Normal",
  11071. height: math.unit(12, "feet"),
  11072. default: true
  11073. },
  11074. {
  11075. name: "Macro",
  11076. height: math.unit(3810, "feet")
  11077. },
  11078. {
  11079. name: "Megamacro",
  11080. height: math.unit(500, "miles")
  11081. },
  11082. ]
  11083. ))
  11084. characterMakers.push(() => makeCharacter(
  11085. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11086. {
  11087. front: {
  11088. height: math.unit(1.8796, "m"),
  11089. weight: math.unit(230, "lb"),
  11090. name: "Front",
  11091. image: {
  11092. source: "./media/characters/colin-t/front.svg",
  11093. extra: 1272 / 1193,
  11094. bottom: 0.07
  11095. }
  11096. },
  11097. },
  11098. [
  11099. {
  11100. name: "Micro",
  11101. height: math.unit(0.571, "meters")
  11102. },
  11103. {
  11104. name: "Normal",
  11105. height: math.unit(1.8796, "meters"),
  11106. default: true
  11107. },
  11108. {
  11109. name: "Tall",
  11110. height: math.unit(4, "meters")
  11111. },
  11112. {
  11113. name: "Macro",
  11114. height: math.unit(67.241, "meters")
  11115. },
  11116. {
  11117. name: "Megamacro",
  11118. height: math.unit(371.856, "meters")
  11119. },
  11120. {
  11121. name: "Planetary",
  11122. height: math.unit(12631.5689, "km")
  11123. },
  11124. ]
  11125. ))
  11126. characterMakers.push(() => makeCharacter(
  11127. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11128. {
  11129. front: {
  11130. height: math.unit(1.85, "meters"),
  11131. weight: math.unit(80, "kg"),
  11132. name: "Front",
  11133. image: {
  11134. source: "./media/characters/matvei/front.svg",
  11135. extra: 614 / 594,
  11136. bottom: 0.01
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Normal",
  11143. height: math.unit(1.85, "meters"),
  11144. default: true
  11145. },
  11146. ]
  11147. ))
  11148. characterMakers.push(() => makeCharacter(
  11149. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11150. {
  11151. front: {
  11152. height: math.unit(5 + 9 / 12, "feet"),
  11153. weight: math.unit(70, "lb"),
  11154. name: "Front",
  11155. image: {
  11156. source: "./media/characters/quincy/front.svg",
  11157. extra: 3041 / 2751
  11158. }
  11159. },
  11160. back: {
  11161. height: math.unit(5 + 9 / 12, "feet"),
  11162. weight: math.unit(70, "lb"),
  11163. name: "Back",
  11164. image: {
  11165. source: "./media/characters/quincy/back.svg",
  11166. extra: 3041 / 2751
  11167. }
  11168. },
  11169. flying: {
  11170. height: math.unit(5 + 4 / 12, "feet"),
  11171. weight: math.unit(70, "lb"),
  11172. name: "Flying",
  11173. image: {
  11174. source: "./media/characters/quincy/flying.svg",
  11175. extra: 1044 / 930
  11176. }
  11177. },
  11178. },
  11179. [
  11180. {
  11181. name: "Micro",
  11182. height: math.unit(3, "cm")
  11183. },
  11184. {
  11185. name: "Normal",
  11186. height: math.unit(5 + 9 / 12, "feet")
  11187. },
  11188. {
  11189. name: "Macro",
  11190. height: math.unit(200, "meters"),
  11191. default: true
  11192. },
  11193. {
  11194. name: "Megamacro",
  11195. height: math.unit(1000, "meters")
  11196. },
  11197. ]
  11198. ))
  11199. characterMakers.push(() => makeCharacter(
  11200. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11201. {
  11202. front: {
  11203. height: math.unit(4 + 7 / 12, "feet"),
  11204. weight: math.unit(50, "lb"),
  11205. name: "Front",
  11206. image: {
  11207. source: "./media/characters/vanrel/front.svg",
  11208. extra: 1,
  11209. bottom: 0.02
  11210. }
  11211. },
  11212. frontAlt: {
  11213. height: math.unit(4 + 7 / 12, "feet"),
  11214. weight: math.unit(50, "lb"),
  11215. name: "Front-alt",
  11216. image: {
  11217. source: "./media/characters/vanrel/front-alt.svg",
  11218. extra: 1,
  11219. bottom: 15/1511
  11220. }
  11221. },
  11222. elemental: {
  11223. height: math.unit(3, "feet"),
  11224. weight: math.unit(50, "lb"),
  11225. name: "Elemental",
  11226. image: {
  11227. source: "./media/characters/vanrel/elemental.svg",
  11228. extra: 192.3 / 162.8,
  11229. bottom: 1.79 / 194.17
  11230. }
  11231. },
  11232. side: {
  11233. height: math.unit(4 + 7 / 12, "feet"),
  11234. weight: math.unit(50, "lb"),
  11235. name: "Side",
  11236. image: {
  11237. source: "./media/characters/vanrel/side.svg",
  11238. extra: 1,
  11239. bottom: 0.025
  11240. }
  11241. },
  11242. tome: {
  11243. height: math.unit(1.35, "feet"),
  11244. weight: math.unit(10, "lb"),
  11245. name: "Vanrel's Tome",
  11246. rename: true,
  11247. image: {
  11248. source: "./media/characters/vanrel/tome.svg"
  11249. }
  11250. },
  11251. beans: {
  11252. height: math.unit(0.89, "feet"),
  11253. name: "Beans",
  11254. image: {
  11255. source: "./media/characters/vanrel/beans.svg"
  11256. }
  11257. },
  11258. },
  11259. [
  11260. {
  11261. name: "Normal",
  11262. height: math.unit(4 + 7 / 12, "feet"),
  11263. default: true
  11264. },
  11265. ]
  11266. ))
  11267. characterMakers.push(() => makeCharacter(
  11268. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11269. {
  11270. front: {
  11271. height: math.unit(7 + 5 / 12, "feet"),
  11272. weight: math.unit(150, "lb"),
  11273. name: "Front",
  11274. image: {
  11275. source: "./media/characters/kuiper-vanrel/front.svg",
  11276. extra: 1118 / 1068,
  11277. bottom: 0.09
  11278. }
  11279. },
  11280. foot: {
  11281. height: math.unit(0.55, "meters"),
  11282. name: "Foot",
  11283. image: {
  11284. source: "./media/characters/kuiper-vanrel/foot.svg",
  11285. }
  11286. },
  11287. battle: {
  11288. height: math.unit(6.824, "feet"),
  11289. weight: math.unit(150, "lb"),
  11290. name: "Battle",
  11291. image: {
  11292. source: "./media/characters/kuiper-vanrel/battle.svg",
  11293. extra: 1466 / 1327,
  11294. bottom: 29 / 1492.5
  11295. }
  11296. },
  11297. battleAlt: {
  11298. height: math.unit(6.824, "feet"),
  11299. weight: math.unit(150, "lb"),
  11300. name: "Battle (Alt)",
  11301. image: {
  11302. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11303. extra: 2081 / 1965,
  11304. bottom: 40 / 2121
  11305. }
  11306. },
  11307. },
  11308. [
  11309. {
  11310. name: "Normal",
  11311. height: math.unit(7 + 5 / 12, "feet"),
  11312. default: true
  11313. },
  11314. ]
  11315. ))
  11316. characterMakers.push(() => makeCharacter(
  11317. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11318. {
  11319. front: {
  11320. height: math.unit(8 + 5 / 12, "feet"),
  11321. weight: math.unit(150, "lb"),
  11322. name: "Front",
  11323. image: {
  11324. source: "./media/characters/keset-vanrel/front.svg",
  11325. extra: 1150 / 1084,
  11326. bottom: 0.05
  11327. }
  11328. },
  11329. hand: {
  11330. height: math.unit(0.6, "meters"),
  11331. name: "Hand",
  11332. image: {
  11333. source: "./media/characters/keset-vanrel/hand.svg"
  11334. }
  11335. },
  11336. foot: {
  11337. height: math.unit(0.94978, "meters"),
  11338. name: "Foot",
  11339. image: {
  11340. source: "./media/characters/keset-vanrel/foot.svg"
  11341. }
  11342. },
  11343. battle: {
  11344. height: math.unit(7.408, "feet"),
  11345. weight: math.unit(150, "lb"),
  11346. name: "Battle",
  11347. image: {
  11348. source: "./media/characters/keset-vanrel/battle.svg",
  11349. extra: 1890 / 1386,
  11350. bottom: 73.28 / 1970
  11351. }
  11352. },
  11353. },
  11354. [
  11355. {
  11356. name: "Normal",
  11357. height: math.unit(8 + 5 / 12, "feet"),
  11358. default: true
  11359. },
  11360. ]
  11361. ))
  11362. characterMakers.push(() => makeCharacter(
  11363. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11364. {
  11365. front: {
  11366. height: math.unit(6, "feet"),
  11367. weight: math.unit(150, "lb"),
  11368. name: "Front",
  11369. image: {
  11370. source: "./media/characters/neos/front.svg",
  11371. extra: 1696 / 992,
  11372. bottom: 0.14
  11373. }
  11374. },
  11375. },
  11376. [
  11377. {
  11378. name: "Normal",
  11379. height: math.unit(54, "cm"),
  11380. default: true
  11381. },
  11382. {
  11383. name: "Macro",
  11384. height: math.unit(100, "m")
  11385. },
  11386. {
  11387. name: "Megamacro",
  11388. height: math.unit(10, "km")
  11389. },
  11390. {
  11391. name: "Megamacro+",
  11392. height: math.unit(100, "km")
  11393. },
  11394. {
  11395. name: "Gigamacro",
  11396. height: math.unit(100, "Mm")
  11397. },
  11398. {
  11399. name: "Teramacro",
  11400. height: math.unit(100, "Gm")
  11401. },
  11402. {
  11403. name: "Examacro",
  11404. height: math.unit(100, "Em")
  11405. },
  11406. {
  11407. name: "Godly",
  11408. height: math.unit(10000, "Ym")
  11409. },
  11410. {
  11411. name: "Beyond Godly",
  11412. height: math.unit(25, "multiverses")
  11413. },
  11414. ]
  11415. ))
  11416. characterMakers.push(() => makeCharacter(
  11417. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11418. {
  11419. feminine: {
  11420. height: math.unit(5, "feet"),
  11421. weight: math.unit(100, "lb"),
  11422. name: "Feminine",
  11423. image: {
  11424. source: "./media/characters/sammy-mouse/feminine.svg",
  11425. extra: 2526 / 2425,
  11426. bottom: 0.123
  11427. }
  11428. },
  11429. masculine: {
  11430. height: math.unit(5, "feet"),
  11431. weight: math.unit(100, "lb"),
  11432. name: "Masculine",
  11433. image: {
  11434. source: "./media/characters/sammy-mouse/masculine.svg",
  11435. extra: 2526 / 2425,
  11436. bottom: 0.123
  11437. }
  11438. },
  11439. },
  11440. [
  11441. {
  11442. name: "Micro",
  11443. height: math.unit(5, "inches")
  11444. },
  11445. {
  11446. name: "Normal",
  11447. height: math.unit(5, "feet"),
  11448. default: true
  11449. },
  11450. {
  11451. name: "Macro",
  11452. height: math.unit(60, "feet")
  11453. },
  11454. ]
  11455. ))
  11456. characterMakers.push(() => makeCharacter(
  11457. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11458. {
  11459. front: {
  11460. height: math.unit(4, "feet"),
  11461. weight: math.unit(50, "lb"),
  11462. name: "Front",
  11463. image: {
  11464. source: "./media/characters/kole/front.svg",
  11465. extra: 1423 / 1303,
  11466. bottom: 0.025
  11467. }
  11468. },
  11469. back: {
  11470. height: math.unit(4, "feet"),
  11471. weight: math.unit(50, "lb"),
  11472. name: "Back",
  11473. image: {
  11474. source: "./media/characters/kole/back.svg",
  11475. extra: 1426 / 1280,
  11476. bottom: 0.02
  11477. }
  11478. },
  11479. },
  11480. [
  11481. {
  11482. name: "Normal",
  11483. height: math.unit(4, "feet"),
  11484. default: true
  11485. },
  11486. ]
  11487. ))
  11488. characterMakers.push(() => makeCharacter(
  11489. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11490. {
  11491. front: {
  11492. height: math.unit(2 + 6 / 12, "feet"),
  11493. weight: math.unit(20, "lb"),
  11494. name: "Front",
  11495. image: {
  11496. source: "./media/characters/rufran/front.svg",
  11497. extra: 2041 / 1839,
  11498. bottom: 0.055
  11499. }
  11500. },
  11501. back: {
  11502. height: math.unit(2 + 6 / 12, "feet"),
  11503. weight: math.unit(20, "lb"),
  11504. name: "Back",
  11505. image: {
  11506. source: "./media/characters/rufran/back.svg",
  11507. extra: 2054 / 1839,
  11508. bottom: 0.01
  11509. }
  11510. },
  11511. hand: {
  11512. height: math.unit(0.2166, "meters"),
  11513. name: "Hand",
  11514. image: {
  11515. source: "./media/characters/rufran/hand.svg"
  11516. }
  11517. },
  11518. foot: {
  11519. height: math.unit(0.185, "meters"),
  11520. name: "Foot",
  11521. image: {
  11522. source: "./media/characters/rufran/foot.svg"
  11523. }
  11524. },
  11525. },
  11526. [
  11527. {
  11528. name: "Micro",
  11529. height: math.unit(1, "inch")
  11530. },
  11531. {
  11532. name: "Normal",
  11533. height: math.unit(2 + 6 / 12, "feet"),
  11534. default: true
  11535. },
  11536. {
  11537. name: "Big",
  11538. height: math.unit(60, "feet")
  11539. },
  11540. {
  11541. name: "Macro",
  11542. height: math.unit(325, "feet")
  11543. },
  11544. ]
  11545. ))
  11546. characterMakers.push(() => makeCharacter(
  11547. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11548. {
  11549. front: {
  11550. height: math.unit(0.3, "meters"),
  11551. weight: math.unit(3.5, "kg"),
  11552. name: "Front",
  11553. image: {
  11554. source: "./media/characters/chip/front.svg",
  11555. extra: 748 / 674
  11556. }
  11557. },
  11558. },
  11559. [
  11560. {
  11561. name: "Micro",
  11562. height: math.unit(1, "inch"),
  11563. default: true
  11564. },
  11565. ]
  11566. ))
  11567. characterMakers.push(() => makeCharacter(
  11568. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11569. {
  11570. side: {
  11571. height: math.unit(2.3, "meters"),
  11572. weight: math.unit(3500, "lb"),
  11573. name: "Side",
  11574. image: {
  11575. source: "./media/characters/torvid/side.svg",
  11576. extra: 1972 / 722,
  11577. bottom: 0.035
  11578. }
  11579. },
  11580. },
  11581. [
  11582. {
  11583. name: "Normal",
  11584. height: math.unit(2.3, "meters"),
  11585. default: true
  11586. },
  11587. ]
  11588. ))
  11589. characterMakers.push(() => makeCharacter(
  11590. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11591. {
  11592. front: {
  11593. height: math.unit(2, "meters"),
  11594. weight: math.unit(150.5, "kg"),
  11595. name: "Front",
  11596. image: {
  11597. source: "./media/characters/susan/front.svg",
  11598. extra: 693 / 635,
  11599. bottom: 0.05
  11600. }
  11601. },
  11602. },
  11603. [
  11604. {
  11605. name: "Megamacro",
  11606. height: math.unit(505, "miles"),
  11607. default: true
  11608. },
  11609. ]
  11610. ))
  11611. characterMakers.push(() => makeCharacter(
  11612. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11613. {
  11614. front: {
  11615. height: math.unit(6, "feet"),
  11616. weight: math.unit(150, "lb"),
  11617. name: "Front",
  11618. image: {
  11619. source: "./media/characters/raindrops/front.svg",
  11620. extra: 2655 / 2461,
  11621. bottom: 49 / 2705
  11622. }
  11623. },
  11624. back: {
  11625. height: math.unit(6, "feet"),
  11626. weight: math.unit(150, "lb"),
  11627. name: "Back",
  11628. image: {
  11629. source: "./media/characters/raindrops/back.svg",
  11630. extra: 2574 / 2400,
  11631. bottom: 65 / 2634
  11632. }
  11633. },
  11634. },
  11635. [
  11636. {
  11637. name: "Micro",
  11638. height: math.unit(6, "inches")
  11639. },
  11640. {
  11641. name: "Normal",
  11642. height: math.unit(6 + 2 / 12, "feet")
  11643. },
  11644. {
  11645. name: "Macro",
  11646. height: math.unit(131, "feet"),
  11647. default: true
  11648. },
  11649. {
  11650. name: "Megamacro",
  11651. height: math.unit(15, "miles")
  11652. },
  11653. {
  11654. name: "Gigamacro",
  11655. height: math.unit(4000, "miles")
  11656. },
  11657. {
  11658. name: "Teramacro",
  11659. height: math.unit(315000, "miles")
  11660. },
  11661. ]
  11662. ))
  11663. characterMakers.push(() => makeCharacter(
  11664. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11665. {
  11666. front: {
  11667. height: math.unit(2.794, "meters"),
  11668. weight: math.unit(325, "kg"),
  11669. name: "Front",
  11670. image: {
  11671. source: "./media/characters/tezwa/front.svg",
  11672. extra: 2083 / 1906,
  11673. bottom: 0.031
  11674. }
  11675. },
  11676. foot: {
  11677. height: math.unit(0.687, "meters"),
  11678. name: "Foot",
  11679. image: {
  11680. source: "./media/characters/tezwa/foot.svg"
  11681. }
  11682. },
  11683. },
  11684. [
  11685. {
  11686. name: "Normal",
  11687. height: math.unit(9 + 2 / 12, "feet"),
  11688. default: true
  11689. },
  11690. ]
  11691. ))
  11692. characterMakers.push(() => makeCharacter(
  11693. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11694. {
  11695. front: {
  11696. height: math.unit(58, "feet"),
  11697. weight: math.unit(89000, "lb"),
  11698. name: "Front",
  11699. image: {
  11700. source: "./media/characters/typhus/front.svg",
  11701. extra: 816 / 800,
  11702. bottom: 0.065
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Macro",
  11709. height: math.unit(58, "feet"),
  11710. default: true
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(12, "feet"),
  11719. weight: math.unit(6, "tonnes"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/lyra-von-wulf/front.svg",
  11723. extra: 1,
  11724. bottom: 0.10
  11725. }
  11726. },
  11727. frontMecha: {
  11728. height: math.unit(12, "feet"),
  11729. weight: math.unit(12, "tonnes"),
  11730. name: "Front (Mecha)",
  11731. image: {
  11732. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11733. extra: 1,
  11734. bottom: 0.042
  11735. }
  11736. },
  11737. maw: {
  11738. height: math.unit(2.2, "feet"),
  11739. name: "Maw",
  11740. image: {
  11741. source: "./media/characters/lyra-von-wulf/maw.svg"
  11742. }
  11743. },
  11744. },
  11745. [
  11746. {
  11747. name: "Normal",
  11748. height: math.unit(12, "feet"),
  11749. default: true
  11750. },
  11751. {
  11752. name: "Classic",
  11753. height: math.unit(50, "feet")
  11754. },
  11755. {
  11756. name: "Macro",
  11757. height: math.unit(500, "feet")
  11758. },
  11759. {
  11760. name: "Megamacro",
  11761. height: math.unit(1, "mile")
  11762. },
  11763. {
  11764. name: "Gigamacro",
  11765. height: math.unit(400, "miles")
  11766. },
  11767. {
  11768. name: "Teramacro",
  11769. height: math.unit(22000, "miles")
  11770. },
  11771. {
  11772. name: "Solarmacro",
  11773. height: math.unit(8600000, "miles")
  11774. },
  11775. {
  11776. name: "Galactic",
  11777. height: math.unit(1057000, "lightyears")
  11778. },
  11779. ]
  11780. ))
  11781. characterMakers.push(() => makeCharacter(
  11782. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11783. {
  11784. front: {
  11785. height: math.unit(6 + 10 / 12, "feet"),
  11786. weight: math.unit(150, "lb"),
  11787. name: "Front",
  11788. image: {
  11789. source: "./media/characters/dixon/front.svg",
  11790. extra: 3361 / 3209,
  11791. bottom: 0.01
  11792. }
  11793. },
  11794. },
  11795. [
  11796. {
  11797. name: "Normal",
  11798. height: math.unit(6 + 10 / 12, "feet"),
  11799. default: true
  11800. },
  11801. {
  11802. name: "Big",
  11803. height: math.unit(12, "meters")
  11804. },
  11805. {
  11806. name: "Macro",
  11807. height: math.unit(500, "meters")
  11808. },
  11809. {
  11810. name: "Megamacro",
  11811. height: math.unit(2, "km")
  11812. },
  11813. ]
  11814. ))
  11815. characterMakers.push(() => makeCharacter(
  11816. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11817. {
  11818. front: {
  11819. height: math.unit(185, "cm"),
  11820. weight: math.unit(68, "kg"),
  11821. name: "Front",
  11822. image: {
  11823. source: "./media/characters/kauko/front.svg",
  11824. extra: 1455 / 1421,
  11825. bottom: 0.03
  11826. }
  11827. },
  11828. back: {
  11829. height: math.unit(185, "cm"),
  11830. weight: math.unit(68, "kg"),
  11831. name: "Back",
  11832. image: {
  11833. source: "./media/characters/kauko/back.svg",
  11834. extra: 1455 / 1421,
  11835. bottom: 0.004
  11836. }
  11837. },
  11838. },
  11839. [
  11840. {
  11841. name: "Normal",
  11842. height: math.unit(185, "cm"),
  11843. default: true
  11844. },
  11845. ]
  11846. ))
  11847. characterMakers.push(() => makeCharacter(
  11848. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11849. {
  11850. front: {
  11851. height: math.unit(6, "feet"),
  11852. weight: math.unit(150, "kg"),
  11853. name: "Front",
  11854. image: {
  11855. source: "./media/characters/varg/front.svg",
  11856. extra: 1108 / 1018,
  11857. bottom: 0.0375
  11858. }
  11859. },
  11860. },
  11861. [
  11862. {
  11863. name: "Normal",
  11864. height: math.unit(5, "meters")
  11865. },
  11866. {
  11867. name: "Macro",
  11868. height: math.unit(200, "meters")
  11869. },
  11870. {
  11871. name: "Megamacro",
  11872. height: math.unit(20, "kilometers")
  11873. },
  11874. {
  11875. name: "True Size",
  11876. height: math.unit(211, "km"),
  11877. default: true
  11878. },
  11879. {
  11880. name: "Gigamacro",
  11881. height: math.unit(1000, "km")
  11882. },
  11883. {
  11884. name: "Gigamacro+",
  11885. height: math.unit(8000, "km")
  11886. },
  11887. {
  11888. name: "Teramacro",
  11889. height: math.unit(1000000, "km")
  11890. },
  11891. ]
  11892. ))
  11893. characterMakers.push(() => makeCharacter(
  11894. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11895. {
  11896. front: {
  11897. height: math.unit(7 + 7 / 12, "feet"),
  11898. weight: math.unit(267, "lb"),
  11899. name: "Front",
  11900. image: {
  11901. source: "./media/characters/dayza/front.svg",
  11902. extra: 1262 / 1200,
  11903. bottom: 0.035
  11904. }
  11905. },
  11906. side: {
  11907. height: math.unit(7 + 7 / 12, "feet"),
  11908. weight: math.unit(267, "lb"),
  11909. name: "Side",
  11910. image: {
  11911. source: "./media/characters/dayza/side.svg",
  11912. extra: 1295 / 1245,
  11913. bottom: 0.05
  11914. }
  11915. },
  11916. back: {
  11917. height: math.unit(7 + 7 / 12, "feet"),
  11918. weight: math.unit(267, "lb"),
  11919. name: "Back",
  11920. image: {
  11921. source: "./media/characters/dayza/back.svg",
  11922. extra: 1241 / 1170
  11923. }
  11924. },
  11925. },
  11926. [
  11927. {
  11928. name: "Normal",
  11929. height: math.unit(7 + 7 / 12, "feet"),
  11930. default: true
  11931. },
  11932. {
  11933. name: "Macro",
  11934. height: math.unit(155, "feet")
  11935. },
  11936. ]
  11937. ))
  11938. characterMakers.push(() => makeCharacter(
  11939. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11940. {
  11941. front: {
  11942. height: math.unit(6 + 5 / 12, "feet"),
  11943. weight: math.unit(160, "lb"),
  11944. name: "Front",
  11945. image: {
  11946. source: "./media/characters/xanthos/front.svg",
  11947. extra: 1,
  11948. bottom: 0.04
  11949. }
  11950. },
  11951. back: {
  11952. height: math.unit(6 + 5 / 12, "feet"),
  11953. weight: math.unit(160, "lb"),
  11954. name: "Back",
  11955. image: {
  11956. source: "./media/characters/xanthos/back.svg",
  11957. extra: 1,
  11958. bottom: 0.03
  11959. }
  11960. },
  11961. hand: {
  11962. height: math.unit(0.928, "feet"),
  11963. name: "Hand",
  11964. image: {
  11965. source: "./media/characters/xanthos/hand.svg"
  11966. }
  11967. },
  11968. foot: {
  11969. height: math.unit(1.286, "feet"),
  11970. name: "Foot",
  11971. image: {
  11972. source: "./media/characters/xanthos/foot.svg"
  11973. }
  11974. },
  11975. },
  11976. [
  11977. {
  11978. name: "Normal",
  11979. height: math.unit(6 + 5 / 12, "feet"),
  11980. default: true
  11981. },
  11982. {
  11983. name: "Normal+",
  11984. height: math.unit(6, "meters")
  11985. },
  11986. {
  11987. name: "Macro",
  11988. height: math.unit(40, "feet")
  11989. },
  11990. {
  11991. name: "Macro+",
  11992. height: math.unit(200, "meters")
  11993. },
  11994. {
  11995. name: "Megamacro",
  11996. height: math.unit(20, "km")
  11997. },
  11998. {
  11999. name: "Megamacro+",
  12000. height: math.unit(100, "km")
  12001. },
  12002. ]
  12003. ))
  12004. characterMakers.push(() => makeCharacter(
  12005. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12006. {
  12007. front: {
  12008. height: math.unit(6 + 3 / 12, "feet"),
  12009. weight: math.unit(215, "lb"),
  12010. name: "Front",
  12011. image: {
  12012. source: "./media/characters/grynn/front.svg",
  12013. extra: 4627 / 4209,
  12014. bottom: 0.047
  12015. }
  12016. },
  12017. },
  12018. [
  12019. {
  12020. name: "Micro",
  12021. height: math.unit(6, "inches")
  12022. },
  12023. {
  12024. name: "Normal",
  12025. height: math.unit(6 + 3 / 12, "feet"),
  12026. default: true
  12027. },
  12028. {
  12029. name: "Big",
  12030. height: math.unit(104, "feet")
  12031. },
  12032. {
  12033. name: "Macro",
  12034. height: math.unit(944, "feet")
  12035. },
  12036. {
  12037. name: "Macro+",
  12038. height: math.unit(9480, "feet")
  12039. },
  12040. {
  12041. name: "Megamacro",
  12042. height: math.unit(78752, "feet")
  12043. },
  12044. {
  12045. name: "Megamacro+",
  12046. height: math.unit(630128, "feet")
  12047. },
  12048. {
  12049. name: "Megamacro++",
  12050. height: math.unit(3150695, "feet")
  12051. },
  12052. ]
  12053. ))
  12054. characterMakers.push(() => makeCharacter(
  12055. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12056. {
  12057. front: {
  12058. height: math.unit(7 + 5 / 12, "feet"),
  12059. weight: math.unit(450, "lb"),
  12060. name: "Front",
  12061. image: {
  12062. source: "./media/characters/mocha-aura/front.svg",
  12063. extra: 1907 / 1817,
  12064. bottom: 0.04
  12065. }
  12066. },
  12067. back: {
  12068. height: math.unit(7 + 5 / 12, "feet"),
  12069. weight: math.unit(450, "lb"),
  12070. name: "Back",
  12071. image: {
  12072. source: "./media/characters/mocha-aura/back.svg",
  12073. extra: 1900 / 1825,
  12074. bottom: 0.045
  12075. }
  12076. },
  12077. },
  12078. [
  12079. {
  12080. name: "Nano",
  12081. height: math.unit(1, "nm")
  12082. },
  12083. {
  12084. name: "Megamicro",
  12085. height: math.unit(1, "mm")
  12086. },
  12087. {
  12088. name: "Micro",
  12089. height: math.unit(3, "inches")
  12090. },
  12091. {
  12092. name: "Normal",
  12093. height: math.unit(7 + 5 / 12, "feet"),
  12094. default: true
  12095. },
  12096. {
  12097. name: "Macro",
  12098. height: math.unit(30, "feet")
  12099. },
  12100. {
  12101. name: "Megamacro",
  12102. height: math.unit(3500, "feet")
  12103. },
  12104. {
  12105. name: "Teramacro",
  12106. height: math.unit(500000, "miles")
  12107. },
  12108. {
  12109. name: "Petamacro",
  12110. height: math.unit(50000000000000000, "parsecs")
  12111. },
  12112. ]
  12113. ))
  12114. characterMakers.push(() => makeCharacter(
  12115. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12116. {
  12117. front: {
  12118. height: math.unit(6, "feet"),
  12119. weight: math.unit(150, "lb"),
  12120. name: "Front",
  12121. image: {
  12122. source: "./media/characters/ilisha-devya/front.svg",
  12123. extra: 1,
  12124. bottom: 0.175
  12125. }
  12126. },
  12127. back: {
  12128. height: math.unit(6, "feet"),
  12129. weight: math.unit(150, "lb"),
  12130. name: "Back",
  12131. image: {
  12132. source: "./media/characters/ilisha-devya/back.svg",
  12133. extra: 1,
  12134. bottom: 0.015
  12135. }
  12136. },
  12137. },
  12138. [
  12139. {
  12140. name: "Macro",
  12141. height: math.unit(500, "feet"),
  12142. default: true
  12143. },
  12144. {
  12145. name: "Megamacro",
  12146. height: math.unit(10, "miles")
  12147. },
  12148. {
  12149. name: "Gigamacro",
  12150. height: math.unit(100000, "miles")
  12151. },
  12152. {
  12153. name: "Examacro",
  12154. height: math.unit(1e9, "lightyears")
  12155. },
  12156. {
  12157. name: "Omniversal",
  12158. height: math.unit(1e33, "lightyears")
  12159. },
  12160. {
  12161. name: "Beyond Infinite",
  12162. height: math.unit(1e100, "lightyears")
  12163. },
  12164. ]
  12165. ))
  12166. characterMakers.push(() => makeCharacter(
  12167. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12168. {
  12169. Side: {
  12170. height: math.unit(6, "feet"),
  12171. weight: math.unit(150, "lb"),
  12172. name: "Side",
  12173. image: {
  12174. source: "./media/characters/mira/side.svg",
  12175. extra: 900 / 799,
  12176. bottom: 0.02
  12177. }
  12178. },
  12179. },
  12180. [
  12181. {
  12182. name: "Human Size",
  12183. height: math.unit(6, "feet")
  12184. },
  12185. {
  12186. name: "Macro",
  12187. height: math.unit(100, "feet"),
  12188. default: true
  12189. },
  12190. {
  12191. name: "Megamacro",
  12192. height: math.unit(10, "miles")
  12193. },
  12194. {
  12195. name: "Gigamacro",
  12196. height: math.unit(25000, "miles")
  12197. },
  12198. {
  12199. name: "Teramacro",
  12200. height: math.unit(300, "AU")
  12201. },
  12202. {
  12203. name: "Full Size",
  12204. height: math.unit(4.5e10, "lightyears")
  12205. },
  12206. ]
  12207. ))
  12208. characterMakers.push(() => makeCharacter(
  12209. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12210. {
  12211. front: {
  12212. height: math.unit(6, "feet"),
  12213. weight: math.unit(150, "lb"),
  12214. name: "Front",
  12215. image: {
  12216. source: "./media/characters/holly/front.svg",
  12217. extra: 639 / 606
  12218. }
  12219. },
  12220. back: {
  12221. height: math.unit(6, "feet"),
  12222. weight: math.unit(150, "lb"),
  12223. name: "Back",
  12224. image: {
  12225. source: "./media/characters/holly/back.svg",
  12226. extra: 623 / 598
  12227. }
  12228. },
  12229. frontWorking: {
  12230. height: math.unit(6, "feet"),
  12231. weight: math.unit(150, "lb"),
  12232. name: "Front (Working)",
  12233. image: {
  12234. source: "./media/characters/holly/front-working.svg",
  12235. extra: 607 / 577,
  12236. bottom: 0.048
  12237. }
  12238. },
  12239. },
  12240. [
  12241. {
  12242. name: "Normal",
  12243. height: math.unit(12 + 3 / 12, "feet"),
  12244. default: true
  12245. },
  12246. ]
  12247. ))
  12248. characterMakers.push(() => makeCharacter(
  12249. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12250. {
  12251. front: {
  12252. height: math.unit(6, "feet"),
  12253. weight: math.unit(150, "lb"),
  12254. name: "Front",
  12255. image: {
  12256. source: "./media/characters/porter/front.svg",
  12257. extra: 1,
  12258. bottom: 0.01
  12259. }
  12260. },
  12261. frontRobes: {
  12262. height: math.unit(6, "feet"),
  12263. weight: math.unit(150, "lb"),
  12264. name: "Front (Robes)",
  12265. image: {
  12266. source: "./media/characters/porter/front-robes.svg",
  12267. extra: 1.01,
  12268. bottom: 0.01
  12269. }
  12270. },
  12271. },
  12272. [
  12273. {
  12274. name: "Normal",
  12275. height: math.unit(11 + 9 / 12, "feet"),
  12276. default: true
  12277. },
  12278. ]
  12279. ))
  12280. characterMakers.push(() => makeCharacter(
  12281. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12282. {
  12283. legendary: {
  12284. height: math.unit(6, "feet"),
  12285. weight: math.unit(150, "lb"),
  12286. name: "Legendary",
  12287. image: {
  12288. source: "./media/characters/lucy/legendary.svg",
  12289. extra: 1355 / 1100,
  12290. bottom: 0.045
  12291. }
  12292. },
  12293. },
  12294. [
  12295. {
  12296. name: "Legendary",
  12297. height: math.unit(86882 * 2, "miles"),
  12298. default: true
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12304. {
  12305. front: {
  12306. height: math.unit(6, "feet"),
  12307. weight: math.unit(150, "lb"),
  12308. name: "Front",
  12309. image: {
  12310. source: "./media/characters/drusilla/front.svg",
  12311. extra: 678 / 635,
  12312. bottom: 0.03
  12313. }
  12314. },
  12315. back: {
  12316. height: math.unit(6, "feet"),
  12317. weight: math.unit(150, "lb"),
  12318. name: "Back",
  12319. image: {
  12320. source: "./media/characters/drusilla/back.svg",
  12321. extra: 678 / 635,
  12322. bottom: 0.005
  12323. }
  12324. },
  12325. },
  12326. [
  12327. {
  12328. name: "Macro",
  12329. height: math.unit(100, "feet")
  12330. },
  12331. {
  12332. name: "Canon Height",
  12333. height: math.unit(2000, "feet"),
  12334. default: true
  12335. },
  12336. ]
  12337. ))
  12338. characterMakers.push(() => makeCharacter(
  12339. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12340. {
  12341. front: {
  12342. height: math.unit(6, "feet"),
  12343. weight: math.unit(180, "lb"),
  12344. name: "Front",
  12345. image: {
  12346. source: "./media/characters/renard-thatch/front.svg",
  12347. extra: 2411 / 2275,
  12348. bottom: 0.01
  12349. }
  12350. },
  12351. frontPosing: {
  12352. height: math.unit(6, "feet"),
  12353. weight: math.unit(180, "lb"),
  12354. name: "Front (Posing)",
  12355. image: {
  12356. source: "./media/characters/renard-thatch/front-posing.svg",
  12357. extra: 2381 / 2261,
  12358. bottom: 0.01
  12359. }
  12360. },
  12361. back: {
  12362. height: math.unit(6, "feet"),
  12363. weight: math.unit(180, "lb"),
  12364. name: "Back",
  12365. image: {
  12366. source: "./media/characters/renard-thatch/back.svg",
  12367. extra: 2428 / 2288
  12368. }
  12369. },
  12370. },
  12371. [
  12372. {
  12373. name: "Micro",
  12374. height: math.unit(3, "inches")
  12375. },
  12376. {
  12377. name: "Default",
  12378. height: math.unit(6, "feet"),
  12379. default: true
  12380. },
  12381. {
  12382. name: "Macro",
  12383. height: math.unit(75, "feet")
  12384. },
  12385. ]
  12386. ))
  12387. characterMakers.push(() => makeCharacter(
  12388. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12389. {
  12390. front: {
  12391. height: math.unit(1450, "feet"),
  12392. weight: math.unit(1.21e6, "tons"),
  12393. name: "Front",
  12394. image: {
  12395. source: "./media/characters/sekvra/front.svg",
  12396. extra: 1,
  12397. bottom: 0.03
  12398. }
  12399. },
  12400. frontClothed: {
  12401. height: math.unit(1450, "feet"),
  12402. weight: math.unit(1.21e6, "tons"),
  12403. name: "Front (Clothed)",
  12404. image: {
  12405. source: "./media/characters/sekvra/front-clothed.svg",
  12406. extra: 1,
  12407. bottom: 0.03
  12408. }
  12409. },
  12410. side: {
  12411. height: math.unit(1450, "feet"),
  12412. weight: math.unit(1.21e6, "tons"),
  12413. name: "Side",
  12414. image: {
  12415. source: "./media/characters/sekvra/side.svg",
  12416. extra: 1,
  12417. bottom: 0.025
  12418. }
  12419. },
  12420. back: {
  12421. height: math.unit(1450, "feet"),
  12422. weight: math.unit(1.21e6, "tons"),
  12423. name: "Back",
  12424. image: {
  12425. source: "./media/characters/sekvra/back.svg",
  12426. extra: 1,
  12427. bottom: 0.005
  12428. }
  12429. },
  12430. },
  12431. [
  12432. {
  12433. name: "Macro",
  12434. height: math.unit(1450, "feet"),
  12435. default: true
  12436. },
  12437. {
  12438. name: "Megamacro",
  12439. height: math.unit(15000, "feet")
  12440. },
  12441. ]
  12442. ))
  12443. characterMakers.push(() => makeCharacter(
  12444. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12445. {
  12446. front: {
  12447. height: math.unit(6, "feet"),
  12448. weight: math.unit(150, "lb"),
  12449. name: "Front",
  12450. image: {
  12451. source: "./media/characters/carmine/front.svg",
  12452. extra: 1,
  12453. bottom: 0.035
  12454. }
  12455. },
  12456. frontArmor: {
  12457. height: math.unit(6, "feet"),
  12458. weight: math.unit(150, "lb"),
  12459. name: "Front (Armor)",
  12460. image: {
  12461. source: "./media/characters/carmine/front-armor.svg",
  12462. extra: 1,
  12463. bottom: 0.035
  12464. }
  12465. },
  12466. },
  12467. [
  12468. {
  12469. name: "Large",
  12470. height: math.unit(1, "mile")
  12471. },
  12472. {
  12473. name: "Huge",
  12474. height: math.unit(40, "miles"),
  12475. default: true
  12476. },
  12477. {
  12478. name: "Colossal",
  12479. height: math.unit(2500, "miles")
  12480. },
  12481. ]
  12482. ))
  12483. characterMakers.push(() => makeCharacter(
  12484. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12485. {
  12486. front: {
  12487. height: math.unit(6, "feet"),
  12488. weight: math.unit(150, "lb"),
  12489. name: "Front",
  12490. image: {
  12491. source: "./media/characters/elyssia/front.svg",
  12492. extra: 2201 / 2035,
  12493. bottom: 0.05
  12494. }
  12495. },
  12496. frontClothed: {
  12497. height: math.unit(6, "feet"),
  12498. weight: math.unit(150, "lb"),
  12499. name: "Front (Clothed)",
  12500. image: {
  12501. source: "./media/characters/elyssia/front-clothed.svg",
  12502. extra: 2201 / 2035,
  12503. bottom: 0.05
  12504. }
  12505. },
  12506. back: {
  12507. height: math.unit(6, "feet"),
  12508. weight: math.unit(150, "lb"),
  12509. name: "Back",
  12510. image: {
  12511. source: "./media/characters/elyssia/back.svg",
  12512. extra: 2201 / 2035,
  12513. bottom: 0.013
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Smaller",
  12520. height: math.unit(150, "feet")
  12521. },
  12522. {
  12523. name: "Standard",
  12524. height: math.unit(1400, "feet"),
  12525. default: true
  12526. },
  12527. {
  12528. name: "Distracted",
  12529. height: math.unit(15000, "feet")
  12530. },
  12531. ]
  12532. ))
  12533. characterMakers.push(() => makeCharacter(
  12534. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12535. {
  12536. front: {
  12537. height: math.unit(7 + 4 / 12, "feet"),
  12538. weight: math.unit(500, "lb"),
  12539. name: "Front",
  12540. image: {
  12541. source: "./media/characters/geno-maxwell/front.svg",
  12542. extra: 2207 / 2040,
  12543. bottom: 0.015
  12544. }
  12545. },
  12546. },
  12547. [
  12548. {
  12549. name: "Micro",
  12550. height: math.unit(3, "inches")
  12551. },
  12552. {
  12553. name: "Normal",
  12554. height: math.unit(7 + 4 / 12, "feet"),
  12555. default: true
  12556. },
  12557. {
  12558. name: "Macro",
  12559. height: math.unit(220, "feet")
  12560. },
  12561. {
  12562. name: "Megamacro",
  12563. height: math.unit(11, "miles")
  12564. },
  12565. ]
  12566. ))
  12567. characterMakers.push(() => makeCharacter(
  12568. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12569. {
  12570. front: {
  12571. height: math.unit(7 + 4 / 12, "feet"),
  12572. weight: math.unit(500, "lb"),
  12573. name: "Front",
  12574. image: {
  12575. source: "./media/characters/regena-maxwell/front.svg",
  12576. extra: 3115 / 2770,
  12577. bottom: 0.02
  12578. }
  12579. },
  12580. },
  12581. [
  12582. {
  12583. name: "Normal",
  12584. height: math.unit(7 + 4 / 12, "feet"),
  12585. default: true
  12586. },
  12587. {
  12588. name: "Macro",
  12589. height: math.unit(220, "feet")
  12590. },
  12591. {
  12592. name: "Megamacro",
  12593. height: math.unit(11, "miles")
  12594. },
  12595. ]
  12596. ))
  12597. characterMakers.push(() => makeCharacter(
  12598. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12599. {
  12600. front: {
  12601. height: math.unit(6, "feet"),
  12602. weight: math.unit(150, "lb"),
  12603. name: "Front",
  12604. image: {
  12605. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12606. extra: 860 / 690,
  12607. bottom: 0.03
  12608. }
  12609. },
  12610. },
  12611. [
  12612. {
  12613. name: "Normal",
  12614. height: math.unit(1.7, "meters"),
  12615. default: true
  12616. },
  12617. ]
  12618. ))
  12619. characterMakers.push(() => makeCharacter(
  12620. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12621. {
  12622. front: {
  12623. height: math.unit(6, "feet"),
  12624. weight: math.unit(150, "lb"),
  12625. name: "Front",
  12626. image: {
  12627. source: "./media/characters/quilly/front.svg",
  12628. extra: 890 / 776
  12629. }
  12630. },
  12631. },
  12632. [
  12633. {
  12634. name: "Gigamacro",
  12635. height: math.unit(404090, "miles"),
  12636. default: true
  12637. },
  12638. ]
  12639. ))
  12640. characterMakers.push(() => makeCharacter(
  12641. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12642. {
  12643. front: {
  12644. height: math.unit(7 + 8 / 12, "feet"),
  12645. weight: math.unit(350, "lb"),
  12646. name: "Front",
  12647. image: {
  12648. source: "./media/characters/tempest/front.svg",
  12649. extra: 1175 / 1086,
  12650. bottom: 0.02
  12651. }
  12652. },
  12653. },
  12654. [
  12655. {
  12656. name: "Normal",
  12657. height: math.unit(7 + 8 / 12, "feet"),
  12658. default: true
  12659. },
  12660. ]
  12661. ))
  12662. characterMakers.push(() => makeCharacter(
  12663. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12664. {
  12665. side: {
  12666. height: math.unit(4 + 5 / 12, "feet"),
  12667. weight: math.unit(80, "lb"),
  12668. name: "Side",
  12669. image: {
  12670. source: "./media/characters/rodger/side.svg",
  12671. extra: 1235 / 1118
  12672. }
  12673. },
  12674. },
  12675. [
  12676. {
  12677. name: "Micro",
  12678. height: math.unit(1, "inch")
  12679. },
  12680. {
  12681. name: "Normal",
  12682. height: math.unit(4 + 5 / 12, "feet"),
  12683. default: true
  12684. },
  12685. {
  12686. name: "Macro",
  12687. height: math.unit(120, "feet")
  12688. },
  12689. ]
  12690. ))
  12691. characterMakers.push(() => makeCharacter(
  12692. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12693. {
  12694. front: {
  12695. height: math.unit(6, "feet"),
  12696. weight: math.unit(150, "lb"),
  12697. name: "Front",
  12698. image: {
  12699. source: "./media/characters/danyel/front.svg",
  12700. extra: 1185 / 1123,
  12701. bottom: 0.05
  12702. }
  12703. },
  12704. },
  12705. [
  12706. {
  12707. name: "Shrunken",
  12708. height: math.unit(0.5, "mm")
  12709. },
  12710. {
  12711. name: "Micro",
  12712. height: math.unit(1, "mm"),
  12713. default: true
  12714. },
  12715. {
  12716. name: "Upsized",
  12717. height: math.unit(5 + 5 / 12, "feet")
  12718. },
  12719. ]
  12720. ))
  12721. characterMakers.push(() => makeCharacter(
  12722. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12723. {
  12724. front: {
  12725. height: math.unit(5 + 6 / 12, "feet"),
  12726. weight: math.unit(200, "lb"),
  12727. name: "Front",
  12728. image: {
  12729. source: "./media/characters/vivian-bijoux/front.svg",
  12730. extra: 1,
  12731. bottom: 0.072
  12732. }
  12733. },
  12734. },
  12735. [
  12736. {
  12737. name: "Normal",
  12738. height: math.unit(5 + 6 / 12, "feet"),
  12739. default: true
  12740. },
  12741. {
  12742. name: "Bad Dream",
  12743. height: math.unit(500, "feet")
  12744. },
  12745. {
  12746. name: "Nightmare",
  12747. height: math.unit(500, "miles")
  12748. },
  12749. ]
  12750. ))
  12751. characterMakers.push(() => makeCharacter(
  12752. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12753. {
  12754. front: {
  12755. height: math.unit(6 + 1 / 12, "feet"),
  12756. weight: math.unit(260, "lb"),
  12757. name: "Front",
  12758. image: {
  12759. source: "./media/characters/zeta/front.svg",
  12760. extra: 1968 / 1889,
  12761. bottom: 0.06
  12762. }
  12763. },
  12764. back: {
  12765. height: math.unit(6 + 1 / 12, "feet"),
  12766. weight: math.unit(260, "lb"),
  12767. name: "Back",
  12768. image: {
  12769. source: "./media/characters/zeta/back.svg",
  12770. extra: 1944 / 1858,
  12771. bottom: 0.03
  12772. }
  12773. },
  12774. hand: {
  12775. height: math.unit(1.112, "feet"),
  12776. name: "Hand",
  12777. image: {
  12778. source: "./media/characters/zeta/hand.svg"
  12779. }
  12780. },
  12781. foot: {
  12782. height: math.unit(1.48, "feet"),
  12783. name: "Foot",
  12784. image: {
  12785. source: "./media/characters/zeta/foot.svg"
  12786. }
  12787. },
  12788. },
  12789. [
  12790. {
  12791. name: "Micro",
  12792. height: math.unit(6, "inches")
  12793. },
  12794. {
  12795. name: "Normal",
  12796. height: math.unit(6 + 1 / 12, "feet"),
  12797. default: true
  12798. },
  12799. {
  12800. name: "Macro",
  12801. height: math.unit(20, "feet")
  12802. },
  12803. ]
  12804. ))
  12805. characterMakers.push(() => makeCharacter(
  12806. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12807. {
  12808. front: {
  12809. height: math.unit(6, "feet"),
  12810. weight: math.unit(150, "lb"),
  12811. name: "Front",
  12812. image: {
  12813. source: "./media/characters/jamie-larsen/front.svg",
  12814. extra: 962 / 933,
  12815. bottom: 0.02
  12816. }
  12817. },
  12818. back: {
  12819. height: math.unit(6, "feet"),
  12820. weight: math.unit(150, "lb"),
  12821. name: "Back",
  12822. image: {
  12823. source: "./media/characters/jamie-larsen/back.svg",
  12824. extra: 997 / 946
  12825. }
  12826. },
  12827. },
  12828. [
  12829. {
  12830. name: "Macro",
  12831. height: math.unit(28 + 7 / 12, "feet"),
  12832. default: true
  12833. },
  12834. {
  12835. name: "Macro+",
  12836. height: math.unit(180, "feet")
  12837. },
  12838. {
  12839. name: "Megamacro",
  12840. height: math.unit(10, "miles")
  12841. },
  12842. {
  12843. name: "Gigamacro",
  12844. height: math.unit(200000, "miles")
  12845. },
  12846. ]
  12847. ))
  12848. characterMakers.push(() => makeCharacter(
  12849. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12850. {
  12851. front: {
  12852. height: math.unit(6, "feet"),
  12853. weight: math.unit(120, "lb"),
  12854. name: "Front",
  12855. image: {
  12856. source: "./media/characters/vance/front.svg",
  12857. extra: 1980 / 1890,
  12858. bottom: 0.09
  12859. }
  12860. },
  12861. back: {
  12862. height: math.unit(6, "feet"),
  12863. weight: math.unit(120, "lb"),
  12864. name: "Back",
  12865. image: {
  12866. source: "./media/characters/vance/back.svg",
  12867. extra: 2081 / 1994,
  12868. bottom: 0.014
  12869. }
  12870. },
  12871. hand: {
  12872. height: math.unit(0.88, "feet"),
  12873. name: "Hand",
  12874. image: {
  12875. source: "./media/characters/vance/hand.svg"
  12876. }
  12877. },
  12878. foot: {
  12879. height: math.unit(0.64, "feet"),
  12880. name: "Foot",
  12881. image: {
  12882. source: "./media/characters/vance/foot.svg"
  12883. }
  12884. },
  12885. },
  12886. [
  12887. {
  12888. name: "Small",
  12889. height: math.unit(90, "feet"),
  12890. default: true
  12891. },
  12892. {
  12893. name: "Macro",
  12894. height: math.unit(100, "meters")
  12895. },
  12896. {
  12897. name: "Megamacro",
  12898. height: math.unit(15, "miles")
  12899. },
  12900. ]
  12901. ))
  12902. characterMakers.push(() => makeCharacter(
  12903. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12904. {
  12905. front: {
  12906. height: math.unit(6, "feet"),
  12907. weight: math.unit(180, "lb"),
  12908. name: "Front",
  12909. image: {
  12910. source: "./media/characters/xochitl/front.svg",
  12911. extra: 2297 / 2261,
  12912. bottom: 0.065
  12913. }
  12914. },
  12915. back: {
  12916. height: math.unit(6, "feet"),
  12917. weight: math.unit(180, "lb"),
  12918. name: "Back",
  12919. image: {
  12920. source: "./media/characters/xochitl/back.svg",
  12921. extra: 2386 / 2354,
  12922. bottom: 0.01
  12923. }
  12924. },
  12925. foot: {
  12926. height: math.unit(6 / 5 * 1.15, "feet"),
  12927. weight: math.unit(150, "lb"),
  12928. name: "Foot",
  12929. image: {
  12930. source: "./media/characters/xochitl/foot.svg"
  12931. }
  12932. },
  12933. },
  12934. [
  12935. {
  12936. name: "Macro",
  12937. height: math.unit(80, "feet")
  12938. },
  12939. {
  12940. name: "Macro+",
  12941. height: math.unit(400, "feet"),
  12942. default: true
  12943. },
  12944. {
  12945. name: "Gigamacro",
  12946. height: math.unit(80000, "miles")
  12947. },
  12948. {
  12949. name: "Gigamacro+",
  12950. height: math.unit(400000, "miles")
  12951. },
  12952. {
  12953. name: "Teramacro",
  12954. height: math.unit(300, "AU")
  12955. },
  12956. ]
  12957. ))
  12958. characterMakers.push(() => makeCharacter(
  12959. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12960. {
  12961. front: {
  12962. height: math.unit(6, "feet"),
  12963. weight: math.unit(150, "lb"),
  12964. name: "Front",
  12965. image: {
  12966. source: "./media/characters/vincent/front.svg",
  12967. extra: 1130 / 1080,
  12968. bottom: 0.055
  12969. }
  12970. },
  12971. beak: {
  12972. height: math.unit(6 * 0.1, "feet"),
  12973. name: "Beak",
  12974. image: {
  12975. source: "./media/characters/vincent/beak.svg"
  12976. }
  12977. },
  12978. hand: {
  12979. height: math.unit(6 * 0.85, "feet"),
  12980. weight: math.unit(150, "lb"),
  12981. name: "Hand",
  12982. image: {
  12983. source: "./media/characters/vincent/hand.svg"
  12984. }
  12985. },
  12986. foot: {
  12987. height: math.unit(6 * 0.19, "feet"),
  12988. weight: math.unit(150, "lb"),
  12989. name: "Foot",
  12990. image: {
  12991. source: "./media/characters/vincent/foot.svg"
  12992. }
  12993. },
  12994. },
  12995. [
  12996. {
  12997. name: "Base",
  12998. height: math.unit(6 + 5 / 12, "feet"),
  12999. default: true
  13000. },
  13001. {
  13002. name: "Macro",
  13003. height: math.unit(300, "feet")
  13004. },
  13005. {
  13006. name: "Megamacro",
  13007. height: math.unit(2, "miles")
  13008. },
  13009. {
  13010. name: "Gigamacro",
  13011. height: math.unit(1000, "miles")
  13012. },
  13013. ]
  13014. ))
  13015. characterMakers.push(() => makeCharacter(
  13016. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13017. {
  13018. front: {
  13019. height: math.unit(6 + 2 / 12, "feet"),
  13020. weight: math.unit(265, "lb"),
  13021. name: "Front",
  13022. image: {
  13023. source: "./media/characters/jay/front.svg",
  13024. extra: 1510 / 1430,
  13025. bottom: 0.042
  13026. }
  13027. },
  13028. back: {
  13029. height: math.unit(6 + 2 / 12, "feet"),
  13030. weight: math.unit(265, "lb"),
  13031. name: "Back",
  13032. image: {
  13033. source: "./media/characters/jay/back.svg",
  13034. extra: 1510 / 1430,
  13035. bottom: 0.025
  13036. }
  13037. },
  13038. clothed: {
  13039. height: math.unit(6 + 2 / 12, "feet"),
  13040. weight: math.unit(265, "lb"),
  13041. name: "Front (Clothed)",
  13042. image: {
  13043. source: "./media/characters/jay/clothed.svg",
  13044. extra: 744 / 699,
  13045. bottom: 0.043
  13046. }
  13047. },
  13048. head: {
  13049. height: math.unit(1.772, "feet"),
  13050. name: "Head",
  13051. image: {
  13052. source: "./media/characters/jay/head.svg"
  13053. }
  13054. },
  13055. sizeRay: {
  13056. height: math.unit(1.331, "feet"),
  13057. name: "Size Ray",
  13058. image: {
  13059. source: "./media/characters/jay/size-ray.svg"
  13060. }
  13061. },
  13062. },
  13063. [
  13064. {
  13065. name: "Micro",
  13066. height: math.unit(1, "inch")
  13067. },
  13068. {
  13069. name: "Normal",
  13070. height: math.unit(6 + 2 / 12, "feet"),
  13071. default: true
  13072. },
  13073. {
  13074. name: "Macro",
  13075. height: math.unit(1, "mile")
  13076. },
  13077. {
  13078. name: "Megamacro",
  13079. height: math.unit(100, "miles")
  13080. },
  13081. ]
  13082. ))
  13083. characterMakers.push(() => makeCharacter(
  13084. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13085. {
  13086. front: {
  13087. height: math.unit(2, "meters"),
  13088. weight: math.unit(500, "kg"),
  13089. name: "Front",
  13090. image: {
  13091. source: "./media/characters/coatl/front.svg",
  13092. extra: 3948 / 3500,
  13093. bottom: 0.082
  13094. }
  13095. },
  13096. },
  13097. [
  13098. {
  13099. name: "Normal",
  13100. height: math.unit(4, "meters")
  13101. },
  13102. {
  13103. name: "Macro",
  13104. height: math.unit(100, "meters"),
  13105. default: true
  13106. },
  13107. {
  13108. name: "Macro+",
  13109. height: math.unit(300, "meters")
  13110. },
  13111. {
  13112. name: "Megamacro",
  13113. height: math.unit(3, "gigameters")
  13114. },
  13115. {
  13116. name: "Megamacro+",
  13117. height: math.unit(300, "terameters")
  13118. },
  13119. {
  13120. name: "Megamacro++",
  13121. height: math.unit(3, "lightyears")
  13122. },
  13123. ]
  13124. ))
  13125. characterMakers.push(() => makeCharacter(
  13126. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13127. {
  13128. front: {
  13129. height: math.unit(6, "feet"),
  13130. weight: math.unit(50, "kg"),
  13131. name: "front",
  13132. image: {
  13133. source: "./media/characters/shiroryu/front.svg",
  13134. extra: 1990 / 1935
  13135. }
  13136. },
  13137. },
  13138. [
  13139. {
  13140. name: "Mortal Mingling",
  13141. height: math.unit(3, "meters")
  13142. },
  13143. {
  13144. name: "Kaiju-ish",
  13145. height: math.unit(250, "meters")
  13146. },
  13147. {
  13148. name: "Somewhat Godly",
  13149. height: math.unit(400, "km"),
  13150. default: true
  13151. },
  13152. {
  13153. name: "Planetary",
  13154. height: math.unit(300, "megameters")
  13155. },
  13156. {
  13157. name: "Galaxy-dwarfing",
  13158. height: math.unit(450, "kiloparsecs")
  13159. },
  13160. {
  13161. name: "Universe Eater",
  13162. height: math.unit(150, "gigaparsecs")
  13163. },
  13164. {
  13165. name: "Almost Immeasurable",
  13166. height: math.unit(1.3e266, "yottaparsecs")
  13167. },
  13168. ]
  13169. ))
  13170. characterMakers.push(() => makeCharacter(
  13171. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13172. {
  13173. front: {
  13174. height: math.unit(6, "feet"),
  13175. weight: math.unit(150, "lb"),
  13176. name: "Front",
  13177. image: {
  13178. source: "./media/characters/umeko/front.svg",
  13179. extra: 1,
  13180. bottom: 0.019
  13181. }
  13182. },
  13183. frontArmored: {
  13184. height: math.unit(6, "feet"),
  13185. weight: math.unit(150, "lb"),
  13186. name: "Front (Armored)",
  13187. image: {
  13188. source: "./media/characters/umeko/front-armored.svg",
  13189. extra: 1,
  13190. bottom: 0.021
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Macro",
  13197. height: math.unit(220, "feet"),
  13198. default: true
  13199. },
  13200. {
  13201. name: "Guardian Dragon",
  13202. height: math.unit(50, "miles")
  13203. },
  13204. {
  13205. name: "Cosmic",
  13206. height: math.unit(800000, "miles")
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(6, "feet"),
  13215. weight: math.unit(150, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/cassidy/front.svg",
  13219. extra: 1,
  13220. bottom: 0.043
  13221. }
  13222. },
  13223. },
  13224. [
  13225. {
  13226. name: "Canon Height",
  13227. height: math.unit(120, "feet"),
  13228. default: true
  13229. },
  13230. {
  13231. name: "Macro+",
  13232. height: math.unit(400, "feet")
  13233. },
  13234. {
  13235. name: "Macro++",
  13236. height: math.unit(4000, "feet")
  13237. },
  13238. {
  13239. name: "Megamacro",
  13240. height: math.unit(3, "miles")
  13241. },
  13242. ]
  13243. ))
  13244. characterMakers.push(() => makeCharacter(
  13245. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13246. {
  13247. front: {
  13248. height: math.unit(6, "feet"),
  13249. weight: math.unit(150, "lb"),
  13250. name: "Front",
  13251. image: {
  13252. source: "./media/characters/isaac/front.svg",
  13253. extra: 896 / 815,
  13254. bottom: 0.11
  13255. }
  13256. },
  13257. },
  13258. [
  13259. {
  13260. name: "Human Size",
  13261. height: math.unit(8, "feet"),
  13262. default: true
  13263. },
  13264. {
  13265. name: "Macro",
  13266. height: math.unit(400, "feet")
  13267. },
  13268. {
  13269. name: "Megamacro",
  13270. height: math.unit(50, "miles")
  13271. },
  13272. {
  13273. name: "Canon Height",
  13274. height: math.unit(200, "AU")
  13275. },
  13276. ]
  13277. ))
  13278. characterMakers.push(() => makeCharacter(
  13279. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13280. {
  13281. front: {
  13282. height: math.unit(6, "feet"),
  13283. weight: math.unit(72, "kg"),
  13284. name: "Front",
  13285. image: {
  13286. source: "./media/characters/sleekit/front.svg",
  13287. extra: 4693 / 4487,
  13288. bottom: 0.012
  13289. }
  13290. },
  13291. },
  13292. [
  13293. {
  13294. name: "Minimum Height",
  13295. height: math.unit(10, "meters")
  13296. },
  13297. {
  13298. name: "Smaller",
  13299. height: math.unit(25, "meters")
  13300. },
  13301. {
  13302. name: "Larger",
  13303. height: math.unit(38, "meters"),
  13304. default: true
  13305. },
  13306. {
  13307. name: "Maximum height",
  13308. height: math.unit(100, "meters")
  13309. },
  13310. ]
  13311. ))
  13312. characterMakers.push(() => makeCharacter(
  13313. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13314. {
  13315. front: {
  13316. height: math.unit(6, "feet"),
  13317. weight: math.unit(150, "lb"),
  13318. name: "Front",
  13319. image: {
  13320. source: "./media/characters/nillia/front.svg",
  13321. extra: 2195 / 2037,
  13322. bottom: 0.005
  13323. }
  13324. },
  13325. back: {
  13326. height: math.unit(6, "feet"),
  13327. weight: math.unit(150, "lb"),
  13328. name: "Back",
  13329. image: {
  13330. source: "./media/characters/nillia/back.svg",
  13331. extra: 2195 / 2037,
  13332. bottom: 0.005
  13333. }
  13334. },
  13335. },
  13336. [
  13337. {
  13338. name: "Canon Height",
  13339. height: math.unit(489, "feet"),
  13340. default: true
  13341. }
  13342. ]
  13343. ))
  13344. characterMakers.push(() => makeCharacter(
  13345. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13346. {
  13347. front: {
  13348. height: math.unit(6, "feet"),
  13349. weight: math.unit(150, "lb"),
  13350. name: "Front",
  13351. image: {
  13352. source: "./media/characters/mesmyriza/front.svg",
  13353. extra: 2067 / 1784,
  13354. bottom: 0.035
  13355. }
  13356. },
  13357. foot: {
  13358. height: math.unit(6 / (250 / 35), "feet"),
  13359. name: "Foot",
  13360. image: {
  13361. source: "./media/characters/mesmyriza/foot.svg"
  13362. }
  13363. },
  13364. },
  13365. [
  13366. {
  13367. name: "Macro",
  13368. height: math.unit(457, "meters"),
  13369. default: true
  13370. },
  13371. {
  13372. name: "Megamacro",
  13373. height: math.unit(8, "megameters")
  13374. },
  13375. ]
  13376. ))
  13377. characterMakers.push(() => makeCharacter(
  13378. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13379. {
  13380. front: {
  13381. height: math.unit(6, "feet"),
  13382. weight: math.unit(250, "lb"),
  13383. name: "Front",
  13384. image: {
  13385. source: "./media/characters/saudade/front.svg",
  13386. extra: 1172 / 1139,
  13387. bottom: 0.035
  13388. }
  13389. },
  13390. },
  13391. [
  13392. {
  13393. name: "Micro",
  13394. height: math.unit(3, "inches")
  13395. },
  13396. {
  13397. name: "Normal",
  13398. height: math.unit(6, "feet"),
  13399. default: true
  13400. },
  13401. {
  13402. name: "Macro",
  13403. height: math.unit(50, "feet")
  13404. },
  13405. {
  13406. name: "Megamacro",
  13407. height: math.unit(2800, "feet")
  13408. },
  13409. ]
  13410. ))
  13411. characterMakers.push(() => makeCharacter(
  13412. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13413. {
  13414. front: {
  13415. height: math.unit(5 + 4 / 12, "feet"),
  13416. weight: math.unit(100, "lb"),
  13417. name: "Front",
  13418. image: {
  13419. source: "./media/characters/keireer/front.svg",
  13420. extra: 716 / 666,
  13421. bottom: 0.05
  13422. }
  13423. },
  13424. },
  13425. [
  13426. {
  13427. name: "Normal",
  13428. height: math.unit(5 + 4 / 12, "feet"),
  13429. default: true
  13430. },
  13431. ]
  13432. ))
  13433. characterMakers.push(() => makeCharacter(
  13434. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13435. {
  13436. front: {
  13437. height: math.unit(6, "feet"),
  13438. weight: math.unit(90, "kg"),
  13439. name: "Front",
  13440. image: {
  13441. source: "./media/characters/mirja/front.svg",
  13442. extra: 1789 / 1683,
  13443. bottom: 0.05
  13444. }
  13445. },
  13446. frontDressed: {
  13447. height: math.unit(6, "feet"),
  13448. weight: math.unit(90, "lb"),
  13449. name: "Front (Dressed)",
  13450. image: {
  13451. source: "./media/characters/mirja/front-dressed.svg",
  13452. extra: 1789 / 1683,
  13453. bottom: 0.05
  13454. }
  13455. },
  13456. back: {
  13457. height: math.unit(6, "feet"),
  13458. weight: math.unit(90, "lb"),
  13459. name: "Back",
  13460. image: {
  13461. source: "./media/characters/mirja/back.svg",
  13462. extra: 953 / 917,
  13463. bottom: 0.017
  13464. }
  13465. },
  13466. },
  13467. [
  13468. {
  13469. name: "\"Incognito\"",
  13470. height: math.unit(3, "meters")
  13471. },
  13472. {
  13473. name: "Strolling Size",
  13474. height: math.unit(15, "km")
  13475. },
  13476. {
  13477. name: "Larger Strolling Size",
  13478. height: math.unit(400, "km")
  13479. },
  13480. {
  13481. name: "Preferred Size",
  13482. height: math.unit(5000, "km")
  13483. },
  13484. {
  13485. name: "True Size",
  13486. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13487. default: true
  13488. },
  13489. ]
  13490. ))
  13491. characterMakers.push(() => makeCharacter(
  13492. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13493. {
  13494. front: {
  13495. height: math.unit(15, "feet"),
  13496. weight: math.unit(880, "kg"),
  13497. name: "Front",
  13498. image: {
  13499. source: "./media/characters/nightraver/front.svg",
  13500. extra: 2444 / 2160,
  13501. bottom: 0.027
  13502. }
  13503. },
  13504. back: {
  13505. height: math.unit(15, "feet"),
  13506. weight: math.unit(880, "kg"),
  13507. name: "Back",
  13508. image: {
  13509. source: "./media/characters/nightraver/back.svg",
  13510. extra: 2309 / 2180,
  13511. bottom: 0.005
  13512. }
  13513. },
  13514. sole: {
  13515. height: math.unit(2.878, "feet"),
  13516. name: "Sole",
  13517. image: {
  13518. source: "./media/characters/nightraver/sole.svg"
  13519. }
  13520. },
  13521. foot: {
  13522. height: math.unit(2.285, "feet"),
  13523. name: "Foot",
  13524. image: {
  13525. source: "./media/characters/nightraver/foot.svg"
  13526. }
  13527. },
  13528. maw: {
  13529. height: math.unit(2.67, "feet"),
  13530. name: "Maw",
  13531. image: {
  13532. source: "./media/characters/nightraver/maw.svg"
  13533. }
  13534. },
  13535. },
  13536. [
  13537. {
  13538. name: "Micro",
  13539. height: math.unit(1, "cm")
  13540. },
  13541. {
  13542. name: "Normal",
  13543. height: math.unit(15, "feet"),
  13544. default: true
  13545. },
  13546. {
  13547. name: "Macro",
  13548. height: math.unit(300, "feet")
  13549. },
  13550. {
  13551. name: "Megamacro",
  13552. height: math.unit(300, "miles")
  13553. },
  13554. {
  13555. name: "Gigamacro",
  13556. height: math.unit(10000, "miles")
  13557. },
  13558. ]
  13559. ))
  13560. characterMakers.push(() => makeCharacter(
  13561. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13562. {
  13563. side: {
  13564. height: math.unit(2, "inches"),
  13565. weight: math.unit(5, "grams"),
  13566. name: "Side",
  13567. image: {
  13568. source: "./media/characters/arc/side.svg"
  13569. }
  13570. },
  13571. },
  13572. [
  13573. {
  13574. name: "Micro",
  13575. height: math.unit(2, "inches"),
  13576. default: true
  13577. },
  13578. ]
  13579. ))
  13580. characterMakers.push(() => makeCharacter(
  13581. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13582. {
  13583. front: {
  13584. height: math.unit(1.1938, "meters"),
  13585. weight: math.unit(54, "kg"),
  13586. name: "Front",
  13587. image: {
  13588. source: "./media/characters/nebula-shahar/front.svg",
  13589. extra: 1642 / 1436,
  13590. bottom: 0.06
  13591. }
  13592. },
  13593. },
  13594. [
  13595. {
  13596. name: "Megamicro",
  13597. height: math.unit(0.3, "mm")
  13598. },
  13599. {
  13600. name: "Micro",
  13601. height: math.unit(3, "cm")
  13602. },
  13603. {
  13604. name: "Normal",
  13605. height: math.unit(138, "cm"),
  13606. default: true
  13607. },
  13608. {
  13609. name: "Macro",
  13610. height: math.unit(30, "m")
  13611. },
  13612. ]
  13613. ))
  13614. characterMakers.push(() => makeCharacter(
  13615. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13616. {
  13617. front: {
  13618. height: math.unit(5.24, "feet"),
  13619. weight: math.unit(150, "lb"),
  13620. name: "Front",
  13621. image: {
  13622. source: "./media/characters/shayla/front.svg",
  13623. extra: 1512 / 1414,
  13624. bottom: 0.01
  13625. }
  13626. },
  13627. back: {
  13628. height: math.unit(5.24, "feet"),
  13629. weight: math.unit(150, "lb"),
  13630. name: "Back",
  13631. image: {
  13632. source: "./media/characters/shayla/back.svg",
  13633. extra: 1512 / 1414
  13634. }
  13635. },
  13636. hand: {
  13637. height: math.unit(0.7781496062992126, "feet"),
  13638. name: "Hand",
  13639. image: {
  13640. source: "./media/characters/shayla/hand.svg"
  13641. }
  13642. },
  13643. foot: {
  13644. height: math.unit(1.4206036745406823, "feet"),
  13645. name: "Foot",
  13646. image: {
  13647. source: "./media/characters/shayla/foot.svg"
  13648. }
  13649. },
  13650. },
  13651. [
  13652. {
  13653. name: "Micro",
  13654. height: math.unit(0.32, "feet")
  13655. },
  13656. {
  13657. name: "Normal",
  13658. height: math.unit(5.24, "feet"),
  13659. default: true
  13660. },
  13661. {
  13662. name: "Macro",
  13663. height: math.unit(492.12, "feet")
  13664. },
  13665. {
  13666. name: "Megamacro",
  13667. height: math.unit(186.41, "miles")
  13668. },
  13669. ]
  13670. ))
  13671. characterMakers.push(() => makeCharacter(
  13672. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13673. {
  13674. front: {
  13675. height: math.unit(2.2, "m"),
  13676. weight: math.unit(120, "kg"),
  13677. name: "Front",
  13678. image: {
  13679. source: "./media/characters/pia-jr/front.svg",
  13680. extra: 1000 / 970,
  13681. bottom: 0.035
  13682. }
  13683. },
  13684. hand: {
  13685. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13686. name: "Hand",
  13687. image: {
  13688. source: "./media/characters/pia-jr/hand.svg"
  13689. }
  13690. },
  13691. paw: {
  13692. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13693. name: "Paw",
  13694. image: {
  13695. source: "./media/characters/pia-jr/paw.svg"
  13696. }
  13697. },
  13698. },
  13699. [
  13700. {
  13701. name: "Micro",
  13702. height: math.unit(1.2, "cm")
  13703. },
  13704. {
  13705. name: "Normal",
  13706. height: math.unit(2.2, "m"),
  13707. default: true
  13708. },
  13709. {
  13710. name: "Macro",
  13711. height: math.unit(180, "m")
  13712. },
  13713. {
  13714. name: "Megamacro",
  13715. height: math.unit(420, "km")
  13716. },
  13717. ]
  13718. ))
  13719. characterMakers.push(() => makeCharacter(
  13720. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13721. {
  13722. front: {
  13723. height: math.unit(2, "m"),
  13724. weight: math.unit(115, "kg"),
  13725. name: "Front",
  13726. image: {
  13727. source: "./media/characters/pia-sr/front.svg",
  13728. extra: 760 / 730,
  13729. bottom: 0.015
  13730. }
  13731. },
  13732. back: {
  13733. height: math.unit(2, "m"),
  13734. weight: math.unit(115, "kg"),
  13735. name: "Back",
  13736. image: {
  13737. source: "./media/characters/pia-sr/back.svg",
  13738. extra: 760 / 730,
  13739. bottom: 0.01
  13740. }
  13741. },
  13742. hand: {
  13743. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13744. name: "Hand",
  13745. image: {
  13746. source: "./media/characters/pia-sr/hand.svg"
  13747. }
  13748. },
  13749. foot: {
  13750. height: math.unit(1.83, "feet"),
  13751. name: "Foot",
  13752. image: {
  13753. source: "./media/characters/pia-sr/foot.svg"
  13754. }
  13755. },
  13756. },
  13757. [
  13758. {
  13759. name: "Micro",
  13760. height: math.unit(88, "mm")
  13761. },
  13762. {
  13763. name: "Normal",
  13764. height: math.unit(2, "m"),
  13765. default: true
  13766. },
  13767. {
  13768. name: "Macro",
  13769. height: math.unit(200, "m")
  13770. },
  13771. {
  13772. name: "Megamacro",
  13773. height: math.unit(420, "km")
  13774. },
  13775. ]
  13776. ))
  13777. characterMakers.push(() => makeCharacter(
  13778. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13779. {
  13780. front: {
  13781. height: math.unit(8 + 2 / 12, "feet"),
  13782. weight: math.unit(300, "lb"),
  13783. name: "Front",
  13784. image: {
  13785. source: "./media/characters/kibibyte/front.svg",
  13786. extra: 2221 / 2098,
  13787. bottom: 0.04
  13788. }
  13789. },
  13790. },
  13791. [
  13792. {
  13793. name: "Normal",
  13794. height: math.unit(8 + 2 / 12, "feet"),
  13795. default: true
  13796. },
  13797. {
  13798. name: "Socialable Macro",
  13799. height: math.unit(50, "feet")
  13800. },
  13801. {
  13802. name: "Macro",
  13803. height: math.unit(300, "feet")
  13804. },
  13805. {
  13806. name: "Megamacro",
  13807. height: math.unit(500, "miles")
  13808. },
  13809. ]
  13810. ))
  13811. characterMakers.push(() => makeCharacter(
  13812. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13813. {
  13814. front: {
  13815. height: math.unit(6, "feet"),
  13816. weight: math.unit(150, "lb"),
  13817. name: "Front",
  13818. image: {
  13819. source: "./media/characters/felix/front.svg",
  13820. extra: 762 / 722,
  13821. bottom: 0.02
  13822. }
  13823. },
  13824. frontClothed: {
  13825. height: math.unit(6, "feet"),
  13826. weight: math.unit(150, "lb"),
  13827. name: "Front (Clothed)",
  13828. image: {
  13829. source: "./media/characters/felix/front-clothed.svg",
  13830. extra: 762 / 722,
  13831. bottom: 0.02
  13832. }
  13833. },
  13834. },
  13835. [
  13836. {
  13837. name: "Normal",
  13838. height: math.unit(6 + 8 / 12, "feet"),
  13839. default: true
  13840. },
  13841. {
  13842. name: "Macro",
  13843. height: math.unit(2600, "feet")
  13844. },
  13845. {
  13846. name: "Megamacro",
  13847. height: math.unit(450, "miles")
  13848. },
  13849. ]
  13850. ))
  13851. characterMakers.push(() => makeCharacter(
  13852. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13853. {
  13854. front: {
  13855. height: math.unit(6 + 1 / 12, "feet"),
  13856. weight: math.unit(250, "lb"),
  13857. name: "Front",
  13858. image: {
  13859. source: "./media/characters/tobo/front.svg",
  13860. extra: 608 / 586,
  13861. bottom: 0.023
  13862. }
  13863. },
  13864. back: {
  13865. height: math.unit(6 + 1 / 12, "feet"),
  13866. weight: math.unit(250, "lb"),
  13867. name: "Back",
  13868. image: {
  13869. source: "./media/characters/tobo/back.svg",
  13870. extra: 608 / 586
  13871. }
  13872. },
  13873. },
  13874. [
  13875. {
  13876. name: "Nano",
  13877. height: math.unit(2, "nm")
  13878. },
  13879. {
  13880. name: "Megamicro",
  13881. height: math.unit(0.1, "mm")
  13882. },
  13883. {
  13884. name: "Micro",
  13885. height: math.unit(1, "inch"),
  13886. default: true
  13887. },
  13888. {
  13889. name: "Human-sized",
  13890. height: math.unit(6 + 1 / 12, "feet")
  13891. },
  13892. {
  13893. name: "Macro",
  13894. height: math.unit(250, "feet")
  13895. },
  13896. {
  13897. name: "Megamacro",
  13898. height: math.unit(75, "miles")
  13899. },
  13900. {
  13901. name: "Texas-sized",
  13902. height: math.unit(750, "miles")
  13903. },
  13904. {
  13905. name: "Teramacro",
  13906. height: math.unit(50000, "miles")
  13907. },
  13908. ]
  13909. ))
  13910. characterMakers.push(() => makeCharacter(
  13911. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13912. {
  13913. front: {
  13914. height: math.unit(6, "feet"),
  13915. weight: math.unit(269, "lb"),
  13916. name: "Front",
  13917. image: {
  13918. source: "./media/characters/danny-kapowsky/front.svg",
  13919. extra: 766 / 736,
  13920. bottom: 0.044
  13921. }
  13922. },
  13923. back: {
  13924. height: math.unit(6, "feet"),
  13925. weight: math.unit(269, "lb"),
  13926. name: "Back",
  13927. image: {
  13928. source: "./media/characters/danny-kapowsky/back.svg",
  13929. extra: 797 / 760,
  13930. bottom: 0.025
  13931. }
  13932. },
  13933. },
  13934. [
  13935. {
  13936. name: "Macro",
  13937. height: math.unit(150, "feet"),
  13938. default: true
  13939. },
  13940. {
  13941. name: "Macro+",
  13942. height: math.unit(200, "feet")
  13943. },
  13944. {
  13945. name: "Macro++",
  13946. height: math.unit(300, "feet")
  13947. },
  13948. {
  13949. name: "Macro+++",
  13950. height: math.unit(400, "feet")
  13951. },
  13952. ]
  13953. ))
  13954. characterMakers.push(() => makeCharacter(
  13955. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13956. {
  13957. side: {
  13958. height: math.unit(6, "feet"),
  13959. weight: math.unit(170, "lb"),
  13960. name: "Side",
  13961. image: {
  13962. source: "./media/characters/finn/side.svg",
  13963. extra: 1953 / 1807,
  13964. bottom: 0.057
  13965. }
  13966. },
  13967. },
  13968. [
  13969. {
  13970. name: "Megamacro",
  13971. height: math.unit(14445, "feet"),
  13972. default: true
  13973. },
  13974. ]
  13975. ))
  13976. characterMakers.push(() => makeCharacter(
  13977. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13978. {
  13979. front: {
  13980. height: math.unit(5 + 6 / 12, "feet"),
  13981. weight: math.unit(125, "lb"),
  13982. name: "Front",
  13983. image: {
  13984. source: "./media/characters/roy/front.svg",
  13985. extra: 1,
  13986. bottom: 0.11
  13987. }
  13988. },
  13989. },
  13990. [
  13991. {
  13992. name: "Micro",
  13993. height: math.unit(3, "inches"),
  13994. default: true
  13995. },
  13996. {
  13997. name: "Normal",
  13998. height: math.unit(5 + 6 / 12, "feet")
  13999. },
  14000. {
  14001. name: "Lesser Macro",
  14002. height: math.unit(60, "feet")
  14003. },
  14004. {
  14005. name: "Greater Macro",
  14006. height: math.unit(120, "feet")
  14007. },
  14008. ]
  14009. ))
  14010. characterMakers.push(() => makeCharacter(
  14011. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14012. {
  14013. front: {
  14014. height: math.unit(6, "feet"),
  14015. weight: math.unit(100, "lb"),
  14016. name: "Front",
  14017. image: {
  14018. source: "./media/characters/aevsivs/front.svg",
  14019. extra: 1,
  14020. bottom: 0.03
  14021. }
  14022. },
  14023. back: {
  14024. height: math.unit(6, "feet"),
  14025. weight: math.unit(100, "lb"),
  14026. name: "Back",
  14027. image: {
  14028. source: "./media/characters/aevsivs/back.svg"
  14029. }
  14030. },
  14031. },
  14032. [
  14033. {
  14034. name: "Micro",
  14035. height: math.unit(2, "inches"),
  14036. default: true
  14037. },
  14038. {
  14039. name: "Normal",
  14040. height: math.unit(5, "feet")
  14041. },
  14042. ]
  14043. ))
  14044. characterMakers.push(() => makeCharacter(
  14045. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14046. {
  14047. front: {
  14048. height: math.unit(5 + 7 / 12, "feet"),
  14049. weight: math.unit(159, "lb"),
  14050. name: "Front",
  14051. image: {
  14052. source: "./media/characters/hildegard/front.svg",
  14053. extra: 289 / 269,
  14054. bottom: 7.63 / 297.8
  14055. }
  14056. },
  14057. back: {
  14058. height: math.unit(5 + 7 / 12, "feet"),
  14059. weight: math.unit(159, "lb"),
  14060. name: "Back",
  14061. image: {
  14062. source: "./media/characters/hildegard/back.svg",
  14063. extra: 280 / 260,
  14064. bottom: 2.3 / 282
  14065. }
  14066. },
  14067. },
  14068. [
  14069. {
  14070. name: "Normal",
  14071. height: math.unit(5 + 7 / 12, "feet"),
  14072. default: true
  14073. },
  14074. ]
  14075. ))
  14076. characterMakers.push(() => makeCharacter(
  14077. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14078. {
  14079. bernard: {
  14080. height: math.unit(2 + 7 / 12, "feet"),
  14081. weight: math.unit(66, "lb"),
  14082. name: "Bernard",
  14083. rename: true,
  14084. image: {
  14085. source: "./media/characters/bernard-wilder/bernard.svg",
  14086. extra: 192 / 128,
  14087. bottom: 0.05
  14088. }
  14089. },
  14090. wilder: {
  14091. height: math.unit(5 + 8 / 12, "feet"),
  14092. weight: math.unit(143, "lb"),
  14093. name: "Wilder",
  14094. rename: true,
  14095. image: {
  14096. source: "./media/characters/bernard-wilder/wilder.svg",
  14097. extra: 361 / 312,
  14098. bottom: 0.02
  14099. }
  14100. },
  14101. },
  14102. [
  14103. {
  14104. name: "Normal",
  14105. height: math.unit(2 + 7 / 12, "feet"),
  14106. default: true
  14107. },
  14108. ]
  14109. ))
  14110. characterMakers.push(() => makeCharacter(
  14111. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14112. {
  14113. anthro: {
  14114. height: math.unit(6 + 1 / 12, "feet"),
  14115. weight: math.unit(155, "lb"),
  14116. name: "Anthro",
  14117. image: {
  14118. source: "./media/characters/hearth/anthro.svg",
  14119. extra: 260 / 250,
  14120. bottom: 0.02
  14121. }
  14122. },
  14123. feral: {
  14124. height: math.unit(3.78, "feet"),
  14125. weight: math.unit(35, "kg"),
  14126. name: "Feral",
  14127. image: {
  14128. source: "./media/characters/hearth/feral.svg",
  14129. extra: 153 / 135,
  14130. bottom: 0.03
  14131. }
  14132. },
  14133. },
  14134. [
  14135. {
  14136. name: "Normal",
  14137. height: math.unit(6 + 1 / 12, "feet"),
  14138. default: true
  14139. },
  14140. ]
  14141. ))
  14142. characterMakers.push(() => makeCharacter(
  14143. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14144. {
  14145. front: {
  14146. height: math.unit(6, "feet"),
  14147. weight: math.unit(182, "lb"),
  14148. name: "Front",
  14149. image: {
  14150. source: "./media/characters/ingrid/front.svg",
  14151. extra: 294 / 268,
  14152. bottom: 0.027
  14153. }
  14154. },
  14155. },
  14156. [
  14157. {
  14158. name: "Normal",
  14159. height: math.unit(6, "feet"),
  14160. default: true
  14161. },
  14162. ]
  14163. ))
  14164. characterMakers.push(() => makeCharacter(
  14165. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14166. {
  14167. eevee: {
  14168. height: math.unit(2 + 10 / 12, "feet"),
  14169. weight: math.unit(86, "lb"),
  14170. name: "Malgam",
  14171. image: {
  14172. source: "./media/characters/malgam/eevee.svg",
  14173. extra: 218 / 180,
  14174. bottom: 0.2
  14175. }
  14176. },
  14177. sylveon: {
  14178. height: math.unit(4, "feet"),
  14179. weight: math.unit(101, "lb"),
  14180. name: "Future Malgam",
  14181. rename: true,
  14182. image: {
  14183. source: "./media/characters/malgam/sylveon.svg",
  14184. extra: 371 / 325,
  14185. bottom: 0.015
  14186. }
  14187. },
  14188. gigantamax: {
  14189. height: math.unit(50, "feet"),
  14190. name: "Gigantamax Malgam",
  14191. rename: true,
  14192. image: {
  14193. source: "./media/characters/malgam/gigantamax.svg"
  14194. }
  14195. },
  14196. },
  14197. [
  14198. {
  14199. name: "Normal",
  14200. height: math.unit(2 + 10 / 12, "feet"),
  14201. default: true
  14202. },
  14203. ]
  14204. ))
  14205. characterMakers.push(() => makeCharacter(
  14206. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14207. {
  14208. front: {
  14209. height: math.unit(5 + 11 / 12, "feet"),
  14210. weight: math.unit(188, "lb"),
  14211. name: "Front",
  14212. image: {
  14213. source: "./media/characters/fleur/front.svg",
  14214. extra: 309 / 283,
  14215. bottom: 0.007
  14216. }
  14217. },
  14218. },
  14219. [
  14220. {
  14221. name: "Normal",
  14222. height: math.unit(5 + 11 / 12, "feet"),
  14223. default: true
  14224. },
  14225. ]
  14226. ))
  14227. characterMakers.push(() => makeCharacter(
  14228. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14229. {
  14230. front: {
  14231. height: math.unit(5 + 4 / 12, "feet"),
  14232. weight: math.unit(122, "lb"),
  14233. name: "Front",
  14234. image: {
  14235. source: "./media/characters/jude/front.svg",
  14236. extra: 288 / 273,
  14237. bottom: 0.03
  14238. }
  14239. },
  14240. },
  14241. [
  14242. {
  14243. name: "Normal",
  14244. height: math.unit(5 + 4 / 12, "feet"),
  14245. default: true
  14246. },
  14247. ]
  14248. ))
  14249. characterMakers.push(() => makeCharacter(
  14250. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14251. {
  14252. front: {
  14253. height: math.unit(5 + 11 / 12, "feet"),
  14254. weight: math.unit(190, "lb"),
  14255. name: "Front",
  14256. image: {
  14257. source: "./media/characters/seara/front.svg",
  14258. extra: 1,
  14259. bottom: 0.05
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(5 + 11 / 12, "feet"),
  14267. default: true
  14268. },
  14269. ]
  14270. ))
  14271. characterMakers.push(() => makeCharacter(
  14272. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14273. {
  14274. front: {
  14275. height: math.unit(16 + 5 / 12, "feet"),
  14276. weight: math.unit(524, "lb"),
  14277. name: "Front",
  14278. image: {
  14279. source: "./media/characters/caspian/front.svg",
  14280. extra: 1,
  14281. bottom: 0.04
  14282. }
  14283. },
  14284. },
  14285. [
  14286. {
  14287. name: "Normal",
  14288. height: math.unit(16 + 5 / 12, "feet"),
  14289. default: true
  14290. },
  14291. ]
  14292. ))
  14293. characterMakers.push(() => makeCharacter(
  14294. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14295. {
  14296. front: {
  14297. height: math.unit(5 + 7 / 12, "feet"),
  14298. weight: math.unit(170, "lb"),
  14299. name: "Front",
  14300. image: {
  14301. source: "./media/characters/mika/front.svg",
  14302. extra: 1,
  14303. bottom: 0.016
  14304. }
  14305. },
  14306. },
  14307. [
  14308. {
  14309. name: "Normal",
  14310. height: math.unit(5 + 7 / 12, "feet"),
  14311. default: true
  14312. },
  14313. ]
  14314. ))
  14315. characterMakers.push(() => makeCharacter(
  14316. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14317. {
  14318. front: {
  14319. height: math.unit(6 + 2 / 12, "feet"),
  14320. weight: math.unit(268, "lb"),
  14321. name: "Front",
  14322. image: {
  14323. source: "./media/characters/sol/front.svg",
  14324. extra: 247 / 231,
  14325. bottom: 0.05
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Normal",
  14332. height: math.unit(6 + 2 / 12, "feet"),
  14333. default: true
  14334. },
  14335. ]
  14336. ))
  14337. characterMakers.push(() => makeCharacter(
  14338. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14339. {
  14340. buizel: {
  14341. height: math.unit(2 + 5 / 12, "feet"),
  14342. weight: math.unit(87, "lb"),
  14343. name: "Buizel",
  14344. image: {
  14345. source: "./media/characters/umiko/buizel.svg",
  14346. extra: 172 / 157,
  14347. bottom: 0.01
  14348. }
  14349. },
  14350. floatzel: {
  14351. height: math.unit(5 + 9 / 12, "feet"),
  14352. weight: math.unit(250, "lb"),
  14353. name: "Floatzel",
  14354. image: {
  14355. source: "./media/characters/umiko/floatzel.svg",
  14356. extra: 262 / 248
  14357. }
  14358. },
  14359. },
  14360. [
  14361. {
  14362. name: "Normal",
  14363. height: math.unit(2 + 5 / 12, "feet"),
  14364. default: true
  14365. },
  14366. ]
  14367. ))
  14368. characterMakers.push(() => makeCharacter(
  14369. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14370. {
  14371. front: {
  14372. height: math.unit(6 + 2 / 12, "feet"),
  14373. weight: math.unit(146, "lb"),
  14374. name: "Front",
  14375. image: {
  14376. source: "./media/characters/iliac/front.svg",
  14377. extra: 389 / 365,
  14378. bottom: 0.035
  14379. }
  14380. },
  14381. },
  14382. [
  14383. {
  14384. name: "Normal",
  14385. height: math.unit(6 + 2 / 12, "feet"),
  14386. default: true
  14387. },
  14388. ]
  14389. ))
  14390. characterMakers.push(() => makeCharacter(
  14391. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14392. {
  14393. front: {
  14394. height: math.unit(6, "feet"),
  14395. weight: math.unit(170, "lb"),
  14396. name: "Front",
  14397. image: {
  14398. source: "./media/characters/topaz/front.svg",
  14399. extra: 317 / 303,
  14400. bottom: 0.055
  14401. }
  14402. },
  14403. },
  14404. [
  14405. {
  14406. name: "Normal",
  14407. height: math.unit(6, "feet"),
  14408. default: true
  14409. },
  14410. ]
  14411. ))
  14412. characterMakers.push(() => makeCharacter(
  14413. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14414. {
  14415. front: {
  14416. height: math.unit(5 + 11 / 12, "feet"),
  14417. weight: math.unit(144, "lb"),
  14418. name: "Front",
  14419. image: {
  14420. source: "./media/characters/gabriel/front.svg",
  14421. extra: 285 / 262,
  14422. bottom: 0.004
  14423. }
  14424. },
  14425. },
  14426. [
  14427. {
  14428. name: "Normal",
  14429. height: math.unit(5 + 11 / 12, "feet"),
  14430. default: true
  14431. },
  14432. ]
  14433. ))
  14434. characterMakers.push(() => makeCharacter(
  14435. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14436. {
  14437. side: {
  14438. height: math.unit(6 + 5 / 12, "feet"),
  14439. weight: math.unit(300, "lb"),
  14440. name: "Side",
  14441. image: {
  14442. source: "./media/characters/tempest-suicune/side.svg",
  14443. extra: 195 / 154,
  14444. bottom: 0.04
  14445. }
  14446. },
  14447. },
  14448. [
  14449. {
  14450. name: "Normal",
  14451. height: math.unit(6 + 5 / 12, "feet"),
  14452. default: true
  14453. },
  14454. ]
  14455. ))
  14456. characterMakers.push(() => makeCharacter(
  14457. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14458. {
  14459. front: {
  14460. height: math.unit(7 + 2 / 12, "feet"),
  14461. weight: math.unit(322, "lb"),
  14462. name: "Front",
  14463. image: {
  14464. source: "./media/characters/vulcan/front.svg",
  14465. extra: 154 / 147,
  14466. bottom: 0.04
  14467. }
  14468. },
  14469. },
  14470. [
  14471. {
  14472. name: "Normal",
  14473. height: math.unit(7 + 2 / 12, "feet"),
  14474. default: true
  14475. },
  14476. ]
  14477. ))
  14478. characterMakers.push(() => makeCharacter(
  14479. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14480. {
  14481. front: {
  14482. height: math.unit(5 + 10 / 12, "feet"),
  14483. weight: math.unit(264, "lb"),
  14484. name: "Front",
  14485. image: {
  14486. source: "./media/characters/gault/front.svg",
  14487. extra: 161 / 140,
  14488. bottom: 0.028
  14489. }
  14490. },
  14491. },
  14492. [
  14493. {
  14494. name: "Normal",
  14495. height: math.unit(5 + 10 / 12, "feet"),
  14496. default: true
  14497. },
  14498. ]
  14499. ))
  14500. characterMakers.push(() => makeCharacter(
  14501. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14502. {
  14503. front: {
  14504. height: math.unit(6, "feet"),
  14505. weight: math.unit(150, "lb"),
  14506. name: "Front",
  14507. image: {
  14508. source: "./media/characters/shard/front.svg",
  14509. extra: 273 / 238,
  14510. bottom: 0.02
  14511. }
  14512. },
  14513. },
  14514. [
  14515. {
  14516. name: "Normal",
  14517. height: math.unit(3 + 6 / 12, "feet"),
  14518. default: true
  14519. },
  14520. ]
  14521. ))
  14522. characterMakers.push(() => makeCharacter(
  14523. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14524. {
  14525. front: {
  14526. height: math.unit(5 + 11 / 12, "feet"),
  14527. weight: math.unit(146, "lb"),
  14528. name: "Front",
  14529. image: {
  14530. source: "./media/characters/ashe/front.svg",
  14531. extra: 400 / 373,
  14532. bottom: 0.01
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Normal",
  14539. height: math.unit(5 + 11 / 12, "feet"),
  14540. default: true
  14541. },
  14542. ]
  14543. ))
  14544. characterMakers.push(() => makeCharacter(
  14545. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14546. {
  14547. front: {
  14548. height: math.unit(5 + 5 / 12, "feet"),
  14549. weight: math.unit(135, "lb"),
  14550. name: "Front",
  14551. image: {
  14552. source: "./media/characters/beatrix/front.svg",
  14553. extra: 392 / 379,
  14554. bottom: 0.01
  14555. }
  14556. },
  14557. },
  14558. [
  14559. {
  14560. name: "Normal",
  14561. height: math.unit(6, "feet"),
  14562. default: true
  14563. },
  14564. ]
  14565. ))
  14566. characterMakers.push(() => makeCharacter(
  14567. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14568. {
  14569. front: {
  14570. height: math.unit(6, "feet"),
  14571. weight: math.unit(150, "lb"),
  14572. name: "Front",
  14573. image: {
  14574. source: "./media/characters/ignatius/front.svg",
  14575. extra: 245 / 222,
  14576. bottom: 0.01
  14577. }
  14578. },
  14579. },
  14580. [
  14581. {
  14582. name: "Normal",
  14583. height: math.unit(5 + 5 / 12, "feet"),
  14584. default: true
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(6 + 2 / 12, "feet"),
  14593. weight: math.unit(138, "lb"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/mei-li/front.svg",
  14597. extra: 237 / 229,
  14598. bottom: 0.03
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Normal",
  14605. height: math.unit(6 + 2 / 12, "feet"),
  14606. default: true
  14607. },
  14608. ]
  14609. ))
  14610. characterMakers.push(() => makeCharacter(
  14611. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14612. {
  14613. front: {
  14614. height: math.unit(2 + 4 / 12, "feet"),
  14615. weight: math.unit(62, "lb"),
  14616. name: "Front",
  14617. image: {
  14618. source: "./media/characters/puru/front.svg",
  14619. extra: 206 / 149,
  14620. bottom: 0.06
  14621. }
  14622. },
  14623. },
  14624. [
  14625. {
  14626. name: "Normal",
  14627. height: math.unit(2 + 4 / 12, "feet"),
  14628. default: true
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14634. {
  14635. taur: {
  14636. height: math.unit(11, "feet"),
  14637. weight: math.unit(500, "lb"),
  14638. name: "Taur",
  14639. image: {
  14640. source: "./media/characters/kee/taur.svg",
  14641. extra: 1,
  14642. bottom: 0.04
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Normal",
  14649. height: math.unit(11, "feet"),
  14650. default: true
  14651. },
  14652. ]
  14653. ))
  14654. characterMakers.push(() => makeCharacter(
  14655. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14656. {
  14657. anthro: {
  14658. height: math.unit(7, "feet"),
  14659. weight: math.unit(190, "lb"),
  14660. name: "Anthro",
  14661. image: {
  14662. source: "./media/characters/cobalt-dracha/anthro.svg",
  14663. extra: 231 / 225,
  14664. bottom: 0.04
  14665. }
  14666. },
  14667. feral: {
  14668. height: math.unit(9 + 7 / 12, "feet"),
  14669. weight: math.unit(294, "lb"),
  14670. name: "Feral",
  14671. image: {
  14672. source: "./media/characters/cobalt-dracha/feral.svg",
  14673. extra: 692 / 633,
  14674. bottom: 0.05
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "Normal",
  14681. height: math.unit(7, "feet"),
  14682. default: true
  14683. },
  14684. ]
  14685. ))
  14686. characterMakers.push(() => makeCharacter(
  14687. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14688. {
  14689. fallen: {
  14690. height: math.unit(11 + 8 / 12, "feet"),
  14691. weight: math.unit(485, "lb"),
  14692. name: "Java (Fallen)",
  14693. rename: true,
  14694. image: {
  14695. source: "./media/characters/java/fallen.svg",
  14696. extra: 226 / 208,
  14697. bottom: 0.005
  14698. }
  14699. },
  14700. godkin: {
  14701. height: math.unit(10 + 6 / 12, "feet"),
  14702. weight: math.unit(328, "lb"),
  14703. name: "Java (Godkin)",
  14704. rename: true,
  14705. image: {
  14706. source: "./media/characters/java/godkin.svg",
  14707. extra: 270 / 262,
  14708. bottom: 0.02
  14709. }
  14710. },
  14711. },
  14712. [
  14713. {
  14714. name: "Normal",
  14715. height: math.unit(11 + 8 / 12, "feet"),
  14716. default: true
  14717. },
  14718. ]
  14719. ))
  14720. characterMakers.push(() => makeCharacter(
  14721. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14722. {
  14723. front: {
  14724. height: math.unit(7 + 8 / 12, "feet"),
  14725. weight: math.unit(320, "lb"),
  14726. name: "Front",
  14727. image: {
  14728. source: "./media/characters/skoll/front.svg",
  14729. extra: 232 / 220,
  14730. bottom: 0.02
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Normal",
  14737. height: math.unit(7 + 8 / 12, "feet"),
  14738. default: true
  14739. },
  14740. ]
  14741. ))
  14742. characterMakers.push(() => makeCharacter(
  14743. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14744. {
  14745. front: {
  14746. height: math.unit(5 + 9 / 12, "feet"),
  14747. weight: math.unit(170, "lb"),
  14748. name: "Front",
  14749. image: {
  14750. source: "./media/characters/purna/front.svg",
  14751. extra: 239 / 229,
  14752. bottom: 0.01
  14753. }
  14754. },
  14755. },
  14756. [
  14757. {
  14758. name: "Normal",
  14759. height: math.unit(5 + 9 / 12, "feet"),
  14760. default: true
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14766. {
  14767. front: {
  14768. height: math.unit(5 + 9 / 12, "feet"),
  14769. weight: math.unit(142, "lb"),
  14770. name: "Front",
  14771. image: {
  14772. source: "./media/characters/kuva/front.svg",
  14773. extra: 281 / 271,
  14774. bottom: 0.006
  14775. }
  14776. },
  14777. },
  14778. [
  14779. {
  14780. name: "Normal",
  14781. height: math.unit(5 + 9 / 12, "feet"),
  14782. default: true
  14783. },
  14784. ]
  14785. ))
  14786. characterMakers.push(() => makeCharacter(
  14787. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14788. {
  14789. anthro: {
  14790. height: math.unit(9 + 2 / 12, "feet"),
  14791. weight: math.unit(270, "lb"),
  14792. name: "Anthro",
  14793. image: {
  14794. source: "./media/characters/embra/anthro.svg",
  14795. extra: 200 / 187,
  14796. bottom: 0.02
  14797. }
  14798. },
  14799. feral: {
  14800. height: math.unit(18 + 8 / 12, "feet"),
  14801. weight: math.unit(576, "lb"),
  14802. name: "Feral",
  14803. image: {
  14804. source: "./media/characters/embra/feral.svg",
  14805. extra: 152 / 137,
  14806. bottom: 0.037
  14807. }
  14808. },
  14809. },
  14810. [
  14811. {
  14812. name: "Normal",
  14813. height: math.unit(9 + 2 / 12, "feet"),
  14814. default: true
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14820. {
  14821. anthro: {
  14822. height: math.unit(10 + 9 / 12, "feet"),
  14823. weight: math.unit(224, "lb"),
  14824. name: "Anthro",
  14825. image: {
  14826. source: "./media/characters/grottos/anthro.svg",
  14827. extra: 350 / 332,
  14828. bottom: 0.045
  14829. }
  14830. },
  14831. feral: {
  14832. height: math.unit(20 + 7 / 12, "feet"),
  14833. weight: math.unit(629, "lb"),
  14834. name: "Feral",
  14835. image: {
  14836. source: "./media/characters/grottos/feral.svg",
  14837. extra: 207 / 190,
  14838. bottom: 0.05
  14839. }
  14840. },
  14841. },
  14842. [
  14843. {
  14844. name: "Normal",
  14845. height: math.unit(10 + 9 / 12, "feet"),
  14846. default: true
  14847. },
  14848. ]
  14849. ))
  14850. characterMakers.push(() => makeCharacter(
  14851. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14852. {
  14853. anthro: {
  14854. height: math.unit(9 + 6 / 12, "feet"),
  14855. weight: math.unit(298, "lb"),
  14856. name: "Anthro",
  14857. image: {
  14858. source: "./media/characters/frifna/anthro.svg",
  14859. extra: 282 / 269,
  14860. bottom: 0.015
  14861. }
  14862. },
  14863. feral: {
  14864. height: math.unit(16 + 2 / 12, "feet"),
  14865. weight: math.unit(624, "lb"),
  14866. name: "Feral",
  14867. image: {
  14868. source: "./media/characters/frifna/feral.svg"
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Normal",
  14875. height: math.unit(9 + 6 / 12, "feet"),
  14876. default: true
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14882. {
  14883. front: {
  14884. height: math.unit(6 + 2 / 12, "feet"),
  14885. weight: math.unit(168, "lb"),
  14886. name: "Front",
  14887. image: {
  14888. source: "./media/characters/elise/front.svg",
  14889. extra: 276 / 271
  14890. }
  14891. },
  14892. },
  14893. [
  14894. {
  14895. name: "Normal",
  14896. height: math.unit(6 + 2 / 12, "feet"),
  14897. default: true
  14898. },
  14899. ]
  14900. ))
  14901. characterMakers.push(() => makeCharacter(
  14902. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14903. {
  14904. front: {
  14905. height: math.unit(5 + 10 / 12, "feet"),
  14906. weight: math.unit(210, "lb"),
  14907. name: "Front",
  14908. image: {
  14909. source: "./media/characters/glade/front.svg",
  14910. extra: 258 / 247,
  14911. bottom: 0.008
  14912. }
  14913. },
  14914. },
  14915. [
  14916. {
  14917. name: "Normal",
  14918. height: math.unit(5 + 10 / 12, "feet"),
  14919. default: true
  14920. },
  14921. ]
  14922. ))
  14923. characterMakers.push(() => makeCharacter(
  14924. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14925. {
  14926. front: {
  14927. height: math.unit(5 + 10 / 12, "feet"),
  14928. weight: math.unit(129, "lb"),
  14929. name: "Front",
  14930. image: {
  14931. source: "./media/characters/rina/front.svg",
  14932. extra: 266 / 255,
  14933. bottom: 0.005
  14934. }
  14935. },
  14936. },
  14937. [
  14938. {
  14939. name: "Normal",
  14940. height: math.unit(5 + 10 / 12, "feet"),
  14941. default: true
  14942. },
  14943. ]
  14944. ))
  14945. characterMakers.push(() => makeCharacter(
  14946. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14947. {
  14948. front: {
  14949. height: math.unit(6 + 1 / 12, "feet"),
  14950. weight: math.unit(192, "lb"),
  14951. name: "Front",
  14952. image: {
  14953. source: "./media/characters/veronica/front.svg",
  14954. extra: 319 / 309,
  14955. bottom: 0.005
  14956. }
  14957. },
  14958. },
  14959. [
  14960. {
  14961. name: "Normal",
  14962. height: math.unit(6 + 1 / 12, "feet"),
  14963. default: true
  14964. },
  14965. ]
  14966. ))
  14967. characterMakers.push(() => makeCharacter(
  14968. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14969. {
  14970. front: {
  14971. height: math.unit(9 + 3 / 12, "feet"),
  14972. weight: math.unit(1100, "lb"),
  14973. name: "Front",
  14974. image: {
  14975. source: "./media/characters/braxton/front.svg",
  14976. extra: 1057 / 984,
  14977. bottom: 0.05
  14978. }
  14979. },
  14980. },
  14981. [
  14982. {
  14983. name: "Normal",
  14984. height: math.unit(9 + 3 / 12, "feet")
  14985. },
  14986. {
  14987. name: "Giant",
  14988. height: math.unit(300, "feet"),
  14989. default: true
  14990. },
  14991. {
  14992. name: "Macro",
  14993. height: math.unit(700, "feet")
  14994. },
  14995. {
  14996. name: "Megamacro",
  14997. height: math.unit(6000, "feet")
  14998. },
  14999. ]
  15000. ))
  15001. characterMakers.push(() => makeCharacter(
  15002. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15003. {
  15004. front: {
  15005. height: math.unit(6 + 7 / 12, "feet"),
  15006. weight: math.unit(150, "lb"),
  15007. name: "Front",
  15008. image: {
  15009. source: "./media/characters/blue-feyonics/front.svg",
  15010. extra: 1403 / 1306,
  15011. bottom: 0.047
  15012. }
  15013. },
  15014. },
  15015. [
  15016. {
  15017. name: "Normal",
  15018. height: math.unit(6 + 7 / 12, "feet"),
  15019. default: true
  15020. },
  15021. ]
  15022. ))
  15023. characterMakers.push(() => makeCharacter(
  15024. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15025. {
  15026. front: {
  15027. height: math.unit(1.8, "meters"),
  15028. weight: math.unit(60, "kg"),
  15029. name: "Front",
  15030. image: {
  15031. source: "./media/characters/maxwell/front.svg",
  15032. extra: 2060 / 1873
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Micro",
  15039. height: math.unit(1, "mm")
  15040. },
  15041. {
  15042. name: "Normal",
  15043. height: math.unit(1.8, "meter"),
  15044. default: true
  15045. },
  15046. {
  15047. name: "Macro",
  15048. height: math.unit(30, "meters")
  15049. },
  15050. {
  15051. name: "Megamacro",
  15052. height: math.unit(10, "km")
  15053. },
  15054. ]
  15055. ))
  15056. characterMakers.push(() => makeCharacter(
  15057. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15058. {
  15059. front: {
  15060. height: math.unit(6, "feet"),
  15061. weight: math.unit(150, "lb"),
  15062. name: "Front",
  15063. image: {
  15064. source: "./media/characters/jack/front.svg",
  15065. extra: 1754 / 1640,
  15066. bottom: 0.01
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(80000, "feet"),
  15074. default: true
  15075. },
  15076. {
  15077. name: "Max size",
  15078. height: math.unit(10, "lightyears")
  15079. },
  15080. ]
  15081. ))
  15082. characterMakers.push(() => makeCharacter(
  15083. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15084. {
  15085. upright: {
  15086. height: math.unit(7, "feet"),
  15087. weight: math.unit(170, "lb"),
  15088. name: "Upright",
  15089. image: {
  15090. source: "./media/characters/cafat/upright.svg",
  15091. bottom: 0.01
  15092. }
  15093. },
  15094. uprightFull: {
  15095. height: math.unit(7, "feet"),
  15096. weight: math.unit(170, "lb"),
  15097. name: "Upright (Full)",
  15098. image: {
  15099. source: "./media/characters/cafat/upright-full.svg",
  15100. bottom: 0.01
  15101. }
  15102. },
  15103. side: {
  15104. height: math.unit(5, "feet"),
  15105. weight: math.unit(150, "lb"),
  15106. name: "Side",
  15107. image: {
  15108. source: "./media/characters/cafat/side.svg"
  15109. }
  15110. },
  15111. },
  15112. [
  15113. {
  15114. name: "Small",
  15115. height: math.unit(7, "feet"),
  15116. default: true
  15117. },
  15118. {
  15119. name: "Large",
  15120. height: math.unit(15.5, "feet")
  15121. },
  15122. ]
  15123. ))
  15124. characterMakers.push(() => makeCharacter(
  15125. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15126. {
  15127. front: {
  15128. height: math.unit(6, "feet"),
  15129. weight: math.unit(150, "lb"),
  15130. name: "Front",
  15131. image: {
  15132. source: "./media/characters/verin-raharra/front.svg",
  15133. extra: 5019 / 4835,
  15134. bottom: 0.023
  15135. }
  15136. },
  15137. },
  15138. [
  15139. {
  15140. name: "Normal",
  15141. height: math.unit(7 + 5 / 12, "feet"),
  15142. default: true
  15143. },
  15144. {
  15145. name: "Upsized",
  15146. height: math.unit(20, "feet")
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15152. {
  15153. front: {
  15154. height: math.unit(7, "feet"),
  15155. weight: math.unit(230, "lb"),
  15156. name: "Front",
  15157. image: {
  15158. source: "./media/characters/nakata/front.svg",
  15159. extra: 1.005,
  15160. bottom: 0.01
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Normal",
  15167. height: math.unit(7, "feet"),
  15168. default: true
  15169. },
  15170. {
  15171. name: "Big",
  15172. height: math.unit(14, "feet")
  15173. },
  15174. {
  15175. name: "Macro",
  15176. height: math.unit(400, "feet")
  15177. },
  15178. ]
  15179. ))
  15180. characterMakers.push(() => makeCharacter(
  15181. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15182. {
  15183. front: {
  15184. height: math.unit(4.91, "feet"),
  15185. weight: math.unit(100, "lb"),
  15186. name: "Front",
  15187. image: {
  15188. source: "./media/characters/lily/front.svg",
  15189. extra: 1585 / 1415,
  15190. bottom: 0.02
  15191. }
  15192. },
  15193. },
  15194. [
  15195. {
  15196. name: "Normal",
  15197. height: math.unit(4.91, "feet"),
  15198. default: true
  15199. },
  15200. ]
  15201. ))
  15202. characterMakers.push(() => makeCharacter(
  15203. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15204. {
  15205. laying: {
  15206. height: math.unit(4 + 4 / 12, "feet"),
  15207. weight: math.unit(600, "lb"),
  15208. name: "Laying",
  15209. image: {
  15210. source: "./media/characters/sheila/laying.svg",
  15211. extra: 1333 / 1265,
  15212. bottom: 0.16
  15213. }
  15214. },
  15215. },
  15216. [
  15217. {
  15218. name: "Normal",
  15219. height: math.unit(4 + 4 / 12, "feet"),
  15220. default: true
  15221. },
  15222. ]
  15223. ))
  15224. characterMakers.push(() => makeCharacter(
  15225. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15226. {
  15227. front: {
  15228. height: math.unit(6, "feet"),
  15229. weight: math.unit(190, "lb"),
  15230. name: "Front",
  15231. image: {
  15232. source: "./media/characters/sax/front.svg",
  15233. extra: 1187 / 973,
  15234. bottom: 0.042
  15235. }
  15236. },
  15237. },
  15238. [
  15239. {
  15240. name: "Micro",
  15241. height: math.unit(4, "inches"),
  15242. default: true
  15243. },
  15244. ]
  15245. ))
  15246. characterMakers.push(() => makeCharacter(
  15247. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15248. {
  15249. front: {
  15250. height: math.unit(6, "feet"),
  15251. weight: math.unit(150, "lb"),
  15252. name: "Front",
  15253. image: {
  15254. source: "./media/characters/pandora/front.svg",
  15255. extra: 2720 / 2556,
  15256. bottom: 0.015
  15257. }
  15258. },
  15259. back: {
  15260. height: math.unit(6, "feet"),
  15261. weight: math.unit(150, "lb"),
  15262. name: "Back",
  15263. image: {
  15264. source: "./media/characters/pandora/back.svg",
  15265. extra: 2720 / 2556,
  15266. bottom: 0.01
  15267. }
  15268. },
  15269. beans: {
  15270. height: math.unit(6 / 8, "feet"),
  15271. name: "Beans",
  15272. image: {
  15273. source: "./media/characters/pandora/beans.svg"
  15274. }
  15275. },
  15276. skirt: {
  15277. height: math.unit(6, "feet"),
  15278. weight: math.unit(150, "lb"),
  15279. name: "Skirt",
  15280. image: {
  15281. source: "./media/characters/pandora/skirt.svg",
  15282. extra: 1622 / 1525,
  15283. bottom: 0.015
  15284. }
  15285. },
  15286. hoodie: {
  15287. height: math.unit(6, "feet"),
  15288. weight: math.unit(150, "lb"),
  15289. name: "Hoodie",
  15290. image: {
  15291. source: "./media/characters/pandora/hoodie.svg",
  15292. extra: 1622 / 1525,
  15293. bottom: 0.015
  15294. }
  15295. },
  15296. casual: {
  15297. height: math.unit(6, "feet"),
  15298. weight: math.unit(150, "lb"),
  15299. name: "Casual",
  15300. image: {
  15301. source: "./media/characters/pandora/casual.svg",
  15302. extra: 1622 / 1525,
  15303. bottom: 0.015
  15304. }
  15305. },
  15306. },
  15307. [
  15308. {
  15309. name: "Normal",
  15310. height: math.unit(6, "feet")
  15311. },
  15312. {
  15313. name: "Big Steppy",
  15314. height: math.unit(1, "km"),
  15315. default: true
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15321. {
  15322. side: {
  15323. height: math.unit(10, "feet"),
  15324. weight: math.unit(800, "kg"),
  15325. name: "Side",
  15326. image: {
  15327. source: "./media/characters/venio-darcony/side.svg",
  15328. extra: 1373 / 1003,
  15329. bottom: 0.037
  15330. }
  15331. },
  15332. front: {
  15333. height: math.unit(19, "feet"),
  15334. weight: math.unit(800, "kg"),
  15335. name: "Front",
  15336. image: {
  15337. source: "./media/characters/venio-darcony/front.svg"
  15338. }
  15339. },
  15340. back: {
  15341. height: math.unit(19, "feet"),
  15342. weight: math.unit(800, "kg"),
  15343. name: "Back",
  15344. image: {
  15345. source: "./media/characters/venio-darcony/back.svg"
  15346. }
  15347. },
  15348. sideNsfw: {
  15349. height: math.unit(10, "feet"),
  15350. weight: math.unit(800, "kg"),
  15351. name: "Side (NSFW)",
  15352. image: {
  15353. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15354. extra: 1373 / 1003,
  15355. bottom: 0.037
  15356. }
  15357. },
  15358. frontNsfw: {
  15359. height: math.unit(19, "feet"),
  15360. weight: math.unit(800, "kg"),
  15361. name: "Front (NSFW)",
  15362. image: {
  15363. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15364. }
  15365. },
  15366. backNsfw: {
  15367. height: math.unit(19, "feet"),
  15368. weight: math.unit(800, "kg"),
  15369. name: "Back (NSFW)",
  15370. image: {
  15371. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15372. }
  15373. },
  15374. sideArmored: {
  15375. height: math.unit(10, "feet"),
  15376. weight: math.unit(800, "kg"),
  15377. name: "Side (Armored)",
  15378. image: {
  15379. source: "./media/characters/venio-darcony/side-armored.svg",
  15380. extra: 1373 / 1003,
  15381. bottom: 0.037
  15382. }
  15383. },
  15384. frontArmored: {
  15385. height: math.unit(19, "feet"),
  15386. weight: math.unit(900, "kg"),
  15387. name: "Front (Armored)",
  15388. image: {
  15389. source: "./media/characters/venio-darcony/front-armored.svg"
  15390. }
  15391. },
  15392. backArmored: {
  15393. height: math.unit(19, "feet"),
  15394. weight: math.unit(900, "kg"),
  15395. name: "Back (Armored)",
  15396. image: {
  15397. source: "./media/characters/venio-darcony/back-armored.svg"
  15398. }
  15399. },
  15400. sword: {
  15401. height: math.unit(10, "feet"),
  15402. weight: math.unit(50, "lb"),
  15403. name: "Sword",
  15404. image: {
  15405. source: "./media/characters/venio-darcony/sword.svg"
  15406. }
  15407. },
  15408. },
  15409. [
  15410. {
  15411. name: "Normal",
  15412. height: math.unit(10, "feet")
  15413. },
  15414. {
  15415. name: "Macro",
  15416. height: math.unit(130, "feet"),
  15417. default: true
  15418. },
  15419. {
  15420. name: "Macro+",
  15421. height: math.unit(240, "feet")
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15427. {
  15428. front: {
  15429. height: math.unit(6, "feet"),
  15430. weight: math.unit(150, "lb"),
  15431. name: "Front",
  15432. image: {
  15433. source: "./media/characters/veski/front.svg",
  15434. extra: 1299 / 1225,
  15435. bottom: 0.04
  15436. }
  15437. },
  15438. back: {
  15439. height: math.unit(6, "feet"),
  15440. weight: math.unit(150, "lb"),
  15441. name: "Back",
  15442. image: {
  15443. source: "./media/characters/veski/back.svg",
  15444. extra: 1299 / 1225,
  15445. bottom: 0.008
  15446. }
  15447. },
  15448. maw: {
  15449. height: math.unit(1.5 * 1.21, "feet"),
  15450. name: "Maw",
  15451. image: {
  15452. source: "./media/characters/veski/maw.svg"
  15453. }
  15454. },
  15455. },
  15456. [
  15457. {
  15458. name: "Macro",
  15459. height: math.unit(2, "km"),
  15460. default: true
  15461. },
  15462. ]
  15463. ))
  15464. characterMakers.push(() => makeCharacter(
  15465. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15466. {
  15467. front: {
  15468. height: math.unit(5 + 7 / 12, "feet"),
  15469. name: "Front",
  15470. image: {
  15471. source: "./media/characters/isabelle/front.svg",
  15472. extra: 2130 / 1976,
  15473. bottom: 0.05
  15474. }
  15475. },
  15476. },
  15477. [
  15478. {
  15479. name: "Supermicro",
  15480. height: math.unit(10, "micrometers")
  15481. },
  15482. {
  15483. name: "Micro",
  15484. height: math.unit(1, "inch")
  15485. },
  15486. {
  15487. name: "Tiny",
  15488. height: math.unit(5, "inches")
  15489. },
  15490. {
  15491. name: "Standard",
  15492. height: math.unit(5 + 7 / 12, "inches")
  15493. },
  15494. {
  15495. name: "Macro",
  15496. height: math.unit(80, "meters"),
  15497. default: true
  15498. },
  15499. {
  15500. name: "Megamacro",
  15501. height: math.unit(250, "meters")
  15502. },
  15503. {
  15504. name: "Gigamacro",
  15505. height: math.unit(5, "km")
  15506. },
  15507. {
  15508. name: "Cosmic",
  15509. height: math.unit(2.5e6, "miles")
  15510. },
  15511. ]
  15512. ))
  15513. characterMakers.push(() => makeCharacter(
  15514. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15515. {
  15516. front: {
  15517. height: math.unit(6, "feet"),
  15518. weight: math.unit(150, "lb"),
  15519. name: "Front",
  15520. image: {
  15521. source: "./media/characters/hanzo/front.svg",
  15522. extra: 374 / 344,
  15523. bottom: 0.02
  15524. }
  15525. },
  15526. },
  15527. [
  15528. {
  15529. name: "Normal",
  15530. height: math.unit(8, "feet"),
  15531. default: true
  15532. },
  15533. ]
  15534. ))
  15535. characterMakers.push(() => makeCharacter(
  15536. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15537. {
  15538. front: {
  15539. height: math.unit(7, "feet"),
  15540. weight: math.unit(130, "lb"),
  15541. name: "Front",
  15542. image: {
  15543. source: "./media/characters/anna/front.svg",
  15544. extra: 169 / 145,
  15545. bottom: 0.06
  15546. }
  15547. },
  15548. full: {
  15549. height: math.unit(4.96, "feet"),
  15550. weight: math.unit(220, "lb"),
  15551. name: "Full",
  15552. image: {
  15553. source: "./media/characters/anna/full.svg",
  15554. extra: 138 / 114,
  15555. bottom: 0.15
  15556. }
  15557. },
  15558. tongue: {
  15559. height: math.unit(2.53, "feet"),
  15560. name: "Tongue",
  15561. image: {
  15562. source: "./media/characters/anna/tongue.svg"
  15563. }
  15564. },
  15565. },
  15566. [
  15567. {
  15568. name: "Normal",
  15569. height: math.unit(7, "feet"),
  15570. default: true
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(7, "feet"),
  15579. weight: math.unit(150, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/ian-corvid/front.svg",
  15583. extra: 150 / 142,
  15584. bottom: 0.02
  15585. }
  15586. },
  15587. back: {
  15588. height: math.unit(7, "feet"),
  15589. weight: math.unit(150, "lb"),
  15590. name: "Back",
  15591. image: {
  15592. source: "./media/characters/ian-corvid/back.svg",
  15593. extra: 150 / 143,
  15594. bottom: 0.01
  15595. }
  15596. },
  15597. stomping: {
  15598. height: math.unit(7, "feet"),
  15599. weight: math.unit(150, "lb"),
  15600. name: "Stomping",
  15601. image: {
  15602. source: "./media/characters/ian-corvid/stomping.svg",
  15603. extra: 76 / 72
  15604. }
  15605. },
  15606. sitting: {
  15607. height: math.unit(7 / 1.8, "feet"),
  15608. weight: math.unit(150, "lb"),
  15609. name: "Sitting",
  15610. image: {
  15611. source: "./media/characters/ian-corvid/sitting.svg",
  15612. extra: 1400 / 1269,
  15613. bottom: 0.15
  15614. }
  15615. },
  15616. },
  15617. [
  15618. {
  15619. name: "Tiny Microw",
  15620. height: math.unit(1, "inch")
  15621. },
  15622. {
  15623. name: "Microw",
  15624. height: math.unit(6, "inches")
  15625. },
  15626. {
  15627. name: "Crow",
  15628. height: math.unit(7 + 1 / 12, "feet"),
  15629. default: true
  15630. },
  15631. {
  15632. name: "Macrow",
  15633. height: math.unit(176, "feet")
  15634. },
  15635. ]
  15636. ))
  15637. characterMakers.push(() => makeCharacter(
  15638. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15639. {
  15640. front: {
  15641. height: math.unit(5 + 7 / 12, "feet"),
  15642. weight: math.unit(147, "lb"),
  15643. name: "Front",
  15644. image: {
  15645. source: "./media/characters/natalie-kellon/front.svg",
  15646. extra: 1214 / 1141,
  15647. bottom: 0.02
  15648. }
  15649. },
  15650. },
  15651. [
  15652. {
  15653. name: "Micro",
  15654. height: math.unit(1 / 16, "inch")
  15655. },
  15656. {
  15657. name: "Tiny",
  15658. height: math.unit(4, "inches")
  15659. },
  15660. {
  15661. name: "Normal",
  15662. height: math.unit(5 + 7 / 12, "feet"),
  15663. default: true
  15664. },
  15665. {
  15666. name: "Amazon",
  15667. height: math.unit(12, "feet")
  15668. },
  15669. {
  15670. name: "Giantess",
  15671. height: math.unit(160, "meters")
  15672. },
  15673. {
  15674. name: "Titaness",
  15675. height: math.unit(800, "meters")
  15676. },
  15677. ]
  15678. ))
  15679. characterMakers.push(() => makeCharacter(
  15680. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15681. {
  15682. front: {
  15683. height: math.unit(6, "feet"),
  15684. weight: math.unit(150, "lb"),
  15685. name: "Front",
  15686. image: {
  15687. source: "./media/characters/alluria/front.svg",
  15688. extra: 806 / 738,
  15689. bottom: 0.01
  15690. }
  15691. },
  15692. side: {
  15693. height: math.unit(6, "feet"),
  15694. weight: math.unit(150, "lb"),
  15695. name: "Side",
  15696. image: {
  15697. source: "./media/characters/alluria/side.svg",
  15698. extra: 800 / 750,
  15699. }
  15700. },
  15701. back: {
  15702. height: math.unit(6, "feet"),
  15703. weight: math.unit(150, "lb"),
  15704. name: "Back",
  15705. image: {
  15706. source: "./media/characters/alluria/back.svg",
  15707. extra: 806 / 738,
  15708. }
  15709. },
  15710. frontMaid: {
  15711. height: math.unit(6, "feet"),
  15712. weight: math.unit(150, "lb"),
  15713. name: "Front (Maid)",
  15714. image: {
  15715. source: "./media/characters/alluria/front-maid.svg",
  15716. extra: 806 / 738,
  15717. bottom: 0.01
  15718. }
  15719. },
  15720. sideMaid: {
  15721. height: math.unit(6, "feet"),
  15722. weight: math.unit(150, "lb"),
  15723. name: "Side (Maid)",
  15724. image: {
  15725. source: "./media/characters/alluria/side-maid.svg",
  15726. extra: 800 / 750,
  15727. bottom: 0.005
  15728. }
  15729. },
  15730. backMaid: {
  15731. height: math.unit(6, "feet"),
  15732. weight: math.unit(150, "lb"),
  15733. name: "Back (Maid)",
  15734. image: {
  15735. source: "./media/characters/alluria/back-maid.svg",
  15736. extra: 806 / 738,
  15737. }
  15738. },
  15739. },
  15740. [
  15741. {
  15742. name: "Micro",
  15743. height: math.unit(6, "inches"),
  15744. default: true
  15745. },
  15746. ]
  15747. ))
  15748. characterMakers.push(() => makeCharacter(
  15749. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15750. {
  15751. front: {
  15752. height: math.unit(6, "feet"),
  15753. weight: math.unit(150, "lb"),
  15754. name: "Front",
  15755. image: {
  15756. source: "./media/characters/kyle/front.svg",
  15757. extra: 1069 / 962,
  15758. bottom: 77.228 / 1727.45
  15759. }
  15760. },
  15761. },
  15762. [
  15763. {
  15764. name: "Macro",
  15765. height: math.unit(150, "feet"),
  15766. default: true
  15767. },
  15768. ]
  15769. ))
  15770. characterMakers.push(() => makeCharacter(
  15771. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15772. {
  15773. front: {
  15774. height: math.unit(6, "feet"),
  15775. weight: math.unit(300, "lb"),
  15776. name: "Front",
  15777. image: {
  15778. source: "./media/characters/duncan/front.svg",
  15779. extra: 1650 / 1482,
  15780. bottom: 0.05
  15781. }
  15782. },
  15783. },
  15784. [
  15785. {
  15786. name: "Macro",
  15787. height: math.unit(100, "feet"),
  15788. default: true
  15789. },
  15790. ]
  15791. ))
  15792. characterMakers.push(() => makeCharacter(
  15793. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15794. {
  15795. front: {
  15796. height: math.unit(5 + 4 / 12, "feet"),
  15797. weight: math.unit(220, "lb"),
  15798. name: "Front",
  15799. image: {
  15800. source: "./media/characters/memory/front.svg",
  15801. extra: 3641 / 3545,
  15802. bottom: 0.03
  15803. }
  15804. },
  15805. back: {
  15806. height: math.unit(5 + 4 / 12, "feet"),
  15807. weight: math.unit(220, "lb"),
  15808. name: "Back",
  15809. image: {
  15810. source: "./media/characters/memory/back.svg",
  15811. extra: 3641 / 3545,
  15812. bottom: 0.025
  15813. }
  15814. },
  15815. frontSkirt: {
  15816. height: math.unit(5 + 4 / 12, "feet"),
  15817. weight: math.unit(220, "lb"),
  15818. name: "Front (Skirt)",
  15819. image: {
  15820. source: "./media/characters/memory/front-skirt.svg",
  15821. extra: 3641 / 3545,
  15822. bottom: 0.03
  15823. }
  15824. },
  15825. frontDress: {
  15826. height: math.unit(5 + 4 / 12, "feet"),
  15827. weight: math.unit(220, "lb"),
  15828. name: "Front (Dress)",
  15829. image: {
  15830. source: "./media/characters/memory/front-dress.svg",
  15831. extra: 3641 / 3545,
  15832. bottom: 0.03
  15833. }
  15834. },
  15835. },
  15836. [
  15837. {
  15838. name: "Micro",
  15839. height: math.unit(6, "inches"),
  15840. default: true
  15841. },
  15842. {
  15843. name: "Normal",
  15844. height: math.unit(5 + 4 / 12, "feet")
  15845. },
  15846. ]
  15847. ))
  15848. characterMakers.push(() => makeCharacter(
  15849. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15850. {
  15851. front: {
  15852. height: math.unit(4 + 11 / 12, "feet"),
  15853. weight: math.unit(100, "lb"),
  15854. name: "Front",
  15855. image: {
  15856. source: "./media/characters/luno/front.svg",
  15857. extra: 1535 / 1487,
  15858. bottom: 0.03
  15859. }
  15860. },
  15861. },
  15862. [
  15863. {
  15864. name: "Micro",
  15865. height: math.unit(3, "inches")
  15866. },
  15867. {
  15868. name: "Normal",
  15869. height: math.unit(4 + 11 / 12, "feet"),
  15870. default: true
  15871. },
  15872. {
  15873. name: "Macro",
  15874. height: math.unit(300, "feet")
  15875. },
  15876. {
  15877. name: "Megamacro",
  15878. height: math.unit(700, "miles")
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15884. {
  15885. front: {
  15886. height: math.unit(6 + 2 / 12, "feet"),
  15887. weight: math.unit(170, "lb"),
  15888. name: "Front",
  15889. image: {
  15890. source: "./media/characters/jamesy/front.svg",
  15891. extra: 440 / 382,
  15892. bottom: 0.005
  15893. }
  15894. },
  15895. },
  15896. [
  15897. {
  15898. name: "Micro",
  15899. height: math.unit(3, "inches")
  15900. },
  15901. {
  15902. name: "Normal",
  15903. height: math.unit(6 + 2 / 12, "feet"),
  15904. default: true
  15905. },
  15906. {
  15907. name: "Macro",
  15908. height: math.unit(300, "feet")
  15909. },
  15910. {
  15911. name: "Megamacro",
  15912. height: math.unit(700, "miles")
  15913. },
  15914. ]
  15915. ))
  15916. characterMakers.push(() => makeCharacter(
  15917. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15918. {
  15919. front: {
  15920. height: math.unit(6, "feet"),
  15921. weight: math.unit(160, "lb"),
  15922. name: "Front",
  15923. image: {
  15924. source: "./media/characters/mark/front.svg",
  15925. extra: 3300 / 3100,
  15926. bottom: 136.42 / 3440.47
  15927. }
  15928. },
  15929. },
  15930. [
  15931. {
  15932. name: "Macro",
  15933. height: math.unit(120, "meters")
  15934. },
  15935. {
  15936. name: "Bigger Macro",
  15937. height: math.unit(350, "meters")
  15938. },
  15939. {
  15940. name: "Megamacro",
  15941. height: math.unit(8, "km"),
  15942. default: true
  15943. },
  15944. {
  15945. name: "Continental",
  15946. height: math.unit(4550, "km")
  15947. },
  15948. {
  15949. name: "Planetary",
  15950. height: math.unit(65000, "km")
  15951. },
  15952. ]
  15953. ))
  15954. characterMakers.push(() => makeCharacter(
  15955. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15956. {
  15957. front: {
  15958. height: math.unit(6, "feet"),
  15959. weight: math.unit(400, "lb"),
  15960. name: "Front",
  15961. image: {
  15962. source: "./media/characters/mac/front.svg",
  15963. extra: 1048 / 987.7,
  15964. bottom: 60 / 1107.6,
  15965. }
  15966. },
  15967. },
  15968. [
  15969. {
  15970. name: "Macro",
  15971. height: math.unit(500, "feet"),
  15972. default: true
  15973. },
  15974. ]
  15975. ))
  15976. characterMakers.push(() => makeCharacter(
  15977. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15978. {
  15979. front: {
  15980. height: math.unit(5 + 2 / 12, "feet"),
  15981. weight: math.unit(190, "lb"),
  15982. name: "Front",
  15983. image: {
  15984. source: "./media/characters/bari/front.svg",
  15985. extra: 3156 / 2880,
  15986. bottom: 0.03
  15987. }
  15988. },
  15989. back: {
  15990. height: math.unit(5 + 2 / 12, "feet"),
  15991. weight: math.unit(190, "lb"),
  15992. name: "Back",
  15993. image: {
  15994. source: "./media/characters/bari/back.svg",
  15995. extra: 3260 / 2834,
  15996. bottom: 0.025
  15997. }
  15998. },
  15999. frontPlush: {
  16000. height: math.unit(5 + 2 / 12, "feet"),
  16001. weight: math.unit(190, "lb"),
  16002. name: "Front (Plush)",
  16003. image: {
  16004. source: "./media/characters/bari/front-plush.svg",
  16005. extra: 1112 / 1061,
  16006. bottom: 0.002
  16007. }
  16008. },
  16009. },
  16010. [
  16011. {
  16012. name: "Micro",
  16013. height: math.unit(3, "inches")
  16014. },
  16015. {
  16016. name: "Normal",
  16017. height: math.unit(5 + 2 / 12, "feet"),
  16018. default: true
  16019. },
  16020. {
  16021. name: "Macro",
  16022. height: math.unit(20, "feet")
  16023. },
  16024. ]
  16025. ))
  16026. characterMakers.push(() => makeCharacter(
  16027. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16028. {
  16029. front: {
  16030. height: math.unit(6 + 1 / 12, "feet"),
  16031. weight: math.unit(275, "lb"),
  16032. name: "Front",
  16033. image: {
  16034. source: "./media/characters/hunter-misha-raven/front.svg"
  16035. }
  16036. },
  16037. },
  16038. [
  16039. {
  16040. name: "Mortal",
  16041. height: math.unit(6 + 1 / 12, "feet")
  16042. },
  16043. {
  16044. name: "Divine",
  16045. height: math.unit(1.12134e34, "parsecs"),
  16046. default: true
  16047. },
  16048. ]
  16049. ))
  16050. characterMakers.push(() => makeCharacter(
  16051. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16052. {
  16053. front: {
  16054. height: math.unit(6 + 3 / 12, "feet"),
  16055. weight: math.unit(220, "lb"),
  16056. name: "Front",
  16057. image: {
  16058. source: "./media/characters/max-calore/front.svg",
  16059. extra: 1700 / 1648,
  16060. bottom: 0.01
  16061. }
  16062. },
  16063. back: {
  16064. height: math.unit(6 + 3 / 12, "feet"),
  16065. weight: math.unit(220, "lb"),
  16066. name: "Back",
  16067. image: {
  16068. source: "./media/characters/max-calore/back.svg",
  16069. extra: 1700 / 1648,
  16070. bottom: 0.01
  16071. }
  16072. },
  16073. },
  16074. [
  16075. {
  16076. name: "Normal",
  16077. height: math.unit(6 + 3 / 12, "feet"),
  16078. default: true
  16079. },
  16080. ]
  16081. ))
  16082. characterMakers.push(() => makeCharacter(
  16083. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16084. {
  16085. side: {
  16086. height: math.unit(2 + 8 / 12, "feet"),
  16087. weight: math.unit(99, "lb"),
  16088. name: "Side",
  16089. image: {
  16090. source: "./media/characters/aspen/side.svg",
  16091. extra: 152 / 138,
  16092. bottom: 0.032
  16093. }
  16094. },
  16095. },
  16096. [
  16097. {
  16098. name: "Normal",
  16099. height: math.unit(2 + 8 / 12, "feet"),
  16100. default: true
  16101. },
  16102. ]
  16103. ))
  16104. characterMakers.push(() => makeCharacter(
  16105. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16106. {
  16107. side: {
  16108. height: math.unit(3 + 2 / 12, "feet"),
  16109. weight: math.unit(224, "lb"),
  16110. name: "Side",
  16111. image: {
  16112. source: "./media/characters/sheila-feral-wolf/side.svg",
  16113. extra: 179 / 166,
  16114. bottom: 0.03
  16115. }
  16116. },
  16117. },
  16118. [
  16119. {
  16120. name: "Normal",
  16121. height: math.unit(3 + 2 / 12, "feet"),
  16122. default: true
  16123. },
  16124. ]
  16125. ))
  16126. characterMakers.push(() => makeCharacter(
  16127. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16128. {
  16129. side: {
  16130. height: math.unit(1 + 9 / 12, "feet"),
  16131. weight: math.unit(38, "lb"),
  16132. name: "Side",
  16133. image: {
  16134. source: "./media/characters/michelle/side.svg",
  16135. extra: 147 / 136.7,
  16136. bottom: 0.03
  16137. }
  16138. },
  16139. },
  16140. [
  16141. {
  16142. name: "Normal",
  16143. height: math.unit(1 + 9 / 12, "feet"),
  16144. default: true
  16145. },
  16146. ]
  16147. ))
  16148. characterMakers.push(() => makeCharacter(
  16149. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16150. {
  16151. front: {
  16152. height: math.unit(1 + 1 / 12, "feet"),
  16153. weight: math.unit(18, "lb"),
  16154. name: "Front",
  16155. image: {
  16156. source: "./media/characters/nino/front.svg"
  16157. }
  16158. },
  16159. },
  16160. [
  16161. {
  16162. name: "Normal",
  16163. height: math.unit(1 + 1 / 12, "feet"),
  16164. default: true
  16165. },
  16166. ]
  16167. ))
  16168. characterMakers.push(() => makeCharacter(
  16169. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16170. {
  16171. front: {
  16172. height: math.unit(1, "feet"),
  16173. weight: math.unit(16, "lb"),
  16174. name: "Front",
  16175. image: {
  16176. source: "./media/characters/viola/front.svg"
  16177. }
  16178. },
  16179. },
  16180. [
  16181. {
  16182. name: "Normal",
  16183. height: math.unit(1, "feet"),
  16184. default: true
  16185. },
  16186. ]
  16187. ))
  16188. characterMakers.push(() => makeCharacter(
  16189. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16190. {
  16191. front: {
  16192. height: math.unit(6 + 5 / 12, "feet"),
  16193. weight: math.unit(580, "lb"),
  16194. name: "Front",
  16195. image: {
  16196. source: "./media/characters/atlas/front.svg",
  16197. extra: 298.5 / 290,
  16198. bottom: 0.015
  16199. }
  16200. },
  16201. },
  16202. [
  16203. {
  16204. name: "Normal",
  16205. height: math.unit(6 + 5 / 12, "feet"),
  16206. default: true
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16212. {
  16213. side: {
  16214. height: math.unit(1 + 10 / 12, "feet"),
  16215. weight: math.unit(25, "lb"),
  16216. name: "Side",
  16217. image: {
  16218. source: "./media/characters/davy/side.svg",
  16219. extra: 200 / 170,
  16220. bottom: 0.01
  16221. }
  16222. },
  16223. },
  16224. [
  16225. {
  16226. name: "Normal",
  16227. height: math.unit(1 + 10 / 12, "feet"),
  16228. default: true
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16234. {
  16235. side: {
  16236. height: math.unit(4 + 8 / 12, "feet"),
  16237. weight: math.unit(166, "lb"),
  16238. name: "Side",
  16239. image: {
  16240. source: "./media/characters/fiona/side.svg",
  16241. extra: 232 / 220,
  16242. bottom: 0.03
  16243. }
  16244. },
  16245. },
  16246. [
  16247. {
  16248. name: "Normal",
  16249. height: math.unit(4 + 8 / 12, "feet"),
  16250. default: true
  16251. },
  16252. ]
  16253. ))
  16254. characterMakers.push(() => makeCharacter(
  16255. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16256. {
  16257. front: {
  16258. height: math.unit(2, "feet"),
  16259. weight: math.unit(62, "lb"),
  16260. name: "Front",
  16261. image: {
  16262. source: "./media/characters/lyla/front.svg",
  16263. bottom: 0.1
  16264. }
  16265. },
  16266. },
  16267. [
  16268. {
  16269. name: "Normal",
  16270. height: math.unit(2, "feet"),
  16271. default: true
  16272. },
  16273. ]
  16274. ))
  16275. characterMakers.push(() => makeCharacter(
  16276. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16277. {
  16278. side: {
  16279. height: math.unit(1.8, "feet"),
  16280. weight: math.unit(44, "lb"),
  16281. name: "Side",
  16282. image: {
  16283. source: "./media/characters/perseus/side.svg",
  16284. bottom: 0.21
  16285. }
  16286. },
  16287. },
  16288. [
  16289. {
  16290. name: "Normal",
  16291. height: math.unit(1.8, "feet"),
  16292. default: true
  16293. },
  16294. ]
  16295. ))
  16296. characterMakers.push(() => makeCharacter(
  16297. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16298. {
  16299. side: {
  16300. height: math.unit(4 + 2 / 12, "feet"),
  16301. weight: math.unit(20, "lb"),
  16302. name: "Side",
  16303. image: {
  16304. source: "./media/characters/remus/side.svg"
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Normal",
  16311. height: math.unit(4 + 2 / 12, "feet"),
  16312. default: true
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16318. {
  16319. front: {
  16320. height: math.unit(4 + 11 / 12, "feet"),
  16321. weight: math.unit(114, "lb"),
  16322. name: "Front",
  16323. image: {
  16324. source: "./media/characters/raf/front.svg",
  16325. bottom: 20.5 / 1863
  16326. }
  16327. },
  16328. side: {
  16329. height: math.unit(4 + 11 / 12, "feet"),
  16330. weight: math.unit(114, "lb"),
  16331. name: "Side",
  16332. image: {
  16333. source: "./media/characters/raf/side.svg",
  16334. bottom: 22 / 1822
  16335. }
  16336. },
  16337. },
  16338. [
  16339. {
  16340. name: "Micro",
  16341. height: math.unit(2, "inches")
  16342. },
  16343. {
  16344. name: "Normal",
  16345. height: math.unit(4 + 11 / 12, "feet"),
  16346. default: true
  16347. },
  16348. {
  16349. name: "Macro",
  16350. height: math.unit(70, "feet")
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(1.5, "meters"),
  16359. weight: math.unit(68, "kg"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/liam-einarr/front.svg",
  16363. extra: 2822 / 2666
  16364. }
  16365. },
  16366. back: {
  16367. height: math.unit(1.5, "meters"),
  16368. weight: math.unit(68, "kg"),
  16369. name: "Back",
  16370. image: {
  16371. source: "./media/characters/liam-einarr/back.svg",
  16372. extra: 2822 / 2666,
  16373. bottom: 0.015
  16374. }
  16375. },
  16376. },
  16377. [
  16378. {
  16379. name: "Normal",
  16380. height: math.unit(1.5, "meters"),
  16381. default: true
  16382. },
  16383. {
  16384. name: "Macro",
  16385. height: math.unit(150, "meters")
  16386. },
  16387. {
  16388. name: "Megamacro",
  16389. height: math.unit(35, "km")
  16390. },
  16391. ]
  16392. ))
  16393. characterMakers.push(() => makeCharacter(
  16394. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16395. {
  16396. front: {
  16397. height: math.unit(6, "feet"),
  16398. weight: math.unit(75, "kg"),
  16399. name: "Front",
  16400. image: {
  16401. source: "./media/characters/linda/front.svg",
  16402. extra: 930 / 874,
  16403. bottom: 0.004
  16404. }
  16405. },
  16406. },
  16407. [
  16408. {
  16409. name: "Normal",
  16410. height: math.unit(6, "feet"),
  16411. default: true
  16412. },
  16413. ]
  16414. ))
  16415. characterMakers.push(() => makeCharacter(
  16416. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16417. {
  16418. front: {
  16419. height: math.unit(6 + 8 / 12, "feet"),
  16420. weight: math.unit(220, "lb"),
  16421. name: "Front",
  16422. image: {
  16423. source: "./media/characters/caylex/front.svg",
  16424. extra: 821 / 772,
  16425. bottom: 0.07
  16426. }
  16427. },
  16428. back: {
  16429. height: math.unit(6 + 8 / 12, "feet"),
  16430. weight: math.unit(220, "lb"),
  16431. name: "Back",
  16432. image: {
  16433. source: "./media/characters/caylex/back.svg",
  16434. extra: 821 / 772,
  16435. bottom: 0.022
  16436. }
  16437. },
  16438. hand: {
  16439. height: math.unit(1.25, "feet"),
  16440. name: "Hand",
  16441. image: {
  16442. source: "./media/characters/caylex/hand.svg"
  16443. }
  16444. },
  16445. foot: {
  16446. height: math.unit(1.6, "feet"),
  16447. name: "Foot",
  16448. image: {
  16449. source: "./media/characters/caylex/foot.svg"
  16450. }
  16451. },
  16452. armored: {
  16453. height: math.unit(6 + 8 / 12, "feet"),
  16454. weight: math.unit(250, "lb"),
  16455. name: "Armored",
  16456. image: {
  16457. source: "./media/characters/caylex/armored.svg",
  16458. extra: 1420 / 1310,
  16459. bottom: 0.045
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Normal",
  16466. height: math.unit(6 + 8 / 12, "feet"),
  16467. default: true
  16468. },
  16469. {
  16470. name: "Normal+",
  16471. height: math.unit(12, "feet")
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16477. {
  16478. front: {
  16479. height: math.unit(7 + 6 / 12, "feet"),
  16480. weight: math.unit(288, "lb"),
  16481. name: "Front",
  16482. image: {
  16483. source: "./media/characters/alana/front.svg",
  16484. extra: 679 / 653,
  16485. bottom: 22.5 / 701
  16486. }
  16487. },
  16488. },
  16489. [
  16490. {
  16491. name: "Normal",
  16492. height: math.unit(7 + 6 / 12, "feet")
  16493. },
  16494. {
  16495. name: "Large",
  16496. height: math.unit(50, "feet")
  16497. },
  16498. {
  16499. name: "Macro",
  16500. height: math.unit(100, "feet"),
  16501. default: true
  16502. },
  16503. {
  16504. name: "Macro+",
  16505. height: math.unit(200, "feet")
  16506. },
  16507. ]
  16508. ))
  16509. characterMakers.push(() => makeCharacter(
  16510. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16511. {
  16512. front: {
  16513. height: math.unit(6 + 1 / 12, "feet"),
  16514. weight: math.unit(210, "lb"),
  16515. name: "Front",
  16516. image: {
  16517. source: "./media/characters/hasani/front.svg",
  16518. extra: 244 / 232,
  16519. bottom: 0.01
  16520. }
  16521. },
  16522. back: {
  16523. height: math.unit(6 + 1 / 12, "feet"),
  16524. weight: math.unit(210, "lb"),
  16525. name: "Back",
  16526. image: {
  16527. source: "./media/characters/hasani/back.svg",
  16528. extra: 244 / 232,
  16529. bottom: 0.01
  16530. }
  16531. },
  16532. },
  16533. [
  16534. {
  16535. name: "Normal",
  16536. height: math.unit(6 + 1 / 12, "feet")
  16537. },
  16538. {
  16539. name: "Macro",
  16540. height: math.unit(175, "feet"),
  16541. default: true
  16542. },
  16543. ]
  16544. ))
  16545. characterMakers.push(() => makeCharacter(
  16546. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16547. {
  16548. front: {
  16549. height: math.unit(1.82, "meters"),
  16550. weight: math.unit(140, "lb"),
  16551. name: "Front",
  16552. image: {
  16553. source: "./media/characters/nita/front.svg",
  16554. extra: 2473 / 2363,
  16555. bottom: 0.01
  16556. }
  16557. },
  16558. },
  16559. [
  16560. {
  16561. name: "Normal",
  16562. height: math.unit(1.82, "m")
  16563. },
  16564. {
  16565. name: "Macro",
  16566. height: math.unit(300, "m")
  16567. },
  16568. {
  16569. name: "Mistake Canon",
  16570. height: math.unit(0.5, "miles"),
  16571. default: true
  16572. },
  16573. {
  16574. name: "Big Mistake",
  16575. height: math.unit(13, "miles")
  16576. },
  16577. {
  16578. name: "Playing God",
  16579. height: math.unit(2450, "miles")
  16580. },
  16581. ]
  16582. ))
  16583. characterMakers.push(() => makeCharacter(
  16584. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16585. {
  16586. front: {
  16587. height: math.unit(4, "feet"),
  16588. weight: math.unit(120, "lb"),
  16589. name: "Front",
  16590. image: {
  16591. source: "./media/characters/shiriko/front.svg",
  16592. extra: 195 / 188
  16593. }
  16594. },
  16595. },
  16596. [
  16597. {
  16598. name: "Normal",
  16599. height: math.unit(4, "feet"),
  16600. default: true
  16601. },
  16602. ]
  16603. ))
  16604. characterMakers.push(() => makeCharacter(
  16605. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16606. {
  16607. front: {
  16608. height: math.unit(6, "feet"),
  16609. name: "front",
  16610. image: {
  16611. source: "./media/characters/deja/front.svg",
  16612. extra: 926 / 840,
  16613. bottom: 0.07
  16614. }
  16615. },
  16616. },
  16617. [
  16618. {
  16619. name: "Planck Length",
  16620. height: math.unit(1.6e-35, "meters")
  16621. },
  16622. {
  16623. name: "Normal",
  16624. height: math.unit(30.48, "meters"),
  16625. default: true
  16626. },
  16627. {
  16628. name: "Universal",
  16629. height: math.unit(8.8e26, "meters")
  16630. },
  16631. ]
  16632. ))
  16633. characterMakers.push(() => makeCharacter(
  16634. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16635. {
  16636. side: {
  16637. height: math.unit(8, "feet"),
  16638. weight: math.unit(6300, "lb"),
  16639. name: "Side",
  16640. image: {
  16641. source: "./media/characters/anima/side.svg",
  16642. bottom: 0.035
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(8, "feet"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16656. {
  16657. front: {
  16658. height: math.unit(8, "feet"),
  16659. weight: math.unit(350, "lb"),
  16660. name: "Front",
  16661. image: {
  16662. source: "./media/characters/bianca/front.svg",
  16663. extra: 234 / 225,
  16664. bottom: 0.03
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Normal",
  16671. height: math.unit(8, "feet"),
  16672. default: true
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16678. {
  16679. front: {
  16680. height: math.unit(6, "feet"),
  16681. weight: math.unit(150, "lb"),
  16682. name: "Front",
  16683. image: {
  16684. source: "./media/characters/adinia/front.svg",
  16685. extra: 1845 / 1672,
  16686. bottom: 0.02
  16687. }
  16688. },
  16689. back: {
  16690. height: math.unit(6, "feet"),
  16691. weight: math.unit(150, "lb"),
  16692. name: "Back",
  16693. image: {
  16694. source: "./media/characters/adinia/back.svg",
  16695. extra: 1845 / 1672,
  16696. bottom: 0.002
  16697. }
  16698. },
  16699. },
  16700. [
  16701. {
  16702. name: "Normal",
  16703. height: math.unit(11 + 5 / 12, "feet"),
  16704. default: true
  16705. },
  16706. ]
  16707. ))
  16708. characterMakers.push(() => makeCharacter(
  16709. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16710. {
  16711. front: {
  16712. height: math.unit(3, "meters"),
  16713. weight: math.unit(200, "kg"),
  16714. name: "Front",
  16715. image: {
  16716. source: "./media/characters/lykasa/front.svg",
  16717. extra: 1076 / 976,
  16718. bottom: 0.06
  16719. }
  16720. },
  16721. },
  16722. [
  16723. {
  16724. name: "Normal",
  16725. height: math.unit(3, "meters")
  16726. },
  16727. {
  16728. name: "Kaiju",
  16729. height: math.unit(120, "meters"),
  16730. default: true
  16731. },
  16732. {
  16733. name: "Mega Kaiju",
  16734. height: math.unit(240, "km")
  16735. },
  16736. {
  16737. name: "Giga Kaiju",
  16738. height: math.unit(400, "megameters")
  16739. },
  16740. {
  16741. name: "Tera Kaiju",
  16742. height: math.unit(800, "gigameters")
  16743. },
  16744. {
  16745. name: "Kaiju Dragon Goddess",
  16746. height: math.unit(26, "zettaparsecs")
  16747. },
  16748. ]
  16749. ))
  16750. characterMakers.push(() => makeCharacter(
  16751. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16752. {
  16753. side: {
  16754. height: math.unit(283 / 124 * 6, "feet"),
  16755. weight: math.unit(35000, "lb"),
  16756. name: "Side",
  16757. image: {
  16758. source: "./media/characters/malfaren/side.svg",
  16759. extra: 2500 / 1010,
  16760. bottom: 0.01
  16761. }
  16762. },
  16763. front: {
  16764. height: math.unit(22.36, "feet"),
  16765. weight: math.unit(35000, "lb"),
  16766. name: "Front",
  16767. image: {
  16768. source: "./media/characters/malfaren/front.svg",
  16769. extra: 1631 / 1476,
  16770. bottom: 0.01
  16771. }
  16772. },
  16773. maw: {
  16774. height: math.unit(6.9, "feet"),
  16775. name: "Maw",
  16776. image: {
  16777. source: "./media/characters/malfaren/maw.svg"
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Big",
  16784. height: math.unit(283 / 162 * 6, "feet"),
  16785. },
  16786. {
  16787. name: "Bigger",
  16788. height: math.unit(283 / 124 * 6, "feet")
  16789. },
  16790. {
  16791. name: "Massive",
  16792. height: math.unit(283 / 92 * 6, "feet"),
  16793. default: true
  16794. },
  16795. {
  16796. name: "👀💦",
  16797. height: math.unit(283 / 73 * 6, "feet"),
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16803. {
  16804. front: {
  16805. height: math.unit(1.7, "m"),
  16806. weight: math.unit(70, "kg"),
  16807. name: "Front",
  16808. image: {
  16809. source: "./media/characters/kernel/front.svg",
  16810. extra: 222 / 210,
  16811. bottom: 0.007
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Nano",
  16818. height: math.unit(17, "micrometers")
  16819. },
  16820. {
  16821. name: "Micro",
  16822. height: math.unit(1.7, "mm")
  16823. },
  16824. {
  16825. name: "Small",
  16826. height: math.unit(1.7, "cm")
  16827. },
  16828. {
  16829. name: "Normal",
  16830. height: math.unit(1.7, "m"),
  16831. default: true
  16832. },
  16833. ]
  16834. ))
  16835. characterMakers.push(() => makeCharacter(
  16836. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16837. {
  16838. front: {
  16839. height: math.unit(1.75, "meters"),
  16840. weight: math.unit(65, "kg"),
  16841. name: "Front",
  16842. image: {
  16843. source: "./media/characters/jayne-folest/front.svg",
  16844. extra: 2115 / 2007,
  16845. bottom: 0.02
  16846. }
  16847. },
  16848. back: {
  16849. height: math.unit(1.75, "meters"),
  16850. weight: math.unit(65, "kg"),
  16851. name: "Back",
  16852. image: {
  16853. source: "./media/characters/jayne-folest/back.svg",
  16854. extra: 2115 / 2007,
  16855. bottom: 0.005
  16856. }
  16857. },
  16858. frontClothed: {
  16859. height: math.unit(1.75, "meters"),
  16860. weight: math.unit(65, "kg"),
  16861. name: "Front (Clothed)",
  16862. image: {
  16863. source: "./media/characters/jayne-folest/front-clothed.svg",
  16864. extra: 2115 / 2007,
  16865. bottom: 0.035
  16866. }
  16867. },
  16868. hand: {
  16869. height: math.unit(1 / 1.260, "feet"),
  16870. name: "Hand",
  16871. image: {
  16872. source: "./media/characters/jayne-folest/hand.svg"
  16873. }
  16874. },
  16875. foot: {
  16876. height: math.unit(1 / 0.918, "feet"),
  16877. name: "Foot",
  16878. image: {
  16879. source: "./media/characters/jayne-folest/foot.svg"
  16880. }
  16881. },
  16882. },
  16883. [
  16884. {
  16885. name: "Micro",
  16886. height: math.unit(4, "cm")
  16887. },
  16888. {
  16889. name: "Normal",
  16890. height: math.unit(1.75, "meters")
  16891. },
  16892. {
  16893. name: "Macro",
  16894. height: math.unit(47.5, "meters"),
  16895. default: true
  16896. },
  16897. ]
  16898. ))
  16899. characterMakers.push(() => makeCharacter(
  16900. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16901. {
  16902. front: {
  16903. height: math.unit(180, "cm"),
  16904. weight: math.unit(70, "kg"),
  16905. name: "Front",
  16906. image: {
  16907. source: "./media/characters/algier/front.svg",
  16908. extra: 596 / 572,
  16909. bottom: 0.04
  16910. }
  16911. },
  16912. back: {
  16913. height: math.unit(180, "cm"),
  16914. weight: math.unit(70, "kg"),
  16915. name: "Back",
  16916. image: {
  16917. source: "./media/characters/algier/back.svg",
  16918. extra: 596 / 572,
  16919. bottom: 0.025
  16920. }
  16921. },
  16922. frontdressed: {
  16923. height: math.unit(180, "cm"),
  16924. weight: math.unit(150, "kg"),
  16925. name: "Front-dressed",
  16926. image: {
  16927. source: "./media/characters/algier/front-dressed.svg",
  16928. extra: 596 / 572,
  16929. bottom: 0.038
  16930. }
  16931. },
  16932. },
  16933. [
  16934. {
  16935. name: "Micro",
  16936. height: math.unit(5, "cm")
  16937. },
  16938. {
  16939. name: "Normal",
  16940. height: math.unit(180, "cm"),
  16941. default: true
  16942. },
  16943. {
  16944. name: "Macro",
  16945. height: math.unit(64, "m")
  16946. },
  16947. ]
  16948. ))
  16949. characterMakers.push(() => makeCharacter(
  16950. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16951. {
  16952. upright: {
  16953. height: math.unit(7, "feet"),
  16954. weight: math.unit(300, "lb"),
  16955. name: "Upright",
  16956. image: {
  16957. source: "./media/characters/pretzel/upright.svg",
  16958. extra: 534 / 522,
  16959. bottom: 0.065
  16960. }
  16961. },
  16962. sprawling: {
  16963. height: math.unit(3.75, "feet"),
  16964. weight: math.unit(300, "lb"),
  16965. name: "Sprawling",
  16966. image: {
  16967. source: "./media/characters/pretzel/sprawling.svg",
  16968. extra: 314 / 281,
  16969. bottom: 0.1
  16970. }
  16971. },
  16972. tongue: {
  16973. height: math.unit(2, "feet"),
  16974. name: "Tongue",
  16975. image: {
  16976. source: "./media/characters/pretzel/tongue.svg"
  16977. }
  16978. },
  16979. },
  16980. [
  16981. {
  16982. name: "Normal",
  16983. height: math.unit(7, "feet"),
  16984. default: true
  16985. },
  16986. {
  16987. name: "Oversized",
  16988. height: math.unit(15, "feet")
  16989. },
  16990. {
  16991. name: "Huge",
  16992. height: math.unit(30, "feet")
  16993. },
  16994. {
  16995. name: "Macro",
  16996. height: math.unit(250, "feet")
  16997. },
  16998. ]
  16999. ))
  17000. characterMakers.push(() => makeCharacter(
  17001. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17002. {
  17003. sideFront: {
  17004. height: math.unit(5 + 2 / 12, "feet"),
  17005. weight: math.unit(120, "lb"),
  17006. name: "Front Side",
  17007. image: {
  17008. source: "./media/characters/roxi/side-front.svg",
  17009. extra: 2924 / 2717,
  17010. bottom: 0.08
  17011. }
  17012. },
  17013. sideBack: {
  17014. height: math.unit(5 + 2 / 12, "feet"),
  17015. weight: math.unit(120, "lb"),
  17016. name: "Back Side",
  17017. image: {
  17018. source: "./media/characters/roxi/side-back.svg",
  17019. extra: 2904 / 2693,
  17020. bottom: 0.06
  17021. }
  17022. },
  17023. front: {
  17024. height: math.unit(5 + 2 / 12, "feet"),
  17025. weight: math.unit(120, "lb"),
  17026. name: "Front",
  17027. image: {
  17028. source: "./media/characters/roxi/front.svg",
  17029. extra: 2028 / 1907,
  17030. bottom: 0.01
  17031. }
  17032. },
  17033. frontAlt: {
  17034. height: math.unit(5 + 2 / 12, "feet"),
  17035. weight: math.unit(120, "lb"),
  17036. name: "Front (Alt)",
  17037. image: {
  17038. source: "./media/characters/roxi/front-alt.svg",
  17039. extra: 1828 / 1798,
  17040. bottom: 0.01
  17041. }
  17042. },
  17043. sitting: {
  17044. height: math.unit(2.8, "feet"),
  17045. weight: math.unit(120, "lb"),
  17046. name: "Sitting",
  17047. image: {
  17048. source: "./media/characters/roxi/sitting.svg",
  17049. extra: 2660 / 2462,
  17050. bottom: 0.1
  17051. }
  17052. },
  17053. },
  17054. [
  17055. {
  17056. name: "Normal",
  17057. height: math.unit(5 + 2 / 12, "feet"),
  17058. default: true
  17059. },
  17060. ]
  17061. ))
  17062. characterMakers.push(() => makeCharacter(
  17063. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17064. {
  17065. side: {
  17066. height: math.unit(55, "feet"),
  17067. weight: math.unit(153, "tons"),
  17068. name: "Side",
  17069. image: {
  17070. source: "./media/characters/shadow/side.svg",
  17071. extra: 701 / 628,
  17072. bottom: 0.02
  17073. }
  17074. },
  17075. flying: {
  17076. height: math.unit(145, "feet"),
  17077. weight: math.unit(153, "tons"),
  17078. name: "Flying",
  17079. image: {
  17080. source: "./media/characters/shadow/flying.svg"
  17081. }
  17082. },
  17083. },
  17084. [
  17085. {
  17086. name: "Normal",
  17087. height: math.unit(55, "feet"),
  17088. default: true
  17089. },
  17090. ]
  17091. ))
  17092. characterMakers.push(() => makeCharacter(
  17093. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17094. {
  17095. front: {
  17096. height: math.unit(6, "feet"),
  17097. weight: math.unit(200, "lb"),
  17098. name: "Front",
  17099. image: {
  17100. source: "./media/characters/marcie/front.svg",
  17101. extra: 960 / 876,
  17102. bottom: 58 / 1017.87
  17103. }
  17104. },
  17105. },
  17106. [
  17107. {
  17108. name: "Macro",
  17109. height: math.unit(1, "mile"),
  17110. default: true
  17111. },
  17112. ]
  17113. ))
  17114. characterMakers.push(() => makeCharacter(
  17115. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17116. {
  17117. front: {
  17118. height: math.unit(7, "feet"),
  17119. weight: math.unit(200, "lb"),
  17120. name: "Front",
  17121. image: {
  17122. source: "./media/characters/kachina/front.svg",
  17123. extra: 1290.68 / 1119,
  17124. bottom: 36.5 / 1327.18
  17125. }
  17126. },
  17127. },
  17128. [
  17129. {
  17130. name: "Normal",
  17131. height: math.unit(7, "feet"),
  17132. default: true
  17133. },
  17134. ]
  17135. ))
  17136. characterMakers.push(() => makeCharacter(
  17137. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17138. {
  17139. looking: {
  17140. height: math.unit(2, "meters"),
  17141. weight: math.unit(300, "kg"),
  17142. name: "Looking",
  17143. image: {
  17144. source: "./media/characters/kash/looking.svg",
  17145. extra: 474 / 344,
  17146. bottom: 0.03
  17147. }
  17148. },
  17149. side: {
  17150. height: math.unit(2, "meters"),
  17151. weight: math.unit(300, "kg"),
  17152. name: "Side",
  17153. image: {
  17154. source: "./media/characters/kash/side.svg",
  17155. extra: 302 / 251,
  17156. bottom: 0.03
  17157. }
  17158. },
  17159. front: {
  17160. height: math.unit(2, "meters"),
  17161. weight: math.unit(300, "kg"),
  17162. name: "Front",
  17163. image: {
  17164. source: "./media/characters/kash/front.svg",
  17165. extra: 495 / 360,
  17166. bottom: 0.015
  17167. }
  17168. },
  17169. },
  17170. [
  17171. {
  17172. name: "Normal",
  17173. height: math.unit(2, "meters"),
  17174. default: true
  17175. },
  17176. {
  17177. name: "Big",
  17178. height: math.unit(3, "meters")
  17179. },
  17180. {
  17181. name: "Large",
  17182. height: math.unit(5, "meters")
  17183. },
  17184. ]
  17185. ))
  17186. characterMakers.push(() => makeCharacter(
  17187. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17188. {
  17189. feeding: {
  17190. height: math.unit(6.7, "feet"),
  17191. weight: math.unit(350, "lb"),
  17192. name: "Feeding",
  17193. image: {
  17194. source: "./media/characters/lalim/feeding.svg",
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Normal",
  17201. height: math.unit(6.7, "feet"),
  17202. default: true
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17208. {
  17209. front: {
  17210. height: math.unit(9.5, "feet"),
  17211. weight: math.unit(600, "lb"),
  17212. name: "Front",
  17213. image: {
  17214. source: "./media/characters/de'vout/front.svg",
  17215. extra: 1443 / 1328,
  17216. bottom: 0.025
  17217. }
  17218. },
  17219. back: {
  17220. height: math.unit(9.5, "feet"),
  17221. weight: math.unit(600, "lb"),
  17222. name: "Back",
  17223. image: {
  17224. source: "./media/characters/de'vout/back.svg",
  17225. extra: 1443 / 1328
  17226. }
  17227. },
  17228. frontDressed: {
  17229. height: math.unit(9.5, "feet"),
  17230. weight: math.unit(600, "lb"),
  17231. name: "Front (Dressed",
  17232. image: {
  17233. source: "./media/characters/de'vout/front-dressed.svg",
  17234. extra: 1443 / 1328,
  17235. bottom: 0.025
  17236. }
  17237. },
  17238. backDressed: {
  17239. height: math.unit(9.5, "feet"),
  17240. weight: math.unit(600, "lb"),
  17241. name: "Back (Dressed",
  17242. image: {
  17243. source: "./media/characters/de'vout/back-dressed.svg",
  17244. extra: 1443 / 1328
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(9.5, "feet"),
  17252. default: true
  17253. },
  17254. ]
  17255. ))
  17256. characterMakers.push(() => makeCharacter(
  17257. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17258. {
  17259. front: {
  17260. height: math.unit(8, "feet"),
  17261. weight: math.unit(225, "lb"),
  17262. name: "Front",
  17263. image: {
  17264. source: "./media/characters/talana/front.svg",
  17265. extra: 1410 / 1300,
  17266. bottom: 0.015
  17267. }
  17268. },
  17269. frontDressed: {
  17270. height: math.unit(8, "feet"),
  17271. weight: math.unit(225, "lb"),
  17272. name: "Front (Dressed",
  17273. image: {
  17274. source: "./media/characters/talana/front-dressed.svg",
  17275. extra: 1410 / 1300,
  17276. bottom: 0.015
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Normal",
  17283. height: math.unit(8, "feet"),
  17284. default: true
  17285. },
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17290. {
  17291. side: {
  17292. height: math.unit(7.2, "feet"),
  17293. weight: math.unit(150, "lb"),
  17294. name: "Side",
  17295. image: {
  17296. source: "./media/characters/xeauvok/side.svg",
  17297. extra: 1975 / 1523,
  17298. bottom: 0.07
  17299. }
  17300. },
  17301. },
  17302. [
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(7.2, "feet"),
  17306. default: true
  17307. },
  17308. ]
  17309. ))
  17310. characterMakers.push(() => makeCharacter(
  17311. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17312. {
  17313. side: {
  17314. height: math.unit(10, "feet"),
  17315. weight: math.unit(900, "kg"),
  17316. name: "Side",
  17317. image: {
  17318. source: "./media/characters/zara/side.svg",
  17319. extra: 504 / 498
  17320. }
  17321. },
  17322. },
  17323. [
  17324. {
  17325. name: "Normal",
  17326. height: math.unit(10, "feet"),
  17327. default: true
  17328. },
  17329. ]
  17330. ))
  17331. characterMakers.push(() => makeCharacter(
  17332. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17333. {
  17334. side: {
  17335. height: math.unit(6, "feet"),
  17336. weight: math.unit(150, "lb"),
  17337. name: "Side",
  17338. image: {
  17339. source: "./media/characters/richard-dragon/side.svg",
  17340. extra: 845 / 340,
  17341. bottom: 0.017
  17342. }
  17343. },
  17344. maw: {
  17345. height: math.unit(2.97, "feet"),
  17346. name: "Maw",
  17347. image: {
  17348. source: "./media/characters/richard-dragon/maw.svg"
  17349. }
  17350. },
  17351. },
  17352. [
  17353. ]
  17354. ))
  17355. characterMakers.push(() => makeCharacter(
  17356. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17357. {
  17358. front: {
  17359. height: math.unit(4, "feet"),
  17360. weight: math.unit(100, "lb"),
  17361. name: "Front",
  17362. image: {
  17363. source: "./media/characters/richard-smeargle/front.svg",
  17364. extra: 2952 / 2820,
  17365. bottom: 0.028
  17366. }
  17367. },
  17368. },
  17369. [
  17370. {
  17371. name: "Normal",
  17372. height: math.unit(4, "feet"),
  17373. default: true
  17374. },
  17375. {
  17376. name: "Dynamax",
  17377. height: math.unit(20, "meters")
  17378. },
  17379. ]
  17380. ))
  17381. characterMakers.push(() => makeCharacter(
  17382. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17383. {
  17384. front: {
  17385. height: math.unit(6, "feet"),
  17386. weight: math.unit(110, "lb"),
  17387. name: "Front",
  17388. image: {
  17389. source: "./media/characters/klay/front.svg",
  17390. extra: 962 / 883,
  17391. bottom: 0.04
  17392. }
  17393. },
  17394. back: {
  17395. height: math.unit(6, "feet"),
  17396. weight: math.unit(110, "lb"),
  17397. name: "Back",
  17398. image: {
  17399. source: "./media/characters/klay/back.svg",
  17400. extra: 962 / 883
  17401. }
  17402. },
  17403. beans: {
  17404. height: math.unit(1.15, "feet"),
  17405. name: "Beans",
  17406. image: {
  17407. source: "./media/characters/klay/beans.svg"
  17408. }
  17409. },
  17410. },
  17411. [
  17412. {
  17413. name: "Micro",
  17414. height: math.unit(6, "inches")
  17415. },
  17416. {
  17417. name: "Mini",
  17418. height: math.unit(3, "feet")
  17419. },
  17420. {
  17421. name: "Normal",
  17422. height: math.unit(6, "feet"),
  17423. default: true
  17424. },
  17425. {
  17426. name: "Big",
  17427. height: math.unit(25, "feet")
  17428. },
  17429. {
  17430. name: "Macro",
  17431. height: math.unit(100, "feet")
  17432. },
  17433. {
  17434. name: "Megamacro",
  17435. height: math.unit(400, "feet")
  17436. },
  17437. ]
  17438. ))
  17439. characterMakers.push(() => makeCharacter(
  17440. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17441. {
  17442. front: {
  17443. height: math.unit(6, "feet"),
  17444. weight: math.unit(160, "lb"),
  17445. name: "Front",
  17446. image: {
  17447. source: "./media/characters/marcus/front.svg",
  17448. extra: 734 / 676,
  17449. bottom: 0.03
  17450. }
  17451. },
  17452. },
  17453. [
  17454. {
  17455. name: "Little",
  17456. height: math.unit(6, "feet")
  17457. },
  17458. {
  17459. name: "Normal",
  17460. height: math.unit(110, "feet"),
  17461. default: true
  17462. },
  17463. {
  17464. name: "Macro",
  17465. height: math.unit(250, "feet")
  17466. },
  17467. {
  17468. name: "Megamacro",
  17469. height: math.unit(1000, "feet")
  17470. },
  17471. ]
  17472. ))
  17473. characterMakers.push(() => makeCharacter(
  17474. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17475. {
  17476. front: {
  17477. height: math.unit(7, "feet"),
  17478. weight: math.unit(275, "lb"),
  17479. name: "Front",
  17480. image: {
  17481. source: "./media/characters/claude-delroute/front.svg",
  17482. extra: 230 / 214,
  17483. bottom: 0.007
  17484. }
  17485. },
  17486. side: {
  17487. height: math.unit(7, "feet"),
  17488. weight: math.unit(275, "lb"),
  17489. name: "Side",
  17490. image: {
  17491. source: "./media/characters/claude-delroute/side.svg",
  17492. extra: 222 / 214,
  17493. bottom: 0.01
  17494. }
  17495. },
  17496. back: {
  17497. height: math.unit(7, "feet"),
  17498. weight: math.unit(275, "lb"),
  17499. name: "Back",
  17500. image: {
  17501. source: "./media/characters/claude-delroute/back.svg",
  17502. extra: 230 / 214,
  17503. bottom: 0.015
  17504. }
  17505. },
  17506. maw: {
  17507. height: math.unit(0.6407, "meters"),
  17508. name: "Maw",
  17509. image: {
  17510. source: "./media/characters/claude-delroute/maw.svg"
  17511. }
  17512. },
  17513. },
  17514. [
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(7, "feet"),
  17518. default: true
  17519. },
  17520. {
  17521. name: "Lorge",
  17522. height: math.unit(20, "feet")
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17528. {
  17529. front: {
  17530. height: math.unit(8 + 4 / 12, "feet"),
  17531. weight: math.unit(600, "lb"),
  17532. name: "Front",
  17533. image: {
  17534. source: "./media/characters/dragonien/front.svg",
  17535. extra: 100 / 94,
  17536. bottom: 3.3 / 103.3445
  17537. }
  17538. },
  17539. back: {
  17540. height: math.unit(8 + 4 / 12, "feet"),
  17541. weight: math.unit(600, "lb"),
  17542. name: "Back",
  17543. image: {
  17544. source: "./media/characters/dragonien/back.svg",
  17545. extra: 776 / 746,
  17546. bottom: 6.4 / 782.0616
  17547. }
  17548. },
  17549. foot: {
  17550. height: math.unit(1.54, "feet"),
  17551. name: "Foot",
  17552. image: {
  17553. source: "./media/characters/dragonien/foot.svg",
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(8 + 4 / 12, "feet"),
  17561. default: true
  17562. },
  17563. {
  17564. name: "Macro",
  17565. height: math.unit(200, "feet")
  17566. },
  17567. {
  17568. name: "Megamacro",
  17569. height: math.unit(1, "mile")
  17570. },
  17571. {
  17572. name: "Gigamacro",
  17573. height: math.unit(1000, "miles")
  17574. },
  17575. ]
  17576. ))
  17577. characterMakers.push(() => makeCharacter(
  17578. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17579. {
  17580. front: {
  17581. height: math.unit(5 + 2 / 12, "feet"),
  17582. weight: math.unit(110, "lb"),
  17583. name: "Front",
  17584. image: {
  17585. source: "./media/characters/desta/front.svg",
  17586. extra: 767 / 726,
  17587. bottom: 11.7 / 779
  17588. }
  17589. },
  17590. back: {
  17591. height: math.unit(5 + 2 / 12, "feet"),
  17592. weight: math.unit(110, "lb"),
  17593. name: "Back",
  17594. image: {
  17595. source: "./media/characters/desta/back.svg",
  17596. extra: 777 / 728,
  17597. bottom: 6 / 784
  17598. }
  17599. },
  17600. frontAlt: {
  17601. height: math.unit(5 + 2 / 12, "feet"),
  17602. weight: math.unit(110, "lb"),
  17603. name: "Front",
  17604. image: {
  17605. source: "./media/characters/desta/front-alt.svg",
  17606. extra: 1482 / 1417
  17607. }
  17608. },
  17609. side: {
  17610. height: math.unit(5 + 2 / 12, "feet"),
  17611. weight: math.unit(110, "lb"),
  17612. name: "Side",
  17613. image: {
  17614. source: "./media/characters/desta/side.svg",
  17615. extra: 2579 / 2491,
  17616. bottom: 0.053
  17617. }
  17618. },
  17619. },
  17620. [
  17621. {
  17622. name: "Micro",
  17623. height: math.unit(6, "inches")
  17624. },
  17625. {
  17626. name: "Normal",
  17627. height: math.unit(5 + 2 / 12, "feet"),
  17628. default: true
  17629. },
  17630. {
  17631. name: "Macro",
  17632. height: math.unit(62, "feet")
  17633. },
  17634. {
  17635. name: "Megamacro",
  17636. height: math.unit(1800, "feet")
  17637. },
  17638. ]
  17639. ))
  17640. characterMakers.push(() => makeCharacter(
  17641. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17642. {
  17643. front: {
  17644. height: math.unit(10, "feet"),
  17645. weight: math.unit(700, "lb"),
  17646. name: "Front",
  17647. image: {
  17648. source: "./media/characters/storm-alystar/front.svg",
  17649. extra: 2112 / 1898,
  17650. bottom: 0.034
  17651. }
  17652. },
  17653. },
  17654. [
  17655. {
  17656. name: "Micro",
  17657. height: math.unit(3.5, "inches")
  17658. },
  17659. {
  17660. name: "Normal",
  17661. height: math.unit(10, "feet"),
  17662. default: true
  17663. },
  17664. {
  17665. name: "Macro",
  17666. height: math.unit(400, "feet")
  17667. },
  17668. {
  17669. name: "Deific",
  17670. height: math.unit(60, "miles")
  17671. },
  17672. ]
  17673. ))
  17674. characterMakers.push(() => makeCharacter(
  17675. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17676. {
  17677. front: {
  17678. height: math.unit(2.35, "meters"),
  17679. weight: math.unit(119, "kg"),
  17680. name: "Front",
  17681. image: {
  17682. source: "./media/characters/ilia/front.svg",
  17683. extra: 1285 / 1255,
  17684. bottom: 0.06
  17685. }
  17686. },
  17687. },
  17688. [
  17689. {
  17690. name: "Normal",
  17691. height: math.unit(2.35, "meters")
  17692. },
  17693. {
  17694. name: "Macro",
  17695. height: math.unit(140, "meters"),
  17696. default: true
  17697. },
  17698. {
  17699. name: "Megamacro",
  17700. height: math.unit(100, "miles")
  17701. },
  17702. ]
  17703. ))
  17704. characterMakers.push(() => makeCharacter(
  17705. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17706. {
  17707. front: {
  17708. height: math.unit(6 + 5 / 12, "feet"),
  17709. weight: math.unit(190, "lb"),
  17710. name: "Front",
  17711. image: {
  17712. source: "./media/characters/kingdead/front.svg",
  17713. extra: 1228 / 1177
  17714. }
  17715. },
  17716. },
  17717. [
  17718. {
  17719. name: "Micro",
  17720. height: math.unit(7, "inches")
  17721. },
  17722. {
  17723. name: "Normal",
  17724. height: math.unit(6 + 5 / 12, "feet")
  17725. },
  17726. {
  17727. name: "Macro",
  17728. height: math.unit(150, "feet"),
  17729. default: true
  17730. },
  17731. {
  17732. name: "Megamacro",
  17733. height: math.unit(200, "miles")
  17734. },
  17735. ]
  17736. ))
  17737. characterMakers.push(() => makeCharacter(
  17738. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17739. {
  17740. front: {
  17741. height: math.unit(8, "feet"),
  17742. weight: math.unit(600, "lb"),
  17743. name: "Front",
  17744. image: {
  17745. source: "./media/characters/kyrehx/front.svg",
  17746. extra: 1195 / 1095,
  17747. bottom: 0.034
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Micro",
  17754. height: math.unit(2, "inches")
  17755. },
  17756. {
  17757. name: "Normal",
  17758. height: math.unit(8, "feet"),
  17759. default: true
  17760. },
  17761. {
  17762. name: "Macro",
  17763. height: math.unit(255, "feet")
  17764. },
  17765. ]
  17766. ))
  17767. characterMakers.push(() => makeCharacter(
  17768. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17769. {
  17770. front: {
  17771. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17772. weight: math.unit(184, "lb"),
  17773. name: "Front",
  17774. image: {
  17775. source: "./media/characters/xang/front.svg",
  17776. extra: 845 / 755
  17777. }
  17778. },
  17779. },
  17780. [
  17781. {
  17782. name: "Normal",
  17783. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17784. default: true
  17785. },
  17786. {
  17787. name: "Macro",
  17788. height: math.unit(0.935 * 146, "feet")
  17789. },
  17790. {
  17791. name: "Megamacro",
  17792. height: math.unit(0.935 * 3, "miles")
  17793. },
  17794. ]
  17795. ))
  17796. characterMakers.push(() => makeCharacter(
  17797. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17798. {
  17799. frontDressed: {
  17800. height: math.unit(5 + 7 / 12, "feet"),
  17801. weight: math.unit(140, "lb"),
  17802. name: "Front (Dressed)",
  17803. image: {
  17804. source: "./media/characters/doc-weardno/front-dressed.svg",
  17805. extra: 263 / 234
  17806. }
  17807. },
  17808. backDressed: {
  17809. height: math.unit(5 + 7 / 12, "feet"),
  17810. weight: math.unit(140, "lb"),
  17811. name: "Back (Dressed)",
  17812. image: {
  17813. source: "./media/characters/doc-weardno/back-dressed.svg",
  17814. extra: 266 / 238
  17815. }
  17816. },
  17817. front: {
  17818. height: math.unit(5 + 7 / 12, "feet"),
  17819. weight: math.unit(140, "lb"),
  17820. name: "Front",
  17821. image: {
  17822. source: "./media/characters/doc-weardno/front.svg",
  17823. extra: 254 / 233
  17824. }
  17825. },
  17826. },
  17827. [
  17828. {
  17829. name: "Micro",
  17830. height: math.unit(3, "inches")
  17831. },
  17832. {
  17833. name: "Normal",
  17834. height: math.unit(5 + 7 / 12, "feet"),
  17835. default: true
  17836. },
  17837. {
  17838. name: "Macro",
  17839. height: math.unit(25, "feet")
  17840. },
  17841. {
  17842. name: "Megamacro",
  17843. height: math.unit(2, "miles")
  17844. },
  17845. ]
  17846. ))
  17847. characterMakers.push(() => makeCharacter(
  17848. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17849. {
  17850. front: {
  17851. height: math.unit(6 + 2 / 12, "feet"),
  17852. weight: math.unit(153, "lb"),
  17853. name: "Front",
  17854. image: {
  17855. source: "./media/characters/seth-whilst/front.svg",
  17856. bottom: 0.07
  17857. }
  17858. },
  17859. },
  17860. [
  17861. {
  17862. name: "Micro",
  17863. height: math.unit(5, "inches")
  17864. },
  17865. {
  17866. name: "Normal",
  17867. height: math.unit(6 + 2 / 12, "feet"),
  17868. default: true
  17869. },
  17870. ]
  17871. ))
  17872. characterMakers.push(() => makeCharacter(
  17873. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17874. {
  17875. front: {
  17876. height: math.unit(3, "inches"),
  17877. weight: math.unit(8, "grams"),
  17878. name: "Front",
  17879. image: {
  17880. source: "./media/characters/pocket-jabari/front.svg",
  17881. extra: 1024 / 974,
  17882. bottom: 0.039
  17883. }
  17884. },
  17885. },
  17886. [
  17887. {
  17888. name: "Minimicro",
  17889. height: math.unit(8, "mm")
  17890. },
  17891. {
  17892. name: "Micro",
  17893. height: math.unit(3, "inches"),
  17894. default: true
  17895. },
  17896. {
  17897. name: "Normal",
  17898. height: math.unit(3, "feet")
  17899. },
  17900. ]
  17901. ))
  17902. characterMakers.push(() => makeCharacter(
  17903. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17904. {
  17905. front: {
  17906. height: math.unit(15, "feet"),
  17907. weight: math.unit(3280, "lb"),
  17908. name: "Front",
  17909. image: {
  17910. source: "./media/characters/sapphy/front.svg",
  17911. extra: 671 / 577,
  17912. bottom: 0.085
  17913. }
  17914. },
  17915. back: {
  17916. height: math.unit(15, "feet"),
  17917. weight: math.unit(3280, "lb"),
  17918. name: "Back",
  17919. image: {
  17920. source: "./media/characters/sapphy/back.svg",
  17921. extra: 631 / 607,
  17922. bottom: 0.045
  17923. }
  17924. },
  17925. },
  17926. [
  17927. {
  17928. name: "Normal",
  17929. height: math.unit(15, "feet")
  17930. },
  17931. {
  17932. name: "Casual Macro",
  17933. height: math.unit(120, "feet")
  17934. },
  17935. {
  17936. name: "Macro",
  17937. height: math.unit(2150, "feet"),
  17938. default: true
  17939. },
  17940. {
  17941. name: "Megamacro",
  17942. height: math.unit(8, "miles")
  17943. },
  17944. {
  17945. name: "Galaxy Mom",
  17946. height: math.unit(6, "megalightyears")
  17947. },
  17948. ]
  17949. ))
  17950. characterMakers.push(() => makeCharacter(
  17951. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17952. {
  17953. front: {
  17954. height: math.unit(6, "feet"),
  17955. weight: math.unit(170, "lb"),
  17956. name: "Front",
  17957. image: {
  17958. source: "./media/characters/kiro/front.svg",
  17959. extra: 1064 / 1012,
  17960. bottom: 0.052
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Micro",
  17967. height: math.unit(6, "inches")
  17968. },
  17969. {
  17970. name: "Normal",
  17971. height: math.unit(6, "feet"),
  17972. default: true
  17973. },
  17974. {
  17975. name: "Macro",
  17976. height: math.unit(72, "feet")
  17977. },
  17978. ]
  17979. ))
  17980. characterMakers.push(() => makeCharacter(
  17981. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17982. {
  17983. front: {
  17984. height: math.unit(5 + 9 / 12, "feet"),
  17985. weight: math.unit(175, "lb"),
  17986. name: "Front",
  17987. image: {
  17988. source: "./media/characters/irishfox/front.svg",
  17989. extra: 1912 / 1680,
  17990. bottom: 0.02
  17991. }
  17992. },
  17993. },
  17994. [
  17995. {
  17996. name: "Nano",
  17997. height: math.unit(1, "mm")
  17998. },
  17999. {
  18000. name: "Micro",
  18001. height: math.unit(2, "inches")
  18002. },
  18003. {
  18004. name: "Normal",
  18005. height: math.unit(5 + 9 / 12, "feet"),
  18006. default: true
  18007. },
  18008. {
  18009. name: "Macro",
  18010. height: math.unit(45, "feet")
  18011. },
  18012. ]
  18013. ))
  18014. characterMakers.push(() => makeCharacter(
  18015. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18016. {
  18017. front: {
  18018. height: math.unit(6 + 1 / 12, "feet"),
  18019. weight: math.unit(150, "lb"),
  18020. name: "Front",
  18021. image: {
  18022. source: "./media/characters/aronai-sieyes/front.svg",
  18023. extra: 1556 / 1480,
  18024. bottom: 0.015
  18025. }
  18026. },
  18027. side: {
  18028. height: math.unit(6 + 1 / 12, "feet"),
  18029. weight: math.unit(150, "lb"),
  18030. name: "Side",
  18031. image: {
  18032. source: "./media/characters/aronai-sieyes/side.svg",
  18033. extra: 1433 / 1390,
  18034. bottom: 0.0393
  18035. }
  18036. },
  18037. back: {
  18038. height: math.unit(6 + 1 / 12, "feet"),
  18039. weight: math.unit(150, "lb"),
  18040. name: "Back",
  18041. image: {
  18042. source: "./media/characters/aronai-sieyes/back.svg",
  18043. extra: 1544 / 1494,
  18044. bottom: 0.02
  18045. }
  18046. },
  18047. frontClothed: {
  18048. height: math.unit(6 + 1 / 12, "feet"),
  18049. weight: math.unit(150, "lb"),
  18050. name: "Front (Clothed)",
  18051. image: {
  18052. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18053. extra: 1582 / 1527
  18054. }
  18055. },
  18056. feral: {
  18057. height: math.unit(18, "feet"),
  18058. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18059. name: "Feral",
  18060. image: {
  18061. source: "./media/characters/aronai-sieyes/feral.svg",
  18062. extra: 1530 / 1240,
  18063. bottom: 0.035
  18064. }
  18065. },
  18066. },
  18067. [
  18068. {
  18069. name: "Micro",
  18070. height: math.unit(2, "inches")
  18071. },
  18072. {
  18073. name: "Normal",
  18074. height: math.unit(6 + 1 / 12, "feet"),
  18075. default: true
  18076. }
  18077. ]
  18078. ))
  18079. characterMakers.push(() => makeCharacter(
  18080. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18081. {
  18082. front: {
  18083. height: math.unit(12, "feet"),
  18084. weight: math.unit(410, "kg"),
  18085. name: "Front",
  18086. image: {
  18087. source: "./media/characters/xuna/front.svg",
  18088. extra: 2184 / 1980
  18089. }
  18090. },
  18091. side: {
  18092. height: math.unit(12, "feet"),
  18093. weight: math.unit(410, "kg"),
  18094. name: "Side",
  18095. image: {
  18096. source: "./media/characters/xuna/side.svg",
  18097. extra: 2184 / 1980
  18098. }
  18099. },
  18100. back: {
  18101. height: math.unit(12, "feet"),
  18102. weight: math.unit(410, "kg"),
  18103. name: "Back",
  18104. image: {
  18105. source: "./media/characters/xuna/back.svg",
  18106. extra: 2184 / 1980
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Nano glow",
  18113. height: math.unit(10, "nm")
  18114. },
  18115. {
  18116. name: "Micro floof",
  18117. height: math.unit(0.3, "m")
  18118. },
  18119. {
  18120. name: "Huggable softy boi",
  18121. height: math.unit(3.6576, "m"),
  18122. default: true
  18123. },
  18124. {
  18125. name: "Admirable floof",
  18126. height: math.unit(80, "meters")
  18127. },
  18128. {
  18129. name: "Gentle macro",
  18130. height: math.unit(300, "meters")
  18131. },
  18132. {
  18133. name: "Very careful floof",
  18134. height: math.unit(3200, "meters")
  18135. },
  18136. {
  18137. name: "The mega floof",
  18138. height: math.unit(36000, "meters")
  18139. },
  18140. {
  18141. name: "Giga-fur-Wicker",
  18142. height: math.unit(4800000, "meters")
  18143. },
  18144. {
  18145. name: "Licky world",
  18146. height: math.unit(20000000, "meters")
  18147. },
  18148. {
  18149. name: "Floofy cyan sun",
  18150. height: math.unit(1500000000, "meters")
  18151. },
  18152. {
  18153. name: "Milky Wicker",
  18154. height: math.unit(1000000000000000000000, "meters")
  18155. },
  18156. {
  18157. name: "The observing Wicker",
  18158. height: math.unit(999999999999999999999999999, "meters")
  18159. },
  18160. ]
  18161. ))
  18162. characterMakers.push(() => makeCharacter(
  18163. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18164. {
  18165. front: {
  18166. height: math.unit(5 + 9 / 12, "feet"),
  18167. weight: math.unit(150, "lb"),
  18168. name: "Front",
  18169. image: {
  18170. source: "./media/characters/arokha-sieyes/front.svg",
  18171. extra: 1425 / 1284,
  18172. bottom: 0.05
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Normal",
  18179. height: math.unit(5 + 9 / 12, "feet")
  18180. },
  18181. {
  18182. name: "Macro",
  18183. height: math.unit(30, "meters"),
  18184. default: true
  18185. },
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18190. {
  18191. front: {
  18192. height: math.unit(6, "feet"),
  18193. weight: math.unit(180, "lb"),
  18194. name: "Front",
  18195. image: {
  18196. source: "./media/characters/arokh-sieyes/front.svg",
  18197. extra: 1830 / 1769,
  18198. bottom: 0.01
  18199. }
  18200. },
  18201. },
  18202. [
  18203. {
  18204. name: "Normal",
  18205. height: math.unit(6, "feet")
  18206. },
  18207. {
  18208. name: "Macro",
  18209. height: math.unit(30, "meters"),
  18210. default: true
  18211. },
  18212. ]
  18213. ))
  18214. characterMakers.push(() => makeCharacter(
  18215. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18216. {
  18217. side: {
  18218. height: math.unit(13 + 1 / 12, "feet"),
  18219. weight: math.unit(8.5, "tonnes"),
  18220. name: "Side",
  18221. image: {
  18222. source: "./media/characters/goldeneye/side.svg",
  18223. extra: 1182 / 778,
  18224. bottom: 0.067
  18225. }
  18226. },
  18227. paw: {
  18228. height: math.unit(3.4, "feet"),
  18229. name: "Paw",
  18230. image: {
  18231. source: "./media/characters/goldeneye/paw.svg"
  18232. }
  18233. },
  18234. },
  18235. [
  18236. {
  18237. name: "Normal",
  18238. height: math.unit(13 + 1 / 12, "feet"),
  18239. default: true
  18240. },
  18241. ]
  18242. ))
  18243. characterMakers.push(() => makeCharacter(
  18244. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18245. {
  18246. front: {
  18247. height: math.unit(6 + 1 / 12, "feet"),
  18248. weight: math.unit(210, "lb"),
  18249. name: "Front",
  18250. image: {
  18251. source: "./media/characters/leonardo-lycheborne/front.svg",
  18252. extra: 390 / 365,
  18253. bottom: 0.032
  18254. }
  18255. },
  18256. side: {
  18257. height: math.unit(6 + 1 / 12, "feet"),
  18258. weight: math.unit(210, "lb"),
  18259. name: "Side",
  18260. image: {
  18261. source: "./media/characters/leonardo-lycheborne/side.svg",
  18262. extra: 390 / 365,
  18263. bottom: 0.005
  18264. }
  18265. },
  18266. back: {
  18267. height: math.unit(6 + 1 / 12, "feet"),
  18268. weight: math.unit(210, "lb"),
  18269. name: "Back",
  18270. image: {
  18271. source: "./media/characters/leonardo-lycheborne/back.svg",
  18272. extra: 392 / 366,
  18273. bottom: 0.01
  18274. }
  18275. },
  18276. hand: {
  18277. height: math.unit(1.08, "feet"),
  18278. name: "Hand",
  18279. image: {
  18280. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18281. }
  18282. },
  18283. foot: {
  18284. height: math.unit(1.32, "feet"),
  18285. name: "Foot",
  18286. image: {
  18287. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18288. }
  18289. },
  18290. were: {
  18291. height: math.unit(20, "feet"),
  18292. weight: math.unit(7800, "lb"),
  18293. name: "Were",
  18294. image: {
  18295. source: "./media/characters/leonardo-lycheborne/were.svg",
  18296. extra: 308 / 294,
  18297. bottom: 0.048
  18298. }
  18299. },
  18300. feral: {
  18301. height: math.unit(7.5, "feet"),
  18302. weight: math.unit(600, "lb"),
  18303. name: "Feral",
  18304. image: {
  18305. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18306. extra: 210 / 186,
  18307. bottom: 0.108
  18308. }
  18309. },
  18310. taur: {
  18311. height: math.unit(11, "feet"),
  18312. weight: math.unit(3300, "lb"),
  18313. name: "Taur",
  18314. image: {
  18315. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18316. extra: 320 / 303,
  18317. bottom: 0.025
  18318. }
  18319. },
  18320. barghest: {
  18321. height: math.unit(11, "feet"),
  18322. weight: math.unit(1300, "lb"),
  18323. name: "Barghest",
  18324. image: {
  18325. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18326. extra: 323 / 302,
  18327. bottom: 0.027
  18328. }
  18329. },
  18330. dick: {
  18331. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18332. name: "Dick",
  18333. image: {
  18334. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18335. }
  18336. },
  18337. dickWere: {
  18338. height: math.unit((20) / 3.8, "feet"),
  18339. name: "Dick (Were)",
  18340. image: {
  18341. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18342. }
  18343. },
  18344. },
  18345. [
  18346. {
  18347. name: "Normal",
  18348. height: math.unit(6 + 1 / 12, "feet"),
  18349. default: true
  18350. },
  18351. ]
  18352. ))
  18353. characterMakers.push(() => makeCharacter(
  18354. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18355. {
  18356. front: {
  18357. height: math.unit(10, "feet"),
  18358. weight: math.unit(350, "lb"),
  18359. name: "Front",
  18360. image: {
  18361. source: "./media/characters/jet/front.svg",
  18362. extra: 2050 / 1980,
  18363. bottom: 0.013
  18364. }
  18365. },
  18366. back: {
  18367. height: math.unit(10, "feet"),
  18368. weight: math.unit(350, "lb"),
  18369. name: "Back",
  18370. image: {
  18371. source: "./media/characters/jet/back.svg",
  18372. extra: 2050 / 1980,
  18373. bottom: 0.013
  18374. }
  18375. },
  18376. },
  18377. [
  18378. {
  18379. name: "Micro",
  18380. height: math.unit(6, "inches")
  18381. },
  18382. {
  18383. name: "Normal",
  18384. height: math.unit(10, "feet"),
  18385. default: true
  18386. },
  18387. {
  18388. name: "Macro",
  18389. height: math.unit(100, "feet")
  18390. },
  18391. ]
  18392. ))
  18393. characterMakers.push(() => makeCharacter(
  18394. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18395. {
  18396. front: {
  18397. height: math.unit(15, "feet"),
  18398. weight: math.unit(2800, "lb"),
  18399. name: "Front",
  18400. image: {
  18401. source: "./media/characters/tanarath/front.svg",
  18402. extra: 2392 / 2220,
  18403. bottom: 0.03
  18404. }
  18405. },
  18406. back: {
  18407. height: math.unit(15, "feet"),
  18408. weight: math.unit(2800, "lb"),
  18409. name: "Back",
  18410. image: {
  18411. source: "./media/characters/tanarath/back.svg",
  18412. extra: 2392 / 2220,
  18413. bottom: 0.03
  18414. }
  18415. },
  18416. },
  18417. [
  18418. {
  18419. name: "Normal",
  18420. height: math.unit(15, "feet"),
  18421. default: true
  18422. },
  18423. ]
  18424. ))
  18425. characterMakers.push(() => makeCharacter(
  18426. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18427. {
  18428. front: {
  18429. height: math.unit(7 + 1 / 12, "feet"),
  18430. weight: math.unit(175, "lb"),
  18431. name: "Front",
  18432. image: {
  18433. source: "./media/characters/patty-cattybatty/front.svg",
  18434. extra: 908 / 874,
  18435. bottom: 0.025
  18436. }
  18437. },
  18438. },
  18439. [
  18440. {
  18441. name: "Micro",
  18442. height: math.unit(1, "inch")
  18443. },
  18444. {
  18445. name: "Normal",
  18446. height: math.unit(7 + 1 / 12, "feet")
  18447. },
  18448. {
  18449. name: "Mini Macro",
  18450. height: math.unit(155, "feet")
  18451. },
  18452. {
  18453. name: "Macro",
  18454. height: math.unit(1077, "feet")
  18455. },
  18456. {
  18457. name: "Mega Macro",
  18458. height: math.unit(47650, "feet"),
  18459. default: true
  18460. },
  18461. {
  18462. name: "Giga Macro",
  18463. height: math.unit(440, "miles")
  18464. },
  18465. {
  18466. name: "Tera Macro",
  18467. height: math.unit(8700, "miles")
  18468. },
  18469. {
  18470. name: "Planetary Macro",
  18471. height: math.unit(32700, "miles")
  18472. },
  18473. {
  18474. name: "Solar Macro",
  18475. height: math.unit(550000, "miles")
  18476. },
  18477. {
  18478. name: "Celestial Macro",
  18479. height: math.unit(2.5, "AU")
  18480. },
  18481. ]
  18482. ))
  18483. characterMakers.push(() => makeCharacter(
  18484. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18485. {
  18486. front: {
  18487. height: math.unit(4 + 5 / 12, "feet"),
  18488. weight: math.unit(90, "lb"),
  18489. name: "Front",
  18490. image: {
  18491. source: "./media/characters/cappu/front.svg",
  18492. extra: 1247 / 1152,
  18493. bottom: 0.012
  18494. }
  18495. },
  18496. },
  18497. [
  18498. {
  18499. name: "Normal",
  18500. height: math.unit(4 + 5 / 12, "feet"),
  18501. default: true
  18502. },
  18503. ]
  18504. ))
  18505. characterMakers.push(() => makeCharacter(
  18506. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18507. {
  18508. frontDressed: {
  18509. height: math.unit(70, "cm"),
  18510. weight: math.unit(6, "kg"),
  18511. name: "Front (Dressed)",
  18512. image: {
  18513. source: "./media/characters/sebi/front-dressed.svg",
  18514. extra: 713.5 / 686.5,
  18515. bottom: 0.003
  18516. }
  18517. },
  18518. front: {
  18519. height: math.unit(70, "cm"),
  18520. weight: math.unit(5, "kg"),
  18521. name: "Front",
  18522. image: {
  18523. source: "./media/characters/sebi/front.svg",
  18524. extra: 713.5 / 686.5,
  18525. bottom: 0.003
  18526. }
  18527. }
  18528. },
  18529. [
  18530. {
  18531. name: "Normal",
  18532. height: math.unit(70, "cm"),
  18533. default: true
  18534. },
  18535. {
  18536. name: "Macro",
  18537. height: math.unit(8, "meters")
  18538. },
  18539. ]
  18540. ))
  18541. characterMakers.push(() => makeCharacter(
  18542. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18543. {
  18544. front: {
  18545. height: math.unit(6, "feet"),
  18546. weight: math.unit(150, "lb"),
  18547. name: "Front",
  18548. image: {
  18549. source: "./media/characters/typhek/front.svg",
  18550. extra: 1948 / 1929,
  18551. bottom: 0.025
  18552. }
  18553. },
  18554. side: {
  18555. height: math.unit(6, "feet"),
  18556. weight: math.unit(150, "lb"),
  18557. name: "Side",
  18558. image: {
  18559. source: "./media/characters/typhek/side.svg",
  18560. extra: 2034 / 2010,
  18561. bottom: 0.003
  18562. }
  18563. },
  18564. back: {
  18565. height: math.unit(6, "feet"),
  18566. weight: math.unit(150, "lb"),
  18567. name: "Back",
  18568. image: {
  18569. source: "./media/characters/typhek/back.svg",
  18570. extra: 2005 / 1978,
  18571. bottom: 0.004
  18572. }
  18573. },
  18574. palm: {
  18575. height: math.unit(1.2, "feet"),
  18576. name: "Palm",
  18577. image: {
  18578. source: "./media/characters/typhek/palm.svg"
  18579. }
  18580. },
  18581. fist: {
  18582. height: math.unit(1.1, "feet"),
  18583. name: "Fist",
  18584. image: {
  18585. source: "./media/characters/typhek/fist.svg"
  18586. }
  18587. },
  18588. foot: {
  18589. height: math.unit(1.57, "feet"),
  18590. name: "Foot",
  18591. image: {
  18592. source: "./media/characters/typhek/foot.svg"
  18593. }
  18594. },
  18595. sole: {
  18596. height: math.unit(2.05, "feet"),
  18597. name: "Sole",
  18598. image: {
  18599. source: "./media/characters/typhek/sole.svg"
  18600. }
  18601. },
  18602. },
  18603. [
  18604. {
  18605. name: "Macro",
  18606. height: math.unit(40, "stories"),
  18607. default: true
  18608. },
  18609. {
  18610. name: "Megamacro",
  18611. height: math.unit(1, "mile")
  18612. },
  18613. {
  18614. name: "Gigamacro",
  18615. height: math.unit(4000, "solarradii")
  18616. },
  18617. {
  18618. name: "Universal",
  18619. height: math.unit(1.1, "universes")
  18620. }
  18621. ]
  18622. ))
  18623. characterMakers.push(() => makeCharacter(
  18624. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18625. {
  18626. side: {
  18627. height: math.unit(5 + 7 / 12, "feet"),
  18628. weight: math.unit(150, "lb"),
  18629. name: "Side",
  18630. image: {
  18631. source: "./media/characters/kassy/side.svg",
  18632. extra: 1280 / 1225,
  18633. bottom: 0.002
  18634. }
  18635. },
  18636. front: {
  18637. height: math.unit(5 + 7 / 12, "feet"),
  18638. weight: math.unit(150, "lb"),
  18639. name: "Front",
  18640. image: {
  18641. source: "./media/characters/kassy/front.svg",
  18642. extra: 1280 / 1225,
  18643. bottom: 0.025
  18644. }
  18645. },
  18646. back: {
  18647. height: math.unit(5 + 7 / 12, "feet"),
  18648. weight: math.unit(150, "lb"),
  18649. name: "Back",
  18650. image: {
  18651. source: "./media/characters/kassy/back.svg",
  18652. extra: 1280 / 1225,
  18653. bottom: 0.002
  18654. }
  18655. },
  18656. foot: {
  18657. height: math.unit(1.266, "feet"),
  18658. name: "Foot",
  18659. image: {
  18660. source: "./media/characters/kassy/foot.svg"
  18661. }
  18662. },
  18663. },
  18664. [
  18665. {
  18666. name: "Normal",
  18667. height: math.unit(5 + 7 / 12, "feet")
  18668. },
  18669. {
  18670. name: "Macro",
  18671. height: math.unit(137, "feet"),
  18672. default: true
  18673. },
  18674. {
  18675. name: "Megamacro",
  18676. height: math.unit(1, "mile")
  18677. },
  18678. ]
  18679. ))
  18680. characterMakers.push(() => makeCharacter(
  18681. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18682. {
  18683. front: {
  18684. height: math.unit(6 + 1 / 12, "feet"),
  18685. weight: math.unit(200, "lb"),
  18686. name: "Front",
  18687. image: {
  18688. source: "./media/characters/neil/front.svg",
  18689. extra: 1326 / 1250,
  18690. bottom: 0.023
  18691. }
  18692. },
  18693. },
  18694. [
  18695. {
  18696. name: "Normal",
  18697. height: math.unit(6 + 1 / 12, "feet"),
  18698. default: true
  18699. },
  18700. {
  18701. name: "Macro",
  18702. height: math.unit(200, "feet")
  18703. },
  18704. ]
  18705. ))
  18706. characterMakers.push(() => makeCharacter(
  18707. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18708. {
  18709. front: {
  18710. height: math.unit(5 + 9 / 12, "feet"),
  18711. weight: math.unit(190, "lb"),
  18712. name: "Front",
  18713. image: {
  18714. source: "./media/characters/atticus/front.svg",
  18715. extra: 2934 / 2785,
  18716. bottom: 0.025
  18717. }
  18718. },
  18719. },
  18720. [
  18721. {
  18722. name: "Normal",
  18723. height: math.unit(5 + 9 / 12, "feet"),
  18724. default: true
  18725. },
  18726. {
  18727. name: "Macro",
  18728. height: math.unit(180, "feet")
  18729. },
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18734. {
  18735. side: {
  18736. height: math.unit(9, "feet"),
  18737. weight: math.unit(650, "lb"),
  18738. name: "Side",
  18739. image: {
  18740. source: "./media/characters/milo/side.svg",
  18741. extra: 2644 / 2310,
  18742. bottom: 0.032
  18743. }
  18744. },
  18745. },
  18746. [
  18747. {
  18748. name: "Normal",
  18749. height: math.unit(9, "feet"),
  18750. default: true
  18751. },
  18752. {
  18753. name: "Macro",
  18754. height: math.unit(300, "feet")
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18760. {
  18761. side: {
  18762. height: math.unit(8, "meters"),
  18763. weight: math.unit(90000, "kg"),
  18764. name: "Side",
  18765. image: {
  18766. source: "./media/characters/ijzer/side.svg",
  18767. extra: 2756 / 1600,
  18768. bottom: 0.01
  18769. }
  18770. },
  18771. },
  18772. [
  18773. {
  18774. name: "Small",
  18775. height: math.unit(3, "meters")
  18776. },
  18777. {
  18778. name: "Normal",
  18779. height: math.unit(8, "meters"),
  18780. default: true
  18781. },
  18782. {
  18783. name: "Normal+",
  18784. height: math.unit(10, "meters")
  18785. },
  18786. {
  18787. name: "Bigger",
  18788. height: math.unit(24, "meters")
  18789. },
  18790. {
  18791. name: "Huge",
  18792. height: math.unit(80, "meters")
  18793. },
  18794. ]
  18795. ))
  18796. characterMakers.push(() => makeCharacter(
  18797. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18798. {
  18799. front: {
  18800. height: math.unit(6 + 2 / 12, "feet"),
  18801. weight: math.unit(153, "lb"),
  18802. name: "Front",
  18803. image: {
  18804. source: "./media/characters/luca-cervicum/front.svg",
  18805. extra: 370 / 327,
  18806. bottom: 0.015
  18807. }
  18808. },
  18809. back: {
  18810. height: math.unit(6 + 2 / 12, "feet"),
  18811. weight: math.unit(153, "lb"),
  18812. name: "Back",
  18813. image: {
  18814. source: "./media/characters/luca-cervicum/back.svg",
  18815. extra: 367 / 333,
  18816. bottom: 0.005
  18817. }
  18818. },
  18819. frontGear: {
  18820. height: math.unit(6 + 2 / 12, "feet"),
  18821. weight: math.unit(173, "lb"),
  18822. name: "Front (Gear)",
  18823. image: {
  18824. source: "./media/characters/luca-cervicum/front-gear.svg",
  18825. extra: 377 / 333,
  18826. bottom: 0.006
  18827. }
  18828. },
  18829. },
  18830. [
  18831. {
  18832. name: "Normal",
  18833. height: math.unit(6 + 2 / 12, "feet"),
  18834. default: true
  18835. },
  18836. ]
  18837. ))
  18838. characterMakers.push(() => makeCharacter(
  18839. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18840. {
  18841. front: {
  18842. height: math.unit(6 + 1 / 12, "feet"),
  18843. weight: math.unit(304, "lb"),
  18844. name: "Front",
  18845. image: {
  18846. source: "./media/characters/oliver/front.svg",
  18847. extra: 157 / 143,
  18848. bottom: 0.08
  18849. }
  18850. },
  18851. },
  18852. [
  18853. {
  18854. name: "Normal",
  18855. height: math.unit(6 + 1 / 12, "feet"),
  18856. default: true
  18857. },
  18858. ]
  18859. ))
  18860. characterMakers.push(() => makeCharacter(
  18861. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18862. {
  18863. front: {
  18864. height: math.unit(5 + 7 / 12, "feet"),
  18865. weight: math.unit(140, "lb"),
  18866. name: "Front",
  18867. image: {
  18868. source: "./media/characters/shane/front.svg",
  18869. extra: 304 / 289,
  18870. bottom: 0.005
  18871. }
  18872. },
  18873. },
  18874. [
  18875. {
  18876. name: "Normal",
  18877. height: math.unit(5 + 7 / 12, "feet"),
  18878. default: true
  18879. },
  18880. ]
  18881. ))
  18882. characterMakers.push(() => makeCharacter(
  18883. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18884. {
  18885. front: {
  18886. height: math.unit(5 + 9 / 12, "feet"),
  18887. weight: math.unit(178, "lb"),
  18888. name: "Front",
  18889. image: {
  18890. source: "./media/characters/shin/front.svg",
  18891. extra: 159 / 151,
  18892. bottom: 0.015
  18893. }
  18894. },
  18895. },
  18896. [
  18897. {
  18898. name: "Normal",
  18899. height: math.unit(5 + 9 / 12, "feet"),
  18900. default: true
  18901. },
  18902. ]
  18903. ))
  18904. characterMakers.push(() => makeCharacter(
  18905. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18906. {
  18907. front: {
  18908. height: math.unit(5 + 10 / 12, "feet"),
  18909. weight: math.unit(168, "lb"),
  18910. name: "Front",
  18911. image: {
  18912. source: "./media/characters/xerxes/front.svg",
  18913. extra: 282 / 260,
  18914. bottom: 0.045
  18915. }
  18916. },
  18917. },
  18918. [
  18919. {
  18920. name: "Normal",
  18921. height: math.unit(5 + 10 / 12, "feet"),
  18922. default: true
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18928. {
  18929. front: {
  18930. height: math.unit(6 + 7 / 12, "feet"),
  18931. weight: math.unit(208, "lb"),
  18932. name: "Front",
  18933. image: {
  18934. source: "./media/characters/chaska/front.svg",
  18935. extra: 332 / 319,
  18936. bottom: 0.015
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Normal",
  18943. height: math.unit(6 + 7 / 12, "feet"),
  18944. default: true
  18945. },
  18946. ]
  18947. ))
  18948. characterMakers.push(() => makeCharacter(
  18949. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18950. {
  18951. front: {
  18952. height: math.unit(5 + 8 / 12, "feet"),
  18953. weight: math.unit(208, "lb"),
  18954. name: "Front",
  18955. image: {
  18956. source: "./media/characters/enuk/front.svg",
  18957. extra: 437 / 406,
  18958. bottom: 0.02
  18959. }
  18960. },
  18961. },
  18962. [
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(5 + 8 / 12, "feet"),
  18966. default: true
  18967. },
  18968. ]
  18969. ))
  18970. characterMakers.push(() => makeCharacter(
  18971. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18972. {
  18973. front: {
  18974. height: math.unit(5 + 10 / 12, "feet"),
  18975. weight: math.unit(252, "lb"),
  18976. name: "Front",
  18977. image: {
  18978. source: "./media/characters/bruun/front.svg",
  18979. extra: 197 / 187,
  18980. bottom: 0.012
  18981. }
  18982. },
  18983. },
  18984. [
  18985. {
  18986. name: "Normal",
  18987. height: math.unit(5 + 10 / 12, "feet"),
  18988. default: true
  18989. },
  18990. ]
  18991. ))
  18992. characterMakers.push(() => makeCharacter(
  18993. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18994. {
  18995. front: {
  18996. height: math.unit(6 + 10 / 12, "feet"),
  18997. weight: math.unit(255, "lb"),
  18998. name: "Front",
  18999. image: {
  19000. source: "./media/characters/alexeev/front.svg",
  19001. extra: 213 / 200,
  19002. bottom: 0.05
  19003. }
  19004. },
  19005. },
  19006. [
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(6 + 10 / 12, "feet"),
  19010. default: true
  19011. },
  19012. ]
  19013. ))
  19014. characterMakers.push(() => makeCharacter(
  19015. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19016. {
  19017. front: {
  19018. height: math.unit(2 + 8 / 12, "feet"),
  19019. weight: math.unit(22, "lb"),
  19020. name: "Front",
  19021. image: {
  19022. source: "./media/characters/evelyn/front.svg",
  19023. extra: 208 / 180
  19024. }
  19025. },
  19026. },
  19027. [
  19028. {
  19029. name: "Normal",
  19030. height: math.unit(2 + 8 / 12, "feet"),
  19031. default: true
  19032. },
  19033. ]
  19034. ))
  19035. characterMakers.push(() => makeCharacter(
  19036. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19037. {
  19038. front: {
  19039. height: math.unit(5 + 9 / 12, "feet"),
  19040. weight: math.unit(139, "lb"),
  19041. name: "Front",
  19042. image: {
  19043. source: "./media/characters/inca/front.svg",
  19044. extra: 294 / 291,
  19045. bottom: 0.03
  19046. }
  19047. },
  19048. },
  19049. [
  19050. {
  19051. name: "Normal",
  19052. height: math.unit(5 + 9 / 12, "feet"),
  19053. default: true
  19054. },
  19055. ]
  19056. ))
  19057. characterMakers.push(() => makeCharacter(
  19058. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19059. {
  19060. front: {
  19061. height: math.unit(5 + 1 / 12, "feet"),
  19062. weight: math.unit(84, "lb"),
  19063. name: "Front",
  19064. image: {
  19065. source: "./media/characters/magdalene/front.svg",
  19066. extra: 293 / 273
  19067. }
  19068. },
  19069. },
  19070. [
  19071. {
  19072. name: "Normal",
  19073. height: math.unit(5 + 1 / 12, "feet"),
  19074. default: true
  19075. },
  19076. ]
  19077. ))
  19078. characterMakers.push(() => makeCharacter(
  19079. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19080. {
  19081. front: {
  19082. height: math.unit(6 + 3 / 12, "feet"),
  19083. weight: math.unit(185, "lb"),
  19084. name: "Front",
  19085. image: {
  19086. source: "./media/characters/mera/front.svg",
  19087. extra: 291 / 277,
  19088. bottom: 0.03
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(6 + 3 / 12, "feet"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19102. {
  19103. front: {
  19104. height: math.unit(6 + 7 / 12, "feet"),
  19105. weight: math.unit(160, "lb"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/ceres/front.svg",
  19109. extra: 1023 / 950,
  19110. bottom: 0.027
  19111. }
  19112. },
  19113. back: {
  19114. height: math.unit(6 + 7 / 12, "feet"),
  19115. weight: math.unit(160, "lb"),
  19116. name: "Back",
  19117. image: {
  19118. source: "./media/characters/ceres/back.svg",
  19119. extra: 1023 / 950
  19120. }
  19121. },
  19122. },
  19123. [
  19124. {
  19125. name: "Normal",
  19126. height: math.unit(6 + 7 / 12, "feet"),
  19127. default: true
  19128. },
  19129. ]
  19130. ))
  19131. characterMakers.push(() => makeCharacter(
  19132. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19133. {
  19134. front: {
  19135. height: math.unit(5 + 10 / 12, "feet"),
  19136. weight: math.unit(150, "lb"),
  19137. name: "Front",
  19138. image: {
  19139. source: "./media/characters/kris/front.svg",
  19140. extra: 885 / 803,
  19141. bottom: 0.03
  19142. }
  19143. },
  19144. },
  19145. [
  19146. {
  19147. name: "Normal",
  19148. height: math.unit(5 + 10 / 12, "feet"),
  19149. default: true
  19150. },
  19151. ]
  19152. ))
  19153. characterMakers.push(() => makeCharacter(
  19154. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19155. {
  19156. front: {
  19157. height: math.unit(7, "feet"),
  19158. weight: math.unit(120, "kg"),
  19159. name: "Front",
  19160. image: {
  19161. source: "./media/characters/taluthus/front.svg",
  19162. extra: 903 / 833,
  19163. bottom: 0.015
  19164. }
  19165. },
  19166. },
  19167. [
  19168. {
  19169. name: "Normal",
  19170. height: math.unit(7, "feet"),
  19171. default: true
  19172. },
  19173. {
  19174. name: "Macro",
  19175. height: math.unit(300, "feet")
  19176. },
  19177. ]
  19178. ))
  19179. characterMakers.push(() => makeCharacter(
  19180. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19181. {
  19182. front: {
  19183. height: math.unit(5 + 9 / 12, "feet"),
  19184. weight: math.unit(145, "lb"),
  19185. name: "Front",
  19186. image: {
  19187. source: "./media/characters/dawn/front.svg",
  19188. extra: 2094 / 2016,
  19189. bottom: 0.025
  19190. }
  19191. },
  19192. back: {
  19193. height: math.unit(5 + 9 / 12, "feet"),
  19194. weight: math.unit(160, "lb"),
  19195. name: "Back",
  19196. image: {
  19197. source: "./media/characters/dawn/back.svg",
  19198. extra: 2112 / 2080,
  19199. bottom: 0.005
  19200. }
  19201. },
  19202. },
  19203. [
  19204. {
  19205. name: "Normal",
  19206. height: math.unit(6 + 7 / 12, "feet"),
  19207. default: true
  19208. },
  19209. ]
  19210. ))
  19211. characterMakers.push(() => makeCharacter(
  19212. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19213. {
  19214. anthro: {
  19215. height: math.unit(8 + 3 / 12, "feet"),
  19216. weight: math.unit(450, "lb"),
  19217. name: "Anthro",
  19218. image: {
  19219. source: "./media/characters/arador/anthro.svg",
  19220. extra: 1835 / 1718,
  19221. bottom: 0.025
  19222. }
  19223. },
  19224. feral: {
  19225. height: math.unit(4, "feet"),
  19226. weight: math.unit(200, "lb"),
  19227. name: "Feral",
  19228. image: {
  19229. source: "./media/characters/arador/feral.svg",
  19230. extra: 1683 / 1514,
  19231. bottom: 0.07
  19232. }
  19233. },
  19234. },
  19235. [
  19236. {
  19237. name: "Normal",
  19238. height: math.unit(8 + 3 / 12, "feet")
  19239. },
  19240. {
  19241. name: "Macro",
  19242. height: math.unit(82.5, "feet"),
  19243. default: true
  19244. },
  19245. ]
  19246. ))
  19247. characterMakers.push(() => makeCharacter(
  19248. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19249. {
  19250. front: {
  19251. height: math.unit(5 + 10 / 12, "feet"),
  19252. weight: math.unit(125, "lb"),
  19253. name: "Front",
  19254. image: {
  19255. source: "./media/characters/dharsi/front.svg",
  19256. extra: 716 / 630,
  19257. bottom: 0.035
  19258. }
  19259. },
  19260. },
  19261. [
  19262. {
  19263. name: "Nano",
  19264. height: math.unit(100, "nm")
  19265. },
  19266. {
  19267. name: "Micro",
  19268. height: math.unit(2, "inches")
  19269. },
  19270. {
  19271. name: "Normal",
  19272. height: math.unit(5 + 10 / 12, "feet"),
  19273. default: true
  19274. },
  19275. {
  19276. name: "Macro",
  19277. height: math.unit(1000, "feet")
  19278. },
  19279. {
  19280. name: "Megamacro",
  19281. height: math.unit(10, "miles")
  19282. },
  19283. {
  19284. name: "Gigamacro",
  19285. height: math.unit(3000, "miles")
  19286. },
  19287. {
  19288. name: "Teramacro",
  19289. height: math.unit(500000, "miles")
  19290. },
  19291. {
  19292. name: "Teramacro+",
  19293. height: math.unit(30, "galaxies")
  19294. },
  19295. ]
  19296. ))
  19297. characterMakers.push(() => makeCharacter(
  19298. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19299. {
  19300. front: {
  19301. height: math.unit(6, "feet"),
  19302. weight: math.unit(150, "lb"),
  19303. name: "Front",
  19304. image: {
  19305. source: "./media/characters/deathy/front.svg",
  19306. extra: 1552 / 1463,
  19307. bottom: 0.025
  19308. }
  19309. },
  19310. side: {
  19311. height: math.unit(6, "feet"),
  19312. weight: math.unit(150, "lb"),
  19313. name: "Side",
  19314. image: {
  19315. source: "./media/characters/deathy/side.svg",
  19316. extra: 1604 / 1455,
  19317. bottom: 0.025
  19318. }
  19319. },
  19320. back: {
  19321. height: math.unit(6, "feet"),
  19322. weight: math.unit(150, "lb"),
  19323. name: "Back",
  19324. image: {
  19325. source: "./media/characters/deathy/back.svg",
  19326. extra: 1580 / 1463,
  19327. bottom: 0.005
  19328. }
  19329. },
  19330. },
  19331. [
  19332. {
  19333. name: "Micro",
  19334. height: math.unit(5, "millimeters")
  19335. },
  19336. {
  19337. name: "Normal",
  19338. height: math.unit(6 + 5 / 12, "feet"),
  19339. default: true
  19340. },
  19341. ]
  19342. ))
  19343. characterMakers.push(() => makeCharacter(
  19344. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19345. {
  19346. front: {
  19347. height: math.unit(16, "feet"),
  19348. weight: math.unit(4000, "lb"),
  19349. name: "Front",
  19350. image: {
  19351. source: "./media/characters/juniper/front.svg",
  19352. bottom: 0.04
  19353. }
  19354. },
  19355. },
  19356. [
  19357. {
  19358. name: "Normal",
  19359. height: math.unit(16, "feet"),
  19360. default: true
  19361. },
  19362. ]
  19363. ))
  19364. characterMakers.push(() => makeCharacter(
  19365. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19366. {
  19367. front: {
  19368. height: math.unit(6, "feet"),
  19369. weight: math.unit(150, "lb"),
  19370. name: "Front",
  19371. image: {
  19372. source: "./media/characters/hipster/front.svg",
  19373. extra: 1312 / 1209,
  19374. bottom: 0.025
  19375. }
  19376. },
  19377. back: {
  19378. height: math.unit(6, "feet"),
  19379. weight: math.unit(150, "lb"),
  19380. name: "Back",
  19381. image: {
  19382. source: "./media/characters/hipster/back.svg",
  19383. extra: 1281 / 1196,
  19384. bottom: 0.01
  19385. }
  19386. },
  19387. },
  19388. [
  19389. {
  19390. name: "Micro",
  19391. height: math.unit(1, "mm")
  19392. },
  19393. {
  19394. name: "Normal",
  19395. height: math.unit(4, "inches"),
  19396. default: true
  19397. },
  19398. {
  19399. name: "Macro",
  19400. height: math.unit(500, "feet")
  19401. },
  19402. {
  19403. name: "Megamacro",
  19404. height: math.unit(1000, "miles")
  19405. },
  19406. ]
  19407. ))
  19408. characterMakers.push(() => makeCharacter(
  19409. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19410. {
  19411. front: {
  19412. height: math.unit(6, "feet"),
  19413. weight: math.unit(150, "lb"),
  19414. name: "Front",
  19415. image: {
  19416. source: "./media/characters/tendirmuldr/front.svg",
  19417. extra: 1878 / 1772,
  19418. bottom: 0.015
  19419. }
  19420. },
  19421. },
  19422. [
  19423. {
  19424. name: "Megamacro",
  19425. height: math.unit(1500, "miles"),
  19426. default: true
  19427. },
  19428. ]
  19429. ))
  19430. characterMakers.push(() => makeCharacter(
  19431. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19432. {
  19433. front: {
  19434. height: math.unit(14, "feet"),
  19435. weight: math.unit(12000, "lb"),
  19436. name: "Front",
  19437. image: {
  19438. source: "./media/characters/mort/front.svg",
  19439. extra: 365 / 318,
  19440. bottom: 0.01
  19441. }
  19442. },
  19443. side: {
  19444. height: math.unit(14, "feet"),
  19445. weight: math.unit(12000, "lb"),
  19446. name: "Side",
  19447. image: {
  19448. source: "./media/characters/mort/side.svg",
  19449. extra: 365 / 318,
  19450. bottom: 0.052
  19451. },
  19452. default: true
  19453. },
  19454. back: {
  19455. height: math.unit(14, "feet"),
  19456. weight: math.unit(12000, "lb"),
  19457. name: "Back",
  19458. image: {
  19459. source: "./media/characters/mort/back.svg",
  19460. extra: 371 / 332,
  19461. bottom: 0.18
  19462. }
  19463. },
  19464. },
  19465. [
  19466. {
  19467. name: "Normal",
  19468. height: math.unit(14, "feet"),
  19469. default: true
  19470. },
  19471. ]
  19472. ))
  19473. characterMakers.push(() => makeCharacter(
  19474. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19475. {
  19476. front: {
  19477. height: math.unit(8, "feet"),
  19478. weight: math.unit(1, "ton"),
  19479. name: "Front",
  19480. image: {
  19481. source: "./media/characters/lycoa/front.svg",
  19482. extra: 1875 / 1789,
  19483. bottom: 0.022
  19484. }
  19485. },
  19486. back: {
  19487. height: math.unit(8, "feet"),
  19488. weight: math.unit(1, "ton"),
  19489. name: "Back",
  19490. image: {
  19491. source: "./media/characters/lycoa/back.svg",
  19492. extra: 1835 / 1781,
  19493. bottom: 0.03
  19494. }
  19495. },
  19496. head: {
  19497. height: math.unit(2.1, "feet"),
  19498. name: "Head",
  19499. image: {
  19500. source: "./media/characters/lycoa/head.svg"
  19501. }
  19502. },
  19503. tailmaw: {
  19504. height: math.unit(1.9, "feet"),
  19505. name: "Tailmaw",
  19506. image: {
  19507. source: "./media/characters/lycoa/tailmaw.svg"
  19508. }
  19509. },
  19510. tentacles: {
  19511. height: math.unit(2.1, "feet"),
  19512. name: "Tentacles",
  19513. image: {
  19514. source: "./media/characters/lycoa/tentacles.svg"
  19515. }
  19516. },
  19517. dick: {
  19518. height: math.unit(1.73, "feet"),
  19519. name: "Dick",
  19520. image: {
  19521. source: "./media/characters/lycoa/dick.svg"
  19522. }
  19523. },
  19524. },
  19525. [
  19526. {
  19527. name: "Normal",
  19528. height: math.unit(8, "feet"),
  19529. default: true
  19530. },
  19531. {
  19532. name: "Macro",
  19533. height: math.unit(30, "feet")
  19534. },
  19535. ]
  19536. ))
  19537. characterMakers.push(() => makeCharacter(
  19538. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19539. {
  19540. front: {
  19541. height: math.unit(4 + 2 / 12, "feet"),
  19542. weight: math.unit(70, "lb"),
  19543. name: "Front",
  19544. image: {
  19545. source: "./media/characters/naldara/front.svg",
  19546. extra: 841 / 720,
  19547. bottom: 0.04
  19548. }
  19549. },
  19550. naga: {
  19551. height: math.unit(23, "feet"),
  19552. weight: math.unit(15000, "kg"),
  19553. name: "Naga",
  19554. image: {
  19555. source: "./media/characters/naldara/naga.svg",
  19556. extra: 3290 / 2959,
  19557. bottom: 124 / 3432
  19558. }
  19559. },
  19560. },
  19561. [
  19562. {
  19563. name: "Normal",
  19564. height: math.unit(4 + 2 / 12, "feet"),
  19565. default: true
  19566. },
  19567. ]
  19568. ))
  19569. characterMakers.push(() => makeCharacter(
  19570. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19571. {
  19572. front: {
  19573. height: math.unit(13 + 7 / 12, "feet"),
  19574. weight: math.unit(1500, "lb"),
  19575. name: "Front",
  19576. image: {
  19577. source: "./media/characters/briar/front.svg",
  19578. extra: 626 / 596,
  19579. bottom: 0.08
  19580. }
  19581. },
  19582. },
  19583. [
  19584. {
  19585. name: "Normal",
  19586. height: math.unit(13 + 7 / 12, "feet"),
  19587. default: true
  19588. },
  19589. ]
  19590. ))
  19591. characterMakers.push(() => makeCharacter(
  19592. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19593. {
  19594. side: {
  19595. height: math.unit(10, "feet"),
  19596. weight: math.unit(500, "lb"),
  19597. name: "Side",
  19598. image: {
  19599. source: "./media/characters/vanguard/side.svg",
  19600. extra: 502 / 425,
  19601. bottom: 0.087
  19602. }
  19603. },
  19604. },
  19605. [
  19606. {
  19607. name: "Normal",
  19608. height: math.unit(10, "feet"),
  19609. default: true
  19610. },
  19611. ]
  19612. ))
  19613. characterMakers.push(() => makeCharacter(
  19614. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19615. {
  19616. front: {
  19617. height: math.unit(7.5, "feet"),
  19618. weight: math.unit(2, "lb"),
  19619. name: "Front",
  19620. image: {
  19621. source: "./media/characters/artemis/front.svg",
  19622. extra: 1192 / 1075,
  19623. bottom: 0.07
  19624. }
  19625. },
  19626. frontNsfw: {
  19627. height: math.unit(7.5, "feet"),
  19628. weight: math.unit(2, "lb"),
  19629. name: "Front (NSFW)",
  19630. image: {
  19631. source: "./media/characters/artemis/front-nsfw.svg",
  19632. extra: 1192 / 1075,
  19633. bottom: 0.07
  19634. }
  19635. },
  19636. frontNsfwer: {
  19637. height: math.unit(7.5, "feet"),
  19638. weight: math.unit(2, "lb"),
  19639. name: "Front (NSFW-er)",
  19640. image: {
  19641. source: "./media/characters/artemis/front-nsfwer.svg",
  19642. extra: 1192 / 1075,
  19643. bottom: 0.07
  19644. }
  19645. },
  19646. side: {
  19647. height: math.unit(7.5, "feet"),
  19648. weight: math.unit(2, "lb"),
  19649. name: "Side",
  19650. image: {
  19651. source: "./media/characters/artemis/side.svg",
  19652. extra: 1192 / 1075,
  19653. bottom: 0.07
  19654. }
  19655. },
  19656. sideNsfw: {
  19657. height: math.unit(7.5, "feet"),
  19658. weight: math.unit(2, "lb"),
  19659. name: "Side (NSFW)",
  19660. image: {
  19661. source: "./media/characters/artemis/side-nsfw.svg",
  19662. extra: 1192 / 1075,
  19663. bottom: 0.07
  19664. }
  19665. },
  19666. sideNsfwer: {
  19667. height: math.unit(7.5, "feet"),
  19668. weight: math.unit(2, "lb"),
  19669. name: "Side (NSFW-er)",
  19670. image: {
  19671. source: "./media/characters/artemis/side-nsfwer.svg",
  19672. extra: 1192 / 1075,
  19673. bottom: 0.07
  19674. }
  19675. },
  19676. maw: {
  19677. height: math.unit(1.1, "feet"),
  19678. name: "Maw",
  19679. image: {
  19680. source: "./media/characters/artemis/maw.svg"
  19681. }
  19682. },
  19683. stomach: {
  19684. height: math.unit(0.95, "feet"),
  19685. name: "Stomach",
  19686. image: {
  19687. source: "./media/characters/artemis/stomach.svg"
  19688. }
  19689. },
  19690. dickCanine: {
  19691. height: math.unit(1, "feet"),
  19692. name: "Dick (Canine)",
  19693. image: {
  19694. source: "./media/characters/artemis/dick-canine.svg"
  19695. }
  19696. },
  19697. dickEquine: {
  19698. height: math.unit(0.85, "feet"),
  19699. name: "Dick (Equine)",
  19700. image: {
  19701. source: "./media/characters/artemis/dick-equine.svg"
  19702. }
  19703. },
  19704. dickExotic: {
  19705. height: math.unit(0.85, "feet"),
  19706. name: "Dick (Exotic)",
  19707. image: {
  19708. source: "./media/characters/artemis/dick-exotic.svg"
  19709. }
  19710. },
  19711. },
  19712. [
  19713. {
  19714. name: "Normal",
  19715. height: math.unit(7.5, "feet"),
  19716. default: true
  19717. },
  19718. {
  19719. name: "Enlarged",
  19720. height: math.unit(12, "feet")
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19726. {
  19727. front: {
  19728. height: math.unit(5 + 3 / 12, "feet"),
  19729. weight: math.unit(160, "lb"),
  19730. name: "Front",
  19731. image: {
  19732. source: "./media/characters/kira/front.svg",
  19733. extra: 906 / 786,
  19734. bottom: 0.01
  19735. }
  19736. },
  19737. back: {
  19738. height: math.unit(5 + 3 / 12, "feet"),
  19739. weight: math.unit(160, "lb"),
  19740. name: "Back",
  19741. image: {
  19742. source: "./media/characters/kira/back.svg",
  19743. extra: 882 / 757,
  19744. bottom: 0.005
  19745. }
  19746. },
  19747. frontDressed: {
  19748. height: math.unit(5 + 3 / 12, "feet"),
  19749. weight: math.unit(160, "lb"),
  19750. name: "Front (Dressed)",
  19751. image: {
  19752. source: "./media/characters/kira/front-dressed.svg",
  19753. extra: 906 / 786,
  19754. bottom: 0.01
  19755. }
  19756. },
  19757. beans: {
  19758. height: math.unit(0.92, "feet"),
  19759. name: "Beans",
  19760. image: {
  19761. source: "./media/characters/kira/beans.svg"
  19762. }
  19763. },
  19764. },
  19765. [
  19766. {
  19767. name: "Normal",
  19768. height: math.unit(5 + 3 / 12, "feet"),
  19769. default: true
  19770. },
  19771. ]
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19775. {
  19776. front: {
  19777. height: math.unit(5 + 4 / 12, "feet"),
  19778. weight: math.unit(145, "lb"),
  19779. name: "Front",
  19780. image: {
  19781. source: "./media/characters/scramble/front.svg",
  19782. extra: 763 / 727,
  19783. bottom: 0.05
  19784. }
  19785. },
  19786. back: {
  19787. height: math.unit(5 + 4 / 12, "feet"),
  19788. weight: math.unit(145, "lb"),
  19789. name: "Back",
  19790. image: {
  19791. source: "./media/characters/scramble/back.svg",
  19792. extra: 826 / 737,
  19793. bottom: 0.002
  19794. }
  19795. },
  19796. },
  19797. [
  19798. {
  19799. name: "Normal",
  19800. height: math.unit(5 + 4 / 12, "feet"),
  19801. default: true
  19802. },
  19803. ]
  19804. ))
  19805. characterMakers.push(() => makeCharacter(
  19806. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19807. {
  19808. side: {
  19809. height: math.unit(6 + 2 / 12, "feet"),
  19810. weight: math.unit(190, "lb"),
  19811. name: "Side",
  19812. image: {
  19813. source: "./media/characters/biscuit/side.svg",
  19814. extra: 858 / 791,
  19815. bottom: 0.044
  19816. }
  19817. },
  19818. },
  19819. [
  19820. {
  19821. name: "Normal",
  19822. height: math.unit(6 + 2 / 12, "feet"),
  19823. default: true
  19824. },
  19825. ]
  19826. ))
  19827. characterMakers.push(() => makeCharacter(
  19828. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19829. {
  19830. front: {
  19831. height: math.unit(5 + 2 / 12, "feet"),
  19832. weight: math.unit(120, "lb"),
  19833. name: "Front",
  19834. image: {
  19835. source: "./media/characters/poffin/front.svg",
  19836. extra: 786 / 680,
  19837. bottom: 0.005
  19838. }
  19839. },
  19840. },
  19841. [
  19842. {
  19843. name: "Normal",
  19844. height: math.unit(5 + 2 / 12, "feet"),
  19845. default: true
  19846. },
  19847. ]
  19848. ))
  19849. characterMakers.push(() => makeCharacter(
  19850. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19851. {
  19852. front: {
  19853. height: math.unit(6 + 3 / 12, "feet"),
  19854. weight: math.unit(519, "lb"),
  19855. name: "Front",
  19856. image: {
  19857. source: "./media/characters/dhari/front.svg",
  19858. extra: 1048 / 946,
  19859. bottom: 0.015
  19860. }
  19861. },
  19862. back: {
  19863. height: math.unit(6 + 3 / 12, "feet"),
  19864. weight: math.unit(519, "lb"),
  19865. name: "Back",
  19866. image: {
  19867. source: "./media/characters/dhari/back.svg",
  19868. extra: 1048 / 931,
  19869. bottom: 0.005
  19870. }
  19871. },
  19872. frontDressed: {
  19873. height: math.unit(6 + 3 / 12, "feet"),
  19874. weight: math.unit(519, "lb"),
  19875. name: "Front (Dressed)",
  19876. image: {
  19877. source: "./media/characters/dhari/front-dressed.svg",
  19878. extra: 1713 / 1546,
  19879. bottom: 0.02
  19880. }
  19881. },
  19882. backDressed: {
  19883. height: math.unit(6 + 3 / 12, "feet"),
  19884. weight: math.unit(519, "lb"),
  19885. name: "Back (Dressed)",
  19886. image: {
  19887. source: "./media/characters/dhari/back-dressed.svg",
  19888. extra: 1699 / 1537,
  19889. bottom: 0.01
  19890. }
  19891. },
  19892. maw: {
  19893. height: math.unit(0.95, "feet"),
  19894. name: "Maw",
  19895. image: {
  19896. source: "./media/characters/dhari/maw.svg"
  19897. }
  19898. },
  19899. wereFront: {
  19900. height: math.unit(12 + 8 / 12, "feet"),
  19901. weight: math.unit(4000, "lb"),
  19902. name: "Front (Were)",
  19903. image: {
  19904. source: "./media/characters/dhari/were-front.svg",
  19905. extra: 1065 / 969,
  19906. bottom: 0.015
  19907. }
  19908. },
  19909. wereBack: {
  19910. height: math.unit(12 + 8 / 12, "feet"),
  19911. weight: math.unit(4000, "lb"),
  19912. name: "Back (Were)",
  19913. image: {
  19914. source: "./media/characters/dhari/were-back.svg",
  19915. extra: 1065 / 969,
  19916. bottom: 0.012
  19917. }
  19918. },
  19919. wereMaw: {
  19920. height: math.unit(0.625, "meters"),
  19921. name: "Maw (Were)",
  19922. image: {
  19923. source: "./media/characters/dhari/were-maw.svg"
  19924. }
  19925. },
  19926. },
  19927. [
  19928. {
  19929. name: "Normal",
  19930. height: math.unit(6 + 3 / 12, "feet"),
  19931. default: true
  19932. },
  19933. ]
  19934. ))
  19935. characterMakers.push(() => makeCharacter(
  19936. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19937. {
  19938. anthro: {
  19939. height: math.unit(5 + 7 / 12, "feet"),
  19940. weight: math.unit(175, "lb"),
  19941. name: "Anthro",
  19942. image: {
  19943. source: "./media/characters/rena-dyne/anthro.svg",
  19944. extra: 1849 / 1785,
  19945. bottom: 0.005
  19946. }
  19947. },
  19948. taur: {
  19949. height: math.unit(15 + 6 / 12, "feet"),
  19950. weight: math.unit(8000, "lb"),
  19951. name: "Taur",
  19952. image: {
  19953. source: "./media/characters/rena-dyne/taur.svg",
  19954. extra: 2315 / 2234,
  19955. bottom: 0.033
  19956. }
  19957. },
  19958. },
  19959. [
  19960. {
  19961. name: "Normal",
  19962. height: math.unit(5 + 7 / 12, "feet"),
  19963. default: true
  19964. },
  19965. ]
  19966. ))
  19967. characterMakers.push(() => makeCharacter(
  19968. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19969. {
  19970. front: {
  19971. height: math.unit(8, "feet"),
  19972. weight: math.unit(600, "lb"),
  19973. name: "Front",
  19974. image: {
  19975. source: "./media/characters/weremeep/front.svg",
  19976. extra: 967 / 862,
  19977. bottom: 0.01
  19978. }
  19979. },
  19980. },
  19981. [
  19982. {
  19983. name: "Normal",
  19984. height: math.unit(8, "feet"),
  19985. default: true
  19986. },
  19987. {
  19988. name: "Lorg",
  19989. height: math.unit(12, "feet")
  19990. },
  19991. {
  19992. name: "Oh Lawd She Comin'",
  19993. height: math.unit(20, "feet")
  19994. },
  19995. ]
  19996. ))
  19997. characterMakers.push(() => makeCharacter(
  19998. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19999. {
  20000. front: {
  20001. height: math.unit(4, "feet"),
  20002. weight: math.unit(90, "lb"),
  20003. name: "Front",
  20004. image: {
  20005. source: "./media/characters/reza/front.svg",
  20006. extra: 1183 / 1111,
  20007. bottom: 0.017
  20008. }
  20009. },
  20010. back: {
  20011. height: math.unit(4, "feet"),
  20012. weight: math.unit(90, "lb"),
  20013. name: "Back",
  20014. image: {
  20015. source: "./media/characters/reza/back.svg",
  20016. extra: 1183 / 1111,
  20017. bottom: 0.01
  20018. }
  20019. },
  20020. drake: {
  20021. height: math.unit(30, "feet"),
  20022. weight: math.unit(246960, "lb"),
  20023. name: "Drake",
  20024. image: {
  20025. source: "./media/characters/reza/drake.svg",
  20026. extra: 2350 / 2024,
  20027. bottom: 60.7 / 2403
  20028. }
  20029. },
  20030. },
  20031. [
  20032. {
  20033. name: "Normal",
  20034. height: math.unit(4, "feet"),
  20035. default: true
  20036. },
  20037. ]
  20038. ))
  20039. characterMakers.push(() => makeCharacter(
  20040. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20041. {
  20042. side: {
  20043. height: math.unit(15, "feet"),
  20044. weight: math.unit(14, "tons"),
  20045. name: "Side",
  20046. image: {
  20047. source: "./media/characters/athea/side.svg",
  20048. extra: 960 / 540,
  20049. bottom: 0.003
  20050. }
  20051. },
  20052. sitting: {
  20053. height: math.unit(6 * 2.85, "feet"),
  20054. weight: math.unit(14, "tons"),
  20055. name: "Sitting",
  20056. image: {
  20057. source: "./media/characters/athea/sitting.svg",
  20058. extra: 621 / 581,
  20059. bottom: 0.075
  20060. }
  20061. },
  20062. maw: {
  20063. height: math.unit(7.59498031496063, "feet"),
  20064. name: "Maw",
  20065. image: {
  20066. source: "./media/characters/athea/maw.svg"
  20067. }
  20068. },
  20069. },
  20070. [
  20071. {
  20072. name: "Lap Cat",
  20073. height: math.unit(2.5, "feet")
  20074. },
  20075. {
  20076. name: "Minimacro",
  20077. height: math.unit(15, "feet"),
  20078. default: true
  20079. },
  20080. {
  20081. name: "Macro",
  20082. height: math.unit(120, "feet")
  20083. },
  20084. {
  20085. name: "Macro+",
  20086. height: math.unit(640, "feet")
  20087. },
  20088. {
  20089. name: "Colossus",
  20090. height: math.unit(2.2, "miles")
  20091. },
  20092. ]
  20093. ))
  20094. characterMakers.push(() => makeCharacter(
  20095. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20096. {
  20097. front: {
  20098. height: math.unit(8 + 8 / 12, "feet"),
  20099. weight: math.unit(130, "kg"),
  20100. name: "Front",
  20101. image: {
  20102. source: "./media/characters/seroko/front.svg",
  20103. extra: 1385 / 1280,
  20104. bottom: 0.025
  20105. }
  20106. },
  20107. back: {
  20108. height: math.unit(8 + 8 / 12, "feet"),
  20109. weight: math.unit(130, "kg"),
  20110. name: "Back",
  20111. image: {
  20112. source: "./media/characters/seroko/back.svg",
  20113. extra: 1369 / 1238,
  20114. bottom: 0.018
  20115. }
  20116. },
  20117. frontDressed: {
  20118. height: math.unit(8 + 8 / 12, "feet"),
  20119. weight: math.unit(130, "kg"),
  20120. name: "Front (Dressed)",
  20121. image: {
  20122. source: "./media/characters/seroko/front-dressed.svg",
  20123. extra: 1366 / 1275,
  20124. bottom: 0.03
  20125. }
  20126. },
  20127. },
  20128. [
  20129. {
  20130. name: "Normal",
  20131. height: math.unit(8 + 8 / 12, "feet"),
  20132. default: true
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20138. {
  20139. front: {
  20140. height: math.unit(5.5, "feet"),
  20141. weight: math.unit(160, "lb"),
  20142. name: "Front",
  20143. image: {
  20144. source: "./media/characters/quatzi/front.svg",
  20145. extra: 2346 / 2242,
  20146. bottom: 0.015
  20147. }
  20148. },
  20149. },
  20150. [
  20151. {
  20152. name: "Normal",
  20153. height: math.unit(5.5, "feet"),
  20154. default: true
  20155. },
  20156. {
  20157. name: "Big",
  20158. height: math.unit(7.7, "feet")
  20159. },
  20160. ]
  20161. ))
  20162. characterMakers.push(() => makeCharacter(
  20163. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20164. {
  20165. front: {
  20166. height: math.unit(5 + 11 / 12, "feet"),
  20167. weight: math.unit(180, "lb"),
  20168. name: "Front",
  20169. image: {
  20170. source: "./media/characters/sen/front.svg",
  20171. extra: 1321 / 1254,
  20172. bottom: 0.015
  20173. }
  20174. },
  20175. side: {
  20176. height: math.unit(5 + 11 / 12, "feet"),
  20177. weight: math.unit(180, "lb"),
  20178. name: "Side",
  20179. image: {
  20180. source: "./media/characters/sen/side.svg",
  20181. extra: 1321 / 1254,
  20182. bottom: 0.007
  20183. }
  20184. },
  20185. back: {
  20186. height: math.unit(5 + 11 / 12, "feet"),
  20187. weight: math.unit(180, "lb"),
  20188. name: "Back",
  20189. image: {
  20190. source: "./media/characters/sen/back.svg",
  20191. extra: 1321 / 1254
  20192. }
  20193. },
  20194. },
  20195. [
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(5 + 11 / 12, "feet"),
  20199. default: true
  20200. },
  20201. ]
  20202. ))
  20203. characterMakers.push(() => makeCharacter(
  20204. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20205. {
  20206. front: {
  20207. height: math.unit(166.6, "cm"),
  20208. weight: math.unit(66.6, "kg"),
  20209. name: "Front",
  20210. image: {
  20211. source: "./media/characters/fruity/front.svg",
  20212. extra: 1510 / 1386,
  20213. bottom: 0.04
  20214. }
  20215. },
  20216. back: {
  20217. height: math.unit(166.6, "cm"),
  20218. weight: math.unit(66.6, "lb"),
  20219. name: "Back",
  20220. image: {
  20221. source: "./media/characters/fruity/back.svg",
  20222. extra: 1563 / 1435,
  20223. bottom: 0.005
  20224. }
  20225. },
  20226. },
  20227. [
  20228. {
  20229. name: "Normal",
  20230. height: math.unit(166.6, "cm"),
  20231. default: true
  20232. },
  20233. {
  20234. name: "Demonic",
  20235. height: math.unit(166.6, "feet")
  20236. },
  20237. ]
  20238. ))
  20239. characterMakers.push(() => makeCharacter(
  20240. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20241. {
  20242. side: {
  20243. height: math.unit(10, "feet"),
  20244. weight: math.unit(500, "lb"),
  20245. name: "Side",
  20246. image: {
  20247. source: "./media/characters/zost/side.svg",
  20248. extra: 966 / 880,
  20249. bottom: 0.075
  20250. }
  20251. },
  20252. mawFront: {
  20253. height: math.unit(1.08, "meters"),
  20254. name: "Maw (Front)",
  20255. image: {
  20256. source: "./media/characters/zost/maw-front.svg"
  20257. }
  20258. },
  20259. mawSide: {
  20260. height: math.unit(2.66, "feet"),
  20261. name: "Maw (Side)",
  20262. image: {
  20263. source: "./media/characters/zost/maw-side.svg"
  20264. }
  20265. },
  20266. },
  20267. [
  20268. {
  20269. name: "Normal",
  20270. height: math.unit(10, "feet"),
  20271. default: true
  20272. },
  20273. ]
  20274. ))
  20275. characterMakers.push(() => makeCharacter(
  20276. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20277. {
  20278. front: {
  20279. height: math.unit(5 + 4 / 12, "feet"),
  20280. weight: math.unit(120, "lb"),
  20281. name: "Front",
  20282. image: {
  20283. source: "./media/characters/luci/front.svg",
  20284. extra: 1985 / 1884,
  20285. bottom: 0.04
  20286. }
  20287. },
  20288. back: {
  20289. height: math.unit(5 + 4 / 12, "feet"),
  20290. weight: math.unit(120, "lb"),
  20291. name: "Back",
  20292. image: {
  20293. source: "./media/characters/luci/back.svg",
  20294. extra: 1892 / 1791,
  20295. bottom: 0.002
  20296. }
  20297. },
  20298. },
  20299. [
  20300. {
  20301. name: "Normal",
  20302. height: math.unit(5 + 4 / 12, "feet"),
  20303. default: true
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20309. {
  20310. front: {
  20311. height: math.unit(1500, "feet"),
  20312. weight: math.unit(3.8e6, "tons"),
  20313. name: "Front",
  20314. image: {
  20315. source: "./media/characters/2th/front.svg",
  20316. extra: 3489 / 3350,
  20317. bottom: 0.1
  20318. }
  20319. },
  20320. foot: {
  20321. height: math.unit(461, "feet"),
  20322. name: "Foot",
  20323. image: {
  20324. source: "./media/characters/2th/foot.svg"
  20325. }
  20326. },
  20327. },
  20328. [
  20329. {
  20330. name: "\"Micro\"",
  20331. height: math.unit(15 + 7 / 12, "feet")
  20332. },
  20333. {
  20334. name: "Normal",
  20335. height: math.unit(1500, "feet"),
  20336. default: true
  20337. },
  20338. {
  20339. name: "Macro",
  20340. height: math.unit(5000, "feet")
  20341. },
  20342. {
  20343. name: "Megamacro",
  20344. height: math.unit(15, "miles")
  20345. },
  20346. {
  20347. name: "Gigamacro",
  20348. height: math.unit(4000, "miles")
  20349. },
  20350. {
  20351. name: "Galactic",
  20352. height: math.unit(50, "AU")
  20353. },
  20354. ]
  20355. ))
  20356. characterMakers.push(() => makeCharacter(
  20357. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20358. {
  20359. front: {
  20360. height: math.unit(5 + 6 / 12, "feet"),
  20361. weight: math.unit(220, "lb"),
  20362. name: "Front",
  20363. image: {
  20364. source: "./media/characters/amethyst/front.svg",
  20365. extra: 2078 / 2040,
  20366. bottom: 0.045
  20367. }
  20368. },
  20369. back: {
  20370. height: math.unit(5 + 6 / 12, "feet"),
  20371. weight: math.unit(220, "lb"),
  20372. name: "Back",
  20373. image: {
  20374. source: "./media/characters/amethyst/back.svg",
  20375. extra: 2021 / 1989,
  20376. bottom: 0.02
  20377. }
  20378. },
  20379. },
  20380. [
  20381. {
  20382. name: "Normal",
  20383. height: math.unit(5 + 6 / 12, "feet"),
  20384. default: true
  20385. },
  20386. ]
  20387. ))
  20388. characterMakers.push(() => makeCharacter(
  20389. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20390. {
  20391. front: {
  20392. height: math.unit(4 + 11 / 12, "feet"),
  20393. weight: math.unit(120, "lb"),
  20394. name: "Front",
  20395. image: {
  20396. source: "./media/characters/yumi-akiyama/front.svg",
  20397. extra: 1327 / 1235,
  20398. bottom: 0.02
  20399. }
  20400. },
  20401. back: {
  20402. height: math.unit(4 + 11 / 12, "feet"),
  20403. weight: math.unit(120, "lb"),
  20404. name: "Back",
  20405. image: {
  20406. source: "./media/characters/yumi-akiyama/back.svg",
  20407. extra: 1287 / 1245,
  20408. bottom: 0.002
  20409. }
  20410. },
  20411. },
  20412. [
  20413. {
  20414. name: "Galactic",
  20415. height: math.unit(50, "galaxies"),
  20416. default: true
  20417. },
  20418. {
  20419. name: "Universal",
  20420. height: math.unit(100, "universes")
  20421. },
  20422. ]
  20423. ))
  20424. characterMakers.push(() => makeCharacter(
  20425. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20426. {
  20427. front: {
  20428. height: math.unit(8, "feet"),
  20429. weight: math.unit(500, "lb"),
  20430. name: "Front",
  20431. image: {
  20432. source: "./media/characters/rifter-yrmori/front.svg",
  20433. extra: 1180 / 1125,
  20434. bottom: 0.02
  20435. }
  20436. },
  20437. back: {
  20438. height: math.unit(8, "feet"),
  20439. weight: math.unit(500, "lb"),
  20440. name: "Back",
  20441. image: {
  20442. source: "./media/characters/rifter-yrmori/back.svg",
  20443. extra: 1190 / 1145,
  20444. bottom: 0.001
  20445. }
  20446. },
  20447. wings: {
  20448. height: math.unit(7.75, "feet"),
  20449. weight: math.unit(500, "lb"),
  20450. name: "Wings",
  20451. image: {
  20452. source: "./media/characters/rifter-yrmori/wings.svg",
  20453. extra: 1357 / 1285
  20454. }
  20455. },
  20456. maw: {
  20457. height: math.unit(0.8, "feet"),
  20458. name: "Maw",
  20459. image: {
  20460. source: "./media/characters/rifter-yrmori/maw.svg"
  20461. }
  20462. },
  20463. mawfront: {
  20464. height: math.unit(1.45, "feet"),
  20465. name: "Maw (Front)",
  20466. image: {
  20467. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20468. }
  20469. },
  20470. },
  20471. [
  20472. {
  20473. name: "Normal",
  20474. height: math.unit(8, "feet"),
  20475. default: true
  20476. },
  20477. {
  20478. name: "Macro",
  20479. height: math.unit(42, "meters")
  20480. },
  20481. ]
  20482. ))
  20483. characterMakers.push(() => makeCharacter(
  20484. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20485. {
  20486. were: {
  20487. height: math.unit(25 + 6 / 12, "feet"),
  20488. weight: math.unit(10000, "lb"),
  20489. name: "Were",
  20490. image: {
  20491. source: "./media/characters/tahajin/were.svg",
  20492. extra: 801 / 770,
  20493. bottom: 0.042
  20494. }
  20495. },
  20496. aquatic: {
  20497. height: math.unit(6 + 4 / 12, "feet"),
  20498. weight: math.unit(160, "lb"),
  20499. name: "Aquatic",
  20500. image: {
  20501. source: "./media/characters/tahajin/aquatic.svg",
  20502. extra: 572 / 542,
  20503. bottom: 0.04
  20504. }
  20505. },
  20506. chow: {
  20507. height: math.unit(8 + 11 / 12, "feet"),
  20508. weight: math.unit(450, "lb"),
  20509. name: "Chow",
  20510. image: {
  20511. source: "./media/characters/tahajin/chow.svg",
  20512. extra: 660 / 640,
  20513. bottom: 0.015
  20514. }
  20515. },
  20516. demiNaga: {
  20517. height: math.unit(6 + 8 / 12, "feet"),
  20518. weight: math.unit(300, "lb"),
  20519. name: "Demi Naga",
  20520. image: {
  20521. source: "./media/characters/tahajin/demi-naga.svg",
  20522. extra: 643 / 615,
  20523. bottom: 0.1
  20524. }
  20525. },
  20526. data: {
  20527. height: math.unit(5, "inches"),
  20528. weight: math.unit(0.1, "lb"),
  20529. name: "Data",
  20530. image: {
  20531. source: "./media/characters/tahajin/data.svg"
  20532. }
  20533. },
  20534. fluu: {
  20535. height: math.unit(5 + 7 / 12, "feet"),
  20536. weight: math.unit(140, "lb"),
  20537. name: "Fluu",
  20538. image: {
  20539. source: "./media/characters/tahajin/fluu.svg",
  20540. extra: 628 / 592,
  20541. bottom: 0.02
  20542. }
  20543. },
  20544. starWarrior: {
  20545. height: math.unit(4 + 5 / 12, "feet"),
  20546. weight: math.unit(50, "lb"),
  20547. name: "Star Warrior",
  20548. image: {
  20549. source: "./media/characters/tahajin/star-warrior.svg"
  20550. }
  20551. },
  20552. },
  20553. [
  20554. {
  20555. name: "Normal",
  20556. height: math.unit(25 + 6 / 12, "feet"),
  20557. default: true
  20558. },
  20559. ]
  20560. ))
  20561. characterMakers.push(() => makeCharacter(
  20562. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20563. {
  20564. front: {
  20565. height: math.unit(8, "feet"),
  20566. weight: math.unit(350, "lb"),
  20567. name: "Front",
  20568. image: {
  20569. source: "./media/characters/gabira/front.svg",
  20570. extra: 608 / 580,
  20571. bottom: 0.03
  20572. }
  20573. },
  20574. back: {
  20575. height: math.unit(8, "feet"),
  20576. weight: math.unit(350, "lb"),
  20577. name: "Back",
  20578. image: {
  20579. source: "./media/characters/gabira/back.svg",
  20580. extra: 608 / 580,
  20581. bottom: 0.03
  20582. }
  20583. },
  20584. },
  20585. [
  20586. {
  20587. name: "Normal",
  20588. height: math.unit(8, "feet"),
  20589. default: true
  20590. },
  20591. ]
  20592. ))
  20593. characterMakers.push(() => makeCharacter(
  20594. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20595. {
  20596. front: {
  20597. height: math.unit(5 + 3 / 12, "feet"),
  20598. weight: math.unit(137, "lb"),
  20599. name: "Front",
  20600. image: {
  20601. source: "./media/characters/sasha-katraine/front.svg",
  20602. bottom: 0.045
  20603. }
  20604. },
  20605. },
  20606. [
  20607. {
  20608. name: "Micro",
  20609. height: math.unit(5, "inches")
  20610. },
  20611. {
  20612. name: "Normal",
  20613. height: math.unit(5 + 3 / 12, "feet"),
  20614. default: true
  20615. },
  20616. ]
  20617. ))
  20618. characterMakers.push(() => makeCharacter(
  20619. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20620. {
  20621. side: {
  20622. height: math.unit(4, "inches"),
  20623. weight: math.unit(200, "grams"),
  20624. name: "Side",
  20625. image: {
  20626. source: "./media/characters/der/side.svg",
  20627. extra: 719 / 400,
  20628. bottom: 30.6 / 749.9187
  20629. }
  20630. },
  20631. },
  20632. [
  20633. {
  20634. name: "Micro",
  20635. height: math.unit(4, "inches"),
  20636. default: true
  20637. },
  20638. ]
  20639. ))
  20640. characterMakers.push(() => makeCharacter(
  20641. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20642. {
  20643. side: {
  20644. height: math.unit(30, "meters"),
  20645. weight: math.unit(700, "tonnes"),
  20646. name: "Side",
  20647. image: {
  20648. source: "./media/characters/fixerdragon/side.svg",
  20649. extra: (1293.0514 - 116.03) / 1106.86,
  20650. bottom: 116.03 / 1293.0514
  20651. }
  20652. },
  20653. },
  20654. [
  20655. {
  20656. name: "Planck",
  20657. height: math.unit(1.6e-35, "meters")
  20658. },
  20659. {
  20660. name: "Micro",
  20661. height: math.unit(0.4, "meters")
  20662. },
  20663. {
  20664. name: "Normal",
  20665. height: math.unit(30, "meters"),
  20666. default: true
  20667. },
  20668. {
  20669. name: "Megamacro",
  20670. height: math.unit(1.2, "megameters")
  20671. },
  20672. {
  20673. name: "Teramacro",
  20674. height: math.unit(130, "terameters")
  20675. },
  20676. {
  20677. name: "Yottamacro",
  20678. height: math.unit(6200, "yottameters")
  20679. },
  20680. ]
  20681. ));
  20682. characterMakers.push(() => makeCharacter(
  20683. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20684. {
  20685. front: {
  20686. height: math.unit(8, "feet"),
  20687. weight: math.unit(250, "lb"),
  20688. name: "Front",
  20689. image: {
  20690. source: "./media/characters/kite/front.svg",
  20691. extra: 2796 / 2659,
  20692. bottom: 0.002
  20693. }
  20694. },
  20695. },
  20696. [
  20697. {
  20698. name: "Normal",
  20699. height: math.unit(8, "feet"),
  20700. default: true
  20701. },
  20702. {
  20703. name: "Macro",
  20704. height: math.unit(360, "feet")
  20705. },
  20706. {
  20707. name: "Megamacro",
  20708. height: math.unit(1500, "feet")
  20709. },
  20710. ]
  20711. ))
  20712. characterMakers.push(() => makeCharacter(
  20713. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20714. {
  20715. front: {
  20716. height: math.unit(5 + 10 / 12, "feet"),
  20717. weight: math.unit(150, "lb"),
  20718. name: "Front",
  20719. image: {
  20720. source: "./media/characters/poojawa-vynar/front.svg",
  20721. extra: (1506.1547 - 55) / 1356.6,
  20722. bottom: 55 / 1506.1547
  20723. }
  20724. },
  20725. frontTailless: {
  20726. height: math.unit(5 + 10 / 12, "feet"),
  20727. weight: math.unit(150, "lb"),
  20728. name: "Front (Tailless)",
  20729. image: {
  20730. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20731. extra: (1506.1547 - 55) / 1356.6,
  20732. bottom: 55 / 1506.1547
  20733. }
  20734. },
  20735. },
  20736. [
  20737. {
  20738. name: "Normal",
  20739. height: math.unit(5 + 10 / 12, "feet"),
  20740. default: true
  20741. },
  20742. ]
  20743. ))
  20744. characterMakers.push(() => makeCharacter(
  20745. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20746. {
  20747. front: {
  20748. height: math.unit(293, "meters"),
  20749. weight: math.unit(70400, "tons"),
  20750. name: "Front",
  20751. image: {
  20752. source: "./media/characters/violette/front.svg",
  20753. extra: 1227 / 1180,
  20754. bottom: 0.005
  20755. }
  20756. },
  20757. back: {
  20758. height: math.unit(293, "meters"),
  20759. weight: math.unit(70400, "tons"),
  20760. name: "Back",
  20761. image: {
  20762. source: "./media/characters/violette/back.svg",
  20763. extra: 1227 / 1180,
  20764. bottom: 0.005
  20765. }
  20766. },
  20767. },
  20768. [
  20769. {
  20770. name: "Macro",
  20771. height: math.unit(293, "meters"),
  20772. default: true
  20773. },
  20774. ]
  20775. ))
  20776. characterMakers.push(() => makeCharacter(
  20777. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20778. {
  20779. front: {
  20780. height: math.unit(1050, "feet"),
  20781. weight: math.unit(200000, "tons"),
  20782. name: "Front",
  20783. image: {
  20784. source: "./media/characters/alessandra/front.svg",
  20785. extra: 960 / 912,
  20786. bottom: 0.06
  20787. }
  20788. },
  20789. },
  20790. [
  20791. {
  20792. name: "Macro",
  20793. height: math.unit(1050, "feet")
  20794. },
  20795. {
  20796. name: "Macro+",
  20797. height: math.unit(900, "meters"),
  20798. default: true
  20799. },
  20800. ]
  20801. ))
  20802. characterMakers.push(() => makeCharacter(
  20803. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20804. {
  20805. front: {
  20806. height: math.unit(5, "feet"),
  20807. weight: math.unit(187, "lb"),
  20808. name: "Front",
  20809. image: {
  20810. source: "./media/characters/person/front.svg",
  20811. extra: 3087 / 2945,
  20812. bottom: 91 / 3181
  20813. }
  20814. },
  20815. },
  20816. [
  20817. {
  20818. name: "Micro",
  20819. height: math.unit(3, "inches")
  20820. },
  20821. {
  20822. name: "Normal",
  20823. height: math.unit(5, "feet"),
  20824. default: true
  20825. },
  20826. {
  20827. name: "Macro",
  20828. height: math.unit(90, "feet")
  20829. },
  20830. {
  20831. name: "Max Size",
  20832. height: math.unit(280, "feet")
  20833. },
  20834. ]
  20835. ))
  20836. characterMakers.push(() => makeCharacter(
  20837. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20838. {
  20839. front: {
  20840. height: math.unit(4.5, "meters"),
  20841. weight: math.unit(3200, "lb"),
  20842. name: "Front",
  20843. image: {
  20844. source: "./media/characters/ty/front.svg",
  20845. extra: 1038 / 960,
  20846. bottom: 31.156 / 1068
  20847. }
  20848. },
  20849. back: {
  20850. height: math.unit(4.5, "meters"),
  20851. weight: math.unit(3200, "lb"),
  20852. name: "Back",
  20853. image: {
  20854. source: "./media/characters/ty/back.svg",
  20855. extra: 1044 / 966,
  20856. bottom: 7.48 / 1049
  20857. }
  20858. },
  20859. },
  20860. [
  20861. {
  20862. name: "Normal",
  20863. height: math.unit(4.5, "meters"),
  20864. default: true
  20865. },
  20866. ]
  20867. ))
  20868. characterMakers.push(() => makeCharacter(
  20869. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20870. {
  20871. front: {
  20872. height: math.unit(5 + 4 / 12, "feet"),
  20873. weight: math.unit(115, "lb"),
  20874. name: "Front",
  20875. image: {
  20876. source: "./media/characters/rocky/front.svg",
  20877. extra: 1012 / 975,
  20878. bottom: 54 / 1066
  20879. }
  20880. },
  20881. },
  20882. [
  20883. {
  20884. name: "Normal",
  20885. height: math.unit(5 + 4 / 12, "feet"),
  20886. default: true
  20887. },
  20888. ]
  20889. ))
  20890. characterMakers.push(() => makeCharacter(
  20891. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20892. {
  20893. upright: {
  20894. height: math.unit(6, "meters"),
  20895. weight: math.unit(4000, "kg"),
  20896. name: "Upright",
  20897. image: {
  20898. source: "./media/characters/ruin/upright.svg",
  20899. extra: 668 / 661,
  20900. bottom: 42 / 799.8396
  20901. }
  20902. },
  20903. },
  20904. [
  20905. {
  20906. name: "Normal",
  20907. height: math.unit(6, "meters"),
  20908. default: true
  20909. },
  20910. ]
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20914. {
  20915. front: {
  20916. height: math.unit(5, "feet"),
  20917. weight: math.unit(106, "lb"),
  20918. name: "Front",
  20919. image: {
  20920. source: "./media/characters/robin/front.svg",
  20921. extra: 862 / 799,
  20922. bottom: 42.4 / 914.8856
  20923. }
  20924. },
  20925. },
  20926. [
  20927. {
  20928. name: "Normal",
  20929. height: math.unit(5, "feet"),
  20930. default: true
  20931. },
  20932. ]
  20933. ))
  20934. characterMakers.push(() => makeCharacter(
  20935. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20936. {
  20937. side: {
  20938. height: math.unit(3, "feet"),
  20939. weight: math.unit(225, "lb"),
  20940. name: "Side",
  20941. image: {
  20942. source: "./media/characters/saian/side.svg",
  20943. extra: 566 / 356,
  20944. bottom: 79.7 / 643
  20945. }
  20946. },
  20947. maw: {
  20948. height: math.unit(2.85, "feet"),
  20949. name: "Maw",
  20950. image: {
  20951. source: "./media/characters/saian/maw.svg"
  20952. }
  20953. },
  20954. },
  20955. [
  20956. {
  20957. name: "Normal",
  20958. height: math.unit(3, "feet"),
  20959. default: true
  20960. },
  20961. ]
  20962. ))
  20963. characterMakers.push(() => makeCharacter(
  20964. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20965. {
  20966. side: {
  20967. height: math.unit(8, "feet"),
  20968. weight: math.unit(300, "lb"),
  20969. name: "Side",
  20970. image: {
  20971. source: "./media/characters/equus-silvermane/side.svg",
  20972. extra: 2176 / 2050,
  20973. bottom: 65.7 / 2245
  20974. }
  20975. },
  20976. front: {
  20977. height: math.unit(8, "feet"),
  20978. weight: math.unit(300, "lb"),
  20979. name: "Front",
  20980. image: {
  20981. source: "./media/characters/equus-silvermane/front.svg",
  20982. extra: 4633 / 4400,
  20983. bottom: 71.3 / 4706.915
  20984. }
  20985. },
  20986. sideStepping: {
  20987. height: math.unit(8, "feet"),
  20988. weight: math.unit(300, "lb"),
  20989. name: "Side (Stepping)",
  20990. image: {
  20991. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20992. extra: 1968 / 1860,
  20993. bottom: 16.4 / 1989
  20994. }
  20995. },
  20996. },
  20997. [
  20998. {
  20999. name: "Normal",
  21000. height: math.unit(8, "feet")
  21001. },
  21002. {
  21003. name: "Minimacro",
  21004. height: math.unit(75, "feet"),
  21005. default: true
  21006. },
  21007. {
  21008. name: "Macro",
  21009. height: math.unit(150, "feet")
  21010. },
  21011. {
  21012. name: "Macro+",
  21013. height: math.unit(1000, "feet")
  21014. },
  21015. {
  21016. name: "Megamacro",
  21017. height: math.unit(1, "mile")
  21018. },
  21019. ]
  21020. ))
  21021. characterMakers.push(() => makeCharacter(
  21022. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21023. {
  21024. side: {
  21025. height: math.unit(20, "feet"),
  21026. weight: math.unit(30000, "kg"),
  21027. name: "Side",
  21028. image: {
  21029. source: "./media/characters/windar/side.svg",
  21030. extra: 1491 / 1248,
  21031. bottom: 82.56 / 1568
  21032. }
  21033. },
  21034. },
  21035. [
  21036. {
  21037. name: "Normal",
  21038. height: math.unit(20, "feet"),
  21039. default: true
  21040. },
  21041. ]
  21042. ))
  21043. characterMakers.push(() => makeCharacter(
  21044. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21045. {
  21046. side: {
  21047. height: math.unit(15.66, "feet"),
  21048. weight: math.unit(150, "lb"),
  21049. name: "Side",
  21050. image: {
  21051. source: "./media/characters/melody/side.svg",
  21052. extra: 1097 / 944,
  21053. bottom: 11.8 / 1109
  21054. }
  21055. },
  21056. sideOutfit: {
  21057. height: math.unit(15.66, "feet"),
  21058. weight: math.unit(150, "lb"),
  21059. name: "Side (Outfit)",
  21060. image: {
  21061. source: "./media/characters/melody/side-outfit.svg",
  21062. extra: 1097 / 944,
  21063. bottom: 11.8 / 1109
  21064. }
  21065. },
  21066. },
  21067. [
  21068. {
  21069. name: "Normal",
  21070. height: math.unit(15.66, "feet"),
  21071. default: true
  21072. },
  21073. ]
  21074. ))
  21075. characterMakers.push(() => makeCharacter(
  21076. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21077. {
  21078. front: {
  21079. height: math.unit(8, "feet"),
  21080. weight: math.unit(325, "lb"),
  21081. name: "Front",
  21082. image: {
  21083. source: "./media/characters/windera/front.svg",
  21084. extra: 3180 / 2845,
  21085. bottom: 178 / 3365
  21086. }
  21087. },
  21088. },
  21089. [
  21090. {
  21091. name: "Normal",
  21092. height: math.unit(8, "feet"),
  21093. default: true
  21094. },
  21095. ]
  21096. ))
  21097. characterMakers.push(() => makeCharacter(
  21098. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21099. {
  21100. front: {
  21101. height: math.unit(28.75, "feet"),
  21102. weight: math.unit(2000, "kg"),
  21103. name: "Front",
  21104. image: {
  21105. source: "./media/characters/sonear/front.svg",
  21106. extra: 1041.1 / 964.9,
  21107. bottom: 53.7 / 1096.6
  21108. }
  21109. },
  21110. },
  21111. [
  21112. {
  21113. name: "Normal",
  21114. height: math.unit(28.75, "feet"),
  21115. default: true
  21116. },
  21117. ]
  21118. ))
  21119. characterMakers.push(() => makeCharacter(
  21120. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21121. {
  21122. side: {
  21123. height: math.unit(25.5, "feet"),
  21124. weight: math.unit(23000, "kg"),
  21125. name: "Side",
  21126. image: {
  21127. source: "./media/characters/kanara/side.svg"
  21128. }
  21129. },
  21130. },
  21131. [
  21132. {
  21133. name: "Normal",
  21134. height: math.unit(25.5, "feet"),
  21135. default: true
  21136. },
  21137. ]
  21138. ))
  21139. characterMakers.push(() => makeCharacter(
  21140. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21141. {
  21142. side: {
  21143. height: math.unit(10, "feet"),
  21144. weight: math.unit(1000, "kg"),
  21145. name: "Side",
  21146. image: {
  21147. source: "./media/characters/ereus/side.svg",
  21148. extra: 1157 / 959,
  21149. bottom: 153 / 1312.5
  21150. }
  21151. },
  21152. },
  21153. [
  21154. {
  21155. name: "Normal",
  21156. height: math.unit(10, "feet"),
  21157. default: true
  21158. },
  21159. ]
  21160. ))
  21161. characterMakers.push(() => makeCharacter(
  21162. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21163. {
  21164. side: {
  21165. height: math.unit(4.5, "feet"),
  21166. weight: math.unit(500, "lb"),
  21167. name: "Side",
  21168. image: {
  21169. source: "./media/characters/e-ter/side.svg",
  21170. extra: 1550 / 1248,
  21171. bottom: 146 / 1694
  21172. }
  21173. },
  21174. },
  21175. [
  21176. {
  21177. name: "Normal",
  21178. height: math.unit(4.5, "feet"),
  21179. default: true
  21180. },
  21181. ]
  21182. ))
  21183. characterMakers.push(() => makeCharacter(
  21184. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21185. {
  21186. side: {
  21187. height: math.unit(9.7, "feet"),
  21188. weight: math.unit(4000, "kg"),
  21189. name: "Side",
  21190. image: {
  21191. source: "./media/characters/yamie/side.svg"
  21192. }
  21193. },
  21194. },
  21195. [
  21196. {
  21197. name: "Normal",
  21198. height: math.unit(9.7, "feet"),
  21199. default: true
  21200. },
  21201. ]
  21202. ))
  21203. characterMakers.push(() => makeCharacter(
  21204. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21205. {
  21206. front: {
  21207. height: math.unit(50, "feet"),
  21208. weight: math.unit(50000, "kg"),
  21209. name: "Front",
  21210. image: {
  21211. source: "./media/characters/anders/front.svg",
  21212. extra: 570 / 539,
  21213. bottom: 14.7 / 586.7
  21214. }
  21215. },
  21216. },
  21217. [
  21218. {
  21219. name: "Large",
  21220. height: math.unit(50, "feet")
  21221. },
  21222. {
  21223. name: "Macro",
  21224. height: math.unit(2000, "feet"),
  21225. default: true
  21226. },
  21227. {
  21228. name: "Megamacro",
  21229. height: math.unit(12, "miles")
  21230. },
  21231. ]
  21232. ))
  21233. characterMakers.push(() => makeCharacter(
  21234. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21235. {
  21236. front: {
  21237. height: math.unit(7 + 2 / 12, "feet"),
  21238. weight: math.unit(300, "lb"),
  21239. name: "Front",
  21240. image: {
  21241. source: "./media/characters/reban/front.svg",
  21242. extra: 516 / 487,
  21243. bottom: 42.82 / 558.356
  21244. }
  21245. },
  21246. dick: {
  21247. height: math.unit(7 / 5, "feet"),
  21248. name: "Dick",
  21249. image: {
  21250. source: "./media/characters/reban/dick.svg"
  21251. }
  21252. },
  21253. },
  21254. [
  21255. {
  21256. name: "Natural Height",
  21257. height: math.unit(7 + 2 / 12, "feet")
  21258. },
  21259. {
  21260. name: "Macro",
  21261. height: math.unit(500, "feet"),
  21262. default: true
  21263. },
  21264. {
  21265. name: "Canon Height",
  21266. height: math.unit(50, "AU")
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "Terrance Keayes", species: ["vole"], 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/terrance-keayes/front.svg",
  21279. extra: 1.005,
  21280. bottom: 151 / 1615
  21281. }
  21282. },
  21283. side: {
  21284. height: math.unit(6, "feet"),
  21285. weight: math.unit(150, "lb"),
  21286. name: "Side",
  21287. image: {
  21288. source: "./media/characters/terrance-keayes/side.svg",
  21289. extra: 1.005,
  21290. bottom: 129.4 / 1544
  21291. }
  21292. },
  21293. back: {
  21294. height: math.unit(6, "feet"),
  21295. weight: math.unit(150, "lb"),
  21296. name: "Back",
  21297. image: {
  21298. source: "./media/characters/terrance-keayes/back.svg",
  21299. extra: 1.005,
  21300. bottom: 58.4 / 1557.3
  21301. }
  21302. },
  21303. dick: {
  21304. height: math.unit(6 * 0.208, "feet"),
  21305. name: "Dick",
  21306. image: {
  21307. source: "./media/characters/terrance-keayes/dick.svg"
  21308. }
  21309. },
  21310. },
  21311. [
  21312. {
  21313. name: "Canon Height",
  21314. height: math.unit(35, "miles"),
  21315. default: true
  21316. },
  21317. ]
  21318. ))
  21319. characterMakers.push(() => makeCharacter(
  21320. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21321. {
  21322. front: {
  21323. height: math.unit(6, "feet"),
  21324. weight: math.unit(150, "lb"),
  21325. name: "Front",
  21326. image: {
  21327. source: "./media/characters/ofelia/front.svg",
  21328. extra: 546 / 541,
  21329. bottom: 39 / 583
  21330. }
  21331. },
  21332. back: {
  21333. height: math.unit(6, "feet"),
  21334. weight: math.unit(150, "lb"),
  21335. name: "Back",
  21336. image: {
  21337. source: "./media/characters/ofelia/back.svg",
  21338. extra: 564 / 559.5,
  21339. bottom: 8.69 / 573.02
  21340. }
  21341. },
  21342. maw: {
  21343. height: math.unit(1, "feet"),
  21344. name: "Maw",
  21345. image: {
  21346. source: "./media/characters/ofelia/maw.svg"
  21347. }
  21348. },
  21349. foot: {
  21350. height: math.unit(1.949, "feet"),
  21351. name: "Foot",
  21352. image: {
  21353. source: "./media/characters/ofelia/foot.svg"
  21354. }
  21355. },
  21356. },
  21357. [
  21358. {
  21359. name: "Canon Height",
  21360. height: math.unit(2000, "miles"),
  21361. default: true
  21362. },
  21363. ]
  21364. ))
  21365. characterMakers.push(() => makeCharacter(
  21366. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21367. {
  21368. front: {
  21369. height: math.unit(6, "feet"),
  21370. weight: math.unit(150, "lb"),
  21371. name: "Front",
  21372. image: {
  21373. source: "./media/characters/samuel/front.svg",
  21374. extra: 265 / 258,
  21375. bottom: 2 / 266.1566
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Macro",
  21382. height: math.unit(100, "feet"),
  21383. default: true
  21384. },
  21385. {
  21386. name: "Full Size",
  21387. height: math.unit(1000, "miles")
  21388. },
  21389. ]
  21390. ))
  21391. characterMakers.push(() => makeCharacter(
  21392. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21393. {
  21394. front: {
  21395. height: math.unit(6, "feet"),
  21396. weight: math.unit(300, "lb"),
  21397. name: "Front",
  21398. image: {
  21399. source: "./media/characters/beishir-kiel/front.svg",
  21400. extra: 569 / 547,
  21401. bottom: 41.9 / 609
  21402. }
  21403. },
  21404. maw: {
  21405. height: math.unit(6 * 0.202, "feet"),
  21406. name: "Maw",
  21407. image: {
  21408. source: "./media/characters/beishir-kiel/maw.svg"
  21409. }
  21410. },
  21411. },
  21412. [
  21413. {
  21414. name: "Macro",
  21415. height: math.unit(300, "feet"),
  21416. default: true
  21417. },
  21418. ]
  21419. ))
  21420. characterMakers.push(() => makeCharacter(
  21421. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21422. {
  21423. front: {
  21424. height: math.unit(5 + 8 / 12, "feet"),
  21425. weight: math.unit(120, "lb"),
  21426. name: "Front",
  21427. image: {
  21428. source: "./media/characters/logan-grey/front.svg",
  21429. extra: 2539 / 2393,
  21430. bottom: 97.6 / 2636.37
  21431. }
  21432. },
  21433. frontAlt: {
  21434. height: math.unit(5 + 8 / 12, "feet"),
  21435. weight: math.unit(120, "lb"),
  21436. name: "Front (Alt)",
  21437. image: {
  21438. source: "./media/characters/logan-grey/front-alt.svg",
  21439. extra: 958 / 893,
  21440. bottom: 15 / 970.768
  21441. }
  21442. },
  21443. back: {
  21444. height: math.unit(5 + 8 / 12, "feet"),
  21445. weight: math.unit(120, "lb"),
  21446. name: "Back",
  21447. image: {
  21448. source: "./media/characters/logan-grey/back.svg",
  21449. extra: 958 / 893,
  21450. bottom: 2.1881 / 970.9788
  21451. }
  21452. },
  21453. dick: {
  21454. height: math.unit(1.437, "feet"),
  21455. name: "Dick",
  21456. image: {
  21457. source: "./media/characters/logan-grey/dick.svg"
  21458. }
  21459. },
  21460. },
  21461. [
  21462. {
  21463. name: "Normal",
  21464. height: math.unit(5 + 8 / 12, "feet")
  21465. },
  21466. {
  21467. name: "The 500 Foot Femboy",
  21468. height: math.unit(500, "feet"),
  21469. default: true
  21470. },
  21471. {
  21472. name: "Megmacro",
  21473. height: math.unit(20, "miles")
  21474. },
  21475. ]
  21476. ))
  21477. characterMakers.push(() => makeCharacter(
  21478. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21479. {
  21480. front: {
  21481. height: math.unit(8 + 2 / 12, "feet"),
  21482. weight: math.unit(275, "lb"),
  21483. name: "Front",
  21484. image: {
  21485. source: "./media/characters/draganta/front.svg",
  21486. extra: 1177 / 1135,
  21487. bottom: 33.46 / 1212.1
  21488. }
  21489. },
  21490. },
  21491. [
  21492. {
  21493. name: "Normal",
  21494. height: math.unit(8 + 6 / 12, "feet"),
  21495. default: true
  21496. },
  21497. {
  21498. name: "Macro",
  21499. height: math.unit(150, "feet")
  21500. },
  21501. {
  21502. name: "Megamacro",
  21503. height: math.unit(1000, "miles")
  21504. },
  21505. ]
  21506. ))
  21507. characterMakers.push(() => makeCharacter(
  21508. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21509. {
  21510. front: {
  21511. height: math.unit(1.72, "m"),
  21512. weight: math.unit(80, "lb"),
  21513. name: "Front",
  21514. image: {
  21515. source: "./media/characters/voski/front.svg",
  21516. extra: 2076.22 / 2022.4,
  21517. bottom: 102.7 / 2177.3866
  21518. }
  21519. },
  21520. frontNsfw: {
  21521. height: math.unit(1.72, "m"),
  21522. weight: math.unit(80, "lb"),
  21523. name: "Front (NSFW)",
  21524. image: {
  21525. source: "./media/characters/voski/front-nsfw.svg",
  21526. extra: 2076.22 / 2022.4,
  21527. bottom: 102.7 / 2177.3866
  21528. }
  21529. },
  21530. back: {
  21531. height: math.unit(1.72, "m"),
  21532. weight: math.unit(80, "lb"),
  21533. name: "Back",
  21534. image: {
  21535. source: "./media/characters/voski/back.svg",
  21536. extra: 2104 / 2051,
  21537. bottom: 10.45 / 2113.63
  21538. }
  21539. },
  21540. },
  21541. [
  21542. {
  21543. name: "Normal",
  21544. height: math.unit(1.72, "m")
  21545. },
  21546. {
  21547. name: "Macro",
  21548. height: math.unit(55, "m"),
  21549. default: true
  21550. },
  21551. {
  21552. name: "Macro+",
  21553. height: math.unit(300, "m")
  21554. },
  21555. {
  21556. name: "Macro++",
  21557. height: math.unit(700, "m")
  21558. },
  21559. {
  21560. name: "Macro+++",
  21561. height: math.unit(4500, "m")
  21562. },
  21563. {
  21564. name: "Macro++++",
  21565. height: math.unit(45, "km")
  21566. },
  21567. {
  21568. name: "Macro+++++",
  21569. height: math.unit(1220, "km")
  21570. },
  21571. ]
  21572. ))
  21573. characterMakers.push(() => makeCharacter(
  21574. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21575. {
  21576. front: {
  21577. height: math.unit(2.3, "m"),
  21578. weight: math.unit(304, "kg"),
  21579. name: "Front",
  21580. image: {
  21581. source: "./media/characters/icowom-lee/front.svg",
  21582. extra: 985 / 955,
  21583. bottom: 25.4 / 1012
  21584. }
  21585. },
  21586. fronttentacles: {
  21587. height: math.unit(2.3, "m"),
  21588. weight: math.unit(304, "kg"),
  21589. name: "Front-tentacles",
  21590. image: {
  21591. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21592. extra: 985 / 955,
  21593. bottom: 25.4 / 1012
  21594. }
  21595. },
  21596. back: {
  21597. height: math.unit(2.3, "m"),
  21598. weight: math.unit(304, "kg"),
  21599. name: "Back",
  21600. image: {
  21601. source: "./media/characters/icowom-lee/back.svg",
  21602. extra: 975 / 954,
  21603. bottom: 9.5 / 985
  21604. }
  21605. },
  21606. backtentacles: {
  21607. height: math.unit(2.3, "m"),
  21608. weight: math.unit(304, "kg"),
  21609. name: "Back-tentacles",
  21610. image: {
  21611. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21612. extra: 975 / 954,
  21613. bottom: 9.5 / 985
  21614. }
  21615. },
  21616. frontDressed: {
  21617. height: math.unit(2.3, "m"),
  21618. weight: math.unit(304, "kg"),
  21619. name: "Front (Dressed)",
  21620. image: {
  21621. source: "./media/characters/icowom-lee/front-dressed.svg",
  21622. extra: 3076 / 2933,
  21623. bottom: 51.4 / 3125.1889
  21624. }
  21625. },
  21626. rump: {
  21627. height: math.unit(0.776, "meters"),
  21628. name: "Rump",
  21629. image: {
  21630. source: "./media/characters/icowom-lee/rump.svg"
  21631. }
  21632. },
  21633. genitals: {
  21634. height: math.unit(0.78, "meters"),
  21635. name: "Genitals",
  21636. image: {
  21637. source: "./media/characters/icowom-lee/genitals.svg"
  21638. }
  21639. },
  21640. },
  21641. [
  21642. {
  21643. name: "Normal",
  21644. height: math.unit(2.3, "meters"),
  21645. default: true
  21646. },
  21647. {
  21648. name: "Macro",
  21649. height: math.unit(94, "meters"),
  21650. default: true
  21651. },
  21652. ]
  21653. ))
  21654. characterMakers.push(() => makeCharacter(
  21655. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21656. {
  21657. front: {
  21658. height: math.unit(22, "meters"),
  21659. weight: math.unit(21000, "kg"),
  21660. name: "Front",
  21661. image: {
  21662. source: "./media/characters/shock-diamond/front.svg",
  21663. extra: 2204 / 2053,
  21664. bottom: 65 / 2239.47
  21665. }
  21666. },
  21667. frontNude: {
  21668. height: math.unit(22, "meters"),
  21669. weight: math.unit(21000, "kg"),
  21670. name: "Front (Nude)",
  21671. image: {
  21672. source: "./media/characters/shock-diamond/front-nude.svg",
  21673. extra: 2514 / 2285,
  21674. bottom: 13 / 2527.56
  21675. }
  21676. },
  21677. },
  21678. [
  21679. {
  21680. name: "Normal",
  21681. height: math.unit(3, "meters")
  21682. },
  21683. {
  21684. name: "Macro",
  21685. height: math.unit(22, "meters"),
  21686. default: true
  21687. },
  21688. ]
  21689. ))
  21690. characterMakers.push(() => makeCharacter(
  21691. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21692. {
  21693. front: {
  21694. height: math.unit(5 + 4 / 12, "feet"),
  21695. weight: math.unit(120, "lb"),
  21696. name: "Front",
  21697. image: {
  21698. source: "./media/characters/rory/front.svg",
  21699. extra: 589 / 556,
  21700. bottom: 45.7 / 635.76
  21701. }
  21702. },
  21703. frontNude: {
  21704. height: math.unit(5 + 4 / 12, "feet"),
  21705. weight: math.unit(120, "lb"),
  21706. name: "Front (Nude)",
  21707. image: {
  21708. source: "./media/characters/rory/front-nude.svg",
  21709. extra: 589 / 556,
  21710. bottom: 45.7 / 635.76
  21711. }
  21712. },
  21713. side: {
  21714. height: math.unit(5 + 4 / 12, "feet"),
  21715. weight: math.unit(120, "lb"),
  21716. name: "Side",
  21717. image: {
  21718. source: "./media/characters/rory/side.svg",
  21719. extra: 597 / 564,
  21720. bottom: 55 / 653
  21721. }
  21722. },
  21723. back: {
  21724. height: math.unit(5 + 4 / 12, "feet"),
  21725. weight: math.unit(120, "lb"),
  21726. name: "Back",
  21727. image: {
  21728. source: "./media/characters/rory/back.svg",
  21729. extra: 620 / 585,
  21730. bottom: 8.86 / 630.43
  21731. }
  21732. },
  21733. dick: {
  21734. height: math.unit(0.86, "feet"),
  21735. name: "Dick",
  21736. image: {
  21737. source: "./media/characters/rory/dick.svg"
  21738. }
  21739. },
  21740. },
  21741. [
  21742. {
  21743. name: "Normal",
  21744. height: math.unit(5 + 4 / 12, "feet"),
  21745. default: true
  21746. },
  21747. {
  21748. name: "Macro",
  21749. height: math.unit(100, "feet")
  21750. },
  21751. {
  21752. name: "Macro+",
  21753. height: math.unit(140, "feet")
  21754. },
  21755. {
  21756. name: "Macro++",
  21757. height: math.unit(300, "feet")
  21758. },
  21759. ]
  21760. ))
  21761. characterMakers.push(() => makeCharacter(
  21762. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21763. {
  21764. front: {
  21765. height: math.unit(5 + 9 / 12, "feet"),
  21766. weight: math.unit(190, "lb"),
  21767. name: "Front",
  21768. image: {
  21769. source: "./media/characters/sprisk/front.svg",
  21770. extra: 1225 / 1180,
  21771. bottom: 42.7 / 1266.4
  21772. }
  21773. },
  21774. frontNsfw: {
  21775. height: math.unit(5 + 9 / 12, "feet"),
  21776. weight: math.unit(190, "lb"),
  21777. name: "Front (NSFW)",
  21778. image: {
  21779. source: "./media/characters/sprisk/front-nsfw.svg",
  21780. extra: 1225 / 1180,
  21781. bottom: 42.7 / 1266.4
  21782. }
  21783. },
  21784. back: {
  21785. height: math.unit(5 + 9 / 12, "feet"),
  21786. weight: math.unit(190, "lb"),
  21787. name: "Back",
  21788. image: {
  21789. source: "./media/characters/sprisk/back.svg",
  21790. extra: 1247 / 1200,
  21791. bottom: 5.6 / 1253.04
  21792. }
  21793. },
  21794. },
  21795. [
  21796. {
  21797. name: "Tiny",
  21798. height: math.unit(2, "inches")
  21799. },
  21800. {
  21801. name: "Normal",
  21802. height: math.unit(5 + 9 / 12, "feet"),
  21803. default: true
  21804. },
  21805. {
  21806. name: "Mini Macro",
  21807. height: math.unit(18, "feet")
  21808. },
  21809. {
  21810. name: "Macro",
  21811. height: math.unit(100, "feet")
  21812. },
  21813. {
  21814. name: "MACRO",
  21815. height: math.unit(50, "miles")
  21816. },
  21817. {
  21818. name: "M A C R O",
  21819. height: math.unit(300, "miles")
  21820. },
  21821. ]
  21822. ))
  21823. characterMakers.push(() => makeCharacter(
  21824. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21825. {
  21826. side: {
  21827. height: math.unit(15.6, "meters"),
  21828. weight: math.unit(700000, "kg"),
  21829. name: "Side",
  21830. image: {
  21831. source: "./media/characters/bunsen/side.svg",
  21832. extra: 1644 / 358
  21833. }
  21834. },
  21835. foot: {
  21836. height: math.unit(1.611 * 1644 / 358, "meter"),
  21837. name: "Foot",
  21838. image: {
  21839. source: "./media/characters/bunsen/foot.svg"
  21840. }
  21841. },
  21842. },
  21843. [
  21844. {
  21845. name: "Small",
  21846. height: math.unit(10, "feet")
  21847. },
  21848. {
  21849. name: "Normal",
  21850. height: math.unit(15.6, "meters"),
  21851. default: true
  21852. },
  21853. ]
  21854. ))
  21855. characterMakers.push(() => makeCharacter(
  21856. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21857. {
  21858. front: {
  21859. height: math.unit(4 + 11 / 12, "feet"),
  21860. weight: math.unit(140, "lb"),
  21861. name: "Front",
  21862. image: {
  21863. source: "./media/characters/sesh/front.svg",
  21864. extra: 3420 / 3231,
  21865. bottom: 72 / 3949.5
  21866. }
  21867. },
  21868. },
  21869. [
  21870. {
  21871. name: "Normal",
  21872. height: math.unit(4 + 11 / 12, "feet")
  21873. },
  21874. {
  21875. name: "Grown",
  21876. height: math.unit(15, "feet"),
  21877. default: true
  21878. },
  21879. {
  21880. name: "Macro",
  21881. height: math.unit(1500, "feet")
  21882. },
  21883. {
  21884. name: "Megamacro",
  21885. height: math.unit(30, "miles")
  21886. },
  21887. {
  21888. name: "Continental",
  21889. height: math.unit(3000, "miles")
  21890. },
  21891. {
  21892. name: "Gravity Mass",
  21893. height: math.unit(300000, "miles")
  21894. },
  21895. {
  21896. name: "Planet Buster",
  21897. height: math.unit(30000000, "miles")
  21898. },
  21899. {
  21900. name: "Big",
  21901. height: math.unit(3000000000, "miles")
  21902. },
  21903. ]
  21904. ))
  21905. characterMakers.push(() => makeCharacter(
  21906. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21907. {
  21908. front: {
  21909. height: math.unit(9, "feet"),
  21910. weight: math.unit(350, "lb"),
  21911. name: "Front",
  21912. image: {
  21913. source: "./media/characters/pepper/front.svg",
  21914. extra: 1448 / 1312,
  21915. bottom: 9.4 / 1457.88
  21916. }
  21917. },
  21918. back: {
  21919. height: math.unit(9, "feet"),
  21920. weight: math.unit(350, "lb"),
  21921. name: "Back",
  21922. image: {
  21923. source: "./media/characters/pepper/back.svg",
  21924. extra: 1423 / 1300,
  21925. bottom: 4.6 / 1429
  21926. }
  21927. },
  21928. maw: {
  21929. height: math.unit(0.932, "feet"),
  21930. name: "Maw",
  21931. image: {
  21932. source: "./media/characters/pepper/maw.svg"
  21933. }
  21934. },
  21935. },
  21936. [
  21937. {
  21938. name: "Normal",
  21939. height: math.unit(9, "feet"),
  21940. default: true
  21941. },
  21942. ]
  21943. ))
  21944. characterMakers.push(() => makeCharacter(
  21945. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21946. {
  21947. front: {
  21948. height: math.unit(6, "feet"),
  21949. weight: math.unit(150, "lb"),
  21950. name: "Front",
  21951. image: {
  21952. source: "./media/characters/maelstrom/front.svg",
  21953. extra: 2100 / 1883,
  21954. bottom: 94 / 2196.7
  21955. }
  21956. },
  21957. },
  21958. [
  21959. {
  21960. name: "Less Kaiju",
  21961. height: math.unit(200, "feet")
  21962. },
  21963. {
  21964. name: "Kaiju",
  21965. height: math.unit(400, "feet"),
  21966. default: true
  21967. },
  21968. {
  21969. name: "Kaiju-er",
  21970. height: math.unit(600, "feet")
  21971. },
  21972. ]
  21973. ))
  21974. characterMakers.push(() => makeCharacter(
  21975. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21976. {
  21977. front: {
  21978. height: math.unit(6 + 5 / 12, "feet"),
  21979. weight: math.unit(180, "lb"),
  21980. name: "Front",
  21981. image: {
  21982. source: "./media/characters/lexir/front.svg",
  21983. extra: 180 / 172,
  21984. bottom: 12 / 192
  21985. }
  21986. },
  21987. back: {
  21988. height: math.unit(6 + 5 / 12, "feet"),
  21989. weight: math.unit(180, "lb"),
  21990. name: "Back",
  21991. image: {
  21992. source: "./media/characters/lexir/back.svg",
  21993. extra: 183.84 / 175.5,
  21994. bottom: 3.1 / 187
  21995. }
  21996. },
  21997. },
  21998. [
  21999. {
  22000. name: "Very Smal",
  22001. height: math.unit(1, "nm")
  22002. },
  22003. {
  22004. name: "Normal",
  22005. height: math.unit(6 + 5 / 12, "feet"),
  22006. default: true
  22007. },
  22008. {
  22009. name: "Macro",
  22010. height: math.unit(1, "mile")
  22011. },
  22012. {
  22013. name: "Megamacro",
  22014. height: math.unit(50, "miles")
  22015. },
  22016. ]
  22017. ))
  22018. characterMakers.push(() => makeCharacter(
  22019. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22020. {
  22021. front: {
  22022. height: math.unit(1.5, "meters"),
  22023. weight: math.unit(100, "lb"),
  22024. name: "Front",
  22025. image: {
  22026. source: "./media/characters/maksio/front.svg",
  22027. extra: 1549 / 1531,
  22028. bottom: 123.7 / 1674.5429
  22029. }
  22030. },
  22031. back: {
  22032. height: math.unit(1.5, "meters"),
  22033. weight: math.unit(100, "lb"),
  22034. name: "Back",
  22035. image: {
  22036. source: "./media/characters/maksio/back.svg",
  22037. extra: 1541 / 1509,
  22038. bottom: 97 / 1639
  22039. }
  22040. },
  22041. hand: {
  22042. height: math.unit(0.621, "feet"),
  22043. name: "Hand",
  22044. image: {
  22045. source: "./media/characters/maksio/hand.svg"
  22046. }
  22047. },
  22048. foot: {
  22049. height: math.unit(1.611, "feet"),
  22050. name: "Foot",
  22051. image: {
  22052. source: "./media/characters/maksio/foot.svg"
  22053. }
  22054. },
  22055. },
  22056. [
  22057. {
  22058. name: "Shrunken",
  22059. height: math.unit(10, "cm")
  22060. },
  22061. {
  22062. name: "Normal",
  22063. height: math.unit(150, "cm"),
  22064. default: true
  22065. },
  22066. ]
  22067. ))
  22068. characterMakers.push(() => makeCharacter(
  22069. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22070. {
  22071. front: {
  22072. height: math.unit(100, "feet"),
  22073. name: "Front",
  22074. image: {
  22075. source: "./media/characters/erza-bear/front.svg",
  22076. extra: 2449 / 2390,
  22077. bottom: 46 / 2494
  22078. }
  22079. },
  22080. back: {
  22081. height: math.unit(100, "feet"),
  22082. name: "Back",
  22083. image: {
  22084. source: "./media/characters/erza-bear/back.svg",
  22085. extra: 2489 / 2430,
  22086. bottom: 85.4 / 2480
  22087. }
  22088. },
  22089. tail: {
  22090. height: math.unit(42, "feet"),
  22091. name: "Tail",
  22092. image: {
  22093. source: "./media/characters/erza-bear/tail.svg"
  22094. }
  22095. },
  22096. tongue: {
  22097. height: math.unit(8, "feet"),
  22098. name: "Tongue",
  22099. image: {
  22100. source: "./media/characters/erza-bear/tongue.svg"
  22101. }
  22102. },
  22103. dick: {
  22104. height: math.unit(10.5, "feet"),
  22105. name: "Dick",
  22106. image: {
  22107. source: "./media/characters/erza-bear/dick.svg"
  22108. }
  22109. },
  22110. dickVertical: {
  22111. height: math.unit(16.9, "feet"),
  22112. name: "Dick (Vertical)",
  22113. image: {
  22114. source: "./media/characters/erza-bear/dick-vertical.svg"
  22115. }
  22116. },
  22117. },
  22118. [
  22119. {
  22120. name: "Macro",
  22121. height: math.unit(100, "feet"),
  22122. default: true
  22123. },
  22124. ]
  22125. ))
  22126. characterMakers.push(() => makeCharacter(
  22127. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22128. {
  22129. front: {
  22130. height: math.unit(172, "cm"),
  22131. weight: math.unit(73, "kg"),
  22132. name: "Front",
  22133. image: {
  22134. source: "./media/characters/violet-flor/front.svg",
  22135. extra: 1530 / 1442,
  22136. bottom: 61.9 / 1588.8
  22137. }
  22138. },
  22139. back: {
  22140. height: math.unit(180, "cm"),
  22141. weight: math.unit(73, "kg"),
  22142. name: "Back",
  22143. image: {
  22144. source: "./media/characters/violet-flor/back.svg",
  22145. extra: 1692 / 1630,
  22146. bottom: 20 / 1712
  22147. }
  22148. },
  22149. },
  22150. [
  22151. {
  22152. name: "Normal",
  22153. height: math.unit(172, "cm"),
  22154. default: true
  22155. },
  22156. ]
  22157. ))
  22158. characterMakers.push(() => makeCharacter(
  22159. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22160. {
  22161. front: {
  22162. height: math.unit(6, "feet"),
  22163. weight: math.unit(220, "lb"),
  22164. name: "Front",
  22165. image: {
  22166. source: "./media/characters/lynn-rhea/front.svg",
  22167. extra: 310 / 273
  22168. }
  22169. },
  22170. back: {
  22171. height: math.unit(6, "feet"),
  22172. weight: math.unit(220, "lb"),
  22173. name: "Back",
  22174. image: {
  22175. source: "./media/characters/lynn-rhea/back.svg",
  22176. extra: 310 / 273
  22177. }
  22178. },
  22179. dicks: {
  22180. height: math.unit(0.9, "feet"),
  22181. name: "Dicks",
  22182. image: {
  22183. source: "./media/characters/lynn-rhea/dicks.svg"
  22184. }
  22185. },
  22186. slit: {
  22187. height: math.unit(0.4, "feet"),
  22188. name: "Slit",
  22189. image: {
  22190. source: "./media/characters/lynn-rhea/slit.svg"
  22191. }
  22192. },
  22193. },
  22194. [
  22195. {
  22196. name: "Micro",
  22197. height: math.unit(1, "inch")
  22198. },
  22199. {
  22200. name: "Macro",
  22201. height: math.unit(60, "feet"),
  22202. default: true
  22203. },
  22204. {
  22205. name: "Megamacro",
  22206. height: math.unit(2, "miles")
  22207. },
  22208. {
  22209. name: "Gigamacro",
  22210. height: math.unit(3, "earths")
  22211. },
  22212. {
  22213. name: "Galactic",
  22214. height: math.unit(0.8, "galaxies")
  22215. },
  22216. ]
  22217. ))
  22218. characterMakers.push(() => makeCharacter(
  22219. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22220. {
  22221. front: {
  22222. height: math.unit(1600, "feet"),
  22223. weight: math.unit(85758785169, "kg"),
  22224. name: "Front",
  22225. image: {
  22226. source: "./media/characters/valathos/front.svg",
  22227. extra: 1451 / 1339
  22228. }
  22229. },
  22230. },
  22231. [
  22232. {
  22233. name: "Macro",
  22234. height: math.unit(1600, "feet"),
  22235. default: true
  22236. },
  22237. ]
  22238. ))
  22239. characterMakers.push(() => makeCharacter(
  22240. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22241. {
  22242. front: {
  22243. height: math.unit(7 + 5 / 12, "feet"),
  22244. weight: math.unit(300, "lb"),
  22245. name: "Front",
  22246. image: {
  22247. source: "./media/characters/azula/front.svg",
  22248. extra: 3208 / 2880,
  22249. bottom: 80.2 / 3277
  22250. }
  22251. },
  22252. back: {
  22253. height: math.unit(7 + 5 / 12, "feet"),
  22254. weight: math.unit(300, "lb"),
  22255. name: "Back",
  22256. image: {
  22257. source: "./media/characters/azula/back.svg",
  22258. extra: 3169 / 2822,
  22259. bottom: 150.6 / 3321
  22260. }
  22261. },
  22262. },
  22263. [
  22264. {
  22265. name: "Normal",
  22266. height: math.unit(7 + 5 / 12, "feet"),
  22267. default: true
  22268. },
  22269. {
  22270. name: "Big",
  22271. height: math.unit(20, "feet")
  22272. },
  22273. ]
  22274. ))
  22275. characterMakers.push(() => makeCharacter(
  22276. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22277. {
  22278. front: {
  22279. height: math.unit(5 + 1 / 12, "feet"),
  22280. weight: math.unit(110, "lb"),
  22281. name: "Front",
  22282. image: {
  22283. source: "./media/characters/rupert/front.svg",
  22284. extra: 1549 / 1495,
  22285. bottom: 54.2 / 1604.4
  22286. }
  22287. },
  22288. },
  22289. [
  22290. {
  22291. name: "Normal",
  22292. height: math.unit(5 + 1 / 12, "feet"),
  22293. default: true
  22294. },
  22295. ]
  22296. ))
  22297. characterMakers.push(() => makeCharacter(
  22298. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22299. {
  22300. front: {
  22301. height: math.unit(8 + 4 / 12, "feet"),
  22302. weight: math.unit(350, "lb"),
  22303. name: "Front",
  22304. image: {
  22305. source: "./media/characters/sheera-castellar/front.svg",
  22306. extra: 1957 / 1894,
  22307. bottom: 26.97 / 1975.017
  22308. }
  22309. },
  22310. side: {
  22311. height: math.unit(8 + 4 / 12, "feet"),
  22312. weight: math.unit(350, "lb"),
  22313. name: "Side",
  22314. image: {
  22315. source: "./media/characters/sheera-castellar/side.svg",
  22316. extra: 1957 / 1894
  22317. }
  22318. },
  22319. back: {
  22320. height: math.unit(8 + 4 / 12, "feet"),
  22321. weight: math.unit(350, "lb"),
  22322. name: "Back",
  22323. image: {
  22324. source: "./media/characters/sheera-castellar/back.svg",
  22325. extra: 1957 / 1894
  22326. }
  22327. },
  22328. angled: {
  22329. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22330. weight: math.unit(350, "lb"),
  22331. name: "Angled",
  22332. image: {
  22333. source: "./media/characters/sheera-castellar/angled.svg",
  22334. extra: 1807 / 1707,
  22335. bottom: 68 / 1875
  22336. }
  22337. },
  22338. genitals: {
  22339. height: math.unit(2.2, "feet"),
  22340. name: "Genitals",
  22341. image: {
  22342. source: "./media/characters/sheera-castellar/genitals.svg"
  22343. }
  22344. },
  22345. },
  22346. [
  22347. {
  22348. name: "Normal",
  22349. height: math.unit(8 + 4 / 12, "feet")
  22350. },
  22351. {
  22352. name: "Macro",
  22353. height: math.unit(150, "feet"),
  22354. default: true
  22355. },
  22356. {
  22357. name: "Macro+",
  22358. height: math.unit(800, "feet")
  22359. },
  22360. ]
  22361. ))
  22362. characterMakers.push(() => makeCharacter(
  22363. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22364. {
  22365. front: {
  22366. height: math.unit(6, "feet"),
  22367. weight: math.unit(150, "lb"),
  22368. name: "Front",
  22369. image: {
  22370. source: "./media/characters/jaipur/front.svg",
  22371. extra: 3860 / 3731,
  22372. bottom: 287 / 4140
  22373. }
  22374. },
  22375. back: {
  22376. height: math.unit(6, "feet"),
  22377. weight: math.unit(150, "lb"),
  22378. name: "Back",
  22379. image: {
  22380. source: "./media/characters/jaipur/back.svg",
  22381. extra: 4060 / 3930,
  22382. bottom: 151 / 4200
  22383. }
  22384. },
  22385. },
  22386. [
  22387. {
  22388. name: "Normal",
  22389. height: math.unit(1.85, "meters"),
  22390. default: true
  22391. },
  22392. {
  22393. name: "Macro",
  22394. height: math.unit(150, "meters")
  22395. },
  22396. {
  22397. name: "Macro+",
  22398. height: math.unit(0.5, "miles")
  22399. },
  22400. {
  22401. name: "Macro++",
  22402. height: math.unit(2.5, "miles")
  22403. },
  22404. {
  22405. name: "Macro+++",
  22406. height: math.unit(12, "miles")
  22407. },
  22408. {
  22409. name: "Macro++++",
  22410. height: math.unit(120, "miles")
  22411. },
  22412. {
  22413. name: "Macro+++++",
  22414. height: math.unit(1200, "miles")
  22415. },
  22416. ]
  22417. ))
  22418. characterMakers.push(() => makeCharacter(
  22419. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22420. {
  22421. front: {
  22422. height: math.unit(6, "feet"),
  22423. weight: math.unit(150, "lb"),
  22424. name: "Front",
  22425. image: {
  22426. source: "./media/characters/sheila-wolf/front.svg",
  22427. extra: 1931 / 1808,
  22428. bottom: 29.5 / 1960
  22429. }
  22430. },
  22431. dick: {
  22432. height: math.unit(1.464, "feet"),
  22433. name: "Dick",
  22434. image: {
  22435. source: "./media/characters/sheila-wolf/dick.svg"
  22436. }
  22437. },
  22438. muzzle: {
  22439. height: math.unit(0.513, "feet"),
  22440. name: "Muzzle",
  22441. image: {
  22442. source: "./media/characters/sheila-wolf/muzzle.svg"
  22443. }
  22444. },
  22445. },
  22446. [
  22447. {
  22448. name: "Macro",
  22449. height: math.unit(70, "feet"),
  22450. default: true
  22451. },
  22452. ]
  22453. ))
  22454. characterMakers.push(() => makeCharacter(
  22455. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22456. {
  22457. front: {
  22458. height: math.unit(32, "meters"),
  22459. weight: math.unit(300000, "kg"),
  22460. name: "Front",
  22461. image: {
  22462. source: "./media/characters/almor/front.svg",
  22463. extra: 1408 / 1322,
  22464. bottom: 94.6 / 1506.5
  22465. }
  22466. },
  22467. },
  22468. [
  22469. {
  22470. name: "Macro",
  22471. height: math.unit(32, "meters"),
  22472. default: true
  22473. },
  22474. ]
  22475. ))
  22476. characterMakers.push(() => makeCharacter(
  22477. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22478. {
  22479. front: {
  22480. height: math.unit(7, "feet"),
  22481. weight: math.unit(200, "lb"),
  22482. name: "Front",
  22483. image: {
  22484. source: "./media/characters/silver/front.svg",
  22485. extra: 472.1 / 450.5,
  22486. bottom: 26.5 / 499.424
  22487. }
  22488. },
  22489. },
  22490. [
  22491. {
  22492. name: "Normal",
  22493. height: math.unit(7, "feet"),
  22494. default: true
  22495. },
  22496. {
  22497. name: "Macro",
  22498. height: math.unit(800, "feet")
  22499. },
  22500. {
  22501. name: "Megamacro",
  22502. height: math.unit(250, "miles")
  22503. },
  22504. ]
  22505. ))
  22506. characterMakers.push(() => makeCharacter(
  22507. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22508. {
  22509. front: {
  22510. height: math.unit(6, "feet"),
  22511. weight: math.unit(150, "lb"),
  22512. name: "Front",
  22513. image: {
  22514. source: "./media/characters/pliskin/front.svg",
  22515. extra: 1469 / 1359,
  22516. bottom: 70 / 1540
  22517. }
  22518. },
  22519. },
  22520. [
  22521. {
  22522. name: "Micro",
  22523. height: math.unit(3, "inches")
  22524. },
  22525. {
  22526. name: "Normal",
  22527. height: math.unit(5 + 11 / 12, "feet"),
  22528. default: true
  22529. },
  22530. {
  22531. name: "Macro",
  22532. height: math.unit(120, "feet")
  22533. },
  22534. ]
  22535. ))
  22536. characterMakers.push(() => makeCharacter(
  22537. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22538. {
  22539. front: {
  22540. height: math.unit(6, "feet"),
  22541. weight: math.unit(150, "lb"),
  22542. name: "Front",
  22543. image: {
  22544. source: "./media/characters/sammy/front.svg",
  22545. extra: 1193 / 1089,
  22546. bottom: 30.5 / 1226
  22547. }
  22548. },
  22549. },
  22550. [
  22551. {
  22552. name: "Macro",
  22553. height: math.unit(1700, "feet"),
  22554. default: true
  22555. },
  22556. {
  22557. name: "Examacro",
  22558. height: math.unit(2.5e9, "lightyears")
  22559. },
  22560. ]
  22561. ))
  22562. characterMakers.push(() => makeCharacter(
  22563. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22564. {
  22565. front: {
  22566. height: math.unit(21, "meters"),
  22567. weight: math.unit(12, "tonnes"),
  22568. name: "Front",
  22569. image: {
  22570. source: "./media/characters/kuru/front.svg",
  22571. extra: 4301 / 3785,
  22572. bottom: 371.3 / 4691
  22573. }
  22574. },
  22575. },
  22576. [
  22577. {
  22578. name: "Macro",
  22579. height: math.unit(21, "meters"),
  22580. default: true
  22581. },
  22582. ]
  22583. ))
  22584. characterMakers.push(() => makeCharacter(
  22585. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22586. {
  22587. front: {
  22588. height: math.unit(23, "meters"),
  22589. weight: math.unit(12.2, "tonnes"),
  22590. name: "Front",
  22591. image: {
  22592. source: "./media/characters/rakka/front.svg",
  22593. extra: 4670 / 4169,
  22594. bottom: 301 / 4968.7
  22595. }
  22596. },
  22597. },
  22598. [
  22599. {
  22600. name: "Macro",
  22601. height: math.unit(23, "meters"),
  22602. default: true
  22603. },
  22604. ]
  22605. ))
  22606. characterMakers.push(() => makeCharacter(
  22607. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22608. {
  22609. front: {
  22610. height: math.unit(6, "feet"),
  22611. weight: math.unit(150, "lb"),
  22612. name: "Front",
  22613. image: {
  22614. source: "./media/characters/rhys-feline/front.svg",
  22615. extra: 2488 / 2308,
  22616. bottom: 35.67 / 2519.19
  22617. }
  22618. },
  22619. },
  22620. [
  22621. {
  22622. name: "Really Small",
  22623. height: math.unit(1, "nm")
  22624. },
  22625. {
  22626. name: "Micro",
  22627. height: math.unit(4, "inches")
  22628. },
  22629. {
  22630. name: "Normal",
  22631. height: math.unit(4 + 10 / 12, "feet"),
  22632. default: true
  22633. },
  22634. {
  22635. name: "Macro",
  22636. height: math.unit(100, "feet")
  22637. },
  22638. {
  22639. name: "Megamacto",
  22640. height: math.unit(50, "miles")
  22641. },
  22642. ]
  22643. ))
  22644. characterMakers.push(() => makeCharacter(
  22645. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22646. {
  22647. side: {
  22648. height: math.unit(30, "feet"),
  22649. weight: math.unit(35000, "kg"),
  22650. name: "Side",
  22651. image: {
  22652. source: "./media/characters/alydar/side.svg",
  22653. extra: 234 / 222,
  22654. bottom: 6.5 / 241
  22655. }
  22656. },
  22657. front: {
  22658. height: math.unit(30, "feet"),
  22659. weight: math.unit(35000, "kg"),
  22660. name: "Front",
  22661. image: {
  22662. source: "./media/characters/alydar/front.svg",
  22663. extra: 223.37 / 210.2,
  22664. bottom: 22.3 / 246.76
  22665. }
  22666. },
  22667. top: {
  22668. height: math.unit(64.54, "feet"),
  22669. weight: math.unit(35000, "kg"),
  22670. name: "Top",
  22671. image: {
  22672. source: "./media/characters/alydar/top.svg"
  22673. }
  22674. },
  22675. anthro: {
  22676. height: math.unit(30, "feet"),
  22677. weight: math.unit(9000, "kg"),
  22678. name: "Anthro",
  22679. image: {
  22680. source: "./media/characters/alydar/anthro.svg",
  22681. extra: 432 / 421,
  22682. bottom: 7.18 / 440
  22683. }
  22684. },
  22685. maw: {
  22686. height: math.unit(11.693, "feet"),
  22687. name: "Maw",
  22688. image: {
  22689. source: "./media/characters/alydar/maw.svg"
  22690. }
  22691. },
  22692. head: {
  22693. height: math.unit(11.693, "feet"),
  22694. name: "Head",
  22695. image: {
  22696. source: "./media/characters/alydar/head.svg"
  22697. }
  22698. },
  22699. headAlt: {
  22700. height: math.unit(12.861, "feet"),
  22701. name: "Head (Alt)",
  22702. image: {
  22703. source: "./media/characters/alydar/head-alt.svg"
  22704. }
  22705. },
  22706. wing: {
  22707. height: math.unit(20.712, "feet"),
  22708. name: "Wing",
  22709. image: {
  22710. source: "./media/characters/alydar/wing.svg"
  22711. }
  22712. },
  22713. wingFeather: {
  22714. height: math.unit(9.662, "feet"),
  22715. name: "Wing Feather",
  22716. image: {
  22717. source: "./media/characters/alydar/wing-feather.svg"
  22718. }
  22719. },
  22720. countourFeather: {
  22721. height: math.unit(4.154, "feet"),
  22722. name: "Contour Feather",
  22723. image: {
  22724. source: "./media/characters/alydar/contour-feather.svg"
  22725. }
  22726. },
  22727. },
  22728. [
  22729. {
  22730. name: "Diplomatic",
  22731. height: math.unit(13, "feet"),
  22732. default: true
  22733. },
  22734. {
  22735. name: "Small",
  22736. height: math.unit(30, "feet")
  22737. },
  22738. {
  22739. name: "Normal",
  22740. height: math.unit(95, "feet"),
  22741. default: true
  22742. },
  22743. {
  22744. name: "Large",
  22745. height: math.unit(285, "feet")
  22746. },
  22747. {
  22748. name: "Incomprehensible",
  22749. height: math.unit(450, "megameters")
  22750. },
  22751. ]
  22752. ))
  22753. characterMakers.push(() => makeCharacter(
  22754. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22755. {
  22756. side: {
  22757. height: math.unit(11, "feet"),
  22758. weight: math.unit(1750, "kg"),
  22759. name: "Side",
  22760. image: {
  22761. source: "./media/characters/selicia/side.svg",
  22762. extra: 440 / 396,
  22763. bottom: 24.8 / 465.979
  22764. }
  22765. },
  22766. maw: {
  22767. height: math.unit(4.665, "feet"),
  22768. name: "Maw",
  22769. image: {
  22770. source: "./media/characters/selicia/maw.svg"
  22771. }
  22772. },
  22773. },
  22774. [
  22775. {
  22776. name: "Normal",
  22777. height: math.unit(11, "feet"),
  22778. default: true
  22779. },
  22780. ]
  22781. ))
  22782. characterMakers.push(() => makeCharacter(
  22783. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22784. {
  22785. side: {
  22786. height: math.unit(2 + 6 / 12, "feet"),
  22787. weight: math.unit(30, "lb"),
  22788. name: "Side",
  22789. image: {
  22790. source: "./media/characters/layla/side.svg",
  22791. extra: 244 / 188,
  22792. bottom: 18.2 / 262.1
  22793. }
  22794. },
  22795. back: {
  22796. height: math.unit(2 + 6 / 12, "feet"),
  22797. weight: math.unit(30, "lb"),
  22798. name: "Back",
  22799. image: {
  22800. source: "./media/characters/layla/back.svg",
  22801. extra: 308 / 241.5,
  22802. bottom: 8.9 / 316.8
  22803. }
  22804. },
  22805. cumming: {
  22806. height: math.unit(2 + 6 / 12, "feet"),
  22807. weight: math.unit(30, "lb"),
  22808. name: "Cumming",
  22809. image: {
  22810. source: "./media/characters/layla/cumming.svg",
  22811. extra: 342 / 279,
  22812. bottom: 595 / 938
  22813. }
  22814. },
  22815. dickFlaccid: {
  22816. height: math.unit(2.595, "feet"),
  22817. name: "Flaccid Genitals",
  22818. image: {
  22819. source: "./media/characters/layla/dick-flaccid.svg"
  22820. }
  22821. },
  22822. dickErect: {
  22823. height: math.unit(2.359, "feet"),
  22824. name: "Erect Genitals",
  22825. image: {
  22826. source: "./media/characters/layla/dick-erect.svg"
  22827. }
  22828. },
  22829. },
  22830. [
  22831. {
  22832. name: "Micro",
  22833. height: math.unit(1, "inch")
  22834. },
  22835. {
  22836. name: "Small",
  22837. height: math.unit(1, "foot")
  22838. },
  22839. {
  22840. name: "Normal",
  22841. height: math.unit(2 + 6 / 12, "feet"),
  22842. default: true
  22843. },
  22844. {
  22845. name: "Macro",
  22846. height: math.unit(200, "feet")
  22847. },
  22848. {
  22849. name: "Megamacro",
  22850. height: math.unit(1000, "miles")
  22851. },
  22852. {
  22853. name: "Planetary",
  22854. height: math.unit(8000, "miles")
  22855. },
  22856. {
  22857. name: "True Layla",
  22858. height: math.unit(200000 * 7, "multiverses")
  22859. },
  22860. ]
  22861. ))
  22862. characterMakers.push(() => makeCharacter(
  22863. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22864. {
  22865. back: {
  22866. height: math.unit(10.5, "feet"),
  22867. weight: math.unit(800, "lb"),
  22868. name: "Back",
  22869. image: {
  22870. source: "./media/characters/knox/back.svg",
  22871. extra: 1486 / 1089,
  22872. bottom: 107 / 1601.4
  22873. }
  22874. },
  22875. side: {
  22876. height: math.unit(10.5, "feet"),
  22877. weight: math.unit(800, "lb"),
  22878. name: "Side",
  22879. image: {
  22880. source: "./media/characters/knox/side.svg",
  22881. extra: 244 / 218,
  22882. bottom: 14 / 260
  22883. }
  22884. },
  22885. },
  22886. [
  22887. {
  22888. name: "Compact",
  22889. height: math.unit(10.5, "feet"),
  22890. default: true
  22891. },
  22892. {
  22893. name: "Dynamax",
  22894. height: math.unit(210, "feet")
  22895. },
  22896. {
  22897. name: "Full Macro",
  22898. height: math.unit(850, "feet")
  22899. },
  22900. ]
  22901. ))
  22902. characterMakers.push(() => makeCharacter(
  22903. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22904. {
  22905. front: {
  22906. height: math.unit(6, "feet"),
  22907. weight: math.unit(152, "lb"),
  22908. name: "Front",
  22909. image: {
  22910. source: "./media/characters/shin-pikachu/front.svg",
  22911. extra: 1574 / 1480,
  22912. bottom: 53.3 / 1626
  22913. }
  22914. },
  22915. hand: {
  22916. height: math.unit(1.055, "feet"),
  22917. name: "Hand",
  22918. image: {
  22919. source: "./media/characters/shin-pikachu/hand.svg"
  22920. }
  22921. },
  22922. foot: {
  22923. height: math.unit(1.1, "feet"),
  22924. name: "Foot",
  22925. image: {
  22926. source: "./media/characters/shin-pikachu/foot.svg"
  22927. }
  22928. },
  22929. collar: {
  22930. height: math.unit(0.386, "feet"),
  22931. name: "Collar",
  22932. image: {
  22933. source: "./media/characters/shin-pikachu/collar.svg"
  22934. }
  22935. },
  22936. },
  22937. [
  22938. {
  22939. name: "Smallest",
  22940. height: math.unit(0.5, "inches")
  22941. },
  22942. {
  22943. name: "Micro",
  22944. height: math.unit(6, "inches")
  22945. },
  22946. {
  22947. name: "Normal",
  22948. height: math.unit(6, "feet"),
  22949. default: true
  22950. },
  22951. {
  22952. name: "Macro",
  22953. height: math.unit(150, "feet")
  22954. },
  22955. ]
  22956. ))
  22957. characterMakers.push(() => makeCharacter(
  22958. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22959. {
  22960. front: {
  22961. height: math.unit(28, "feet"),
  22962. weight: math.unit(10500, "lb"),
  22963. name: "Front",
  22964. image: {
  22965. source: "./media/characters/kayda/front.svg",
  22966. extra: 1536 / 1428,
  22967. bottom: 68.7 / 1603
  22968. }
  22969. },
  22970. back: {
  22971. height: math.unit(28, "feet"),
  22972. weight: math.unit(10500, "lb"),
  22973. name: "Back",
  22974. image: {
  22975. source: "./media/characters/kayda/back.svg",
  22976. extra: 1557 / 1464,
  22977. bottom: 39.5 / 1597.49
  22978. }
  22979. },
  22980. dick: {
  22981. height: math.unit(3.858, "feet"),
  22982. name: "Dick",
  22983. image: {
  22984. source: "./media/characters/kayda/dick.svg"
  22985. }
  22986. },
  22987. },
  22988. [
  22989. {
  22990. name: "Macro",
  22991. height: math.unit(28, "feet"),
  22992. default: true
  22993. },
  22994. ]
  22995. ))
  22996. characterMakers.push(() => makeCharacter(
  22997. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22998. {
  22999. front: {
  23000. height: math.unit(10 + 11 / 12, "feet"),
  23001. weight: math.unit(1400, "lb"),
  23002. name: "Front",
  23003. image: {
  23004. source: "./media/characters/brian/front.svg",
  23005. extra: 737 / 692,
  23006. bottom: 55.4 / 785
  23007. }
  23008. },
  23009. },
  23010. [
  23011. {
  23012. name: "Normal",
  23013. height: math.unit(10 + 11 / 12, "feet"),
  23014. default: true
  23015. },
  23016. ]
  23017. ))
  23018. characterMakers.push(() => makeCharacter(
  23019. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23020. {
  23021. front: {
  23022. height: math.unit(5 + 8 / 12, "feet"),
  23023. weight: math.unit(140, "lb"),
  23024. name: "Front",
  23025. image: {
  23026. source: "./media/characters/khemri/front.svg",
  23027. extra: 4780 / 4059,
  23028. bottom: 80.1 / 4859.25
  23029. }
  23030. },
  23031. },
  23032. [
  23033. {
  23034. name: "Micro",
  23035. height: math.unit(6, "inches")
  23036. },
  23037. {
  23038. name: "Normal",
  23039. height: math.unit(5 + 8 / 12, "feet"),
  23040. default: true
  23041. },
  23042. ]
  23043. ))
  23044. characterMakers.push(() => makeCharacter(
  23045. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23046. {
  23047. front: {
  23048. height: math.unit(13, "feet"),
  23049. weight: math.unit(1700, "lb"),
  23050. name: "Front",
  23051. image: {
  23052. source: "./media/characters/felix-braveheart/front.svg",
  23053. extra: 1222 / 1157,
  23054. bottom: 53.2 / 1280
  23055. }
  23056. },
  23057. back: {
  23058. height: math.unit(13, "feet"),
  23059. weight: math.unit(1700, "lb"),
  23060. name: "Back",
  23061. image: {
  23062. source: "./media/characters/felix-braveheart/back.svg",
  23063. extra: 1277 / 1203,
  23064. bottom: 50.2 / 1327
  23065. }
  23066. },
  23067. feral: {
  23068. height: math.unit(6, "feet"),
  23069. weight: math.unit(400, "lb"),
  23070. name: "Feral",
  23071. image: {
  23072. source: "./media/characters/felix-braveheart/feral.svg",
  23073. extra: 682 / 625,
  23074. bottom: 6.9 / 688
  23075. }
  23076. },
  23077. },
  23078. [
  23079. {
  23080. name: "Normal",
  23081. height: math.unit(13, "feet"),
  23082. default: true
  23083. },
  23084. ]
  23085. ))
  23086. characterMakers.push(() => makeCharacter(
  23087. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23088. {
  23089. side: {
  23090. height: math.unit(5 + 11 / 12, "feet"),
  23091. weight: math.unit(1400, "lb"),
  23092. name: "Side",
  23093. image: {
  23094. source: "./media/characters/shadow-blade/side.svg",
  23095. extra: 1726 / 1267,
  23096. bottom: 58.4 / 1785
  23097. }
  23098. },
  23099. },
  23100. [
  23101. {
  23102. name: "Normal",
  23103. height: math.unit(5 + 11 / 12, "feet"),
  23104. default: true
  23105. },
  23106. ]
  23107. ))
  23108. characterMakers.push(() => makeCharacter(
  23109. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23110. {
  23111. front: {
  23112. height: math.unit(1 + 6 / 12, "feet"),
  23113. weight: math.unit(25, "lb"),
  23114. name: "Front",
  23115. image: {
  23116. source: "./media/characters/karla-halldor/front.svg",
  23117. extra: 1459 / 1383,
  23118. bottom: 12 / 1472
  23119. }
  23120. },
  23121. },
  23122. [
  23123. {
  23124. name: "Normal",
  23125. height: math.unit(1 + 6 / 12, "feet"),
  23126. default: true
  23127. },
  23128. ]
  23129. ))
  23130. characterMakers.push(() => makeCharacter(
  23131. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23132. {
  23133. front: {
  23134. height: math.unit(6 + 2 / 12, "feet"),
  23135. weight: math.unit(160, "lb"),
  23136. name: "Front",
  23137. image: {
  23138. source: "./media/characters/ariam/front.svg",
  23139. extra: 714 / 617,
  23140. bottom: 23.4 / 737,
  23141. }
  23142. },
  23143. squatting: {
  23144. height: math.unit(4.1, "feet"),
  23145. weight: math.unit(160, "lb"),
  23146. name: "Squatting",
  23147. image: {
  23148. source: "./media/characters/ariam/squatting.svg",
  23149. extra: 2617 / 2112,
  23150. bottom: 61.2 / 2681,
  23151. }
  23152. },
  23153. },
  23154. [
  23155. {
  23156. name: "Normal",
  23157. height: math.unit(6 + 2 / 12, "feet"),
  23158. default: true
  23159. },
  23160. {
  23161. name: "Normal+",
  23162. height: math.unit(4, "meters")
  23163. },
  23164. {
  23165. name: "Macro",
  23166. height: math.unit(50, "meters")
  23167. },
  23168. {
  23169. name: "Macro+",
  23170. height: math.unit(100, "meters")
  23171. },
  23172. {
  23173. name: "Megamacro",
  23174. height: math.unit(20, "km")
  23175. },
  23176. ]
  23177. ))
  23178. characterMakers.push(() => makeCharacter(
  23179. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23180. {
  23181. front: {
  23182. height: math.unit(1.67, "meters"),
  23183. weight: math.unit(140, "lb"),
  23184. name: "Front",
  23185. image: {
  23186. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23187. extra: 438 / 410,
  23188. bottom: 0.75 / 439
  23189. }
  23190. },
  23191. },
  23192. [
  23193. {
  23194. name: "Shrunken",
  23195. height: math.unit(7.6, "cm")
  23196. },
  23197. {
  23198. name: "Human Scale",
  23199. height: math.unit(1.67, "meters")
  23200. },
  23201. {
  23202. name: "Wolxi Scale",
  23203. height: math.unit(36.7, "meters"),
  23204. default: true
  23205. },
  23206. ]
  23207. ))
  23208. characterMakers.push(() => makeCharacter(
  23209. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23210. {
  23211. front: {
  23212. height: math.unit(1.73, "meters"),
  23213. weight: math.unit(240, "lb"),
  23214. name: "Front",
  23215. image: {
  23216. source: "./media/characters/izue-two-mothers/front.svg",
  23217. extra: 469 / 437,
  23218. bottom: 1.24 / 470.6
  23219. }
  23220. },
  23221. },
  23222. [
  23223. {
  23224. name: "Shrunken",
  23225. height: math.unit(7.86, "cm")
  23226. },
  23227. {
  23228. name: "Human Scale",
  23229. height: math.unit(1.73, "meters")
  23230. },
  23231. {
  23232. name: "Wolxi Scale",
  23233. height: math.unit(38, "meters"),
  23234. default: true
  23235. },
  23236. ]
  23237. ))
  23238. characterMakers.push(() => makeCharacter(
  23239. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23240. {
  23241. front: {
  23242. height: math.unit(1.55, "meters"),
  23243. weight: math.unit(120, "lb"),
  23244. name: "Front",
  23245. image: {
  23246. source: "./media/characters/teeku-love-shack/front.svg",
  23247. extra: 387 / 362,
  23248. bottom: 1.51 / 388
  23249. }
  23250. },
  23251. },
  23252. [
  23253. {
  23254. name: "Shrunken",
  23255. height: math.unit(7, "cm")
  23256. },
  23257. {
  23258. name: "Human Scale",
  23259. height: math.unit(1.55, "meters")
  23260. },
  23261. {
  23262. name: "Wolxi Scale",
  23263. height: math.unit(34.1, "meters"),
  23264. default: true
  23265. },
  23266. ]
  23267. ))
  23268. characterMakers.push(() => makeCharacter(
  23269. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23270. {
  23271. front: {
  23272. height: math.unit(1.83, "meters"),
  23273. weight: math.unit(135, "lb"),
  23274. name: "Front",
  23275. image: {
  23276. source: "./media/characters/dejma-the-red/front.svg",
  23277. extra: 480 / 458,
  23278. bottom: 1.8 / 482
  23279. }
  23280. },
  23281. },
  23282. [
  23283. {
  23284. name: "Shrunken",
  23285. height: math.unit(8.3, "cm")
  23286. },
  23287. {
  23288. name: "Human Scale",
  23289. height: math.unit(1.83, "meters")
  23290. },
  23291. {
  23292. name: "Wolxi Scale",
  23293. height: math.unit(40, "meters"),
  23294. default: true
  23295. },
  23296. ]
  23297. ))
  23298. characterMakers.push(() => makeCharacter(
  23299. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23300. {
  23301. front: {
  23302. height: math.unit(1.78, "meters"),
  23303. weight: math.unit(65, "kg"),
  23304. name: "Front",
  23305. image: {
  23306. source: "./media/characters/aki/front.svg",
  23307. extra: 452 / 415
  23308. }
  23309. },
  23310. frontNsfw: {
  23311. height: math.unit(1.78, "meters"),
  23312. weight: math.unit(65, "kg"),
  23313. name: "Front (NSFW)",
  23314. image: {
  23315. source: "./media/characters/aki/front-nsfw.svg",
  23316. extra: 452 / 415
  23317. }
  23318. },
  23319. back: {
  23320. height: math.unit(1.78, "meters"),
  23321. weight: math.unit(65, "kg"),
  23322. name: "Back",
  23323. image: {
  23324. source: "./media/characters/aki/back.svg",
  23325. extra: 452 / 415
  23326. }
  23327. },
  23328. rump: {
  23329. height: math.unit(2.05, "feet"),
  23330. name: "Rump",
  23331. image: {
  23332. source: "./media/characters/aki/rump.svg"
  23333. }
  23334. },
  23335. dick: {
  23336. height: math.unit(0.95, "feet"),
  23337. name: "Dick",
  23338. image: {
  23339. source: "./media/characters/aki/dick.svg"
  23340. }
  23341. },
  23342. },
  23343. [
  23344. {
  23345. name: "Micro",
  23346. height: math.unit(15, "cm")
  23347. },
  23348. {
  23349. name: "Normal",
  23350. height: math.unit(178, "cm"),
  23351. default: true
  23352. },
  23353. {
  23354. name: "Macro",
  23355. height: math.unit(214, "m")
  23356. },
  23357. {
  23358. name: "Macro+",
  23359. height: math.unit(534, "m")
  23360. },
  23361. ]
  23362. ))
  23363. characterMakers.push(() => makeCharacter(
  23364. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23365. {
  23366. front: {
  23367. height: math.unit(5 + 5 / 12, "feet"),
  23368. weight: math.unit(120, "lb"),
  23369. name: "Front",
  23370. image: {
  23371. source: "./media/characters/ari/front.svg",
  23372. extra: 714.5 / 682,
  23373. bottom: 8 / 722.5
  23374. }
  23375. },
  23376. },
  23377. [
  23378. {
  23379. name: "Normal",
  23380. height: math.unit(5 + 5 / 12, "feet")
  23381. },
  23382. {
  23383. name: "Macro",
  23384. height: math.unit(100, "feet"),
  23385. default: true
  23386. },
  23387. {
  23388. name: "Megamacro",
  23389. height: math.unit(100, "miles")
  23390. },
  23391. {
  23392. name: "Gigamacro",
  23393. height: math.unit(80000, "miles")
  23394. },
  23395. ]
  23396. ))
  23397. characterMakers.push(() => makeCharacter(
  23398. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23399. {
  23400. side: {
  23401. height: math.unit(9, "feet"),
  23402. weight: math.unit(400, "kg"),
  23403. name: "Side",
  23404. image: {
  23405. source: "./media/characters/bolt/side.svg",
  23406. extra: 1126 / 896,
  23407. bottom: 60 / 1187.3,
  23408. }
  23409. },
  23410. },
  23411. [
  23412. {
  23413. name: "Micro",
  23414. height: math.unit(5, "inches")
  23415. },
  23416. {
  23417. name: "Normal",
  23418. height: math.unit(9, "feet"),
  23419. default: true
  23420. },
  23421. {
  23422. name: "Macro",
  23423. height: math.unit(700, "feet")
  23424. },
  23425. {
  23426. name: "Max Size",
  23427. height: math.unit(1.52e22, "yottameters")
  23428. },
  23429. ]
  23430. ))
  23431. characterMakers.push(() => makeCharacter(
  23432. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23433. {
  23434. front: {
  23435. height: math.unit(4.53, "meters"),
  23436. weight: math.unit(3, "tons"),
  23437. name: "Front",
  23438. image: {
  23439. source: "./media/characters/draekon-sylviar/front.svg",
  23440. extra: 1228 / 1068,
  23441. bottom: 41 / 1270
  23442. }
  23443. },
  23444. tail: {
  23445. height: math.unit(1.772, "meter"),
  23446. name: "Tail",
  23447. image: {
  23448. source: "./media/characters/draekon-sylviar/tail.svg"
  23449. }
  23450. },
  23451. head: {
  23452. height: math.unit(1.331, "meter"),
  23453. name: "Head",
  23454. image: {
  23455. source: "./media/characters/draekon-sylviar/head.svg"
  23456. }
  23457. },
  23458. hand: {
  23459. height: math.unit(0.564, "meter"),
  23460. name: "Hand",
  23461. image: {
  23462. source: "./media/characters/draekon-sylviar/hand.svg"
  23463. }
  23464. },
  23465. foot: {
  23466. height: math.unit(0.621, "meter"),
  23467. name: "Foot",
  23468. image: {
  23469. source: "./media/characters/draekon-sylviar/foot.svg",
  23470. bottom: 32 / 324
  23471. }
  23472. },
  23473. dick: {
  23474. height: math.unit(61, "cm"),
  23475. name: "Dick",
  23476. image: {
  23477. source: "./media/characters/draekon-sylviar/dick.svg"
  23478. }
  23479. },
  23480. dickseparated: {
  23481. height: math.unit(61, "cm"),
  23482. name: "Dick-separated",
  23483. image: {
  23484. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23485. }
  23486. },
  23487. },
  23488. [
  23489. {
  23490. name: "Small",
  23491. height: math.unit(4.53 / 2, "meters"),
  23492. default: true
  23493. },
  23494. {
  23495. name: "Normal",
  23496. height: math.unit(4.53, "meters"),
  23497. default: true
  23498. },
  23499. {
  23500. name: "Large",
  23501. height: math.unit(4.53 * 2, "meters"),
  23502. },
  23503. ]
  23504. ))
  23505. characterMakers.push(() => makeCharacter(
  23506. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23507. {
  23508. front: {
  23509. height: math.unit(6 + 2 / 12, "feet"),
  23510. weight: math.unit(180, "lb"),
  23511. name: "Front",
  23512. image: {
  23513. source: "./media/characters/brawler/front.svg",
  23514. extra: 3301 / 3027,
  23515. bottom: 138 / 3439
  23516. }
  23517. },
  23518. },
  23519. [
  23520. {
  23521. name: "Normal",
  23522. height: math.unit(6 + 2 / 12, "feet"),
  23523. default: true
  23524. },
  23525. ]
  23526. ))
  23527. characterMakers.push(() => makeCharacter(
  23528. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23529. {
  23530. front: {
  23531. height: math.unit(11, "feet"),
  23532. weight: math.unit(1000, "lb"),
  23533. name: "Front",
  23534. image: {
  23535. source: "./media/characters/alex/front.svg",
  23536. bottom: 44.5 / 620
  23537. }
  23538. },
  23539. },
  23540. [
  23541. {
  23542. name: "Micro",
  23543. height: math.unit(5, "inches")
  23544. },
  23545. {
  23546. name: "Normal",
  23547. height: math.unit(11, "feet"),
  23548. default: true
  23549. },
  23550. {
  23551. name: "Macro",
  23552. height: math.unit(9.5e9, "feet")
  23553. },
  23554. {
  23555. name: "Max Size",
  23556. height: math.unit(1.4e283, "yottameters")
  23557. },
  23558. ]
  23559. ))
  23560. characterMakers.push(() => makeCharacter(
  23561. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23562. {
  23563. female: {
  23564. height: math.unit(29.9, "m"),
  23565. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23566. name: "Female",
  23567. image: {
  23568. source: "./media/characters/zenari/female.svg",
  23569. extra: 3281.6 / 3217,
  23570. bottom: 72.2 / 3353
  23571. }
  23572. },
  23573. male: {
  23574. height: math.unit(27.7, "m"),
  23575. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23576. name: "Male",
  23577. image: {
  23578. source: "./media/characters/zenari/male.svg",
  23579. extra: 3008 / 2991,
  23580. bottom: 54.6 / 3069
  23581. }
  23582. },
  23583. },
  23584. [
  23585. {
  23586. name: "Macro",
  23587. height: math.unit(29.7, "meters"),
  23588. default: true
  23589. },
  23590. ]
  23591. ))
  23592. characterMakers.push(() => makeCharacter(
  23593. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23594. {
  23595. female: {
  23596. height: math.unit(23.8, "m"),
  23597. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23598. name: "Female",
  23599. image: {
  23600. source: "./media/characters/mactarian/female.svg",
  23601. extra: 2662 / 2569,
  23602. bottom: 73 / 2736
  23603. }
  23604. },
  23605. male: {
  23606. height: math.unit(23.8, "m"),
  23607. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23608. name: "Male",
  23609. image: {
  23610. source: "./media/characters/mactarian/male.svg",
  23611. extra: 2673 / 2600,
  23612. bottom: 76 / 2750
  23613. }
  23614. },
  23615. },
  23616. [
  23617. {
  23618. name: "Macro",
  23619. height: math.unit(23.8, "meters"),
  23620. default: true
  23621. },
  23622. ]
  23623. ))
  23624. characterMakers.push(() => makeCharacter(
  23625. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23626. {
  23627. female: {
  23628. height: math.unit(19.3, "m"),
  23629. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23630. name: "Female",
  23631. image: {
  23632. source: "./media/characters/umok/female.svg",
  23633. extra: 2186 / 2078,
  23634. bottom: 87 / 2277
  23635. }
  23636. },
  23637. male: {
  23638. height: math.unit(19.5, "m"),
  23639. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23640. name: "Male",
  23641. image: {
  23642. source: "./media/characters/umok/male.svg",
  23643. extra: 2233 / 2140,
  23644. bottom: 24.4 / 2258
  23645. }
  23646. },
  23647. },
  23648. [
  23649. {
  23650. name: "Macro",
  23651. height: math.unit(19.3, "meters"),
  23652. default: true
  23653. },
  23654. ]
  23655. ))
  23656. characterMakers.push(() => makeCharacter(
  23657. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23658. {
  23659. female: {
  23660. height: math.unit(26.15, "m"),
  23661. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23662. name: "Female",
  23663. image: {
  23664. source: "./media/characters/joraxian/female.svg",
  23665. extra: 2912 / 2824,
  23666. bottom: 36 / 2956
  23667. }
  23668. },
  23669. male: {
  23670. height: math.unit(25.4, "m"),
  23671. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23672. name: "Male",
  23673. image: {
  23674. source: "./media/characters/joraxian/male.svg",
  23675. extra: 2877 / 2721,
  23676. bottom: 82 / 2967
  23677. }
  23678. },
  23679. },
  23680. [
  23681. {
  23682. name: "Macro",
  23683. height: math.unit(26.15, "meters"),
  23684. default: true
  23685. },
  23686. ]
  23687. ))
  23688. characterMakers.push(() => makeCharacter(
  23689. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23690. {
  23691. female: {
  23692. height: math.unit(21.6, "m"),
  23693. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23694. name: "Female",
  23695. image: {
  23696. source: "./media/characters/sthara/female.svg",
  23697. extra: 2516 / 2347,
  23698. bottom: 21.5 / 2537
  23699. }
  23700. },
  23701. male: {
  23702. height: math.unit(24, "m"),
  23703. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23704. name: "Male",
  23705. image: {
  23706. source: "./media/characters/sthara/male.svg",
  23707. extra: 2732 / 2607,
  23708. bottom: 23 / 2732
  23709. }
  23710. },
  23711. },
  23712. [
  23713. {
  23714. name: "Macro",
  23715. height: math.unit(21.6, "meters"),
  23716. default: true
  23717. },
  23718. ]
  23719. ))
  23720. characterMakers.push(() => makeCharacter(
  23721. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23722. {
  23723. front: {
  23724. height: math.unit(6 + 4 / 12, "feet"),
  23725. weight: math.unit(175, "lb"),
  23726. name: "Front",
  23727. image: {
  23728. source: "./media/characters/luka-bryzant/front.svg",
  23729. extra: 311 / 289,
  23730. bottom: 4 / 315
  23731. }
  23732. },
  23733. back: {
  23734. height: math.unit(6 + 4 / 12, "feet"),
  23735. weight: math.unit(175, "lb"),
  23736. name: "Back",
  23737. image: {
  23738. source: "./media/characters/luka-bryzant/back.svg",
  23739. extra: 311 / 289,
  23740. bottom: 3.8 / 313.7
  23741. }
  23742. },
  23743. },
  23744. [
  23745. {
  23746. name: "Micro",
  23747. height: math.unit(10, "inches")
  23748. },
  23749. {
  23750. name: "Normal",
  23751. height: math.unit(6 + 4 / 12, "feet"),
  23752. default: true
  23753. },
  23754. {
  23755. name: "Large",
  23756. height: math.unit(12, "feet")
  23757. },
  23758. ]
  23759. ))
  23760. characterMakers.push(() => makeCharacter(
  23761. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23762. {
  23763. front: {
  23764. height: math.unit(5 + 7 / 12, "feet"),
  23765. weight: math.unit(185, "lb"),
  23766. name: "Front",
  23767. image: {
  23768. source: "./media/characters/aman-aquila/front.svg",
  23769. extra: 1013 / 976,
  23770. bottom: 45.6 / 1057
  23771. }
  23772. },
  23773. side: {
  23774. height: math.unit(5 + 7 / 12, "feet"),
  23775. weight: math.unit(185, "lb"),
  23776. name: "Side",
  23777. image: {
  23778. source: "./media/characters/aman-aquila/side.svg",
  23779. extra: 1054 / 1011,
  23780. bottom: 15 / 1070
  23781. }
  23782. },
  23783. back: {
  23784. height: math.unit(5 + 7 / 12, "feet"),
  23785. weight: math.unit(185, "lb"),
  23786. name: "Back",
  23787. image: {
  23788. source: "./media/characters/aman-aquila/back.svg",
  23789. extra: 1026 / 970,
  23790. bottom: 12 / 1039
  23791. }
  23792. },
  23793. head: {
  23794. height: math.unit(1.211, "feet"),
  23795. name: "Head",
  23796. image: {
  23797. source: "./media/characters/aman-aquila/head.svg",
  23798. }
  23799. },
  23800. },
  23801. [
  23802. {
  23803. name: "Minimicro",
  23804. height: math.unit(0.057, "inches")
  23805. },
  23806. {
  23807. name: "Micro",
  23808. height: math.unit(7, "inches")
  23809. },
  23810. {
  23811. name: "Mini",
  23812. height: math.unit(3 + 7 / 12, "feet")
  23813. },
  23814. {
  23815. name: "Normal",
  23816. height: math.unit(5 + 7 / 12, "feet"),
  23817. default: true
  23818. },
  23819. {
  23820. name: "Macro",
  23821. height: math.unit(157 + 7 / 12, "feet")
  23822. },
  23823. {
  23824. name: "Megamacro",
  23825. height: math.unit(1557 + 7 / 12, "feet")
  23826. },
  23827. {
  23828. name: "Gigamacro",
  23829. height: math.unit(15557 + 7 / 12, "feet")
  23830. },
  23831. ]
  23832. ))
  23833. characterMakers.push(() => makeCharacter(
  23834. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23835. {
  23836. front: {
  23837. height: math.unit(3 + 2 / 12, "inches"),
  23838. weight: math.unit(0.3, "ounces"),
  23839. name: "Front",
  23840. image: {
  23841. source: "./media/characters/hiphae/front.svg",
  23842. extra: 1931 / 1683,
  23843. bottom: 24 / 1955
  23844. }
  23845. },
  23846. },
  23847. [
  23848. {
  23849. name: "Normal",
  23850. height: math.unit(3 + 1 / 2, "inches"),
  23851. default: true
  23852. },
  23853. ]
  23854. ))
  23855. characterMakers.push(() => makeCharacter(
  23856. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23857. {
  23858. front: {
  23859. height: math.unit(5 + 10 / 12, "feet"),
  23860. weight: math.unit(165, "lb"),
  23861. name: "Front",
  23862. image: {
  23863. source: "./media/characters/nicky/front.svg",
  23864. extra: 3144 / 2886,
  23865. bottom: 45.6 / 3192
  23866. }
  23867. },
  23868. back: {
  23869. height: math.unit(5 + 10 / 12, "feet"),
  23870. weight: math.unit(165, "lb"),
  23871. name: "Back",
  23872. image: {
  23873. source: "./media/characters/nicky/back.svg",
  23874. extra: 3055 / 2804,
  23875. bottom: 28.4 / 3087
  23876. }
  23877. },
  23878. frontclothed: {
  23879. height: math.unit(5 + 10 / 12, "feet"),
  23880. weight: math.unit(165, "lb"),
  23881. name: "Front-clothed",
  23882. image: {
  23883. source: "./media/characters/nicky/front-clothed.svg",
  23884. extra: 3184.9 / 2926.9,
  23885. bottom: 86.5 / 3239.9
  23886. }
  23887. },
  23888. foot: {
  23889. height: math.unit(1.16, "feet"),
  23890. name: "Foot",
  23891. image: {
  23892. source: "./media/characters/nicky/foot.svg"
  23893. }
  23894. },
  23895. feet: {
  23896. height: math.unit(1.34, "feet"),
  23897. name: "Feet",
  23898. image: {
  23899. source: "./media/characters/nicky/feet.svg"
  23900. }
  23901. },
  23902. maw: {
  23903. height: math.unit(0.9, "feet"),
  23904. name: "Maw",
  23905. image: {
  23906. source: "./media/characters/nicky/maw.svg"
  23907. }
  23908. },
  23909. },
  23910. [
  23911. {
  23912. name: "Normal",
  23913. height: math.unit(5 + 10 / 12, "feet"),
  23914. default: true
  23915. },
  23916. {
  23917. name: "Macro",
  23918. height: math.unit(60, "feet")
  23919. },
  23920. {
  23921. name: "Megamacro",
  23922. height: math.unit(1, "mile")
  23923. },
  23924. ]
  23925. ))
  23926. characterMakers.push(() => makeCharacter(
  23927. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23928. {
  23929. side: {
  23930. height: math.unit(10, "feet"),
  23931. weight: math.unit(600, "lb"),
  23932. name: "Side",
  23933. image: {
  23934. source: "./media/characters/blair/side.svg",
  23935. bottom: 16.6 / 475,
  23936. extra: 458 / 431
  23937. }
  23938. },
  23939. },
  23940. [
  23941. {
  23942. name: "Micro",
  23943. height: math.unit(8, "inches")
  23944. },
  23945. {
  23946. name: "Normal",
  23947. height: math.unit(10, "feet"),
  23948. default: true
  23949. },
  23950. {
  23951. name: "Macro",
  23952. height: math.unit(180, "feet")
  23953. },
  23954. ]
  23955. ))
  23956. characterMakers.push(() => makeCharacter(
  23957. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23958. {
  23959. front: {
  23960. height: math.unit(5 + 4 / 12, "feet"),
  23961. weight: math.unit(125, "lb"),
  23962. name: "Front",
  23963. image: {
  23964. source: "./media/characters/fisher/front.svg",
  23965. extra: 444 / 390,
  23966. bottom: 2 / 444.8
  23967. }
  23968. },
  23969. },
  23970. [
  23971. {
  23972. name: "Micro",
  23973. height: math.unit(4, "inches")
  23974. },
  23975. {
  23976. name: "Normal",
  23977. height: math.unit(5 + 4 / 12, "feet"),
  23978. default: true
  23979. },
  23980. {
  23981. name: "Macro",
  23982. height: math.unit(100, "feet")
  23983. },
  23984. ]
  23985. ))
  23986. characterMakers.push(() => makeCharacter(
  23987. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23988. {
  23989. front: {
  23990. height: math.unit(6.71, "feet"),
  23991. weight: math.unit(200, "lb"),
  23992. capacity: math.unit(1000000, "people"),
  23993. name: "Front",
  23994. image: {
  23995. source: "./media/characters/gliss/front.svg",
  23996. extra: 2347 / 2231,
  23997. bottom: 113 / 2462
  23998. }
  23999. },
  24000. hammerspaceSize: {
  24001. height: math.unit(6.71 * 717, "feet"),
  24002. weight: math.unit(200, "lb"),
  24003. capacity: math.unit(1000000, "people"),
  24004. name: "Hammerspace Size",
  24005. image: {
  24006. source: "./media/characters/gliss/front.svg",
  24007. extra: 2347 / 2231,
  24008. bottom: 113 / 2462
  24009. }
  24010. },
  24011. },
  24012. [
  24013. {
  24014. name: "Normal",
  24015. height: math.unit(6.71, "feet"),
  24016. default: true
  24017. },
  24018. ]
  24019. ))
  24020. characterMakers.push(() => makeCharacter(
  24021. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24022. {
  24023. side: {
  24024. height: math.unit(1.44, "m"),
  24025. weight: math.unit(80, "kg"),
  24026. name: "Side",
  24027. image: {
  24028. source: "./media/characters/dune-anderson/side.svg",
  24029. bottom: 49 / 1426
  24030. }
  24031. },
  24032. },
  24033. [
  24034. {
  24035. name: "Wolf-sized",
  24036. height: math.unit(1.44, "meters")
  24037. },
  24038. {
  24039. name: "Normal",
  24040. height: math.unit(5.05, "meters"),
  24041. default: true
  24042. },
  24043. {
  24044. name: "Big",
  24045. height: math.unit(14.4, "meters")
  24046. },
  24047. {
  24048. name: "Huge",
  24049. height: math.unit(144, "meters")
  24050. },
  24051. ]
  24052. ))
  24053. characterMakers.push(() => makeCharacter(
  24054. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24055. {
  24056. front: {
  24057. height: math.unit(7, "feet"),
  24058. weight: math.unit(425, "lb"),
  24059. name: "Front",
  24060. image: {
  24061. source: "./media/characters/hind/front.svg",
  24062. extra: 2091 / 1860,
  24063. bottom: 129 / 2220
  24064. }
  24065. },
  24066. back: {
  24067. height: math.unit(7, "feet"),
  24068. weight: math.unit(425, "lb"),
  24069. name: "Back",
  24070. image: {
  24071. source: "./media/characters/hind/back.svg",
  24072. extra: 2091 / 1860,
  24073. bottom: 24.6 / 2309
  24074. }
  24075. },
  24076. tail: {
  24077. height: math.unit(2.8, "feet"),
  24078. name: "Tail",
  24079. image: {
  24080. source: "./media/characters/hind/tail.svg"
  24081. }
  24082. },
  24083. head: {
  24084. height: math.unit(2.55, "feet"),
  24085. name: "Head",
  24086. image: {
  24087. source: "./media/characters/hind/head.svg"
  24088. }
  24089. },
  24090. },
  24091. [
  24092. {
  24093. name: "XS",
  24094. height: math.unit(0.7, "feet")
  24095. },
  24096. {
  24097. name: "Normal",
  24098. height: math.unit(7, "feet"),
  24099. default: true
  24100. },
  24101. {
  24102. name: "XL",
  24103. height: math.unit(70, "feet")
  24104. },
  24105. ]
  24106. ))
  24107. characterMakers.push(() => makeCharacter(
  24108. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24109. {
  24110. front: {
  24111. height: math.unit(6, "feet"),
  24112. weight: math.unit(150, "lb"),
  24113. name: "Front",
  24114. image: {
  24115. source: "./media/characters/dylan-skaven/front.svg",
  24116. extra: 2318 / 2063,
  24117. bottom: 93.4 / 2410
  24118. }
  24119. },
  24120. },
  24121. [
  24122. {
  24123. name: "Nano",
  24124. height: math.unit(1, "mm")
  24125. },
  24126. {
  24127. name: "Micro",
  24128. height: math.unit(1, "cm")
  24129. },
  24130. {
  24131. name: "Normal",
  24132. height: math.unit(2.1, "meters"),
  24133. default: true
  24134. },
  24135. ]
  24136. ))
  24137. characterMakers.push(() => makeCharacter(
  24138. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24139. {
  24140. front: {
  24141. height: math.unit(7 + 5 / 12, "feet"),
  24142. weight: math.unit(357, "lb"),
  24143. name: "Front",
  24144. image: {
  24145. source: "./media/characters/solex-draconov/front.svg",
  24146. extra: 1993 / 1865,
  24147. bottom: 117 / 2111
  24148. }
  24149. },
  24150. },
  24151. [
  24152. {
  24153. name: "Natural Height",
  24154. height: math.unit(7 + 5 / 12, "feet"),
  24155. default: true
  24156. },
  24157. {
  24158. name: "Macro",
  24159. height: math.unit(350, "feet")
  24160. },
  24161. {
  24162. name: "Macro+",
  24163. height: math.unit(1000, "feet")
  24164. },
  24165. {
  24166. name: "Megamacro",
  24167. height: math.unit(20, "km")
  24168. },
  24169. {
  24170. name: "Megamacro+",
  24171. height: math.unit(1000, "km")
  24172. },
  24173. {
  24174. name: "Gigamacro",
  24175. height: math.unit(2.5, "Gm")
  24176. },
  24177. {
  24178. name: "Teramacro",
  24179. height: math.unit(15, "Tm")
  24180. },
  24181. {
  24182. name: "Galactic",
  24183. height: math.unit(30, "Zm")
  24184. },
  24185. {
  24186. name: "Universal",
  24187. height: math.unit(21000, "Ym")
  24188. },
  24189. {
  24190. name: "Omniversal",
  24191. height: math.unit(9.861e50, "Ym")
  24192. },
  24193. {
  24194. name: "Existential",
  24195. height: math.unit(1e300, "meters")
  24196. },
  24197. ]
  24198. ))
  24199. characterMakers.push(() => makeCharacter(
  24200. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24201. {
  24202. side: {
  24203. height: math.unit(25, "feet"),
  24204. weight: math.unit(90000, "lb"),
  24205. name: "Side",
  24206. image: {
  24207. source: "./media/characters/mandarax/side.svg",
  24208. extra: 614 / 332,
  24209. bottom: 55 / 630
  24210. }
  24211. },
  24212. head: {
  24213. height: math.unit(11.4, "feet"),
  24214. name: "Head",
  24215. image: {
  24216. source: "./media/characters/mandarax/head.svg"
  24217. }
  24218. },
  24219. belly: {
  24220. height: math.unit(33, "feet"),
  24221. name: "Belly",
  24222. capacity: math.unit(500, "people"),
  24223. image: {
  24224. source: "./media/characters/mandarax/belly.svg"
  24225. }
  24226. },
  24227. dick: {
  24228. height: math.unit(8.46, "feet"),
  24229. name: "Dick",
  24230. image: {
  24231. source: "./media/characters/mandarax/dick.svg"
  24232. }
  24233. },
  24234. top: {
  24235. height: math.unit(28, "meters"),
  24236. name: "Top",
  24237. image: {
  24238. source: "./media/characters/mandarax/top.svg"
  24239. }
  24240. },
  24241. },
  24242. [
  24243. {
  24244. name: "Normal",
  24245. height: math.unit(25, "feet"),
  24246. default: true
  24247. },
  24248. ]
  24249. ))
  24250. characterMakers.push(() => makeCharacter(
  24251. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24252. {
  24253. front: {
  24254. height: math.unit(5, "feet"),
  24255. weight: math.unit(90, "lb"),
  24256. name: "Front",
  24257. image: {
  24258. source: "./media/characters/pixil/front.svg",
  24259. extra: 2000 / 1618,
  24260. bottom: 12.3 / 2011
  24261. }
  24262. },
  24263. },
  24264. [
  24265. {
  24266. name: "Normal",
  24267. height: math.unit(5, "feet"),
  24268. default: true
  24269. },
  24270. {
  24271. name: "Megamacro",
  24272. height: math.unit(10, "miles"),
  24273. },
  24274. ]
  24275. ))
  24276. characterMakers.push(() => makeCharacter(
  24277. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24278. {
  24279. front: {
  24280. height: math.unit(7 + 2 / 12, "feet"),
  24281. weight: math.unit(200, "lb"),
  24282. name: "Front",
  24283. image: {
  24284. source: "./media/characters/angel/front.svg",
  24285. extra: 1830 / 1737,
  24286. bottom: 22.6 / 1854,
  24287. }
  24288. },
  24289. },
  24290. [
  24291. {
  24292. name: "Normal",
  24293. height: math.unit(7 + 2 / 12, "feet"),
  24294. default: true
  24295. },
  24296. {
  24297. name: "Macro",
  24298. height: math.unit(1000, "feet")
  24299. },
  24300. {
  24301. name: "Megamacro",
  24302. height: math.unit(2, "miles")
  24303. },
  24304. {
  24305. name: "Gigamacro",
  24306. height: math.unit(20, "earths")
  24307. },
  24308. ]
  24309. ))
  24310. characterMakers.push(() => makeCharacter(
  24311. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24312. {
  24313. front: {
  24314. height: math.unit(5, "feet"),
  24315. weight: math.unit(180, "lb"),
  24316. name: "Front",
  24317. image: {
  24318. source: "./media/characters/mekana/front.svg",
  24319. extra: 1671 / 1605,
  24320. bottom: 3.5 / 1691
  24321. }
  24322. },
  24323. side: {
  24324. height: math.unit(5, "feet"),
  24325. weight: math.unit(180, "lb"),
  24326. name: "Side",
  24327. image: {
  24328. source: "./media/characters/mekana/side.svg",
  24329. extra: 1671 / 1605,
  24330. bottom: 3.5 / 1691
  24331. }
  24332. },
  24333. back: {
  24334. height: math.unit(5, "feet"),
  24335. weight: math.unit(180, "lb"),
  24336. name: "Back",
  24337. image: {
  24338. source: "./media/characters/mekana/back.svg",
  24339. extra: 1671 / 1605,
  24340. bottom: 3.5 / 1691
  24341. }
  24342. },
  24343. },
  24344. [
  24345. {
  24346. name: "Normal",
  24347. height: math.unit(5, "feet"),
  24348. default: true
  24349. },
  24350. ]
  24351. ))
  24352. characterMakers.push(() => makeCharacter(
  24353. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24354. {
  24355. front: {
  24356. height: math.unit(4 + 6 / 12, "feet"),
  24357. weight: math.unit(80, "lb"),
  24358. name: "Front",
  24359. image: {
  24360. source: "./media/characters/pixie/front.svg",
  24361. extra: 1924 / 1825,
  24362. bottom: 22.4 / 1946
  24363. }
  24364. },
  24365. },
  24366. [
  24367. {
  24368. name: "Normal",
  24369. height: math.unit(4 + 6 / 12, "feet"),
  24370. default: true
  24371. },
  24372. {
  24373. name: "Macro",
  24374. height: math.unit(40, "feet")
  24375. },
  24376. ]
  24377. ))
  24378. characterMakers.push(() => makeCharacter(
  24379. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24380. {
  24381. front: {
  24382. height: math.unit(2.1, "meters"),
  24383. weight: math.unit(200, "lb"),
  24384. name: "Front",
  24385. image: {
  24386. source: "./media/characters/the-lascivious/front.svg",
  24387. extra: 1 / 0.893,
  24388. bottom: 3.5 / 573.7
  24389. }
  24390. },
  24391. },
  24392. [
  24393. {
  24394. name: "Human Scale",
  24395. height: math.unit(2.1, "meters")
  24396. },
  24397. {
  24398. name: "Wolxi Scale",
  24399. height: math.unit(46.2, "m"),
  24400. default: true
  24401. },
  24402. {
  24403. name: "Boinker of Buildings",
  24404. height: math.unit(10, "km")
  24405. },
  24406. {
  24407. name: "Shagger of Skyscrapers",
  24408. height: math.unit(40, "km")
  24409. },
  24410. {
  24411. name: "Banger of Boroughs",
  24412. height: math.unit(4000, "km")
  24413. },
  24414. {
  24415. name: "Screwer of States",
  24416. height: math.unit(100000, "km")
  24417. },
  24418. {
  24419. name: "Pounder of Planets",
  24420. height: math.unit(2000000, "km")
  24421. },
  24422. ]
  24423. ))
  24424. characterMakers.push(() => makeCharacter(
  24425. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24426. {
  24427. front: {
  24428. height: math.unit(6, "feet"),
  24429. weight: math.unit(150, "lb"),
  24430. name: "Front",
  24431. image: {
  24432. source: "./media/characters/aj/front.svg",
  24433. extra: 2039 / 1562,
  24434. bottom: 40 / 2079
  24435. }
  24436. },
  24437. },
  24438. [
  24439. {
  24440. name: "Normal",
  24441. height: math.unit(11 + 6 / 12, "feet"),
  24442. default: true
  24443. },
  24444. {
  24445. name: "Megamacro",
  24446. height: math.unit(60, "megameters")
  24447. },
  24448. ]
  24449. ))
  24450. characterMakers.push(() => makeCharacter(
  24451. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24452. {
  24453. side: {
  24454. height: math.unit(31 + 8 / 12, "feet"),
  24455. weight: math.unit(75000, "kg"),
  24456. name: "Side",
  24457. image: {
  24458. source: "./media/characters/koros/side.svg",
  24459. extra: 1442 / 1297,
  24460. bottom: 122.7 / 1562
  24461. }
  24462. },
  24463. dicksKingsCrown: {
  24464. height: math.unit(6, "feet"),
  24465. name: "Dicks (King's Crown)",
  24466. image: {
  24467. source: "./media/characters/koros/dicks-kings-crown.svg"
  24468. }
  24469. },
  24470. dicksTailSet: {
  24471. height: math.unit(3, "feet"),
  24472. name: "Dicks (Tail Set)",
  24473. image: {
  24474. source: "./media/characters/koros/dicks-tail-set.svg"
  24475. }
  24476. },
  24477. dickCumming: {
  24478. height: math.unit(7.98, "feet"),
  24479. name: "Dick (Cumming)",
  24480. image: {
  24481. source: "./media/characters/koros/dick-cumming.svg"
  24482. }
  24483. },
  24484. dicksBack: {
  24485. height: math.unit(5.9, "feet"),
  24486. name: "Dicks (Back)",
  24487. image: {
  24488. source: "./media/characters/koros/dicks-back.svg"
  24489. }
  24490. },
  24491. dicksFront: {
  24492. height: math.unit(3.72, "feet"),
  24493. name: "Dicks (Front)",
  24494. image: {
  24495. source: "./media/characters/koros/dicks-front.svg"
  24496. }
  24497. },
  24498. dicksPeeking: {
  24499. height: math.unit(3.0, "feet"),
  24500. name: "Dicks (Peeking)",
  24501. image: {
  24502. source: "./media/characters/koros/dicks-peeking.svg"
  24503. }
  24504. },
  24505. eye: {
  24506. height: math.unit(1.7, "feet"),
  24507. name: "Eye",
  24508. image: {
  24509. source: "./media/characters/koros/eye.svg"
  24510. }
  24511. },
  24512. headFront: {
  24513. height: math.unit(11.69, "feet"),
  24514. name: "Head (Front)",
  24515. image: {
  24516. source: "./media/characters/koros/head-front.svg"
  24517. }
  24518. },
  24519. headSide: {
  24520. height: math.unit(14, "feet"),
  24521. name: "Head (Side)",
  24522. image: {
  24523. source: "./media/characters/koros/head-side.svg"
  24524. }
  24525. },
  24526. leg: {
  24527. height: math.unit(17, "feet"),
  24528. name: "Leg",
  24529. image: {
  24530. source: "./media/characters/koros/leg.svg"
  24531. }
  24532. },
  24533. mawSide: {
  24534. height: math.unit(12.8, "feet"),
  24535. name: "Maw (Side)",
  24536. image: {
  24537. source: "./media/characters/koros/maw-side.svg"
  24538. }
  24539. },
  24540. mawSpitting: {
  24541. height: math.unit(17, "feet"),
  24542. name: "Maw (Spitting)",
  24543. image: {
  24544. source: "./media/characters/koros/maw-spitting.svg"
  24545. }
  24546. },
  24547. slit: {
  24548. height: math.unit(2.8, "feet"),
  24549. name: "Slit",
  24550. image: {
  24551. source: "./media/characters/koros/slit.svg"
  24552. }
  24553. },
  24554. stomach: {
  24555. height: math.unit(6.8, "feet"),
  24556. capacity: math.unit(20, "people"),
  24557. name: "Stomach",
  24558. image: {
  24559. source: "./media/characters/koros/stomach.svg"
  24560. }
  24561. },
  24562. wingspanBottom: {
  24563. height: math.unit(114, "feet"),
  24564. name: "Wingspan (Bottom)",
  24565. image: {
  24566. source: "./media/characters/koros/wingspan-bottom.svg"
  24567. }
  24568. },
  24569. wingspanTop: {
  24570. height: math.unit(104, "feet"),
  24571. name: "Wingspan (Top)",
  24572. image: {
  24573. source: "./media/characters/koros/wingspan-top.svg"
  24574. }
  24575. },
  24576. },
  24577. [
  24578. {
  24579. name: "Normal",
  24580. height: math.unit(31 + 8 / 12, "feet"),
  24581. default: true
  24582. },
  24583. ]
  24584. ))
  24585. characterMakers.push(() => makeCharacter(
  24586. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24587. {
  24588. front: {
  24589. height: math.unit(18 + 5 / 12, "feet"),
  24590. weight: math.unit(3750, "kg"),
  24591. name: "Front",
  24592. image: {
  24593. source: "./media/characters/vexx/front.svg",
  24594. extra: 426 / 396,
  24595. bottom: 31.5 / 458
  24596. }
  24597. },
  24598. maw: {
  24599. height: math.unit(6, "feet"),
  24600. name: "Maw",
  24601. image: {
  24602. source: "./media/characters/vexx/maw.svg"
  24603. }
  24604. },
  24605. },
  24606. [
  24607. {
  24608. name: "Normal",
  24609. height: math.unit(18 + 5 / 12, "feet"),
  24610. default: true
  24611. },
  24612. ]
  24613. ))
  24614. characterMakers.push(() => makeCharacter(
  24615. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24616. {
  24617. front: {
  24618. height: math.unit(17 + 6 / 12, "feet"),
  24619. weight: math.unit(150, "lb"),
  24620. name: "Front",
  24621. image: {
  24622. source: "./media/characters/baadra/front.svg",
  24623. extra: 3137 / 2890,
  24624. bottom: 168.4 / 3305
  24625. }
  24626. },
  24627. back: {
  24628. height: math.unit(17 + 6 / 12, "feet"),
  24629. weight: math.unit(150, "lb"),
  24630. name: "Back",
  24631. image: {
  24632. source: "./media/characters/baadra/back.svg",
  24633. extra: 3142 / 2890,
  24634. bottom: 220 / 3371
  24635. }
  24636. },
  24637. head: {
  24638. height: math.unit(5.45, "feet"),
  24639. name: "Head",
  24640. image: {
  24641. source: "./media/characters/baadra/head.svg"
  24642. }
  24643. },
  24644. headAngry: {
  24645. height: math.unit(4.95, "feet"),
  24646. name: "Head (Angry)",
  24647. image: {
  24648. source: "./media/characters/baadra/head-angry.svg"
  24649. }
  24650. },
  24651. headOpen: {
  24652. height: math.unit(6, "feet"),
  24653. name: "Head (Open)",
  24654. image: {
  24655. source: "./media/characters/baadra/head-open.svg"
  24656. }
  24657. },
  24658. },
  24659. [
  24660. {
  24661. name: "Normal",
  24662. height: math.unit(17 + 6 / 12, "feet"),
  24663. default: true
  24664. },
  24665. ]
  24666. ))
  24667. characterMakers.push(() => makeCharacter(
  24668. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24669. {
  24670. front: {
  24671. height: math.unit(7 + 3 / 12, "feet"),
  24672. weight: math.unit(180, "lb"),
  24673. name: "Front",
  24674. image: {
  24675. source: "./media/characters/juri/front.svg",
  24676. extra: 1401 / 1237,
  24677. bottom: 18.5 / 1418
  24678. }
  24679. },
  24680. side: {
  24681. height: math.unit(7 + 3 / 12, "feet"),
  24682. weight: math.unit(180, "lb"),
  24683. name: "Side",
  24684. image: {
  24685. source: "./media/characters/juri/side.svg",
  24686. extra: 1424 / 1242,
  24687. bottom: 18.5 / 1447
  24688. }
  24689. },
  24690. sitting: {
  24691. height: math.unit(6, "feet"),
  24692. weight: math.unit(180, "lb"),
  24693. name: "Sitting",
  24694. image: {
  24695. source: "./media/characters/juri/sitting.svg",
  24696. extra: 1270 / 1143,
  24697. bottom: 100 / 1343
  24698. }
  24699. },
  24700. back: {
  24701. height: math.unit(7 + 3 / 12, "feet"),
  24702. weight: math.unit(180, "lb"),
  24703. name: "Back",
  24704. image: {
  24705. source: "./media/characters/juri/back.svg",
  24706. extra: 1377 / 1240,
  24707. bottom: 23.7 / 1405
  24708. }
  24709. },
  24710. maw: {
  24711. height: math.unit(2.8, "feet"),
  24712. name: "Maw",
  24713. image: {
  24714. source: "./media/characters/juri/maw.svg"
  24715. }
  24716. },
  24717. stomach: {
  24718. height: math.unit(0.89, "feet"),
  24719. capacity: math.unit(4, "liters"),
  24720. name: "Stomach",
  24721. image: {
  24722. source: "./media/characters/juri/stomach.svg"
  24723. }
  24724. },
  24725. },
  24726. [
  24727. {
  24728. name: "Normal",
  24729. height: math.unit(7 + 3 / 12, "feet"),
  24730. default: true
  24731. },
  24732. ]
  24733. ))
  24734. characterMakers.push(() => makeCharacter(
  24735. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24736. {
  24737. fox: {
  24738. height: math.unit(5 + 6 / 12, "feet"),
  24739. weight: math.unit(140, "lb"),
  24740. name: "Fox",
  24741. image: {
  24742. source: "./media/characters/maxene-sita/fox.svg",
  24743. extra: 146 / 138,
  24744. bottom: 2.1 / 148.19
  24745. }
  24746. },
  24747. foxLaying: {
  24748. height: math.unit(1.70, "feet"),
  24749. weight: math.unit(140, "lb"),
  24750. name: "Fox (Laying)",
  24751. image: {
  24752. source: "./media/characters/maxene-sita/fox-laying.svg",
  24753. extra: 910/572,
  24754. bottom: 71/981
  24755. }
  24756. },
  24757. kitsune: {
  24758. height: math.unit(10, "feet"),
  24759. weight: math.unit(800, "lb"),
  24760. name: "Kitsune",
  24761. image: {
  24762. source: "./media/characters/maxene-sita/kitsune.svg",
  24763. extra: 185 / 176,
  24764. bottom: 4.7 / 189.9
  24765. }
  24766. },
  24767. hellhound: {
  24768. height: math.unit(10, "feet"),
  24769. weight: math.unit(700, "lb"),
  24770. name: "Hellhound",
  24771. image: {
  24772. source: "./media/characters/maxene-sita/hellhound.svg",
  24773. extra: 1600/1545,
  24774. bottom: 81/1681
  24775. }
  24776. },
  24777. },
  24778. [
  24779. {
  24780. name: "Normal",
  24781. height: math.unit(5 + 6 / 12, "feet"),
  24782. default: true
  24783. },
  24784. ]
  24785. ))
  24786. characterMakers.push(() => makeCharacter(
  24787. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24788. {
  24789. front: {
  24790. height: math.unit(3 + 4 / 12, "feet"),
  24791. weight: math.unit(70, "lb"),
  24792. name: "Front",
  24793. image: {
  24794. source: "./media/characters/maia/front.svg",
  24795. extra: 227 / 219.5,
  24796. bottom: 40 / 267
  24797. }
  24798. },
  24799. back: {
  24800. height: math.unit(3 + 4 / 12, "feet"),
  24801. weight: math.unit(70, "lb"),
  24802. name: "Back",
  24803. image: {
  24804. source: "./media/characters/maia/back.svg",
  24805. extra: 237 / 225
  24806. }
  24807. },
  24808. },
  24809. [
  24810. {
  24811. name: "Normal",
  24812. height: math.unit(3 + 4 / 12, "feet"),
  24813. default: true
  24814. },
  24815. ]
  24816. ))
  24817. characterMakers.push(() => makeCharacter(
  24818. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24819. {
  24820. front: {
  24821. height: math.unit(5 + 10 / 12, "feet"),
  24822. weight: math.unit(197, "lb"),
  24823. name: "Front",
  24824. image: {
  24825. source: "./media/characters/jabaro/front.svg",
  24826. extra: 225 / 216,
  24827. bottom: 5.06 / 230
  24828. }
  24829. },
  24830. back: {
  24831. height: math.unit(5 + 10 / 12, "feet"),
  24832. weight: math.unit(197, "lb"),
  24833. name: "Back",
  24834. image: {
  24835. source: "./media/characters/jabaro/back.svg",
  24836. extra: 225 / 219,
  24837. bottom: 1.9 / 227
  24838. }
  24839. },
  24840. },
  24841. [
  24842. {
  24843. name: "Normal",
  24844. height: math.unit(5 + 10 / 12, "feet"),
  24845. default: true
  24846. },
  24847. ]
  24848. ))
  24849. characterMakers.push(() => makeCharacter(
  24850. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24851. {
  24852. front: {
  24853. height: math.unit(5 + 8 / 12, "feet"),
  24854. weight: math.unit(139, "lb"),
  24855. name: "Front",
  24856. image: {
  24857. source: "./media/characters/risa/front.svg",
  24858. extra: 270 / 260,
  24859. bottom: 11.2 / 282
  24860. }
  24861. },
  24862. back: {
  24863. height: math.unit(5 + 8 / 12, "feet"),
  24864. weight: math.unit(139, "lb"),
  24865. name: "Back",
  24866. image: {
  24867. source: "./media/characters/risa/back.svg",
  24868. extra: 264 / 255,
  24869. bottom: 4 / 268
  24870. }
  24871. },
  24872. },
  24873. [
  24874. {
  24875. name: "Normal",
  24876. height: math.unit(5 + 8 / 12, "feet"),
  24877. default: true
  24878. },
  24879. ]
  24880. ))
  24881. characterMakers.push(() => makeCharacter(
  24882. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24883. {
  24884. front: {
  24885. height: math.unit(2 + 11 / 12, "feet"),
  24886. weight: math.unit(30, "lb"),
  24887. name: "Front",
  24888. image: {
  24889. source: "./media/characters/weatley/front.svg",
  24890. bottom: 10.7 / 414,
  24891. extra: 403.5 / 362
  24892. }
  24893. },
  24894. back: {
  24895. height: math.unit(2 + 11 / 12, "feet"),
  24896. weight: math.unit(30, "lb"),
  24897. name: "Back",
  24898. image: {
  24899. source: "./media/characters/weatley/back.svg",
  24900. bottom: 10.7 / 414,
  24901. extra: 403.5 / 362
  24902. }
  24903. },
  24904. },
  24905. [
  24906. {
  24907. name: "Normal",
  24908. height: math.unit(2 + 11 / 12, "feet"),
  24909. default: true
  24910. },
  24911. ]
  24912. ))
  24913. characterMakers.push(() => makeCharacter(
  24914. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24915. {
  24916. front: {
  24917. height: math.unit(5 + 2 / 12, "feet"),
  24918. weight: math.unit(50, "kg"),
  24919. name: "Front",
  24920. image: {
  24921. source: "./media/characters/mercury-crescent/front.svg",
  24922. extra: 1088 / 1033,
  24923. bottom: 18.9 / 1109
  24924. }
  24925. },
  24926. },
  24927. [
  24928. {
  24929. name: "Normal",
  24930. height: math.unit(5 + 2 / 12, "feet"),
  24931. default: true
  24932. },
  24933. ]
  24934. ))
  24935. characterMakers.push(() => makeCharacter(
  24936. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24937. {
  24938. front: {
  24939. height: math.unit(2, "feet"),
  24940. weight: math.unit(15, "kg"),
  24941. name: "Front",
  24942. image: {
  24943. source: "./media/characters/diamond-jones/front.svg",
  24944. bottom: 16 / 568
  24945. }
  24946. },
  24947. },
  24948. [
  24949. {
  24950. name: "Normal",
  24951. height: math.unit(2, "feet"),
  24952. default: true
  24953. },
  24954. ]
  24955. ))
  24956. characterMakers.push(() => makeCharacter(
  24957. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24958. {
  24959. front: {
  24960. height: math.unit(3, "feet"),
  24961. weight: math.unit(30, "kg"),
  24962. name: "Front",
  24963. image: {
  24964. source: "./media/characters/sweet-bit/front.svg",
  24965. extra: 675 / 567,
  24966. bottom: 27.7 / 703
  24967. }
  24968. },
  24969. },
  24970. [
  24971. {
  24972. name: "Normal",
  24973. height: math.unit(3, "feet"),
  24974. default: true
  24975. },
  24976. ]
  24977. ))
  24978. characterMakers.push(() => makeCharacter(
  24979. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24980. {
  24981. side: {
  24982. height: math.unit(9.178, "feet"),
  24983. weight: math.unit(500, "lb"),
  24984. name: "Side",
  24985. image: {
  24986. source: "./media/characters/umbrazen/side.svg",
  24987. extra: 1730 / 1473,
  24988. bottom: 34.6 / 1765
  24989. }
  24990. },
  24991. },
  24992. [
  24993. {
  24994. name: "Normal",
  24995. height: math.unit(9.178, "feet"),
  24996. default: true
  24997. },
  24998. ]
  24999. ))
  25000. characterMakers.push(() => makeCharacter(
  25001. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25002. {
  25003. front: {
  25004. height: math.unit(10, "feet"),
  25005. weight: math.unit(750, "lb"),
  25006. name: "Front",
  25007. image: {
  25008. source: "./media/characters/arlist/front.svg",
  25009. extra: 961 / 778,
  25010. bottom: 6.2 / 986
  25011. }
  25012. },
  25013. },
  25014. [
  25015. {
  25016. name: "Normal",
  25017. height: math.unit(10, "feet"),
  25018. default: true
  25019. },
  25020. ]
  25021. ))
  25022. characterMakers.push(() => makeCharacter(
  25023. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25024. {
  25025. front: {
  25026. height: math.unit(5 + 1 / 12, "feet"),
  25027. weight: math.unit(110, "lb"),
  25028. name: "Front",
  25029. image: {
  25030. source: "./media/characters/aradel/front.svg",
  25031. extra: 324 / 303,
  25032. bottom: 3.6 / 329.4
  25033. }
  25034. },
  25035. },
  25036. [
  25037. {
  25038. name: "Normal",
  25039. height: math.unit(5 + 1 / 12, "feet"),
  25040. default: true
  25041. },
  25042. ]
  25043. ))
  25044. characterMakers.push(() => makeCharacter(
  25045. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25046. {
  25047. front: {
  25048. height: math.unit(3 + 8 / 12, "feet"),
  25049. weight: math.unit(50, "lb"),
  25050. name: "Front",
  25051. image: {
  25052. source: "./media/characters/serryn/front.svg",
  25053. extra: 1792 / 1656,
  25054. bottom: 43.5 / 1840
  25055. }
  25056. },
  25057. },
  25058. [
  25059. {
  25060. name: "Normal",
  25061. height: math.unit(3 + 8 / 12, "feet"),
  25062. default: true
  25063. },
  25064. ]
  25065. ))
  25066. characterMakers.push(() => makeCharacter(
  25067. { name: "Xavier Thyme" },
  25068. {
  25069. front: {
  25070. height: math.unit(7 + 10 / 12, "feet"),
  25071. weight: math.unit(255, "lb"),
  25072. name: "Front",
  25073. image: {
  25074. source: "./media/characters/xavier-thyme/front.svg",
  25075. extra: 3733 / 3642,
  25076. bottom: 131 / 3869
  25077. }
  25078. },
  25079. frontRaven: {
  25080. height: math.unit(7 + 10 / 12, "feet"),
  25081. weight: math.unit(255, "lb"),
  25082. name: "Front (Raven)",
  25083. image: {
  25084. source: "./media/characters/xavier-thyme/front-raven.svg",
  25085. extra: 4385 / 3642,
  25086. bottom: 131 / 4517
  25087. }
  25088. },
  25089. },
  25090. [
  25091. {
  25092. name: "Normal",
  25093. height: math.unit(7 + 10 / 12, "feet"),
  25094. default: true
  25095. },
  25096. ]
  25097. ))
  25098. characterMakers.push(() => makeCharacter(
  25099. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25100. {
  25101. front: {
  25102. height: math.unit(1.6, "m"),
  25103. weight: math.unit(50, "kg"),
  25104. name: "Front",
  25105. image: {
  25106. source: "./media/characters/kiki/front.svg",
  25107. extra: 4682 / 3610,
  25108. bottom: 115 / 4777
  25109. }
  25110. },
  25111. },
  25112. [
  25113. {
  25114. name: "Normal",
  25115. height: math.unit(1.6, "meters"),
  25116. default: true
  25117. },
  25118. ]
  25119. ))
  25120. characterMakers.push(() => makeCharacter(
  25121. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25122. {
  25123. front: {
  25124. height: math.unit(50, "m"),
  25125. weight: math.unit(500, "tonnes"),
  25126. name: "Front",
  25127. image: {
  25128. source: "./media/characters/ryoko/front.svg",
  25129. extra: 4632 / 3926,
  25130. bottom: 193 / 4823
  25131. }
  25132. },
  25133. },
  25134. [
  25135. {
  25136. name: "Normal",
  25137. height: math.unit(50, "meters"),
  25138. default: true
  25139. },
  25140. ]
  25141. ))
  25142. characterMakers.push(() => makeCharacter(
  25143. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25144. {
  25145. front: {
  25146. height: math.unit(30, "m"),
  25147. weight: math.unit(22, "tonnes"),
  25148. name: "Front",
  25149. image: {
  25150. source: "./media/characters/elio/front.svg",
  25151. extra: 4582 / 3720,
  25152. bottom: 236 / 4828
  25153. }
  25154. },
  25155. },
  25156. [
  25157. {
  25158. name: "Normal",
  25159. height: math.unit(30, "meters"),
  25160. default: true
  25161. },
  25162. ]
  25163. ))
  25164. characterMakers.push(() => makeCharacter(
  25165. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25166. {
  25167. front: {
  25168. height: math.unit(6 + 3 / 12, "feet"),
  25169. weight: math.unit(120, "lb"),
  25170. name: "Front",
  25171. image: {
  25172. source: "./media/characters/azura/front.svg",
  25173. extra: 1149 / 1135,
  25174. bottom: 45 / 1194
  25175. }
  25176. },
  25177. frontClothed: {
  25178. height: math.unit(6 + 3 / 12, "feet"),
  25179. weight: math.unit(120, "lb"),
  25180. name: "Front (Clothed)",
  25181. image: {
  25182. source: "./media/characters/azura/front-clothed.svg",
  25183. extra: 1149 / 1135,
  25184. bottom: 45 / 1194
  25185. }
  25186. },
  25187. },
  25188. [
  25189. {
  25190. name: "Normal",
  25191. height: math.unit(6 + 3 / 12, "feet"),
  25192. default: true
  25193. },
  25194. {
  25195. name: "Macro",
  25196. height: math.unit(20 + 6 / 12, "feet")
  25197. },
  25198. {
  25199. name: "Megamacro",
  25200. height: math.unit(12, "miles")
  25201. },
  25202. {
  25203. name: "Gigamacro",
  25204. height: math.unit(10000, "miles")
  25205. },
  25206. {
  25207. name: "Teramacro",
  25208. height: math.unit(900000, "miles")
  25209. },
  25210. ]
  25211. ))
  25212. characterMakers.push(() => makeCharacter(
  25213. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25214. {
  25215. front: {
  25216. height: math.unit(12, "feet"),
  25217. weight: math.unit(1, "ton"),
  25218. capacity: math.unit(660000, "gallons"),
  25219. name: "Front",
  25220. image: {
  25221. source: "./media/characters/zeus/front.svg",
  25222. extra: 5005 / 4717,
  25223. bottom: 363 / 5388
  25224. }
  25225. },
  25226. },
  25227. [
  25228. {
  25229. name: "Normal",
  25230. height: math.unit(12, "feet")
  25231. },
  25232. {
  25233. name: "Preferred Size",
  25234. height: math.unit(0.5, "miles"),
  25235. default: true
  25236. },
  25237. {
  25238. name: "Giga Horse",
  25239. height: math.unit(300, "miles")
  25240. },
  25241. {
  25242. name: "Riding Planets",
  25243. height: math.unit(30, "megameters")
  25244. },
  25245. {
  25246. name: "Cosmic Giant",
  25247. height: math.unit(3, "zettameters")
  25248. },
  25249. {
  25250. name: "Breeding God",
  25251. height: math.unit(9.92e22, "yottameters")
  25252. },
  25253. ]
  25254. ))
  25255. characterMakers.push(() => makeCharacter(
  25256. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25257. {
  25258. side: {
  25259. height: math.unit(9, "feet"),
  25260. weight: math.unit(1500, "kg"),
  25261. name: "Side",
  25262. image: {
  25263. source: "./media/characters/fang/side.svg",
  25264. extra: 924 / 866,
  25265. bottom: 47.5 / 972.3
  25266. }
  25267. },
  25268. },
  25269. [
  25270. {
  25271. name: "Normal",
  25272. height: math.unit(9, "feet"),
  25273. default: true
  25274. },
  25275. {
  25276. name: "Macro",
  25277. height: math.unit(75 + 6 / 12, "feet")
  25278. },
  25279. {
  25280. name: "Teramacro",
  25281. height: math.unit(50000, "miles")
  25282. },
  25283. ]
  25284. ))
  25285. characterMakers.push(() => makeCharacter(
  25286. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25287. {
  25288. front: {
  25289. height: math.unit(10, "feet"),
  25290. weight: math.unit(2, "tons"),
  25291. name: "Front",
  25292. image: {
  25293. source: "./media/characters/rekhit/front.svg",
  25294. extra: 2796 / 2590,
  25295. bottom: 225 / 3022
  25296. }
  25297. },
  25298. },
  25299. [
  25300. {
  25301. name: "Normal",
  25302. height: math.unit(10, "feet"),
  25303. default: true
  25304. },
  25305. {
  25306. name: "Macro",
  25307. height: math.unit(500, "feet")
  25308. },
  25309. ]
  25310. ))
  25311. characterMakers.push(() => makeCharacter(
  25312. { name: "Dahlia Verrick" },
  25313. {
  25314. front: {
  25315. height: math.unit(7 + 6.451 / 12, "feet"),
  25316. weight: math.unit(310, "lb"),
  25317. name: "Front",
  25318. image: {
  25319. source: "./media/characters/dahlia-verrick/front.svg",
  25320. extra: 1488 / 1365,
  25321. bottom: 6.2 / 1495
  25322. }
  25323. },
  25324. back: {
  25325. height: math.unit(7 + 6.451 / 12, "feet"),
  25326. weight: math.unit(310, "lb"),
  25327. name: "Back",
  25328. image: {
  25329. source: "./media/characters/dahlia-verrick/back.svg",
  25330. extra: 1472 / 1351,
  25331. bottom: 5.28 / 1477
  25332. }
  25333. },
  25334. frontBusiness: {
  25335. height: math.unit(7 + 6.451 / 12, "feet"),
  25336. weight: math.unit(200, "lb"),
  25337. name: "Front (Business)",
  25338. image: {
  25339. source: "./media/characters/dahlia-verrick/front-business.svg",
  25340. extra: 1478 / 1381,
  25341. bottom: 5.5 / 1484
  25342. }
  25343. },
  25344. frontCasual: {
  25345. height: math.unit(7 + 6.451 / 12, "feet"),
  25346. weight: math.unit(200, "lb"),
  25347. name: "Front (Casual)",
  25348. image: {
  25349. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25350. extra: 1478 / 1381,
  25351. bottom: 5.5 / 1484
  25352. }
  25353. },
  25354. },
  25355. [
  25356. {
  25357. name: "Travel-Sized",
  25358. height: math.unit(7.45, "inches")
  25359. },
  25360. {
  25361. name: "Normal",
  25362. height: math.unit(7 + 6.451 / 12, "feet"),
  25363. default: true
  25364. },
  25365. {
  25366. name: "Hitting the Town",
  25367. height: math.unit(37 + 8 / 12, "feet")
  25368. },
  25369. {
  25370. name: "Stomp in the Suburbs",
  25371. height: math.unit(964 + 9.728 / 12, "feet")
  25372. },
  25373. {
  25374. name: "Sit on the City",
  25375. height: math.unit(61747 + 10.592 / 12, "feet")
  25376. },
  25377. {
  25378. name: "Glomp the Globe",
  25379. height: math.unit(252919327 + 4.832 / 12, "feet")
  25380. },
  25381. ]
  25382. ))
  25383. characterMakers.push(() => makeCharacter(
  25384. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25385. {
  25386. front: {
  25387. height: math.unit(6 + 4 / 12, "feet"),
  25388. weight: math.unit(320, "lb"),
  25389. name: "Front",
  25390. image: {
  25391. source: "./media/characters/balina-mahigan/front.svg",
  25392. extra: 447 / 428,
  25393. bottom: 18 / 466
  25394. }
  25395. },
  25396. back: {
  25397. height: math.unit(6 + 4 / 12, "feet"),
  25398. weight: math.unit(320, "lb"),
  25399. name: "Back",
  25400. image: {
  25401. source: "./media/characters/balina-mahigan/back.svg",
  25402. extra: 445 / 428,
  25403. bottom: 4.07 / 448
  25404. }
  25405. },
  25406. arm: {
  25407. height: math.unit(1.88, "feet"),
  25408. name: "Arm",
  25409. image: {
  25410. source: "./media/characters/balina-mahigan/arm.svg"
  25411. }
  25412. },
  25413. backPort: {
  25414. height: math.unit(0.685, "feet"),
  25415. name: "Back Port",
  25416. image: {
  25417. source: "./media/characters/balina-mahigan/back-port.svg"
  25418. }
  25419. },
  25420. hoofpaw: {
  25421. height: math.unit(1.41, "feet"),
  25422. name: "Hoofpaw",
  25423. image: {
  25424. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25425. }
  25426. },
  25427. leftHandBack: {
  25428. height: math.unit(0.938, "feet"),
  25429. name: "Left Hand (Back)",
  25430. image: {
  25431. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25432. }
  25433. },
  25434. leftHandFront: {
  25435. height: math.unit(0.938, "feet"),
  25436. name: "Left Hand (Front)",
  25437. image: {
  25438. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25439. }
  25440. },
  25441. rightHandBack: {
  25442. height: math.unit(0.95, "feet"),
  25443. name: "Right Hand (Back)",
  25444. image: {
  25445. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25446. }
  25447. },
  25448. rightHandFront: {
  25449. height: math.unit(0.95, "feet"),
  25450. name: "Right Hand (Front)",
  25451. image: {
  25452. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25453. }
  25454. },
  25455. },
  25456. [
  25457. {
  25458. name: "Normal",
  25459. height: math.unit(6 + 4 / 12, "feet"),
  25460. default: true
  25461. },
  25462. ]
  25463. ))
  25464. characterMakers.push(() => makeCharacter(
  25465. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25466. {
  25467. front: {
  25468. height: math.unit(6, "feet"),
  25469. weight: math.unit(320, "lb"),
  25470. name: "Front",
  25471. image: {
  25472. source: "./media/characters/balina-mejeri/front.svg",
  25473. extra: 517 / 488,
  25474. bottom: 44.2 / 561
  25475. }
  25476. },
  25477. },
  25478. [
  25479. {
  25480. name: "Normal",
  25481. height: math.unit(6 + 4 / 12, "feet")
  25482. },
  25483. {
  25484. name: "Business",
  25485. height: math.unit(155, "feet"),
  25486. default: true
  25487. },
  25488. ]
  25489. ))
  25490. characterMakers.push(() => makeCharacter(
  25491. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25492. {
  25493. kneeling: {
  25494. height: math.unit(6 + 4 / 12, "feet"),
  25495. weight: math.unit(300 * 20, "lb"),
  25496. name: "Kneeling",
  25497. image: {
  25498. source: "./media/characters/balbarian/kneeling.svg",
  25499. extra: 922 / 862,
  25500. bottom: 42.4 / 965
  25501. }
  25502. },
  25503. },
  25504. [
  25505. {
  25506. name: "Normal",
  25507. height: math.unit(6 + 4 / 12, "feet")
  25508. },
  25509. {
  25510. name: "Treasured",
  25511. height: math.unit(18 + 9 / 12, "feet"),
  25512. default: true
  25513. },
  25514. {
  25515. name: "Macro",
  25516. height: math.unit(900, "feet")
  25517. },
  25518. ]
  25519. ))
  25520. characterMakers.push(() => makeCharacter(
  25521. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25522. {
  25523. front: {
  25524. height: math.unit(6 + 4 / 12, "feet"),
  25525. weight: math.unit(325, "lb"),
  25526. name: "Front",
  25527. image: {
  25528. source: "./media/characters/balina-amarini/front.svg",
  25529. extra: 415 / 403,
  25530. bottom: 19 / 433.4
  25531. }
  25532. },
  25533. back: {
  25534. height: math.unit(6 + 4 / 12, "feet"),
  25535. weight: math.unit(325, "lb"),
  25536. name: "Back",
  25537. image: {
  25538. source: "./media/characters/balina-amarini/back.svg",
  25539. extra: 415 / 403,
  25540. bottom: 13.5 / 432
  25541. }
  25542. },
  25543. overdrive: {
  25544. height: math.unit(6 + 4 / 12, "feet"),
  25545. weight: math.unit(400, "lb"),
  25546. name: "Overdrive",
  25547. image: {
  25548. source: "./media/characters/balina-amarini/overdrive.svg",
  25549. extra: 269 / 259,
  25550. bottom: 12 / 282
  25551. }
  25552. },
  25553. },
  25554. [
  25555. {
  25556. name: "Boom",
  25557. height: math.unit(9 + 10 / 12, "feet"),
  25558. default: true
  25559. },
  25560. {
  25561. name: "Macro",
  25562. height: math.unit(280, "feet")
  25563. },
  25564. ]
  25565. ))
  25566. characterMakers.push(() => makeCharacter(
  25567. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25568. {
  25569. goddess: {
  25570. height: math.unit(600, "feet"),
  25571. weight: math.unit(2000000, "tons"),
  25572. name: "Goddess",
  25573. image: {
  25574. source: "./media/characters/lady-kubwa/goddess.svg",
  25575. extra: 1240.5 / 1223,
  25576. bottom: 22 / 1263
  25577. }
  25578. },
  25579. goddesser: {
  25580. height: math.unit(900, "feet"),
  25581. weight: math.unit(20000000, "lb"),
  25582. name: "Goddess-er",
  25583. image: {
  25584. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25585. extra: 899 / 888,
  25586. bottom: 12.6 / 912
  25587. }
  25588. },
  25589. },
  25590. [
  25591. {
  25592. name: "Macro",
  25593. height: math.unit(600, "feet"),
  25594. default: true
  25595. },
  25596. {
  25597. name: "Megamacro",
  25598. height: math.unit(250, "miles")
  25599. },
  25600. ]
  25601. ))
  25602. characterMakers.push(() => makeCharacter(
  25603. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25604. {
  25605. front: {
  25606. height: math.unit(7 + 7 / 12, "feet"),
  25607. weight: math.unit(250, "lb"),
  25608. name: "Front",
  25609. image: {
  25610. source: "./media/characters/tala-grovehorn/front.svg",
  25611. extra: 2636 / 2525,
  25612. bottom: 147 / 2781
  25613. }
  25614. },
  25615. back: {
  25616. height: math.unit(7 + 7 / 12, "feet"),
  25617. weight: math.unit(250, "lb"),
  25618. name: "Back",
  25619. image: {
  25620. source: "./media/characters/tala-grovehorn/back.svg",
  25621. extra: 2635 / 2539,
  25622. bottom: 100 / 2732.8
  25623. }
  25624. },
  25625. mouth: {
  25626. height: math.unit(1.15, "feet"),
  25627. name: "Mouth",
  25628. image: {
  25629. source: "./media/characters/tala-grovehorn/mouth.svg"
  25630. }
  25631. },
  25632. dick: {
  25633. height: math.unit(2.36, "feet"),
  25634. name: "Dick",
  25635. image: {
  25636. source: "./media/characters/tala-grovehorn/dick.svg"
  25637. }
  25638. },
  25639. slit: {
  25640. height: math.unit(0.61, "feet"),
  25641. name: "Slit",
  25642. image: {
  25643. source: "./media/characters/tala-grovehorn/slit.svg"
  25644. }
  25645. },
  25646. },
  25647. [
  25648. ]
  25649. ))
  25650. characterMakers.push(() => makeCharacter(
  25651. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25652. {
  25653. front: {
  25654. height: math.unit(7 + 7 / 12, "feet"),
  25655. weight: math.unit(225, "lb"),
  25656. name: "Front",
  25657. image: {
  25658. source: "./media/characters/epona/front.svg",
  25659. extra: 2445 / 2290,
  25660. bottom: 251 / 2696
  25661. }
  25662. },
  25663. back: {
  25664. height: math.unit(7 + 7 / 12, "feet"),
  25665. weight: math.unit(225, "lb"),
  25666. name: "Back",
  25667. image: {
  25668. source: "./media/characters/epona/back.svg",
  25669. extra: 2546 / 2408,
  25670. bottom: 44 / 2589
  25671. }
  25672. },
  25673. genitals: {
  25674. height: math.unit(1.5, "feet"),
  25675. name: "Genitals",
  25676. image: {
  25677. source: "./media/characters/epona/genitals.svg"
  25678. }
  25679. },
  25680. },
  25681. [
  25682. {
  25683. name: "Normal",
  25684. height: math.unit(7 + 7 / 12, "feet")
  25685. },
  25686. ]
  25687. ))
  25688. characterMakers.push(() => makeCharacter(
  25689. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25690. {
  25691. front: {
  25692. height: math.unit(7, "feet"),
  25693. weight: math.unit(518, "lb"),
  25694. name: "Front",
  25695. image: {
  25696. source: "./media/characters/avia-bloodbourn/front.svg",
  25697. extra: 1466 / 1350,
  25698. bottom: 65 / 1527
  25699. }
  25700. },
  25701. },
  25702. [
  25703. ]
  25704. ))
  25705. characterMakers.push(() => makeCharacter(
  25706. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25707. {
  25708. front: {
  25709. height: math.unit(9.35, "feet"),
  25710. weight: math.unit(600, "lb"),
  25711. name: "Front",
  25712. image: {
  25713. source: "./media/characters/amera/front.svg",
  25714. extra: 891 / 818,
  25715. bottom: 30 / 922.7
  25716. }
  25717. },
  25718. back: {
  25719. height: math.unit(9.35, "feet"),
  25720. weight: math.unit(600, "lb"),
  25721. name: "Back",
  25722. image: {
  25723. source: "./media/characters/amera/back.svg",
  25724. extra: 876 / 824,
  25725. bottom: 6.8 / 884
  25726. }
  25727. },
  25728. dick: {
  25729. height: math.unit(2.14, "feet"),
  25730. name: "Dick",
  25731. image: {
  25732. source: "./media/characters/amera/dick.svg"
  25733. }
  25734. },
  25735. },
  25736. [
  25737. {
  25738. name: "Normal",
  25739. height: math.unit(9.35, "feet"),
  25740. default: true
  25741. },
  25742. ]
  25743. ))
  25744. characterMakers.push(() => makeCharacter(
  25745. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25746. {
  25747. kneeling: {
  25748. height: math.unit(3 + 4 / 12, "feet"),
  25749. weight: math.unit(90, "lb"),
  25750. name: "Kneeling",
  25751. image: {
  25752. source: "./media/characters/rosewen/kneeling.svg",
  25753. extra: 1835 / 1571,
  25754. bottom: 27.7 / 1862
  25755. }
  25756. },
  25757. },
  25758. [
  25759. {
  25760. name: "Normal",
  25761. height: math.unit(3 + 4 / 12, "feet"),
  25762. default: true
  25763. },
  25764. ]
  25765. ))
  25766. characterMakers.push(() => makeCharacter(
  25767. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25768. {
  25769. front: {
  25770. height: math.unit(5 + 10 / 12, "feet"),
  25771. weight: math.unit(200, "lb"),
  25772. name: "Front",
  25773. image: {
  25774. source: "./media/characters/sabah/front.svg",
  25775. extra: 849 / 763,
  25776. bottom: 33.9 / 881
  25777. }
  25778. },
  25779. },
  25780. [
  25781. {
  25782. name: "Normal",
  25783. height: math.unit(5 + 10 / 12, "feet"),
  25784. default: true
  25785. },
  25786. ]
  25787. ))
  25788. characterMakers.push(() => makeCharacter(
  25789. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25790. {
  25791. front: {
  25792. height: math.unit(3 + 5 / 12, "feet"),
  25793. weight: math.unit(40, "kg"),
  25794. name: "Front",
  25795. image: {
  25796. source: "./media/characters/purple-flame/front.svg",
  25797. extra: 1577 / 1412,
  25798. bottom: 97 / 1694
  25799. }
  25800. },
  25801. frontDressed: {
  25802. height: math.unit(3 + 5 / 12, "feet"),
  25803. weight: math.unit(40, "kg"),
  25804. name: "Front (Dressed)",
  25805. image: {
  25806. source: "./media/characters/purple-flame/front-dressed.svg",
  25807. extra: 1577 / 1412,
  25808. bottom: 97 / 1694
  25809. }
  25810. },
  25811. headphones: {
  25812. height: math.unit(0.85, "feet"),
  25813. name: "Headphones",
  25814. image: {
  25815. source: "./media/characters/purple-flame/headphones.svg"
  25816. }
  25817. },
  25818. },
  25819. [
  25820. {
  25821. name: "Really Small",
  25822. height: math.unit(5, "cm")
  25823. },
  25824. {
  25825. name: "Micro",
  25826. height: math.unit(1 + 5 / 12, "feet")
  25827. },
  25828. {
  25829. name: "Normal",
  25830. height: math.unit(3 + 5 / 12, "feet"),
  25831. default: true
  25832. },
  25833. {
  25834. name: "Minimacro",
  25835. height: math.unit(125, "feet")
  25836. },
  25837. {
  25838. name: "Macro",
  25839. height: math.unit(0.5, "miles")
  25840. },
  25841. {
  25842. name: "Megamacro",
  25843. height: math.unit(50, "miles")
  25844. },
  25845. {
  25846. name: "Gigantic",
  25847. height: math.unit(750, "miles")
  25848. },
  25849. {
  25850. name: "Planetary",
  25851. height: math.unit(15000, "miles")
  25852. },
  25853. ]
  25854. ))
  25855. characterMakers.push(() => makeCharacter(
  25856. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25857. {
  25858. front: {
  25859. height: math.unit(14, "feet"),
  25860. weight: math.unit(959, "lb"),
  25861. name: "Front",
  25862. image: {
  25863. source: "./media/characters/arsenal/front.svg",
  25864. extra: 2357 / 2157,
  25865. bottom: 93 / 2458
  25866. }
  25867. },
  25868. },
  25869. [
  25870. {
  25871. name: "Normal",
  25872. height: math.unit(14, "feet"),
  25873. default: true
  25874. },
  25875. ]
  25876. ))
  25877. characterMakers.push(() => makeCharacter(
  25878. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25879. {
  25880. front: {
  25881. height: math.unit(6, "feet"),
  25882. weight: math.unit(150, "lb"),
  25883. name: "Front",
  25884. image: {
  25885. source: "./media/characters/adira/front.svg",
  25886. extra: 1078 / 1029,
  25887. bottom: 87 / 1166
  25888. }
  25889. },
  25890. },
  25891. [
  25892. {
  25893. name: "Micro",
  25894. height: math.unit(4, "inches"),
  25895. default: true
  25896. },
  25897. {
  25898. name: "Macro",
  25899. height: math.unit(50, "feet")
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25905. {
  25906. front: {
  25907. height: math.unit(16, "feet"),
  25908. weight: math.unit(1000, "lb"),
  25909. name: "Front",
  25910. image: {
  25911. source: "./media/characters/grim/front.svg",
  25912. extra: 622 / 614,
  25913. bottom: 18.1 / 642
  25914. }
  25915. },
  25916. back: {
  25917. height: math.unit(16, "feet"),
  25918. weight: math.unit(1000, "lb"),
  25919. name: "Back",
  25920. image: {
  25921. source: "./media/characters/grim/back.svg",
  25922. extra: 610.6 / 602,
  25923. bottom: 40.8 / 652
  25924. }
  25925. },
  25926. hunched: {
  25927. height: math.unit(9.75, "feet"),
  25928. weight: math.unit(1000, "lb"),
  25929. name: "Hunched",
  25930. image: {
  25931. source: "./media/characters/grim/hunched.svg",
  25932. extra: 304 / 297,
  25933. bottom: 35.4 / 394
  25934. }
  25935. },
  25936. },
  25937. [
  25938. {
  25939. name: "Normal",
  25940. height: math.unit(16, "feet"),
  25941. default: true
  25942. },
  25943. ]
  25944. ))
  25945. characterMakers.push(() => makeCharacter(
  25946. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25947. {
  25948. front: {
  25949. height: math.unit(2.3, "meters"),
  25950. weight: math.unit(300, "lb"),
  25951. name: "Front",
  25952. image: {
  25953. source: "./media/characters/sinja/front-sfw.svg",
  25954. extra: 1393 / 1294,
  25955. bottom: 70 / 1463
  25956. }
  25957. },
  25958. frontNsfw: {
  25959. height: math.unit(2.3, "meters"),
  25960. weight: math.unit(300, "lb"),
  25961. name: "Front (NSFW)",
  25962. image: {
  25963. source: "./media/characters/sinja/front-nsfw.svg",
  25964. extra: 1393 / 1294,
  25965. bottom: 70 / 1463
  25966. }
  25967. },
  25968. back: {
  25969. height: math.unit(2.3, "meters"),
  25970. weight: math.unit(300, "lb"),
  25971. name: "Back",
  25972. image: {
  25973. source: "./media/characters/sinja/back.svg",
  25974. extra: 1393 / 1294,
  25975. bottom: 70 / 1463
  25976. }
  25977. },
  25978. head: {
  25979. height: math.unit(1.771, "feet"),
  25980. name: "Head",
  25981. image: {
  25982. source: "./media/characters/sinja/head.svg"
  25983. }
  25984. },
  25985. slit: {
  25986. height: math.unit(0.8, "feet"),
  25987. name: "Slit",
  25988. image: {
  25989. source: "./media/characters/sinja/slit.svg"
  25990. }
  25991. },
  25992. },
  25993. [
  25994. {
  25995. name: "Normal",
  25996. height: math.unit(2.3, "meters")
  25997. },
  25998. {
  25999. name: "Macro",
  26000. height: math.unit(91, "meters"),
  26001. default: true
  26002. },
  26003. {
  26004. name: "Megamacro",
  26005. height: math.unit(91440, "meters")
  26006. },
  26007. {
  26008. name: "Gigamacro",
  26009. height: math.unit(60960000, "meters")
  26010. },
  26011. {
  26012. name: "Teramacro",
  26013. height: math.unit(9144000000, "meters")
  26014. },
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26019. {
  26020. front: {
  26021. height: math.unit(1.7, "meters"),
  26022. weight: math.unit(130, "lb"),
  26023. name: "Front",
  26024. image: {
  26025. source: "./media/characters/kyu/front.svg",
  26026. extra: 415 / 395,
  26027. bottom: 5 / 420
  26028. }
  26029. },
  26030. head: {
  26031. height: math.unit(1.75, "feet"),
  26032. name: "Head",
  26033. image: {
  26034. source: "./media/characters/kyu/head.svg"
  26035. }
  26036. },
  26037. foot: {
  26038. height: math.unit(0.81, "feet"),
  26039. name: "Foot",
  26040. image: {
  26041. source: "./media/characters/kyu/foot.svg"
  26042. }
  26043. },
  26044. },
  26045. [
  26046. {
  26047. name: "Normal",
  26048. height: math.unit(1.7, "meters")
  26049. },
  26050. {
  26051. name: "Macro",
  26052. height: math.unit(131, "feet"),
  26053. default: true
  26054. },
  26055. {
  26056. name: "Megamacro",
  26057. height: math.unit(91440, "meters")
  26058. },
  26059. {
  26060. name: "Gigamacro",
  26061. height: math.unit(60960000, "meters")
  26062. },
  26063. {
  26064. name: "Teramacro",
  26065. height: math.unit(9144000000, "meters")
  26066. },
  26067. ]
  26068. ))
  26069. characterMakers.push(() => makeCharacter(
  26070. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26071. {
  26072. front: {
  26073. height: math.unit(7 + 1 / 12, "feet"),
  26074. weight: math.unit(250, "lb"),
  26075. name: "Front",
  26076. image: {
  26077. source: "./media/characters/joey/front.svg",
  26078. extra: 1791 / 1537,
  26079. bottom: 28 / 1816
  26080. }
  26081. },
  26082. },
  26083. [
  26084. {
  26085. name: "Micro",
  26086. height: math.unit(3, "inches")
  26087. },
  26088. {
  26089. name: "Normal",
  26090. height: math.unit(7 + 1 / 12, "feet"),
  26091. default: true
  26092. },
  26093. ]
  26094. ))
  26095. characterMakers.push(() => makeCharacter(
  26096. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26097. {
  26098. front: {
  26099. height: math.unit(165, "cm"),
  26100. weight: math.unit(140, "lb"),
  26101. name: "Front",
  26102. image: {
  26103. source: "./media/characters/sam-evans/front.svg",
  26104. extra: 3417 / 3230,
  26105. bottom: 41.3 / 3417
  26106. }
  26107. },
  26108. frontSixTails: {
  26109. height: math.unit(165, "cm"),
  26110. weight: math.unit(140, "lb"),
  26111. name: "Front-six-tails",
  26112. image: {
  26113. source: "./media/characters/sam-evans/front-six-tails.svg",
  26114. extra: 3417 / 3230,
  26115. bottom: 41.3 / 3417
  26116. }
  26117. },
  26118. back: {
  26119. height: math.unit(165, "cm"),
  26120. weight: math.unit(140, "lb"),
  26121. name: "Back",
  26122. image: {
  26123. source: "./media/characters/sam-evans/back.svg",
  26124. extra: 3227 / 3032,
  26125. bottom: 6.8 / 3234
  26126. }
  26127. },
  26128. face: {
  26129. height: math.unit(0.68, "feet"),
  26130. name: "Face",
  26131. image: {
  26132. source: "./media/characters/sam-evans/face.svg"
  26133. }
  26134. },
  26135. },
  26136. [
  26137. {
  26138. name: "Normal",
  26139. height: math.unit(165, "cm"),
  26140. default: true
  26141. },
  26142. {
  26143. name: "Macro",
  26144. height: math.unit(100, "meters")
  26145. },
  26146. {
  26147. name: "Macro+",
  26148. height: math.unit(800, "meters")
  26149. },
  26150. {
  26151. name: "Macro++",
  26152. height: math.unit(3, "km")
  26153. },
  26154. {
  26155. name: "Macro+++",
  26156. height: math.unit(30, "km")
  26157. },
  26158. ]
  26159. ))
  26160. characterMakers.push(() => makeCharacter(
  26161. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26162. {
  26163. front: {
  26164. height: math.unit(10, "feet"),
  26165. weight: math.unit(750, "lb"),
  26166. name: "Front",
  26167. image: {
  26168. source: "./media/characters/juliet-a/front.svg",
  26169. extra: 1766 / 1720,
  26170. bottom: 43 / 1809
  26171. }
  26172. },
  26173. back: {
  26174. height: math.unit(10, "feet"),
  26175. weight: math.unit(750, "lb"),
  26176. name: "Back",
  26177. image: {
  26178. source: "./media/characters/juliet-a/back.svg",
  26179. extra: 1781 / 1734,
  26180. bottom: 35 / 1810,
  26181. }
  26182. },
  26183. },
  26184. [
  26185. {
  26186. name: "Normal",
  26187. height: math.unit(10, "feet"),
  26188. default: true
  26189. },
  26190. {
  26191. name: "Dragon Form",
  26192. height: math.unit(250, "feet")
  26193. },
  26194. {
  26195. name: "Macro",
  26196. height: math.unit(1000, "feet")
  26197. },
  26198. {
  26199. name: "Megamacro",
  26200. height: math.unit(10000, "feet")
  26201. }
  26202. ]
  26203. ))
  26204. characterMakers.push(() => makeCharacter(
  26205. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26206. {
  26207. regular: {
  26208. height: math.unit(7 + 3 / 12, "feet"),
  26209. weight: math.unit(260, "lb"),
  26210. name: "Regular",
  26211. image: {
  26212. source: "./media/characters/wild/regular.svg",
  26213. extra: 97.45 / 92,
  26214. bottom: 6.8 / 104.3
  26215. }
  26216. },
  26217. biggums: {
  26218. height: math.unit(8 + 6 / 12, "feet"),
  26219. weight: math.unit(425, "lb"),
  26220. name: "Biggums",
  26221. image: {
  26222. source: "./media/characters/wild/biggums.svg",
  26223. extra: 97.45 / 92,
  26224. bottom: 7.5 / 132.34
  26225. }
  26226. },
  26227. mawRegular: {
  26228. height: math.unit(1.24, "feet"),
  26229. name: "Maw (Regular)",
  26230. image: {
  26231. source: "./media/characters/wild/maw.svg"
  26232. }
  26233. },
  26234. mawBiggums: {
  26235. height: math.unit(1.47, "feet"),
  26236. name: "Maw (Biggums)",
  26237. image: {
  26238. source: "./media/characters/wild/maw.svg"
  26239. }
  26240. },
  26241. },
  26242. [
  26243. {
  26244. name: "Normal",
  26245. height: math.unit(7 + 3 / 12, "feet"),
  26246. default: true
  26247. },
  26248. ]
  26249. ))
  26250. characterMakers.push(() => makeCharacter(
  26251. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26252. {
  26253. front: {
  26254. height: math.unit(2.5, "meters"),
  26255. weight: math.unit(200, "kg"),
  26256. name: "Front",
  26257. image: {
  26258. source: "./media/characters/vidar/front.svg",
  26259. extra: 2994 / 2795,
  26260. bottom: 56 / 3061
  26261. }
  26262. },
  26263. back: {
  26264. height: math.unit(2.5, "meters"),
  26265. weight: math.unit(200, "kg"),
  26266. name: "Back",
  26267. image: {
  26268. source: "./media/characters/vidar/back.svg",
  26269. extra: 3131 / 2928,
  26270. bottom: 13.5 / 3141.5
  26271. }
  26272. },
  26273. feral: {
  26274. height: math.unit(2.5, "meters"),
  26275. weight: math.unit(2000, "kg"),
  26276. name: "Feral",
  26277. image: {
  26278. source: "./media/characters/vidar/feral.svg",
  26279. extra: 2790 / 1765,
  26280. bottom: 6 / 2796
  26281. }
  26282. },
  26283. },
  26284. [
  26285. {
  26286. name: "Normal",
  26287. height: math.unit(2.5, "meters"),
  26288. default: true
  26289. },
  26290. {
  26291. name: "Macro",
  26292. height: math.unit(100, "meters")
  26293. },
  26294. ]
  26295. ))
  26296. characterMakers.push(() => makeCharacter(
  26297. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26298. {
  26299. front: {
  26300. height: math.unit(5 + 9 / 12, "feet"),
  26301. weight: math.unit(120, "lb"),
  26302. name: "Front",
  26303. image: {
  26304. source: "./media/characters/ash/front.svg",
  26305. extra: 2189 / 1961,
  26306. bottom: 5.2 / 2194
  26307. }
  26308. },
  26309. },
  26310. [
  26311. {
  26312. name: "Normal",
  26313. height: math.unit(5 + 9 / 12, "feet"),
  26314. default: true
  26315. },
  26316. ]
  26317. ))
  26318. characterMakers.push(() => makeCharacter(
  26319. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26320. {
  26321. front: {
  26322. height: math.unit(9, "feet"),
  26323. weight: math.unit(10000, "lb"),
  26324. name: "Front",
  26325. image: {
  26326. source: "./media/characters/gygabite/front.svg",
  26327. bottom: 31.7 / 537.8,
  26328. extra: 505 / 370
  26329. }
  26330. },
  26331. },
  26332. [
  26333. {
  26334. name: "Normal",
  26335. height: math.unit(9, "feet"),
  26336. default: true
  26337. },
  26338. ]
  26339. ))
  26340. characterMakers.push(() => makeCharacter(
  26341. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26342. {
  26343. front: {
  26344. height: math.unit(12, "feet"),
  26345. weight: math.unit(35000, "lb"),
  26346. name: "Front",
  26347. image: {
  26348. source: "./media/characters/p0tat0/front.svg",
  26349. extra: 1065 / 921,
  26350. bottom: 55.7 / 1121.25
  26351. }
  26352. },
  26353. },
  26354. [
  26355. {
  26356. name: "Normal",
  26357. height: math.unit(12, "feet"),
  26358. default: true
  26359. },
  26360. ]
  26361. ))
  26362. characterMakers.push(() => makeCharacter(
  26363. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26364. {
  26365. side: {
  26366. height: math.unit(6.5, "feet"),
  26367. weight: math.unit(800, "lb"),
  26368. name: "Side",
  26369. image: {
  26370. source: "./media/characters/dusk/side.svg",
  26371. extra: 615 / 373,
  26372. bottom: 53 / 664
  26373. }
  26374. },
  26375. sitting: {
  26376. height: math.unit(7, "feet"),
  26377. weight: math.unit(800, "lb"),
  26378. name: "Sitting",
  26379. image: {
  26380. source: "./media/characters/dusk/sitting.svg",
  26381. extra: 753 / 425,
  26382. bottom: 33 / 774
  26383. }
  26384. },
  26385. head: {
  26386. height: math.unit(6.1, "feet"),
  26387. name: "Head",
  26388. image: {
  26389. source: "./media/characters/dusk/head.svg"
  26390. }
  26391. },
  26392. },
  26393. [
  26394. {
  26395. name: "Normal",
  26396. height: math.unit(7, "feet"),
  26397. default: true
  26398. },
  26399. ]
  26400. ))
  26401. characterMakers.push(() => makeCharacter(
  26402. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26403. {
  26404. front: {
  26405. height: math.unit(15, "feet"),
  26406. weight: math.unit(7000, "lb"),
  26407. name: "Front",
  26408. image: {
  26409. source: "./media/characters/jay-direwolf/front.svg",
  26410. extra: 1810 / 1732,
  26411. bottom: 66 / 1892
  26412. }
  26413. },
  26414. },
  26415. [
  26416. {
  26417. name: "Normal",
  26418. height: math.unit(15, "feet"),
  26419. default: true
  26420. },
  26421. ]
  26422. ))
  26423. characterMakers.push(() => makeCharacter(
  26424. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26425. {
  26426. front: {
  26427. height: math.unit(4 + 9 / 12, "feet"),
  26428. weight: math.unit(130, "lb"),
  26429. name: "Front",
  26430. image: {
  26431. source: "./media/characters/anchovie/front.svg",
  26432. extra: 382 / 350,
  26433. bottom: 25 / 409
  26434. }
  26435. },
  26436. back: {
  26437. height: math.unit(4 + 9 / 12, "feet"),
  26438. weight: math.unit(130, "lb"),
  26439. name: "Back",
  26440. image: {
  26441. source: "./media/characters/anchovie/back.svg",
  26442. extra: 385 / 352,
  26443. bottom: 16.6 / 402
  26444. }
  26445. },
  26446. frontDressed: {
  26447. height: math.unit(4 + 9 / 12, "feet"),
  26448. weight: math.unit(130, "lb"),
  26449. name: "Front (Dressed)",
  26450. image: {
  26451. source: "./media/characters/anchovie/front-dressed.svg",
  26452. extra: 382 / 350,
  26453. bottom: 25 / 409
  26454. }
  26455. },
  26456. backDressed: {
  26457. height: math.unit(4 + 9 / 12, "feet"),
  26458. weight: math.unit(130, "lb"),
  26459. name: "Back (Dressed)",
  26460. image: {
  26461. source: "./media/characters/anchovie/back-dressed.svg",
  26462. extra: 385 / 352,
  26463. bottom: 16.6 / 402
  26464. }
  26465. },
  26466. },
  26467. [
  26468. {
  26469. name: "Micro",
  26470. height: math.unit(6.4, "inches")
  26471. },
  26472. {
  26473. name: "Normal",
  26474. height: math.unit(4 + 9 / 12, "feet"),
  26475. default: true
  26476. },
  26477. ]
  26478. ))
  26479. characterMakers.push(() => makeCharacter(
  26480. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26481. {
  26482. front: {
  26483. height: math.unit(2, "meters"),
  26484. weight: math.unit(180, "lb"),
  26485. name: "Front",
  26486. image: {
  26487. source: "./media/characters/acidrenamon/front.svg",
  26488. extra: 987 / 890,
  26489. bottom: 22.8 / 1009
  26490. }
  26491. },
  26492. back: {
  26493. height: math.unit(2, "meters"),
  26494. weight: math.unit(180, "lb"),
  26495. name: "Back",
  26496. image: {
  26497. source: "./media/characters/acidrenamon/back.svg",
  26498. extra: 983 / 891,
  26499. bottom: 8.4 / 992
  26500. }
  26501. },
  26502. head: {
  26503. height: math.unit(1.92, "feet"),
  26504. name: "Head",
  26505. image: {
  26506. source: "./media/characters/acidrenamon/head.svg"
  26507. }
  26508. },
  26509. rump: {
  26510. height: math.unit(1.72, "feet"),
  26511. name: "Rump",
  26512. image: {
  26513. source: "./media/characters/acidrenamon/rump.svg"
  26514. }
  26515. },
  26516. tail: {
  26517. height: math.unit(4.2, "feet"),
  26518. name: "Tail",
  26519. image: {
  26520. source: "./media/characters/acidrenamon/tail.svg"
  26521. }
  26522. },
  26523. },
  26524. [
  26525. {
  26526. name: "Normal",
  26527. height: math.unit(2, "meters"),
  26528. default: true
  26529. },
  26530. {
  26531. name: "Minimacro",
  26532. height: math.unit(7, "meters")
  26533. },
  26534. {
  26535. name: "Macro",
  26536. height: math.unit(200, "meters")
  26537. },
  26538. {
  26539. name: "Gigamacro",
  26540. height: math.unit(0.2, "earths")
  26541. },
  26542. ]
  26543. ))
  26544. characterMakers.push(() => makeCharacter(
  26545. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26546. {
  26547. front: {
  26548. height: math.unit(6, "feet"),
  26549. weight: math.unit(150, "lb"),
  26550. name: "Front",
  26551. image: {
  26552. source: "./media/characters/kenzie-lee/front.svg",
  26553. extra: 1525 / 1465,
  26554. bottom: 45 / 1570
  26555. }
  26556. },
  26557. side: {
  26558. height: math.unit(6, "feet"),
  26559. weight: math.unit(150, "lb"),
  26560. name: "Side",
  26561. image: {
  26562. source: "./media/characters/kenzie-lee/side.svg",
  26563. extra: 5505 / 5383,
  26564. bottom: 60 / 5573
  26565. }
  26566. },
  26567. },
  26568. [
  26569. {
  26570. name: "Normal",
  26571. height: math.unit(152, "feet"),
  26572. default: true
  26573. },
  26574. {
  26575. name: "Megamacro",
  26576. height: math.unit(7, "miles")
  26577. },
  26578. {
  26579. name: "Gigamacro",
  26580. height: math.unit(8000, "miles")
  26581. },
  26582. ]
  26583. ))
  26584. characterMakers.push(() => makeCharacter(
  26585. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26586. {
  26587. side: {
  26588. height: math.unit(6, "feet"),
  26589. weight: math.unit(150, "lb"),
  26590. name: "Side",
  26591. image: {
  26592. source: "./media/characters/withers/side.svg",
  26593. extra: 1830 / 1728,
  26594. bottom: 96 / 1927
  26595. }
  26596. },
  26597. front: {
  26598. height: math.unit(6, "feet"),
  26599. weight: math.unit(150, "lb"),
  26600. name: "Front",
  26601. image: {
  26602. source: "./media/characters/withers/front.svg",
  26603. extra: 1514 / 1438,
  26604. bottom: 118 / 1632
  26605. }
  26606. },
  26607. },
  26608. [
  26609. {
  26610. name: "Macro",
  26611. height: math.unit(168, "feet"),
  26612. default: true
  26613. },
  26614. {
  26615. name: "Megamacro",
  26616. height: math.unit(15, "miles")
  26617. }
  26618. ]
  26619. ))
  26620. characterMakers.push(() => makeCharacter(
  26621. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26622. {
  26623. front: {
  26624. height: math.unit(6 + 7 / 12, "feet"),
  26625. weight: math.unit(250, "lb"),
  26626. name: "Front",
  26627. image: {
  26628. source: "./media/characters/nemoskii/front.svg",
  26629. extra: 2270 / 1734,
  26630. bottom: 86 / 2354
  26631. }
  26632. },
  26633. back: {
  26634. height: math.unit(6 + 7 / 12, "feet"),
  26635. weight: math.unit(250, "lb"),
  26636. name: "Back",
  26637. image: {
  26638. source: "./media/characters/nemoskii/back.svg",
  26639. extra: 1845 / 1788,
  26640. bottom: 10.5 / 1852
  26641. }
  26642. },
  26643. head: {
  26644. height: math.unit(1.31, "feet"),
  26645. name: "Head",
  26646. image: {
  26647. source: "./media/characters/nemoskii/head.svg"
  26648. }
  26649. },
  26650. },
  26651. [
  26652. {
  26653. name: "Normal",
  26654. height: math.unit(6 + 7 / 12, "feet"),
  26655. default: true
  26656. },
  26657. ]
  26658. ))
  26659. characterMakers.push(() => makeCharacter(
  26660. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26661. {
  26662. front: {
  26663. height: math.unit(1, "mile"),
  26664. weight: math.unit(265261.9, "lb"),
  26665. name: "Front",
  26666. image: {
  26667. source: "./media/characters/shui/front.svg",
  26668. extra: 1633 / 1564,
  26669. bottom: 91.5 / 1726
  26670. }
  26671. },
  26672. },
  26673. [
  26674. {
  26675. name: "Macro",
  26676. height: math.unit(1, "mile"),
  26677. default: true
  26678. },
  26679. ]
  26680. ))
  26681. characterMakers.push(() => makeCharacter(
  26682. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26683. {
  26684. front: {
  26685. height: math.unit(12 + 6 / 12, "feet"),
  26686. weight: math.unit(1342, "lb"),
  26687. name: "Front",
  26688. image: {
  26689. source: "./media/characters/arokh-takakura/front.svg",
  26690. extra: 1089 / 1043,
  26691. bottom: 77.4 / 1176.7
  26692. }
  26693. },
  26694. back: {
  26695. height: math.unit(12 + 6 / 12, "feet"),
  26696. weight: math.unit(1342, "lb"),
  26697. name: "Back",
  26698. image: {
  26699. source: "./media/characters/arokh-takakura/back.svg",
  26700. extra: 1046 / 1019,
  26701. bottom: 102 / 1150
  26702. }
  26703. },
  26704. },
  26705. [
  26706. {
  26707. name: "Big",
  26708. height: math.unit(12 + 6 / 12, "feet"),
  26709. default: true
  26710. },
  26711. ]
  26712. ))
  26713. characterMakers.push(() => makeCharacter(
  26714. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26715. {
  26716. front: {
  26717. height: math.unit(5 + 6 / 12, "feet"),
  26718. weight: math.unit(150, "lb"),
  26719. name: "Front",
  26720. image: {
  26721. source: "./media/characters/theo/front.svg",
  26722. extra: 1184 / 1131,
  26723. bottom: 7.4 / 1191
  26724. }
  26725. },
  26726. },
  26727. [
  26728. {
  26729. name: "Micro",
  26730. height: math.unit(5, "inches")
  26731. },
  26732. {
  26733. name: "Normal",
  26734. height: math.unit(5 + 6 / 12, "feet"),
  26735. default: true
  26736. },
  26737. ]
  26738. ))
  26739. characterMakers.push(() => makeCharacter(
  26740. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26741. {
  26742. front: {
  26743. height: math.unit(5 + 9 / 12, "feet"),
  26744. weight: math.unit(130, "lb"),
  26745. name: "Front",
  26746. image: {
  26747. source: "./media/characters/cecelia-swift/front.svg",
  26748. extra: 502 / 484,
  26749. bottom: 23 / 523
  26750. }
  26751. },
  26752. back: {
  26753. height: math.unit(5 + 9 / 12, "feet"),
  26754. weight: math.unit(130, "lb"),
  26755. name: "Back",
  26756. image: {
  26757. source: "./media/characters/cecelia-swift/back.svg",
  26758. extra: 499 / 485,
  26759. bottom: 12 / 511
  26760. }
  26761. },
  26762. head: {
  26763. height: math.unit(0.90, "feet"),
  26764. name: "Head",
  26765. image: {
  26766. source: "./media/characters/cecelia-swift/head.svg"
  26767. }
  26768. },
  26769. rump: {
  26770. height: math.unit(1.75, "feet"),
  26771. name: "Rump",
  26772. image: {
  26773. source: "./media/characters/cecelia-swift/rump.svg"
  26774. }
  26775. },
  26776. },
  26777. [
  26778. {
  26779. name: "Normal",
  26780. height: math.unit(5 + 9 / 12, "feet"),
  26781. default: true
  26782. },
  26783. {
  26784. name: "Big",
  26785. height: math.unit(50, "feet")
  26786. },
  26787. {
  26788. name: "Macro",
  26789. height: math.unit(100, "feet")
  26790. },
  26791. {
  26792. name: "Macro+",
  26793. height: math.unit(500, "feet")
  26794. },
  26795. {
  26796. name: "Macro++",
  26797. height: math.unit(1000, "feet")
  26798. },
  26799. ]
  26800. ))
  26801. characterMakers.push(() => makeCharacter(
  26802. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26803. {
  26804. front: {
  26805. height: math.unit(6, "feet"),
  26806. weight: math.unit(150, "lb"),
  26807. name: "Front",
  26808. image: {
  26809. source: "./media/characters/kaunan/front.svg",
  26810. extra: 2890 / 2523,
  26811. bottom: 49 / 2939
  26812. }
  26813. },
  26814. },
  26815. [
  26816. {
  26817. name: "Macro",
  26818. height: math.unit(150, "feet"),
  26819. default: true
  26820. },
  26821. ]
  26822. ))
  26823. characterMakers.push(() => makeCharacter(
  26824. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26825. {
  26826. front: {
  26827. height: math.unit(175, "cm"),
  26828. weight: math.unit(60, "kg"),
  26829. name: "Front",
  26830. image: {
  26831. source: "./media/characters/fei/front.svg",
  26832. extra: 2581 / 2400,
  26833. bottom: 82.2 / 2663
  26834. }
  26835. },
  26836. },
  26837. [
  26838. {
  26839. name: "Mortal",
  26840. height: math.unit(175, "cm")
  26841. },
  26842. {
  26843. name: "Normal",
  26844. height: math.unit(3500, "m"),
  26845. default: true
  26846. },
  26847. {
  26848. name: "Stroll",
  26849. height: math.unit(17.5, "km")
  26850. },
  26851. {
  26852. name: "Showoff",
  26853. height: math.unit(175, "km")
  26854. },
  26855. ]
  26856. ))
  26857. characterMakers.push(() => makeCharacter(
  26858. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26859. {
  26860. front: {
  26861. height: math.unit(7, "feet"),
  26862. weight: math.unit(1000, "kg"),
  26863. name: "Front",
  26864. image: {
  26865. source: "./media/characters/edrax/front.svg",
  26866. extra: 2838 / 2550,
  26867. bottom: 130 / 2968
  26868. }
  26869. },
  26870. },
  26871. [
  26872. {
  26873. name: "Small",
  26874. height: math.unit(7, "feet")
  26875. },
  26876. {
  26877. name: "Normal",
  26878. height: math.unit(1500, "meters")
  26879. },
  26880. {
  26881. name: "Mega",
  26882. height: math.unit(12000000, "km"),
  26883. default: true
  26884. },
  26885. {
  26886. name: "Megamacro",
  26887. height: math.unit(10600000, "lightyears")
  26888. },
  26889. {
  26890. name: "Hypermacro",
  26891. height: math.unit(256, "yottameters")
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26897. {
  26898. front: {
  26899. height: math.unit(10, "feet"),
  26900. weight: math.unit(750, "lb"),
  26901. name: "Front",
  26902. image: {
  26903. source: "./media/characters/clove/front.svg",
  26904. extra: 2031 / 1860,
  26905. bottom: 47.8 / 2080
  26906. }
  26907. },
  26908. back: {
  26909. height: math.unit(10, "feet"),
  26910. weight: math.unit(750, "lb"),
  26911. name: "Back",
  26912. image: {
  26913. source: "./media/characters/clove/back.svg",
  26914. extra: 2025 / 1859,
  26915. bottom: 46 / 2071
  26916. }
  26917. },
  26918. },
  26919. [
  26920. {
  26921. name: "Normal",
  26922. height: math.unit(10, "feet")
  26923. },
  26924. ]
  26925. ))
  26926. characterMakers.push(() => makeCharacter(
  26927. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26928. {
  26929. front: {
  26930. height: math.unit(4, "feet"),
  26931. weight: math.unit(50, "lb"),
  26932. name: "Front",
  26933. image: {
  26934. source: "./media/characters/alex-rabbit/front.svg",
  26935. extra: 507 / 458,
  26936. bottom: 18.5 / 527
  26937. }
  26938. },
  26939. back: {
  26940. height: math.unit(4, "feet"),
  26941. weight: math.unit(50, "lb"),
  26942. name: "Back",
  26943. image: {
  26944. source: "./media/characters/alex-rabbit/back.svg",
  26945. extra: 502 / 460,
  26946. bottom: 18.9 / 521
  26947. }
  26948. },
  26949. },
  26950. [
  26951. {
  26952. name: "Normal",
  26953. height: math.unit(4, "feet"),
  26954. default: true
  26955. },
  26956. ]
  26957. ))
  26958. characterMakers.push(() => makeCharacter(
  26959. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26960. {
  26961. front: {
  26962. height: math.unit(1 + 3 / 12, "feet"),
  26963. weight: math.unit(80, "lb"),
  26964. name: "Front",
  26965. image: {
  26966. source: "./media/characters/zander-rose/front.svg",
  26967. extra: 916 / 797,
  26968. bottom: 17 / 933
  26969. }
  26970. },
  26971. back: {
  26972. height: math.unit(1 + 3 / 12, "feet"),
  26973. weight: math.unit(80, "lb"),
  26974. name: "Back",
  26975. image: {
  26976. source: "./media/characters/zander-rose/back.svg",
  26977. extra: 903 / 779,
  26978. bottom: 31 / 934
  26979. }
  26980. },
  26981. },
  26982. [
  26983. {
  26984. name: "Normal",
  26985. height: math.unit(1 + 3 / 12, "feet"),
  26986. default: true
  26987. },
  26988. ]
  26989. ))
  26990. characterMakers.push(() => makeCharacter(
  26991. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26992. {
  26993. anthro: {
  26994. height: math.unit(6, "feet"),
  26995. weight: math.unit(150, "lb"),
  26996. name: "Anthro",
  26997. image: {
  26998. source: "./media/characters/razz/anthro.svg",
  26999. extra: 1437 / 1343,
  27000. bottom: 48 / 1485
  27001. }
  27002. },
  27003. feral: {
  27004. height: math.unit(6, "feet"),
  27005. weight: math.unit(150, "lb"),
  27006. name: "Feral",
  27007. image: {
  27008. source: "./media/characters/razz/feral.svg",
  27009. extra: 2569 / 1385,
  27010. bottom: 95 / 2664
  27011. }
  27012. },
  27013. },
  27014. [
  27015. {
  27016. name: "Normal",
  27017. height: math.unit(6, "feet"),
  27018. default: true
  27019. },
  27020. ]
  27021. ))
  27022. characterMakers.push(() => makeCharacter(
  27023. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27024. {
  27025. front: {
  27026. height: math.unit(9 + 4 / 12, "feet"),
  27027. weight: math.unit(500, "lb"),
  27028. name: "Front",
  27029. image: {
  27030. source: "./media/characters/morrigan/front.svg",
  27031. extra: 2707 / 2579,
  27032. bottom: 156 / 2863
  27033. }
  27034. },
  27035. },
  27036. [
  27037. {
  27038. name: "Normal",
  27039. height: math.unit(9 + 4 / 12, "feet"),
  27040. default: true
  27041. },
  27042. ]
  27043. ))
  27044. characterMakers.push(() => makeCharacter(
  27045. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27046. {
  27047. front: {
  27048. height: math.unit(5, "stories"),
  27049. weight: math.unit(4000, "lb"),
  27050. name: "Front",
  27051. image: {
  27052. source: "./media/characters/jenene/front.svg",
  27053. extra: 1780 / 1710,
  27054. bottom: 57 / 1837
  27055. }
  27056. },
  27057. },
  27058. [
  27059. {
  27060. name: "Normal",
  27061. height: math.unit(5, "stories"),
  27062. default: true
  27063. },
  27064. ]
  27065. ))
  27066. characterMakers.push(() => makeCharacter(
  27067. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27068. {
  27069. front: {
  27070. height: math.unit(6, "feet"),
  27071. weight: math.unit(150, "lb"),
  27072. name: "Front",
  27073. image: {
  27074. source: "./media/characters/vix-archaser/front.svg",
  27075. extra: 2767 / 2562,
  27076. bottom: 36 / 2803
  27077. }
  27078. },
  27079. },
  27080. [
  27081. {
  27082. name: "Micro",
  27083. height: math.unit(1, "foot")
  27084. },
  27085. {
  27086. name: "Normal",
  27087. height: math.unit(6 + 5 / 12, "feet")
  27088. },
  27089. {
  27090. name: "Minimacro",
  27091. height: math.unit(500, "feet")
  27092. },
  27093. {
  27094. name: "Macro",
  27095. height: math.unit(4, "miles")
  27096. },
  27097. {
  27098. name: "Megamacro",
  27099. height: math.unit(250, "miles"),
  27100. default: true
  27101. },
  27102. {
  27103. name: "Gigamacro",
  27104. height: math.unit(1, "universe")
  27105. },
  27106. {
  27107. name: "Endgame",
  27108. height: math.unit(100, "multiverses")
  27109. }
  27110. ]
  27111. ))
  27112. characterMakers.push(() => makeCharacter(
  27113. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27114. {
  27115. taurSfw: {
  27116. height: math.unit(10, "meters"),
  27117. weight: math.unit(17500, "kg"),
  27118. name: "Taur",
  27119. image: {
  27120. source: "./media/characters/faey/taur-sfw.svg",
  27121. extra: 1200 / 968,
  27122. bottom: 41 / 1241
  27123. }
  27124. },
  27125. chestmaw: {
  27126. height: math.unit(2.01, "meters"),
  27127. name: "Chestmaw",
  27128. image: {
  27129. source: "./media/characters/faey/chestmaw.svg"
  27130. }
  27131. },
  27132. foot: {
  27133. height: math.unit(2.43, "meters"),
  27134. name: "Foot",
  27135. image: {
  27136. source: "./media/characters/faey/foot.svg"
  27137. }
  27138. },
  27139. jaws: {
  27140. height: math.unit(1.66, "meters"),
  27141. name: "Jaws",
  27142. image: {
  27143. source: "./media/characters/faey/jaws.svg"
  27144. }
  27145. },
  27146. tongues: {
  27147. height: math.unit(2.01, "meters"),
  27148. name: "Tongues",
  27149. image: {
  27150. source: "./media/characters/faey/tongues.svg"
  27151. }
  27152. },
  27153. },
  27154. [
  27155. {
  27156. name: "Small",
  27157. height: math.unit(10, "meters"),
  27158. default: true
  27159. },
  27160. {
  27161. name: "Big",
  27162. height: math.unit(500000, "km")
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(7, "feet"),
  27171. weight: math.unit(275, "lb"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/roku/front.svg",
  27175. extra: 903 / 878,
  27176. bottom: 37 / 940
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Normal",
  27183. height: math.unit(7, "feet"),
  27184. default: true
  27185. },
  27186. {
  27187. name: "Macro",
  27188. height: math.unit(500, "feet")
  27189. },
  27190. {
  27191. name: "Megamacro",
  27192. height: math.unit(200, "miles")
  27193. },
  27194. ]
  27195. ))
  27196. characterMakers.push(() => makeCharacter(
  27197. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27198. {
  27199. front: {
  27200. height: math.unit(6 + 2 / 12, "feet"),
  27201. weight: math.unit(150, "lb"),
  27202. name: "Front",
  27203. image: {
  27204. source: "./media/characters/lira/front.svg",
  27205. extra: 1727 / 1605,
  27206. bottom: 26 / 1753
  27207. }
  27208. },
  27209. back: {
  27210. height: math.unit(6 + 2 / 12, "feet"),
  27211. weight: math.unit(150, "lb"),
  27212. name: "Back",
  27213. image: {
  27214. source: "./media/characters/lira/back.svg",
  27215. extra: 1713 / 159,
  27216. bottom: 20 / 1733
  27217. }
  27218. },
  27219. hand: {
  27220. height: math.unit(0.75, "feet"),
  27221. name: "Hand",
  27222. image: {
  27223. source: "./media/characters/lira/hand.svg"
  27224. }
  27225. },
  27226. maw: {
  27227. height: math.unit(0.65, "feet"),
  27228. name: "Maw",
  27229. image: {
  27230. source: "./media/characters/lira/maw.svg"
  27231. }
  27232. },
  27233. pawDigi: {
  27234. height: math.unit(1.6, "feet"),
  27235. name: "Paw Digi",
  27236. image: {
  27237. source: "./media/characters/lira/paw-digi.svg"
  27238. }
  27239. },
  27240. pawPlanti: {
  27241. height: math.unit(1.4, "feet"),
  27242. name: "Paw Planti",
  27243. image: {
  27244. source: "./media/characters/lira/paw-planti.svg"
  27245. }
  27246. },
  27247. },
  27248. [
  27249. {
  27250. name: "Normal",
  27251. height: math.unit(6 + 2 / 12, "feet"),
  27252. default: true
  27253. },
  27254. {
  27255. name: "Macro",
  27256. height: math.unit(100, "feet")
  27257. },
  27258. {
  27259. name: "Macro²",
  27260. height: math.unit(1600, "feet")
  27261. },
  27262. {
  27263. name: "Planetary",
  27264. height: math.unit(20, "earths")
  27265. },
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27270. {
  27271. front: {
  27272. height: math.unit(6, "feet"),
  27273. weight: math.unit(150, "lb"),
  27274. name: "Front",
  27275. image: {
  27276. source: "./media/characters/hadjet/front.svg",
  27277. extra: 1480 / 1346,
  27278. bottom: 26 / 1506
  27279. }
  27280. },
  27281. frontNsfw: {
  27282. height: math.unit(6, "feet"),
  27283. weight: math.unit(150, "lb"),
  27284. name: "Front (NSFW)",
  27285. image: {
  27286. source: "./media/characters/hadjet/front-nsfw.svg",
  27287. extra: 1440 / 1358,
  27288. bottom: 52 / 1492
  27289. }
  27290. },
  27291. },
  27292. [
  27293. {
  27294. name: "Macro",
  27295. height: math.unit(10, "stories"),
  27296. default: true
  27297. },
  27298. {
  27299. name: "Megamacro",
  27300. height: math.unit(1.5, "miles")
  27301. },
  27302. {
  27303. name: "Megamacro+",
  27304. height: math.unit(5, "miles")
  27305. },
  27306. ]
  27307. ))
  27308. characterMakers.push(() => makeCharacter(
  27309. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27310. {
  27311. side: {
  27312. height: math.unit(106, "feet"),
  27313. weight: math.unit(500, "tonnes"),
  27314. name: "Side",
  27315. image: {
  27316. source: "./media/characters/kodran/side.svg",
  27317. extra: 553 / 480,
  27318. bottom: 33 / 586
  27319. }
  27320. },
  27321. front: {
  27322. height: math.unit(132, "feet"),
  27323. weight: math.unit(500, "tonnes"),
  27324. name: "Front",
  27325. image: {
  27326. source: "./media/characters/kodran/front.svg",
  27327. extra: 667 / 643,
  27328. bottom: 42 / 709
  27329. }
  27330. },
  27331. flying: {
  27332. height: math.unit(350, "feet"),
  27333. weight: math.unit(500, "tonnes"),
  27334. name: "Flying",
  27335. image: {
  27336. source: "./media/characters/kodran/flying.svg"
  27337. }
  27338. },
  27339. foot: {
  27340. height: math.unit(33, "feet"),
  27341. name: "Foot",
  27342. image: {
  27343. source: "./media/characters/kodran/foot.svg"
  27344. }
  27345. },
  27346. footFront: {
  27347. height: math.unit(19, "feet"),
  27348. name: "Foot (Front)",
  27349. image: {
  27350. source: "./media/characters/kodran/foot-front.svg",
  27351. extra: 261 / 261,
  27352. bottom: 91 / 352
  27353. }
  27354. },
  27355. headFront: {
  27356. height: math.unit(53, "feet"),
  27357. name: "Head (Front)",
  27358. image: {
  27359. source: "./media/characters/kodran/head-front.svg"
  27360. }
  27361. },
  27362. headSide: {
  27363. height: math.unit(65, "feet"),
  27364. name: "Head (Side)",
  27365. image: {
  27366. source: "./media/characters/kodran/head-side.svg"
  27367. }
  27368. },
  27369. throat: {
  27370. height: math.unit(79, "feet"),
  27371. name: "Throat",
  27372. image: {
  27373. source: "./media/characters/kodran/throat.svg"
  27374. }
  27375. },
  27376. },
  27377. [
  27378. {
  27379. name: "Large",
  27380. height: math.unit(106, "feet"),
  27381. default: true
  27382. },
  27383. ]
  27384. ))
  27385. characterMakers.push(() => makeCharacter(
  27386. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27387. {
  27388. side: {
  27389. height: math.unit(11, "feet"),
  27390. weight: math.unit(150, "lb"),
  27391. name: "Side",
  27392. image: {
  27393. source: "./media/characters/pyxaron/side.svg",
  27394. extra: 305 / 195,
  27395. bottom: 17 / 322
  27396. }
  27397. },
  27398. },
  27399. [
  27400. {
  27401. name: "Normal",
  27402. height: math.unit(11, "feet")
  27403. },
  27404. ]
  27405. ))
  27406. characterMakers.push(() => makeCharacter(
  27407. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27408. {
  27409. front: {
  27410. height: math.unit(6, "feet"),
  27411. weight: math.unit(150, "lb"),
  27412. name: "Front",
  27413. image: {
  27414. source: "./media/characters/meep/front.svg",
  27415. extra: 88 / 80,
  27416. bottom: 6 / 94
  27417. }
  27418. },
  27419. },
  27420. [
  27421. {
  27422. name: "Fun Sized",
  27423. height: math.unit(2, "inches"),
  27424. default: true
  27425. },
  27426. {
  27427. name: "Friend Sized",
  27428. height: math.unit(8, "inches")
  27429. },
  27430. ]
  27431. ))
  27432. characterMakers.push(() => makeCharacter(
  27433. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27434. {
  27435. front: {
  27436. height: math.unit(15, "feet"),
  27437. weight: math.unit(2500, "lb"),
  27438. name: "Front",
  27439. image: {
  27440. source: "./media/characters/holly-rabbit/front.svg",
  27441. extra: 1433 / 1233,
  27442. bottom: 125 / 1558
  27443. }
  27444. },
  27445. dick: {
  27446. height: math.unit(4.6, "feet"),
  27447. name: "Dick",
  27448. image: {
  27449. source: "./media/characters/holly-rabbit/dick.svg"
  27450. }
  27451. },
  27452. },
  27453. [
  27454. {
  27455. name: "Normal",
  27456. height: math.unit(15, "feet"),
  27457. default: true
  27458. },
  27459. {
  27460. name: "Macro",
  27461. height: math.unit(250, "feet")
  27462. },
  27463. {
  27464. name: "Macro+",
  27465. height: math.unit(2500, "feet")
  27466. },
  27467. ]
  27468. ))
  27469. characterMakers.push(() => makeCharacter(
  27470. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27471. {
  27472. front: {
  27473. height: math.unit(3.02, "meters"),
  27474. weight: math.unit(500, "kg"),
  27475. name: "Front",
  27476. image: {
  27477. source: "./media/characters/drena/front.svg",
  27478. extra: 282 / 243,
  27479. bottom: 8 / 290
  27480. }
  27481. },
  27482. side: {
  27483. height: math.unit(3.02, "meters"),
  27484. weight: math.unit(500, "kg"),
  27485. name: "Side",
  27486. image: {
  27487. source: "./media/characters/drena/side.svg",
  27488. extra: 280 / 245,
  27489. bottom: 10 / 290
  27490. }
  27491. },
  27492. back: {
  27493. height: math.unit(3.02, "meters"),
  27494. weight: math.unit(500, "kg"),
  27495. name: "Back",
  27496. image: {
  27497. source: "./media/characters/drena/back.svg",
  27498. extra: 278 / 243,
  27499. bottom: 2 / 280
  27500. }
  27501. },
  27502. foot: {
  27503. height: math.unit(0.75, "meters"),
  27504. name: "Foot",
  27505. image: {
  27506. source: "./media/characters/drena/foot.svg"
  27507. }
  27508. },
  27509. maw: {
  27510. height: math.unit(0.82, "meters"),
  27511. name: "Maw",
  27512. image: {
  27513. source: "./media/characters/drena/maw.svg"
  27514. }
  27515. },
  27516. rump: {
  27517. height: math.unit(0.93, "meters"),
  27518. name: "Rump",
  27519. image: {
  27520. source: "./media/characters/drena/rump.svg"
  27521. }
  27522. },
  27523. },
  27524. [
  27525. {
  27526. name: "Normal",
  27527. height: math.unit(3.02, "meters"),
  27528. default: true
  27529. },
  27530. ]
  27531. ))
  27532. characterMakers.push(() => makeCharacter(
  27533. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27534. {
  27535. front: {
  27536. height: math.unit(6 + 4 / 12, "feet"),
  27537. weight: math.unit(250, "lb"),
  27538. name: "Front",
  27539. image: {
  27540. source: "./media/characters/remmyzilla/front.svg",
  27541. extra: 4033 / 3588,
  27542. bottom: 123 / 4156
  27543. }
  27544. },
  27545. back: {
  27546. height: math.unit(6 + 4 / 12, "feet"),
  27547. weight: math.unit(250, "lb"),
  27548. name: "Back",
  27549. image: {
  27550. source: "./media/characters/remmyzilla/back.svg",
  27551. extra: 2687 / 2555,
  27552. bottom: 48 / 2735
  27553. }
  27554. },
  27555. frontFancy: {
  27556. height: math.unit(6 + 4 / 12, "feet"),
  27557. weight: math.unit(250, "lb"),
  27558. name: "Front (Fancy)",
  27559. image: {
  27560. source: "./media/characters/remmyzilla/front-fancy.svg",
  27561. extra: 4119 / 3419,
  27562. bottom: 237 / 4356
  27563. }
  27564. },
  27565. paw: {
  27566. height: math.unit(1.73, "feet"),
  27567. name: "Paw",
  27568. image: {
  27569. source: "./media/characters/remmyzilla/paw.svg"
  27570. }
  27571. },
  27572. maw: {
  27573. height: math.unit(1.73, "feet"),
  27574. name: "Maw",
  27575. image: {
  27576. source: "./media/characters/remmyzilla/maw.svg"
  27577. }
  27578. },
  27579. },
  27580. [
  27581. {
  27582. name: "Normal",
  27583. height: math.unit(6 + 4 / 12, "feet")
  27584. },
  27585. {
  27586. name: "Minimacro",
  27587. height: math.unit(12 + 8 / 12, "feet")
  27588. },
  27589. {
  27590. name: "Normal",
  27591. height: math.unit(640, "feet"),
  27592. default: true
  27593. },
  27594. {
  27595. name: "Megamacro",
  27596. height: math.unit(6400, "feet")
  27597. },
  27598. {
  27599. name: "Gigamacro",
  27600. height: math.unit(64000, "miles")
  27601. },
  27602. ]
  27603. ))
  27604. characterMakers.push(() => makeCharacter(
  27605. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27606. {
  27607. front: {
  27608. height: math.unit(2.5, "meters"),
  27609. weight: math.unit(300, "lb"),
  27610. name: "Front",
  27611. image: {
  27612. source: "./media/characters/lawrence/front.svg",
  27613. extra: 357 / 335,
  27614. bottom: 30 / 387
  27615. }
  27616. },
  27617. back: {
  27618. height: math.unit(2.5, "meters"),
  27619. weight: math.unit(300, "lb"),
  27620. name: "Back",
  27621. image: {
  27622. source: "./media/characters/lawrence/back.svg",
  27623. extra: 357 / 338,
  27624. bottom: 16 / 373
  27625. }
  27626. },
  27627. head: {
  27628. height: math.unit(0.9, "meter"),
  27629. name: "Head",
  27630. image: {
  27631. source: "./media/characters/lawrence/head.svg"
  27632. }
  27633. },
  27634. maw: {
  27635. height: math.unit(0.7, "meter"),
  27636. name: "Maw",
  27637. image: {
  27638. source: "./media/characters/lawrence/maw.svg"
  27639. }
  27640. },
  27641. footBottom: {
  27642. height: math.unit(0.5, "meter"),
  27643. name: "Foot (Bottom)",
  27644. image: {
  27645. source: "./media/characters/lawrence/foot-bottom.svg"
  27646. }
  27647. },
  27648. footTop: {
  27649. height: math.unit(0.5, "meter"),
  27650. name: "Foot (Top)",
  27651. image: {
  27652. source: "./media/characters/lawrence/foot-top.svg"
  27653. }
  27654. },
  27655. },
  27656. [
  27657. {
  27658. name: "Normal",
  27659. height: math.unit(2.5, "meters"),
  27660. default: true
  27661. },
  27662. {
  27663. name: "Macro",
  27664. height: math.unit(95, "meters")
  27665. },
  27666. {
  27667. name: "Megamacro",
  27668. height: math.unit(150, "km")
  27669. },
  27670. ]
  27671. ))
  27672. characterMakers.push(() => makeCharacter(
  27673. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27674. {
  27675. front: {
  27676. height: math.unit(4.2, "meters"),
  27677. name: "Front",
  27678. image: {
  27679. source: "./media/characters/sydney/front.svg",
  27680. extra: 1323 / 1277,
  27681. bottom: 111 / 1434
  27682. }
  27683. },
  27684. },
  27685. [
  27686. {
  27687. name: "Normal",
  27688. height: math.unit(4.2, "meters")
  27689. },
  27690. ]
  27691. ))
  27692. characterMakers.push(() => makeCharacter(
  27693. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27694. {
  27695. back: {
  27696. height: math.unit(201, "feet"),
  27697. name: "Back",
  27698. image: {
  27699. source: "./media/characters/jessica/back.svg",
  27700. extra: 273 / 259,
  27701. bottom: 7 / 280
  27702. }
  27703. },
  27704. },
  27705. [
  27706. {
  27707. name: "Normal",
  27708. height: math.unit(201, "feet"),
  27709. default: true
  27710. },
  27711. {
  27712. name: "Megamacro",
  27713. height: math.unit(8, "miles")
  27714. },
  27715. ]
  27716. ))
  27717. characterMakers.push(() => makeCharacter(
  27718. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27719. {
  27720. side: {
  27721. height: math.unit(320, "cm"),
  27722. name: "Side",
  27723. image: {
  27724. source: "./media/characters/victoria/side.svg",
  27725. extra: 778 / 346,
  27726. bottom: 56 / 834
  27727. }
  27728. },
  27729. maw: {
  27730. height: math.unit(5.9, "feet"),
  27731. name: "Maw",
  27732. image: {
  27733. source: "./media/characters/victoria/maw.svg"
  27734. }
  27735. },
  27736. },
  27737. [
  27738. {
  27739. name: "Normal",
  27740. height: math.unit(320, "cm"),
  27741. default: true
  27742. },
  27743. ]
  27744. ))
  27745. characterMakers.push(() => makeCharacter(
  27746. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27747. {
  27748. front: {
  27749. height: math.unit(5 + 6 / 12, "feet"),
  27750. name: "Front",
  27751. image: {
  27752. source: "./media/characters/cat/front.svg",
  27753. extra: 1374 / 1257,
  27754. bottom: 59 / 1433
  27755. }
  27756. },
  27757. back: {
  27758. height: math.unit(5 + 6 / 12, "feet"),
  27759. name: "Back",
  27760. image: {
  27761. source: "./media/characters/cat/back.svg",
  27762. extra: 1337 / 1226,
  27763. bottom: 34 / 1371
  27764. }
  27765. },
  27766. taur: {
  27767. height: math.unit(7, "feet"),
  27768. name: "Taur",
  27769. image: {
  27770. source: "./media/characters/cat/taur.svg",
  27771. extra: 1345 / 1231,
  27772. bottom: 66 / 1411
  27773. }
  27774. },
  27775. lucario: {
  27776. height: math.unit(4, "feet"),
  27777. name: "Lucario",
  27778. image: {
  27779. source: "./media/characters/cat/lucario.svg",
  27780. extra: 1470 / 1318,
  27781. bottom: 65 / 1535
  27782. }
  27783. },
  27784. megaLucario: {
  27785. height: math.unit(4, "feet"),
  27786. name: "Mega Lucario",
  27787. image: {
  27788. source: "./media/characters/cat/mega-lucario.svg",
  27789. extra: 1515 / 1319,
  27790. bottom: 63 / 1578
  27791. }
  27792. },
  27793. nickit: {
  27794. height: math.unit(2, "feet"),
  27795. name: "Nickit",
  27796. image: {
  27797. source: "./media/characters/cat/nickit.svg",
  27798. extra: 1980 / 1585,
  27799. bottom: 102 / 2082
  27800. }
  27801. },
  27802. lopunnyFront: {
  27803. height: math.unit(5, "feet"),
  27804. name: "Lopunny (Front)",
  27805. image: {
  27806. source: "./media/characters/cat/lopunny-front.svg",
  27807. extra: 1782 / 1469,
  27808. bottom: 38 / 1820
  27809. }
  27810. },
  27811. lopunnyBack: {
  27812. height: math.unit(5, "feet"),
  27813. name: "Lopunny (Back)",
  27814. image: {
  27815. source: "./media/characters/cat/lopunny-back.svg",
  27816. extra: 1660 / 1490,
  27817. bottom: 25 / 1685
  27818. }
  27819. },
  27820. },
  27821. [
  27822. {
  27823. name: "Really small",
  27824. height: math.unit(1, "nm")
  27825. },
  27826. {
  27827. name: "Micro",
  27828. height: math.unit(5, "inches")
  27829. },
  27830. {
  27831. name: "Normal",
  27832. height: math.unit(5 + 6 / 12, "feet"),
  27833. default: true
  27834. },
  27835. {
  27836. name: "Macro",
  27837. height: math.unit(50, "feet")
  27838. },
  27839. {
  27840. name: "Macro+",
  27841. height: math.unit(150, "feet")
  27842. },
  27843. {
  27844. name: "Megamacro",
  27845. height: math.unit(100, "miles")
  27846. },
  27847. ]
  27848. ))
  27849. characterMakers.push(() => makeCharacter(
  27850. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27851. {
  27852. front: {
  27853. height: math.unit(63.4, "meters"),
  27854. weight: math.unit(3.28349e+6, "kilograms"),
  27855. name: "Front",
  27856. image: {
  27857. source: "./media/characters/kirina-violet/front.svg",
  27858. extra: 2812/2725,
  27859. bottom: 0/2812
  27860. }
  27861. },
  27862. back: {
  27863. height: math.unit(63.4, "meters"),
  27864. weight: math.unit(3.28349e+6, "kilograms"),
  27865. name: "Back",
  27866. image: {
  27867. source: "./media/characters/kirina-violet/back.svg",
  27868. extra: 2812/2725,
  27869. bottom: 0/2812
  27870. }
  27871. },
  27872. mouth: {
  27873. height: math.unit(4.35, "meters"),
  27874. name: "Mouth",
  27875. image: {
  27876. source: "./media/characters/kirina-violet/mouth.svg"
  27877. }
  27878. },
  27879. paw: {
  27880. height: math.unit(5.6, "meters"),
  27881. name: "Paw",
  27882. image: {
  27883. source: "./media/characters/kirina-violet/paw.svg"
  27884. }
  27885. },
  27886. tail: {
  27887. height: math.unit(18, "meters"),
  27888. name: "Tail",
  27889. image: {
  27890. source: "./media/characters/kirina-violet/tail.svg"
  27891. }
  27892. },
  27893. },
  27894. [
  27895. {
  27896. name: "Macro",
  27897. height: math.unit(63.4, "meters"),
  27898. default: true
  27899. },
  27900. ]
  27901. ))
  27902. characterMakers.push(() => makeCharacter(
  27903. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  27904. {
  27905. front: {
  27906. height: math.unit(60, "feet"),
  27907. name: "Front",
  27908. image: {
  27909. source: "./media/characters/cat-gigachu/front.svg",
  27910. extra: 1024/780,
  27911. bottom: 23/1047
  27912. }
  27913. },
  27914. back: {
  27915. height: math.unit(60, "feet"),
  27916. name: "Back",
  27917. image: {
  27918. source: "./media/characters/cat-gigachu/back.svg",
  27919. extra: 1024/780,
  27920. bottom: 23/1047
  27921. }
  27922. },
  27923. },
  27924. [
  27925. {
  27926. name: "Dynamax",
  27927. height: math.unit(60, "feet"),
  27928. default: true
  27929. },
  27930. ]
  27931. ))
  27932. characterMakers.push(() => makeCharacter(
  27933. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  27934. {
  27935. front: {
  27936. height: math.unit(6, "feet"),
  27937. weight: math.unit(150, "lb"),
  27938. name: "Front",
  27939. image: {
  27940. source: "./media/characters/sfaiyan/front.svg",
  27941. extra: 999/978,
  27942. bottom: 5/1004
  27943. }
  27944. },
  27945. },
  27946. [
  27947. {
  27948. name: "Normal",
  27949. height: math.unit(1.82, "meters")
  27950. },
  27951. {
  27952. name: "Giant",
  27953. height: math.unit(2.27, "km"),
  27954. default: true
  27955. },
  27956. ]
  27957. ))
  27958. characterMakers.push(() => makeCharacter(
  27959. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  27960. {
  27961. front: {
  27962. height: math.unit(179, "cm"),
  27963. weight: math.unit(100, "kg"),
  27964. name: "Front",
  27965. image: {
  27966. source: "./media/characters/raunehkeli/front.svg",
  27967. extra: 1934/1926,
  27968. bottom: 0/1934
  27969. }
  27970. },
  27971. },
  27972. [
  27973. {
  27974. name: "Normal",
  27975. height: math.unit(179, "cm")
  27976. },
  27977. {
  27978. name: "Maximum",
  27979. height: math.unit(575, "meters"),
  27980. default: true
  27981. },
  27982. ]
  27983. ))
  27984. characterMakers.push(() => makeCharacter(
  27985. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  27986. {
  27987. front: {
  27988. height: math.unit(6, "feet"),
  27989. weight: math.unit(150, "lb"),
  27990. name: "Front",
  27991. image: {
  27992. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  27993. extra: 2625/2518,
  27994. bottom: 60/2685
  27995. }
  27996. },
  27997. },
  27998. [
  27999. {
  28000. name: "Normal",
  28001. height: math.unit(6 + 2/12, "feet"),
  28002. default: true
  28003. },
  28004. {
  28005. name: "Macro",
  28006. height: math.unit(1180, "feet")
  28007. },
  28008. ]
  28009. ))
  28010. characterMakers.push(() => makeCharacter(
  28011. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28012. {
  28013. front: {
  28014. height: math.unit(5 + 6/12, "feet"),
  28015. weight: math.unit(108, "lb"),
  28016. name: "Front",
  28017. image: {
  28018. source: "./media/characters/lilith-zott/front.svg",
  28019. extra: 2510/2238,
  28020. bottom: 100/2610
  28021. }
  28022. },
  28023. frontDressed: {
  28024. height: math.unit(5 + 6/12, "feet"),
  28025. weight: math.unit(108, "lb"),
  28026. name: "Front (Dressed)",
  28027. image: {
  28028. source: "./media/characters/lilith-zott/front-dressed.svg",
  28029. extra: 2510/2238,
  28030. bottom: 100/2610
  28031. }
  28032. },
  28033. },
  28034. [
  28035. {
  28036. name: "Normal",
  28037. height: math.unit(5 + 6/12, "feet")
  28038. },
  28039. {
  28040. name: "Macro",
  28041. height: math.unit(200, "feet"),
  28042. default: true
  28043. },
  28044. {
  28045. name: "Macro+",
  28046. height: math.unit(1030, "feet")
  28047. },
  28048. ]
  28049. ))
  28050. characterMakers.push(() => makeCharacter(
  28051. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28052. {
  28053. front: {
  28054. height: math.unit(6, "feet"),
  28055. weight: math.unit(150, "lb"),
  28056. name: "Front",
  28057. image: {
  28058. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28059. extra: 2567/2435,
  28060. bottom: 39/2606
  28061. }
  28062. },
  28063. frontSuper: {
  28064. height: math.unit(6, "feet"),
  28065. name: "Front (Super)",
  28066. image: {
  28067. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28068. extra: 2567/2435,
  28069. bottom: 39/2606
  28070. }
  28071. },
  28072. },
  28073. [
  28074. {
  28075. name: "Normal",
  28076. height: math.unit(5 + 10/12, "feet")
  28077. },
  28078. {
  28079. name: "Macro",
  28080. height: math.unit(220, "feet"),
  28081. default: true
  28082. },
  28083. {
  28084. name: "Macro+",
  28085. height: math.unit(1100, "feet")
  28086. },
  28087. ]
  28088. ))
  28089. characterMakers.push(() => makeCharacter(
  28090. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28091. {
  28092. front: {
  28093. height: math.unit(100, "miles"),
  28094. name: "Front",
  28095. image: {
  28096. source: "./media/characters/sona/front.svg",
  28097. extra: 2433/2201,
  28098. bottom: 53/2486
  28099. }
  28100. },
  28101. foot: {
  28102. height: math.unit(16.1, "miles"),
  28103. name: "Foot",
  28104. image: {
  28105. source: "./media/characters/sona/foot.svg"
  28106. }
  28107. },
  28108. },
  28109. [
  28110. {
  28111. name: "Macro",
  28112. height: math.unit(100, "miles"),
  28113. default: true
  28114. },
  28115. ]
  28116. ))
  28117. characterMakers.push(() => makeCharacter(
  28118. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28119. {
  28120. front: {
  28121. height: math.unit(6, "feet"),
  28122. weight: math.unit(150, "lb"),
  28123. name: "Front",
  28124. image: {
  28125. source: "./media/characters/bailey/front.svg",
  28126. extra: 1778/1724,
  28127. bottom: 30/1808
  28128. }
  28129. },
  28130. },
  28131. [
  28132. {
  28133. name: "Micro",
  28134. height: math.unit(4, "inches")
  28135. },
  28136. {
  28137. name: "Normal",
  28138. height: math.unit(5 + 5/12, "feet"),
  28139. default: true
  28140. },
  28141. {
  28142. name: "Macro",
  28143. height: math.unit(250, "feet")
  28144. },
  28145. {
  28146. name: "Megamacro",
  28147. height: math.unit(100, "miles")
  28148. },
  28149. ]
  28150. ))
  28151. characterMakers.push(() => makeCharacter(
  28152. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28153. {
  28154. front: {
  28155. height: math.unit(5 + 2/12, "feet"),
  28156. weight: math.unit(120, "lb"),
  28157. name: "Front",
  28158. image: {
  28159. source: "./media/characters/snaps/front.svg",
  28160. extra: 2370/2177,
  28161. bottom: 48/2418
  28162. }
  28163. },
  28164. back: {
  28165. height: math.unit(5 + 2/12, "feet"),
  28166. weight: math.unit(120, "lb"),
  28167. name: "Back",
  28168. image: {
  28169. source: "./media/characters/snaps/back.svg",
  28170. extra: 2408/2258,
  28171. bottom: 15/2423
  28172. }
  28173. },
  28174. },
  28175. [
  28176. {
  28177. name: "Micro",
  28178. height: math.unit(9, "inches")
  28179. },
  28180. {
  28181. name: "Normal",
  28182. height: math.unit(5 + 2/12, "feet"),
  28183. default: true
  28184. },
  28185. {
  28186. name: "Mini Macro",
  28187. height: math.unit(10, "feet")
  28188. },
  28189. ]
  28190. ))
  28191. characterMakers.push(() => makeCharacter(
  28192. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28193. {
  28194. front: {
  28195. height: math.unit(1.8, "meters"),
  28196. weight: math.unit(85, "kg"),
  28197. name: "Front",
  28198. image: {
  28199. source: "./media/characters/azteck/front.svg",
  28200. extra: 2815/2625,
  28201. bottom: 89/2904
  28202. }
  28203. },
  28204. back: {
  28205. height: math.unit(1.8, "meters"),
  28206. weight: math.unit(85, "kg"),
  28207. name: "Back",
  28208. image: {
  28209. source: "./media/characters/azteck/back.svg",
  28210. extra: 2856/2648,
  28211. bottom: 85/2941
  28212. }
  28213. },
  28214. frontDressed: {
  28215. height: math.unit(1.8, "meters"),
  28216. weight: math.unit(85, "kg"),
  28217. name: "Front (Dressed)",
  28218. image: {
  28219. source: "./media/characters/azteck/front-dressed.svg",
  28220. extra: 2147/2003,
  28221. bottom: 68/2215
  28222. }
  28223. },
  28224. head: {
  28225. height: math.unit(0.47, "meters"),
  28226. weight: math.unit(85, "kg"),
  28227. name: "Head",
  28228. image: {
  28229. source: "./media/characters/azteck/head.svg"
  28230. }
  28231. },
  28232. },
  28233. [
  28234. {
  28235. name: "Bite sized",
  28236. height: math.unit(16, "cm")
  28237. },
  28238. {
  28239. name: "Normal",
  28240. height: math.unit(1.8, "meters"),
  28241. default: true
  28242. },
  28243. ]
  28244. ))
  28245. characterMakers.push(() => makeCharacter(
  28246. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28247. {
  28248. front: {
  28249. height: math.unit(6, "feet"),
  28250. weight: math.unit(150, "lb"),
  28251. name: "Front",
  28252. image: {
  28253. source: "./media/characters/pidge/front.svg",
  28254. extra: 620/588,
  28255. bottom: 9/629
  28256. }
  28257. },
  28258. back: {
  28259. height: math.unit(6, "feet"),
  28260. weight: math.unit(150, "lb"),
  28261. name: "Back",
  28262. image: {
  28263. source: "./media/characters/pidge/back.svg",
  28264. extra: 620/588,
  28265. bottom: 9/629
  28266. }
  28267. },
  28268. },
  28269. [
  28270. {
  28271. name: "Macro",
  28272. height: math.unit(1, "mile"),
  28273. default: true
  28274. },
  28275. ]
  28276. ))
  28277. characterMakers.push(() => makeCharacter(
  28278. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28279. {
  28280. front: {
  28281. height: math.unit(6, "feet"),
  28282. weight: math.unit(150, "lb"),
  28283. name: "Front",
  28284. image: {
  28285. source: "./media/characters/en/front.svg",
  28286. extra: 1697/1563,
  28287. bottom: 103/1800
  28288. }
  28289. },
  28290. back: {
  28291. height: math.unit(6, "feet"),
  28292. weight: math.unit(150, "lb"),
  28293. name: "Back",
  28294. image: {
  28295. source: "./media/characters/en/back.svg",
  28296. extra: 1700/1570,
  28297. bottom: 51/1751
  28298. }
  28299. },
  28300. frontDressed: {
  28301. height: math.unit(6, "feet"),
  28302. weight: math.unit(150, "lb"),
  28303. name: "Front (Dressed)",
  28304. image: {
  28305. source: "./media/characters/en/front-dressed.svg",
  28306. extra: 1697/1563,
  28307. bottom: 103/1800
  28308. }
  28309. },
  28310. backDressed: {
  28311. height: math.unit(6, "feet"),
  28312. weight: math.unit(150, "lb"),
  28313. name: "Back (Dressed)",
  28314. image: {
  28315. source: "./media/characters/en/back-dressed.svg",
  28316. extra: 1700/1570,
  28317. bottom: 51/1751
  28318. }
  28319. },
  28320. },
  28321. [
  28322. {
  28323. name: "Macro",
  28324. height: math.unit(210, "feet"),
  28325. default: true
  28326. },
  28327. ]
  28328. ))
  28329. characterMakers.push(() => makeCharacter(
  28330. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28331. {
  28332. front: {
  28333. height: math.unit(6, "feet"),
  28334. weight: math.unit(150, "lb"),
  28335. name: "Front",
  28336. image: {
  28337. source: "./media/characters/haze-orris/front.svg",
  28338. extra: 3975/3525,
  28339. bottom: 137/4112
  28340. }
  28341. },
  28342. },
  28343. [
  28344. {
  28345. name: "Micro",
  28346. height: math.unit(150, "mm"),
  28347. default: true
  28348. },
  28349. ]
  28350. ))
  28351. characterMakers.push(() => makeCharacter(
  28352. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28353. {
  28354. front: {
  28355. height: math.unit(6, "feet"),
  28356. weight: math.unit(150, "lb"),
  28357. name: "Front",
  28358. image: {
  28359. source: "./media/characters/casselene-yaro/front.svg",
  28360. extra: 4721/4541,
  28361. bottom: 82/4803
  28362. }
  28363. },
  28364. back: {
  28365. height: math.unit(6, "feet"),
  28366. weight: math.unit(150, "lb"),
  28367. name: "Back",
  28368. image: {
  28369. source: "./media/characters/casselene-yaro/back.svg",
  28370. extra: 4569/4377,
  28371. bottom: 69/4638
  28372. }
  28373. },
  28374. frontDressed: {
  28375. height: math.unit(6, "feet"),
  28376. weight: math.unit(150, "lb"),
  28377. name: "Front-dressed",
  28378. image: {
  28379. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28380. extra: 4721/4541,
  28381. bottom: 82/4803
  28382. }
  28383. },
  28384. },
  28385. [
  28386. {
  28387. name: "Macro",
  28388. height: math.unit(190, "feet")
  28389. },
  28390. ]
  28391. ))
  28392. characterMakers.push(() => makeCharacter(
  28393. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28394. {
  28395. front: {
  28396. height: math.unit(6, "feet"),
  28397. weight: math.unit(150, "lb"),
  28398. name: "Front",
  28399. image: {
  28400. source: "./media/characters/myra-rue-delore/front.svg",
  28401. extra: 1340/1308,
  28402. bottom: 67/1407
  28403. }
  28404. },
  28405. back: {
  28406. height: math.unit(6, "feet"),
  28407. weight: math.unit(150, "lb"),
  28408. name: "Back",
  28409. image: {
  28410. source: "./media/characters/myra-rue-delore/back.svg",
  28411. extra: 1341/1310,
  28412. bottom: 40/1381
  28413. }
  28414. },
  28415. frontDressed: {
  28416. height: math.unit(6, "feet"),
  28417. weight: math.unit(150, "lb"),
  28418. name: "Front (Dressed)",
  28419. image: {
  28420. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28421. extra: 1340/1308,
  28422. bottom: 67/1407
  28423. }
  28424. },
  28425. },
  28426. [
  28427. {
  28428. name: "Macro",
  28429. height: math.unit(150, "feet")
  28430. },
  28431. ]
  28432. ))
  28433. characterMakers.push(() => makeCharacter(
  28434. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28435. {
  28436. front: {
  28437. height: math.unit(10, "feet"),
  28438. weight: math.unit(15015, "lb"),
  28439. name: "Front",
  28440. image: {
  28441. source: "./media/characters/fem!plat/front.svg",
  28442. extra: 2799/2604,
  28443. bottom: 149/2948
  28444. }
  28445. },
  28446. },
  28447. [
  28448. {
  28449. name: "Normal",
  28450. height: math.unit(10, "feet"),
  28451. default: true
  28452. },
  28453. {
  28454. name: "Macro",
  28455. height: math.unit(100, "feet")
  28456. },
  28457. {
  28458. name: "Megamacro",
  28459. height: math.unit(1000, "feet")
  28460. },
  28461. ]
  28462. ))
  28463. characterMakers.push(() => makeCharacter(
  28464. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28465. {
  28466. front: {
  28467. height: math.unit(15 + 5/12, "feet"),
  28468. weight: math.unit(4600, "lb"),
  28469. name: "Front",
  28470. image: {
  28471. source: "./media/characters/neapolitan-ananassa/front.svg",
  28472. extra: 2903/2736,
  28473. bottom: 0/2903
  28474. }
  28475. },
  28476. side: {
  28477. height: math.unit(15 + 5/12, "feet"),
  28478. weight: math.unit(4600, "lb"),
  28479. name: "Side",
  28480. image: {
  28481. source: "./media/characters/neapolitan-ananassa/side.svg",
  28482. extra: 2925/2719,
  28483. bottom: 0/2925
  28484. }
  28485. },
  28486. back: {
  28487. height: math.unit(15 + 5/12, "feet"),
  28488. weight: math.unit(4600, "lb"),
  28489. name: "Back",
  28490. image: {
  28491. source: "./media/characters/neapolitan-ananassa/back.svg",
  28492. extra: 2903/2736,
  28493. bottom: 0/2903
  28494. }
  28495. },
  28496. },
  28497. [
  28498. {
  28499. name: "Normal",
  28500. height: math.unit(15 + 5/12, "feet"),
  28501. default: true
  28502. },
  28503. {
  28504. name: "Post-Millenium",
  28505. height: math.unit(35 + 5/12, "feet")
  28506. },
  28507. {
  28508. name: "Post-Era",
  28509. height: math.unit(450 + 5/12, "feet")
  28510. },
  28511. ]
  28512. ))
  28513. characterMakers.push(() => makeCharacter(
  28514. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28515. {
  28516. front: {
  28517. height: math.unit(300, "meters"),
  28518. weight: math.unit(125000, "tonnes"),
  28519. name: "Front",
  28520. image: {
  28521. source: "./media/characters/pazuzu/front.svg",
  28522. extra: 877/794,
  28523. bottom: 47/924
  28524. }
  28525. },
  28526. },
  28527. [
  28528. {
  28529. name: "Macro",
  28530. height: math.unit(300, "meters"),
  28531. default: true
  28532. },
  28533. ]
  28534. ))
  28535. characterMakers.push(() => makeCharacter(
  28536. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28537. {
  28538. side: {
  28539. height: math.unit(10 + 7/12, "feet"),
  28540. weight: math.unit(2.5, "tons"),
  28541. name: "Side",
  28542. image: {
  28543. source: "./media/characters/aasha/side.svg",
  28544. extra: 1345/1245,
  28545. bottom: 111/1456
  28546. }
  28547. },
  28548. back: {
  28549. height: math.unit(10 + 7/12, "feet"),
  28550. weight: math.unit(2.5, "tons"),
  28551. name: "Back",
  28552. image: {
  28553. source: "./media/characters/aasha/back.svg",
  28554. extra: 1133/1057,
  28555. bottom: 257/1390
  28556. }
  28557. },
  28558. },
  28559. [
  28560. {
  28561. name: "Normal",
  28562. height: math.unit(10 + 7/12, "feet"),
  28563. default: true
  28564. },
  28565. ]
  28566. ))
  28567. characterMakers.push(() => makeCharacter(
  28568. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28569. {
  28570. front: {
  28571. height: math.unit(6 + 3/12, "feet"),
  28572. name: "Front",
  28573. image: {
  28574. source: "./media/characters/nevan/front.svg",
  28575. extra: 704/704,
  28576. bottom: 28/732
  28577. }
  28578. },
  28579. back: {
  28580. height: math.unit(6 + 3/12, "feet"),
  28581. name: "Back",
  28582. image: {
  28583. source: "./media/characters/nevan/back.svg",
  28584. extra: 714/714,
  28585. bottom: 21/735
  28586. }
  28587. },
  28588. frontFlaccid: {
  28589. height: math.unit(6 + 3/12, "feet"),
  28590. name: "Front (Flaccid)",
  28591. image: {
  28592. source: "./media/characters/nevan/front-flaccid.svg",
  28593. extra: 704/704,
  28594. bottom: 28/732
  28595. }
  28596. },
  28597. frontErect: {
  28598. height: math.unit(6 + 3/12, "feet"),
  28599. name: "Front (Erect)",
  28600. image: {
  28601. source: "./media/characters/nevan/front-erect.svg",
  28602. extra: 704/704,
  28603. bottom: 28/732
  28604. }
  28605. },
  28606. backFlaccid: {
  28607. height: math.unit(6 + 3/12, "feet"),
  28608. name: "Back (Flaccid)",
  28609. image: {
  28610. source: "./media/characters/nevan/back-flaccid.svg",
  28611. extra: 714/714,
  28612. bottom: 21/735
  28613. }
  28614. },
  28615. },
  28616. [
  28617. {
  28618. name: "Normal",
  28619. height: math.unit(6 + 3/12, "feet"),
  28620. default: true
  28621. },
  28622. ]
  28623. ))
  28624. characterMakers.push(() => makeCharacter(
  28625. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28626. {
  28627. front: {
  28628. height: math.unit(4, "feet"),
  28629. name: "Front",
  28630. image: {
  28631. source: "./media/characters/arhan/front.svg",
  28632. extra: 3368/3133,
  28633. bottom: 0/3368
  28634. }
  28635. },
  28636. side: {
  28637. height: math.unit(4, "feet"),
  28638. name: "Side",
  28639. image: {
  28640. source: "./media/characters/arhan/side.svg",
  28641. extra: 3347/3105,
  28642. bottom: 0/3347
  28643. }
  28644. },
  28645. tongue: {
  28646. height: math.unit(1.42, "feet"),
  28647. name: "Tongue",
  28648. image: {
  28649. source: "./media/characters/arhan/tongue.svg"
  28650. }
  28651. },
  28652. head: {
  28653. height: math.unit(0.85, "feet"),
  28654. name: "Head",
  28655. image: {
  28656. source: "./media/characters/arhan/head.svg"
  28657. }
  28658. },
  28659. },
  28660. [
  28661. {
  28662. name: "Normal",
  28663. height: math.unit(4, "feet"),
  28664. default: true
  28665. },
  28666. ]
  28667. ))
  28668. characterMakers.push(() => makeCharacter(
  28669. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28670. {
  28671. front: {
  28672. height: math.unit(5 + 7.5/12, "feet"),
  28673. weight: math.unit(120, "lb"),
  28674. name: "Front",
  28675. image: {
  28676. source: "./media/characters/digi-duncan/front.svg",
  28677. extra: 330/326,
  28678. bottom: 16/346
  28679. }
  28680. },
  28681. side: {
  28682. height: math.unit(5 + 7.5/12, "feet"),
  28683. weight: math.unit(120, "lb"),
  28684. name: "Side",
  28685. image: {
  28686. source: "./media/characters/digi-duncan/side.svg",
  28687. extra: 341/337,
  28688. bottom: 1/342
  28689. }
  28690. },
  28691. back: {
  28692. height: math.unit(5 + 7.5/12, "feet"),
  28693. weight: math.unit(120, "lb"),
  28694. name: "Back",
  28695. image: {
  28696. source: "./media/characters/digi-duncan/back.svg",
  28697. extra: 330/326,
  28698. bottom: 12/342
  28699. }
  28700. },
  28701. },
  28702. [
  28703. {
  28704. name: "Speck",
  28705. height: math.unit(0.25, "mm")
  28706. },
  28707. {
  28708. name: "Micro",
  28709. height: math.unit(5, "mm")
  28710. },
  28711. {
  28712. name: "Tiny",
  28713. height: math.unit(0.5, "inches"),
  28714. default: true
  28715. },
  28716. {
  28717. name: "Human",
  28718. height: math.unit(5 + 7.5/12, "feet")
  28719. },
  28720. {
  28721. name: "Minigiant",
  28722. height: math.unit(8 + 5.25, "feet")
  28723. },
  28724. {
  28725. name: "Giant",
  28726. height: math.unit(2000, "feet")
  28727. },
  28728. {
  28729. name: "Mega",
  28730. height: math.unit(371.1, "miles")
  28731. },
  28732. ]
  28733. ))
  28734. characterMakers.push(() => makeCharacter(
  28735. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28736. {
  28737. front: {
  28738. height: math.unit(2, "meters"),
  28739. weight: math.unit(350, "kg"),
  28740. name: "Front",
  28741. image: {
  28742. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28743. extra: 898/838,
  28744. bottom: 9/907
  28745. }
  28746. },
  28747. },
  28748. [
  28749. {
  28750. name: "Micro",
  28751. height: math.unit(8, "meters")
  28752. },
  28753. {
  28754. name: "Normal",
  28755. height: math.unit(50, "meters"),
  28756. default: true
  28757. },
  28758. {
  28759. name: "Macro",
  28760. height: math.unit(500, "meters")
  28761. },
  28762. ]
  28763. ))
  28764. characterMakers.push(() => makeCharacter(
  28765. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28766. {
  28767. front: {
  28768. height: math.unit(6 + 6/12, "feet"),
  28769. name: "Front",
  28770. image: {
  28771. source: "./media/characters/khardesh/front.svg",
  28772. extra: 888/797,
  28773. bottom: 25/913
  28774. }
  28775. },
  28776. },
  28777. [
  28778. {
  28779. name: "Normal",
  28780. height: math.unit(6 + 6/12, "feet"),
  28781. default: true
  28782. },
  28783. {
  28784. name: "Normal+",
  28785. height: math.unit(4, "meters")
  28786. },
  28787. {
  28788. name: "Macro",
  28789. height: math.unit(50, "meters")
  28790. },
  28791. {
  28792. name: "Macro+",
  28793. height: math.unit(100, "meters")
  28794. },
  28795. {
  28796. name: "Megamacro",
  28797. height: math.unit(20, "km")
  28798. },
  28799. ]
  28800. ))
  28801. characterMakers.push(() => makeCharacter(
  28802. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28803. {
  28804. front: {
  28805. height: math.unit(6, "feet"),
  28806. weight: math.unit(150, "lb"),
  28807. name: "Front",
  28808. image: {
  28809. source: "./media/characters/kosho/front.svg",
  28810. extra: 1847/1847,
  28811. bottom: 86/1933
  28812. }
  28813. },
  28814. },
  28815. [
  28816. {
  28817. name: "Second-stage micro",
  28818. height: math.unit(0.5, "inches")
  28819. },
  28820. {
  28821. name: "First-stage micro",
  28822. height: math.unit(6, "inches")
  28823. },
  28824. {
  28825. name: "Normal",
  28826. height: math.unit(6, "feet"),
  28827. default: true
  28828. },
  28829. {
  28830. name: "First-stage macro",
  28831. height: math.unit(72, "feet")
  28832. },
  28833. {
  28834. name: "Second-stage macro",
  28835. height: math.unit(864, "feet")
  28836. },
  28837. ]
  28838. ))
  28839. characterMakers.push(() => makeCharacter(
  28840. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  28841. {
  28842. normal: {
  28843. height: math.unit(4 + 6/12, "feet"),
  28844. weight: math.unit(150, "lb"),
  28845. name: "Normal",
  28846. image: {
  28847. source: "./media/characters/hydra/normal.svg",
  28848. extra: 2833/2634,
  28849. bottom: 68/2901
  28850. }
  28851. },
  28852. smol: {
  28853. height: math.unit(0.705, "inches"),
  28854. weight: math.unit(150, "lb"),
  28855. name: "Smol",
  28856. image: {
  28857. source: "./media/characters/hydra/smol.svg",
  28858. extra: 2715/2540,
  28859. bottom: 0/2715
  28860. }
  28861. },
  28862. },
  28863. [
  28864. {
  28865. name: "Normal",
  28866. height: math.unit(4 + 6/12, "feet"),
  28867. default: true
  28868. }
  28869. ]
  28870. ))
  28871. //characters
  28872. function makeCharacters() {
  28873. const results = [];
  28874. characterMakers.forEach(character => {
  28875. results.push(character());
  28876. });
  28877. return results;
  28878. }