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

28864 строки
720 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. }
  1360. //species
  1361. function getSpeciesInfo(speciesList) {
  1362. let result = new Set();
  1363. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1364. result.add(entry)
  1365. });
  1366. return Array.from(result);
  1367. };
  1368. function getSpeciesInfoHelper(species) {
  1369. if (!speciesData[species]) {
  1370. console.warn(species + " doesn't exist");
  1371. return [];
  1372. }
  1373. if (speciesData[species].parents) {
  1374. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1375. } else {
  1376. return [species];
  1377. }
  1378. }
  1379. characterMakers.push(() => makeCharacter(
  1380. {
  1381. name: "Fen",
  1382. species: ["crux"],
  1383. description: {
  1384. title: "Bio",
  1385. text: "Very furry. Sheds on everything."
  1386. },
  1387. tags: [
  1388. "anthro",
  1389. "goo"
  1390. ]
  1391. },
  1392. {
  1393. back: {
  1394. height: math.unit(2.2428, "meter"),
  1395. weight: math.unit(124.738, "kg"),
  1396. name: "Back",
  1397. image: {
  1398. source: "./media/characters/fen/back.svg",
  1399. extra: 2024 / 1867,
  1400. bottom: 13 / 2037
  1401. },
  1402. info: {
  1403. description: {
  1404. mode: "append",
  1405. text: "\n\nHe is not currently looking at you."
  1406. }
  1407. }
  1408. },
  1409. full: {
  1410. height: math.unit(1.34, "meter"),
  1411. weight: math.unit(225, "kg"),
  1412. name: "Full",
  1413. image: {
  1414. source: "./media/characters/fen/full.svg"
  1415. },
  1416. info: {
  1417. description: {
  1418. mode: "append",
  1419. text: "\n\nMunch."
  1420. }
  1421. }
  1422. },
  1423. kneeling: {
  1424. height: math.unit(5.4, "feet"),
  1425. weight: math.unit(124.738, "kg"),
  1426. name: "Kneeling",
  1427. image: {
  1428. source: "./media/characters/fen/kneeling.svg",
  1429. extra: 563 / 507
  1430. }
  1431. },
  1432. goo: {
  1433. height: math.unit(2.8, "feet"),
  1434. weight: math.unit(125, "kg"),
  1435. capacity: math.unit(1, "people"),
  1436. name: "Goo",
  1437. image: {
  1438. source: "./media/characters/fen/goo.svg",
  1439. bottom: 116 / 613
  1440. }
  1441. },
  1442. lounging: {
  1443. height: math.unit(6.5, "feet"),
  1444. weight: math.unit(125, "kg"),
  1445. name: "Lounging",
  1446. image: {
  1447. source: "./media/characters/fen/lounging.svg"
  1448. }
  1449. },
  1450. },
  1451. [
  1452. {
  1453. name: "Normal",
  1454. height: math.unit(2.2428, "meter")
  1455. },
  1456. {
  1457. name: "Big",
  1458. height: math.unit(12, "feet")
  1459. },
  1460. {
  1461. name: "Minimacro",
  1462. height: math.unit(40, "feet"),
  1463. default: true,
  1464. info: {
  1465. description: {
  1466. mode: "append",
  1467. text: "\n\nTOO DAMN BIG"
  1468. }
  1469. }
  1470. },
  1471. {
  1472. name: "Macro",
  1473. height: math.unit(100, "feet"),
  1474. info: {
  1475. description: {
  1476. mode: "append",
  1477. text: "\n\nTOO DAMN BIG"
  1478. }
  1479. }
  1480. },
  1481. {
  1482. name: "Macro+",
  1483. height: math.unit(300, "feet")
  1484. },
  1485. {
  1486. name: "Megamacro",
  1487. height: math.unit(2, "miles")
  1488. }
  1489. ]
  1490. ))
  1491. characterMakers.push(() => makeCharacter(
  1492. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1493. {
  1494. front: {
  1495. height: math.unit(183, "cm"),
  1496. weight: math.unit(80, "kg"),
  1497. name: "Front",
  1498. image: {
  1499. source: "./media/characters/sofia-fluttertail/front.svg",
  1500. bottom: 0.01,
  1501. extra: 2154 / 2081
  1502. }
  1503. },
  1504. frontAlt: {
  1505. height: math.unit(183, "cm"),
  1506. weight: math.unit(80, "kg"),
  1507. name: "Front (alt)",
  1508. image: {
  1509. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1510. }
  1511. },
  1512. back: {
  1513. height: math.unit(183, "cm"),
  1514. weight: math.unit(80, "kg"),
  1515. name: "Back",
  1516. image: {
  1517. source: "./media/characters/sofia-fluttertail/back.svg"
  1518. }
  1519. },
  1520. kneeling: {
  1521. height: math.unit(125, "cm"),
  1522. weight: math.unit(80, "kg"),
  1523. name: "Kneeling",
  1524. image: {
  1525. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1526. extra: 1033 / 977,
  1527. bottom: 23.7 / 1057
  1528. }
  1529. },
  1530. maw: {
  1531. height: math.unit(183 / 5, "cm"),
  1532. name: "Maw",
  1533. image: {
  1534. source: "./media/characters/sofia-fluttertail/maw.svg"
  1535. }
  1536. },
  1537. mawcloseup: {
  1538. height: math.unit(183 / 5 * 0.41, "cm"),
  1539. name: "Maw (Closeup)",
  1540. image: {
  1541. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1542. }
  1543. },
  1544. },
  1545. [
  1546. {
  1547. name: "Normal",
  1548. height: math.unit(1.83, "meter")
  1549. },
  1550. {
  1551. name: "Size Thief",
  1552. height: math.unit(18, "feet")
  1553. },
  1554. {
  1555. name: "50 Foot Collie",
  1556. height: math.unit(50, "feet")
  1557. },
  1558. {
  1559. name: "Macro",
  1560. height: math.unit(96, "feet"),
  1561. default: true
  1562. },
  1563. {
  1564. name: "Megamerger",
  1565. height: math.unit(650, "feet")
  1566. },
  1567. ]
  1568. ))
  1569. characterMakers.push(() => makeCharacter(
  1570. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1571. {
  1572. front: {
  1573. height: math.unit(7, "feet"),
  1574. weight: math.unit(100, "kg"),
  1575. name: "Front",
  1576. image: {
  1577. source: "./media/characters/march/front.svg",
  1578. extra: 1,
  1579. bottom: 0.015
  1580. }
  1581. },
  1582. foot: {
  1583. height: math.unit(0.9, "feet"),
  1584. name: "Foot",
  1585. image: {
  1586. source: "./media/characters/march/foot.svg"
  1587. }
  1588. },
  1589. },
  1590. [
  1591. {
  1592. name: "Normal",
  1593. height: math.unit(7.9, "feet")
  1594. },
  1595. {
  1596. name: "Macro",
  1597. height: math.unit(220, "meters")
  1598. },
  1599. {
  1600. name: "Megamacro",
  1601. height: math.unit(2.98, "km"),
  1602. default: true
  1603. },
  1604. {
  1605. name: "Gigamacro",
  1606. height: math.unit(15963, "km")
  1607. },
  1608. {
  1609. name: "Teramacro",
  1610. height: math.unit(2980000000, "km")
  1611. },
  1612. {
  1613. name: "Examacro",
  1614. height: math.unit(250, "parsecs")
  1615. },
  1616. ]
  1617. ))
  1618. characterMakers.push(() => makeCharacter(
  1619. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1620. {
  1621. front: {
  1622. height: math.unit(6, "feet"),
  1623. weight: math.unit(60, "kg"),
  1624. name: "Front",
  1625. image: {
  1626. source: "./media/characters/noir/front.svg",
  1627. extra: 1,
  1628. bottom: 0.032
  1629. }
  1630. },
  1631. },
  1632. [
  1633. {
  1634. name: "Normal",
  1635. height: math.unit(6.6, "feet")
  1636. },
  1637. {
  1638. name: "Macro",
  1639. height: math.unit(500, "feet")
  1640. },
  1641. {
  1642. name: "Megamacro",
  1643. height: math.unit(2.5, "km"),
  1644. default: true
  1645. },
  1646. {
  1647. name: "Gigamacro",
  1648. height: math.unit(22500, "km")
  1649. },
  1650. {
  1651. name: "Teramacro",
  1652. height: math.unit(2500000000, "km")
  1653. },
  1654. {
  1655. name: "Examacro",
  1656. height: math.unit(200, "parsecs")
  1657. },
  1658. ]
  1659. ))
  1660. characterMakers.push(() => makeCharacter(
  1661. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1662. {
  1663. front: {
  1664. height: math.unit(7, "feet"),
  1665. weight: math.unit(100, "kg"),
  1666. name: "Front",
  1667. image: {
  1668. source: "./media/characters/okuri/front.svg",
  1669. extra: 1,
  1670. bottom: 0.037
  1671. }
  1672. },
  1673. back: {
  1674. height: math.unit(7, "feet"),
  1675. weight: math.unit(100, "kg"),
  1676. name: "Back",
  1677. image: {
  1678. source: "./media/characters/okuri/back.svg",
  1679. extra: 1,
  1680. bottom: 0.007
  1681. }
  1682. },
  1683. },
  1684. [
  1685. {
  1686. name: "Megamacro",
  1687. height: math.unit(100, "miles"),
  1688. default: true
  1689. },
  1690. ]
  1691. ))
  1692. characterMakers.push(() => makeCharacter(
  1693. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1694. {
  1695. front: {
  1696. height: math.unit(7, "feet"),
  1697. weight: math.unit(100, "kg"),
  1698. name: "Front",
  1699. image: {
  1700. source: "./media/characters/manny/front.svg",
  1701. extra: 1,
  1702. bottom: 0.06
  1703. }
  1704. },
  1705. back: {
  1706. height: math.unit(7, "feet"),
  1707. weight: math.unit(100, "kg"),
  1708. name: "Back",
  1709. image: {
  1710. source: "./media/characters/manny/back.svg",
  1711. extra: 1,
  1712. bottom: 0.014
  1713. }
  1714. },
  1715. },
  1716. [
  1717. {
  1718. name: "Normal",
  1719. height: math.unit(7, "feet"),
  1720. },
  1721. {
  1722. name: "Macro",
  1723. height: math.unit(78, "feet"),
  1724. default: true
  1725. },
  1726. {
  1727. name: "Macro+",
  1728. height: math.unit(300, "meters")
  1729. },
  1730. {
  1731. name: "Macro++",
  1732. height: math.unit(2400, "meters")
  1733. },
  1734. {
  1735. name: "Megamacro",
  1736. height: math.unit(5167, "meters")
  1737. },
  1738. {
  1739. name: "Gigamacro",
  1740. height: math.unit(41769, "miles")
  1741. },
  1742. ]
  1743. ))
  1744. characterMakers.push(() => makeCharacter(
  1745. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1746. {
  1747. front: {
  1748. height: math.unit(7, "feet"),
  1749. weight: math.unit(100, "kg"),
  1750. name: "Front",
  1751. image: {
  1752. source: "./media/characters/adake/front-1.svg"
  1753. }
  1754. },
  1755. frontAlt: {
  1756. height: math.unit(7, "feet"),
  1757. weight: math.unit(100, "kg"),
  1758. name: "Front (Alt)",
  1759. image: {
  1760. source: "./media/characters/adake/front-2.svg",
  1761. extra: 1,
  1762. bottom: 0.01
  1763. }
  1764. },
  1765. back: {
  1766. height: math.unit(7, "feet"),
  1767. weight: math.unit(100, "kg"),
  1768. name: "Back",
  1769. image: {
  1770. source: "./media/characters/adake/back.svg",
  1771. }
  1772. },
  1773. kneel: {
  1774. height: math.unit(5.385, "feet"),
  1775. weight: math.unit(100, "kg"),
  1776. name: "Kneeling",
  1777. image: {
  1778. source: "./media/characters/adake/kneel.svg",
  1779. bottom: 0.052
  1780. }
  1781. },
  1782. },
  1783. [
  1784. {
  1785. name: "Normal",
  1786. height: math.unit(7, "feet"),
  1787. },
  1788. {
  1789. name: "Macro",
  1790. height: math.unit(78, "feet"),
  1791. default: true
  1792. },
  1793. {
  1794. name: "Macro+",
  1795. height: math.unit(300, "meters")
  1796. },
  1797. {
  1798. name: "Macro++",
  1799. height: math.unit(2400, "meters")
  1800. },
  1801. {
  1802. name: "Megamacro",
  1803. height: math.unit(5167, "meters")
  1804. },
  1805. {
  1806. name: "Gigamacro",
  1807. height: math.unit(41769, "miles")
  1808. },
  1809. ]
  1810. ))
  1811. characterMakers.push(() => makeCharacter(
  1812. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1813. {
  1814. front: {
  1815. height: math.unit(1.65, "meters"),
  1816. weight: math.unit(50, "kg"),
  1817. name: "Front",
  1818. image: {
  1819. source: "./media/characters/elijah/front.svg",
  1820. extra: 858 / 830,
  1821. bottom: 95.5 / 953.8559
  1822. }
  1823. },
  1824. back: {
  1825. height: math.unit(1.65, "meters"),
  1826. weight: math.unit(50, "kg"),
  1827. name: "Back",
  1828. image: {
  1829. source: "./media/characters/elijah/back.svg",
  1830. extra: 895 / 850,
  1831. bottom: 5.3 / 897.956
  1832. }
  1833. },
  1834. frontNsfw: {
  1835. height: math.unit(1.65, "meters"),
  1836. weight: math.unit(50, "kg"),
  1837. name: "Front (NSFW)",
  1838. image: {
  1839. source: "./media/characters/elijah/front-nsfw.svg",
  1840. extra: 858 / 830,
  1841. bottom: 95.5 / 953.8559
  1842. }
  1843. },
  1844. backNsfw: {
  1845. height: math.unit(1.65, "meters"),
  1846. weight: math.unit(50, "kg"),
  1847. name: "Back (NSFW)",
  1848. image: {
  1849. source: "./media/characters/elijah/back-nsfw.svg",
  1850. extra: 895 / 850,
  1851. bottom: 5.3 / 897.956
  1852. }
  1853. },
  1854. dick: {
  1855. height: math.unit(1, "feet"),
  1856. name: "Dick",
  1857. image: {
  1858. source: "./media/characters/elijah/dick.svg"
  1859. }
  1860. },
  1861. beakOpen: {
  1862. height: math.unit(1.25, "feet"),
  1863. name: "Beak (Open)",
  1864. image: {
  1865. source: "./media/characters/elijah/beak-open.svg"
  1866. }
  1867. },
  1868. beakShut: {
  1869. height: math.unit(1.25, "feet"),
  1870. name: "Beak (Shut)",
  1871. image: {
  1872. source: "./media/characters/elijah/beak-shut.svg"
  1873. }
  1874. },
  1875. footFlexing: {
  1876. height: math.unit(1.61, "feet"),
  1877. name: "Foot (Flexing)",
  1878. image: {
  1879. source: "./media/characters/elijah/foot-flexing.svg"
  1880. }
  1881. },
  1882. footStepping: {
  1883. height: math.unit(1.44, "feet"),
  1884. name: "Foot (Stepping)",
  1885. image: {
  1886. source: "./media/characters/elijah/foot-stepping.svg"
  1887. }
  1888. },
  1889. plantigradeLeg: {
  1890. height: math.unit(2.34, "feet"),
  1891. name: "Plantigrade Leg",
  1892. image: {
  1893. source: "./media/characters/elijah/plantigrade-leg.svg"
  1894. }
  1895. },
  1896. plantigradeFootLeft: {
  1897. height: math.unit(0.9, "feet"),
  1898. name: "Plantigrade Foot (Left)",
  1899. image: {
  1900. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1901. }
  1902. },
  1903. plantigradeFootRight: {
  1904. height: math.unit(0.9, "feet"),
  1905. name: "Plantigrade Foot (Right)",
  1906. image: {
  1907. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1908. }
  1909. },
  1910. },
  1911. [
  1912. {
  1913. name: "Normal",
  1914. height: math.unit(1.65, "meters")
  1915. },
  1916. {
  1917. name: "Macro",
  1918. height: math.unit(55, "meters"),
  1919. default: true
  1920. },
  1921. {
  1922. name: "Macro+",
  1923. height: math.unit(105, "meters")
  1924. },
  1925. ]
  1926. ))
  1927. characterMakers.push(() => makeCharacter(
  1928. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1929. {
  1930. front: {
  1931. height: math.unit(11, "feet"),
  1932. weight: math.unit(80, "kg"),
  1933. name: "Front",
  1934. image: {
  1935. source: "./media/characters/rai/front.svg",
  1936. extra: 1,
  1937. bottom: 0.03
  1938. }
  1939. },
  1940. side: {
  1941. height: math.unit(11, "feet"),
  1942. weight: math.unit(80, "kg"),
  1943. name: "Side",
  1944. image: {
  1945. source: "./media/characters/rai/side.svg"
  1946. }
  1947. },
  1948. back: {
  1949. height: math.unit(11, "feet"),
  1950. weight: math.unit(80, "lb"),
  1951. name: "Back",
  1952. image: {
  1953. source: "./media/characters/rai/back.svg",
  1954. extra: 1,
  1955. bottom: 0.01
  1956. }
  1957. },
  1958. feral: {
  1959. height: math.unit(11, "feet"),
  1960. weight: math.unit(800, "lb"),
  1961. name: "Feral",
  1962. image: {
  1963. source: "./media/characters/rai/feral.svg",
  1964. extra: 1050 / 659,
  1965. bottom: 0.07
  1966. }
  1967. },
  1968. dragon: {
  1969. height: math.unit(23, "feet"),
  1970. weight: math.unit(50000, "lb"),
  1971. name: "Dragon",
  1972. image: {
  1973. source: "./media/characters/rai/dragon.svg",
  1974. extra: 2498 / 2030,
  1975. bottom: 85.2 / 2584
  1976. }
  1977. },
  1978. maw: {
  1979. height: math.unit(6 / 3.81416, "feet"),
  1980. name: "Maw",
  1981. image: {
  1982. source: "./media/characters/rai/maw.svg"
  1983. }
  1984. },
  1985. },
  1986. [
  1987. {
  1988. name: "Normal",
  1989. height: math.unit(11, "feet")
  1990. },
  1991. {
  1992. name: "Macro",
  1993. height: math.unit(302, "feet"),
  1994. default: true
  1995. },
  1996. ]
  1997. ))
  1998. characterMakers.push(() => makeCharacter(
  1999. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2000. {
  2001. frontDressed: {
  2002. height: math.unit(216, "feet"),
  2003. weight: math.unit(7000000, "lb"),
  2004. name: "Front (Dressed)",
  2005. image: {
  2006. source: "./media/characters/jazzy/front-dressed.svg",
  2007. extra: 2738 / 2651,
  2008. bottom: 41.8 / 2786
  2009. }
  2010. },
  2011. backDressed: {
  2012. height: math.unit(216, "feet"),
  2013. weight: math.unit(7000000, "lb"),
  2014. name: "Back (Dressed)",
  2015. image: {
  2016. source: "./media/characters/jazzy/back-dressed.svg",
  2017. extra: 2775 / 2673,
  2018. bottom: 36.8 / 2817
  2019. }
  2020. },
  2021. front: {
  2022. height: math.unit(216, "feet"),
  2023. weight: math.unit(7000000, "lb"),
  2024. name: "Front",
  2025. image: {
  2026. source: "./media/characters/jazzy/front.svg",
  2027. extra: 2738 / 2651,
  2028. bottom: 41.8 / 2786
  2029. }
  2030. },
  2031. back: {
  2032. height: math.unit(216, "feet"),
  2033. weight: math.unit(7000000, "lb"),
  2034. name: "Back",
  2035. image: {
  2036. source: "./media/characters/jazzy/back.svg",
  2037. extra: 2775 / 2673,
  2038. bottom: 36.8 / 2817
  2039. }
  2040. },
  2041. maw: {
  2042. height: math.unit(20, "feet"),
  2043. name: "Maw",
  2044. image: {
  2045. source: "./media/characters/jazzy/maw.svg"
  2046. }
  2047. },
  2048. paws: {
  2049. height: math.unit(27.5, "feet"),
  2050. name: "Paws",
  2051. image: {
  2052. source: "./media/characters/jazzy/paws.svg"
  2053. }
  2054. },
  2055. eye: {
  2056. height: math.unit(4.4, "feet"),
  2057. name: "Eye",
  2058. image: {
  2059. source: "./media/characters/jazzy/eye.svg"
  2060. }
  2061. },
  2062. droneOffense: {
  2063. height: math.unit(9.5, "inches"),
  2064. name: "Drone (Offense)",
  2065. image: {
  2066. source: "./media/characters/jazzy/drone-offense.svg"
  2067. }
  2068. },
  2069. droneRecon: {
  2070. height: math.unit(9.5, "inches"),
  2071. name: "Drone (Recon)",
  2072. image: {
  2073. source: "./media/characters/jazzy/drone-recon.svg"
  2074. }
  2075. },
  2076. droneDefense: {
  2077. height: math.unit(9.5, "inches"),
  2078. name: "Drone (Defense)",
  2079. image: {
  2080. source: "./media/characters/jazzy/drone-defense.svg"
  2081. }
  2082. },
  2083. },
  2084. [
  2085. {
  2086. name: "Macro",
  2087. height: math.unit(216, "feet"),
  2088. default: true
  2089. },
  2090. ]
  2091. ))
  2092. characterMakers.push(() => makeCharacter(
  2093. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2094. {
  2095. front: {
  2096. height: math.unit(7, "feet"),
  2097. weight: math.unit(80, "kg"),
  2098. name: "Front",
  2099. image: {
  2100. source: "./media/characters/flamm/front.svg",
  2101. extra: 1794 / 1677,
  2102. bottom: 31.7 / 1828.5
  2103. }
  2104. },
  2105. },
  2106. [
  2107. {
  2108. name: "Normal",
  2109. height: math.unit(9.5, "feet")
  2110. },
  2111. {
  2112. name: "Macro",
  2113. height: math.unit(200, "feet"),
  2114. default: true
  2115. },
  2116. ]
  2117. ))
  2118. characterMakers.push(() => makeCharacter(
  2119. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2120. {
  2121. front: {
  2122. height: math.unit(7, "feet"),
  2123. weight: math.unit(80, "kg"),
  2124. name: "Front",
  2125. image: {
  2126. source: "./media/characters/zephiro/front.svg",
  2127. extra: 2309 / 2162,
  2128. bottom: 0.069
  2129. }
  2130. },
  2131. side: {
  2132. height: math.unit(7, "feet"),
  2133. weight: math.unit(80, "kg"),
  2134. name: "Side",
  2135. image: {
  2136. source: "./media/characters/zephiro/side.svg",
  2137. extra: 2403 / 2279,
  2138. bottom: 0.015
  2139. }
  2140. },
  2141. back: {
  2142. height: math.unit(7, "feet"),
  2143. weight: math.unit(80, "kg"),
  2144. name: "Back",
  2145. image: {
  2146. source: "./media/characters/zephiro/back.svg",
  2147. extra: 2373 / 2244,
  2148. bottom: 0.013
  2149. }
  2150. },
  2151. },
  2152. [
  2153. {
  2154. name: "Micro",
  2155. height: math.unit(3, "inches")
  2156. },
  2157. {
  2158. name: "Normal",
  2159. height: math.unit(5 + 3 / 12, "feet"),
  2160. default: true
  2161. },
  2162. {
  2163. name: "Macro",
  2164. height: math.unit(118, "feet")
  2165. },
  2166. ]
  2167. ))
  2168. characterMakers.push(() => makeCharacter(
  2169. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2170. {
  2171. front: {
  2172. height: math.unit(5, "feet"),
  2173. weight: math.unit(90, "kg"),
  2174. name: "Front",
  2175. image: {
  2176. source: "./media/characters/fory/front.svg",
  2177. extra: 2862 / 2674,
  2178. bottom: 180 / 3043.8
  2179. }
  2180. },
  2181. back: {
  2182. height: math.unit(5, "feet"),
  2183. weight: math.unit(90, "kg"),
  2184. name: "Back",
  2185. image: {
  2186. source: "./media/characters/fory/back.svg",
  2187. extra: 2962 / 2791,
  2188. bottom: 106 / 3071.8
  2189. }
  2190. },
  2191. foot: {
  2192. height: math.unit(2.14, "feet"),
  2193. name: "Foot",
  2194. image: {
  2195. source: "./media/characters/fory/foot.svg"
  2196. }
  2197. },
  2198. },
  2199. [
  2200. {
  2201. name: "Normal",
  2202. height: math.unit(5, "feet")
  2203. },
  2204. {
  2205. name: "Macro",
  2206. height: math.unit(50, "feet"),
  2207. default: true
  2208. },
  2209. {
  2210. name: "Megamacro",
  2211. height: math.unit(10, "miles")
  2212. },
  2213. {
  2214. name: "Gigamacro",
  2215. height: math.unit(5, "earths")
  2216. },
  2217. ]
  2218. ))
  2219. characterMakers.push(() => makeCharacter(
  2220. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2221. {
  2222. front: {
  2223. height: math.unit(7, "feet"),
  2224. weight: math.unit(90, "kg"),
  2225. name: "Front",
  2226. image: {
  2227. source: "./media/characters/kurrikage/front.svg",
  2228. extra: 1,
  2229. bottom: 0.035
  2230. }
  2231. },
  2232. back: {
  2233. height: math.unit(7, "feet"),
  2234. weight: math.unit(90, "lb"),
  2235. name: "Back",
  2236. image: {
  2237. source: "./media/characters/kurrikage/back.svg"
  2238. }
  2239. },
  2240. paw: {
  2241. height: math.unit(1.5, "feet"),
  2242. name: "Paw",
  2243. image: {
  2244. source: "./media/characters/kurrikage/paw.svg"
  2245. }
  2246. },
  2247. staff: {
  2248. height: math.unit(6.7, "feet"),
  2249. name: "Staff",
  2250. image: {
  2251. source: "./media/characters/kurrikage/staff.svg"
  2252. }
  2253. },
  2254. peek: {
  2255. height: math.unit(1.05, "feet"),
  2256. name: "Peeking",
  2257. image: {
  2258. source: "./media/characters/kurrikage/peek.svg",
  2259. bottom: 0.08
  2260. }
  2261. },
  2262. },
  2263. [
  2264. {
  2265. name: "Normal",
  2266. height: math.unit(12, "feet"),
  2267. default: true
  2268. },
  2269. {
  2270. name: "Big",
  2271. height: math.unit(20, "feet")
  2272. },
  2273. {
  2274. name: "Macro",
  2275. height: math.unit(500, "feet")
  2276. },
  2277. {
  2278. name: "Megamacro",
  2279. height: math.unit(20, "miles")
  2280. },
  2281. ]
  2282. ))
  2283. characterMakers.push(() => makeCharacter(
  2284. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2285. {
  2286. front: {
  2287. height: math.unit(6, "feet"),
  2288. weight: math.unit(75, "kg"),
  2289. name: "Front",
  2290. image: {
  2291. source: "./media/characters/shingo/front.svg",
  2292. extra: 3511 / 3338,
  2293. bottom: 0.005
  2294. }
  2295. },
  2296. paw: {
  2297. height: math.unit(1, "feet"),
  2298. name: "Paw",
  2299. image: {
  2300. source: "./media/characters/shingo/paw.svg"
  2301. }
  2302. },
  2303. },
  2304. [
  2305. {
  2306. name: "Micro",
  2307. height: math.unit(4, "inches")
  2308. },
  2309. {
  2310. name: "Normal",
  2311. height: math.unit(6, "feet"),
  2312. default: true
  2313. },
  2314. {
  2315. name: "Macro",
  2316. height: math.unit(108, "feet")
  2317. }
  2318. ]
  2319. ))
  2320. characterMakers.push(() => makeCharacter(
  2321. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2322. {
  2323. side: {
  2324. height: math.unit(6, "feet"),
  2325. weight: math.unit(75, "kg"),
  2326. name: "Side",
  2327. image: {
  2328. source: "./media/characters/aigey/side.svg"
  2329. }
  2330. },
  2331. },
  2332. [
  2333. {
  2334. name: "Macro",
  2335. height: math.unit(200, "feet"),
  2336. default: true
  2337. },
  2338. {
  2339. name: "Megamacro",
  2340. height: math.unit(100, "miles")
  2341. },
  2342. ]
  2343. )
  2344. )
  2345. characterMakers.push(() => makeCharacter(
  2346. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2347. {
  2348. front: {
  2349. height: math.unit(5 + 5 / 12, "feet"),
  2350. weight: math.unit(75, "kg"),
  2351. name: "Front",
  2352. image: {
  2353. source: "./media/characters/natasha/front.svg",
  2354. extra: 859 / 824,
  2355. bottom: 23 / 879.6
  2356. }
  2357. },
  2358. frontNsfw: {
  2359. height: math.unit(5 + 5 / 12, "feet"),
  2360. weight: math.unit(75, "kg"),
  2361. name: "Front (NSFW)",
  2362. image: {
  2363. source: "./media/characters/natasha/front-nsfw.svg",
  2364. extra: 859 / 824,
  2365. bottom: 23 / 879.6
  2366. }
  2367. },
  2368. frontErect: {
  2369. height: math.unit(5 + 5 / 12, "feet"),
  2370. weight: math.unit(75, "kg"),
  2371. name: "Front (Erect)",
  2372. image: {
  2373. source: "./media/characters/natasha/front-erect.svg",
  2374. extra: 859 / 824,
  2375. bottom: 23 / 879.6
  2376. }
  2377. },
  2378. back: {
  2379. height: math.unit(5 + 5 / 12, "feet"),
  2380. weight: math.unit(75, "kg"),
  2381. name: "Back",
  2382. image: {
  2383. source: "./media/characters/natasha/back.svg",
  2384. extra: 887.9 / 852.6,
  2385. bottom: 9.7 / 896.4
  2386. }
  2387. },
  2388. backAlt: {
  2389. height: math.unit(5 + 5 / 12, "feet"),
  2390. weight: math.unit(75, "kg"),
  2391. name: "Back (Alt)",
  2392. image: {
  2393. source: "./media/characters/natasha/back-alt.svg",
  2394. extra: 1236.7 / 1192,
  2395. bottom: 22.3 / 1258.2
  2396. }
  2397. },
  2398. dick: {
  2399. height: math.unit(1.772, "feet"),
  2400. name: "Dick",
  2401. image: {
  2402. source: "./media/characters/natasha/dick.svg"
  2403. }
  2404. },
  2405. paw: {
  2406. height: math.unit(0.250, "meters"),
  2407. name: "Paw",
  2408. image: {
  2409. source: "./media/characters/natasha/paw.svg"
  2410. }
  2411. },
  2412. },
  2413. [
  2414. {
  2415. name: "Normal",
  2416. height: math.unit(5 + 5 / 12, "feet")
  2417. },
  2418. {
  2419. name: "Large",
  2420. height: math.unit(12, "feet")
  2421. },
  2422. {
  2423. name: "Macro",
  2424. height: math.unit(100, "feet"),
  2425. default: true
  2426. },
  2427. {
  2428. name: "Macro+",
  2429. height: math.unit(260, "feet")
  2430. },
  2431. {
  2432. name: "Macro++",
  2433. height: math.unit(1, "mile")
  2434. },
  2435. ]
  2436. ))
  2437. characterMakers.push(() => makeCharacter(
  2438. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2439. {
  2440. front: {
  2441. height: math.unit(6, "feet"),
  2442. weight: math.unit(75, "kg"),
  2443. name: "Front",
  2444. image: {
  2445. source: "./media/characters/malik/front.svg"
  2446. }
  2447. },
  2448. side: {
  2449. height: math.unit(6, "feet"),
  2450. weight: math.unit(75, "kg"),
  2451. name: "Side",
  2452. image: {
  2453. source: "./media/characters/malik/side.svg",
  2454. extra: 1.1539
  2455. }
  2456. },
  2457. back: {
  2458. height: math.unit(6, "feet"),
  2459. weight: math.unit(75, "kg"),
  2460. name: "Back",
  2461. image: {
  2462. source: "./media/characters/malik/back.svg"
  2463. }
  2464. },
  2465. },
  2466. [
  2467. {
  2468. name: "Macro",
  2469. height: math.unit(156, "feet"),
  2470. default: true
  2471. },
  2472. {
  2473. name: "Macro+",
  2474. height: math.unit(1188, "feet")
  2475. },
  2476. ]
  2477. ))
  2478. characterMakers.push(() => makeCharacter(
  2479. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2480. {
  2481. front: {
  2482. height: math.unit(6, "feet"),
  2483. weight: math.unit(75, "kg"),
  2484. name: "Front",
  2485. image: {
  2486. source: "./media/characters/sefer/front.svg",
  2487. extra: 848 / 659,
  2488. bottom: 28.3 / 876.442
  2489. }
  2490. },
  2491. back: {
  2492. height: math.unit(6, "feet"),
  2493. weight: math.unit(75, "kg"),
  2494. name: "Back",
  2495. image: {
  2496. source: "./media/characters/sefer/back.svg",
  2497. extra: 864 / 695,
  2498. bottom: 10 / 871
  2499. }
  2500. },
  2501. frontDressed: {
  2502. height: math.unit(6, "feet"),
  2503. weight: math.unit(75, "kg"),
  2504. name: "Front (Dressed)",
  2505. image: {
  2506. source: "./media/characters/sefer/front-dressed.svg",
  2507. extra: 839 / 653,
  2508. bottom: 37.6 / 878
  2509. }
  2510. },
  2511. },
  2512. [
  2513. {
  2514. name: "Normal",
  2515. height: math.unit(6, "feet"),
  2516. default: true
  2517. },
  2518. ]
  2519. ))
  2520. characterMakers.push(() => makeCharacter(
  2521. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2522. {
  2523. body: {
  2524. height: math.unit(2.2428, "meter"),
  2525. weight: math.unit(124.738, "kg"),
  2526. name: "Body",
  2527. image: {
  2528. extra: 1225 / 1050,
  2529. source: "./media/characters/north/front.svg"
  2530. }
  2531. }
  2532. },
  2533. [
  2534. {
  2535. name: "Micro",
  2536. height: math.unit(4, "inches")
  2537. },
  2538. {
  2539. name: "Macro",
  2540. height: math.unit(63, "meters")
  2541. },
  2542. {
  2543. name: "Megamacro",
  2544. height: math.unit(101, "miles"),
  2545. default: true
  2546. }
  2547. ]
  2548. ))
  2549. characterMakers.push(() => makeCharacter(
  2550. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2551. {
  2552. angled: {
  2553. height: math.unit(4, "meter"),
  2554. weight: math.unit(150, "kg"),
  2555. name: "Angled",
  2556. image: {
  2557. source: "./media/characters/talan/angled-sfw.svg",
  2558. bottom: 29 / 3734
  2559. }
  2560. },
  2561. angledNsfw: {
  2562. height: math.unit(4, "meter"),
  2563. weight: math.unit(150, "kg"),
  2564. name: "Angled (NSFW)",
  2565. image: {
  2566. source: "./media/characters/talan/angled-nsfw.svg",
  2567. bottom: 29 / 3734
  2568. }
  2569. },
  2570. frontNsfw: {
  2571. height: math.unit(4, "meter"),
  2572. weight: math.unit(150, "kg"),
  2573. name: "Front (NSFW)",
  2574. image: {
  2575. source: "./media/characters/talan/front-nsfw.svg",
  2576. bottom: 29 / 3734
  2577. }
  2578. },
  2579. sideNsfw: {
  2580. height: math.unit(4, "meter"),
  2581. weight: math.unit(150, "kg"),
  2582. name: "Side (NSFW)",
  2583. image: {
  2584. source: "./media/characters/talan/side-nsfw.svg",
  2585. bottom: 29 / 3734
  2586. }
  2587. },
  2588. back: {
  2589. height: math.unit(4, "meter"),
  2590. weight: math.unit(150, "kg"),
  2591. name: "Back",
  2592. image: {
  2593. source: "./media/characters/talan/back.svg"
  2594. }
  2595. },
  2596. dickBottom: {
  2597. height: math.unit(0.621, "meter"),
  2598. name: "Dick (Bottom)",
  2599. image: {
  2600. source: "./media/characters/talan/dick-bottom.svg"
  2601. }
  2602. },
  2603. dickTop: {
  2604. height: math.unit(0.621, "meter"),
  2605. name: "Dick (Top)",
  2606. image: {
  2607. source: "./media/characters/talan/dick-top.svg"
  2608. }
  2609. },
  2610. dickSide: {
  2611. height: math.unit(0.305, "meter"),
  2612. name: "Dick (Side)",
  2613. image: {
  2614. source: "./media/characters/talan/dick-side.svg"
  2615. }
  2616. },
  2617. dickFront: {
  2618. height: math.unit(0.305, "meter"),
  2619. name: "Dick (Front)",
  2620. image: {
  2621. source: "./media/characters/talan/dick-front.svg"
  2622. }
  2623. },
  2624. },
  2625. [
  2626. {
  2627. name: "Normal",
  2628. height: math.unit(4, "meters")
  2629. },
  2630. {
  2631. name: "Macro",
  2632. height: math.unit(100, "meters")
  2633. },
  2634. {
  2635. name: "Megamacro",
  2636. height: math.unit(2, "miles"),
  2637. default: true
  2638. },
  2639. {
  2640. name: "Gigamacro",
  2641. height: math.unit(5000, "miles")
  2642. },
  2643. {
  2644. name: "Teramacro",
  2645. height: math.unit(100, "parsecs")
  2646. }
  2647. ]
  2648. ))
  2649. characterMakers.push(() => makeCharacter(
  2650. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2651. {
  2652. front: {
  2653. height: math.unit(2, "meter"),
  2654. weight: math.unit(90, "kg"),
  2655. name: "Front",
  2656. image: {
  2657. source: "./media/characters/gael'rathus/front.svg"
  2658. }
  2659. },
  2660. frontAlt: {
  2661. height: math.unit(2, "meter"),
  2662. weight: math.unit(90, "kg"),
  2663. name: "Front (alt)",
  2664. image: {
  2665. source: "./media/characters/gael'rathus/front-alt.svg"
  2666. }
  2667. },
  2668. frontAlt2: {
  2669. height: math.unit(2, "meter"),
  2670. weight: math.unit(90, "kg"),
  2671. name: "Front (alt 2)",
  2672. image: {
  2673. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2674. }
  2675. }
  2676. },
  2677. [
  2678. {
  2679. name: "Normal",
  2680. height: math.unit(9, "feet"),
  2681. default: true
  2682. },
  2683. {
  2684. name: "Large",
  2685. height: math.unit(25, "feet")
  2686. },
  2687. {
  2688. name: "Macro",
  2689. height: math.unit(0.25, "miles")
  2690. },
  2691. {
  2692. name: "Megamacro",
  2693. height: math.unit(10, "miles")
  2694. }
  2695. ]
  2696. ))
  2697. characterMakers.push(() => makeCharacter(
  2698. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2699. {
  2700. side: {
  2701. height: math.unit(2, "meter"),
  2702. weight: math.unit(140, "kg"),
  2703. name: "Side",
  2704. image: {
  2705. source: "./media/characters/sosha/side.svg",
  2706. bottom: 0.042
  2707. }
  2708. },
  2709. },
  2710. [
  2711. {
  2712. name: "Normal",
  2713. height: math.unit(12, "feet"),
  2714. default: true
  2715. }
  2716. ]
  2717. ))
  2718. characterMakers.push(() => makeCharacter(
  2719. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2720. {
  2721. side: {
  2722. height: math.unit(5 + 5 / 12, "feet"),
  2723. weight: math.unit(170, "kg"),
  2724. name: "Side",
  2725. image: {
  2726. source: "./media/characters/runnola/side.svg",
  2727. extra: 741 / 448,
  2728. bottom: 0.05
  2729. }
  2730. },
  2731. },
  2732. [
  2733. {
  2734. name: "Small",
  2735. height: math.unit(3, "feet")
  2736. },
  2737. {
  2738. name: "Normal",
  2739. height: math.unit(5 + 5 / 12, "feet"),
  2740. default: true
  2741. },
  2742. {
  2743. name: "Big",
  2744. height: math.unit(10, "feet")
  2745. },
  2746. ]
  2747. ))
  2748. characterMakers.push(() => makeCharacter(
  2749. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2750. {
  2751. front: {
  2752. height: math.unit(2, "meter"),
  2753. weight: math.unit(50, "kg"),
  2754. name: "Front",
  2755. image: {
  2756. source: "./media/characters/kurribird/front.svg",
  2757. bottom: 0.015
  2758. }
  2759. },
  2760. frontAlt: {
  2761. height: math.unit(1.5, "meter"),
  2762. weight: math.unit(50, "kg"),
  2763. name: "Front (Alt)",
  2764. image: {
  2765. source: "./media/characters/kurribird/front-alt.svg",
  2766. extra: 1.45
  2767. }
  2768. },
  2769. },
  2770. [
  2771. {
  2772. name: "Normal",
  2773. height: math.unit(7, "feet")
  2774. },
  2775. {
  2776. name: "Big",
  2777. height: math.unit(12, "feet"),
  2778. default: true
  2779. },
  2780. {
  2781. name: "Macro",
  2782. height: math.unit(1500, "feet")
  2783. },
  2784. {
  2785. name: "Megamacro",
  2786. height: math.unit(2, "miles")
  2787. }
  2788. ]
  2789. ))
  2790. characterMakers.push(() => makeCharacter(
  2791. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2792. {
  2793. front: {
  2794. height: math.unit(2, "meter"),
  2795. weight: math.unit(80, "kg"),
  2796. name: "Front",
  2797. image: {
  2798. source: "./media/characters/elbial/front.svg",
  2799. extra: 1643 / 1556,
  2800. bottom: 60.2 / 1696
  2801. }
  2802. },
  2803. side: {
  2804. height: math.unit(2, "meter"),
  2805. weight: math.unit(80, "kg"),
  2806. name: "Side",
  2807. image: {
  2808. source: "./media/characters/elbial/side.svg",
  2809. extra: 1630 / 1565,
  2810. bottom: 71.5 / 1697
  2811. }
  2812. },
  2813. back: {
  2814. height: math.unit(2, "meter"),
  2815. weight: math.unit(80, "kg"),
  2816. name: "Back",
  2817. image: {
  2818. source: "./media/characters/elbial/back.svg",
  2819. extra: 1668 / 1595,
  2820. bottom: 5.6 / 1672
  2821. }
  2822. },
  2823. frontDressed: {
  2824. height: math.unit(2, "meter"),
  2825. weight: math.unit(80, "kg"),
  2826. name: "Front (Dressed)",
  2827. image: {
  2828. source: "./media/characters/elbial/front-dressed.svg",
  2829. extra: 1653 / 1584,
  2830. bottom: 57 / 1708
  2831. }
  2832. },
  2833. genitals: {
  2834. height: math.unit(2 / 3.367, "meter"),
  2835. name: "Genitals",
  2836. image: {
  2837. source: "./media/characters/elbial/genitals.svg"
  2838. }
  2839. },
  2840. },
  2841. [
  2842. {
  2843. name: "Large",
  2844. height: math.unit(100, "feet")
  2845. },
  2846. {
  2847. name: "Macro",
  2848. height: math.unit(500, "feet"),
  2849. default: true
  2850. },
  2851. {
  2852. name: "Megamacro",
  2853. height: math.unit(10, "miles")
  2854. },
  2855. {
  2856. name: "Gigamacro",
  2857. height: math.unit(25000, "miles")
  2858. },
  2859. {
  2860. name: "Full-Size",
  2861. height: math.unit(8000000, "gigaparsecs")
  2862. }
  2863. ]
  2864. ))
  2865. characterMakers.push(() => makeCharacter(
  2866. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2867. {
  2868. front: {
  2869. height: math.unit(2, "meter"),
  2870. weight: math.unit(60, "kg"),
  2871. name: "Front",
  2872. image: {
  2873. source: "./media/characters/noah/front.svg"
  2874. }
  2875. },
  2876. talons: {
  2877. height: math.unit(0.315, "meter"),
  2878. name: "Talons",
  2879. image: {
  2880. source: "./media/characters/noah/talons.svg"
  2881. }
  2882. }
  2883. },
  2884. [
  2885. {
  2886. name: "Large",
  2887. height: math.unit(50, "feet")
  2888. },
  2889. {
  2890. name: "Macro",
  2891. height: math.unit(750, "feet"),
  2892. default: true
  2893. },
  2894. {
  2895. name: "Megamacro",
  2896. height: math.unit(50, "miles")
  2897. },
  2898. {
  2899. name: "Gigamacro",
  2900. height: math.unit(100000, "miles")
  2901. },
  2902. {
  2903. name: "Full-Size",
  2904. height: math.unit(3000000000, "miles")
  2905. }
  2906. ]
  2907. ))
  2908. characterMakers.push(() => makeCharacter(
  2909. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2910. {
  2911. front: {
  2912. height: math.unit(2, "meter"),
  2913. weight: math.unit(80, "kg"),
  2914. name: "Front",
  2915. image: {
  2916. source: "./media/characters/natalya/front.svg"
  2917. }
  2918. },
  2919. back: {
  2920. height: math.unit(2, "meter"),
  2921. weight: math.unit(80, "kg"),
  2922. name: "Back",
  2923. image: {
  2924. source: "./media/characters/natalya/back.svg"
  2925. }
  2926. }
  2927. },
  2928. [
  2929. {
  2930. name: "Normal",
  2931. height: math.unit(150, "feet"),
  2932. default: true
  2933. },
  2934. {
  2935. name: "Megamacro",
  2936. height: math.unit(5, "miles")
  2937. },
  2938. {
  2939. name: "Full-Size",
  2940. height: math.unit(600, "kiloparsecs")
  2941. }
  2942. ]
  2943. ))
  2944. characterMakers.push(() => makeCharacter(
  2945. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2946. {
  2947. front: {
  2948. height: math.unit(2, "meter"),
  2949. weight: math.unit(50, "kg"),
  2950. name: "Front",
  2951. image: {
  2952. source: "./media/characters/erestrebah/front.svg",
  2953. extra: 208 / 193,
  2954. bottom: 0.055
  2955. }
  2956. },
  2957. back: {
  2958. height: math.unit(2, "meter"),
  2959. weight: math.unit(50, "kg"),
  2960. name: "Back",
  2961. image: {
  2962. source: "./media/characters/erestrebah/back.svg",
  2963. extra: 1.3
  2964. }
  2965. }
  2966. },
  2967. [
  2968. {
  2969. name: "Normal",
  2970. height: math.unit(10, "feet")
  2971. },
  2972. {
  2973. name: "Large",
  2974. height: math.unit(50, "feet"),
  2975. default: true
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(300, "feet")
  2980. },
  2981. {
  2982. name: "Macro+",
  2983. height: math.unit(750, "feet")
  2984. },
  2985. {
  2986. name: "Megamacro",
  2987. height: math.unit(3, "miles")
  2988. }
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2993. {
  2994. front: {
  2995. height: math.unit(2, "meter"),
  2996. weight: math.unit(80, "kg"),
  2997. name: "Front",
  2998. image: {
  2999. source: "./media/characters/jennifer/front.svg",
  3000. bottom: 0.11,
  3001. extra: 1.16
  3002. }
  3003. },
  3004. frontAlt: {
  3005. height: math.unit(2, "meter"),
  3006. weight: math.unit(80, "kg"),
  3007. name: "Front (Alt)",
  3008. image: {
  3009. source: "./media/characters/jennifer/front-alt.svg"
  3010. }
  3011. }
  3012. },
  3013. [
  3014. {
  3015. name: "Canon Height",
  3016. height: math.unit(120, "feet"),
  3017. default: true
  3018. },
  3019. {
  3020. name: "Macro+",
  3021. height: math.unit(300, "feet")
  3022. },
  3023. {
  3024. name: "Megamacro",
  3025. height: math.unit(20000, "feet")
  3026. }
  3027. ]
  3028. ))
  3029. characterMakers.push(() => makeCharacter(
  3030. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3031. {
  3032. front: {
  3033. height: math.unit(2, "meter"),
  3034. weight: math.unit(50, "kg"),
  3035. name: "Front",
  3036. image: {
  3037. source: "./media/characters/kalista/front.svg",
  3038. extra: 1947 / 1700,
  3039. bottom: 76.6 / 1412.98
  3040. }
  3041. },
  3042. back: {
  3043. height: math.unit(2, "meter"),
  3044. weight: math.unit(50, "kg"),
  3045. name: "Back",
  3046. image: {
  3047. source: "./media/characters/kalista/back.svg",
  3048. extra: 1366 / 1156,
  3049. bottom: 33.9 / 1362.78
  3050. }
  3051. }
  3052. },
  3053. [
  3054. {
  3055. name: "Uncomfortably Small",
  3056. height: math.unit(10, "feet")
  3057. },
  3058. {
  3059. name: "Small",
  3060. height: math.unit(30, "feet")
  3061. },
  3062. {
  3063. name: "Macro",
  3064. height: math.unit(100, "feet"),
  3065. default: true
  3066. },
  3067. {
  3068. name: "Macro+",
  3069. height: math.unit(2000, "feet")
  3070. },
  3071. {
  3072. name: "True Form",
  3073. height: math.unit(8924, "miles")
  3074. }
  3075. ]
  3076. ))
  3077. characterMakers.push(() => makeCharacter(
  3078. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3079. {
  3080. front: {
  3081. height: math.unit(2, "meter"),
  3082. weight: math.unit(120, "kg"),
  3083. name: "Front",
  3084. image: {
  3085. source: "./media/characters/ggv/front.svg"
  3086. }
  3087. },
  3088. side: {
  3089. height: math.unit(2, "meter"),
  3090. weight: math.unit(120, "kg"),
  3091. name: "Side",
  3092. image: {
  3093. source: "./media/characters/ggv/side.svg"
  3094. }
  3095. }
  3096. },
  3097. [
  3098. {
  3099. name: "Extremely Puny",
  3100. height: math.unit(9 + 5 / 12, "feet")
  3101. },
  3102. {
  3103. name: "Horribly Small",
  3104. height: math.unit(47.7, "miles"),
  3105. default: true
  3106. },
  3107. {
  3108. name: "Reasonably Sized",
  3109. height: math.unit(25000, "parsecs")
  3110. },
  3111. {
  3112. name: "Slightly Uncompressed",
  3113. height: math.unit(7.77e31, "parsecs")
  3114. },
  3115. {
  3116. name: "Omniversal",
  3117. height: math.unit(1e300, "meters")
  3118. },
  3119. ]
  3120. ))
  3121. characterMakers.push(() => makeCharacter(
  3122. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3123. {
  3124. front: {
  3125. height: math.unit(2, "meter"),
  3126. weight: math.unit(75, "lb"),
  3127. name: "Front",
  3128. image: {
  3129. source: "./media/characters/napalm/front.svg"
  3130. }
  3131. },
  3132. back: {
  3133. height: math.unit(2, "meter"),
  3134. weight: math.unit(75, "lb"),
  3135. name: "Back",
  3136. image: {
  3137. source: "./media/characters/napalm/back.svg"
  3138. }
  3139. }
  3140. },
  3141. [
  3142. {
  3143. name: "Standard",
  3144. height: math.unit(55, "feet"),
  3145. default: true
  3146. }
  3147. ]
  3148. ))
  3149. characterMakers.push(() => makeCharacter(
  3150. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3151. {
  3152. front: {
  3153. height: math.unit(7 + 5 / 6, "feet"),
  3154. weight: math.unit(325, "lb"),
  3155. name: "Front",
  3156. image: {
  3157. source: "./media/characters/asana/front.svg",
  3158. extra: 1133 / 1060,
  3159. bottom: 15.2 / 1148.6
  3160. }
  3161. },
  3162. back: {
  3163. height: math.unit(7 + 5 / 6, "feet"),
  3164. weight: math.unit(325, "lb"),
  3165. name: "Back",
  3166. image: {
  3167. source: "./media/characters/asana/back.svg",
  3168. extra: 1114 / 1043,
  3169. bottom: 5 / 1120
  3170. }
  3171. },
  3172. dressedDark: {
  3173. height: math.unit(7 + 5 / 6, "feet"),
  3174. weight: math.unit(325, "lb"),
  3175. name: "Dressed (Dark)",
  3176. image: {
  3177. source: "./media/characters/asana/dressed-dark.svg",
  3178. extra: 1133 / 1060,
  3179. bottom: 15.2 / 1148.6
  3180. }
  3181. },
  3182. dressedLight: {
  3183. height: math.unit(7 + 5 / 6, "feet"),
  3184. weight: math.unit(325, "lb"),
  3185. name: "Dressed (Light)",
  3186. image: {
  3187. source: "./media/characters/asana/dressed-light.svg",
  3188. extra: 1133 / 1060,
  3189. bottom: 15.2 / 1148.6
  3190. }
  3191. },
  3192. },
  3193. [
  3194. {
  3195. name: "Standard",
  3196. height: math.unit(7 + 5 / 6, "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Large",
  3201. height: math.unit(10, "meters")
  3202. },
  3203. {
  3204. name: "Macro",
  3205. height: math.unit(2500, "meters")
  3206. },
  3207. {
  3208. name: "Megamacro",
  3209. height: math.unit(5e6, "meters")
  3210. },
  3211. {
  3212. name: "Examacro",
  3213. height: math.unit(5e12, "lightyears")
  3214. },
  3215. {
  3216. name: "Max Size",
  3217. height: math.unit(1e31, "lightyears")
  3218. }
  3219. ]
  3220. ))
  3221. characterMakers.push(() => makeCharacter(
  3222. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3223. {
  3224. front: {
  3225. height: math.unit(2, "meter"),
  3226. weight: math.unit(60, "kg"),
  3227. name: "Front",
  3228. image: {
  3229. source: "./media/characters/ebony/front.svg",
  3230. bottom: 0.03,
  3231. extra: 1045 / 810 + 0.03
  3232. }
  3233. },
  3234. side: {
  3235. height: math.unit(2, "meter"),
  3236. weight: math.unit(60, "kg"),
  3237. name: "Side",
  3238. image: {
  3239. source: "./media/characters/ebony/side.svg",
  3240. bottom: 0.03,
  3241. extra: 1045 / 810 + 0.03
  3242. }
  3243. },
  3244. back: {
  3245. height: math.unit(2, "meter"),
  3246. weight: math.unit(60, "kg"),
  3247. name: "Back",
  3248. image: {
  3249. source: "./media/characters/ebony/back.svg",
  3250. bottom: 0.01,
  3251. extra: 1045 / 810 + 0.01
  3252. }
  3253. },
  3254. },
  3255. [
  3256. // TODO check why I did this lol
  3257. {
  3258. name: "Standard",
  3259. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3260. default: true
  3261. },
  3262. {
  3263. name: "Macro",
  3264. height: math.unit(200, "feet")
  3265. },
  3266. {
  3267. name: "Gigamacro",
  3268. height: math.unit(13000, "km")
  3269. }
  3270. ]
  3271. ))
  3272. characterMakers.push(() => makeCharacter(
  3273. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3274. {
  3275. front: {
  3276. height: math.unit(6, "feet"),
  3277. weight: math.unit(175, "lb"),
  3278. name: "Front",
  3279. image: {
  3280. source: "./media/characters/mountain/front.svg",
  3281. extra: 972 / 955,
  3282. bottom: 64 / 1036.6
  3283. }
  3284. },
  3285. back: {
  3286. height: math.unit(6, "feet"),
  3287. weight: math.unit(175, "lb"),
  3288. name: "Back",
  3289. image: {
  3290. source: "./media/characters/mountain/back.svg",
  3291. extra: 970 / 950,
  3292. bottom: 28.25 / 999
  3293. }
  3294. },
  3295. },
  3296. [
  3297. {
  3298. name: "Large",
  3299. height: math.unit(20, "meters")
  3300. },
  3301. {
  3302. name: "Macro",
  3303. height: math.unit(300, "meters")
  3304. },
  3305. {
  3306. name: "Gigamacro",
  3307. height: math.unit(10000, "km"),
  3308. default: true
  3309. },
  3310. {
  3311. name: "Examacro",
  3312. height: math.unit(10e9, "lightyears")
  3313. }
  3314. ]
  3315. ))
  3316. characterMakers.push(() => makeCharacter(
  3317. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3318. {
  3319. front: {
  3320. height: math.unit(8, "feet"),
  3321. weight: math.unit(500, "lb"),
  3322. name: "Front",
  3323. image: {
  3324. source: "./media/characters/rick/front.svg"
  3325. }
  3326. }
  3327. },
  3328. [
  3329. {
  3330. name: "Normal",
  3331. height: math.unit(8, "feet"),
  3332. default: true
  3333. },
  3334. {
  3335. name: "Macro",
  3336. height: math.unit(5, "km")
  3337. }
  3338. ]
  3339. ))
  3340. characterMakers.push(() => makeCharacter(
  3341. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3342. {
  3343. front: {
  3344. height: math.unit(8, "feet"),
  3345. weight: math.unit(120, "lb"),
  3346. name: "Front",
  3347. image: {
  3348. source: "./media/characters/ona/front.svg"
  3349. }
  3350. },
  3351. frontAlt: {
  3352. height: math.unit(8, "feet"),
  3353. weight: math.unit(120, "lb"),
  3354. name: "Front (Alt)",
  3355. image: {
  3356. source: "./media/characters/ona/front-alt.svg"
  3357. }
  3358. },
  3359. back: {
  3360. height: math.unit(8, "feet"),
  3361. weight: math.unit(120, "lb"),
  3362. name: "Back",
  3363. image: {
  3364. source: "./media/characters/ona/back.svg"
  3365. }
  3366. },
  3367. foot: {
  3368. height: math.unit(1.1, "feet"),
  3369. name: "Foot",
  3370. image: {
  3371. source: "./media/characters/ona/foot.svg"
  3372. }
  3373. }
  3374. },
  3375. [
  3376. {
  3377. name: "Megamacro",
  3378. height: math.unit(70, "km"),
  3379. default: true
  3380. },
  3381. {
  3382. name: "Gigamacro",
  3383. height: math.unit(681818, "miles")
  3384. },
  3385. {
  3386. name: "Examacro",
  3387. height: math.unit(3800000, "lightyears")
  3388. },
  3389. ]
  3390. ))
  3391. characterMakers.push(() => makeCharacter(
  3392. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3393. {
  3394. front: {
  3395. height: math.unit(12, "feet"),
  3396. weight: math.unit(3000, "lb"),
  3397. name: "Front",
  3398. image: {
  3399. source: "./media/characters/mech/front.svg",
  3400. bottom: 0.025,
  3401. }
  3402. },
  3403. back: {
  3404. height: math.unit(12, "feet"),
  3405. weight: math.unit(3000, "lb"),
  3406. name: "Back",
  3407. image: {
  3408. source: "./media/characters/mech/back.svg",
  3409. bottom: 0.03,
  3410. }
  3411. }
  3412. },
  3413. [
  3414. {
  3415. name: "Normal",
  3416. height: math.unit(12, "feet")
  3417. },
  3418. {
  3419. name: "Macro",
  3420. height: math.unit(300, "feet"),
  3421. default: true
  3422. },
  3423. {
  3424. name: "Macro+",
  3425. height: math.unit(1500, "feet")
  3426. },
  3427. ]
  3428. ))
  3429. characterMakers.push(() => makeCharacter(
  3430. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3431. {
  3432. front: {
  3433. height: math.unit(1.3, "meter"),
  3434. weight: math.unit(30, "kg"),
  3435. name: "Front",
  3436. image: {
  3437. source: "./media/characters/gregory/front.svg",
  3438. }
  3439. }
  3440. },
  3441. [
  3442. {
  3443. name: "Normal",
  3444. height: math.unit(1.3, "meter"),
  3445. default: true
  3446. },
  3447. {
  3448. name: "Macro",
  3449. height: math.unit(20, "meter")
  3450. }
  3451. ]
  3452. ))
  3453. characterMakers.push(() => makeCharacter(
  3454. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3455. {
  3456. front: {
  3457. height: math.unit(2.8, "meter"),
  3458. weight: math.unit(200, "kg"),
  3459. name: "Front",
  3460. image: {
  3461. source: "./media/characters/elory/front.svg",
  3462. }
  3463. }
  3464. },
  3465. [
  3466. {
  3467. name: "Normal",
  3468. height: math.unit(2.8, "meter"),
  3469. default: true
  3470. },
  3471. {
  3472. name: "Macro",
  3473. height: math.unit(38, "meter")
  3474. }
  3475. ]
  3476. ))
  3477. characterMakers.push(() => makeCharacter(
  3478. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3479. {
  3480. front: {
  3481. height: math.unit(470, "feet"),
  3482. weight: math.unit(924, "tons"),
  3483. name: "Front",
  3484. image: {
  3485. source: "./media/characters/angelpatamon/front.svg",
  3486. }
  3487. }
  3488. },
  3489. [
  3490. {
  3491. name: "Normal",
  3492. height: math.unit(470, "feet"),
  3493. default: true
  3494. },
  3495. {
  3496. name: "Deity Size I",
  3497. height: math.unit(28651.2, "km")
  3498. },
  3499. {
  3500. name: "Deity Size II",
  3501. height: math.unit(171907.2, "km")
  3502. }
  3503. ]
  3504. ))
  3505. characterMakers.push(() => makeCharacter(
  3506. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3507. {
  3508. side: {
  3509. height: math.unit(7.2, "meter"),
  3510. weight: math.unit(8.2, "tons"),
  3511. name: "Side",
  3512. image: {
  3513. source: "./media/characters/cryae/side.svg",
  3514. extra: 3500 / 1500
  3515. }
  3516. }
  3517. },
  3518. [
  3519. {
  3520. name: "Normal",
  3521. height: math.unit(7.2, "meter"),
  3522. default: true
  3523. }
  3524. ]
  3525. ))
  3526. characterMakers.push(() => makeCharacter(
  3527. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3528. {
  3529. front: {
  3530. height: math.unit(6, "feet"),
  3531. weight: math.unit(175, "lb"),
  3532. name: "Front",
  3533. image: {
  3534. source: "./media/characters/xera/front.svg",
  3535. extra: 2377 / 1972,
  3536. bottom: 75.5 / 2452
  3537. }
  3538. },
  3539. side: {
  3540. height: math.unit(6, "feet"),
  3541. weight: math.unit(175, "lb"),
  3542. name: "Side",
  3543. image: {
  3544. source: "./media/characters/xera/side.svg",
  3545. extra: 2345 / 2019,
  3546. bottom: 39.7 / 2384
  3547. }
  3548. },
  3549. back: {
  3550. height: math.unit(6, "feet"),
  3551. weight: math.unit(175, "lb"),
  3552. name: "Back",
  3553. image: {
  3554. source: "./media/characters/xera/back.svg",
  3555. extra: 2095 / 1984,
  3556. bottom: 67 / 2166
  3557. }
  3558. },
  3559. },
  3560. [
  3561. {
  3562. name: "Small",
  3563. height: math.unit(10, "feet")
  3564. },
  3565. {
  3566. name: "Macro",
  3567. height: math.unit(500, "meters"),
  3568. default: true
  3569. },
  3570. {
  3571. name: "Macro+",
  3572. height: math.unit(10, "km")
  3573. },
  3574. {
  3575. name: "Gigamacro",
  3576. height: math.unit(25000, "km")
  3577. },
  3578. {
  3579. name: "Teramacro",
  3580. height: math.unit(3e6, "km")
  3581. }
  3582. ]
  3583. ))
  3584. characterMakers.push(() => makeCharacter(
  3585. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3586. {
  3587. front: {
  3588. height: math.unit(6, "feet"),
  3589. weight: math.unit(175, "lb"),
  3590. name: "Front",
  3591. image: {
  3592. source: "./media/characters/nebula/front.svg",
  3593. extra: 2566 / 2362,
  3594. bottom: 81 / 2644
  3595. }
  3596. }
  3597. },
  3598. [
  3599. {
  3600. name: "Small",
  3601. height: math.unit(4.5, "meters")
  3602. },
  3603. {
  3604. name: "Macro",
  3605. height: math.unit(1500, "meters"),
  3606. default: true
  3607. },
  3608. {
  3609. name: "Megamacro",
  3610. height: math.unit(150, "km")
  3611. },
  3612. {
  3613. name: "Gigamacro",
  3614. height: math.unit(27000, "km")
  3615. }
  3616. ]
  3617. ))
  3618. characterMakers.push(() => makeCharacter(
  3619. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3620. {
  3621. front: {
  3622. height: math.unit(6, "feet"),
  3623. weight: math.unit(225, "lb"),
  3624. name: "Front",
  3625. image: {
  3626. source: "./media/characters/abysgar/front.svg"
  3627. }
  3628. }
  3629. },
  3630. [
  3631. {
  3632. name: "Small",
  3633. height: math.unit(4.5, "meters")
  3634. },
  3635. {
  3636. name: "Macro",
  3637. height: math.unit(1250, "meters"),
  3638. default: true
  3639. },
  3640. {
  3641. name: "Megamacro",
  3642. height: math.unit(125, "km")
  3643. },
  3644. {
  3645. name: "Gigamacro",
  3646. height: math.unit(26000, "km")
  3647. }
  3648. ]
  3649. ))
  3650. characterMakers.push(() => makeCharacter(
  3651. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3652. {
  3653. front: {
  3654. height: math.unit(6, "feet"),
  3655. weight: math.unit(180, "lb"),
  3656. name: "Front",
  3657. image: {
  3658. source: "./media/characters/yakuz/front.svg"
  3659. }
  3660. }
  3661. },
  3662. [
  3663. {
  3664. name: "Small",
  3665. height: math.unit(5, "meters")
  3666. },
  3667. {
  3668. name: "Macro",
  3669. height: math.unit(1500, "meters"),
  3670. default: true
  3671. },
  3672. {
  3673. name: "Megamacro",
  3674. height: math.unit(200, "km")
  3675. },
  3676. {
  3677. name: "Gigamacro",
  3678. height: math.unit(100000, "km")
  3679. }
  3680. ]
  3681. ))
  3682. characterMakers.push(() => makeCharacter(
  3683. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3684. {
  3685. front: {
  3686. height: math.unit(6, "feet"),
  3687. weight: math.unit(175, "lb"),
  3688. name: "Front",
  3689. image: {
  3690. source: "./media/characters/mirova/front.svg",
  3691. extra: 3334 / 3071,
  3692. bottom: 42 / 3375.6
  3693. }
  3694. }
  3695. },
  3696. [
  3697. {
  3698. name: "Small",
  3699. height: math.unit(5, "meters")
  3700. },
  3701. {
  3702. name: "Macro",
  3703. height: math.unit(900, "meters"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Megamacro",
  3708. height: math.unit(135, "km")
  3709. },
  3710. {
  3711. name: "Gigamacro",
  3712. height: math.unit(20000, "km")
  3713. }
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3718. {
  3719. side: {
  3720. height: math.unit(28.35, "feet"),
  3721. weight: math.unit(99.75, "tons"),
  3722. name: "Side",
  3723. image: {
  3724. source: "./media/characters/asana-mech/side.svg",
  3725. extra: 923 / 699,
  3726. bottom: 50 / 975
  3727. }
  3728. },
  3729. chaingun: {
  3730. height: math.unit(7, "feet"),
  3731. weight: math.unit(2400, "lb"),
  3732. name: "Chaingun",
  3733. image: {
  3734. source: "./media/characters/asana-mech/chaingun.svg"
  3735. }
  3736. },
  3737. laser: {
  3738. height: math.unit(7.12, "feet"),
  3739. weight: math.unit(2000, "lb"),
  3740. name: "Laser",
  3741. image: {
  3742. source: "./media/characters/asana-mech/laser.svg"
  3743. }
  3744. },
  3745. },
  3746. [
  3747. {
  3748. name: "Normal",
  3749. height: math.unit(28.35, "feet"),
  3750. default: true
  3751. },
  3752. {
  3753. name: "Macro",
  3754. height: math.unit(2500, "feet")
  3755. },
  3756. {
  3757. name: "Megamacro",
  3758. height: math.unit(25, "miles")
  3759. },
  3760. {
  3761. name: "Examacro",
  3762. height: math.unit(6e8, "lightyears")
  3763. },
  3764. ]
  3765. ))
  3766. characterMakers.push(() => makeCharacter(
  3767. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3768. {
  3769. front: {
  3770. height: math.unit(5, "meters"),
  3771. weight: math.unit(1000, "kg"),
  3772. name: "Front",
  3773. image: {
  3774. source: "./media/characters/asche/front.svg",
  3775. extra: 1258 / 1190,
  3776. bottom: 47 / 1305
  3777. }
  3778. },
  3779. frontUnderwear: {
  3780. height: math.unit(5, "meters"),
  3781. weight: math.unit(1000, "kg"),
  3782. name: "Front (Underwear)",
  3783. image: {
  3784. source: "./media/characters/asche/front-underwear.svg",
  3785. extra: 1258 / 1190,
  3786. bottom: 47 / 1305
  3787. }
  3788. },
  3789. frontDressed: {
  3790. height: math.unit(5, "meters"),
  3791. weight: math.unit(1000, "kg"),
  3792. name: "Front (Dressed)",
  3793. image: {
  3794. source: "./media/characters/asche/front-dressed.svg",
  3795. extra: 1258 / 1190,
  3796. bottom: 47 / 1305
  3797. }
  3798. },
  3799. frontArmor: {
  3800. height: math.unit(5, "meters"),
  3801. weight: math.unit(1000, "kg"),
  3802. name: "Front (Armored)",
  3803. image: {
  3804. source: "./media/characters/asche/front-armored.svg",
  3805. extra: 1374 / 1308,
  3806. bottom: 23 / 1397
  3807. }
  3808. },
  3809. mp724: {
  3810. height: math.unit(0.96, "meters"),
  3811. weight: math.unit(38, "kg"),
  3812. name: "H&K MP724",
  3813. image: {
  3814. source: "./media/characters/asche/h&k-mp724.svg"
  3815. }
  3816. },
  3817. side: {
  3818. height: math.unit(5, "meters"),
  3819. weight: math.unit(1000, "kg"),
  3820. name: "Side",
  3821. image: {
  3822. source: "./media/characters/asche/side.svg",
  3823. extra: 1717 / 1609,
  3824. bottom: 0.005
  3825. }
  3826. },
  3827. back: {
  3828. height: math.unit(5, "meters"),
  3829. weight: math.unit(1000, "kg"),
  3830. name: "Back",
  3831. image: {
  3832. source: "./media/characters/asche/back.svg",
  3833. extra: 1570 / 1501
  3834. }
  3835. },
  3836. },
  3837. [
  3838. {
  3839. name: "DEFCON 5",
  3840. height: math.unit(5, "meters")
  3841. },
  3842. {
  3843. name: "DEFCON 4",
  3844. height: math.unit(500, "meters"),
  3845. default: true
  3846. },
  3847. {
  3848. name: "DEFCON 3",
  3849. height: math.unit(5, "km")
  3850. },
  3851. {
  3852. name: "DEFCON 2",
  3853. height: math.unit(500, "km")
  3854. },
  3855. {
  3856. name: "DEFCON 1",
  3857. height: math.unit(500000, "km")
  3858. },
  3859. {
  3860. name: "DEFCON 0",
  3861. height: math.unit(3, "gigaparsecs")
  3862. },
  3863. ]
  3864. ))
  3865. characterMakers.push(() => makeCharacter(
  3866. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3867. {
  3868. front: {
  3869. height: math.unit(2, "meters"),
  3870. weight: math.unit(76, "kg"),
  3871. name: "Front",
  3872. image: {
  3873. source: "./media/characters/gale/front.svg"
  3874. }
  3875. },
  3876. frontAlt1: {
  3877. height: math.unit(2, "meters"),
  3878. weight: math.unit(76, "kg"),
  3879. name: "Front (Alt 1)",
  3880. image: {
  3881. source: "./media/characters/gale/front-alt-1.svg"
  3882. }
  3883. },
  3884. frontAlt2: {
  3885. height: math.unit(2, "meters"),
  3886. weight: math.unit(76, "kg"),
  3887. name: "Front (Alt 2)",
  3888. image: {
  3889. source: "./media/characters/gale/front-alt-2.svg"
  3890. }
  3891. },
  3892. },
  3893. [
  3894. {
  3895. name: "Normal",
  3896. height: math.unit(7, "feet")
  3897. },
  3898. {
  3899. name: "Macro",
  3900. height: math.unit(150, "feet"),
  3901. default: true
  3902. },
  3903. {
  3904. name: "Macro+",
  3905. height: math.unit(300, "feet")
  3906. },
  3907. ]
  3908. ))
  3909. characterMakers.push(() => makeCharacter(
  3910. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3911. {
  3912. front: {
  3913. height: math.unit(2, "meters"),
  3914. weight: math.unit(76, "kg"),
  3915. name: "Front",
  3916. image: {
  3917. source: "./media/characters/draylen/front.svg"
  3918. }
  3919. }
  3920. },
  3921. [
  3922. {
  3923. name: "Macro",
  3924. height: math.unit(150, "feet"),
  3925. default: true
  3926. }
  3927. ]
  3928. ))
  3929. characterMakers.push(() => makeCharacter(
  3930. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3931. {
  3932. front: {
  3933. height: math.unit(7 + 9 / 12, "feet"),
  3934. weight: math.unit(379, "lbs"),
  3935. name: "Front",
  3936. image: {
  3937. source: "./media/characters/chez/front.svg"
  3938. }
  3939. },
  3940. side: {
  3941. height: math.unit(7 + 9 / 12, "feet"),
  3942. weight: math.unit(379, "lbs"),
  3943. name: "Side",
  3944. image: {
  3945. source: "./media/characters/chez/side.svg"
  3946. }
  3947. }
  3948. },
  3949. [
  3950. {
  3951. name: "Normal",
  3952. height: math.unit(7 + 9 / 12, "feet"),
  3953. default: true
  3954. },
  3955. {
  3956. name: "God King",
  3957. height: math.unit(9750000, "meters")
  3958. }
  3959. ]
  3960. ))
  3961. characterMakers.push(() => makeCharacter(
  3962. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3963. {
  3964. front: {
  3965. height: math.unit(6, "feet"),
  3966. weight: math.unit(275, "lbs"),
  3967. name: "Front",
  3968. image: {
  3969. source: "./media/characters/kaylum/front.svg",
  3970. bottom: 0.01,
  3971. extra: 1166 / 1031
  3972. }
  3973. },
  3974. frontWingless: {
  3975. height: math.unit(6, "feet"),
  3976. weight: math.unit(275, "lbs"),
  3977. name: "Front (Wingless)",
  3978. image: {
  3979. source: "./media/characters/kaylum/front-wingless.svg",
  3980. bottom: 0.01,
  3981. extra: 1117 / 1031
  3982. }
  3983. }
  3984. },
  3985. [
  3986. {
  3987. name: "Normal",
  3988. height: math.unit(3.05, "meters")
  3989. },
  3990. {
  3991. name: "Master",
  3992. height: math.unit(5.5, "meters")
  3993. },
  3994. {
  3995. name: "Rampage",
  3996. height: math.unit(19, "meters")
  3997. },
  3998. {
  3999. name: "Macro Lite",
  4000. height: math.unit(37, "meters")
  4001. },
  4002. {
  4003. name: "Hyper Predator",
  4004. height: math.unit(61, "meters")
  4005. },
  4006. {
  4007. name: "Macro",
  4008. height: math.unit(138, "meters"),
  4009. default: true
  4010. }
  4011. ]
  4012. ))
  4013. characterMakers.push(() => makeCharacter(
  4014. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4015. {
  4016. front: {
  4017. height: math.unit(6, "feet"),
  4018. weight: math.unit(150, "lbs"),
  4019. name: "Front",
  4020. image: {
  4021. source: "./media/characters/geta/front.svg"
  4022. }
  4023. }
  4024. },
  4025. [
  4026. {
  4027. name: "Micro",
  4028. height: math.unit(3, "inches"),
  4029. default: true
  4030. },
  4031. {
  4032. name: "Normal",
  4033. height: math.unit(5 + 5 / 12, "feet")
  4034. }
  4035. ]
  4036. ))
  4037. characterMakers.push(() => makeCharacter(
  4038. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4039. {
  4040. front: {
  4041. height: math.unit(6, "feet"),
  4042. weight: math.unit(300, "lbs"),
  4043. name: "Front",
  4044. image: {
  4045. source: "./media/characters/tyrnn/front.svg"
  4046. }
  4047. }
  4048. },
  4049. [
  4050. {
  4051. name: "Main Height",
  4052. height: math.unit(355, "feet"),
  4053. default: true
  4054. },
  4055. {
  4056. name: "Fave. Height",
  4057. height: math.unit(2400, "feet")
  4058. }
  4059. ]
  4060. ))
  4061. characterMakers.push(() => makeCharacter(
  4062. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4063. {
  4064. front: {
  4065. height: math.unit(6, "feet"),
  4066. weight: math.unit(300, "lbs"),
  4067. name: "Front",
  4068. image: {
  4069. source: "./media/characters/appledectomy/front.svg"
  4070. }
  4071. }
  4072. },
  4073. [
  4074. {
  4075. name: "Macro",
  4076. height: math.unit(2500, "feet")
  4077. },
  4078. {
  4079. name: "Megamacro",
  4080. height: math.unit(50, "miles"),
  4081. default: true
  4082. },
  4083. {
  4084. name: "Gigamacro",
  4085. height: math.unit(5000, "miles")
  4086. },
  4087. {
  4088. name: "Teramacro",
  4089. height: math.unit(250000, "miles")
  4090. },
  4091. ]
  4092. ))
  4093. characterMakers.push(() => makeCharacter(
  4094. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4095. {
  4096. front: {
  4097. height: math.unit(6, "feet"),
  4098. weight: math.unit(200, "lbs"),
  4099. name: "Front",
  4100. image: {
  4101. source: "./media/characters/vulpes/front.svg",
  4102. extra: 573 / 543,
  4103. bottom: 0.033
  4104. }
  4105. },
  4106. side: {
  4107. height: math.unit(6, "feet"),
  4108. weight: math.unit(200, "lbs"),
  4109. name: "Side",
  4110. image: {
  4111. source: "./media/characters/vulpes/side.svg",
  4112. extra: 577 / 549,
  4113. bottom: 11 / 588
  4114. }
  4115. },
  4116. back: {
  4117. height: math.unit(6, "feet"),
  4118. weight: math.unit(200, "lbs"),
  4119. name: "Back",
  4120. image: {
  4121. source: "./media/characters/vulpes/back.svg",
  4122. extra: 573 / 549,
  4123. bottom: 20 / 593
  4124. }
  4125. },
  4126. feet: {
  4127. height: math.unit(1.276, "feet"),
  4128. name: "Feet",
  4129. image: {
  4130. source: "./media/characters/vulpes/feet.svg"
  4131. }
  4132. },
  4133. maw: {
  4134. height: math.unit(1.18, "feet"),
  4135. name: "Maw",
  4136. image: {
  4137. source: "./media/characters/vulpes/maw.svg"
  4138. }
  4139. },
  4140. },
  4141. [
  4142. {
  4143. name: "Micro",
  4144. height: math.unit(2, "inches")
  4145. },
  4146. {
  4147. name: "Normal",
  4148. height: math.unit(6.3, "feet")
  4149. },
  4150. {
  4151. name: "Macro",
  4152. height: math.unit(850, "feet")
  4153. },
  4154. {
  4155. name: "Megamacro",
  4156. height: math.unit(7500, "feet"),
  4157. default: true
  4158. },
  4159. {
  4160. name: "Gigamacro",
  4161. height: math.unit(570000, "miles")
  4162. }
  4163. ]
  4164. ))
  4165. characterMakers.push(() => makeCharacter(
  4166. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4167. {
  4168. front: {
  4169. height: math.unit(6, "feet"),
  4170. weight: math.unit(210, "lbs"),
  4171. name: "Front",
  4172. image: {
  4173. source: "./media/characters/rain-fallen/front.svg"
  4174. }
  4175. },
  4176. side: {
  4177. height: math.unit(6, "feet"),
  4178. weight: math.unit(210, "lbs"),
  4179. name: "Side",
  4180. image: {
  4181. source: "./media/characters/rain-fallen/side.svg"
  4182. }
  4183. },
  4184. back: {
  4185. height: math.unit(6, "feet"),
  4186. weight: math.unit(210, "lbs"),
  4187. name: "Back",
  4188. image: {
  4189. source: "./media/characters/rain-fallen/back.svg"
  4190. }
  4191. },
  4192. feral: {
  4193. height: math.unit(9, "feet"),
  4194. weight: math.unit(700, "lbs"),
  4195. name: "Feral",
  4196. image: {
  4197. source: "./media/characters/rain-fallen/feral.svg"
  4198. }
  4199. },
  4200. },
  4201. [
  4202. {
  4203. name: "Normal",
  4204. height: math.unit(5, "meter")
  4205. },
  4206. {
  4207. name: "Macro",
  4208. height: math.unit(150, "meter"),
  4209. default: true
  4210. },
  4211. {
  4212. name: "Megamacro",
  4213. height: math.unit(278e6, "meter")
  4214. },
  4215. {
  4216. name: "Gigamacro",
  4217. height: math.unit(2e9, "meter")
  4218. },
  4219. {
  4220. name: "Teramacro",
  4221. height: math.unit(8e12, "meter")
  4222. },
  4223. {
  4224. name: "Devourer",
  4225. height: math.unit(14, "zettameters")
  4226. },
  4227. {
  4228. name: "Scarlet King",
  4229. height: math.unit(18, "yottameters")
  4230. },
  4231. {
  4232. name: "Void",
  4233. height: math.unit(6.66e66, "yottameters")
  4234. }
  4235. ]
  4236. ))
  4237. characterMakers.push(() => makeCharacter(
  4238. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4239. {
  4240. standing: {
  4241. height: math.unit(6, "feet"),
  4242. weight: math.unit(180, "lbs"),
  4243. name: "Standing",
  4244. image: {
  4245. source: "./media/characters/zaakira/standing.svg"
  4246. }
  4247. },
  4248. laying: {
  4249. height: math.unit(3, "feet"),
  4250. weight: math.unit(180, "lbs"),
  4251. name: "Laying",
  4252. image: {
  4253. source: "./media/characters/zaakira/laying.svg"
  4254. }
  4255. },
  4256. },
  4257. [
  4258. {
  4259. name: "Normal",
  4260. height: math.unit(12, "feet")
  4261. },
  4262. {
  4263. name: "Macro",
  4264. height: math.unit(279, "feet"),
  4265. default: true
  4266. }
  4267. ]
  4268. ))
  4269. characterMakers.push(() => makeCharacter(
  4270. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4271. {
  4272. femSfw: {
  4273. height: math.unit(8, "feet"),
  4274. weight: math.unit(350, "lb"),
  4275. name: "Fem",
  4276. image: {
  4277. source: "./media/characters/sigvald/fem-sfw.svg",
  4278. extra: 182 / 164,
  4279. bottom: 8.7 / 190.5
  4280. }
  4281. },
  4282. femNsfw: {
  4283. height: math.unit(8, "feet"),
  4284. weight: math.unit(350, "lb"),
  4285. name: "Fem (NSFW)",
  4286. image: {
  4287. source: "./media/characters/sigvald/fem-nsfw.svg",
  4288. extra: 182 / 164,
  4289. bottom: 8.7 / 190.5
  4290. }
  4291. },
  4292. maleNsfw: {
  4293. height: math.unit(8, "feet"),
  4294. weight: math.unit(350, "lb"),
  4295. name: "Male (NSFW)",
  4296. image: {
  4297. source: "./media/characters/sigvald/male-nsfw.svg",
  4298. extra: 182 / 164,
  4299. bottom: 8.7 / 190.5
  4300. }
  4301. },
  4302. hermNsfw: {
  4303. height: math.unit(8, "feet"),
  4304. weight: math.unit(350, "lb"),
  4305. name: "Herm (NSFW)",
  4306. image: {
  4307. source: "./media/characters/sigvald/herm-nsfw.svg",
  4308. extra: 182 / 164,
  4309. bottom: 8.7 / 190.5
  4310. }
  4311. },
  4312. dick: {
  4313. height: math.unit(2.36, "feet"),
  4314. name: "Dick",
  4315. image: {
  4316. source: "./media/characters/sigvald/dick.svg"
  4317. }
  4318. },
  4319. eye: {
  4320. height: math.unit(0.31, "feet"),
  4321. name: "Eye",
  4322. image: {
  4323. source: "./media/characters/sigvald/eye.svg"
  4324. }
  4325. },
  4326. mouth: {
  4327. height: math.unit(0.92, "feet"),
  4328. name: "Mouth",
  4329. image: {
  4330. source: "./media/characters/sigvald/mouth.svg"
  4331. }
  4332. },
  4333. paws: {
  4334. height: math.unit(2.2, "feet"),
  4335. name: "Paws",
  4336. image: {
  4337. source: "./media/characters/sigvald/paws.svg"
  4338. }
  4339. }
  4340. },
  4341. [
  4342. {
  4343. name: "Normal",
  4344. height: math.unit(8, "feet")
  4345. },
  4346. {
  4347. name: "Large",
  4348. height: math.unit(12, "feet")
  4349. },
  4350. {
  4351. name: "Larger",
  4352. height: math.unit(20, "feet")
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(150, "feet")
  4357. },
  4358. {
  4359. name: "Macro+",
  4360. height: math.unit(200, "feet"),
  4361. default: true
  4362. },
  4363. ]
  4364. ))
  4365. characterMakers.push(() => makeCharacter(
  4366. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4367. {
  4368. side: {
  4369. height: math.unit(12, "feet"),
  4370. weight: math.unit(2000, "kg"),
  4371. name: "Side",
  4372. image: {
  4373. source: "./media/characters/scott/side.svg",
  4374. extra: 754 / 724,
  4375. bottom: 0.069
  4376. }
  4377. },
  4378. upright: {
  4379. height: math.unit(12, "feet"),
  4380. weight: math.unit(2000, "kg"),
  4381. name: "Upright",
  4382. image: {
  4383. source: "./media/characters/scott/upright.svg",
  4384. extra: 3881 / 3722,
  4385. bottom: 0.05
  4386. }
  4387. },
  4388. },
  4389. [
  4390. {
  4391. name: "Normal",
  4392. height: math.unit(12, "feet"),
  4393. default: true
  4394. },
  4395. ]
  4396. ))
  4397. characterMakers.push(() => makeCharacter(
  4398. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4399. {
  4400. side: {
  4401. height: math.unit(8, "meters"),
  4402. weight: math.unit(84755, "lbs"),
  4403. name: "Side",
  4404. image: {
  4405. source: "./media/characters/tobias/side.svg",
  4406. extra: 1474 / 1096,
  4407. bottom: 38.9 / 1513.1235
  4408. }
  4409. },
  4410. },
  4411. [
  4412. {
  4413. name: "Normal",
  4414. height: math.unit(8, "meters"),
  4415. default: true
  4416. },
  4417. ]
  4418. ))
  4419. characterMakers.push(() => makeCharacter(
  4420. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4421. {
  4422. front: {
  4423. height: math.unit(5.5, "feet"),
  4424. weight: math.unit(400, "lbs"),
  4425. name: "Front",
  4426. image: {
  4427. source: "./media/characters/kieran/front.svg",
  4428. extra: 2694 / 2364,
  4429. bottom: 217 / 2908
  4430. }
  4431. },
  4432. side: {
  4433. height: math.unit(5.5, "feet"),
  4434. weight: math.unit(400, "lbs"),
  4435. name: "Side",
  4436. image: {
  4437. source: "./media/characters/kieran/side.svg",
  4438. extra: 875 / 777,
  4439. bottom: 84.6 / 959
  4440. }
  4441. },
  4442. },
  4443. [
  4444. {
  4445. name: "Normal",
  4446. height: math.unit(5.5, "feet"),
  4447. default: true
  4448. },
  4449. ]
  4450. ))
  4451. characterMakers.push(() => makeCharacter(
  4452. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4453. {
  4454. side: {
  4455. height: math.unit(2, "meters"),
  4456. weight: math.unit(70, "kg"),
  4457. name: "Side",
  4458. image: {
  4459. source: "./media/characters/sanya/side.svg",
  4460. bottom: 0.02,
  4461. extra: 1.02
  4462. }
  4463. },
  4464. },
  4465. [
  4466. {
  4467. name: "Small",
  4468. height: math.unit(2, "meters")
  4469. },
  4470. {
  4471. name: "Normal",
  4472. height: math.unit(3, "meters")
  4473. },
  4474. {
  4475. name: "Macro",
  4476. height: math.unit(16, "meters"),
  4477. default: true
  4478. },
  4479. ]
  4480. ))
  4481. characterMakers.push(() => makeCharacter(
  4482. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4483. {
  4484. front: {
  4485. height: math.unit(2, "meters"),
  4486. weight: math.unit(120, "kg"),
  4487. name: "Front",
  4488. image: {
  4489. source: "./media/characters/miranda/front.svg",
  4490. extra: 195 / 185,
  4491. bottom: 10.9 / 206.5
  4492. }
  4493. },
  4494. back: {
  4495. height: math.unit(2, "meters"),
  4496. weight: math.unit(120, "kg"),
  4497. name: "Back",
  4498. image: {
  4499. source: "./media/characters/miranda/back.svg",
  4500. extra: 201 / 193,
  4501. bottom: 2.3 / 203.7
  4502. }
  4503. },
  4504. },
  4505. [
  4506. {
  4507. name: "Normal",
  4508. height: math.unit(10, "feet"),
  4509. default: true
  4510. }
  4511. ]
  4512. ))
  4513. characterMakers.push(() => makeCharacter(
  4514. { name: "James", species: ["deer"], tags: ["anthro"] },
  4515. {
  4516. side: {
  4517. height: math.unit(2, "meters"),
  4518. weight: math.unit(100, "kg"),
  4519. name: "Front",
  4520. image: {
  4521. source: "./media/characters/james/front.svg",
  4522. extra: 10 / 8.5
  4523. }
  4524. },
  4525. },
  4526. [
  4527. {
  4528. name: "Normal",
  4529. height: math.unit(8.5, "feet"),
  4530. default: true
  4531. }
  4532. ]
  4533. ))
  4534. characterMakers.push(() => makeCharacter(
  4535. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4536. {
  4537. side: {
  4538. height: math.unit(9.5, "feet"),
  4539. weight: math.unit(2500, "lbs"),
  4540. name: "Side",
  4541. image: {
  4542. source: "./media/characters/heather/side.svg"
  4543. }
  4544. },
  4545. },
  4546. [
  4547. {
  4548. name: "Normal",
  4549. height: math.unit(9.5, "feet"),
  4550. default: true
  4551. }
  4552. ]
  4553. ))
  4554. characterMakers.push(() => makeCharacter(
  4555. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4556. {
  4557. side: {
  4558. height: math.unit(6.5, "feet"),
  4559. weight: math.unit(400, "lbs"),
  4560. name: "Side",
  4561. image: {
  4562. source: "./media/characters/lukas/side.svg",
  4563. extra: 7.25 / 6.5
  4564. }
  4565. },
  4566. },
  4567. [
  4568. {
  4569. name: "Normal",
  4570. height: math.unit(6.5, "feet"),
  4571. default: true
  4572. }
  4573. ]
  4574. ))
  4575. characterMakers.push(() => makeCharacter(
  4576. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4577. {
  4578. side: {
  4579. height: math.unit(5, "feet"),
  4580. weight: math.unit(3000, "lbs"),
  4581. name: "Side",
  4582. image: {
  4583. source: "./media/characters/louise/side.svg"
  4584. }
  4585. },
  4586. },
  4587. [
  4588. {
  4589. name: "Normal",
  4590. height: math.unit(5, "feet"),
  4591. default: true
  4592. }
  4593. ]
  4594. ))
  4595. characterMakers.push(() => makeCharacter(
  4596. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4597. {
  4598. side: {
  4599. height: math.unit(6, "feet"),
  4600. weight: math.unit(150, "lbs"),
  4601. name: "Side",
  4602. image: {
  4603. source: "./media/characters/ramona/side.svg"
  4604. }
  4605. },
  4606. },
  4607. [
  4608. {
  4609. name: "Normal",
  4610. height: math.unit(5.3, "meters"),
  4611. default: true
  4612. },
  4613. {
  4614. name: "Macro",
  4615. height: math.unit(20, "stories")
  4616. },
  4617. {
  4618. name: "Macro+",
  4619. height: math.unit(50, "stories")
  4620. },
  4621. ]
  4622. ))
  4623. characterMakers.push(() => makeCharacter(
  4624. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4625. {
  4626. standing: {
  4627. height: math.unit(5.75, "feet"),
  4628. weight: math.unit(160, "lbs"),
  4629. name: "Standing",
  4630. image: {
  4631. source: "./media/characters/deerpuff/standing.svg",
  4632. extra: 682 / 624
  4633. }
  4634. },
  4635. sitting: {
  4636. height: math.unit(5.75 / 1.79, "feet"),
  4637. weight: math.unit(160, "lbs"),
  4638. name: "Sitting",
  4639. image: {
  4640. source: "./media/characters/deerpuff/sitting.svg",
  4641. bottom: 44 / 400,
  4642. extra: 1
  4643. }
  4644. },
  4645. taurLaying: {
  4646. height: math.unit(6, "feet"),
  4647. weight: math.unit(400, "lbs"),
  4648. name: "Taur (Laying)",
  4649. image: {
  4650. source: "./media/characters/deerpuff/taur-laying.svg"
  4651. }
  4652. },
  4653. },
  4654. [
  4655. {
  4656. name: "Puffball",
  4657. height: math.unit(6, "inches")
  4658. },
  4659. {
  4660. name: "Normalpuff",
  4661. height: math.unit(5.75, "feet")
  4662. },
  4663. {
  4664. name: "Macropuff",
  4665. height: math.unit(1500, "feet"),
  4666. default: true
  4667. },
  4668. {
  4669. name: "Megapuff",
  4670. height: math.unit(500, "miles")
  4671. },
  4672. {
  4673. name: "Gigapuff",
  4674. height: math.unit(250000, "miles")
  4675. },
  4676. {
  4677. name: "Omegapuff",
  4678. height: math.unit(1000, "lightyears")
  4679. },
  4680. ]
  4681. ))
  4682. characterMakers.push(() => makeCharacter(
  4683. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4684. {
  4685. stomping: {
  4686. height: math.unit(6, "feet"),
  4687. weight: math.unit(170, "lbs"),
  4688. name: "Stomping",
  4689. image: {
  4690. source: "./media/characters/vivian/stomping.svg"
  4691. }
  4692. },
  4693. sitting: {
  4694. height: math.unit(6 / 1.75, "feet"),
  4695. weight: math.unit(170, "lbs"),
  4696. name: "Sitting",
  4697. image: {
  4698. source: "./media/characters/vivian/sitting.svg",
  4699. bottom: 1 / 6.4,
  4700. extra: 1,
  4701. }
  4702. },
  4703. },
  4704. [
  4705. {
  4706. name: "Normal",
  4707. height: math.unit(7, "feet"),
  4708. default: true
  4709. },
  4710. {
  4711. name: "Macro",
  4712. height: math.unit(10, "stories")
  4713. },
  4714. {
  4715. name: "Macro+",
  4716. height: math.unit(30, "stories")
  4717. },
  4718. {
  4719. name: "Megamacro",
  4720. height: math.unit(10, "miles")
  4721. },
  4722. {
  4723. name: "Megamacro+",
  4724. height: math.unit(2750000, "meters")
  4725. },
  4726. ]
  4727. ))
  4728. characterMakers.push(() => makeCharacter(
  4729. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4730. {
  4731. front: {
  4732. height: math.unit(6, "feet"),
  4733. weight: math.unit(160, "lbs"),
  4734. name: "Front",
  4735. image: {
  4736. source: "./media/characters/prince/front.svg",
  4737. extra: 3400 / 3000
  4738. }
  4739. },
  4740. jumping: {
  4741. height: math.unit(6, "feet"),
  4742. weight: math.unit(160, "lbs"),
  4743. name: "Jumping",
  4744. image: {
  4745. source: "./media/characters/prince/jump.svg",
  4746. extra: 2555 / 2134
  4747. }
  4748. },
  4749. },
  4750. [
  4751. {
  4752. name: "Normal",
  4753. height: math.unit(7.75, "feet"),
  4754. default: true
  4755. },
  4756. {
  4757. name: "Not cute",
  4758. height: math.unit(17, "feet")
  4759. },
  4760. {
  4761. name: "I said NOT",
  4762. height: math.unit(91, "feet")
  4763. },
  4764. {
  4765. name: "Please stop",
  4766. height: math.unit(560, "feet")
  4767. },
  4768. {
  4769. name: "What have you done",
  4770. height: math.unit(2200, "feet")
  4771. },
  4772. {
  4773. name: "Deer God",
  4774. height: math.unit(3.6, "miles")
  4775. },
  4776. ]
  4777. ))
  4778. characterMakers.push(() => makeCharacter(
  4779. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4780. {
  4781. standing: {
  4782. height: math.unit(6, "feet"),
  4783. weight: math.unit(300, "lbs"),
  4784. name: "Standing",
  4785. image: {
  4786. source: "./media/characters/psymon/standing.svg",
  4787. extra: 1888 / 1810,
  4788. bottom: 0.05
  4789. }
  4790. },
  4791. slithering: {
  4792. height: math.unit(6, "feet"),
  4793. weight: math.unit(300, "lbs"),
  4794. name: "Slithering",
  4795. image: {
  4796. source: "./media/characters/psymon/slithering.svg",
  4797. extra: 1330 / 1224
  4798. }
  4799. },
  4800. slitheringAlt: {
  4801. height: math.unit(6, "feet"),
  4802. weight: math.unit(300, "lbs"),
  4803. name: "Slithering (Alt)",
  4804. image: {
  4805. source: "./media/characters/psymon/slithering-alt.svg",
  4806. extra: 1330 / 1224
  4807. }
  4808. },
  4809. },
  4810. [
  4811. {
  4812. name: "Normal",
  4813. height: math.unit(11.25, "feet"),
  4814. default: true
  4815. },
  4816. {
  4817. name: "Large",
  4818. height: math.unit(27, "feet")
  4819. },
  4820. {
  4821. name: "Giant",
  4822. height: math.unit(87, "feet")
  4823. },
  4824. {
  4825. name: "Macro",
  4826. height: math.unit(365, "feet")
  4827. },
  4828. {
  4829. name: "Megamacro",
  4830. height: math.unit(3, "miles")
  4831. },
  4832. {
  4833. name: "World Serpent",
  4834. height: math.unit(8000, "miles")
  4835. },
  4836. ]
  4837. ))
  4838. characterMakers.push(() => makeCharacter(
  4839. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4840. {
  4841. front: {
  4842. height: math.unit(6, "feet"),
  4843. weight: math.unit(180, "lbs"),
  4844. name: "Front",
  4845. image: {
  4846. source: "./media/characters/daimos/front.svg",
  4847. extra: 4160 / 3897,
  4848. bottom: 0.021
  4849. }
  4850. }
  4851. },
  4852. [
  4853. {
  4854. name: "Normal",
  4855. height: math.unit(8, "feet"),
  4856. default: true
  4857. },
  4858. {
  4859. name: "Big Dog",
  4860. height: math.unit(22, "feet")
  4861. },
  4862. {
  4863. name: "Macro",
  4864. height: math.unit(127, "feet")
  4865. },
  4866. {
  4867. name: "Megamacro",
  4868. height: math.unit(3600, "feet")
  4869. },
  4870. ]
  4871. ))
  4872. characterMakers.push(() => makeCharacter(
  4873. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4874. {
  4875. side: {
  4876. height: math.unit(6, "feet"),
  4877. weight: math.unit(180, "lbs"),
  4878. name: "Side",
  4879. image: {
  4880. source: "./media/characters/blake/side.svg",
  4881. extra: 1212 / 1120,
  4882. bottom: 0.05
  4883. }
  4884. },
  4885. crouched: {
  4886. height: math.unit(6 * 0.57, "feet"),
  4887. weight: math.unit(180, "lbs"),
  4888. name: "Crouched",
  4889. image: {
  4890. source: "./media/characters/blake/crouched.svg",
  4891. extra: 840 / 587,
  4892. bottom: 0.04
  4893. }
  4894. },
  4895. bent: {
  4896. height: math.unit(6 * 0.75, "feet"),
  4897. weight: math.unit(180, "lbs"),
  4898. name: "Bent",
  4899. image: {
  4900. source: "./media/characters/blake/bent.svg",
  4901. extra: 592 / 544,
  4902. bottom: 0.035
  4903. }
  4904. },
  4905. },
  4906. [
  4907. {
  4908. name: "Normal",
  4909. height: math.unit(8 + 1 / 6, "feet"),
  4910. default: true
  4911. },
  4912. {
  4913. name: "Big Backside",
  4914. height: math.unit(37, "feet")
  4915. },
  4916. {
  4917. name: "Subway Shredder",
  4918. height: math.unit(72, "feet")
  4919. },
  4920. {
  4921. name: "City Carver",
  4922. height: math.unit(1675, "feet")
  4923. },
  4924. {
  4925. name: "Tectonic Tweaker",
  4926. height: math.unit(2300, "miles")
  4927. },
  4928. ]
  4929. ))
  4930. characterMakers.push(() => makeCharacter(
  4931. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4932. {
  4933. front: {
  4934. height: math.unit(6, "feet"),
  4935. weight: math.unit(180, "lbs"),
  4936. name: "Front",
  4937. image: {
  4938. source: "./media/characters/guisetto/front.svg",
  4939. extra: 856 / 817,
  4940. bottom: 0.06
  4941. }
  4942. },
  4943. airborne: {
  4944. height: math.unit(6, "feet"),
  4945. weight: math.unit(180, "lbs"),
  4946. name: "Airborne",
  4947. image: {
  4948. source: "./media/characters/guisetto/airborne.svg",
  4949. extra: 584 / 525
  4950. }
  4951. },
  4952. },
  4953. [
  4954. {
  4955. name: "Normal",
  4956. height: math.unit(10 + 11 / 12, "feet"),
  4957. default: true
  4958. },
  4959. {
  4960. name: "Large",
  4961. height: math.unit(35, "feet")
  4962. },
  4963. {
  4964. name: "Macro",
  4965. height: math.unit(475, "feet")
  4966. },
  4967. ]
  4968. ))
  4969. characterMakers.push(() => makeCharacter(
  4970. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4971. {
  4972. front: {
  4973. height: math.unit(6, "feet"),
  4974. weight: math.unit(180, "lbs"),
  4975. name: "Front",
  4976. image: {
  4977. source: "./media/characters/luxor/front.svg",
  4978. extra: 2940 / 2152
  4979. }
  4980. },
  4981. back: {
  4982. height: math.unit(6, "feet"),
  4983. weight: math.unit(180, "lbs"),
  4984. name: "Back",
  4985. image: {
  4986. source: "./media/characters/luxor/back.svg",
  4987. extra: 1083 / 960
  4988. }
  4989. },
  4990. },
  4991. [
  4992. {
  4993. name: "Normal",
  4994. height: math.unit(5 + 5 / 6, "feet"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "Lamp",
  4999. height: math.unit(50, "feet")
  5000. },
  5001. {
  5002. name: "Lämp",
  5003. height: math.unit(300, "feet")
  5004. },
  5005. {
  5006. name: "The sun is a lamp",
  5007. height: math.unit(250000, "miles")
  5008. },
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5013. {
  5014. front: {
  5015. height: math.unit(6, "feet"),
  5016. weight: math.unit(50, "lbs"),
  5017. name: "Front",
  5018. image: {
  5019. source: "./media/characters/huoyan/front.svg"
  5020. }
  5021. },
  5022. side: {
  5023. height: math.unit(6, "feet"),
  5024. weight: math.unit(180, "lbs"),
  5025. name: "Side",
  5026. image: {
  5027. source: "./media/characters/huoyan/side.svg"
  5028. }
  5029. },
  5030. },
  5031. [
  5032. {
  5033. name: "Chef",
  5034. height: math.unit(9, "feet")
  5035. },
  5036. {
  5037. name: "Normal",
  5038. height: math.unit(65, "feet"),
  5039. default: true
  5040. },
  5041. {
  5042. name: "Macro",
  5043. height: math.unit(780, "feet")
  5044. },
  5045. {
  5046. name: "Flaming Mountain",
  5047. height: math.unit(4.8, "miles")
  5048. },
  5049. {
  5050. name: "Celestial",
  5051. height: math.unit(765000, "miles")
  5052. },
  5053. ]
  5054. ))
  5055. characterMakers.push(() => makeCharacter(
  5056. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5057. {
  5058. front: {
  5059. height: math.unit(5 + 3 / 4, "feet"),
  5060. weight: math.unit(120, "lbs"),
  5061. name: "Front",
  5062. image: {
  5063. source: "./media/characters/tails/front.svg"
  5064. }
  5065. }
  5066. },
  5067. [
  5068. {
  5069. name: "Normal",
  5070. height: math.unit(5 + 3 / 4, "feet"),
  5071. default: true
  5072. }
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5077. {
  5078. front: {
  5079. height: math.unit(4, "feet"),
  5080. weight: math.unit(50, "lbs"),
  5081. name: "Front",
  5082. image: {
  5083. source: "./media/characters/rainy/front.svg"
  5084. }
  5085. }
  5086. },
  5087. [
  5088. {
  5089. name: "Macro",
  5090. height: math.unit(800, "feet"),
  5091. default: true
  5092. }
  5093. ]
  5094. ))
  5095. characterMakers.push(() => makeCharacter(
  5096. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5097. {
  5098. front: {
  5099. height: math.unit(6, "feet"),
  5100. weight: math.unit(150, "lbs"),
  5101. name: "Front",
  5102. image: {
  5103. source: "./media/characters/rainier/front.svg"
  5104. }
  5105. }
  5106. },
  5107. [
  5108. {
  5109. name: "Micro",
  5110. height: math.unit(2, "mm"),
  5111. default: true
  5112. }
  5113. ]
  5114. ))
  5115. characterMakers.push(() => makeCharacter(
  5116. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5117. {
  5118. front: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(180, "lbs"),
  5121. name: "Front",
  5122. image: {
  5123. source: "./media/characters/andy/front.svg"
  5124. }
  5125. }
  5126. },
  5127. [
  5128. {
  5129. name: "Normal",
  5130. height: math.unit(8, "feet"),
  5131. default: true
  5132. },
  5133. {
  5134. name: "Macro",
  5135. height: math.unit(1000, "feet")
  5136. },
  5137. {
  5138. name: "Megamacro",
  5139. height: math.unit(5, "miles")
  5140. },
  5141. {
  5142. name: "Gigamacro",
  5143. height: math.unit(5000, "miles")
  5144. },
  5145. ]
  5146. ))
  5147. characterMakers.push(() => makeCharacter(
  5148. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5149. {
  5150. front: {
  5151. height: math.unit(6, "feet"),
  5152. weight: math.unit(210, "lbs"),
  5153. name: "Front",
  5154. image: {
  5155. source: "./media/characters/cimmaron/front-sfw.svg",
  5156. extra: 701 / 676,
  5157. bottom: 0.046
  5158. }
  5159. },
  5160. back: {
  5161. height: math.unit(6, "feet"),
  5162. weight: math.unit(210, "lbs"),
  5163. name: "Back",
  5164. image: {
  5165. source: "./media/characters/cimmaron/back-sfw.svg",
  5166. extra: 701 / 676,
  5167. bottom: 0.046
  5168. }
  5169. },
  5170. frontNsfw: {
  5171. height: math.unit(6, "feet"),
  5172. weight: math.unit(210, "lbs"),
  5173. name: "Front (NSFW)",
  5174. image: {
  5175. source: "./media/characters/cimmaron/front-nsfw.svg",
  5176. extra: 701 / 676,
  5177. bottom: 0.046
  5178. }
  5179. },
  5180. backNsfw: {
  5181. height: math.unit(6, "feet"),
  5182. weight: math.unit(210, "lbs"),
  5183. name: "Back (NSFW)",
  5184. image: {
  5185. source: "./media/characters/cimmaron/back-nsfw.svg",
  5186. extra: 701 / 676,
  5187. bottom: 0.046
  5188. }
  5189. },
  5190. dick: {
  5191. height: math.unit(1.714, "feet"),
  5192. name: "Dick",
  5193. image: {
  5194. source: "./media/characters/cimmaron/dick.svg"
  5195. }
  5196. },
  5197. },
  5198. [
  5199. {
  5200. name: "Normal",
  5201. height: math.unit(6, "feet"),
  5202. default: true
  5203. },
  5204. {
  5205. name: "Macro Mayor",
  5206. height: math.unit(350, "meters")
  5207. },
  5208. ]
  5209. ))
  5210. characterMakers.push(() => makeCharacter(
  5211. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5212. {
  5213. front: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(200, "lbs"),
  5216. name: "Front",
  5217. image: {
  5218. source: "./media/characters/akari/front.svg",
  5219. extra: 962 / 901,
  5220. bottom: 0.04
  5221. }
  5222. }
  5223. },
  5224. [
  5225. {
  5226. name: "Micro",
  5227. height: math.unit(5, "inches"),
  5228. default: true
  5229. },
  5230. {
  5231. name: "Normal",
  5232. height: math.unit(7, "feet")
  5233. },
  5234. ]
  5235. ))
  5236. characterMakers.push(() => makeCharacter(
  5237. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5238. {
  5239. front: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(140, "lbs"),
  5242. name: "Front",
  5243. image: {
  5244. source: "./media/characters/cynosura/front.svg",
  5245. extra: 896 / 847
  5246. }
  5247. },
  5248. back: {
  5249. height: math.unit(6, "feet"),
  5250. weight: math.unit(140, "lbs"),
  5251. name: "Back",
  5252. image: {
  5253. source: "./media/characters/cynosura/back.svg",
  5254. extra: 1365 / 1250
  5255. }
  5256. },
  5257. },
  5258. [
  5259. {
  5260. name: "Micro",
  5261. height: math.unit(4, "inches")
  5262. },
  5263. {
  5264. name: "Normal",
  5265. height: math.unit(5.75, "feet"),
  5266. default: true
  5267. },
  5268. {
  5269. name: "Tall",
  5270. height: math.unit(10, "feet")
  5271. },
  5272. {
  5273. name: "Big",
  5274. height: math.unit(20, "feet")
  5275. },
  5276. {
  5277. name: "Macro",
  5278. height: math.unit(50, "feet")
  5279. },
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(170, "lbs"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/gin/front.svg",
  5291. extra: 1.053,
  5292. bottom: 0.025
  5293. }
  5294. },
  5295. foot: {
  5296. height: math.unit(6 / 4.25, "feet"),
  5297. name: "Foot",
  5298. image: {
  5299. source: "./media/characters/gin/foot.svg"
  5300. }
  5301. },
  5302. sole: {
  5303. height: math.unit(6 / 4.40, "feet"),
  5304. name: "Sole",
  5305. image: {
  5306. source: "./media/characters/gin/sole.svg"
  5307. }
  5308. },
  5309. },
  5310. [
  5311. {
  5312. name: "Normal",
  5313. height: math.unit(13 + 2 / 12, "feet")
  5314. },
  5315. {
  5316. name: "Macro",
  5317. height: math.unit(1500, "feet")
  5318. },
  5319. {
  5320. name: "Megamacro",
  5321. height: math.unit(200, "miles"),
  5322. default: true
  5323. },
  5324. {
  5325. name: "Gigamacro",
  5326. height: math.unit(500, "megameters")
  5327. },
  5328. {
  5329. name: "Teramacro",
  5330. height: math.unit(15, "lightyears")
  5331. }
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5336. {
  5337. front: {
  5338. height: math.unit(6 + 1 / 6, "feet"),
  5339. weight: math.unit(178, "lbs"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/guy/front.svg"
  5343. }
  5344. }
  5345. },
  5346. [
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(6 + 1 / 6, "feet"),
  5350. default: true
  5351. },
  5352. {
  5353. name: "Large",
  5354. height: math.unit(25 + 7 / 12, "feet")
  5355. },
  5356. {
  5357. name: "Macro",
  5358. height: math.unit(60 + 9 / 12, "feet")
  5359. },
  5360. {
  5361. name: "Macro+",
  5362. height: math.unit(246, "feet")
  5363. },
  5364. {
  5365. name: "Macro++",
  5366. height: math.unit(878, "feet")
  5367. }
  5368. ]
  5369. ))
  5370. characterMakers.push(() => makeCharacter(
  5371. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5372. {
  5373. front: {
  5374. height: math.unit(9, "feet"),
  5375. weight: math.unit(800, "lbs"),
  5376. name: "Front",
  5377. image: {
  5378. source: "./media/characters/tiberius/front.svg",
  5379. extra: 2295 / 2071
  5380. }
  5381. },
  5382. back: {
  5383. height: math.unit(9, "feet"),
  5384. weight: math.unit(800, "lbs"),
  5385. name: "Back",
  5386. image: {
  5387. source: "./media/characters/tiberius/back.svg",
  5388. extra: 2373 / 2160
  5389. }
  5390. },
  5391. },
  5392. [
  5393. {
  5394. name: "Normal",
  5395. height: math.unit(9, "feet"),
  5396. default: true
  5397. }
  5398. ]
  5399. ))
  5400. characterMakers.push(() => makeCharacter(
  5401. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5402. {
  5403. front: {
  5404. height: math.unit(6, "feet"),
  5405. weight: math.unit(600, "lbs"),
  5406. name: "Front",
  5407. image: {
  5408. source: "./media/characters/surgo/front.svg",
  5409. extra: 3591 / 2227
  5410. }
  5411. },
  5412. back: {
  5413. height: math.unit(6, "feet"),
  5414. weight: math.unit(600, "lbs"),
  5415. name: "Back",
  5416. image: {
  5417. source: "./media/characters/surgo/back.svg",
  5418. extra: 3557 / 2228
  5419. }
  5420. },
  5421. laying: {
  5422. height: math.unit(6 * 0.85, "feet"),
  5423. weight: math.unit(600, "lbs"),
  5424. name: "Laying",
  5425. image: {
  5426. source: "./media/characters/surgo/laying.svg"
  5427. }
  5428. },
  5429. },
  5430. [
  5431. {
  5432. name: "Normal",
  5433. height: math.unit(6, "feet"),
  5434. default: true
  5435. }
  5436. ]
  5437. ))
  5438. characterMakers.push(() => makeCharacter(
  5439. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5440. {
  5441. side: {
  5442. height: math.unit(6, "feet"),
  5443. weight: math.unit(150, "lbs"),
  5444. name: "Side",
  5445. image: {
  5446. source: "./media/characters/cibus/side.svg",
  5447. extra: 800 / 400
  5448. }
  5449. },
  5450. },
  5451. [
  5452. {
  5453. name: "Normal",
  5454. height: math.unit(6, "feet"),
  5455. default: true
  5456. }
  5457. ]
  5458. ))
  5459. characterMakers.push(() => makeCharacter(
  5460. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5461. {
  5462. front: {
  5463. height: math.unit(6, "feet"),
  5464. weight: math.unit(240, "lbs"),
  5465. name: "Front",
  5466. image: {
  5467. source: "./media/characters/nibbles/front.svg"
  5468. }
  5469. },
  5470. side: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(240, "lbs"),
  5473. name: "Side",
  5474. image: {
  5475. source: "./media/characters/nibbles/side.svg"
  5476. }
  5477. },
  5478. },
  5479. [
  5480. {
  5481. name: "Normal",
  5482. height: math.unit(9, "feet"),
  5483. default: true
  5484. }
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5489. {
  5490. side: {
  5491. height: math.unit(5 + 1 / 6, "feet"),
  5492. weight: math.unit(130, "lbs"),
  5493. name: "Side",
  5494. image: {
  5495. source: "./media/characters/rikky/side.svg",
  5496. extra: 851 / 801
  5497. }
  5498. },
  5499. },
  5500. [
  5501. {
  5502. name: "Normal",
  5503. height: math.unit(5 + 1 / 6, "feet")
  5504. },
  5505. {
  5506. name: "Macro",
  5507. height: math.unit(152, "feet"),
  5508. default: true
  5509. },
  5510. {
  5511. name: "Megamacro",
  5512. height: math.unit(7, "miles")
  5513. }
  5514. ]
  5515. ))
  5516. characterMakers.push(() => makeCharacter(
  5517. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5518. {
  5519. side: {
  5520. height: math.unit(370, "cm"),
  5521. weight: math.unit(350, "lbs"),
  5522. name: "Side",
  5523. image: {
  5524. source: "./media/characters/malfressa/side.svg"
  5525. }
  5526. },
  5527. walking: {
  5528. height: math.unit(370, "cm"),
  5529. weight: math.unit(350, "lbs"),
  5530. name: "Walking",
  5531. image: {
  5532. source: "./media/characters/malfressa/walking.svg"
  5533. }
  5534. },
  5535. feral: {
  5536. height: math.unit(2500, "cm"),
  5537. weight: math.unit(100000, "lbs"),
  5538. name: "Feral",
  5539. image: {
  5540. source: "./media/characters/malfressa/feral.svg",
  5541. extra: 2108 / 837,
  5542. bottom: 0.02
  5543. }
  5544. },
  5545. },
  5546. [
  5547. {
  5548. name: "Normal",
  5549. height: math.unit(370, "cm")
  5550. },
  5551. {
  5552. name: "Macro",
  5553. height: math.unit(300, "meters"),
  5554. default: true
  5555. }
  5556. ]
  5557. ))
  5558. characterMakers.push(() => makeCharacter(
  5559. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5560. {
  5561. front: {
  5562. height: math.unit(6, "feet"),
  5563. weight: math.unit(60, "kg"),
  5564. name: "Front",
  5565. image: {
  5566. source: "./media/characters/jaro/front.svg"
  5567. }
  5568. },
  5569. back: {
  5570. height: math.unit(6, "feet"),
  5571. weight: math.unit(60, "kg"),
  5572. name: "Back",
  5573. image: {
  5574. source: "./media/characters/jaro/back.svg"
  5575. }
  5576. },
  5577. },
  5578. [
  5579. {
  5580. name: "Micro",
  5581. height: math.unit(7, "inches")
  5582. },
  5583. {
  5584. name: "Normal",
  5585. height: math.unit(5.5, "feet"),
  5586. default: true
  5587. },
  5588. {
  5589. name: "Minimacro",
  5590. height: math.unit(20, "feet")
  5591. },
  5592. {
  5593. name: "Macro",
  5594. height: math.unit(200, "meters")
  5595. }
  5596. ]
  5597. ))
  5598. characterMakers.push(() => makeCharacter(
  5599. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5600. {
  5601. front: {
  5602. height: math.unit(6, "feet"),
  5603. weight: math.unit(195, "lb"),
  5604. name: "Front",
  5605. image: {
  5606. source: "./media/characters/rogue/front.svg"
  5607. }
  5608. },
  5609. },
  5610. [
  5611. {
  5612. name: "Macro",
  5613. height: math.unit(90, "feet"),
  5614. default: true
  5615. },
  5616. ]
  5617. ))
  5618. characterMakers.push(() => makeCharacter(
  5619. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5620. {
  5621. front: {
  5622. height: math.unit(5 + 8 / 12, "feet"),
  5623. weight: math.unit(140, "lb"),
  5624. name: "Front",
  5625. image: {
  5626. source: "./media/characters/piper/front.svg",
  5627. extra: 3928 / 3681
  5628. }
  5629. },
  5630. },
  5631. [
  5632. {
  5633. name: "Micro",
  5634. height: math.unit(2, "inches")
  5635. },
  5636. {
  5637. name: "Normal",
  5638. height: math.unit(5 + 8 / 12, "feet")
  5639. },
  5640. {
  5641. name: "Macro",
  5642. height: math.unit(250, "feet"),
  5643. default: true
  5644. },
  5645. {
  5646. name: "Megamacro",
  5647. height: math.unit(7, "miles")
  5648. },
  5649. ]
  5650. ))
  5651. characterMakers.push(() => makeCharacter(
  5652. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5653. {
  5654. front: {
  5655. height: math.unit(6, "feet"),
  5656. weight: math.unit(220, "lb"),
  5657. name: "Front",
  5658. image: {
  5659. source: "./media/characters/gemini/front.svg"
  5660. }
  5661. },
  5662. back: {
  5663. height: math.unit(6, "feet"),
  5664. weight: math.unit(220, "lb"),
  5665. name: "Back",
  5666. image: {
  5667. source: "./media/characters/gemini/back.svg"
  5668. }
  5669. },
  5670. kneeling: {
  5671. height: math.unit(6 / 1.5, "feet"),
  5672. weight: math.unit(220, "lb"),
  5673. name: "Kneeling",
  5674. image: {
  5675. source: "./media/characters/gemini/kneeling.svg",
  5676. bottom: 0.02
  5677. }
  5678. },
  5679. },
  5680. [
  5681. {
  5682. name: "Macro",
  5683. height: math.unit(300, "meters"),
  5684. default: true
  5685. },
  5686. {
  5687. name: "Megamacro",
  5688. height: math.unit(6900, "meters")
  5689. },
  5690. ]
  5691. ))
  5692. characterMakers.push(() => makeCharacter(
  5693. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5694. {
  5695. anthro: {
  5696. height: math.unit(2.35, "meters"),
  5697. weight: math.unit(73, "kg"),
  5698. name: "Anthro",
  5699. image: {
  5700. source: "./media/characters/alicia/anthro.svg",
  5701. extra: 2571 / 2385,
  5702. bottom: 75 / 2648
  5703. }
  5704. },
  5705. paw: {
  5706. height: math.unit(1.32, "feet"),
  5707. name: "Paw",
  5708. image: {
  5709. source: "./media/characters/alicia/paw.svg"
  5710. }
  5711. },
  5712. feral: {
  5713. height: math.unit(1.69, "meters"),
  5714. weight: math.unit(73, "kg"),
  5715. name: "Feral",
  5716. image: {
  5717. source: "./media/characters/alicia/feral.svg",
  5718. extra: 2123 / 1715,
  5719. bottom: 222 / 2349
  5720. }
  5721. },
  5722. },
  5723. [
  5724. {
  5725. name: "Normal",
  5726. height: math.unit(2.35, "meters")
  5727. },
  5728. {
  5729. name: "Macro",
  5730. height: math.unit(60, "meters"),
  5731. default: true
  5732. },
  5733. {
  5734. name: "Megamacro",
  5735. height: math.unit(10000, "kilometers")
  5736. },
  5737. ]
  5738. ))
  5739. characterMakers.push(() => makeCharacter(
  5740. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5741. {
  5742. front: {
  5743. height: math.unit(7, "feet"),
  5744. weight: math.unit(250, "lbs"),
  5745. name: "Front",
  5746. image: {
  5747. source: "./media/characters/archy/front.svg"
  5748. }
  5749. }
  5750. },
  5751. [
  5752. {
  5753. name: "Micro",
  5754. height: math.unit(1, "inch")
  5755. },
  5756. {
  5757. name: "Shorty",
  5758. height: math.unit(5, "feet")
  5759. },
  5760. {
  5761. name: "Normal",
  5762. height: math.unit(7, "feet")
  5763. },
  5764. {
  5765. name: "Macro",
  5766. height: math.unit(600, "meters"),
  5767. default: true
  5768. },
  5769. {
  5770. name: "Megamacro",
  5771. height: math.unit(1, "mile")
  5772. },
  5773. ]
  5774. ))
  5775. characterMakers.push(() => makeCharacter(
  5776. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5777. {
  5778. front: {
  5779. height: math.unit(1.65, "meters"),
  5780. weight: math.unit(74, "kg"),
  5781. name: "Front",
  5782. image: {
  5783. source: "./media/characters/berri/front.svg",
  5784. extra: 857 / 837,
  5785. bottom: 18 / 877
  5786. }
  5787. },
  5788. bum: {
  5789. height: math.unit(1.46, "feet"),
  5790. name: "Bum",
  5791. image: {
  5792. source: "./media/characters/berri/bum.svg"
  5793. }
  5794. },
  5795. mouth: {
  5796. height: math.unit(0.44, "feet"),
  5797. name: "Mouth",
  5798. image: {
  5799. source: "./media/characters/berri/mouth.svg"
  5800. }
  5801. },
  5802. paw: {
  5803. height: math.unit(0.826, "feet"),
  5804. name: "Paw",
  5805. image: {
  5806. source: "./media/characters/berri/paw.svg"
  5807. }
  5808. },
  5809. },
  5810. [
  5811. {
  5812. name: "Normal",
  5813. height: math.unit(1.65, "meters")
  5814. },
  5815. {
  5816. name: "Macro",
  5817. height: math.unit(60, "m"),
  5818. default: true
  5819. },
  5820. {
  5821. name: "Megamacro",
  5822. height: math.unit(9.213, "km")
  5823. },
  5824. {
  5825. name: "Planet Eater",
  5826. height: math.unit(489, "megameters")
  5827. },
  5828. {
  5829. name: "Teramacro",
  5830. height: math.unit(2471635000000, "meters")
  5831. },
  5832. {
  5833. name: "Examacro",
  5834. height: math.unit(8.0624e+26, "meters")
  5835. }
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5840. {
  5841. front: {
  5842. height: math.unit(1.72, "meters"),
  5843. weight: math.unit(68, "kg"),
  5844. name: "Front",
  5845. image: {
  5846. source: "./media/characters/lexi/front.svg"
  5847. }
  5848. }
  5849. },
  5850. [
  5851. {
  5852. name: "Very Smol",
  5853. height: math.unit(10, "mm")
  5854. },
  5855. {
  5856. name: "Micro",
  5857. height: math.unit(6.8, "cm"),
  5858. default: true
  5859. },
  5860. {
  5861. name: "Normal",
  5862. height: math.unit(1.72, "m")
  5863. }
  5864. ]
  5865. ))
  5866. characterMakers.push(() => makeCharacter(
  5867. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5868. {
  5869. front: {
  5870. height: math.unit(1.69, "meters"),
  5871. weight: math.unit(68, "kg"),
  5872. name: "Front",
  5873. image: {
  5874. source: "./media/characters/martin/front.svg",
  5875. extra: 596 / 581
  5876. }
  5877. }
  5878. },
  5879. [
  5880. {
  5881. name: "Micro",
  5882. height: math.unit(6.85, "cm"),
  5883. default: true
  5884. },
  5885. {
  5886. name: "Normal",
  5887. height: math.unit(1.69, "m")
  5888. }
  5889. ]
  5890. ))
  5891. characterMakers.push(() => makeCharacter(
  5892. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5893. {
  5894. front: {
  5895. height: math.unit(1.69, "meters"),
  5896. weight: math.unit(68, "kg"),
  5897. name: "Front",
  5898. image: {
  5899. source: "./media/characters/juno/front.svg"
  5900. }
  5901. }
  5902. },
  5903. [
  5904. {
  5905. name: "Micro",
  5906. height: math.unit(7, "cm")
  5907. },
  5908. {
  5909. name: "Normal",
  5910. height: math.unit(1.89, "m")
  5911. },
  5912. {
  5913. name: "Macro",
  5914. height: math.unit(353, "meters"),
  5915. default: true
  5916. }
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5921. {
  5922. front: {
  5923. height: math.unit(1.93, "meters"),
  5924. weight: math.unit(83, "kg"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/samantha/front.svg"
  5928. }
  5929. },
  5930. frontClothed: {
  5931. height: math.unit(1.93, "meters"),
  5932. weight: math.unit(83, "kg"),
  5933. name: "Front (Clothed)",
  5934. image: {
  5935. source: "./media/characters/samantha/front-clothed.svg"
  5936. }
  5937. },
  5938. back: {
  5939. height: math.unit(1.93, "meters"),
  5940. weight: math.unit(83, "kg"),
  5941. name: "Back",
  5942. image: {
  5943. source: "./media/characters/samantha/back.svg"
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(1.93, "m")
  5951. },
  5952. {
  5953. name: "Macro",
  5954. height: math.unit(74, "meters"),
  5955. default: true
  5956. },
  5957. {
  5958. name: "Macro+",
  5959. height: math.unit(223, "meters"),
  5960. },
  5961. {
  5962. name: "Megamacro",
  5963. height: math.unit(8381, "meters"),
  5964. },
  5965. {
  5966. name: "Megamacro+",
  5967. height: math.unit(12000, "kilometers")
  5968. },
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5973. {
  5974. front: {
  5975. height: math.unit(1.92, "meters"),
  5976. weight: math.unit(80, "kg"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/dr-clay/front.svg"
  5980. }
  5981. },
  5982. frontClothed: {
  5983. height: math.unit(1.92, "meters"),
  5984. weight: math.unit(80, "kg"),
  5985. name: "Front (Clothed)",
  5986. image: {
  5987. source: "./media/characters/dr-clay/front-clothed.svg"
  5988. }
  5989. }
  5990. },
  5991. [
  5992. {
  5993. name: "Normal",
  5994. height: math.unit(1.92, "m")
  5995. },
  5996. {
  5997. name: "Macro",
  5998. height: math.unit(214, "meters"),
  5999. default: true
  6000. },
  6001. {
  6002. name: "Macro+",
  6003. height: math.unit(12.237, "meters"),
  6004. },
  6005. {
  6006. name: "Megamacro",
  6007. height: math.unit(557, "megameters"),
  6008. },
  6009. {
  6010. name: "Unimaginable",
  6011. height: math.unit(120e9, "lightyears")
  6012. },
  6013. ]
  6014. ))
  6015. characterMakers.push(() => makeCharacter(
  6016. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6017. {
  6018. front: {
  6019. height: math.unit(2, "meters"),
  6020. weight: math.unit(80, "kg"),
  6021. name: "Front",
  6022. image: {
  6023. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6024. }
  6025. }
  6026. },
  6027. [
  6028. {
  6029. name: "Teramacro",
  6030. height: math.unit(500000, "lightyears"),
  6031. default: true
  6032. },
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6037. {
  6038. front: {
  6039. height: math.unit(2, "meters"),
  6040. weight: math.unit(150, "kg"),
  6041. name: "Front",
  6042. image: {
  6043. source: "./media/characters/vemus/front.svg",
  6044. extra: 2384 / 2084,
  6045. bottom: 0.0123
  6046. }
  6047. }
  6048. },
  6049. [
  6050. {
  6051. name: "Normal",
  6052. height: math.unit(3.75, "meters"),
  6053. default: true
  6054. },
  6055. {
  6056. name: "Big",
  6057. height: math.unit(8, "meters")
  6058. },
  6059. {
  6060. name: "Macro",
  6061. height: math.unit(100, "meters")
  6062. },
  6063. {
  6064. name: "Macro+",
  6065. height: math.unit(1500, "meters")
  6066. },
  6067. {
  6068. name: "Stellar",
  6069. height: math.unit(14e8, "meters")
  6070. },
  6071. ]
  6072. ))
  6073. characterMakers.push(() => makeCharacter(
  6074. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6075. {
  6076. front: {
  6077. height: math.unit(2, "meters"),
  6078. weight: math.unit(70, "kg"),
  6079. name: "Front",
  6080. image: {
  6081. source: "./media/characters/beherit/front.svg",
  6082. extra: 1408 / 1242
  6083. }
  6084. }
  6085. },
  6086. [
  6087. {
  6088. name: "Normal",
  6089. height: math.unit(6, "feet")
  6090. },
  6091. {
  6092. name: "Lorg",
  6093. height: math.unit(25, "feet"),
  6094. default: true
  6095. },
  6096. {
  6097. name: "Lorger",
  6098. height: math.unit(75, "feet")
  6099. },
  6100. {
  6101. name: "Macro",
  6102. height: math.unit(200, "meters")
  6103. },
  6104. ]
  6105. ))
  6106. characterMakers.push(() => makeCharacter(
  6107. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6108. {
  6109. front: {
  6110. height: math.unit(2, "meters"),
  6111. weight: math.unit(150, "kg"),
  6112. name: "Front",
  6113. image: {
  6114. source: "./media/characters/everett/front.svg",
  6115. extra: 2038 / 1737,
  6116. bottom: 0.03
  6117. }
  6118. },
  6119. paw: {
  6120. height: math.unit(2 / 3.6, "meters"),
  6121. name: "Paw",
  6122. image: {
  6123. source: "./media/characters/everett/paw.svg"
  6124. }
  6125. },
  6126. },
  6127. [
  6128. {
  6129. name: "Normal",
  6130. height: math.unit(15, "feet"),
  6131. default: true
  6132. },
  6133. {
  6134. name: "Lorg",
  6135. height: math.unit(70, "feet"),
  6136. default: true
  6137. },
  6138. {
  6139. name: "Lorger",
  6140. height: math.unit(250, "feet")
  6141. },
  6142. {
  6143. name: "Macro",
  6144. height: math.unit(500, "meters")
  6145. },
  6146. ]
  6147. ))
  6148. characterMakers.push(() => makeCharacter(
  6149. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6150. {
  6151. front: {
  6152. height: math.unit(2, "meters"),
  6153. weight: math.unit(86, "kg"),
  6154. name: "Front",
  6155. image: {
  6156. source: "./media/characters/rose-lion/front.svg"
  6157. }
  6158. },
  6159. bent: {
  6160. height: math.unit(2 / 1.4288, "meters"),
  6161. weight: math.unit(86, "kg"),
  6162. name: "Bent",
  6163. image: {
  6164. source: "./media/characters/rose-lion/bent.svg"
  6165. }
  6166. }
  6167. },
  6168. [
  6169. {
  6170. name: "Mini-Micro",
  6171. height: math.unit(1, "cm")
  6172. },
  6173. {
  6174. name: "Micro",
  6175. height: math.unit(3.5, "inches"),
  6176. default: true
  6177. },
  6178. {
  6179. name: "Normal",
  6180. height: math.unit(6 + 1 / 6, "feet")
  6181. },
  6182. {
  6183. name: "Mini-Macro",
  6184. height: math.unit(9 + 10 / 12, "feet")
  6185. },
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6190. {
  6191. front: {
  6192. height: math.unit(2, "meters"),
  6193. weight: math.unit(350, "lbs"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/regal/front.svg"
  6197. }
  6198. },
  6199. back: {
  6200. height: math.unit(2, "meters"),
  6201. weight: math.unit(350, "lbs"),
  6202. name: "Back",
  6203. image: {
  6204. source: "./media/characters/regal/back.svg"
  6205. }
  6206. },
  6207. },
  6208. [
  6209. {
  6210. name: "Macro",
  6211. height: math.unit(350, "feet"),
  6212. default: true
  6213. }
  6214. ]
  6215. ))
  6216. characterMakers.push(() => makeCharacter(
  6217. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6218. {
  6219. front: {
  6220. height: math.unit(4 + 11 / 12, "feet"),
  6221. weight: math.unit(100, "lbs"),
  6222. name: "Front",
  6223. image: {
  6224. source: "./media/characters/opal/front.svg"
  6225. }
  6226. },
  6227. frontAlt: {
  6228. height: math.unit(4 + 11 / 12, "feet"),
  6229. weight: math.unit(100, "lbs"),
  6230. name: "Front (Alt)",
  6231. image: {
  6232. source: "./media/characters/opal/front-alt.svg"
  6233. }
  6234. },
  6235. },
  6236. [
  6237. {
  6238. name: "Small",
  6239. height: math.unit(4 + 11 / 12, "feet")
  6240. },
  6241. {
  6242. name: "Normal",
  6243. height: math.unit(20, "feet"),
  6244. default: true
  6245. },
  6246. {
  6247. name: "Macro",
  6248. height: math.unit(120, "feet")
  6249. },
  6250. {
  6251. name: "Megamacro",
  6252. height: math.unit(80, "miles")
  6253. },
  6254. {
  6255. name: "True Size",
  6256. height: math.unit(100000, "lightyears")
  6257. },
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(6, "feet"),
  6265. weight: math.unit(200, "lbs"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/vector-wuff/front.svg"
  6269. }
  6270. }
  6271. },
  6272. [
  6273. {
  6274. name: "Normal",
  6275. height: math.unit(2.8, "meters")
  6276. },
  6277. {
  6278. name: "Macro",
  6279. height: math.unit(450, "meters"),
  6280. default: true
  6281. },
  6282. {
  6283. name: "Megamacro",
  6284. height: math.unit(15, "kilometers")
  6285. }
  6286. ]
  6287. ))
  6288. characterMakers.push(() => makeCharacter(
  6289. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6290. {
  6291. front: {
  6292. height: math.unit(6, "feet"),
  6293. weight: math.unit(256, "lbs"),
  6294. name: "Front",
  6295. image: {
  6296. source: "./media/characters/dannik/front.svg"
  6297. }
  6298. }
  6299. },
  6300. [
  6301. {
  6302. name: "Macro",
  6303. height: math.unit(69.57, "meters"),
  6304. default: true
  6305. },
  6306. ]
  6307. ))
  6308. characterMakers.push(() => makeCharacter(
  6309. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6310. {
  6311. front: {
  6312. height: math.unit(6, "feet"),
  6313. weight: math.unit(120, "lbs"),
  6314. name: "Front",
  6315. image: {
  6316. source: "./media/characters/azura-saharah/front.svg"
  6317. }
  6318. },
  6319. back: {
  6320. height: math.unit(6, "feet"),
  6321. weight: math.unit(120, "lbs"),
  6322. name: "Back",
  6323. image: {
  6324. source: "./media/characters/azura-saharah/back.svg"
  6325. }
  6326. },
  6327. },
  6328. [
  6329. {
  6330. name: "Macro",
  6331. height: math.unit(100, "feet"),
  6332. default: true
  6333. },
  6334. ]
  6335. ))
  6336. characterMakers.push(() => makeCharacter(
  6337. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6338. {
  6339. side: {
  6340. height: math.unit(5 + 4 / 12, "feet"),
  6341. weight: math.unit(163, "lbs"),
  6342. name: "Side",
  6343. image: {
  6344. source: "./media/characters/kennedy/side.svg"
  6345. }
  6346. }
  6347. },
  6348. [
  6349. {
  6350. name: "Standard Doggo",
  6351. height: math.unit(5 + 4 / 12, "feet")
  6352. },
  6353. {
  6354. name: "Big Doggo",
  6355. height: math.unit(25 + 3 / 12, "feet"),
  6356. default: true
  6357. },
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6362. {
  6363. front: {
  6364. height: math.unit(6, "feet"),
  6365. weight: math.unit(90, "lbs"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/odi-lunar/front.svg"
  6369. }
  6370. }
  6371. },
  6372. [
  6373. {
  6374. name: "Micro",
  6375. height: math.unit(3, "inches"),
  6376. default: true
  6377. },
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(5.5, "feet")
  6381. }
  6382. ]
  6383. ))
  6384. characterMakers.push(() => makeCharacter(
  6385. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6386. {
  6387. back: {
  6388. height: math.unit(6, "feet"),
  6389. weight: math.unit(220, "lbs"),
  6390. name: "Back",
  6391. image: {
  6392. source: "./media/characters/mandake/back.svg"
  6393. }
  6394. }
  6395. },
  6396. [
  6397. {
  6398. name: "Normal",
  6399. height: math.unit(7, "feet"),
  6400. default: true
  6401. },
  6402. {
  6403. name: "Macro",
  6404. height: math.unit(78, "feet")
  6405. },
  6406. {
  6407. name: "Macro+",
  6408. height: math.unit(300, "meters")
  6409. },
  6410. {
  6411. name: "Macro++",
  6412. height: math.unit(2400, "feet")
  6413. },
  6414. {
  6415. name: "Megamacro",
  6416. height: math.unit(5167, "meters")
  6417. },
  6418. {
  6419. name: "Gigamacro",
  6420. height: math.unit(41769, "miles")
  6421. },
  6422. ]
  6423. ))
  6424. characterMakers.push(() => makeCharacter(
  6425. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6426. {
  6427. front: {
  6428. height: math.unit(6, "feet"),
  6429. weight: math.unit(120, "lbs"),
  6430. name: "Front",
  6431. image: {
  6432. source: "./media/characters/yozey/front.svg"
  6433. }
  6434. },
  6435. frontAlt: {
  6436. height: math.unit(6, "feet"),
  6437. weight: math.unit(120, "lbs"),
  6438. name: "Front (Alt)",
  6439. image: {
  6440. source: "./media/characters/yozey/front-alt.svg"
  6441. }
  6442. },
  6443. side: {
  6444. height: math.unit(6, "feet"),
  6445. weight: math.unit(120, "lbs"),
  6446. name: "Side",
  6447. image: {
  6448. source: "./media/characters/yozey/side.svg"
  6449. }
  6450. },
  6451. },
  6452. [
  6453. {
  6454. name: "Micro",
  6455. height: math.unit(3, "inches"),
  6456. default: true
  6457. },
  6458. {
  6459. name: "Normal",
  6460. height: math.unit(6, "feet")
  6461. }
  6462. ]
  6463. ))
  6464. characterMakers.push(() => makeCharacter(
  6465. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6466. {
  6467. front: {
  6468. height: math.unit(6, "feet"),
  6469. weight: math.unit(103, "lbs"),
  6470. name: "Front",
  6471. image: {
  6472. source: "./media/characters/valeska-voss/front.svg"
  6473. }
  6474. }
  6475. },
  6476. [
  6477. {
  6478. name: "Mini-Sized Sub",
  6479. height: math.unit(3.1, "inches")
  6480. },
  6481. {
  6482. name: "Mid-Sized Sub",
  6483. height: math.unit(6.2, "inches")
  6484. },
  6485. {
  6486. name: "Full-Sized Sub",
  6487. height: math.unit(9.3, "inches")
  6488. },
  6489. {
  6490. name: "Normal",
  6491. height: math.unit(5 + 2 / 12, "foot"),
  6492. default: true
  6493. },
  6494. ]
  6495. ))
  6496. characterMakers.push(() => makeCharacter(
  6497. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6498. {
  6499. front: {
  6500. height: math.unit(6, "feet"),
  6501. weight: math.unit(160, "lbs"),
  6502. name: "Front",
  6503. image: {
  6504. source: "./media/characters/gene-zeta/front.svg",
  6505. bottom: 0.03,
  6506. extra: 1
  6507. }
  6508. }
  6509. },
  6510. [
  6511. {
  6512. name: "Normal",
  6513. height: math.unit(6.25, "foot"),
  6514. default: true
  6515. },
  6516. ]
  6517. ))
  6518. characterMakers.push(() => makeCharacter(
  6519. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6520. {
  6521. front: {
  6522. height: math.unit(6, "feet"),
  6523. weight: math.unit(350, "lbs"),
  6524. name: "Front",
  6525. image: {
  6526. source: "./media/characters/razinox/front.svg",
  6527. extra: 1686 / 1548,
  6528. bottom: 28.2 / 1868
  6529. }
  6530. },
  6531. back: {
  6532. height: math.unit(6, "feet"),
  6533. weight: math.unit(350, "lbs"),
  6534. name: "Back",
  6535. image: {
  6536. source: "./media/characters/razinox/back.svg",
  6537. extra: 1660 / 1590,
  6538. bottom: 15 / 1665
  6539. }
  6540. },
  6541. },
  6542. [
  6543. {
  6544. name: "Normal",
  6545. height: math.unit(10 + 8 / 12, "foot")
  6546. },
  6547. {
  6548. name: "Minimacro",
  6549. height: math.unit(15, "foot")
  6550. },
  6551. {
  6552. name: "Macro",
  6553. height: math.unit(60, "foot"),
  6554. default: true
  6555. },
  6556. {
  6557. name: "Megamacro",
  6558. height: math.unit(5, "miles")
  6559. },
  6560. {
  6561. name: "Gigamacro",
  6562. height: math.unit(6000, "miles")
  6563. },
  6564. ]
  6565. ))
  6566. characterMakers.push(() => makeCharacter(
  6567. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6568. {
  6569. front: {
  6570. height: math.unit(6, "feet"),
  6571. weight: math.unit(150, "lbs"),
  6572. name: "Front",
  6573. image: {
  6574. source: "./media/characters/cobalt/front.svg"
  6575. }
  6576. }
  6577. },
  6578. [
  6579. {
  6580. name: "Normal",
  6581. height: math.unit(8 + 1 / 12, "foot")
  6582. },
  6583. {
  6584. name: "Macro",
  6585. height: math.unit(111, "foot"),
  6586. default: true
  6587. },
  6588. {
  6589. name: "Supracosmic",
  6590. height: math.unit(1e42, "feet")
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6596. {
  6597. front: {
  6598. height: math.unit(6, "feet"),
  6599. weight: math.unit(140, "lbs"),
  6600. name: "Front",
  6601. image: {
  6602. source: "./media/characters/amanda/front.svg"
  6603. }
  6604. }
  6605. },
  6606. [
  6607. {
  6608. name: "Micro",
  6609. height: math.unit(5, "inches"),
  6610. default: true
  6611. },
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6616. {
  6617. front: {
  6618. height: math.unit(5.59, "feet"),
  6619. weight: math.unit(250, "lbs"),
  6620. name: "Front",
  6621. image: {
  6622. source: "./media/characters/teal/front.svg"
  6623. }
  6624. },
  6625. frontAlt: {
  6626. height: math.unit(6, "feet"),
  6627. weight: math.unit(250, "lbs"),
  6628. name: "Front (Alt)",
  6629. image: {
  6630. source: "./media/characters/teal/front-alt.svg",
  6631. bottom: 0.04,
  6632. extra: 1
  6633. }
  6634. },
  6635. },
  6636. [
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(12, "feet"),
  6640. default: true
  6641. },
  6642. {
  6643. name: "Macro",
  6644. height: math.unit(300, "feet")
  6645. },
  6646. ]
  6647. ))
  6648. characterMakers.push(() => makeCharacter(
  6649. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6650. {
  6651. frontCat: {
  6652. height: math.unit(6, "feet"),
  6653. weight: math.unit(180, "lbs"),
  6654. name: "Front (Cat)",
  6655. image: {
  6656. source: "./media/characters/ravin-amulet/front-cat.svg"
  6657. }
  6658. },
  6659. frontCatAlt: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(180, "lbs"),
  6662. name: "Front (Alt, Cat)",
  6663. image: {
  6664. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6665. }
  6666. },
  6667. frontWerewolf: {
  6668. height: math.unit(6 * 1.2, "feet"),
  6669. weight: math.unit(225, "lbs"),
  6670. name: "Front (Werewolf)",
  6671. image: {
  6672. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6673. }
  6674. },
  6675. backWerewolf: {
  6676. height: math.unit(6 * 1.2, "feet"),
  6677. weight: math.unit(225, "lbs"),
  6678. name: "Back (Werewolf)",
  6679. image: {
  6680. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6681. }
  6682. },
  6683. },
  6684. [
  6685. {
  6686. name: "Nano",
  6687. height: math.unit(1, "micrometer")
  6688. },
  6689. {
  6690. name: "Micro",
  6691. height: math.unit(1, "inch")
  6692. },
  6693. {
  6694. name: "Normal",
  6695. height: math.unit(6, "feet"),
  6696. default: true
  6697. },
  6698. {
  6699. name: "Macro",
  6700. height: math.unit(60, "feet")
  6701. }
  6702. ]
  6703. ))
  6704. characterMakers.push(() => makeCharacter(
  6705. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6706. {
  6707. front: {
  6708. height: math.unit(6, "feet"),
  6709. weight: math.unit(165, "lbs"),
  6710. name: "Front",
  6711. image: {
  6712. source: "./media/characters/fluoresce/front.svg"
  6713. }
  6714. }
  6715. },
  6716. [
  6717. {
  6718. name: "Micro",
  6719. height: math.unit(6, "cm")
  6720. },
  6721. {
  6722. name: "Normal",
  6723. height: math.unit(5 + 7 / 12, "feet"),
  6724. default: true
  6725. },
  6726. {
  6727. name: "Macro",
  6728. height: math.unit(56, "feet")
  6729. },
  6730. {
  6731. name: "Megamacro",
  6732. height: math.unit(1.9, "miles")
  6733. },
  6734. ]
  6735. ))
  6736. characterMakers.push(() => makeCharacter(
  6737. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6738. {
  6739. front: {
  6740. height: math.unit(9 + 6 / 12, "feet"),
  6741. weight: math.unit(523, "lbs"),
  6742. name: "Side",
  6743. image: {
  6744. source: "./media/characters/aurora/side.svg"
  6745. }
  6746. }
  6747. },
  6748. [
  6749. {
  6750. name: "Normal",
  6751. height: math.unit(9 + 6 / 12, "feet")
  6752. },
  6753. {
  6754. name: "Macro",
  6755. height: math.unit(96, "feet"),
  6756. default: true
  6757. },
  6758. {
  6759. name: "Macro+",
  6760. height: math.unit(243, "feet")
  6761. },
  6762. ]
  6763. ))
  6764. characterMakers.push(() => makeCharacter(
  6765. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6766. {
  6767. front: {
  6768. height: math.unit(194, "cm"),
  6769. weight: math.unit(90, "kg"),
  6770. name: "Front",
  6771. image: {
  6772. source: "./media/characters/ranek/front.svg"
  6773. }
  6774. },
  6775. side: {
  6776. height: math.unit(194, "cm"),
  6777. weight: math.unit(90, "kg"),
  6778. name: "Side",
  6779. image: {
  6780. source: "./media/characters/ranek/side.svg"
  6781. }
  6782. },
  6783. back: {
  6784. height: math.unit(194, "cm"),
  6785. weight: math.unit(90, "kg"),
  6786. name: "Back",
  6787. image: {
  6788. source: "./media/characters/ranek/back.svg"
  6789. }
  6790. },
  6791. feral: {
  6792. height: math.unit(30, "cm"),
  6793. weight: math.unit(1.6, "lbs"),
  6794. name: "Feral",
  6795. image: {
  6796. source: "./media/characters/ranek/feral.svg"
  6797. }
  6798. },
  6799. },
  6800. [
  6801. {
  6802. name: "Normal",
  6803. height: math.unit(194, "cm"),
  6804. default: true
  6805. },
  6806. {
  6807. name: "Macro",
  6808. height: math.unit(100, "meters")
  6809. },
  6810. ]
  6811. ))
  6812. characterMakers.push(() => makeCharacter(
  6813. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6814. {
  6815. front: {
  6816. height: math.unit(5 + 6 / 12, "feet"),
  6817. weight: math.unit(153, "lbs"),
  6818. name: "Front",
  6819. image: {
  6820. source: "./media/characters/andrew-cooper/front.svg"
  6821. }
  6822. },
  6823. },
  6824. [
  6825. {
  6826. name: "Nano",
  6827. height: math.unit(1, "mm")
  6828. },
  6829. {
  6830. name: "Micro",
  6831. height: math.unit(2, "inches")
  6832. },
  6833. {
  6834. name: "Normal",
  6835. height: math.unit(5 + 6 / 12, "feet"),
  6836. default: true
  6837. }
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6842. {
  6843. front: {
  6844. height: math.unit(6, "feet"),
  6845. weight: math.unit(180, "lbs"),
  6846. name: "Front",
  6847. image: {
  6848. source: "./media/characters/akane-sato/front.svg",
  6849. extra: 1219 / 1140
  6850. }
  6851. },
  6852. back: {
  6853. height: math.unit(6, "feet"),
  6854. weight: math.unit(180, "lbs"),
  6855. name: "Back",
  6856. image: {
  6857. source: "./media/characters/akane-sato/back.svg",
  6858. extra: 1219 / 1170
  6859. }
  6860. },
  6861. },
  6862. [
  6863. {
  6864. name: "Normal",
  6865. height: math.unit(2.5, "meters")
  6866. },
  6867. {
  6868. name: "Macro",
  6869. height: math.unit(250, "meters"),
  6870. default: true
  6871. },
  6872. {
  6873. name: "Megamacro",
  6874. height: math.unit(25, "km")
  6875. },
  6876. ]
  6877. ))
  6878. characterMakers.push(() => makeCharacter(
  6879. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6880. {
  6881. front: {
  6882. height: math.unit(6, "feet"),
  6883. weight: math.unit(65, "kg"),
  6884. name: "Front",
  6885. image: {
  6886. source: "./media/characters/rook/front.svg",
  6887. extra: 960 / 950
  6888. }
  6889. }
  6890. },
  6891. [
  6892. {
  6893. name: "Normal",
  6894. height: math.unit(8.8, "feet")
  6895. },
  6896. {
  6897. name: "Macro",
  6898. height: math.unit(88, "feet"),
  6899. default: true
  6900. },
  6901. {
  6902. name: "Megamacro",
  6903. height: math.unit(8, "miles")
  6904. },
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6909. {
  6910. front: {
  6911. height: math.unit(12 + 2 / 12, "feet"),
  6912. weight: math.unit(808, "lbs"),
  6913. name: "Front",
  6914. image: {
  6915. source: "./media/characters/prodigy/front.svg"
  6916. }
  6917. }
  6918. },
  6919. [
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(12 + 2 / 12, "feet"),
  6923. default: true
  6924. },
  6925. {
  6926. name: "Macro",
  6927. height: math.unit(143, "feet")
  6928. },
  6929. {
  6930. name: "Macro+",
  6931. height: math.unit(400, "feet")
  6932. },
  6933. ]
  6934. ))
  6935. characterMakers.push(() => makeCharacter(
  6936. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6937. {
  6938. front: {
  6939. height: math.unit(6, "feet"),
  6940. weight: math.unit(225, "lbs"),
  6941. name: "Front",
  6942. image: {
  6943. source: "./media/characters/daniel/front.svg"
  6944. }
  6945. },
  6946. leaning: {
  6947. height: math.unit(6, "feet"),
  6948. weight: math.unit(225, "lbs"),
  6949. name: "Leaning",
  6950. image: {
  6951. source: "./media/characters/daniel/leaning.svg"
  6952. }
  6953. },
  6954. },
  6955. [
  6956. {
  6957. name: "Macro",
  6958. height: math.unit(1000, "feet"),
  6959. default: true
  6960. },
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6965. {
  6966. front: {
  6967. height: math.unit(6, "feet"),
  6968. weight: math.unit(88, "lbs"),
  6969. name: "Front",
  6970. image: {
  6971. source: "./media/characters/chiros/front.svg",
  6972. extra: 306 / 226
  6973. }
  6974. },
  6975. side: {
  6976. height: math.unit(6, "feet"),
  6977. weight: math.unit(88, "lbs"),
  6978. name: "Side",
  6979. image: {
  6980. source: "./media/characters/chiros/side.svg",
  6981. extra: 306 / 226
  6982. }
  6983. },
  6984. },
  6985. [
  6986. {
  6987. name: "Normal",
  6988. height: math.unit(6, "cm"),
  6989. default: true
  6990. },
  6991. ]
  6992. ))
  6993. characterMakers.push(() => makeCharacter(
  6994. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6995. {
  6996. front: {
  6997. height: math.unit(6, "feet"),
  6998. weight: math.unit(100, "lbs"),
  6999. name: "Front",
  7000. image: {
  7001. source: "./media/characters/selka/front.svg",
  7002. extra: 947 / 887
  7003. }
  7004. }
  7005. },
  7006. [
  7007. {
  7008. name: "Normal",
  7009. height: math.unit(5, "cm"),
  7010. default: true
  7011. },
  7012. ]
  7013. ))
  7014. characterMakers.push(() => makeCharacter(
  7015. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7016. {
  7017. front: {
  7018. height: math.unit(8 + 3 / 12, "feet"),
  7019. weight: math.unit(424, "lbs"),
  7020. name: "Front",
  7021. image: {
  7022. source: "./media/characters/verin/front.svg",
  7023. extra: 1845 / 1550
  7024. }
  7025. },
  7026. frontArmored: {
  7027. height: math.unit(8 + 3 / 12, "feet"),
  7028. weight: math.unit(424, "lbs"),
  7029. name: "Front (Armored)",
  7030. image: {
  7031. source: "./media/characters/verin/front-armor.svg",
  7032. extra: 1845 / 1550,
  7033. bottom: 0.01
  7034. }
  7035. },
  7036. back: {
  7037. height: math.unit(8 + 3 / 12, "feet"),
  7038. weight: math.unit(424, "lbs"),
  7039. name: "Back",
  7040. image: {
  7041. source: "./media/characters/verin/back.svg",
  7042. bottom: 0.1,
  7043. extra: 1
  7044. }
  7045. },
  7046. foot: {
  7047. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7048. name: "Foot",
  7049. image: {
  7050. source: "./media/characters/verin/foot.svg"
  7051. }
  7052. },
  7053. },
  7054. [
  7055. {
  7056. name: "Normal",
  7057. height: math.unit(8 + 3 / 12, "feet")
  7058. },
  7059. {
  7060. name: "Minimacro",
  7061. height: math.unit(21, "feet"),
  7062. default: true
  7063. },
  7064. {
  7065. name: "Macro",
  7066. height: math.unit(626, "feet")
  7067. },
  7068. ]
  7069. ))
  7070. characterMakers.push(() => makeCharacter(
  7071. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7072. {
  7073. front: {
  7074. height: math.unit(2.718, "meters"),
  7075. weight: math.unit(150, "lbs"),
  7076. name: "Front",
  7077. image: {
  7078. source: "./media/characters/sovrim-terraquian/front.svg"
  7079. }
  7080. },
  7081. back: {
  7082. height: math.unit(2.718, "meters"),
  7083. weight: math.unit(150, "lbs"),
  7084. name: "Back",
  7085. image: {
  7086. source: "./media/characters/sovrim-terraquian/back.svg"
  7087. }
  7088. }
  7089. },
  7090. [
  7091. {
  7092. name: "Micro",
  7093. height: math.unit(2, "inches")
  7094. },
  7095. {
  7096. name: "Small",
  7097. height: math.unit(1, "meter")
  7098. },
  7099. {
  7100. name: "Normal",
  7101. height: math.unit(Math.E, "meters"),
  7102. default: true
  7103. },
  7104. {
  7105. name: "Macro",
  7106. height: math.unit(20, "meters")
  7107. },
  7108. {
  7109. name: "Macro+",
  7110. height: math.unit(400, "meters")
  7111. },
  7112. ]
  7113. ))
  7114. characterMakers.push(() => makeCharacter(
  7115. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7116. {
  7117. front: {
  7118. height: math.unit(7, "feet"),
  7119. weight: math.unit(489, "lbs"),
  7120. name: "Front",
  7121. image: {
  7122. source: "./media/characters/reece-silvermane/front.svg",
  7123. bottom: 0.02,
  7124. extra: 1
  7125. }
  7126. },
  7127. },
  7128. [
  7129. {
  7130. name: "Macro",
  7131. height: math.unit(1.5, "miles"),
  7132. default: true
  7133. },
  7134. ]
  7135. ))
  7136. characterMakers.push(() => makeCharacter(
  7137. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7138. {
  7139. front: {
  7140. height: math.unit(6, "feet"),
  7141. weight: math.unit(78, "kg"),
  7142. name: "Front",
  7143. image: {
  7144. source: "./media/characters/kane/front.svg",
  7145. extra: 978 / 899
  7146. }
  7147. },
  7148. },
  7149. [
  7150. {
  7151. name: "Normal",
  7152. height: math.unit(2.1, "m"),
  7153. },
  7154. {
  7155. name: "Macro",
  7156. height: math.unit(1, "km"),
  7157. default: true
  7158. },
  7159. ]
  7160. ))
  7161. characterMakers.push(() => makeCharacter(
  7162. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7163. {
  7164. front: {
  7165. height: math.unit(6, "feet"),
  7166. weight: math.unit(200, "kg"),
  7167. name: "Front",
  7168. image: {
  7169. source: "./media/characters/tegon/front.svg",
  7170. bottom: 0.01,
  7171. extra: 1
  7172. }
  7173. },
  7174. },
  7175. [
  7176. {
  7177. name: "Micro",
  7178. height: math.unit(1, "inch")
  7179. },
  7180. {
  7181. name: "Normal",
  7182. height: math.unit(6 + 3 / 12, "feet"),
  7183. default: true
  7184. },
  7185. {
  7186. name: "Macro",
  7187. height: math.unit(300, "feet")
  7188. },
  7189. {
  7190. name: "Megamacro",
  7191. height: math.unit(69, "miles")
  7192. },
  7193. ]
  7194. ))
  7195. characterMakers.push(() => makeCharacter(
  7196. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7197. {
  7198. side: {
  7199. height: math.unit(6, "feet"),
  7200. weight: math.unit(2304, "lbs"),
  7201. name: "Side",
  7202. image: {
  7203. source: "./media/characters/arcturax/side.svg",
  7204. extra: 790 / 376,
  7205. bottom: 0.01
  7206. }
  7207. },
  7208. },
  7209. [
  7210. {
  7211. name: "Micro",
  7212. height: math.unit(2, "inch")
  7213. },
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(6, "feet")
  7217. },
  7218. {
  7219. name: "Macro",
  7220. height: math.unit(39, "feet"),
  7221. default: true
  7222. },
  7223. {
  7224. name: "Megamacro",
  7225. height: math.unit(7, "miles")
  7226. },
  7227. ]
  7228. ))
  7229. characterMakers.push(() => makeCharacter(
  7230. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7231. {
  7232. front: {
  7233. height: math.unit(6, "feet"),
  7234. weight: math.unit(50, "lbs"),
  7235. name: "Front",
  7236. image: {
  7237. source: "./media/characters/sentri/front.svg",
  7238. extra: 1750 / 1570,
  7239. bottom: 0.025
  7240. }
  7241. },
  7242. frontAlt: {
  7243. height: math.unit(6, "feet"),
  7244. weight: math.unit(50, "lbs"),
  7245. name: "Front (Alt)",
  7246. image: {
  7247. source: "./media/characters/sentri/front-alt.svg",
  7248. extra: 1750 / 1570,
  7249. bottom: 0.025
  7250. }
  7251. },
  7252. },
  7253. [
  7254. {
  7255. name: "Normal",
  7256. height: math.unit(15, "feet"),
  7257. default: true
  7258. },
  7259. {
  7260. name: "Macro",
  7261. height: math.unit(2500, "feet")
  7262. }
  7263. ]
  7264. ))
  7265. characterMakers.push(() => makeCharacter(
  7266. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7267. {
  7268. front: {
  7269. height: math.unit(5 + 8 / 12, "feet"),
  7270. weight: math.unit(130, "lbs"),
  7271. name: "Front",
  7272. image: {
  7273. source: "./media/characters/corvin/front.svg",
  7274. extra: 1803 / 1629
  7275. }
  7276. },
  7277. frontShirt: {
  7278. height: math.unit(5 + 8 / 12, "feet"),
  7279. weight: math.unit(130, "lbs"),
  7280. name: "Front (Shirt)",
  7281. image: {
  7282. source: "./media/characters/corvin/front-shirt.svg",
  7283. extra: 1803 / 1629
  7284. }
  7285. },
  7286. frontPoncho: {
  7287. height: math.unit(5 + 8 / 12, "feet"),
  7288. weight: math.unit(130, "lbs"),
  7289. name: "Front (Poncho)",
  7290. image: {
  7291. source: "./media/characters/corvin/front-poncho.svg",
  7292. extra: 1803 / 1629
  7293. }
  7294. },
  7295. side: {
  7296. height: math.unit(5 + 8 / 12, "feet"),
  7297. weight: math.unit(130, "lbs"),
  7298. name: "Side",
  7299. image: {
  7300. source: "./media/characters/corvin/side.svg",
  7301. extra: 1012 / 945
  7302. }
  7303. },
  7304. back: {
  7305. height: math.unit(5 + 8 / 12, "feet"),
  7306. weight: math.unit(130, "lbs"),
  7307. name: "Back",
  7308. image: {
  7309. source: "./media/characters/corvin/back.svg",
  7310. extra: 1803 / 1629
  7311. }
  7312. },
  7313. },
  7314. [
  7315. {
  7316. name: "Micro",
  7317. height: math.unit(3, "inches")
  7318. },
  7319. {
  7320. name: "Normal",
  7321. height: math.unit(5 + 8 / 12, "feet")
  7322. },
  7323. {
  7324. name: "Macro",
  7325. height: math.unit(300, "feet"),
  7326. default: true
  7327. },
  7328. {
  7329. name: "Megamacro",
  7330. height: math.unit(500, "miles")
  7331. }
  7332. ]
  7333. ))
  7334. characterMakers.push(() => makeCharacter(
  7335. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7336. {
  7337. front: {
  7338. height: math.unit(6, "feet"),
  7339. weight: math.unit(135, "lbs"),
  7340. name: "Front",
  7341. image: {
  7342. source: "./media/characters/q/front.svg",
  7343. extra: 854 / 752,
  7344. bottom: 0.005
  7345. }
  7346. },
  7347. back: {
  7348. height: math.unit(6, "feet"),
  7349. weight: math.unit(130, "lbs"),
  7350. name: "Back",
  7351. image: {
  7352. source: "./media/characters/q/back.svg",
  7353. extra: 854 / 752
  7354. }
  7355. },
  7356. },
  7357. [
  7358. {
  7359. name: "Macro",
  7360. height: math.unit(90, "feet"),
  7361. default: true
  7362. },
  7363. {
  7364. name: "Extra Macro",
  7365. height: math.unit(300, "feet"),
  7366. },
  7367. {
  7368. name: "BIG WALF",
  7369. height: math.unit(750, "feet"),
  7370. },
  7371. ]
  7372. ))
  7373. characterMakers.push(() => makeCharacter(
  7374. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7375. {
  7376. front: {
  7377. height: math.unit(6, "feet"),
  7378. weight: math.unit(150, "lbs"),
  7379. name: "Front",
  7380. image: {
  7381. source: "./media/characters/carley/front.svg",
  7382. extra: 3927 / 3540,
  7383. bottom: 29.2 / 735
  7384. }
  7385. }
  7386. },
  7387. [
  7388. {
  7389. name: "Normal",
  7390. height: math.unit(6 + 3 / 12, "feet")
  7391. },
  7392. {
  7393. name: "Macro",
  7394. height: math.unit(185, "feet"),
  7395. default: true
  7396. },
  7397. {
  7398. name: "Megamacro",
  7399. height: math.unit(8, "miles"),
  7400. },
  7401. ]
  7402. ))
  7403. characterMakers.push(() => makeCharacter(
  7404. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7405. {
  7406. front: {
  7407. height: math.unit(3, "feet"),
  7408. weight: math.unit(28, "lbs"),
  7409. name: "Front",
  7410. image: {
  7411. source: "./media/characters/citrine/front.svg"
  7412. }
  7413. }
  7414. },
  7415. [
  7416. {
  7417. name: "Normal",
  7418. height: math.unit(3, "feet"),
  7419. default: true
  7420. }
  7421. ]
  7422. ))
  7423. characterMakers.push(() => makeCharacter(
  7424. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7425. {
  7426. front: {
  7427. height: math.unit(14, "feet"),
  7428. weight: math.unit(1450, "kg"),
  7429. capacity: math.unit(15, "people"),
  7430. name: "Front",
  7431. image: {
  7432. source: "./media/characters/aura-starwind/front.svg",
  7433. extra: 1455 / 1335
  7434. }
  7435. },
  7436. side: {
  7437. height: math.unit(14, "feet"),
  7438. weight: math.unit(1450, "kg"),
  7439. capacity: math.unit(15, "people"),
  7440. name: "Side",
  7441. image: {
  7442. source: "./media/characters/aura-starwind/side.svg",
  7443. extra: 1654 / 1497
  7444. }
  7445. },
  7446. taur: {
  7447. height: math.unit(18, "feet"),
  7448. weight: math.unit(5500, "kg"),
  7449. capacity: math.unit(50, "people"),
  7450. name: "Taur",
  7451. image: {
  7452. source: "./media/characters/aura-starwind/taur.svg",
  7453. extra: 1760 / 1650
  7454. }
  7455. },
  7456. feral: {
  7457. height: math.unit(46, "feet"),
  7458. weight: math.unit(25000, "kg"),
  7459. capacity: math.unit(120, "people"),
  7460. name: "Feral",
  7461. image: {
  7462. source: "./media/characters/aura-starwind/feral.svg"
  7463. }
  7464. },
  7465. },
  7466. [
  7467. {
  7468. name: "Normal",
  7469. height: math.unit(14, "feet"),
  7470. default: true
  7471. },
  7472. {
  7473. name: "Macro",
  7474. height: math.unit(50, "meters")
  7475. },
  7476. {
  7477. name: "Megamacro",
  7478. height: math.unit(5000, "meters")
  7479. },
  7480. {
  7481. name: "Gigamacro",
  7482. height: math.unit(100000, "kilometers")
  7483. },
  7484. ]
  7485. ))
  7486. characterMakers.push(() => makeCharacter(
  7487. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7488. {
  7489. front: {
  7490. height: math.unit(2 + 7 / 12, "feet"),
  7491. weight: math.unit(32, "lbs"),
  7492. name: "Front",
  7493. image: {
  7494. source: "./media/characters/rivet/front.svg",
  7495. extra: 1716 / 1658,
  7496. bottom: 0.03
  7497. }
  7498. },
  7499. foot: {
  7500. height: math.unit(0.551, "feet"),
  7501. name: "Rivet's Foot",
  7502. image: {
  7503. source: "./media/characters/rivet/foot.svg"
  7504. },
  7505. rename: true
  7506. }
  7507. },
  7508. [
  7509. {
  7510. name: "Micro",
  7511. height: math.unit(1.5, "inches"),
  7512. },
  7513. {
  7514. name: "Normal",
  7515. height: math.unit(2 + 7 / 12, "feet"),
  7516. default: true
  7517. },
  7518. {
  7519. name: "Macro",
  7520. height: math.unit(85, "feet")
  7521. },
  7522. {
  7523. name: "Megamacro",
  7524. height: math.unit(2.2, "km")
  7525. }
  7526. ]
  7527. ))
  7528. characterMakers.push(() => makeCharacter(
  7529. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7530. {
  7531. front: {
  7532. height: math.unit(5 + 9 / 12, "feet"),
  7533. weight: math.unit(150, "lbs"),
  7534. name: "Front",
  7535. image: {
  7536. source: "./media/characters/coffee/front.svg",
  7537. extra: 3666 / 3032,
  7538. bottom: 0.04
  7539. }
  7540. },
  7541. foot: {
  7542. height: math.unit(1.29, "feet"),
  7543. name: "Foot",
  7544. image: {
  7545. source: "./media/characters/coffee/foot.svg"
  7546. }
  7547. },
  7548. },
  7549. [
  7550. {
  7551. name: "Micro",
  7552. height: math.unit(2, "inches"),
  7553. },
  7554. {
  7555. name: "Normal",
  7556. height: math.unit(5 + 9 / 12, "feet"),
  7557. default: true
  7558. },
  7559. {
  7560. name: "Macro",
  7561. height: math.unit(800, "feet")
  7562. },
  7563. {
  7564. name: "Megamacro",
  7565. height: math.unit(25, "miles")
  7566. }
  7567. ]
  7568. ))
  7569. characterMakers.push(() => makeCharacter(
  7570. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7571. {
  7572. front: {
  7573. height: math.unit(6, "feet"),
  7574. weight: math.unit(200, "lbs"),
  7575. name: "Front",
  7576. image: {
  7577. source: "./media/characters/chari-gal/front.svg",
  7578. extra: 1568 / 1385,
  7579. bottom: 0.047
  7580. }
  7581. },
  7582. gigantamax: {
  7583. height: math.unit(6 * 16, "feet"),
  7584. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7585. name: "Gigantamax",
  7586. image: {
  7587. source: "./media/characters/chari-gal/gigantamax.svg",
  7588. extra: 1124 / 888,
  7589. bottom: 0.03
  7590. }
  7591. },
  7592. },
  7593. [
  7594. {
  7595. name: "Normal",
  7596. height: math.unit(5 + 7 / 12, "feet")
  7597. },
  7598. {
  7599. name: "Macro",
  7600. height: math.unit(200, "feet"),
  7601. default: true
  7602. }
  7603. ]
  7604. ))
  7605. characterMakers.push(() => makeCharacter(
  7606. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7607. {
  7608. front: {
  7609. height: math.unit(6, "feet"),
  7610. weight: math.unit(150, "lbs"),
  7611. name: "Front",
  7612. image: {
  7613. source: "./media/characters/nova/front.svg",
  7614. extra: 5000 / 4722,
  7615. bottom: 0.02
  7616. }
  7617. }
  7618. },
  7619. [
  7620. {
  7621. name: "Micro-",
  7622. height: math.unit(0.8, "inches")
  7623. },
  7624. {
  7625. name: "Micro",
  7626. height: math.unit(2, "inches"),
  7627. default: true
  7628. },
  7629. ]
  7630. ))
  7631. characterMakers.push(() => makeCharacter(
  7632. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7633. {
  7634. front: {
  7635. height: math.unit(3 + 1 / 12, "feet"),
  7636. weight: math.unit(21.7, "lbs"),
  7637. name: "Front",
  7638. image: {
  7639. source: "./media/characters/argent/front.svg",
  7640. extra: 1471 / 1331,
  7641. bottom: 100.8 / 1575.5
  7642. }
  7643. }
  7644. },
  7645. [
  7646. {
  7647. name: "Micro",
  7648. height: math.unit(2, "inches")
  7649. },
  7650. {
  7651. name: "Normal",
  7652. height: math.unit(3 + 1 / 12, "feet"),
  7653. default: true
  7654. },
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(120, "feet")
  7658. },
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7663. {
  7664. lamp: {
  7665. height: math.unit(7 * 1559 / 989, "feet"),
  7666. name: "Magic Lamp",
  7667. image: {
  7668. source: "./media/characters/mira-al-cul/lamp.svg",
  7669. extra: 1617 / 1559
  7670. }
  7671. },
  7672. front: {
  7673. height: math.unit(7, "feet"),
  7674. name: "Front",
  7675. image: {
  7676. source: "./media/characters/mira-al-cul/front.svg",
  7677. extra: 1044 / 990
  7678. }
  7679. },
  7680. },
  7681. [
  7682. {
  7683. name: "Heavily Restricted",
  7684. height: math.unit(7 * 1559 / 989, "feet")
  7685. },
  7686. {
  7687. name: "Freshly Freed",
  7688. height: math.unit(50 * 1559 / 989, "feet")
  7689. },
  7690. {
  7691. name: "World Encompassing",
  7692. height: math.unit(10000 * 1559 / 989, "miles")
  7693. },
  7694. {
  7695. name: "Galactic",
  7696. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7697. },
  7698. {
  7699. name: "Palmed Universe",
  7700. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7701. default: true
  7702. },
  7703. {
  7704. name: "Multiversal Matriarch",
  7705. height: math.unit(8.87e10, "yottameters")
  7706. },
  7707. {
  7708. name: "Void Mother",
  7709. height: math.unit(3.14e110, "yottaparsecs")
  7710. },
  7711. {
  7712. name: "Toying with Transcendence",
  7713. height: math.unit(1e307, "meters")
  7714. },
  7715. ]
  7716. ))
  7717. characterMakers.push(() => makeCharacter(
  7718. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7719. {
  7720. front: {
  7721. height: math.unit(17 + 1 / 12, "feet"),
  7722. weight: math.unit(476.2 * 5, "lbs"),
  7723. name: "Front",
  7724. image: {
  7725. source: "./media/characters/kuro-shi-uchū/front.svg",
  7726. extra: 2329 / 1835,
  7727. bottom: 0.02
  7728. }
  7729. },
  7730. },
  7731. [
  7732. {
  7733. name: "Micro",
  7734. height: math.unit(2, "inches")
  7735. },
  7736. {
  7737. name: "Normal",
  7738. height: math.unit(12, "meters")
  7739. },
  7740. {
  7741. name: "Planetary",
  7742. height: math.unit(0.00929, "AU"),
  7743. default: true
  7744. },
  7745. {
  7746. name: "Universal",
  7747. height: math.unit(20, "gigaparsecs")
  7748. },
  7749. ]
  7750. ))
  7751. characterMakers.push(() => makeCharacter(
  7752. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7753. {
  7754. front: {
  7755. height: math.unit(5 + 2 / 12, "feet"),
  7756. weight: math.unit(120, "lbs"),
  7757. name: "Front",
  7758. image: {
  7759. source: "./media/characters/katherine/front.svg",
  7760. extra: 2075 / 1969
  7761. }
  7762. },
  7763. dress: {
  7764. height: math.unit(5 + 2 / 12, "feet"),
  7765. weight: math.unit(120, "lbs"),
  7766. name: "Dress",
  7767. image: {
  7768. source: "./media/characters/katherine/dress.svg",
  7769. extra: 2258 / 2064
  7770. }
  7771. },
  7772. },
  7773. [
  7774. {
  7775. name: "Micro",
  7776. height: math.unit(1, "inches"),
  7777. default: true
  7778. },
  7779. {
  7780. name: "Normal",
  7781. height: math.unit(5 + 2 / 12, "feet")
  7782. },
  7783. {
  7784. name: "Macro",
  7785. height: math.unit(100, "meters")
  7786. },
  7787. {
  7788. name: "Megamacro",
  7789. height: math.unit(80, "miles")
  7790. },
  7791. ]
  7792. ))
  7793. characterMakers.push(() => makeCharacter(
  7794. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7795. {
  7796. front: {
  7797. height: math.unit(7 + 8 / 12, "feet"),
  7798. weight: math.unit(250, "lbs"),
  7799. name: "Front",
  7800. image: {
  7801. source: "./media/characters/yevis/front.svg",
  7802. extra: 1938 / 1755
  7803. }
  7804. }
  7805. },
  7806. [
  7807. {
  7808. name: "Mortal",
  7809. height: math.unit(7 + 8 / 12, "feet")
  7810. },
  7811. {
  7812. name: "Battle",
  7813. height: math.unit(25 + 11 / 12, "feet")
  7814. },
  7815. {
  7816. name: "Wrath",
  7817. height: math.unit(1654 + 11 / 12, "feet")
  7818. },
  7819. {
  7820. name: "Planet Destroyer",
  7821. height: math.unit(12000, "miles")
  7822. },
  7823. {
  7824. name: "Galaxy Conqueror",
  7825. height: math.unit(1.45, "zettameters"),
  7826. default: true
  7827. },
  7828. {
  7829. name: "Universal War",
  7830. height: math.unit(184, "gigaparsecs")
  7831. },
  7832. {
  7833. name: "Eternity War",
  7834. height: math.unit(1.98e55, "yottaparsecs")
  7835. },
  7836. ]
  7837. ))
  7838. characterMakers.push(() => makeCharacter(
  7839. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7840. {
  7841. front: {
  7842. height: math.unit(5 + 8 / 12, "feet"),
  7843. weight: math.unit(63, "kg"),
  7844. name: "Front",
  7845. image: {
  7846. source: "./media/characters/xavier/front.svg",
  7847. extra: 944 / 883
  7848. }
  7849. },
  7850. frontStretch: {
  7851. height: math.unit(5 + 8 / 12, "feet"),
  7852. weight: math.unit(63, "kg"),
  7853. name: "Stretching",
  7854. image: {
  7855. source: "./media/characters/xavier/front-stretch.svg",
  7856. extra: 962 / 820
  7857. }
  7858. },
  7859. },
  7860. [
  7861. {
  7862. name: "Normal",
  7863. height: math.unit(5 + 8 / 12, "feet")
  7864. },
  7865. {
  7866. name: "Macro",
  7867. height: math.unit(100, "meters"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "McLargeHuge",
  7872. height: math.unit(10, "miles")
  7873. },
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(5 + 5 / 12, "feet"),
  7881. weight: math.unit(150, "lb"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/joshii/front.svg",
  7885. extra: 765/653,
  7886. bottom: 51/816
  7887. }
  7888. },
  7889. foot: {
  7890. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7891. name: "Foot",
  7892. image: {
  7893. source: "./media/characters/joshii/foot.svg"
  7894. }
  7895. },
  7896. },
  7897. [
  7898. {
  7899. name: "Micro",
  7900. height: math.unit(2, "inches")
  7901. },
  7902. {
  7903. name: "Normal",
  7904. height: math.unit(5 + 5 / 12, "feet"),
  7905. default: true
  7906. },
  7907. {
  7908. name: "Macro",
  7909. height: math.unit(785, "feet")
  7910. },
  7911. {
  7912. name: "Megamacro",
  7913. height: math.unit(24.5, "miles")
  7914. },
  7915. ]
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7919. {
  7920. front: {
  7921. height: math.unit(6, "feet"),
  7922. weight: math.unit(150, "lb"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/goddess-elizabeth/front.svg",
  7926. extra: 1800 / 1525,
  7927. bottom: 0.005
  7928. }
  7929. },
  7930. foot: {
  7931. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7932. name: "Foot",
  7933. image: {
  7934. source: "./media/characters/goddess-elizabeth/foot.svg"
  7935. }
  7936. },
  7937. mouth: {
  7938. height: math.unit(6, "feet"),
  7939. name: "Mouth",
  7940. image: {
  7941. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7942. }
  7943. },
  7944. },
  7945. [
  7946. {
  7947. name: "Micro",
  7948. height: math.unit(12, "feet")
  7949. },
  7950. {
  7951. name: "Normal",
  7952. height: math.unit(80, "miles"),
  7953. default: true
  7954. },
  7955. {
  7956. name: "Macro",
  7957. height: math.unit(15000, "parsecs")
  7958. },
  7959. ]
  7960. ))
  7961. characterMakers.push(() => makeCharacter(
  7962. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7963. {
  7964. front: {
  7965. height: math.unit(5 + 9 / 12, "feet"),
  7966. weight: math.unit(144, "lb"),
  7967. name: "Front",
  7968. image: {
  7969. source: "./media/characters/kara/front.svg"
  7970. }
  7971. },
  7972. feet: {
  7973. height: math.unit(6 / 6.765, "feet"),
  7974. name: "Kara's Feet",
  7975. rename: true,
  7976. image: {
  7977. source: "./media/characters/kara/feet.svg"
  7978. }
  7979. },
  7980. },
  7981. [
  7982. {
  7983. name: "Normal",
  7984. height: math.unit(5 + 9 / 12, "feet")
  7985. },
  7986. {
  7987. name: "Macro",
  7988. height: math.unit(174, "feet"),
  7989. default: true
  7990. },
  7991. ]
  7992. ))
  7993. characterMakers.push(() => makeCharacter(
  7994. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7995. {
  7996. front: {
  7997. height: math.unit(18, "feet"),
  7998. weight: math.unit(4050, "lb"),
  7999. name: "Front",
  8000. image: {
  8001. source: "./media/characters/tyrone/front.svg",
  8002. extra: 2520 / 2402,
  8003. bottom: 0.025
  8004. }
  8005. },
  8006. },
  8007. [
  8008. {
  8009. name: "Normal",
  8010. height: math.unit(18, "feet"),
  8011. default: true
  8012. },
  8013. {
  8014. name: "Macro",
  8015. height: math.unit(300, "feet")
  8016. },
  8017. ]
  8018. ))
  8019. characterMakers.push(() => makeCharacter(
  8020. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8021. {
  8022. front: {
  8023. height: math.unit(7 + 8 / 12, "feet"),
  8024. weight: math.unit(120, "lb"),
  8025. name: "Front",
  8026. image: {
  8027. source: "./media/characters/danny/front.svg",
  8028. extra: 1490 / 1350
  8029. }
  8030. },
  8031. back: {
  8032. height: math.unit(7 + 8 / 12, "feet"),
  8033. weight: math.unit(120, "lb"),
  8034. name: "Back",
  8035. image: {
  8036. source: "./media/characters/danny/back.svg",
  8037. extra: 1490 / 1350
  8038. }
  8039. },
  8040. },
  8041. [
  8042. {
  8043. name: "Normal",
  8044. height: math.unit(7 + 8 / 12, "feet"),
  8045. default: true
  8046. },
  8047. ]
  8048. ))
  8049. characterMakers.push(() => makeCharacter(
  8050. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8051. {
  8052. front: {
  8053. height: math.unit(3.5, "inches"),
  8054. weight: math.unit(19, "grams"),
  8055. name: "Front",
  8056. image: {
  8057. source: "./media/characters/mallow/front.svg",
  8058. extra: 471 / 431
  8059. }
  8060. },
  8061. back: {
  8062. height: math.unit(3.5, "inches"),
  8063. weight: math.unit(19, "grams"),
  8064. name: "Back",
  8065. image: {
  8066. source: "./media/characters/mallow/back.svg",
  8067. extra: 471 / 431
  8068. }
  8069. },
  8070. },
  8071. [
  8072. {
  8073. name: "Normal",
  8074. height: math.unit(3.5, "inches"),
  8075. default: true
  8076. },
  8077. ]
  8078. ))
  8079. characterMakers.push(() => makeCharacter(
  8080. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8081. {
  8082. front: {
  8083. height: math.unit(9, "feet"),
  8084. weight: math.unit(230, "kg"),
  8085. name: "Front",
  8086. image: {
  8087. source: "./media/characters/starry-aqua/front.svg"
  8088. }
  8089. },
  8090. back: {
  8091. height: math.unit(9, "feet"),
  8092. weight: math.unit(230, "kg"),
  8093. name: "Back",
  8094. image: {
  8095. source: "./media/characters/starry-aqua/back.svg"
  8096. }
  8097. },
  8098. hand: {
  8099. height: math.unit(9 * 0.1168, "feet"),
  8100. name: "Hand",
  8101. image: {
  8102. source: "./media/characters/starry-aqua/hand.svg"
  8103. }
  8104. },
  8105. foot: {
  8106. height: math.unit(9 * 0.18, "feet"),
  8107. name: "Foot",
  8108. image: {
  8109. source: "./media/characters/starry-aqua/foot.svg"
  8110. }
  8111. }
  8112. },
  8113. [
  8114. {
  8115. name: "Micro",
  8116. height: math.unit(3, "inches")
  8117. },
  8118. {
  8119. name: "Normal",
  8120. height: math.unit(9, "feet")
  8121. },
  8122. {
  8123. name: "Macro",
  8124. height: math.unit(300, "feet"),
  8125. default: true
  8126. },
  8127. {
  8128. name: "Megamacro",
  8129. height: math.unit(3200, "feet")
  8130. }
  8131. ]
  8132. ))
  8133. characterMakers.push(() => makeCharacter(
  8134. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8135. {
  8136. front: {
  8137. height: math.unit(6, "feet"),
  8138. weight: math.unit(230, "lb"),
  8139. name: "Front",
  8140. image: {
  8141. source: "./media/characters/luka/front.svg",
  8142. extra: 1,
  8143. bottom: 0.025
  8144. }
  8145. },
  8146. },
  8147. [
  8148. {
  8149. name: "Normal",
  8150. height: math.unit(12 + 8 / 12, "feet"),
  8151. default: true
  8152. },
  8153. {
  8154. name: "Minimacro",
  8155. height: math.unit(20, "feet")
  8156. },
  8157. {
  8158. name: "Macro",
  8159. height: math.unit(250, "feet")
  8160. },
  8161. {
  8162. name: "Megamacro",
  8163. height: math.unit(5, "miles")
  8164. },
  8165. {
  8166. name: "Gigamacro",
  8167. height: math.unit(8000, "miles")
  8168. },
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8173. {
  8174. front: {
  8175. height: math.unit(6, "feet"),
  8176. weight: math.unit(150, "lb"),
  8177. name: "Front",
  8178. image: {
  8179. source: "./media/characters/natalie-nightring/front.svg",
  8180. extra: 1,
  8181. bottom: 0.06
  8182. }
  8183. },
  8184. },
  8185. [
  8186. {
  8187. name: "Uh Oh",
  8188. height: math.unit(0.1, "mm")
  8189. },
  8190. {
  8191. name: "Small",
  8192. height: math.unit(3, "inches")
  8193. },
  8194. {
  8195. name: "Human Scale",
  8196. height: math.unit(6, "feet")
  8197. },
  8198. {
  8199. name: "Librarian",
  8200. height: math.unit(50, "feet"),
  8201. default: true
  8202. },
  8203. {
  8204. name: "Immense",
  8205. height: math.unit(200, "miles")
  8206. },
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8211. {
  8212. front: {
  8213. height: math.unit(6, "feet"),
  8214. weight: math.unit(180, "lbs"),
  8215. name: "Front",
  8216. image: {
  8217. source: "./media/characters/danni-rosie/front.svg",
  8218. extra: 1260 / 1128,
  8219. bottom: 0.022
  8220. }
  8221. },
  8222. },
  8223. [
  8224. {
  8225. name: "Micro",
  8226. height: math.unit(2, "inches"),
  8227. default: true
  8228. },
  8229. ]
  8230. ))
  8231. characterMakers.push(() => makeCharacter(
  8232. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8233. {
  8234. front: {
  8235. height: math.unit(5 + 9 / 12, "feet"),
  8236. weight: math.unit(220, "lb"),
  8237. name: "Front",
  8238. image: {
  8239. source: "./media/characters/samantha-kruse/front.svg",
  8240. extra: (985 / 935),
  8241. bottom: 0.03
  8242. }
  8243. },
  8244. frontUndressed: {
  8245. height: math.unit(5 + 9 / 12, "feet"),
  8246. weight: math.unit(220, "lb"),
  8247. name: "Front (Undressed)",
  8248. image: {
  8249. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8250. extra: (973 / 923),
  8251. bottom: 0.025
  8252. }
  8253. },
  8254. fat: {
  8255. height: math.unit(5 + 9 / 12, "feet"),
  8256. weight: math.unit(900, "lb"),
  8257. name: "Front (Fat)",
  8258. image: {
  8259. source: "./media/characters/samantha-kruse/fat.svg",
  8260. extra: 2688 / 2561
  8261. }
  8262. },
  8263. },
  8264. [
  8265. {
  8266. name: "Normal",
  8267. height: math.unit(5 + 9 / 12, "feet"),
  8268. default: true
  8269. }
  8270. ]
  8271. ))
  8272. characterMakers.push(() => makeCharacter(
  8273. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8274. {
  8275. back: {
  8276. height: math.unit(5 + 4 / 12, "feet"),
  8277. weight: math.unit(4963, "lb"),
  8278. name: "Back",
  8279. image: {
  8280. source: "./media/characters/amelia-rosie/back.svg",
  8281. extra: 1113 / 963,
  8282. bottom: 0.01
  8283. }
  8284. },
  8285. },
  8286. [
  8287. {
  8288. name: "Level 0",
  8289. height: math.unit(5 + 4 / 12, "feet")
  8290. },
  8291. {
  8292. name: "Level 1",
  8293. height: math.unit(164597, "feet"),
  8294. default: true
  8295. },
  8296. {
  8297. name: "Level 2",
  8298. height: math.unit(956243, "miles")
  8299. },
  8300. {
  8301. name: "Level 3",
  8302. height: math.unit(29421709423, "miles")
  8303. },
  8304. {
  8305. name: "Level 4",
  8306. height: math.unit(154, "lightyears")
  8307. },
  8308. {
  8309. name: "Level 5",
  8310. height: math.unit(4738272, "lightyears")
  8311. },
  8312. {
  8313. name: "Level 6",
  8314. height: math.unit(145787152896, "lightyears")
  8315. },
  8316. ]
  8317. ))
  8318. characterMakers.push(() => makeCharacter(
  8319. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8320. {
  8321. front: {
  8322. height: math.unit(5 + 11 / 12, "feet"),
  8323. weight: math.unit(65, "kg"),
  8324. name: "Front",
  8325. image: {
  8326. source: "./media/characters/rook-kitara/front.svg",
  8327. extra: 1347 / 1274,
  8328. bottom: 0.005
  8329. }
  8330. },
  8331. },
  8332. [
  8333. {
  8334. name: "Totally Unfair",
  8335. height: math.unit(1.8, "mm")
  8336. },
  8337. {
  8338. name: "Lap Rookie",
  8339. height: math.unit(1.4, "feet")
  8340. },
  8341. {
  8342. name: "Normal",
  8343. height: math.unit(5 + 11 / 12, "feet"),
  8344. default: true
  8345. },
  8346. {
  8347. name: "How Did This Happen",
  8348. height: math.unit(80, "miles")
  8349. }
  8350. ]
  8351. ))
  8352. characterMakers.push(() => makeCharacter(
  8353. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8354. {
  8355. front: {
  8356. height: math.unit(7, "feet"),
  8357. weight: math.unit(300, "lb"),
  8358. name: "Front",
  8359. image: {
  8360. source: "./media/characters/pisces/front.svg",
  8361. extra: 2255 / 2115,
  8362. bottom: 0.03
  8363. }
  8364. },
  8365. back: {
  8366. height: math.unit(7, "feet"),
  8367. weight: math.unit(300, "lb"),
  8368. name: "Back",
  8369. image: {
  8370. source: "./media/characters/pisces/back.svg",
  8371. extra: 2146 / 2055,
  8372. bottom: 0.04
  8373. }
  8374. },
  8375. },
  8376. [
  8377. {
  8378. name: "Normal",
  8379. height: math.unit(7, "feet"),
  8380. default: true
  8381. },
  8382. {
  8383. name: "Swimming Pool",
  8384. height: math.unit(12.2, "meters")
  8385. },
  8386. {
  8387. name: "Olympic Swimming Pool",
  8388. height: math.unit(56.3, "meters")
  8389. },
  8390. {
  8391. name: "Lake Superior",
  8392. height: math.unit(93900, "meters")
  8393. },
  8394. {
  8395. name: "Mediterranean Sea",
  8396. height: math.unit(644457, "meters")
  8397. },
  8398. {
  8399. name: "World's Oceans",
  8400. height: math.unit(4567491, "meters")
  8401. },
  8402. ]
  8403. ))
  8404. characterMakers.push(() => makeCharacter(
  8405. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8406. {
  8407. front: {
  8408. height: math.unit(2.3, "meters"),
  8409. weight: math.unit(120, "kg"),
  8410. name: "Front",
  8411. image: {
  8412. source: "./media/characters/zelas/front.svg"
  8413. }
  8414. },
  8415. side: {
  8416. height: math.unit(2.3, "meters"),
  8417. weight: math.unit(120, "kg"),
  8418. name: "Side",
  8419. image: {
  8420. source: "./media/characters/zelas/side.svg"
  8421. }
  8422. },
  8423. back: {
  8424. height: math.unit(2.3, "meters"),
  8425. weight: math.unit(120, "kg"),
  8426. name: "Back",
  8427. image: {
  8428. source: "./media/characters/zelas/back.svg"
  8429. }
  8430. },
  8431. foot: {
  8432. height: math.unit(1.116, "feet"),
  8433. name: "Foot",
  8434. image: {
  8435. source: "./media/characters/zelas/foot.svg"
  8436. }
  8437. },
  8438. },
  8439. [
  8440. {
  8441. name: "Normal",
  8442. height: math.unit(2.3, "meters")
  8443. },
  8444. {
  8445. name: "Macro",
  8446. height: math.unit(30, "meters"),
  8447. default: true
  8448. },
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8453. {
  8454. front: {
  8455. height: math.unit(1, "inch"),
  8456. weight: math.unit(0.21, "grams"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/talbot/front.svg",
  8460. extra: 594 / 544
  8461. }
  8462. },
  8463. },
  8464. [
  8465. {
  8466. name: "Micro",
  8467. height: math.unit(1, "inch"),
  8468. default: true
  8469. },
  8470. ]
  8471. ))
  8472. characterMakers.push(() => makeCharacter(
  8473. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8474. {
  8475. front: {
  8476. height: math.unit(3 + 3 / 12, "feet"),
  8477. weight: math.unit(51.8, "lb"),
  8478. name: "Front",
  8479. image: {
  8480. source: "./media/characters/fliss/front.svg",
  8481. extra: 840 / 640
  8482. }
  8483. },
  8484. },
  8485. [
  8486. {
  8487. name: "Teeny Tiny",
  8488. height: math.unit(1, "mm")
  8489. },
  8490. {
  8491. name: "Small",
  8492. height: math.unit(1, "inch"),
  8493. default: true
  8494. },
  8495. {
  8496. name: "Standard Sylveon",
  8497. height: math.unit(3 + 3 / 12, "feet")
  8498. },
  8499. {
  8500. name: "Large Nuisance",
  8501. height: math.unit(33, "feet")
  8502. },
  8503. {
  8504. name: "City Filler",
  8505. height: math.unit(3000, "feet")
  8506. },
  8507. {
  8508. name: "New Horizon",
  8509. height: math.unit(6000, "miles")
  8510. },
  8511. ]
  8512. ))
  8513. characterMakers.push(() => makeCharacter(
  8514. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8515. {
  8516. front: {
  8517. height: math.unit(5, "cm"),
  8518. weight: math.unit(1.94, "g"),
  8519. name: "Front",
  8520. image: {
  8521. source: "./media/characters/fleta/front.svg",
  8522. extra: 835 / 803
  8523. }
  8524. },
  8525. back: {
  8526. height: math.unit(5, "cm"),
  8527. weight: math.unit(1.94, "g"),
  8528. name: "Back",
  8529. image: {
  8530. source: "./media/characters/fleta/back.svg",
  8531. extra: 835 / 803
  8532. }
  8533. },
  8534. },
  8535. [
  8536. {
  8537. name: "Micro",
  8538. height: math.unit(5, "cm"),
  8539. default: true
  8540. },
  8541. ]
  8542. ))
  8543. characterMakers.push(() => makeCharacter(
  8544. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8545. {
  8546. front: {
  8547. height: math.unit(6, "feet"),
  8548. weight: math.unit(225, "lb"),
  8549. name: "Front",
  8550. image: {
  8551. source: "./media/characters/dominic/front.svg",
  8552. extra: 1770 / 1620,
  8553. bottom: 0.025
  8554. }
  8555. },
  8556. back: {
  8557. height: math.unit(6, "feet"),
  8558. weight: math.unit(225, "lb"),
  8559. name: "Back",
  8560. image: {
  8561. source: "./media/characters/dominic/back.svg",
  8562. extra: 1745 / 1620,
  8563. bottom: 0.065
  8564. }
  8565. },
  8566. },
  8567. [
  8568. {
  8569. name: "Nano",
  8570. height: math.unit(0.1, "mm")
  8571. },
  8572. {
  8573. name: "Micro-",
  8574. height: math.unit(1, "mm")
  8575. },
  8576. {
  8577. name: "Micro",
  8578. height: math.unit(4, "inches")
  8579. },
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(6 + 4 / 12, "feet"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "Macro",
  8587. height: math.unit(115, "feet")
  8588. },
  8589. {
  8590. name: "Macro+",
  8591. height: math.unit(955, "feet")
  8592. },
  8593. {
  8594. name: "Megamacro",
  8595. height: math.unit(8990, "feet")
  8596. },
  8597. {
  8598. name: "Gigmacro",
  8599. height: math.unit(9310, "miles")
  8600. },
  8601. {
  8602. name: "Teramacro",
  8603. height: math.unit(1567005010, "miles")
  8604. },
  8605. {
  8606. name: "Examacro",
  8607. height: math.unit(1425, "parsecs")
  8608. },
  8609. ]
  8610. ))
  8611. characterMakers.push(() => makeCharacter(
  8612. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8613. {
  8614. front: {
  8615. height: math.unit(400, "feet"),
  8616. weight: math.unit(44444444, "lb"),
  8617. name: "Front",
  8618. image: {
  8619. source: "./media/characters/major-colonel/front.svg"
  8620. }
  8621. },
  8622. back: {
  8623. height: math.unit(400, "feet"),
  8624. weight: math.unit(44444444, "lb"),
  8625. name: "Back",
  8626. image: {
  8627. source: "./media/characters/major-colonel/back.svg"
  8628. }
  8629. },
  8630. },
  8631. [
  8632. {
  8633. name: "Macro",
  8634. height: math.unit(400, "feet"),
  8635. default: true
  8636. },
  8637. ]
  8638. ))
  8639. characterMakers.push(() => makeCharacter(
  8640. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8641. {
  8642. catFront: {
  8643. height: math.unit(6, "feet"),
  8644. weight: math.unit(120, "lb"),
  8645. name: "Front (Cat Side)",
  8646. image: {
  8647. source: "./media/characters/axel-lycan/cat-front.svg",
  8648. extra: 430 / 402,
  8649. bottom: 43 / 472.35
  8650. }
  8651. },
  8652. catBack: {
  8653. height: math.unit(6, "feet"),
  8654. weight: math.unit(120, "lb"),
  8655. name: "Back (Cat Side)",
  8656. image: {
  8657. source: "./media/characters/axel-lycan/cat-back.svg",
  8658. extra: 447 / 419,
  8659. bottom: 23.3 / 469
  8660. }
  8661. },
  8662. wolfFront: {
  8663. height: math.unit(6, "feet"),
  8664. weight: math.unit(120, "lb"),
  8665. name: "Front (Wolf Side)",
  8666. image: {
  8667. source: "./media/characters/axel-lycan/wolf-front.svg",
  8668. extra: 485 / 456,
  8669. bottom: 19 / 504
  8670. }
  8671. },
  8672. wolfBack: {
  8673. height: math.unit(6, "feet"),
  8674. weight: math.unit(120, "lb"),
  8675. name: "Back (Wolf Side)",
  8676. image: {
  8677. source: "./media/characters/axel-lycan/wolf-back.svg",
  8678. extra: 475 / 438,
  8679. bottom: 39.2 / 514
  8680. }
  8681. },
  8682. },
  8683. [
  8684. {
  8685. name: "Macro",
  8686. height: math.unit(1, "km"),
  8687. default: true
  8688. },
  8689. ]
  8690. ))
  8691. characterMakers.push(() => makeCharacter(
  8692. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8693. {
  8694. front: {
  8695. height: math.unit(5 + 9 / 12, "feet"),
  8696. weight: math.unit(175, "lb"),
  8697. name: "Front",
  8698. image: {
  8699. source: "./media/characters/vanrel-hyena/front.svg",
  8700. extra: 1086 / 1010,
  8701. bottom: 0.04
  8702. }
  8703. },
  8704. },
  8705. [
  8706. {
  8707. name: "Normal",
  8708. height: math.unit(5 + 9 / 12, "feet"),
  8709. default: true
  8710. },
  8711. ]
  8712. ))
  8713. characterMakers.push(() => makeCharacter(
  8714. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8715. {
  8716. front: {
  8717. height: math.unit(6, "feet"),
  8718. weight: math.unit(103, "lb"),
  8719. name: "Front",
  8720. image: {
  8721. source: "./media/characters/abbott-absol/front.svg",
  8722. extra: 2010 / 1842
  8723. }
  8724. },
  8725. },
  8726. [
  8727. {
  8728. name: "Megamicro",
  8729. height: math.unit(0.1, "mm")
  8730. },
  8731. {
  8732. name: "Micro",
  8733. height: math.unit(1, "inch")
  8734. },
  8735. {
  8736. name: "Normal",
  8737. height: math.unit(6, "feet"),
  8738. default: true
  8739. },
  8740. ]
  8741. ))
  8742. characterMakers.push(() => makeCharacter(
  8743. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8744. {
  8745. front: {
  8746. height: math.unit(6, "feet"),
  8747. weight: math.unit(264, "lb"),
  8748. name: "Front",
  8749. image: {
  8750. source: "./media/characters/hector/front.svg",
  8751. extra: 2280 / 2130,
  8752. bottom: 0.07
  8753. }
  8754. },
  8755. },
  8756. [
  8757. {
  8758. name: "Normal",
  8759. height: math.unit(12.25, "foot"),
  8760. default: true
  8761. },
  8762. {
  8763. name: "Macro",
  8764. height: math.unit(160, "feet")
  8765. },
  8766. ]
  8767. ))
  8768. characterMakers.push(() => makeCharacter(
  8769. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8770. {
  8771. front: {
  8772. height: math.unit(6, "feet"),
  8773. weight: math.unit(150, "lb"),
  8774. name: "Front",
  8775. image: {
  8776. source: "./media/characters/sal/front.svg",
  8777. extra: 1846 / 1699,
  8778. bottom: 0.04
  8779. }
  8780. },
  8781. },
  8782. [
  8783. {
  8784. name: "Megamacro",
  8785. height: math.unit(10, "miles"),
  8786. default: true
  8787. },
  8788. ]
  8789. ))
  8790. characterMakers.push(() => makeCharacter(
  8791. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8792. {
  8793. front: {
  8794. height: math.unit(3, "meters"),
  8795. weight: math.unit(450, "kg"),
  8796. name: "front",
  8797. image: {
  8798. source: "./media/characters/ranger/front.svg",
  8799. extra: 2401 / 2243,
  8800. bottom: 0.05
  8801. }
  8802. },
  8803. },
  8804. [
  8805. {
  8806. name: "Normal",
  8807. height: math.unit(3, "meters"),
  8808. default: true
  8809. },
  8810. ]
  8811. ))
  8812. characterMakers.push(() => makeCharacter(
  8813. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8814. {
  8815. front: {
  8816. height: math.unit(14, "feet"),
  8817. weight: math.unit(800, "kg"),
  8818. name: "Front",
  8819. image: {
  8820. source: "./media/characters/theresa/front.svg",
  8821. extra: 3575 / 3346,
  8822. bottom: 0.03
  8823. }
  8824. },
  8825. },
  8826. [
  8827. {
  8828. name: "Normal",
  8829. height: math.unit(14, "feet"),
  8830. default: true
  8831. },
  8832. ]
  8833. ))
  8834. characterMakers.push(() => makeCharacter(
  8835. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8836. {
  8837. front: {
  8838. height: math.unit(6, "feet"),
  8839. weight: math.unit(3, "kg"),
  8840. name: "Front",
  8841. image: {
  8842. source: "./media/characters/ine/front.svg",
  8843. extra: 678 / 539,
  8844. bottom: 0.023
  8845. }
  8846. },
  8847. },
  8848. [
  8849. {
  8850. name: "Normal",
  8851. height: math.unit(2.265, "feet"),
  8852. default: true
  8853. },
  8854. ]
  8855. ))
  8856. characterMakers.push(() => makeCharacter(
  8857. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8858. {
  8859. front: {
  8860. height: math.unit(5, "feet"),
  8861. weight: math.unit(30, "kg"),
  8862. name: "Front",
  8863. image: {
  8864. source: "./media/characters/vial/front.svg",
  8865. extra: 1365 / 1277,
  8866. bottom: 0.04
  8867. }
  8868. },
  8869. },
  8870. [
  8871. {
  8872. name: "Normal",
  8873. height: math.unit(5, "feet"),
  8874. default: true
  8875. },
  8876. ]
  8877. ))
  8878. characterMakers.push(() => makeCharacter(
  8879. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8880. {
  8881. side: {
  8882. height: math.unit(3.4, "meters"),
  8883. weight: math.unit(1000, "lb"),
  8884. name: "Side",
  8885. image: {
  8886. source: "./media/characters/rovoska/side.svg",
  8887. extra: 4403 / 1515
  8888. }
  8889. },
  8890. },
  8891. [
  8892. {
  8893. name: "Normal",
  8894. height: math.unit(3.4, "meters"),
  8895. default: true
  8896. },
  8897. ]
  8898. ))
  8899. characterMakers.push(() => makeCharacter(
  8900. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8901. {
  8902. front: {
  8903. height: math.unit(8, "feet"),
  8904. weight: math.unit(315, "lb"),
  8905. name: "Front",
  8906. image: {
  8907. source: "./media/characters/gunner-rotthbauer/front.svg"
  8908. }
  8909. },
  8910. back: {
  8911. height: math.unit(8, "feet"),
  8912. weight: math.unit(315, "lb"),
  8913. name: "Back",
  8914. image: {
  8915. source: "./media/characters/gunner-rotthbauer/back.svg"
  8916. }
  8917. },
  8918. },
  8919. [
  8920. {
  8921. name: "Micro",
  8922. height: math.unit(3.5, "inches")
  8923. },
  8924. {
  8925. name: "Normal",
  8926. height: math.unit(8, "feet"),
  8927. default: true
  8928. },
  8929. {
  8930. name: "Macro",
  8931. height: math.unit(250, "feet")
  8932. },
  8933. {
  8934. name: "Megamacro",
  8935. height: math.unit(1, "AU")
  8936. },
  8937. ]
  8938. ))
  8939. characterMakers.push(() => makeCharacter(
  8940. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8941. {
  8942. front: {
  8943. height: math.unit(5 + 5 / 12, "feet"),
  8944. weight: math.unit(140, "lb"),
  8945. name: "Front",
  8946. image: {
  8947. source: "./media/characters/allatia/front.svg",
  8948. extra: 1227 / 1180,
  8949. bottom: 0.027
  8950. }
  8951. },
  8952. },
  8953. [
  8954. {
  8955. name: "Normal",
  8956. height: math.unit(5 + 5 / 12, "feet")
  8957. },
  8958. {
  8959. name: "Macro",
  8960. height: math.unit(250, "feet"),
  8961. default: true
  8962. },
  8963. {
  8964. name: "Megamacro",
  8965. height: math.unit(8, "miles")
  8966. }
  8967. ]
  8968. ))
  8969. characterMakers.push(() => makeCharacter(
  8970. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8971. {
  8972. front: {
  8973. height: math.unit(6, "feet"),
  8974. weight: math.unit(120, "lb"),
  8975. name: "Front",
  8976. image: {
  8977. source: "./media/characters/tene/front.svg",
  8978. extra: 1728 / 1578,
  8979. bottom: 0.022
  8980. }
  8981. },
  8982. stomping: {
  8983. height: math.unit(2.025, "meters"),
  8984. weight: math.unit(120, "lb"),
  8985. name: "Stomping",
  8986. image: {
  8987. source: "./media/characters/tene/stomping.svg",
  8988. extra: 938 / 873,
  8989. bottom: 0.01
  8990. }
  8991. },
  8992. sitting: {
  8993. height: math.unit(1, "meter"),
  8994. weight: math.unit(120, "lb"),
  8995. name: "Sitting",
  8996. image: {
  8997. source: "./media/characters/tene/sitting.svg",
  8998. extra: 437 / 415,
  8999. bottom: 0.1
  9000. }
  9001. },
  9002. feral: {
  9003. height: math.unit(3.9, "feet"),
  9004. weight: math.unit(250, "lb"),
  9005. name: "Feral",
  9006. image: {
  9007. source: "./media/characters/tene/feral.svg",
  9008. extra: 717 / 458,
  9009. bottom: 0.179
  9010. }
  9011. },
  9012. },
  9013. [
  9014. {
  9015. name: "Normal",
  9016. height: math.unit(6, "feet")
  9017. },
  9018. {
  9019. name: "Macro",
  9020. height: math.unit(300, "feet"),
  9021. default: true
  9022. },
  9023. {
  9024. name: "Megamacro",
  9025. height: math.unit(5, "miles")
  9026. },
  9027. ]
  9028. ))
  9029. characterMakers.push(() => makeCharacter(
  9030. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9031. {
  9032. side: {
  9033. height: math.unit(6, "feet"),
  9034. name: "Side",
  9035. image: {
  9036. source: "./media/characters/evander/side.svg",
  9037. extra: 877 / 477
  9038. }
  9039. },
  9040. },
  9041. [
  9042. {
  9043. name: "Normal",
  9044. height: math.unit(0.83, "meters"),
  9045. default: true
  9046. },
  9047. ]
  9048. ))
  9049. characterMakers.push(() => makeCharacter(
  9050. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9051. {
  9052. front: {
  9053. height: math.unit(12, "feet"),
  9054. weight: math.unit(1000, "lb"),
  9055. name: "Front",
  9056. image: {
  9057. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9058. extra: 1762 / 1611
  9059. }
  9060. },
  9061. back: {
  9062. height: math.unit(12, "feet"),
  9063. weight: math.unit(1000, "lb"),
  9064. name: "Back",
  9065. image: {
  9066. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9067. extra: 1762 / 1611
  9068. }
  9069. },
  9070. },
  9071. [
  9072. {
  9073. name: "Normal",
  9074. height: math.unit(12, "feet"),
  9075. default: true
  9076. },
  9077. {
  9078. name: "Kaiju",
  9079. height: math.unit(150, "feet")
  9080. },
  9081. ]
  9082. ))
  9083. characterMakers.push(() => makeCharacter(
  9084. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9085. {
  9086. front: {
  9087. height: math.unit(6, "feet"),
  9088. weight: math.unit(150, "lb"),
  9089. name: "Front",
  9090. image: {
  9091. source: "./media/characters/zero-alurus/front.svg"
  9092. }
  9093. },
  9094. back: {
  9095. height: math.unit(6, "feet"),
  9096. weight: math.unit(150, "lb"),
  9097. name: "Back",
  9098. image: {
  9099. source: "./media/characters/zero-alurus/back.svg"
  9100. }
  9101. },
  9102. },
  9103. [
  9104. {
  9105. name: "Normal",
  9106. height: math.unit(5 + 10 / 12, "feet")
  9107. },
  9108. {
  9109. name: "Macro",
  9110. height: math.unit(60, "feet"),
  9111. default: true
  9112. },
  9113. {
  9114. name: "Macro+",
  9115. height: math.unit(450, "feet")
  9116. },
  9117. ]
  9118. ))
  9119. characterMakers.push(() => makeCharacter(
  9120. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9121. {
  9122. front: {
  9123. height: math.unit(6, "feet"),
  9124. weight: math.unit(200, "lb"),
  9125. name: "Front",
  9126. image: {
  9127. source: "./media/characters/mega-shi/front.svg",
  9128. extra: 1279 / 1250,
  9129. bottom: 0.02
  9130. }
  9131. },
  9132. back: {
  9133. height: math.unit(6, "feet"),
  9134. weight: math.unit(200, "lb"),
  9135. name: "Back",
  9136. image: {
  9137. source: "./media/characters/mega-shi/back.svg",
  9138. extra: 1279 / 1250,
  9139. bottom: 0.02
  9140. }
  9141. },
  9142. },
  9143. [
  9144. {
  9145. name: "Micro",
  9146. height: math.unit(16 + 6 / 12, "feet")
  9147. },
  9148. {
  9149. name: "Third Dimension",
  9150. height: math.unit(40, "meters")
  9151. },
  9152. {
  9153. name: "Normal",
  9154. height: math.unit(660, "feet"),
  9155. default: true
  9156. },
  9157. {
  9158. name: "Megamacro",
  9159. height: math.unit(10, "miles")
  9160. },
  9161. {
  9162. name: "Planetary Launch",
  9163. height: math.unit(500, "miles")
  9164. },
  9165. {
  9166. name: "Interstellar",
  9167. height: math.unit(1e9, "miles")
  9168. },
  9169. {
  9170. name: "Leaving the Universe",
  9171. height: math.unit(1, "gigaparsec")
  9172. },
  9173. {
  9174. name: "Travelling Universes",
  9175. height: math.unit(30e15, "parsecs")
  9176. },
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9181. {
  9182. front: {
  9183. height: math.unit(6, "feet"),
  9184. weight: math.unit(150, "lb"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/odyssey/front.svg",
  9188. extra: 1782 / 1582,
  9189. bottom: 0.01
  9190. }
  9191. },
  9192. side: {
  9193. height: math.unit(5.7, "feet"),
  9194. weight: math.unit(140, "lb"),
  9195. name: "Side",
  9196. image: {
  9197. source: "./media/characters/odyssey/side.svg",
  9198. extra: 6462 / 5700
  9199. }
  9200. },
  9201. },
  9202. [
  9203. {
  9204. name: "Normal",
  9205. height: math.unit(5 + 4 / 12, "feet")
  9206. },
  9207. {
  9208. name: "Macro",
  9209. height: math.unit(1, "km")
  9210. },
  9211. {
  9212. name: "Megamacro",
  9213. height: math.unit(3000, "km")
  9214. },
  9215. {
  9216. name: "Gigamacro",
  9217. height: math.unit(1, "AU"),
  9218. default: true
  9219. },
  9220. {
  9221. name: "Omniversal",
  9222. height: math.unit(100e14, "lightyears")
  9223. },
  9224. ]
  9225. ))
  9226. characterMakers.push(() => makeCharacter(
  9227. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9228. {
  9229. front: {
  9230. height: math.unit(6, "feet"),
  9231. weight: math.unit(300, "lb"),
  9232. name: "Front",
  9233. image: {
  9234. source: "./media/characters/mekuto/front.svg",
  9235. extra: 921 / 832,
  9236. bottom: 0.03
  9237. }
  9238. },
  9239. hand: {
  9240. height: math.unit(6 / 10.24, "feet"),
  9241. name: "Hand",
  9242. image: {
  9243. source: "./media/characters/mekuto/hand.svg"
  9244. }
  9245. },
  9246. foot: {
  9247. height: math.unit(6 / 5.05, "feet"),
  9248. name: "Foot",
  9249. image: {
  9250. source: "./media/characters/mekuto/foot.svg"
  9251. }
  9252. },
  9253. },
  9254. [
  9255. {
  9256. name: "Minimicro",
  9257. height: math.unit(0.2, "inches")
  9258. },
  9259. {
  9260. name: "Micro",
  9261. height: math.unit(1.5, "inches")
  9262. },
  9263. {
  9264. name: "Normal",
  9265. height: math.unit(5 + 11 / 12, "feet"),
  9266. default: true
  9267. },
  9268. {
  9269. name: "Minimacro",
  9270. height: math.unit(17 + 9 / 12, "feet")
  9271. },
  9272. {
  9273. name: "Macro",
  9274. height: math.unit(177.5, "feet")
  9275. },
  9276. {
  9277. name: "Megamacro",
  9278. height: math.unit(152, "miles")
  9279. },
  9280. ]
  9281. ))
  9282. characterMakers.push(() => makeCharacter(
  9283. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9284. {
  9285. front: {
  9286. height: math.unit(6.5, "inches"),
  9287. weight: math.unit(13, "oz"),
  9288. name: "Front",
  9289. image: {
  9290. source: "./media/characters/dafydd-tomos/front.svg",
  9291. extra: 2990 / 2603,
  9292. bottom: 0.03
  9293. }
  9294. },
  9295. },
  9296. [
  9297. {
  9298. name: "Micro",
  9299. height: math.unit(6.5, "inches"),
  9300. default: true
  9301. },
  9302. ]
  9303. ))
  9304. characterMakers.push(() => makeCharacter(
  9305. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9306. {
  9307. front: {
  9308. height: math.unit(6, "feet"),
  9309. weight: math.unit(150, "lb"),
  9310. name: "Front",
  9311. image: {
  9312. source: "./media/characters/splinter/front.svg",
  9313. extra: 2990 / 2882,
  9314. bottom: 0.04
  9315. }
  9316. },
  9317. back: {
  9318. height: math.unit(6, "feet"),
  9319. weight: math.unit(150, "lb"),
  9320. name: "Back",
  9321. image: {
  9322. source: "./media/characters/splinter/back.svg",
  9323. extra: 2990 / 2882,
  9324. bottom: 0.04
  9325. }
  9326. },
  9327. },
  9328. [
  9329. {
  9330. name: "Normal",
  9331. height: math.unit(6, "feet")
  9332. },
  9333. {
  9334. name: "Macro",
  9335. height: math.unit(230, "meters"),
  9336. default: true
  9337. },
  9338. ]
  9339. ))
  9340. characterMakers.push(() => makeCharacter(
  9341. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9342. {
  9343. front: {
  9344. height: math.unit(4 + 10 / 12, "feet"),
  9345. weight: math.unit(480, "lb"),
  9346. name: "Front",
  9347. image: {
  9348. source: "./media/characters/snow-gabumon/front.svg",
  9349. extra: 1140 / 963,
  9350. bottom: 0.058
  9351. }
  9352. },
  9353. back: {
  9354. height: math.unit(4 + 10 / 12, "feet"),
  9355. weight: math.unit(480, "lb"),
  9356. name: "Back",
  9357. image: {
  9358. source: "./media/characters/snow-gabumon/back.svg",
  9359. extra: 1115 / 962,
  9360. bottom: 0.041
  9361. }
  9362. },
  9363. frontUndresed: {
  9364. height: math.unit(4 + 10 / 12, "feet"),
  9365. weight: math.unit(480, "lb"),
  9366. name: "Front (Undressed)",
  9367. image: {
  9368. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9369. extra: 1061 / 960,
  9370. bottom: 0.045
  9371. }
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Micro",
  9377. height: math.unit(1, "inch")
  9378. },
  9379. {
  9380. name: "Normal",
  9381. height: math.unit(4 + 10 / 12, "feet"),
  9382. default: true
  9383. },
  9384. {
  9385. name: "Macro",
  9386. height: math.unit(200, "feet")
  9387. },
  9388. {
  9389. name: "Megamacro",
  9390. height: math.unit(120, "miles")
  9391. },
  9392. {
  9393. name: "Gigamacro",
  9394. height: math.unit(9800, "miles")
  9395. },
  9396. ]
  9397. ))
  9398. characterMakers.push(() => makeCharacter(
  9399. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9400. {
  9401. front: {
  9402. height: math.unit(1.7, "meters"),
  9403. weight: math.unit(140, "lb"),
  9404. name: "Front",
  9405. image: {
  9406. source: "./media/characters/moody/front.svg",
  9407. extra: 3226 / 3007,
  9408. bottom: 0.087
  9409. }
  9410. },
  9411. },
  9412. [
  9413. {
  9414. name: "Micro",
  9415. height: math.unit(1, "mm")
  9416. },
  9417. {
  9418. name: "Normal",
  9419. height: math.unit(1.7, "meters"),
  9420. default: true
  9421. },
  9422. {
  9423. name: "Macro",
  9424. height: math.unit(80, "meters")
  9425. },
  9426. {
  9427. name: "Macro+",
  9428. height: math.unit(500, "meters")
  9429. },
  9430. ]
  9431. ))
  9432. characterMakers.push(() => makeCharacter(
  9433. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9434. {
  9435. front: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(150, "lb"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/zyas/front.svg",
  9441. extra: 1180 / 1120,
  9442. bottom: 0.045
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(10, "feet"),
  9450. default: true
  9451. },
  9452. {
  9453. name: "Macro",
  9454. height: math.unit(500, "feet")
  9455. },
  9456. {
  9457. name: "Megamacro",
  9458. height: math.unit(5, "miles")
  9459. },
  9460. {
  9461. name: "Teramacro",
  9462. height: math.unit(150000, "miles")
  9463. },
  9464. ]
  9465. ))
  9466. characterMakers.push(() => makeCharacter(
  9467. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9468. {
  9469. front: {
  9470. height: math.unit(6, "feet"),
  9471. weight: math.unit(150, "lb"),
  9472. name: "Front",
  9473. image: {
  9474. source: "./media/characters/cuon/front.svg",
  9475. extra: 1390 / 1320,
  9476. bottom: 0.008
  9477. }
  9478. },
  9479. },
  9480. [
  9481. {
  9482. name: "Micro",
  9483. height: math.unit(3, "inches")
  9484. },
  9485. {
  9486. name: "Normal",
  9487. height: math.unit(18 + 9 / 12, "feet"),
  9488. default: true
  9489. },
  9490. {
  9491. name: "Macro",
  9492. height: math.unit(360, "feet")
  9493. },
  9494. {
  9495. name: "Megamacro",
  9496. height: math.unit(360, "miles")
  9497. },
  9498. ]
  9499. ))
  9500. characterMakers.push(() => makeCharacter(
  9501. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9502. {
  9503. front: {
  9504. height: math.unit(2.4, "meters"),
  9505. weight: math.unit(70, "kg"),
  9506. name: "Front",
  9507. image: {
  9508. source: "./media/characters/nyanuxk/front.svg",
  9509. extra: 1172 / 1084,
  9510. bottom: 0.065
  9511. }
  9512. },
  9513. side: {
  9514. height: math.unit(2.4, "meters"),
  9515. weight: math.unit(70, "kg"),
  9516. name: "Side",
  9517. image: {
  9518. source: "./media/characters/nyanuxk/side.svg",
  9519. extra: 1190 / 1132,
  9520. bottom: 0.007
  9521. }
  9522. },
  9523. back: {
  9524. height: math.unit(2.4, "meters"),
  9525. weight: math.unit(70, "kg"),
  9526. name: "Back",
  9527. image: {
  9528. source: "./media/characters/nyanuxk/back.svg",
  9529. extra: 1200 / 1141,
  9530. bottom: 0.015
  9531. }
  9532. },
  9533. foot: {
  9534. height: math.unit(0.52, "meters"),
  9535. name: "Foot",
  9536. image: {
  9537. source: "./media/characters/nyanuxk/foot.svg"
  9538. }
  9539. },
  9540. },
  9541. [
  9542. {
  9543. name: "Micro",
  9544. height: math.unit(2, "cm")
  9545. },
  9546. {
  9547. name: "Normal",
  9548. height: math.unit(2.4, "meters"),
  9549. default: true
  9550. },
  9551. {
  9552. name: "Smaller Macro",
  9553. height: math.unit(120, "meters")
  9554. },
  9555. {
  9556. name: "Bigger Macro",
  9557. height: math.unit(1.2, "km")
  9558. },
  9559. {
  9560. name: "Megamacro",
  9561. height: math.unit(15, "kilometers")
  9562. },
  9563. {
  9564. name: "Gigamacro",
  9565. height: math.unit(2000, "km")
  9566. },
  9567. {
  9568. name: "Teramacro",
  9569. height: math.unit(500000, "km")
  9570. },
  9571. ]
  9572. ))
  9573. characterMakers.push(() => makeCharacter(
  9574. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9575. {
  9576. side: {
  9577. height: math.unit(6, "feet"),
  9578. name: "Side",
  9579. image: {
  9580. source: "./media/characters/ailbhe/side.svg",
  9581. extra: 757 / 464,
  9582. bottom: 0.041
  9583. }
  9584. },
  9585. },
  9586. [
  9587. {
  9588. name: "Normal",
  9589. height: math.unit(1.07, "meters"),
  9590. default: true
  9591. },
  9592. ]
  9593. ))
  9594. characterMakers.push(() => makeCharacter(
  9595. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9596. {
  9597. front: {
  9598. height: math.unit(6, "feet"),
  9599. weight: math.unit(120, "kg"),
  9600. name: "Front",
  9601. image: {
  9602. source: "./media/characters/zevulfius/front.svg",
  9603. extra: 965 / 903
  9604. }
  9605. },
  9606. side: {
  9607. height: math.unit(6, "feet"),
  9608. weight: math.unit(120, "kg"),
  9609. name: "Side",
  9610. image: {
  9611. source: "./media/characters/zevulfius/side.svg",
  9612. extra: 939 / 900
  9613. }
  9614. },
  9615. back: {
  9616. height: math.unit(6, "feet"),
  9617. weight: math.unit(120, "kg"),
  9618. name: "Back",
  9619. image: {
  9620. source: "./media/characters/zevulfius/back.svg",
  9621. extra: 918 / 854,
  9622. bottom: 0.005
  9623. }
  9624. },
  9625. foot: {
  9626. height: math.unit(6 / 3.72, "feet"),
  9627. name: "Foot",
  9628. image: {
  9629. source: "./media/characters/zevulfius/foot.svg"
  9630. }
  9631. },
  9632. },
  9633. [
  9634. {
  9635. name: "Macro",
  9636. height: math.unit(750, "meters")
  9637. },
  9638. {
  9639. name: "Megamacro",
  9640. height: math.unit(20, "km"),
  9641. default: true
  9642. },
  9643. {
  9644. name: "Gigamacro",
  9645. height: math.unit(2000, "km")
  9646. },
  9647. {
  9648. name: "Teramacro",
  9649. height: math.unit(250000, "km")
  9650. },
  9651. ]
  9652. ))
  9653. characterMakers.push(() => makeCharacter(
  9654. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9655. {
  9656. front: {
  9657. height: math.unit(100, "feet"),
  9658. weight: math.unit(350, "kg"),
  9659. name: "Front",
  9660. image: {
  9661. source: "./media/characters/rikes/front.svg",
  9662. extra: 1565 / 1483,
  9663. bottom: 0.017
  9664. }
  9665. },
  9666. },
  9667. [
  9668. {
  9669. name: "Macro",
  9670. height: math.unit(100, "feet"),
  9671. default: true
  9672. },
  9673. ]
  9674. ))
  9675. characterMakers.push(() => makeCharacter(
  9676. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9677. {
  9678. anthro: {
  9679. height: math.unit(8, "feet"),
  9680. weight: math.unit(120, "kg"),
  9681. name: "Anthro",
  9682. image: {
  9683. source: "./media/characters/adam-silver-mane/anthro.svg",
  9684. extra: 5743 / 5339,
  9685. bottom: 0.07
  9686. }
  9687. },
  9688. taur: {
  9689. height: math.unit(16, "feet"),
  9690. weight: math.unit(1500, "kg"),
  9691. name: "Taur",
  9692. image: {
  9693. source: "./media/characters/adam-silver-mane/taur.svg",
  9694. extra: 1713 / 1571,
  9695. bottom: 0.01
  9696. }
  9697. },
  9698. },
  9699. [
  9700. {
  9701. name: "Normal",
  9702. height: math.unit(8, "feet")
  9703. },
  9704. {
  9705. name: "Minimacro",
  9706. height: math.unit(80, "feet")
  9707. },
  9708. {
  9709. name: "Macro",
  9710. height: math.unit(800, "feet"),
  9711. default: true
  9712. },
  9713. {
  9714. name: "Megamacro",
  9715. height: math.unit(8000, "feet")
  9716. },
  9717. {
  9718. name: "Gigamacro",
  9719. height: math.unit(800, "miles")
  9720. },
  9721. {
  9722. name: "Teramacro",
  9723. height: math.unit(80000, "miles")
  9724. },
  9725. {
  9726. name: "Celestial",
  9727. height: math.unit(8e6, "miles")
  9728. },
  9729. {
  9730. name: "Star Dragon",
  9731. height: math.unit(800000, "parsecs")
  9732. },
  9733. {
  9734. name: "Godly",
  9735. height: math.unit(800, "teraparsecs")
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9741. {
  9742. front: {
  9743. height: math.unit(6, "feet"),
  9744. weight: math.unit(150, "lb"),
  9745. name: "Front",
  9746. image: {
  9747. source: "./media/characters/ky'owin/front.svg",
  9748. extra: 3888 / 3068,
  9749. bottom: 0.015
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Normal",
  9756. height: math.unit(6 + 8 / 12, "feet")
  9757. },
  9758. {
  9759. name: "Large",
  9760. height: math.unit(68, "feet")
  9761. },
  9762. {
  9763. name: "Macro",
  9764. height: math.unit(132, "feet")
  9765. },
  9766. {
  9767. name: "Macro+",
  9768. height: math.unit(340, "feet")
  9769. },
  9770. {
  9771. name: "Macro++",
  9772. height: math.unit(680, "feet"),
  9773. default: true
  9774. },
  9775. {
  9776. name: "Megamacro",
  9777. height: math.unit(1, "mile")
  9778. },
  9779. {
  9780. name: "Megamacro+",
  9781. height: math.unit(10, "miles")
  9782. },
  9783. ]
  9784. ))
  9785. characterMakers.push(() => makeCharacter(
  9786. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9787. {
  9788. front: {
  9789. height: math.unit(4, "feet"),
  9790. weight: math.unit(50, "lb"),
  9791. name: "Front",
  9792. image: {
  9793. source: "./media/characters/mal/front.svg",
  9794. extra: 785 / 724,
  9795. bottom: 0.07
  9796. }
  9797. },
  9798. },
  9799. [
  9800. {
  9801. name: "Micro",
  9802. height: math.unit(4, "inches")
  9803. },
  9804. {
  9805. name: "Normal",
  9806. height: math.unit(4, "feet"),
  9807. default: true
  9808. },
  9809. {
  9810. name: "Macro",
  9811. height: math.unit(200, "feet")
  9812. },
  9813. ]
  9814. ))
  9815. characterMakers.push(() => makeCharacter(
  9816. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9817. {
  9818. front: {
  9819. height: math.unit(6, "feet"),
  9820. weight: math.unit(150, "lb"),
  9821. name: "Front",
  9822. image: {
  9823. source: "./media/characters/jordan-deware/front.svg",
  9824. extra: 1191 / 1012
  9825. }
  9826. },
  9827. },
  9828. [
  9829. {
  9830. name: "Nano",
  9831. height: math.unit(0.01, "mm")
  9832. },
  9833. {
  9834. name: "Minimicro",
  9835. height: math.unit(1, "mm")
  9836. },
  9837. {
  9838. name: "Micro",
  9839. height: math.unit(0.5, "inches")
  9840. },
  9841. {
  9842. name: "Normal",
  9843. height: math.unit(4, "feet"),
  9844. default: true
  9845. },
  9846. {
  9847. name: "Minimacro",
  9848. height: math.unit(40, "meters")
  9849. },
  9850. {
  9851. name: "Small Macro",
  9852. height: math.unit(400, "meters")
  9853. },
  9854. {
  9855. name: "Macro",
  9856. height: math.unit(4, "miles")
  9857. },
  9858. {
  9859. name: "Megamacro",
  9860. height: math.unit(40, "miles")
  9861. },
  9862. {
  9863. name: "Megamacro+",
  9864. height: math.unit(400, "miles")
  9865. },
  9866. {
  9867. name: "Gigamacro",
  9868. height: math.unit(400000, "miles")
  9869. },
  9870. ]
  9871. ))
  9872. characterMakers.push(() => makeCharacter(
  9873. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9874. {
  9875. side: {
  9876. height: math.unit(6, "feet"),
  9877. weight: math.unit(150, "lb"),
  9878. name: "Side",
  9879. image: {
  9880. source: "./media/characters/kimiko/side.svg",
  9881. extra: 600 / 358
  9882. }
  9883. },
  9884. },
  9885. [
  9886. {
  9887. name: "Normal",
  9888. height: math.unit(15, "feet"),
  9889. default: true
  9890. },
  9891. {
  9892. name: "Macro",
  9893. height: math.unit(220, "feet")
  9894. },
  9895. {
  9896. name: "Macro+",
  9897. height: math.unit(1450, "feet")
  9898. },
  9899. {
  9900. name: "Megamacro",
  9901. height: math.unit(11500, "feet")
  9902. },
  9903. {
  9904. name: "Gigamacro",
  9905. height: math.unit(9500, "miles")
  9906. },
  9907. {
  9908. name: "Teramacro",
  9909. height: math.unit(2208005005, "miles")
  9910. },
  9911. {
  9912. name: "Examacro",
  9913. height: math.unit(2750, "parsecs")
  9914. },
  9915. {
  9916. name: "Zettamacro",
  9917. height: math.unit(101500, "parsecs")
  9918. },
  9919. ]
  9920. ))
  9921. characterMakers.push(() => makeCharacter(
  9922. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9923. {
  9924. front: {
  9925. height: math.unit(6, "feet"),
  9926. weight: math.unit(70, "kg"),
  9927. name: "Front",
  9928. image: {
  9929. source: "./media/characters/andrew-sleepy/front.svg"
  9930. }
  9931. },
  9932. side: {
  9933. height: math.unit(6, "feet"),
  9934. weight: math.unit(70, "kg"),
  9935. name: "Side",
  9936. image: {
  9937. source: "./media/characters/andrew-sleepy/side.svg"
  9938. }
  9939. },
  9940. },
  9941. [
  9942. {
  9943. name: "Micro",
  9944. height: math.unit(1, "mm"),
  9945. default: true
  9946. },
  9947. ]
  9948. ))
  9949. characterMakers.push(() => makeCharacter(
  9950. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9951. {
  9952. front: {
  9953. height: math.unit(6, "feet"),
  9954. weight: math.unit(150, "lb"),
  9955. name: "Front",
  9956. image: {
  9957. source: "./media/characters/judio/front.svg",
  9958. extra: 1258 / 1110
  9959. }
  9960. },
  9961. },
  9962. [
  9963. {
  9964. name: "Normal",
  9965. height: math.unit(5 + 6 / 12, "feet")
  9966. },
  9967. {
  9968. name: "Macro",
  9969. height: math.unit(1000, "feet"),
  9970. default: true
  9971. },
  9972. {
  9973. name: "Megamacro",
  9974. height: math.unit(10, "miles")
  9975. },
  9976. ]
  9977. ))
  9978. characterMakers.push(() => makeCharacter(
  9979. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9980. {
  9981. front: {
  9982. height: math.unit(6, "feet"),
  9983. weight: math.unit(68, "kg"),
  9984. name: "Front",
  9985. image: {
  9986. source: "./media/characters/nomaxice/front.svg",
  9987. extra: 1498 / 1073,
  9988. bottom: 0.075
  9989. }
  9990. },
  9991. foot: {
  9992. height: math.unit(1.1, "feet"),
  9993. name: "Foot",
  9994. image: {
  9995. source: "./media/characters/nomaxice/foot.svg"
  9996. }
  9997. },
  9998. },
  9999. [
  10000. {
  10001. name: "Micro",
  10002. height: math.unit(8, "cm")
  10003. },
  10004. {
  10005. name: "Norm",
  10006. height: math.unit(1.82, "m")
  10007. },
  10008. {
  10009. name: "Norm+",
  10010. height: math.unit(8.8, "feet")
  10011. },
  10012. {
  10013. name: "Big",
  10014. height: math.unit(8, "meters"),
  10015. default: true
  10016. },
  10017. {
  10018. name: "Macro",
  10019. height: math.unit(18, "meters")
  10020. },
  10021. {
  10022. name: "Macro+",
  10023. height: math.unit(88, "meters")
  10024. },
  10025. ]
  10026. ))
  10027. characterMakers.push(() => makeCharacter(
  10028. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10029. {
  10030. front: {
  10031. height: math.unit(12, "feet"),
  10032. weight: math.unit(1.5, "tons"),
  10033. name: "Front",
  10034. image: {
  10035. source: "./media/characters/dydros/front.svg",
  10036. extra: 863 / 800,
  10037. bottom: 0.015
  10038. }
  10039. },
  10040. back: {
  10041. height: math.unit(12, "feet"),
  10042. weight: math.unit(1.5, "tons"),
  10043. name: "Back",
  10044. image: {
  10045. source: "./media/characters/dydros/back.svg",
  10046. extra: 900 / 843,
  10047. bottom: 0.005
  10048. }
  10049. },
  10050. },
  10051. [
  10052. {
  10053. name: "Normal",
  10054. height: math.unit(12, "feet"),
  10055. default: true
  10056. },
  10057. ]
  10058. ))
  10059. characterMakers.push(() => makeCharacter(
  10060. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10061. {
  10062. front: {
  10063. height: math.unit(6, "feet"),
  10064. weight: math.unit(100, "kg"),
  10065. name: "Front",
  10066. image: {
  10067. source: "./media/characters/riggi/front.svg",
  10068. extra: 5787 / 5303
  10069. }
  10070. },
  10071. hyper: {
  10072. height: math.unit(6 * 5 / 3, "feet"),
  10073. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10074. name: "Hyper",
  10075. image: {
  10076. source: "./media/characters/riggi/hyper.svg",
  10077. extra: 3595 / 3485
  10078. }
  10079. },
  10080. },
  10081. [
  10082. {
  10083. name: "Small Macro",
  10084. height: math.unit(50, "feet")
  10085. },
  10086. {
  10087. name: "Default",
  10088. height: math.unit(200, "feet"),
  10089. default: true
  10090. },
  10091. {
  10092. name: "Loom",
  10093. height: math.unit(10000, "feet")
  10094. },
  10095. {
  10096. name: "Cruising Altitude",
  10097. height: math.unit(30000, "feet")
  10098. },
  10099. {
  10100. name: "Megamacro",
  10101. height: math.unit(100, "miles")
  10102. },
  10103. {
  10104. name: "Continent Sized",
  10105. height: math.unit(2800, "miles")
  10106. },
  10107. {
  10108. name: "Earth Sized",
  10109. height: math.unit(8000, "miles")
  10110. },
  10111. ]
  10112. ))
  10113. characterMakers.push(() => makeCharacter(
  10114. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10115. {
  10116. front: {
  10117. height: math.unit(6, "feet"),
  10118. weight: math.unit(250, "lb"),
  10119. name: "Front",
  10120. image: {
  10121. source: "./media/characters/alexi/front.svg",
  10122. extra: 3483 / 3291,
  10123. bottom: 0.04
  10124. }
  10125. },
  10126. back: {
  10127. height: math.unit(6, "feet"),
  10128. weight: math.unit(250, "lb"),
  10129. name: "Back",
  10130. image: {
  10131. source: "./media/characters/alexi/back.svg",
  10132. extra: 3533 / 3356,
  10133. bottom: 0.021
  10134. }
  10135. },
  10136. frontTransforming: {
  10137. height: math.unit(8.58, "feet"),
  10138. weight: math.unit(1300, "lb"),
  10139. name: "Transforming",
  10140. image: {
  10141. source: "./media/characters/alexi/front-transforming.svg",
  10142. extra: 437 / 409,
  10143. bottom: 19 / 458.66
  10144. }
  10145. },
  10146. frontTransformed: {
  10147. height: math.unit(12.5, "feet"),
  10148. weight: math.unit(4000, "lb"),
  10149. name: "Transformed",
  10150. image: {
  10151. source: "./media/characters/alexi/front-transformed.svg",
  10152. extra: 639 / 614,
  10153. bottom: 30.55 / 671
  10154. }
  10155. },
  10156. },
  10157. [
  10158. {
  10159. name: "Normal",
  10160. height: math.unit(14, "feet"),
  10161. default: true
  10162. },
  10163. {
  10164. name: "Minimacro",
  10165. height: math.unit(30, "meters")
  10166. },
  10167. {
  10168. name: "Macro",
  10169. height: math.unit(500, "meters")
  10170. },
  10171. {
  10172. name: "Megamacro",
  10173. height: math.unit(9000, "km")
  10174. },
  10175. {
  10176. name: "Teramacro",
  10177. height: math.unit(384000, "km")
  10178. },
  10179. ]
  10180. ))
  10181. characterMakers.push(() => makeCharacter(
  10182. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10183. {
  10184. front: {
  10185. height: math.unit(6, "feet"),
  10186. weight: math.unit(150, "lb"),
  10187. name: "Front",
  10188. image: {
  10189. source: "./media/characters/kayroo/front.svg",
  10190. extra: 1153 / 1038,
  10191. bottom: 0.06
  10192. }
  10193. },
  10194. foot: {
  10195. height: math.unit(6, "feet"),
  10196. weight: math.unit(150, "lb"),
  10197. name: "Foot",
  10198. image: {
  10199. source: "./media/characters/kayroo/foot.svg"
  10200. }
  10201. },
  10202. },
  10203. [
  10204. {
  10205. name: "Normal",
  10206. height: math.unit(8, "feet"),
  10207. default: true
  10208. },
  10209. {
  10210. name: "Minimacro",
  10211. height: math.unit(250, "feet")
  10212. },
  10213. {
  10214. name: "Macro",
  10215. height: math.unit(2800, "feet")
  10216. },
  10217. {
  10218. name: "Megamacro",
  10219. height: math.unit(5200, "feet")
  10220. },
  10221. {
  10222. name: "Gigamacro",
  10223. height: math.unit(27000, "feet")
  10224. },
  10225. {
  10226. name: "Omega",
  10227. height: math.unit(45000, "feet")
  10228. },
  10229. ]
  10230. ))
  10231. characterMakers.push(() => makeCharacter(
  10232. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10233. {
  10234. front: {
  10235. height: math.unit(18, "feet"),
  10236. weight: math.unit(5800, "lb"),
  10237. name: "Front",
  10238. image: {
  10239. source: "./media/characters/rhys/front.svg",
  10240. extra: 3386 / 3090,
  10241. bottom: 0.07
  10242. }
  10243. },
  10244. },
  10245. [
  10246. {
  10247. name: "Normal",
  10248. height: math.unit(18, "feet"),
  10249. default: true
  10250. },
  10251. {
  10252. name: "Working Size",
  10253. height: math.unit(200, "feet")
  10254. },
  10255. {
  10256. name: "Demolition Size",
  10257. height: math.unit(2000, "feet")
  10258. },
  10259. {
  10260. name: "Maximum Licensed Size",
  10261. height: math.unit(5, "miles")
  10262. },
  10263. {
  10264. name: "Maximum Observed Size",
  10265. height: math.unit(10, "yottameters")
  10266. },
  10267. ]
  10268. ))
  10269. characterMakers.push(() => makeCharacter(
  10270. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10271. {
  10272. front: {
  10273. height: math.unit(6, "feet"),
  10274. weight: math.unit(250, "lb"),
  10275. name: "Front",
  10276. image: {
  10277. source: "./media/characters/toto/front.svg",
  10278. extra: 527 / 479,
  10279. bottom: 0.05
  10280. }
  10281. },
  10282. },
  10283. [
  10284. {
  10285. name: "Micro",
  10286. height: math.unit(3, "feet")
  10287. },
  10288. {
  10289. name: "Normal",
  10290. height: math.unit(10, "feet")
  10291. },
  10292. {
  10293. name: "Macro",
  10294. height: math.unit(150, "feet"),
  10295. default: true
  10296. },
  10297. {
  10298. name: "Megamacro",
  10299. height: math.unit(1200, "feet")
  10300. },
  10301. ]
  10302. ))
  10303. characterMakers.push(() => makeCharacter(
  10304. { name: "King", species: ["lion"], tags: ["anthro"] },
  10305. {
  10306. back: {
  10307. height: math.unit(6, "feet"),
  10308. weight: math.unit(150, "lb"),
  10309. name: "Back",
  10310. image: {
  10311. source: "./media/characters/king/back.svg"
  10312. }
  10313. },
  10314. },
  10315. [
  10316. {
  10317. name: "Micro",
  10318. height: math.unit(2, "inches")
  10319. },
  10320. {
  10321. name: "Normal",
  10322. height: math.unit(8, "feet")
  10323. },
  10324. {
  10325. name: "Macro",
  10326. height: math.unit(200, "feet"),
  10327. default: true
  10328. },
  10329. {
  10330. name: "Megamacro",
  10331. height: math.unit(50, "miles")
  10332. },
  10333. ]
  10334. ))
  10335. characterMakers.push(() => makeCharacter(
  10336. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10337. {
  10338. anthro: {
  10339. height: math.unit(6 + 5 / 12, "feet"),
  10340. weight: math.unit(280, "lb"),
  10341. name: "Anthro",
  10342. image: {
  10343. source: "./media/characters/cordite/anthro.svg",
  10344. extra: 1986 / 1905,
  10345. bottom: 0.025
  10346. }
  10347. },
  10348. feral: {
  10349. height: math.unit(2, "feet"),
  10350. weight: math.unit(90, "lb"),
  10351. name: "Feral",
  10352. image: {
  10353. source: "./media/characters/cordite/feral.svg",
  10354. extra: 1260 / 755,
  10355. bottom: 0.05
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Normal",
  10362. height: math.unit(6 + 5 / 12, "feet"),
  10363. default: true
  10364. },
  10365. ]
  10366. ))
  10367. characterMakers.push(() => makeCharacter(
  10368. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10369. {
  10370. front: {
  10371. height: math.unit(6, "feet"),
  10372. weight: math.unit(150, "lb"),
  10373. name: "Front",
  10374. image: {
  10375. source: "./media/characters/pianostrong/front.svg",
  10376. extra: 6577 / 6254,
  10377. bottom: 0.02
  10378. }
  10379. },
  10380. side: {
  10381. height: math.unit(6, "feet"),
  10382. weight: math.unit(150, "lb"),
  10383. name: "Side",
  10384. image: {
  10385. source: "./media/characters/pianostrong/side.svg",
  10386. extra: 6106 / 5730
  10387. }
  10388. },
  10389. back: {
  10390. height: math.unit(6, "feet"),
  10391. weight: math.unit(150, "lb"),
  10392. name: "Back",
  10393. image: {
  10394. source: "./media/characters/pianostrong/back.svg",
  10395. extra: 6085 / 5733,
  10396. bottom: 0.01
  10397. }
  10398. },
  10399. },
  10400. [
  10401. {
  10402. name: "Macro",
  10403. height: math.unit(100, "feet")
  10404. },
  10405. {
  10406. name: "Macro+",
  10407. height: math.unit(300, "feet"),
  10408. default: true
  10409. },
  10410. {
  10411. name: "Macro++",
  10412. height: math.unit(1000, "feet")
  10413. },
  10414. ]
  10415. ))
  10416. characterMakers.push(() => makeCharacter(
  10417. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10418. {
  10419. front: {
  10420. height: math.unit(6, "feet"),
  10421. weight: math.unit(150, "lb"),
  10422. name: "Front",
  10423. image: {
  10424. source: "./media/characters/kona/front.svg",
  10425. extra: 2960 / 2629,
  10426. bottom: 0.005
  10427. }
  10428. },
  10429. },
  10430. [
  10431. {
  10432. name: "Normal",
  10433. height: math.unit(11 + 8 / 12, "feet")
  10434. },
  10435. {
  10436. name: "Macro",
  10437. height: math.unit(850, "feet"),
  10438. default: true
  10439. },
  10440. {
  10441. name: "Macro+",
  10442. height: math.unit(1.5, "km"),
  10443. default: true
  10444. },
  10445. {
  10446. name: "Megamacro",
  10447. height: math.unit(80, "miles")
  10448. },
  10449. {
  10450. name: "Gigamacro",
  10451. height: math.unit(3500, "miles")
  10452. },
  10453. ]
  10454. ))
  10455. characterMakers.push(() => makeCharacter(
  10456. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10457. {
  10458. side: {
  10459. height: math.unit(1.9, "meters"),
  10460. weight: math.unit(326, "kg"),
  10461. name: "Side",
  10462. image: {
  10463. source: "./media/characters/levi/side.svg",
  10464. extra: 1704 / 1334,
  10465. bottom: 0.02
  10466. }
  10467. },
  10468. },
  10469. [
  10470. {
  10471. name: "Normal",
  10472. height: math.unit(1.9, "meters"),
  10473. default: true
  10474. },
  10475. {
  10476. name: "Macro",
  10477. height: math.unit(20, "meters")
  10478. },
  10479. {
  10480. name: "Macro+",
  10481. height: math.unit(200, "meters")
  10482. },
  10483. {
  10484. name: "Megamacro",
  10485. height: math.unit(2, "km")
  10486. },
  10487. {
  10488. name: "Megamacro+",
  10489. height: math.unit(20, "km")
  10490. },
  10491. {
  10492. name: "Gigamacro",
  10493. height: math.unit(2500, "km")
  10494. },
  10495. {
  10496. name: "Gigamacro+",
  10497. height: math.unit(120000, "km")
  10498. },
  10499. {
  10500. name: "Teramacro",
  10501. height: math.unit(7.77e6, "km")
  10502. },
  10503. ]
  10504. ))
  10505. characterMakers.push(() => makeCharacter(
  10506. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10507. {
  10508. front: {
  10509. height: math.unit(6 + 4 / 12, "feet"),
  10510. weight: math.unit(188, "lb"),
  10511. name: "Front",
  10512. image: {
  10513. source: "./media/characters/bmc/front.svg",
  10514. extra: 1067 / 1022,
  10515. bottom: 0.047
  10516. }
  10517. },
  10518. },
  10519. [
  10520. {
  10521. name: "Human-sized",
  10522. height: math.unit(6 + 4 / 12, "feet")
  10523. },
  10524. {
  10525. name: "Small",
  10526. height: math.unit(250, "feet")
  10527. },
  10528. {
  10529. name: "Normal",
  10530. height: math.unit(1250, "feet"),
  10531. default: true
  10532. },
  10533. {
  10534. name: "Good Day",
  10535. height: math.unit(88, "miles")
  10536. },
  10537. {
  10538. name: "Largest Measured Size",
  10539. height: math.unit(11.2e6, "lightyears")
  10540. },
  10541. ]
  10542. ))
  10543. characterMakers.push(() => makeCharacter(
  10544. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10545. {
  10546. front: {
  10547. height: math.unit(20, "feet"),
  10548. weight: math.unit(2016, "kg"),
  10549. name: "Front",
  10550. image: {
  10551. source: "./media/characters/sven-the-kaiju/front.svg",
  10552. extra: 1479 / 1449,
  10553. bottom: 0.05
  10554. }
  10555. },
  10556. },
  10557. [
  10558. {
  10559. name: "Fairy",
  10560. height: math.unit(6, "inches")
  10561. },
  10562. {
  10563. name: "Normal",
  10564. height: math.unit(20, "feet"),
  10565. default: true
  10566. },
  10567. {
  10568. name: "Rampage",
  10569. height: math.unit(200, "feet")
  10570. },
  10571. {
  10572. name: "Archfey Forest Guardian",
  10573. height: math.unit(1, "mile")
  10574. },
  10575. ]
  10576. ))
  10577. characterMakers.push(() => makeCharacter(
  10578. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10579. {
  10580. front: {
  10581. height: math.unit(4, "meters"),
  10582. weight: math.unit(2, "tons"),
  10583. name: "Front",
  10584. image: {
  10585. source: "./media/characters/marik/front.svg",
  10586. extra: 1057 / 1003,
  10587. bottom: 0.08
  10588. }
  10589. },
  10590. },
  10591. [
  10592. {
  10593. name: "Normal",
  10594. height: math.unit(4, "meters"),
  10595. default: true
  10596. },
  10597. {
  10598. name: "Macro",
  10599. height: math.unit(20, "meters")
  10600. },
  10601. {
  10602. name: "Megamacro",
  10603. height: math.unit(50, "km")
  10604. },
  10605. {
  10606. name: "Gigamacro",
  10607. height: math.unit(100, "km")
  10608. },
  10609. {
  10610. name: "Alpha Macro",
  10611. height: math.unit(7.88e7, "yottameters")
  10612. },
  10613. ]
  10614. ))
  10615. characterMakers.push(() => makeCharacter(
  10616. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10617. {
  10618. front: {
  10619. height: math.unit(6, "feet"),
  10620. weight: math.unit(110, "lb"),
  10621. name: "Front",
  10622. image: {
  10623. source: "./media/characters/mel/front.svg",
  10624. extra: 736 / 617,
  10625. bottom: 0.017
  10626. }
  10627. },
  10628. },
  10629. [
  10630. {
  10631. name: "Pico",
  10632. height: math.unit(3, "pm")
  10633. },
  10634. {
  10635. name: "Nano",
  10636. height: math.unit(3, "nm")
  10637. },
  10638. {
  10639. name: "Micro",
  10640. height: math.unit(0.3, "mm"),
  10641. default: true
  10642. },
  10643. {
  10644. name: "Micro+",
  10645. height: math.unit(3, "mm")
  10646. },
  10647. {
  10648. name: "Normal",
  10649. height: math.unit(5 + 10.5 / 12, "feet")
  10650. },
  10651. ]
  10652. ))
  10653. characterMakers.push(() => makeCharacter(
  10654. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10655. {
  10656. kaiju: {
  10657. height: math.unit(1.75, "meters"),
  10658. weight: math.unit(55, "kg"),
  10659. name: "Kaiju",
  10660. image: {
  10661. source: "./media/characters/lykonous/kaiju.svg",
  10662. extra: 1055 / 946,
  10663. bottom: 0.135
  10664. }
  10665. },
  10666. },
  10667. [
  10668. {
  10669. name: "Normal",
  10670. height: math.unit(2.5, "meters"),
  10671. default: true
  10672. },
  10673. {
  10674. name: "Kaiju Dragon",
  10675. height: math.unit(60, "meters")
  10676. },
  10677. {
  10678. name: "Mega Kaiju",
  10679. height: math.unit(120, "km")
  10680. },
  10681. {
  10682. name: "Giga Kaiju",
  10683. height: math.unit(200, "megameters")
  10684. },
  10685. {
  10686. name: "Terra Kaiju",
  10687. height: math.unit(400, "gigameters")
  10688. },
  10689. {
  10690. name: "Kaiju Dragon God",
  10691. height: math.unit(13000, "exaparsecs")
  10692. },
  10693. ]
  10694. ))
  10695. characterMakers.push(() => makeCharacter(
  10696. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10697. {
  10698. front: {
  10699. height: math.unit(6, "feet"),
  10700. weight: math.unit(150, "lb"),
  10701. name: "Front",
  10702. image: {
  10703. source: "./media/characters/blü/front.svg",
  10704. extra: 1883 / 1564,
  10705. bottom: 0.031
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Normal",
  10712. height: math.unit(13, "feet"),
  10713. default: true
  10714. },
  10715. {
  10716. name: "Big Boi",
  10717. height: math.unit(150, "meters")
  10718. },
  10719. {
  10720. name: "Mini Stomper",
  10721. height: math.unit(300, "meters")
  10722. },
  10723. {
  10724. name: "Macro",
  10725. height: math.unit(1000, "meters")
  10726. },
  10727. {
  10728. name: "Megamacro",
  10729. height: math.unit(11000, "meters")
  10730. },
  10731. {
  10732. name: "Gigamacro",
  10733. height: math.unit(11000, "km")
  10734. },
  10735. {
  10736. name: "Teramacro",
  10737. height: math.unit(420000, "km")
  10738. },
  10739. {
  10740. name: "Examacro",
  10741. height: math.unit(120, "parsecs")
  10742. },
  10743. {
  10744. name: "God Tho",
  10745. height: math.unit(98000000000, "parsecs")
  10746. },
  10747. ]
  10748. ))
  10749. characterMakers.push(() => makeCharacter(
  10750. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10751. {
  10752. taurFront: {
  10753. height: math.unit(6, "feet"),
  10754. weight: math.unit(200, "lb"),
  10755. name: "Taur (Front)",
  10756. image: {
  10757. source: "./media/characters/scales/taur-front.svg",
  10758. extra: 1,
  10759. bottom: 0.05
  10760. }
  10761. },
  10762. taurBack: {
  10763. height: math.unit(6, "feet"),
  10764. weight: math.unit(200, "lb"),
  10765. name: "Taur (Back)",
  10766. image: {
  10767. source: "./media/characters/scales/taur-back.svg",
  10768. extra: 1,
  10769. bottom: 0.08
  10770. }
  10771. },
  10772. anthro: {
  10773. height: math.unit(6 * 7 / 12, "feet"),
  10774. weight: math.unit(100, "lb"),
  10775. name: "Anthro",
  10776. image: {
  10777. source: "./media/characters/scales/anthro.svg",
  10778. extra: 1,
  10779. bottom: 0.06
  10780. }
  10781. },
  10782. },
  10783. [
  10784. {
  10785. name: "Normal",
  10786. height: math.unit(12, "feet"),
  10787. default: true
  10788. },
  10789. ]
  10790. ))
  10791. characterMakers.push(() => makeCharacter(
  10792. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10793. {
  10794. front: {
  10795. height: math.unit(6, "feet"),
  10796. weight: math.unit(150, "lb"),
  10797. name: "Front",
  10798. image: {
  10799. source: "./media/characters/koragos/front.svg",
  10800. extra: 841 / 794,
  10801. bottom: 0.035
  10802. }
  10803. },
  10804. back: {
  10805. height: math.unit(6, "feet"),
  10806. weight: math.unit(150, "lb"),
  10807. name: "Back",
  10808. image: {
  10809. source: "./media/characters/koragos/back.svg",
  10810. extra: 841 / 810,
  10811. bottom: 0.022
  10812. }
  10813. },
  10814. },
  10815. [
  10816. {
  10817. name: "Normal",
  10818. height: math.unit(6 + 11 / 12, "feet"),
  10819. default: true
  10820. },
  10821. {
  10822. name: "Macro",
  10823. height: math.unit(490, "feet")
  10824. },
  10825. {
  10826. name: "Megamacro",
  10827. height: math.unit(10, "miles")
  10828. },
  10829. {
  10830. name: "Gigamacro",
  10831. height: math.unit(50, "miles")
  10832. },
  10833. ]
  10834. ))
  10835. characterMakers.push(() => makeCharacter(
  10836. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10837. {
  10838. front: {
  10839. height: math.unit(6, "feet"),
  10840. weight: math.unit(250, "lb"),
  10841. name: "Front",
  10842. image: {
  10843. source: "./media/characters/xylrem/front.svg",
  10844. extra: 3323 / 3050,
  10845. bottom: 0.065
  10846. }
  10847. },
  10848. },
  10849. [
  10850. {
  10851. name: "Micro",
  10852. height: math.unit(4, "feet")
  10853. },
  10854. {
  10855. name: "Normal",
  10856. height: math.unit(16, "feet"),
  10857. default: true
  10858. },
  10859. {
  10860. name: "Macro",
  10861. height: math.unit(2720, "feet")
  10862. },
  10863. {
  10864. name: "Megamacro",
  10865. height: math.unit(25000, "miles")
  10866. },
  10867. ]
  10868. ))
  10869. characterMakers.push(() => makeCharacter(
  10870. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10871. {
  10872. front: {
  10873. height: math.unit(8, "feet"),
  10874. weight: math.unit(250, "kg"),
  10875. name: "Front",
  10876. image: {
  10877. source: "./media/characters/ikideru/front.svg",
  10878. extra: 930 / 870,
  10879. bottom: 0.087
  10880. }
  10881. },
  10882. back: {
  10883. height: math.unit(8, "feet"),
  10884. weight: math.unit(250, "kg"),
  10885. name: "Back",
  10886. image: {
  10887. source: "./media/characters/ikideru/back.svg",
  10888. extra: 919 / 852,
  10889. bottom: 0.055
  10890. }
  10891. },
  10892. },
  10893. [
  10894. {
  10895. name: "Rare",
  10896. height: math.unit(8, "feet"),
  10897. default: true
  10898. },
  10899. {
  10900. name: "Playful Loom",
  10901. height: math.unit(80, "feet")
  10902. },
  10903. {
  10904. name: "City Leaner",
  10905. height: math.unit(230, "feet")
  10906. },
  10907. {
  10908. name: "Megamacro",
  10909. height: math.unit(2500, "feet")
  10910. },
  10911. {
  10912. name: "Gigamacro",
  10913. height: math.unit(26400, "feet")
  10914. },
  10915. {
  10916. name: "Tectonic Shifter",
  10917. height: math.unit(1.7, "megameters")
  10918. },
  10919. {
  10920. name: "Planet Carer",
  10921. height: math.unit(21, "megameters")
  10922. },
  10923. {
  10924. name: "God",
  10925. height: math.unit(11157.22, "parsecs")
  10926. },
  10927. ]
  10928. ))
  10929. characterMakers.push(() => makeCharacter(
  10930. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10931. {
  10932. front: {
  10933. height: math.unit(6, "feet"),
  10934. weight: math.unit(120, "lb"),
  10935. name: "Front",
  10936. image: {
  10937. source: "./media/characters/neo/front.svg"
  10938. }
  10939. },
  10940. },
  10941. [
  10942. {
  10943. name: "Micro",
  10944. height: math.unit(2, "inches"),
  10945. default: true
  10946. },
  10947. {
  10948. name: "Human Size",
  10949. height: math.unit(5 + 8 / 12, "feet")
  10950. },
  10951. ]
  10952. ))
  10953. characterMakers.push(() => makeCharacter(
  10954. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10955. {
  10956. front: {
  10957. height: math.unit(13 + 10 / 12, "feet"),
  10958. weight: math.unit(5320, "lb"),
  10959. name: "Front",
  10960. image: {
  10961. source: "./media/characters/chauncey-chantz/front.svg",
  10962. extra: 1587 / 1435,
  10963. bottom: 0.02
  10964. }
  10965. },
  10966. },
  10967. [
  10968. {
  10969. name: "Normal",
  10970. height: math.unit(13 + 10 / 12, "feet"),
  10971. default: true
  10972. },
  10973. {
  10974. name: "Macro",
  10975. height: math.unit(45, "feet")
  10976. },
  10977. {
  10978. name: "Megamacro",
  10979. height: math.unit(250, "miles")
  10980. },
  10981. {
  10982. name: "Planetary",
  10983. height: math.unit(10000, "miles")
  10984. },
  10985. {
  10986. name: "Galactic",
  10987. height: math.unit(40000, "parsecs")
  10988. },
  10989. {
  10990. name: "Universal",
  10991. height: math.unit(1, "yottameter")
  10992. },
  10993. ]
  10994. ))
  10995. characterMakers.push(() => makeCharacter(
  10996. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10997. {
  10998. front: {
  10999. height: math.unit(6, "feet"),
  11000. weight: math.unit(150, "lb"),
  11001. name: "Front",
  11002. image: {
  11003. source: "./media/characters/epifox/front.svg",
  11004. extra: 1,
  11005. bottom: 0.075
  11006. }
  11007. },
  11008. },
  11009. [
  11010. {
  11011. name: "Micro",
  11012. height: math.unit(6, "inches")
  11013. },
  11014. {
  11015. name: "Normal",
  11016. height: math.unit(12, "feet"),
  11017. default: true
  11018. },
  11019. {
  11020. name: "Macro",
  11021. height: math.unit(3810, "feet")
  11022. },
  11023. {
  11024. name: "Megamacro",
  11025. height: math.unit(500, "miles")
  11026. },
  11027. ]
  11028. ))
  11029. characterMakers.push(() => makeCharacter(
  11030. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11031. {
  11032. front: {
  11033. height: math.unit(1.8796, "m"),
  11034. weight: math.unit(230, "lb"),
  11035. name: "Front",
  11036. image: {
  11037. source: "./media/characters/colin-t/front.svg",
  11038. extra: 1272 / 1193,
  11039. bottom: 0.07
  11040. }
  11041. },
  11042. },
  11043. [
  11044. {
  11045. name: "Micro",
  11046. height: math.unit(0.571, "meters")
  11047. },
  11048. {
  11049. name: "Normal",
  11050. height: math.unit(1.8796, "meters"),
  11051. default: true
  11052. },
  11053. {
  11054. name: "Tall",
  11055. height: math.unit(4, "meters")
  11056. },
  11057. {
  11058. name: "Macro",
  11059. height: math.unit(67.241, "meters")
  11060. },
  11061. {
  11062. name: "Megamacro",
  11063. height: math.unit(371.856, "meters")
  11064. },
  11065. {
  11066. name: "Planetary",
  11067. height: math.unit(12631.5689, "km")
  11068. },
  11069. ]
  11070. ))
  11071. characterMakers.push(() => makeCharacter(
  11072. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11073. {
  11074. front: {
  11075. height: math.unit(1.85, "meters"),
  11076. weight: math.unit(80, "kg"),
  11077. name: "Front",
  11078. image: {
  11079. source: "./media/characters/matvei/front.svg",
  11080. extra: 614 / 594,
  11081. bottom: 0.01
  11082. }
  11083. },
  11084. },
  11085. [
  11086. {
  11087. name: "Normal",
  11088. height: math.unit(1.85, "meters"),
  11089. default: true
  11090. },
  11091. ]
  11092. ))
  11093. characterMakers.push(() => makeCharacter(
  11094. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11095. {
  11096. front: {
  11097. height: math.unit(5 + 9 / 12, "feet"),
  11098. weight: math.unit(70, "lb"),
  11099. name: "Front",
  11100. image: {
  11101. source: "./media/characters/quincy/front.svg",
  11102. extra: 3041 / 2751
  11103. }
  11104. },
  11105. back: {
  11106. height: math.unit(5 + 9 / 12, "feet"),
  11107. weight: math.unit(70, "lb"),
  11108. name: "Back",
  11109. image: {
  11110. source: "./media/characters/quincy/back.svg",
  11111. extra: 3041 / 2751
  11112. }
  11113. },
  11114. flying: {
  11115. height: math.unit(5 + 4 / 12, "feet"),
  11116. weight: math.unit(70, "lb"),
  11117. name: "Flying",
  11118. image: {
  11119. source: "./media/characters/quincy/flying.svg",
  11120. extra: 1044 / 930
  11121. }
  11122. },
  11123. },
  11124. [
  11125. {
  11126. name: "Micro",
  11127. height: math.unit(3, "cm")
  11128. },
  11129. {
  11130. name: "Normal",
  11131. height: math.unit(5 + 9 / 12, "feet")
  11132. },
  11133. {
  11134. name: "Macro",
  11135. height: math.unit(200, "meters"),
  11136. default: true
  11137. },
  11138. {
  11139. name: "Megamacro",
  11140. height: math.unit(1000, "meters")
  11141. },
  11142. ]
  11143. ))
  11144. characterMakers.push(() => makeCharacter(
  11145. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11146. {
  11147. front: {
  11148. height: math.unit(4 + 7 / 12, "feet"),
  11149. weight: math.unit(150, "lb"),
  11150. name: "Front",
  11151. image: {
  11152. source: "./media/characters/vanrel/front.svg",
  11153. extra: 1,
  11154. bottom: 0.02
  11155. }
  11156. },
  11157. elemental: {
  11158. height: math.unit(3, "feet"),
  11159. weight: math.unit(150, "lb"),
  11160. name: "Elemental",
  11161. image: {
  11162. source: "./media/characters/vanrel/elemental.svg",
  11163. extra: 192.3 / 162.8,
  11164. bottom: 1.79 / 194.17
  11165. }
  11166. },
  11167. side: {
  11168. height: math.unit(4 + 7 / 12, "feet"),
  11169. weight: math.unit(150, "lb"),
  11170. name: "Side",
  11171. image: {
  11172. source: "./media/characters/vanrel/side.svg",
  11173. extra: 1,
  11174. bottom: 0.025
  11175. }
  11176. },
  11177. tome: {
  11178. height: math.unit(1.35, "feet"),
  11179. weight: math.unit(10, "lb"),
  11180. name: "Vanrel's Tome",
  11181. rename: true,
  11182. image: {
  11183. source: "./media/characters/vanrel/tome.svg"
  11184. }
  11185. },
  11186. beans: {
  11187. height: math.unit(0.89, "feet"),
  11188. name: "Beans",
  11189. image: {
  11190. source: "./media/characters/vanrel/beans.svg"
  11191. }
  11192. },
  11193. },
  11194. [
  11195. {
  11196. name: "Normal",
  11197. height: math.unit(4 + 7 / 12, "feet"),
  11198. default: true
  11199. },
  11200. ]
  11201. ))
  11202. characterMakers.push(() => makeCharacter(
  11203. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11204. {
  11205. front: {
  11206. height: math.unit(7 + 5 / 12, "feet"),
  11207. weight: math.unit(150, "lb"),
  11208. name: "Front",
  11209. image: {
  11210. source: "./media/characters/kuiper-vanrel/front.svg",
  11211. extra: 1118 / 1068,
  11212. bottom: 0.09
  11213. }
  11214. },
  11215. foot: {
  11216. height: math.unit(0.55, "meters"),
  11217. name: "Foot",
  11218. image: {
  11219. source: "./media/characters/kuiper-vanrel/foot.svg",
  11220. }
  11221. },
  11222. battle: {
  11223. height: math.unit(6.824, "feet"),
  11224. weight: math.unit(150, "lb"),
  11225. name: "Battle",
  11226. image: {
  11227. source: "./media/characters/kuiper-vanrel/battle.svg",
  11228. extra: 1466 / 1327,
  11229. bottom: 29 / 1492.5
  11230. }
  11231. },
  11232. battleAlt: {
  11233. height: math.unit(6.824, "feet"),
  11234. weight: math.unit(150, "lb"),
  11235. name: "Battle (Alt)",
  11236. image: {
  11237. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11238. extra: 2081 / 1965,
  11239. bottom: 40 / 2121
  11240. }
  11241. },
  11242. },
  11243. [
  11244. {
  11245. name: "Normal",
  11246. height: math.unit(7 + 5 / 12, "feet"),
  11247. default: true
  11248. },
  11249. ]
  11250. ))
  11251. characterMakers.push(() => makeCharacter(
  11252. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11253. {
  11254. front: {
  11255. height: math.unit(8 + 5 / 12, "feet"),
  11256. weight: math.unit(150, "lb"),
  11257. name: "Front",
  11258. image: {
  11259. source: "./media/characters/keset-vanrel/front.svg",
  11260. extra: 1150 / 1084,
  11261. bottom: 0.05
  11262. }
  11263. },
  11264. hand: {
  11265. height: math.unit(0.6, "meters"),
  11266. name: "Hand",
  11267. image: {
  11268. source: "./media/characters/keset-vanrel/hand.svg"
  11269. }
  11270. },
  11271. foot: {
  11272. height: math.unit(0.94978, "meters"),
  11273. name: "Foot",
  11274. image: {
  11275. source: "./media/characters/keset-vanrel/foot.svg"
  11276. }
  11277. },
  11278. battle: {
  11279. height: math.unit(7.408, "feet"),
  11280. weight: math.unit(150, "lb"),
  11281. name: "Battle",
  11282. image: {
  11283. source: "./media/characters/keset-vanrel/battle.svg",
  11284. extra: 1890 / 1386,
  11285. bottom: 73.28 / 1970
  11286. }
  11287. },
  11288. },
  11289. [
  11290. {
  11291. name: "Normal",
  11292. height: math.unit(8 + 5 / 12, "feet"),
  11293. default: true
  11294. },
  11295. ]
  11296. ))
  11297. characterMakers.push(() => makeCharacter(
  11298. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11299. {
  11300. front: {
  11301. height: math.unit(6, "feet"),
  11302. weight: math.unit(150, "lb"),
  11303. name: "Front",
  11304. image: {
  11305. source: "./media/characters/neos/front.svg",
  11306. extra: 1696 / 992,
  11307. bottom: 0.14
  11308. }
  11309. },
  11310. },
  11311. [
  11312. {
  11313. name: "Normal",
  11314. height: math.unit(54, "cm"),
  11315. default: true
  11316. },
  11317. {
  11318. name: "Macro",
  11319. height: math.unit(100, "m")
  11320. },
  11321. {
  11322. name: "Megamacro",
  11323. height: math.unit(10, "km")
  11324. },
  11325. {
  11326. name: "Megamacro+",
  11327. height: math.unit(100, "km")
  11328. },
  11329. {
  11330. name: "Gigamacro",
  11331. height: math.unit(100, "Mm")
  11332. },
  11333. {
  11334. name: "Teramacro",
  11335. height: math.unit(100, "Gm")
  11336. },
  11337. {
  11338. name: "Examacro",
  11339. height: math.unit(100, "Em")
  11340. },
  11341. {
  11342. name: "Godly",
  11343. height: math.unit(10000, "Ym")
  11344. },
  11345. {
  11346. name: "Beyond Godly",
  11347. height: math.unit(25, "multiverses")
  11348. },
  11349. ]
  11350. ))
  11351. characterMakers.push(() => makeCharacter(
  11352. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11353. {
  11354. feminine: {
  11355. height: math.unit(5, "feet"),
  11356. weight: math.unit(100, "lb"),
  11357. name: "Feminine",
  11358. image: {
  11359. source: "./media/characters/sammy-mouse/feminine.svg",
  11360. extra: 2526 / 2425,
  11361. bottom: 0.123
  11362. }
  11363. },
  11364. masculine: {
  11365. height: math.unit(5, "feet"),
  11366. weight: math.unit(100, "lb"),
  11367. name: "Masculine",
  11368. image: {
  11369. source: "./media/characters/sammy-mouse/masculine.svg",
  11370. extra: 2526 / 2425,
  11371. bottom: 0.123
  11372. }
  11373. },
  11374. },
  11375. [
  11376. {
  11377. name: "Micro",
  11378. height: math.unit(5, "inches")
  11379. },
  11380. {
  11381. name: "Normal",
  11382. height: math.unit(5, "feet"),
  11383. default: true
  11384. },
  11385. {
  11386. name: "Macro",
  11387. height: math.unit(60, "feet")
  11388. },
  11389. ]
  11390. ))
  11391. characterMakers.push(() => makeCharacter(
  11392. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11393. {
  11394. front: {
  11395. height: math.unit(4, "feet"),
  11396. weight: math.unit(50, "lb"),
  11397. name: "Front",
  11398. image: {
  11399. source: "./media/characters/kole/front.svg",
  11400. extra: 1423 / 1303,
  11401. bottom: 0.025
  11402. }
  11403. },
  11404. back: {
  11405. height: math.unit(4, "feet"),
  11406. weight: math.unit(50, "lb"),
  11407. name: "Back",
  11408. image: {
  11409. source: "./media/characters/kole/back.svg",
  11410. extra: 1426 / 1280,
  11411. bottom: 0.02
  11412. }
  11413. },
  11414. },
  11415. [
  11416. {
  11417. name: "Normal",
  11418. height: math.unit(4, "feet"),
  11419. default: true
  11420. },
  11421. ]
  11422. ))
  11423. characterMakers.push(() => makeCharacter(
  11424. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11425. {
  11426. front: {
  11427. height: math.unit(2 + 6 / 12, "feet"),
  11428. weight: math.unit(20, "lb"),
  11429. name: "Front",
  11430. image: {
  11431. source: "./media/characters/rufran/front.svg",
  11432. extra: 2041 / 1839,
  11433. bottom: 0.055
  11434. }
  11435. },
  11436. back: {
  11437. height: math.unit(2 + 6 / 12, "feet"),
  11438. weight: math.unit(20, "lb"),
  11439. name: "Back",
  11440. image: {
  11441. source: "./media/characters/rufran/back.svg",
  11442. extra: 2054 / 1839,
  11443. bottom: 0.01
  11444. }
  11445. },
  11446. hand: {
  11447. height: math.unit(0.2166, "meters"),
  11448. name: "Hand",
  11449. image: {
  11450. source: "./media/characters/rufran/hand.svg"
  11451. }
  11452. },
  11453. foot: {
  11454. height: math.unit(0.185, "meters"),
  11455. name: "Foot",
  11456. image: {
  11457. source: "./media/characters/rufran/foot.svg"
  11458. }
  11459. },
  11460. },
  11461. [
  11462. {
  11463. name: "Micro",
  11464. height: math.unit(1, "inch")
  11465. },
  11466. {
  11467. name: "Normal",
  11468. height: math.unit(2 + 6 / 12, "feet"),
  11469. default: true
  11470. },
  11471. {
  11472. name: "Big",
  11473. height: math.unit(60, "feet")
  11474. },
  11475. {
  11476. name: "Macro",
  11477. height: math.unit(325, "feet")
  11478. },
  11479. ]
  11480. ))
  11481. characterMakers.push(() => makeCharacter(
  11482. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11483. {
  11484. front: {
  11485. height: math.unit(0.3, "meters"),
  11486. weight: math.unit(3.5, "kg"),
  11487. name: "Front",
  11488. image: {
  11489. source: "./media/characters/chip/front.svg",
  11490. extra: 748 / 674
  11491. }
  11492. },
  11493. },
  11494. [
  11495. {
  11496. name: "Micro",
  11497. height: math.unit(1, "inch"),
  11498. default: true
  11499. },
  11500. ]
  11501. ))
  11502. characterMakers.push(() => makeCharacter(
  11503. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11504. {
  11505. side: {
  11506. height: math.unit(2.3, "meters"),
  11507. weight: math.unit(3500, "lb"),
  11508. name: "Side",
  11509. image: {
  11510. source: "./media/characters/torvid/side.svg",
  11511. extra: 1972 / 722,
  11512. bottom: 0.035
  11513. }
  11514. },
  11515. },
  11516. [
  11517. {
  11518. name: "Normal",
  11519. height: math.unit(2.3, "meters"),
  11520. default: true
  11521. },
  11522. ]
  11523. ))
  11524. characterMakers.push(() => makeCharacter(
  11525. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11526. {
  11527. front: {
  11528. height: math.unit(2, "meters"),
  11529. weight: math.unit(150.5, "kg"),
  11530. name: "Front",
  11531. image: {
  11532. source: "./media/characters/susan/front.svg",
  11533. extra: 693 / 635,
  11534. bottom: 0.05
  11535. }
  11536. },
  11537. },
  11538. [
  11539. {
  11540. name: "Megamacro",
  11541. height: math.unit(505, "miles"),
  11542. default: true
  11543. },
  11544. ]
  11545. ))
  11546. characterMakers.push(() => makeCharacter(
  11547. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11548. {
  11549. front: {
  11550. height: math.unit(6, "feet"),
  11551. weight: math.unit(150, "lb"),
  11552. name: "Front",
  11553. image: {
  11554. source: "./media/characters/raindrops/front.svg",
  11555. extra: 2655 / 2461,
  11556. bottom: 49 / 2705
  11557. }
  11558. },
  11559. back: {
  11560. height: math.unit(6, "feet"),
  11561. weight: math.unit(150, "lb"),
  11562. name: "Back",
  11563. image: {
  11564. source: "./media/characters/raindrops/back.svg",
  11565. extra: 2574 / 2400,
  11566. bottom: 65 / 2634
  11567. }
  11568. },
  11569. },
  11570. [
  11571. {
  11572. name: "Micro",
  11573. height: math.unit(6, "inches")
  11574. },
  11575. {
  11576. name: "Normal",
  11577. height: math.unit(6 + 2 / 12, "feet")
  11578. },
  11579. {
  11580. name: "Macro",
  11581. height: math.unit(131, "feet"),
  11582. default: true
  11583. },
  11584. {
  11585. name: "Megamacro",
  11586. height: math.unit(15, "miles")
  11587. },
  11588. {
  11589. name: "Gigamacro",
  11590. height: math.unit(4000, "miles")
  11591. },
  11592. {
  11593. name: "Teramacro",
  11594. height: math.unit(315000, "miles")
  11595. },
  11596. ]
  11597. ))
  11598. characterMakers.push(() => makeCharacter(
  11599. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11600. {
  11601. front: {
  11602. height: math.unit(2.794, "meters"),
  11603. weight: math.unit(325, "kg"),
  11604. name: "Front",
  11605. image: {
  11606. source: "./media/characters/tezwa/front.svg",
  11607. extra: 2083 / 1906,
  11608. bottom: 0.031
  11609. }
  11610. },
  11611. foot: {
  11612. height: math.unit(0.687, "meters"),
  11613. name: "Foot",
  11614. image: {
  11615. source: "./media/characters/tezwa/foot.svg"
  11616. }
  11617. },
  11618. },
  11619. [
  11620. {
  11621. name: "Normal",
  11622. height: math.unit(9 + 2 / 12, "feet"),
  11623. default: true
  11624. },
  11625. ]
  11626. ))
  11627. characterMakers.push(() => makeCharacter(
  11628. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11629. {
  11630. front: {
  11631. height: math.unit(58, "feet"),
  11632. weight: math.unit(89000, "lb"),
  11633. name: "Front",
  11634. image: {
  11635. source: "./media/characters/typhus/front.svg",
  11636. extra: 816 / 800,
  11637. bottom: 0.065
  11638. }
  11639. },
  11640. },
  11641. [
  11642. {
  11643. name: "Macro",
  11644. height: math.unit(58, "feet"),
  11645. default: true
  11646. },
  11647. ]
  11648. ))
  11649. characterMakers.push(() => makeCharacter(
  11650. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11651. {
  11652. front: {
  11653. height: math.unit(12, "feet"),
  11654. weight: math.unit(6, "tonnes"),
  11655. name: "Front",
  11656. image: {
  11657. source: "./media/characters/lyra-von-wulf/front.svg",
  11658. extra: 1,
  11659. bottom: 0.10
  11660. }
  11661. },
  11662. frontMecha: {
  11663. height: math.unit(12, "feet"),
  11664. weight: math.unit(12, "tonnes"),
  11665. name: "Front (Mecha)",
  11666. image: {
  11667. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11668. extra: 1,
  11669. bottom: 0.042
  11670. }
  11671. },
  11672. maw: {
  11673. height: math.unit(2.2, "feet"),
  11674. name: "Maw",
  11675. image: {
  11676. source: "./media/characters/lyra-von-wulf/maw.svg"
  11677. }
  11678. },
  11679. },
  11680. [
  11681. {
  11682. name: "Normal",
  11683. height: math.unit(12, "feet"),
  11684. default: true
  11685. },
  11686. {
  11687. name: "Classic",
  11688. height: math.unit(50, "feet")
  11689. },
  11690. {
  11691. name: "Macro",
  11692. height: math.unit(500, "feet")
  11693. },
  11694. {
  11695. name: "Megamacro",
  11696. height: math.unit(1, "mile")
  11697. },
  11698. {
  11699. name: "Gigamacro",
  11700. height: math.unit(400, "miles")
  11701. },
  11702. {
  11703. name: "Teramacro",
  11704. height: math.unit(22000, "miles")
  11705. },
  11706. {
  11707. name: "Solarmacro",
  11708. height: math.unit(8600000, "miles")
  11709. },
  11710. {
  11711. name: "Galactic",
  11712. height: math.unit(1057000, "lightyears")
  11713. },
  11714. ]
  11715. ))
  11716. characterMakers.push(() => makeCharacter(
  11717. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11718. {
  11719. front: {
  11720. height: math.unit(6 + 10 / 12, "feet"),
  11721. weight: math.unit(150, "lb"),
  11722. name: "Front",
  11723. image: {
  11724. source: "./media/characters/dixon/front.svg",
  11725. extra: 3361 / 3209,
  11726. bottom: 0.01
  11727. }
  11728. },
  11729. },
  11730. [
  11731. {
  11732. name: "Normal",
  11733. height: math.unit(6 + 10 / 12, "feet"),
  11734. default: true
  11735. },
  11736. {
  11737. name: "Big",
  11738. height: math.unit(12, "meters")
  11739. },
  11740. {
  11741. name: "Macro",
  11742. height: math.unit(500, "meters")
  11743. },
  11744. {
  11745. name: "Megamacro",
  11746. height: math.unit(2, "km")
  11747. },
  11748. ]
  11749. ))
  11750. characterMakers.push(() => makeCharacter(
  11751. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11752. {
  11753. front: {
  11754. height: math.unit(185, "cm"),
  11755. weight: math.unit(68, "kg"),
  11756. name: "Front",
  11757. image: {
  11758. source: "./media/characters/kauko/front.svg",
  11759. extra: 1455 / 1421,
  11760. bottom: 0.03
  11761. }
  11762. },
  11763. back: {
  11764. height: math.unit(185, "cm"),
  11765. weight: math.unit(68, "kg"),
  11766. name: "Back",
  11767. image: {
  11768. source: "./media/characters/kauko/back.svg",
  11769. extra: 1455 / 1421,
  11770. bottom: 0.004
  11771. }
  11772. },
  11773. },
  11774. [
  11775. {
  11776. name: "Normal",
  11777. height: math.unit(185, "cm"),
  11778. default: true
  11779. },
  11780. ]
  11781. ))
  11782. characterMakers.push(() => makeCharacter(
  11783. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11784. {
  11785. front: {
  11786. height: math.unit(6, "feet"),
  11787. weight: math.unit(150, "kg"),
  11788. name: "Front",
  11789. image: {
  11790. source: "./media/characters/varg/front.svg",
  11791. extra: 1108 / 1018,
  11792. bottom: 0.0375
  11793. }
  11794. },
  11795. },
  11796. [
  11797. {
  11798. name: "Normal",
  11799. height: math.unit(5, "meters")
  11800. },
  11801. {
  11802. name: "Macro",
  11803. height: math.unit(200, "meters")
  11804. },
  11805. {
  11806. name: "Megamacro",
  11807. height: math.unit(20, "kilometers")
  11808. },
  11809. {
  11810. name: "True Size",
  11811. height: math.unit(211, "km"),
  11812. default: true
  11813. },
  11814. {
  11815. name: "Gigamacro",
  11816. height: math.unit(1000, "km")
  11817. },
  11818. {
  11819. name: "Gigamacro+",
  11820. height: math.unit(8000, "km")
  11821. },
  11822. {
  11823. name: "Teramacro",
  11824. height: math.unit(1000000, "km")
  11825. },
  11826. ]
  11827. ))
  11828. characterMakers.push(() => makeCharacter(
  11829. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11830. {
  11831. front: {
  11832. height: math.unit(7 + 7 / 12, "feet"),
  11833. weight: math.unit(267, "lb"),
  11834. name: "Front",
  11835. image: {
  11836. source: "./media/characters/dayza/front.svg",
  11837. extra: 1262 / 1200,
  11838. bottom: 0.035
  11839. }
  11840. },
  11841. side: {
  11842. height: math.unit(7 + 7 / 12, "feet"),
  11843. weight: math.unit(267, "lb"),
  11844. name: "Side",
  11845. image: {
  11846. source: "./media/characters/dayza/side.svg",
  11847. extra: 1295 / 1245,
  11848. bottom: 0.05
  11849. }
  11850. },
  11851. back: {
  11852. height: math.unit(7 + 7 / 12, "feet"),
  11853. weight: math.unit(267, "lb"),
  11854. name: "Back",
  11855. image: {
  11856. source: "./media/characters/dayza/back.svg",
  11857. extra: 1241 / 1170
  11858. }
  11859. },
  11860. },
  11861. [
  11862. {
  11863. name: "Normal",
  11864. height: math.unit(7 + 7 / 12, "feet"),
  11865. default: true
  11866. },
  11867. {
  11868. name: "Macro",
  11869. height: math.unit(155, "feet")
  11870. },
  11871. ]
  11872. ))
  11873. characterMakers.push(() => makeCharacter(
  11874. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11875. {
  11876. front: {
  11877. height: math.unit(6 + 5 / 12, "feet"),
  11878. weight: math.unit(160, "lb"),
  11879. name: "Front",
  11880. image: {
  11881. source: "./media/characters/xanthos/front.svg",
  11882. extra: 1,
  11883. bottom: 0.04
  11884. }
  11885. },
  11886. back: {
  11887. height: math.unit(6 + 5 / 12, "feet"),
  11888. weight: math.unit(160, "lb"),
  11889. name: "Back",
  11890. image: {
  11891. source: "./media/characters/xanthos/back.svg",
  11892. extra: 1,
  11893. bottom: 0.03
  11894. }
  11895. },
  11896. hand: {
  11897. height: math.unit(0.928, "feet"),
  11898. name: "Hand",
  11899. image: {
  11900. source: "./media/characters/xanthos/hand.svg"
  11901. }
  11902. },
  11903. foot: {
  11904. height: math.unit(1.286, "feet"),
  11905. name: "Foot",
  11906. image: {
  11907. source: "./media/characters/xanthos/foot.svg"
  11908. }
  11909. },
  11910. },
  11911. [
  11912. {
  11913. name: "Normal",
  11914. height: math.unit(6 + 5 / 12, "feet"),
  11915. default: true
  11916. },
  11917. {
  11918. name: "Normal+",
  11919. height: math.unit(6, "meters")
  11920. },
  11921. {
  11922. name: "Macro",
  11923. height: math.unit(40, "feet")
  11924. },
  11925. {
  11926. name: "Macro+",
  11927. height: math.unit(200, "meters")
  11928. },
  11929. {
  11930. name: "Megamacro",
  11931. height: math.unit(20, "km")
  11932. },
  11933. {
  11934. name: "Megamacro+",
  11935. height: math.unit(100, "km")
  11936. },
  11937. ]
  11938. ))
  11939. characterMakers.push(() => makeCharacter(
  11940. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11941. {
  11942. front: {
  11943. height: math.unit(6 + 3 / 12, "feet"),
  11944. weight: math.unit(215, "lb"),
  11945. name: "Front",
  11946. image: {
  11947. source: "./media/characters/grynn/front.svg",
  11948. extra: 4627 / 4209,
  11949. bottom: 0.047
  11950. }
  11951. },
  11952. },
  11953. [
  11954. {
  11955. name: "Micro",
  11956. height: math.unit(6, "inches")
  11957. },
  11958. {
  11959. name: "Normal",
  11960. height: math.unit(6 + 3 / 12, "feet"),
  11961. default: true
  11962. },
  11963. {
  11964. name: "Big",
  11965. height: math.unit(104, "feet")
  11966. },
  11967. {
  11968. name: "Macro",
  11969. height: math.unit(944, "feet")
  11970. },
  11971. {
  11972. name: "Macro+",
  11973. height: math.unit(9480, "feet")
  11974. },
  11975. {
  11976. name: "Megamacro",
  11977. height: math.unit(78752, "feet")
  11978. },
  11979. {
  11980. name: "Megamacro+",
  11981. height: math.unit(630128, "feet")
  11982. },
  11983. {
  11984. name: "Megamacro++",
  11985. height: math.unit(3150695, "feet")
  11986. },
  11987. ]
  11988. ))
  11989. characterMakers.push(() => makeCharacter(
  11990. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11991. {
  11992. front: {
  11993. height: math.unit(7 + 5 / 12, "feet"),
  11994. weight: math.unit(450, "lb"),
  11995. name: "Front",
  11996. image: {
  11997. source: "./media/characters/mocha-aura/front.svg",
  11998. extra: 1907 / 1817,
  11999. bottom: 0.04
  12000. }
  12001. },
  12002. back: {
  12003. height: math.unit(7 + 5 / 12, "feet"),
  12004. weight: math.unit(450, "lb"),
  12005. name: "Back",
  12006. image: {
  12007. source: "./media/characters/mocha-aura/back.svg",
  12008. extra: 1900 / 1825,
  12009. bottom: 0.045
  12010. }
  12011. },
  12012. },
  12013. [
  12014. {
  12015. name: "Nano",
  12016. height: math.unit(1, "nm")
  12017. },
  12018. {
  12019. name: "Megamicro",
  12020. height: math.unit(1, "mm")
  12021. },
  12022. {
  12023. name: "Micro",
  12024. height: math.unit(3, "inches")
  12025. },
  12026. {
  12027. name: "Normal",
  12028. height: math.unit(7 + 5 / 12, "feet"),
  12029. default: true
  12030. },
  12031. {
  12032. name: "Macro",
  12033. height: math.unit(30, "feet")
  12034. },
  12035. {
  12036. name: "Megamacro",
  12037. height: math.unit(3500, "feet")
  12038. },
  12039. {
  12040. name: "Teramacro",
  12041. height: math.unit(500000, "miles")
  12042. },
  12043. {
  12044. name: "Petamacro",
  12045. height: math.unit(50000000000000000, "parsecs")
  12046. },
  12047. ]
  12048. ))
  12049. characterMakers.push(() => makeCharacter(
  12050. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12051. {
  12052. front: {
  12053. height: math.unit(6, "feet"),
  12054. weight: math.unit(150, "lb"),
  12055. name: "Front",
  12056. image: {
  12057. source: "./media/characters/ilisha-devya/front.svg",
  12058. extra: 1,
  12059. bottom: 0.175
  12060. }
  12061. },
  12062. back: {
  12063. height: math.unit(6, "feet"),
  12064. weight: math.unit(150, "lb"),
  12065. name: "Back",
  12066. image: {
  12067. source: "./media/characters/ilisha-devya/back.svg",
  12068. extra: 1,
  12069. bottom: 0.015
  12070. }
  12071. },
  12072. },
  12073. [
  12074. {
  12075. name: "Macro",
  12076. height: math.unit(500, "feet"),
  12077. default: true
  12078. },
  12079. {
  12080. name: "Megamacro",
  12081. height: math.unit(10, "miles")
  12082. },
  12083. {
  12084. name: "Gigamacro",
  12085. height: math.unit(100000, "miles")
  12086. },
  12087. {
  12088. name: "Examacro",
  12089. height: math.unit(1e9, "lightyears")
  12090. },
  12091. {
  12092. name: "Omniversal",
  12093. height: math.unit(1e33, "lightyears")
  12094. },
  12095. {
  12096. name: "Beyond Infinite",
  12097. height: math.unit(1e100, "lightyears")
  12098. },
  12099. ]
  12100. ))
  12101. characterMakers.push(() => makeCharacter(
  12102. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12103. {
  12104. Side: {
  12105. height: math.unit(6, "feet"),
  12106. weight: math.unit(150, "lb"),
  12107. name: "Side",
  12108. image: {
  12109. source: "./media/characters/mira/side.svg",
  12110. extra: 900 / 799,
  12111. bottom: 0.02
  12112. }
  12113. },
  12114. },
  12115. [
  12116. {
  12117. name: "Human Size",
  12118. height: math.unit(6, "feet")
  12119. },
  12120. {
  12121. name: "Macro",
  12122. height: math.unit(100, "feet"),
  12123. default: true
  12124. },
  12125. {
  12126. name: "Megamacro",
  12127. height: math.unit(10, "miles")
  12128. },
  12129. {
  12130. name: "Gigamacro",
  12131. height: math.unit(25000, "miles")
  12132. },
  12133. {
  12134. name: "Teramacro",
  12135. height: math.unit(300, "AU")
  12136. },
  12137. {
  12138. name: "Full Size",
  12139. height: math.unit(4.5e10, "lightyears")
  12140. },
  12141. ]
  12142. ))
  12143. characterMakers.push(() => makeCharacter(
  12144. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12145. {
  12146. front: {
  12147. height: math.unit(6, "feet"),
  12148. weight: math.unit(150, "lb"),
  12149. name: "Front",
  12150. image: {
  12151. source: "./media/characters/holly/front.svg",
  12152. extra: 639 / 606
  12153. }
  12154. },
  12155. back: {
  12156. height: math.unit(6, "feet"),
  12157. weight: math.unit(150, "lb"),
  12158. name: "Back",
  12159. image: {
  12160. source: "./media/characters/holly/back.svg",
  12161. extra: 623 / 598
  12162. }
  12163. },
  12164. frontWorking: {
  12165. height: math.unit(6, "feet"),
  12166. weight: math.unit(150, "lb"),
  12167. name: "Front (Working)",
  12168. image: {
  12169. source: "./media/characters/holly/front-working.svg",
  12170. extra: 607 / 577,
  12171. bottom: 0.048
  12172. }
  12173. },
  12174. },
  12175. [
  12176. {
  12177. name: "Normal",
  12178. height: math.unit(12 + 3 / 12, "feet"),
  12179. default: true
  12180. },
  12181. ]
  12182. ))
  12183. characterMakers.push(() => makeCharacter(
  12184. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12185. {
  12186. front: {
  12187. height: math.unit(6, "feet"),
  12188. weight: math.unit(150, "lb"),
  12189. name: "Front",
  12190. image: {
  12191. source: "./media/characters/porter/front.svg",
  12192. extra: 1,
  12193. bottom: 0.01
  12194. }
  12195. },
  12196. frontRobes: {
  12197. height: math.unit(6, "feet"),
  12198. weight: math.unit(150, "lb"),
  12199. name: "Front (Robes)",
  12200. image: {
  12201. source: "./media/characters/porter/front-robes.svg",
  12202. extra: 1.01,
  12203. bottom: 0.01
  12204. }
  12205. },
  12206. },
  12207. [
  12208. {
  12209. name: "Normal",
  12210. height: math.unit(11 + 9 / 12, "feet"),
  12211. default: true
  12212. },
  12213. ]
  12214. ))
  12215. characterMakers.push(() => makeCharacter(
  12216. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12217. {
  12218. legendary: {
  12219. height: math.unit(6, "feet"),
  12220. weight: math.unit(150, "lb"),
  12221. name: "Legendary",
  12222. image: {
  12223. source: "./media/characters/lucy/legendary.svg",
  12224. extra: 1355 / 1100,
  12225. bottom: 0.045
  12226. }
  12227. },
  12228. },
  12229. [
  12230. {
  12231. name: "Legendary",
  12232. height: math.unit(86882 * 2, "miles"),
  12233. default: true
  12234. },
  12235. ]
  12236. ))
  12237. characterMakers.push(() => makeCharacter(
  12238. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12239. {
  12240. front: {
  12241. height: math.unit(6, "feet"),
  12242. weight: math.unit(150, "lb"),
  12243. name: "Front",
  12244. image: {
  12245. source: "./media/characters/drusilla/front.svg",
  12246. extra: 678 / 635,
  12247. bottom: 0.03
  12248. }
  12249. },
  12250. back: {
  12251. height: math.unit(6, "feet"),
  12252. weight: math.unit(150, "lb"),
  12253. name: "Back",
  12254. image: {
  12255. source: "./media/characters/drusilla/back.svg",
  12256. extra: 678 / 635,
  12257. bottom: 0.005
  12258. }
  12259. },
  12260. },
  12261. [
  12262. {
  12263. name: "Macro",
  12264. height: math.unit(100, "feet")
  12265. },
  12266. {
  12267. name: "Canon Height",
  12268. height: math.unit(2000, "feet"),
  12269. default: true
  12270. },
  12271. ]
  12272. ))
  12273. characterMakers.push(() => makeCharacter(
  12274. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12275. {
  12276. front: {
  12277. height: math.unit(6, "feet"),
  12278. weight: math.unit(180, "lb"),
  12279. name: "Front",
  12280. image: {
  12281. source: "./media/characters/renard-thatch/front.svg",
  12282. extra: 2411 / 2275,
  12283. bottom: 0.01
  12284. }
  12285. },
  12286. frontPosing: {
  12287. height: math.unit(6, "feet"),
  12288. weight: math.unit(180, "lb"),
  12289. name: "Front (Posing)",
  12290. image: {
  12291. source: "./media/characters/renard-thatch/front-posing.svg",
  12292. extra: 2381 / 2261,
  12293. bottom: 0.01
  12294. }
  12295. },
  12296. back: {
  12297. height: math.unit(6, "feet"),
  12298. weight: math.unit(180, "lb"),
  12299. name: "Back",
  12300. image: {
  12301. source: "./media/characters/renard-thatch/back.svg",
  12302. extra: 2428 / 2288
  12303. }
  12304. },
  12305. },
  12306. [
  12307. {
  12308. name: "Micro",
  12309. height: math.unit(3, "inches")
  12310. },
  12311. {
  12312. name: "Default",
  12313. height: math.unit(6, "feet"),
  12314. default: true
  12315. },
  12316. {
  12317. name: "Macro",
  12318. height: math.unit(75, "feet")
  12319. },
  12320. ]
  12321. ))
  12322. characterMakers.push(() => makeCharacter(
  12323. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12324. {
  12325. front: {
  12326. height: math.unit(1450, "feet"),
  12327. weight: math.unit(1.21e6, "tons"),
  12328. name: "Front",
  12329. image: {
  12330. source: "./media/characters/sekvra/front.svg",
  12331. extra: 1,
  12332. bottom: 0.03
  12333. }
  12334. },
  12335. frontClothed: {
  12336. height: math.unit(1450, "feet"),
  12337. weight: math.unit(1.21e6, "tons"),
  12338. name: "Front (Clothed)",
  12339. image: {
  12340. source: "./media/characters/sekvra/front-clothed.svg",
  12341. extra: 1,
  12342. bottom: 0.03
  12343. }
  12344. },
  12345. side: {
  12346. height: math.unit(1450, "feet"),
  12347. weight: math.unit(1.21e6, "tons"),
  12348. name: "Side",
  12349. image: {
  12350. source: "./media/characters/sekvra/side.svg",
  12351. extra: 1,
  12352. bottom: 0.025
  12353. }
  12354. },
  12355. back: {
  12356. height: math.unit(1450, "feet"),
  12357. weight: math.unit(1.21e6, "tons"),
  12358. name: "Back",
  12359. image: {
  12360. source: "./media/characters/sekvra/back.svg",
  12361. extra: 1,
  12362. bottom: 0.005
  12363. }
  12364. },
  12365. },
  12366. [
  12367. {
  12368. name: "Macro",
  12369. height: math.unit(1450, "feet"),
  12370. default: true
  12371. },
  12372. {
  12373. name: "Megamacro",
  12374. height: math.unit(15000, "feet")
  12375. },
  12376. ]
  12377. ))
  12378. characterMakers.push(() => makeCharacter(
  12379. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12380. {
  12381. front: {
  12382. height: math.unit(6, "feet"),
  12383. weight: math.unit(150, "lb"),
  12384. name: "Front",
  12385. image: {
  12386. source: "./media/characters/carmine/front.svg",
  12387. extra: 1,
  12388. bottom: 0.035
  12389. }
  12390. },
  12391. frontArmor: {
  12392. height: math.unit(6, "feet"),
  12393. weight: math.unit(150, "lb"),
  12394. name: "Front (Armor)",
  12395. image: {
  12396. source: "./media/characters/carmine/front-armor.svg",
  12397. extra: 1,
  12398. bottom: 0.035
  12399. }
  12400. },
  12401. },
  12402. [
  12403. {
  12404. name: "Large",
  12405. height: math.unit(1, "mile")
  12406. },
  12407. {
  12408. name: "Huge",
  12409. height: math.unit(40, "miles"),
  12410. default: true
  12411. },
  12412. {
  12413. name: "Colossal",
  12414. height: math.unit(2500, "miles")
  12415. },
  12416. ]
  12417. ))
  12418. characterMakers.push(() => makeCharacter(
  12419. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12420. {
  12421. front: {
  12422. height: math.unit(6, "feet"),
  12423. weight: math.unit(150, "lb"),
  12424. name: "Front",
  12425. image: {
  12426. source: "./media/characters/elyssia/front.svg",
  12427. extra: 2201 / 2035,
  12428. bottom: 0.05
  12429. }
  12430. },
  12431. frontClothed: {
  12432. height: math.unit(6, "feet"),
  12433. weight: math.unit(150, "lb"),
  12434. name: "Front (Clothed)",
  12435. image: {
  12436. source: "./media/characters/elyssia/front-clothed.svg",
  12437. extra: 2201 / 2035,
  12438. bottom: 0.05
  12439. }
  12440. },
  12441. back: {
  12442. height: math.unit(6, "feet"),
  12443. weight: math.unit(150, "lb"),
  12444. name: "Back",
  12445. image: {
  12446. source: "./media/characters/elyssia/back.svg",
  12447. extra: 2201 / 2035,
  12448. bottom: 0.013
  12449. }
  12450. },
  12451. },
  12452. [
  12453. {
  12454. name: "Smaller",
  12455. height: math.unit(150, "feet")
  12456. },
  12457. {
  12458. name: "Standard",
  12459. height: math.unit(1400, "feet"),
  12460. default: true
  12461. },
  12462. {
  12463. name: "Distracted",
  12464. height: math.unit(15000, "feet")
  12465. },
  12466. ]
  12467. ))
  12468. characterMakers.push(() => makeCharacter(
  12469. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12470. {
  12471. front: {
  12472. height: math.unit(7 + 4 / 12, "feet"),
  12473. weight: math.unit(500, "lb"),
  12474. name: "Front",
  12475. image: {
  12476. source: "./media/characters/geno-maxwell/front.svg",
  12477. extra: 2207 / 2040,
  12478. bottom: 0.015
  12479. }
  12480. },
  12481. },
  12482. [
  12483. {
  12484. name: "Micro",
  12485. height: math.unit(3, "inches")
  12486. },
  12487. {
  12488. name: "Normal",
  12489. height: math.unit(7 + 4 / 12, "feet"),
  12490. default: true
  12491. },
  12492. {
  12493. name: "Macro",
  12494. height: math.unit(220, "feet")
  12495. },
  12496. {
  12497. name: "Megamacro",
  12498. height: math.unit(11, "miles")
  12499. },
  12500. ]
  12501. ))
  12502. characterMakers.push(() => makeCharacter(
  12503. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12504. {
  12505. front: {
  12506. height: math.unit(7 + 4 / 12, "feet"),
  12507. weight: math.unit(500, "lb"),
  12508. name: "Front",
  12509. image: {
  12510. source: "./media/characters/regena-maxwell/front.svg",
  12511. extra: 3115 / 2770,
  12512. bottom: 0.02
  12513. }
  12514. },
  12515. },
  12516. [
  12517. {
  12518. name: "Normal",
  12519. height: math.unit(7 + 4 / 12, "feet"),
  12520. default: true
  12521. },
  12522. {
  12523. name: "Macro",
  12524. height: math.unit(220, "feet")
  12525. },
  12526. {
  12527. name: "Megamacro",
  12528. height: math.unit(11, "miles")
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12534. {
  12535. front: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(150, "lb"),
  12538. name: "Front",
  12539. image: {
  12540. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12541. extra: 860 / 690,
  12542. bottom: 0.03
  12543. }
  12544. },
  12545. },
  12546. [
  12547. {
  12548. name: "Normal",
  12549. height: math.unit(1.7, "meters"),
  12550. default: true
  12551. },
  12552. ]
  12553. ))
  12554. characterMakers.push(() => makeCharacter(
  12555. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12556. {
  12557. front: {
  12558. height: math.unit(6, "feet"),
  12559. weight: math.unit(150, "lb"),
  12560. name: "Front",
  12561. image: {
  12562. source: "./media/characters/quilly/front.svg",
  12563. extra: 890 / 776
  12564. }
  12565. },
  12566. },
  12567. [
  12568. {
  12569. name: "Gigamacro",
  12570. height: math.unit(404090, "miles"),
  12571. default: true
  12572. },
  12573. ]
  12574. ))
  12575. characterMakers.push(() => makeCharacter(
  12576. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12577. {
  12578. front: {
  12579. height: math.unit(7 + 8 / 12, "feet"),
  12580. weight: math.unit(350, "lb"),
  12581. name: "Front",
  12582. image: {
  12583. source: "./media/characters/tempest/front.svg",
  12584. extra: 1175 / 1086,
  12585. bottom: 0.02
  12586. }
  12587. },
  12588. },
  12589. [
  12590. {
  12591. name: "Normal",
  12592. height: math.unit(7 + 8 / 12, "feet"),
  12593. default: true
  12594. },
  12595. ]
  12596. ))
  12597. characterMakers.push(() => makeCharacter(
  12598. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12599. {
  12600. side: {
  12601. height: math.unit(4 + 5 / 12, "feet"),
  12602. weight: math.unit(80, "lb"),
  12603. name: "Side",
  12604. image: {
  12605. source: "./media/characters/rodger/side.svg",
  12606. extra: 1235 / 1118
  12607. }
  12608. },
  12609. },
  12610. [
  12611. {
  12612. name: "Micro",
  12613. height: math.unit(1, "inch")
  12614. },
  12615. {
  12616. name: "Normal",
  12617. height: math.unit(4 + 5 / 12, "feet"),
  12618. default: true
  12619. },
  12620. {
  12621. name: "Macro",
  12622. height: math.unit(120, "feet")
  12623. },
  12624. ]
  12625. ))
  12626. characterMakers.push(() => makeCharacter(
  12627. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12628. {
  12629. front: {
  12630. height: math.unit(6, "feet"),
  12631. weight: math.unit(150, "lb"),
  12632. name: "Front",
  12633. image: {
  12634. source: "./media/characters/danyel/front.svg",
  12635. extra: 1185 / 1123,
  12636. bottom: 0.05
  12637. }
  12638. },
  12639. },
  12640. [
  12641. {
  12642. name: "Shrunken",
  12643. height: math.unit(0.5, "mm")
  12644. },
  12645. {
  12646. name: "Micro",
  12647. height: math.unit(1, "mm"),
  12648. default: true
  12649. },
  12650. {
  12651. name: "Upsized",
  12652. height: math.unit(5 + 5 / 12, "feet")
  12653. },
  12654. ]
  12655. ))
  12656. characterMakers.push(() => makeCharacter(
  12657. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12658. {
  12659. front: {
  12660. height: math.unit(5 + 6 / 12, "feet"),
  12661. weight: math.unit(200, "lb"),
  12662. name: "Front",
  12663. image: {
  12664. source: "./media/characters/vivian-bijoux/front.svg",
  12665. extra: 1,
  12666. bottom: 0.072
  12667. }
  12668. },
  12669. },
  12670. [
  12671. {
  12672. name: "Normal",
  12673. height: math.unit(5 + 6 / 12, "feet"),
  12674. default: true
  12675. },
  12676. {
  12677. name: "Bad Dream",
  12678. height: math.unit(500, "feet")
  12679. },
  12680. {
  12681. name: "Nightmare",
  12682. height: math.unit(500, "miles")
  12683. },
  12684. ]
  12685. ))
  12686. characterMakers.push(() => makeCharacter(
  12687. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12688. {
  12689. front: {
  12690. height: math.unit(6 + 1 / 12, "feet"),
  12691. weight: math.unit(260, "lb"),
  12692. name: "Front",
  12693. image: {
  12694. source: "./media/characters/zeta/front.svg",
  12695. extra: 1968 / 1889,
  12696. bottom: 0.06
  12697. }
  12698. },
  12699. back: {
  12700. height: math.unit(6 + 1 / 12, "feet"),
  12701. weight: math.unit(260, "lb"),
  12702. name: "Back",
  12703. image: {
  12704. source: "./media/characters/zeta/back.svg",
  12705. extra: 1944 / 1858,
  12706. bottom: 0.03
  12707. }
  12708. },
  12709. hand: {
  12710. height: math.unit(1.112, "feet"),
  12711. name: "Hand",
  12712. image: {
  12713. source: "./media/characters/zeta/hand.svg"
  12714. }
  12715. },
  12716. foot: {
  12717. height: math.unit(1.48, "feet"),
  12718. name: "Foot",
  12719. image: {
  12720. source: "./media/characters/zeta/foot.svg"
  12721. }
  12722. },
  12723. },
  12724. [
  12725. {
  12726. name: "Micro",
  12727. height: math.unit(6, "inches")
  12728. },
  12729. {
  12730. name: "Normal",
  12731. height: math.unit(6 + 1 / 12, "feet"),
  12732. default: true
  12733. },
  12734. {
  12735. name: "Macro",
  12736. height: math.unit(20, "feet")
  12737. },
  12738. ]
  12739. ))
  12740. characterMakers.push(() => makeCharacter(
  12741. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12742. {
  12743. front: {
  12744. height: math.unit(6, "feet"),
  12745. weight: math.unit(150, "lb"),
  12746. name: "Front",
  12747. image: {
  12748. source: "./media/characters/jamie-larsen/front.svg",
  12749. extra: 962 / 933,
  12750. bottom: 0.02
  12751. }
  12752. },
  12753. back: {
  12754. height: math.unit(6, "feet"),
  12755. weight: math.unit(150, "lb"),
  12756. name: "Back",
  12757. image: {
  12758. source: "./media/characters/jamie-larsen/back.svg",
  12759. extra: 997 / 946
  12760. }
  12761. },
  12762. },
  12763. [
  12764. {
  12765. name: "Macro",
  12766. height: math.unit(28 + 7 / 12, "feet"),
  12767. default: true
  12768. },
  12769. {
  12770. name: "Macro+",
  12771. height: math.unit(180, "feet")
  12772. },
  12773. {
  12774. name: "Megamacro",
  12775. height: math.unit(10, "miles")
  12776. },
  12777. {
  12778. name: "Gigamacro",
  12779. height: math.unit(200000, "miles")
  12780. },
  12781. ]
  12782. ))
  12783. characterMakers.push(() => makeCharacter(
  12784. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12785. {
  12786. front: {
  12787. height: math.unit(6, "feet"),
  12788. weight: math.unit(120, "lb"),
  12789. name: "Front",
  12790. image: {
  12791. source: "./media/characters/vance/front.svg",
  12792. extra: 1980 / 1890,
  12793. bottom: 0.09
  12794. }
  12795. },
  12796. back: {
  12797. height: math.unit(6, "feet"),
  12798. weight: math.unit(120, "lb"),
  12799. name: "Back",
  12800. image: {
  12801. source: "./media/characters/vance/back.svg",
  12802. extra: 2081 / 1994,
  12803. bottom: 0.014
  12804. }
  12805. },
  12806. hand: {
  12807. height: math.unit(0.88, "feet"),
  12808. name: "Hand",
  12809. image: {
  12810. source: "./media/characters/vance/hand.svg"
  12811. }
  12812. },
  12813. foot: {
  12814. height: math.unit(0.64, "feet"),
  12815. name: "Foot",
  12816. image: {
  12817. source: "./media/characters/vance/foot.svg"
  12818. }
  12819. },
  12820. },
  12821. [
  12822. {
  12823. name: "Small",
  12824. height: math.unit(90, "feet"),
  12825. default: true
  12826. },
  12827. {
  12828. name: "Macro",
  12829. height: math.unit(100, "meters")
  12830. },
  12831. {
  12832. name: "Megamacro",
  12833. height: math.unit(15, "miles")
  12834. },
  12835. ]
  12836. ))
  12837. characterMakers.push(() => makeCharacter(
  12838. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12839. {
  12840. front: {
  12841. height: math.unit(6, "feet"),
  12842. weight: math.unit(180, "lb"),
  12843. name: "Front",
  12844. image: {
  12845. source: "./media/characters/xochitl/front.svg",
  12846. extra: 2297 / 2261,
  12847. bottom: 0.065
  12848. }
  12849. },
  12850. back: {
  12851. height: math.unit(6, "feet"),
  12852. weight: math.unit(180, "lb"),
  12853. name: "Back",
  12854. image: {
  12855. source: "./media/characters/xochitl/back.svg",
  12856. extra: 2386 / 2354,
  12857. bottom: 0.01
  12858. }
  12859. },
  12860. foot: {
  12861. height: math.unit(6 / 5 * 1.15, "feet"),
  12862. weight: math.unit(150, "lb"),
  12863. name: "Foot",
  12864. image: {
  12865. source: "./media/characters/xochitl/foot.svg"
  12866. }
  12867. },
  12868. },
  12869. [
  12870. {
  12871. name: "Macro",
  12872. height: math.unit(80, "feet")
  12873. },
  12874. {
  12875. name: "Macro+",
  12876. height: math.unit(400, "feet"),
  12877. default: true
  12878. },
  12879. {
  12880. name: "Gigamacro",
  12881. height: math.unit(80000, "miles")
  12882. },
  12883. {
  12884. name: "Gigamacro+",
  12885. height: math.unit(400000, "miles")
  12886. },
  12887. {
  12888. name: "Teramacro",
  12889. height: math.unit(300, "AU")
  12890. },
  12891. ]
  12892. ))
  12893. characterMakers.push(() => makeCharacter(
  12894. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12895. {
  12896. front: {
  12897. height: math.unit(6, "feet"),
  12898. weight: math.unit(150, "lb"),
  12899. name: "Front",
  12900. image: {
  12901. source: "./media/characters/vincent/front.svg",
  12902. extra: 1130 / 1080,
  12903. bottom: 0.055
  12904. }
  12905. },
  12906. beak: {
  12907. height: math.unit(6 * 0.1, "feet"),
  12908. name: "Beak",
  12909. image: {
  12910. source: "./media/characters/vincent/beak.svg"
  12911. }
  12912. },
  12913. hand: {
  12914. height: math.unit(6 * 0.85, "feet"),
  12915. weight: math.unit(150, "lb"),
  12916. name: "Hand",
  12917. image: {
  12918. source: "./media/characters/vincent/hand.svg"
  12919. }
  12920. },
  12921. foot: {
  12922. height: math.unit(6 * 0.19, "feet"),
  12923. weight: math.unit(150, "lb"),
  12924. name: "Foot",
  12925. image: {
  12926. source: "./media/characters/vincent/foot.svg"
  12927. }
  12928. },
  12929. },
  12930. [
  12931. {
  12932. name: "Base",
  12933. height: math.unit(6 + 5 / 12, "feet"),
  12934. default: true
  12935. },
  12936. {
  12937. name: "Macro",
  12938. height: math.unit(300, "feet")
  12939. },
  12940. {
  12941. name: "Megamacro",
  12942. height: math.unit(2, "miles")
  12943. },
  12944. {
  12945. name: "Gigamacro",
  12946. height: math.unit(1000, "miles")
  12947. },
  12948. ]
  12949. ))
  12950. characterMakers.push(() => makeCharacter(
  12951. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12952. {
  12953. front: {
  12954. height: math.unit(6 + 2 / 12, "feet"),
  12955. weight: math.unit(265, "lb"),
  12956. name: "Front",
  12957. image: {
  12958. source: "./media/characters/jay/front.svg",
  12959. extra: 1510 / 1430,
  12960. bottom: 0.042
  12961. }
  12962. },
  12963. back: {
  12964. height: math.unit(6 + 2 / 12, "feet"),
  12965. weight: math.unit(265, "lb"),
  12966. name: "Back",
  12967. image: {
  12968. source: "./media/characters/jay/back.svg",
  12969. extra: 1510 / 1430,
  12970. bottom: 0.025
  12971. }
  12972. },
  12973. clothed: {
  12974. height: math.unit(6 + 2 / 12, "feet"),
  12975. weight: math.unit(265, "lb"),
  12976. name: "Front (Clothed)",
  12977. image: {
  12978. source: "./media/characters/jay/clothed.svg",
  12979. extra: 744 / 699,
  12980. bottom: 0.043
  12981. }
  12982. },
  12983. head: {
  12984. height: math.unit(1.772, "feet"),
  12985. name: "Head",
  12986. image: {
  12987. source: "./media/characters/jay/head.svg"
  12988. }
  12989. },
  12990. sizeRay: {
  12991. height: math.unit(1.331, "feet"),
  12992. name: "Size Ray",
  12993. image: {
  12994. source: "./media/characters/jay/size-ray.svg"
  12995. }
  12996. },
  12997. },
  12998. [
  12999. {
  13000. name: "Micro",
  13001. height: math.unit(1, "inch")
  13002. },
  13003. {
  13004. name: "Normal",
  13005. height: math.unit(6 + 2 / 12, "feet"),
  13006. default: true
  13007. },
  13008. {
  13009. name: "Macro",
  13010. height: math.unit(1, "mile")
  13011. },
  13012. {
  13013. name: "Megamacro",
  13014. height: math.unit(100, "miles")
  13015. },
  13016. ]
  13017. ))
  13018. characterMakers.push(() => makeCharacter(
  13019. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13020. {
  13021. front: {
  13022. height: math.unit(2, "meters"),
  13023. weight: math.unit(500, "kg"),
  13024. name: "Front",
  13025. image: {
  13026. source: "./media/characters/coatl/front.svg",
  13027. extra: 3948 / 3500,
  13028. bottom: 0.082
  13029. }
  13030. },
  13031. },
  13032. [
  13033. {
  13034. name: "Normal",
  13035. height: math.unit(4, "meters")
  13036. },
  13037. {
  13038. name: "Macro",
  13039. height: math.unit(100, "meters"),
  13040. default: true
  13041. },
  13042. {
  13043. name: "Macro+",
  13044. height: math.unit(300, "meters")
  13045. },
  13046. {
  13047. name: "Megamacro",
  13048. height: math.unit(3, "gigameters")
  13049. },
  13050. {
  13051. name: "Megamacro+",
  13052. height: math.unit(300, "terameters")
  13053. },
  13054. {
  13055. name: "Megamacro++",
  13056. height: math.unit(3, "lightyears")
  13057. },
  13058. ]
  13059. ))
  13060. characterMakers.push(() => makeCharacter(
  13061. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13062. {
  13063. front: {
  13064. height: math.unit(6, "feet"),
  13065. weight: math.unit(50, "kg"),
  13066. name: "front",
  13067. image: {
  13068. source: "./media/characters/shiroryu/front.svg",
  13069. extra: 1990 / 1935
  13070. }
  13071. },
  13072. },
  13073. [
  13074. {
  13075. name: "Mortal Mingling",
  13076. height: math.unit(3, "meters")
  13077. },
  13078. {
  13079. name: "Kaiju-ish",
  13080. height: math.unit(250, "meters")
  13081. },
  13082. {
  13083. name: "Somewhat Godly",
  13084. height: math.unit(400, "km"),
  13085. default: true
  13086. },
  13087. {
  13088. name: "Planetary",
  13089. height: math.unit(300, "megameters")
  13090. },
  13091. {
  13092. name: "Galaxy-dwarfing",
  13093. height: math.unit(450, "kiloparsecs")
  13094. },
  13095. {
  13096. name: "Universe Eater",
  13097. height: math.unit(150, "gigaparsecs")
  13098. },
  13099. {
  13100. name: "Almost Immeasurable",
  13101. height: math.unit(1.3e266, "yottaparsecs")
  13102. },
  13103. ]
  13104. ))
  13105. characterMakers.push(() => makeCharacter(
  13106. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13107. {
  13108. front: {
  13109. height: math.unit(6, "feet"),
  13110. weight: math.unit(150, "lb"),
  13111. name: "Front",
  13112. image: {
  13113. source: "./media/characters/umeko/front.svg",
  13114. extra: 1,
  13115. bottom: 0.019
  13116. }
  13117. },
  13118. frontArmored: {
  13119. height: math.unit(6, "feet"),
  13120. weight: math.unit(150, "lb"),
  13121. name: "Front (Armored)",
  13122. image: {
  13123. source: "./media/characters/umeko/front-armored.svg",
  13124. extra: 1,
  13125. bottom: 0.021
  13126. }
  13127. },
  13128. },
  13129. [
  13130. {
  13131. name: "Macro",
  13132. height: math.unit(220, "feet"),
  13133. default: true
  13134. },
  13135. {
  13136. name: "Guardian Dragon",
  13137. height: math.unit(50, "miles")
  13138. },
  13139. {
  13140. name: "Cosmic",
  13141. height: math.unit(800000, "miles")
  13142. },
  13143. ]
  13144. ))
  13145. characterMakers.push(() => makeCharacter(
  13146. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13147. {
  13148. front: {
  13149. height: math.unit(6, "feet"),
  13150. weight: math.unit(150, "lb"),
  13151. name: "Front",
  13152. image: {
  13153. source: "./media/characters/cassidy/front.svg",
  13154. extra: 1,
  13155. bottom: 0.043
  13156. }
  13157. },
  13158. },
  13159. [
  13160. {
  13161. name: "Canon Height",
  13162. height: math.unit(120, "feet"),
  13163. default: true
  13164. },
  13165. {
  13166. name: "Macro+",
  13167. height: math.unit(400, "feet")
  13168. },
  13169. {
  13170. name: "Macro++",
  13171. height: math.unit(4000, "feet")
  13172. },
  13173. {
  13174. name: "Megamacro",
  13175. height: math.unit(3, "miles")
  13176. },
  13177. ]
  13178. ))
  13179. characterMakers.push(() => makeCharacter(
  13180. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13181. {
  13182. front: {
  13183. height: math.unit(6, "feet"),
  13184. weight: math.unit(150, "lb"),
  13185. name: "Front",
  13186. image: {
  13187. source: "./media/characters/isaac/front.svg",
  13188. extra: 896 / 815,
  13189. bottom: 0.11
  13190. }
  13191. },
  13192. },
  13193. [
  13194. {
  13195. name: "Human Size",
  13196. height: math.unit(8, "feet"),
  13197. default: true
  13198. },
  13199. {
  13200. name: "Macro",
  13201. height: math.unit(400, "feet")
  13202. },
  13203. {
  13204. name: "Megamacro",
  13205. height: math.unit(50, "miles")
  13206. },
  13207. {
  13208. name: "Canon Height",
  13209. height: math.unit(200, "AU")
  13210. },
  13211. ]
  13212. ))
  13213. characterMakers.push(() => makeCharacter(
  13214. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13215. {
  13216. front: {
  13217. height: math.unit(6, "feet"),
  13218. weight: math.unit(72, "kg"),
  13219. name: "Front",
  13220. image: {
  13221. source: "./media/characters/sleekit/front.svg",
  13222. extra: 4693 / 4487,
  13223. bottom: 0.012
  13224. }
  13225. },
  13226. },
  13227. [
  13228. {
  13229. name: "Minimum Height",
  13230. height: math.unit(10, "meters")
  13231. },
  13232. {
  13233. name: "Smaller",
  13234. height: math.unit(25, "meters")
  13235. },
  13236. {
  13237. name: "Larger",
  13238. height: math.unit(38, "meters"),
  13239. default: true
  13240. },
  13241. {
  13242. name: "Maximum height",
  13243. height: math.unit(100, "meters")
  13244. },
  13245. ]
  13246. ))
  13247. characterMakers.push(() => makeCharacter(
  13248. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13249. {
  13250. front: {
  13251. height: math.unit(6, "feet"),
  13252. weight: math.unit(150, "lb"),
  13253. name: "Front",
  13254. image: {
  13255. source: "./media/characters/nillia/front.svg",
  13256. extra: 2195 / 2037,
  13257. bottom: 0.005
  13258. }
  13259. },
  13260. back: {
  13261. height: math.unit(6, "feet"),
  13262. weight: math.unit(150, "lb"),
  13263. name: "Back",
  13264. image: {
  13265. source: "./media/characters/nillia/back.svg",
  13266. extra: 2195 / 2037,
  13267. bottom: 0.005
  13268. }
  13269. },
  13270. },
  13271. [
  13272. {
  13273. name: "Canon Height",
  13274. height: math.unit(489, "feet"),
  13275. default: true
  13276. }
  13277. ]
  13278. ))
  13279. characterMakers.push(() => makeCharacter(
  13280. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13281. {
  13282. front: {
  13283. height: math.unit(6, "feet"),
  13284. weight: math.unit(150, "lb"),
  13285. name: "Front",
  13286. image: {
  13287. source: "./media/characters/mesmyriza/front.svg",
  13288. extra: 2067 / 1784,
  13289. bottom: 0.035
  13290. }
  13291. },
  13292. foot: {
  13293. height: math.unit(6 / (250 / 35), "feet"),
  13294. name: "Foot",
  13295. image: {
  13296. source: "./media/characters/mesmyriza/foot.svg"
  13297. }
  13298. },
  13299. },
  13300. [
  13301. {
  13302. name: "Macro",
  13303. height: math.unit(457, "meters"),
  13304. default: true
  13305. },
  13306. {
  13307. name: "Megamacro",
  13308. height: math.unit(8, "megameters")
  13309. },
  13310. ]
  13311. ))
  13312. characterMakers.push(() => makeCharacter(
  13313. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13314. {
  13315. front: {
  13316. height: math.unit(6, "feet"),
  13317. weight: math.unit(250, "lb"),
  13318. name: "Front",
  13319. image: {
  13320. source: "./media/characters/saudade/front.svg",
  13321. extra: 1172 / 1139,
  13322. bottom: 0.035
  13323. }
  13324. },
  13325. },
  13326. [
  13327. {
  13328. name: "Micro",
  13329. height: math.unit(3, "inches")
  13330. },
  13331. {
  13332. name: "Normal",
  13333. height: math.unit(6, "feet"),
  13334. default: true
  13335. },
  13336. {
  13337. name: "Macro",
  13338. height: math.unit(50, "feet")
  13339. },
  13340. {
  13341. name: "Megamacro",
  13342. height: math.unit(2800, "feet")
  13343. },
  13344. ]
  13345. ))
  13346. characterMakers.push(() => makeCharacter(
  13347. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13348. {
  13349. front: {
  13350. height: math.unit(5 + 4 / 12, "feet"),
  13351. weight: math.unit(100, "lb"),
  13352. name: "Front",
  13353. image: {
  13354. source: "./media/characters/keireer/front.svg",
  13355. extra: 716 / 666,
  13356. bottom: 0.05
  13357. }
  13358. },
  13359. },
  13360. [
  13361. {
  13362. name: "Normal",
  13363. height: math.unit(5 + 4 / 12, "feet"),
  13364. default: true
  13365. },
  13366. ]
  13367. ))
  13368. characterMakers.push(() => makeCharacter(
  13369. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13370. {
  13371. front: {
  13372. height: math.unit(6, "feet"),
  13373. weight: math.unit(90, "kg"),
  13374. name: "Front",
  13375. image: {
  13376. source: "./media/characters/mirja/front.svg",
  13377. extra: 1789 / 1683,
  13378. bottom: 0.05
  13379. }
  13380. },
  13381. frontDressed: {
  13382. height: math.unit(6, "feet"),
  13383. weight: math.unit(90, "lb"),
  13384. name: "Front (Dressed)",
  13385. image: {
  13386. source: "./media/characters/mirja/front-dressed.svg",
  13387. extra: 1789 / 1683,
  13388. bottom: 0.05
  13389. }
  13390. },
  13391. back: {
  13392. height: math.unit(6, "feet"),
  13393. weight: math.unit(90, "lb"),
  13394. name: "Back",
  13395. image: {
  13396. source: "./media/characters/mirja/back.svg",
  13397. extra: 953 / 917,
  13398. bottom: 0.017
  13399. }
  13400. },
  13401. },
  13402. [
  13403. {
  13404. name: "\"Incognito\"",
  13405. height: math.unit(3, "meters")
  13406. },
  13407. {
  13408. name: "Strolling Size",
  13409. height: math.unit(15, "km")
  13410. },
  13411. {
  13412. name: "Larger Strolling Size",
  13413. height: math.unit(400, "km")
  13414. },
  13415. {
  13416. name: "Preferred Size",
  13417. height: math.unit(5000, "km")
  13418. },
  13419. {
  13420. name: "True Size",
  13421. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13422. default: true
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(15, "feet"),
  13431. weight: math.unit(880, "kg"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/nightraver/front.svg",
  13435. extra: 2444 / 2160,
  13436. bottom: 0.027
  13437. }
  13438. },
  13439. back: {
  13440. height: math.unit(15, "feet"),
  13441. weight: math.unit(880, "kg"),
  13442. name: "Back",
  13443. image: {
  13444. source: "./media/characters/nightraver/back.svg",
  13445. extra: 2309 / 2180,
  13446. bottom: 0.005
  13447. }
  13448. },
  13449. sole: {
  13450. height: math.unit(2.878, "feet"),
  13451. name: "Sole",
  13452. image: {
  13453. source: "./media/characters/nightraver/sole.svg"
  13454. }
  13455. },
  13456. foot: {
  13457. height: math.unit(2.285, "feet"),
  13458. name: "Foot",
  13459. image: {
  13460. source: "./media/characters/nightraver/foot.svg"
  13461. }
  13462. },
  13463. maw: {
  13464. height: math.unit(2.67, "feet"),
  13465. name: "Maw",
  13466. image: {
  13467. source: "./media/characters/nightraver/maw.svg"
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Micro",
  13474. height: math.unit(1, "cm")
  13475. },
  13476. {
  13477. name: "Normal",
  13478. height: math.unit(15, "feet"),
  13479. default: true
  13480. },
  13481. {
  13482. name: "Macro",
  13483. height: math.unit(300, "feet")
  13484. },
  13485. {
  13486. name: "Megamacro",
  13487. height: math.unit(300, "miles")
  13488. },
  13489. {
  13490. name: "Gigamacro",
  13491. height: math.unit(10000, "miles")
  13492. },
  13493. ]
  13494. ))
  13495. characterMakers.push(() => makeCharacter(
  13496. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13497. {
  13498. side: {
  13499. height: math.unit(2, "inches"),
  13500. weight: math.unit(5, "grams"),
  13501. name: "Side",
  13502. image: {
  13503. source: "./media/characters/arc/side.svg"
  13504. }
  13505. },
  13506. },
  13507. [
  13508. {
  13509. name: "Micro",
  13510. height: math.unit(2, "inches"),
  13511. default: true
  13512. },
  13513. ]
  13514. ))
  13515. characterMakers.push(() => makeCharacter(
  13516. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13517. {
  13518. front: {
  13519. height: math.unit(1.1938, "meters"),
  13520. weight: math.unit(54, "kg"),
  13521. name: "Front",
  13522. image: {
  13523. source: "./media/characters/nebula-shahar/front.svg",
  13524. extra: 1642 / 1436,
  13525. bottom: 0.06
  13526. }
  13527. },
  13528. },
  13529. [
  13530. {
  13531. name: "Megamicro",
  13532. height: math.unit(0.3, "mm")
  13533. },
  13534. {
  13535. name: "Micro",
  13536. height: math.unit(3, "cm")
  13537. },
  13538. {
  13539. name: "Normal",
  13540. height: math.unit(138, "cm"),
  13541. default: true
  13542. },
  13543. {
  13544. name: "Macro",
  13545. height: math.unit(30, "m")
  13546. },
  13547. ]
  13548. ))
  13549. characterMakers.push(() => makeCharacter(
  13550. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13551. {
  13552. front: {
  13553. height: math.unit(5.24, "feet"),
  13554. weight: math.unit(150, "lb"),
  13555. name: "Front",
  13556. image: {
  13557. source: "./media/characters/shayla/front.svg",
  13558. extra: 1512 / 1414,
  13559. bottom: 0.01
  13560. }
  13561. },
  13562. back: {
  13563. height: math.unit(5.24, "feet"),
  13564. weight: math.unit(150, "lb"),
  13565. name: "Back",
  13566. image: {
  13567. source: "./media/characters/shayla/back.svg",
  13568. extra: 1512 / 1414
  13569. }
  13570. },
  13571. hand: {
  13572. height: math.unit(0.7781496062992126, "feet"),
  13573. name: "Hand",
  13574. image: {
  13575. source: "./media/characters/shayla/hand.svg"
  13576. }
  13577. },
  13578. foot: {
  13579. height: math.unit(1.4206036745406823, "feet"),
  13580. name: "Foot",
  13581. image: {
  13582. source: "./media/characters/shayla/foot.svg"
  13583. }
  13584. },
  13585. },
  13586. [
  13587. {
  13588. name: "Micro",
  13589. height: math.unit(0.32, "feet")
  13590. },
  13591. {
  13592. name: "Normal",
  13593. height: math.unit(5.24, "feet"),
  13594. default: true
  13595. },
  13596. {
  13597. name: "Macro",
  13598. height: math.unit(492.12, "feet")
  13599. },
  13600. {
  13601. name: "Megamacro",
  13602. height: math.unit(186.41, "miles")
  13603. },
  13604. ]
  13605. ))
  13606. characterMakers.push(() => makeCharacter(
  13607. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13608. {
  13609. front: {
  13610. height: math.unit(2.2, "m"),
  13611. weight: math.unit(120, "kg"),
  13612. name: "Front",
  13613. image: {
  13614. source: "./media/characters/pia-jr/front.svg",
  13615. extra: 1000 / 970,
  13616. bottom: 0.035
  13617. }
  13618. },
  13619. hand: {
  13620. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13621. name: "Hand",
  13622. image: {
  13623. source: "./media/characters/pia-jr/hand.svg"
  13624. }
  13625. },
  13626. paw: {
  13627. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13628. name: "Paw",
  13629. image: {
  13630. source: "./media/characters/pia-jr/paw.svg"
  13631. }
  13632. },
  13633. },
  13634. [
  13635. {
  13636. name: "Micro",
  13637. height: math.unit(1.2, "cm")
  13638. },
  13639. {
  13640. name: "Normal",
  13641. height: math.unit(2.2, "m"),
  13642. default: true
  13643. },
  13644. {
  13645. name: "Macro",
  13646. height: math.unit(180, "m")
  13647. },
  13648. {
  13649. name: "Megamacro",
  13650. height: math.unit(420, "km")
  13651. },
  13652. ]
  13653. ))
  13654. characterMakers.push(() => makeCharacter(
  13655. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13656. {
  13657. front: {
  13658. height: math.unit(2, "m"),
  13659. weight: math.unit(115, "kg"),
  13660. name: "Front",
  13661. image: {
  13662. source: "./media/characters/pia-sr/front.svg",
  13663. extra: 760 / 730,
  13664. bottom: 0.015
  13665. }
  13666. },
  13667. back: {
  13668. height: math.unit(2, "m"),
  13669. weight: math.unit(115, "kg"),
  13670. name: "Back",
  13671. image: {
  13672. source: "./media/characters/pia-sr/back.svg",
  13673. extra: 760 / 730,
  13674. bottom: 0.01
  13675. }
  13676. },
  13677. hand: {
  13678. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13679. name: "Hand",
  13680. image: {
  13681. source: "./media/characters/pia-sr/hand.svg"
  13682. }
  13683. },
  13684. foot: {
  13685. height: math.unit(1.83, "feet"),
  13686. name: "Foot",
  13687. image: {
  13688. source: "./media/characters/pia-sr/foot.svg"
  13689. }
  13690. },
  13691. },
  13692. [
  13693. {
  13694. name: "Micro",
  13695. height: math.unit(88, "mm")
  13696. },
  13697. {
  13698. name: "Normal",
  13699. height: math.unit(2, "m"),
  13700. default: true
  13701. },
  13702. {
  13703. name: "Macro",
  13704. height: math.unit(200, "m")
  13705. },
  13706. {
  13707. name: "Megamacro",
  13708. height: math.unit(420, "km")
  13709. },
  13710. ]
  13711. ))
  13712. characterMakers.push(() => makeCharacter(
  13713. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13714. {
  13715. front: {
  13716. height: math.unit(8 + 2 / 12, "feet"),
  13717. weight: math.unit(300, "lb"),
  13718. name: "Front",
  13719. image: {
  13720. source: "./media/characters/kibibyte/front.svg",
  13721. extra: 2221 / 2098,
  13722. bottom: 0.04
  13723. }
  13724. },
  13725. },
  13726. [
  13727. {
  13728. name: "Normal",
  13729. height: math.unit(8 + 2 / 12, "feet"),
  13730. default: true
  13731. },
  13732. {
  13733. name: "Socialable Macro",
  13734. height: math.unit(50, "feet")
  13735. },
  13736. {
  13737. name: "Macro",
  13738. height: math.unit(300, "feet")
  13739. },
  13740. {
  13741. name: "Megamacro",
  13742. height: math.unit(500, "miles")
  13743. },
  13744. ]
  13745. ))
  13746. characterMakers.push(() => makeCharacter(
  13747. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13748. {
  13749. front: {
  13750. height: math.unit(6, "feet"),
  13751. weight: math.unit(150, "lb"),
  13752. name: "Front",
  13753. image: {
  13754. source: "./media/characters/felix/front.svg",
  13755. extra: 762 / 722,
  13756. bottom: 0.02
  13757. }
  13758. },
  13759. frontClothed: {
  13760. height: math.unit(6, "feet"),
  13761. weight: math.unit(150, "lb"),
  13762. name: "Front (Clothed)",
  13763. image: {
  13764. source: "./media/characters/felix/front-clothed.svg",
  13765. extra: 762 / 722,
  13766. bottom: 0.02
  13767. }
  13768. },
  13769. },
  13770. [
  13771. {
  13772. name: "Normal",
  13773. height: math.unit(6 + 8 / 12, "feet"),
  13774. default: true
  13775. },
  13776. {
  13777. name: "Macro",
  13778. height: math.unit(2600, "feet")
  13779. },
  13780. {
  13781. name: "Megamacro",
  13782. height: math.unit(450, "miles")
  13783. },
  13784. ]
  13785. ))
  13786. characterMakers.push(() => makeCharacter(
  13787. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13788. {
  13789. front: {
  13790. height: math.unit(6 + 1 / 12, "feet"),
  13791. weight: math.unit(250, "lb"),
  13792. name: "Front",
  13793. image: {
  13794. source: "./media/characters/tobo/front.svg",
  13795. extra: 608 / 586,
  13796. bottom: 0.023
  13797. }
  13798. },
  13799. back: {
  13800. height: math.unit(6 + 1 / 12, "feet"),
  13801. weight: math.unit(250, "lb"),
  13802. name: "Back",
  13803. image: {
  13804. source: "./media/characters/tobo/back.svg",
  13805. extra: 608 / 586
  13806. }
  13807. },
  13808. },
  13809. [
  13810. {
  13811. name: "Nano",
  13812. height: math.unit(2, "nm")
  13813. },
  13814. {
  13815. name: "Megamicro",
  13816. height: math.unit(0.1, "mm")
  13817. },
  13818. {
  13819. name: "Micro",
  13820. height: math.unit(1, "inch"),
  13821. default: true
  13822. },
  13823. {
  13824. name: "Human-sized",
  13825. height: math.unit(6 + 1 / 12, "feet")
  13826. },
  13827. {
  13828. name: "Macro",
  13829. height: math.unit(250, "feet")
  13830. },
  13831. {
  13832. name: "Megamacro",
  13833. height: math.unit(75, "miles")
  13834. },
  13835. {
  13836. name: "Texas-sized",
  13837. height: math.unit(750, "miles")
  13838. },
  13839. {
  13840. name: "Teramacro",
  13841. height: math.unit(50000, "miles")
  13842. },
  13843. ]
  13844. ))
  13845. characterMakers.push(() => makeCharacter(
  13846. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13847. {
  13848. front: {
  13849. height: math.unit(6, "feet"),
  13850. weight: math.unit(269, "lb"),
  13851. name: "Front",
  13852. image: {
  13853. source: "./media/characters/danny-kapowsky/front.svg",
  13854. extra: 766 / 736,
  13855. bottom: 0.044
  13856. }
  13857. },
  13858. back: {
  13859. height: math.unit(6, "feet"),
  13860. weight: math.unit(269, "lb"),
  13861. name: "Back",
  13862. image: {
  13863. source: "./media/characters/danny-kapowsky/back.svg",
  13864. extra: 797 / 760,
  13865. bottom: 0.025
  13866. }
  13867. },
  13868. },
  13869. [
  13870. {
  13871. name: "Macro",
  13872. height: math.unit(150, "feet"),
  13873. default: true
  13874. },
  13875. {
  13876. name: "Macro+",
  13877. height: math.unit(200, "feet")
  13878. },
  13879. {
  13880. name: "Macro++",
  13881. height: math.unit(300, "feet")
  13882. },
  13883. {
  13884. name: "Macro+++",
  13885. height: math.unit(400, "feet")
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13891. {
  13892. side: {
  13893. height: math.unit(6, "feet"),
  13894. weight: math.unit(170, "lb"),
  13895. name: "Side",
  13896. image: {
  13897. source: "./media/characters/finn/side.svg",
  13898. extra: 1953 / 1807,
  13899. bottom: 0.057
  13900. }
  13901. },
  13902. },
  13903. [
  13904. {
  13905. name: "Megamacro",
  13906. height: math.unit(14445, "feet"),
  13907. default: true
  13908. },
  13909. ]
  13910. ))
  13911. characterMakers.push(() => makeCharacter(
  13912. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13913. {
  13914. front: {
  13915. height: math.unit(5 + 6 / 12, "feet"),
  13916. weight: math.unit(125, "lb"),
  13917. name: "Front",
  13918. image: {
  13919. source: "./media/characters/roy/front.svg",
  13920. extra: 1,
  13921. bottom: 0.11
  13922. }
  13923. },
  13924. },
  13925. [
  13926. {
  13927. name: "Micro",
  13928. height: math.unit(3, "inches"),
  13929. default: true
  13930. },
  13931. {
  13932. name: "Normal",
  13933. height: math.unit(5 + 6 / 12, "feet")
  13934. },
  13935. {
  13936. name: "Lesser Macro",
  13937. height: math.unit(60, "feet")
  13938. },
  13939. {
  13940. name: "Greater Macro",
  13941. height: math.unit(120, "feet")
  13942. },
  13943. ]
  13944. ))
  13945. characterMakers.push(() => makeCharacter(
  13946. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13947. {
  13948. front: {
  13949. height: math.unit(6, "feet"),
  13950. weight: math.unit(100, "lb"),
  13951. name: "Front",
  13952. image: {
  13953. source: "./media/characters/aevsivs/front.svg",
  13954. extra: 1,
  13955. bottom: 0.03
  13956. }
  13957. },
  13958. back: {
  13959. height: math.unit(6, "feet"),
  13960. weight: math.unit(100, "lb"),
  13961. name: "Back",
  13962. image: {
  13963. source: "./media/characters/aevsivs/back.svg"
  13964. }
  13965. },
  13966. },
  13967. [
  13968. {
  13969. name: "Micro",
  13970. height: math.unit(2, "inches"),
  13971. default: true
  13972. },
  13973. {
  13974. name: "Normal",
  13975. height: math.unit(5, "feet")
  13976. },
  13977. ]
  13978. ))
  13979. characterMakers.push(() => makeCharacter(
  13980. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13981. {
  13982. front: {
  13983. height: math.unit(5 + 7 / 12, "feet"),
  13984. weight: math.unit(159, "lb"),
  13985. name: "Front",
  13986. image: {
  13987. source: "./media/characters/hildegard/front.svg",
  13988. extra: 289 / 269,
  13989. bottom: 7.63 / 297.8
  13990. }
  13991. },
  13992. back: {
  13993. height: math.unit(5 + 7 / 12, "feet"),
  13994. weight: math.unit(159, "lb"),
  13995. name: "Back",
  13996. image: {
  13997. source: "./media/characters/hildegard/back.svg",
  13998. extra: 280 / 260,
  13999. bottom: 2.3 / 282
  14000. }
  14001. },
  14002. },
  14003. [
  14004. {
  14005. name: "Normal",
  14006. height: math.unit(5 + 7 / 12, "feet"),
  14007. default: true
  14008. },
  14009. ]
  14010. ))
  14011. characterMakers.push(() => makeCharacter(
  14012. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14013. {
  14014. bernard: {
  14015. height: math.unit(2 + 7 / 12, "feet"),
  14016. weight: math.unit(66, "lb"),
  14017. name: "Bernard",
  14018. rename: true,
  14019. image: {
  14020. source: "./media/characters/bernard-wilder/bernard.svg",
  14021. extra: 192 / 128,
  14022. bottom: 0.05
  14023. }
  14024. },
  14025. wilder: {
  14026. height: math.unit(5 + 8 / 12, "feet"),
  14027. weight: math.unit(143, "lb"),
  14028. name: "Wilder",
  14029. rename: true,
  14030. image: {
  14031. source: "./media/characters/bernard-wilder/wilder.svg",
  14032. extra: 361 / 312,
  14033. bottom: 0.02
  14034. }
  14035. },
  14036. },
  14037. [
  14038. {
  14039. name: "Normal",
  14040. height: math.unit(2 + 7 / 12, "feet"),
  14041. default: true
  14042. },
  14043. ]
  14044. ))
  14045. characterMakers.push(() => makeCharacter(
  14046. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14047. {
  14048. anthro: {
  14049. height: math.unit(6 + 1 / 12, "feet"),
  14050. weight: math.unit(155, "lb"),
  14051. name: "Anthro",
  14052. image: {
  14053. source: "./media/characters/hearth/anthro.svg",
  14054. extra: 260 / 250,
  14055. bottom: 0.02
  14056. }
  14057. },
  14058. feral: {
  14059. height: math.unit(3.78, "feet"),
  14060. weight: math.unit(35, "kg"),
  14061. name: "Feral",
  14062. image: {
  14063. source: "./media/characters/hearth/feral.svg",
  14064. extra: 153 / 135,
  14065. bottom: 0.03
  14066. }
  14067. },
  14068. },
  14069. [
  14070. {
  14071. name: "Normal",
  14072. height: math.unit(6 + 1 / 12, "feet"),
  14073. default: true
  14074. },
  14075. ]
  14076. ))
  14077. characterMakers.push(() => makeCharacter(
  14078. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14079. {
  14080. front: {
  14081. height: math.unit(6, "feet"),
  14082. weight: math.unit(182, "lb"),
  14083. name: "Front",
  14084. image: {
  14085. source: "./media/characters/ingrid/front.svg",
  14086. extra: 294 / 268,
  14087. bottom: 0.027
  14088. }
  14089. },
  14090. },
  14091. [
  14092. {
  14093. name: "Normal",
  14094. height: math.unit(6, "feet"),
  14095. default: true
  14096. },
  14097. ]
  14098. ))
  14099. characterMakers.push(() => makeCharacter(
  14100. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14101. {
  14102. eevee: {
  14103. height: math.unit(2 + 10 / 12, "feet"),
  14104. weight: math.unit(86, "lb"),
  14105. name: "Malgam",
  14106. image: {
  14107. source: "./media/characters/malgam/eevee.svg",
  14108. extra: 218 / 180,
  14109. bottom: 0.2
  14110. }
  14111. },
  14112. sylveon: {
  14113. height: math.unit(4, "feet"),
  14114. weight: math.unit(101, "lb"),
  14115. name: "Future Malgam",
  14116. rename: true,
  14117. image: {
  14118. source: "./media/characters/malgam/sylveon.svg",
  14119. extra: 371 / 325,
  14120. bottom: 0.015
  14121. }
  14122. },
  14123. gigantamax: {
  14124. height: math.unit(50, "feet"),
  14125. name: "Gigantamax Malgam",
  14126. rename: true,
  14127. image: {
  14128. source: "./media/characters/malgam/gigantamax.svg"
  14129. }
  14130. },
  14131. },
  14132. [
  14133. {
  14134. name: "Normal",
  14135. height: math.unit(2 + 10 / 12, "feet"),
  14136. default: true
  14137. },
  14138. ]
  14139. ))
  14140. characterMakers.push(() => makeCharacter(
  14141. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14142. {
  14143. front: {
  14144. height: math.unit(5 + 11 / 12, "feet"),
  14145. weight: math.unit(188, "lb"),
  14146. name: "Front",
  14147. image: {
  14148. source: "./media/characters/fleur/front.svg",
  14149. extra: 309 / 283,
  14150. bottom: 0.007
  14151. }
  14152. },
  14153. },
  14154. [
  14155. {
  14156. name: "Normal",
  14157. height: math.unit(5 + 11 / 12, "feet"),
  14158. default: true
  14159. },
  14160. ]
  14161. ))
  14162. characterMakers.push(() => makeCharacter(
  14163. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14164. {
  14165. front: {
  14166. height: math.unit(5 + 4 / 12, "feet"),
  14167. weight: math.unit(122, "lb"),
  14168. name: "Front",
  14169. image: {
  14170. source: "./media/characters/jude/front.svg",
  14171. extra: 288 / 273,
  14172. bottom: 0.03
  14173. }
  14174. },
  14175. },
  14176. [
  14177. {
  14178. name: "Normal",
  14179. height: math.unit(5 + 4 / 12, "feet"),
  14180. default: true
  14181. },
  14182. ]
  14183. ))
  14184. characterMakers.push(() => makeCharacter(
  14185. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14186. {
  14187. front: {
  14188. height: math.unit(5 + 11 / 12, "feet"),
  14189. weight: math.unit(190, "lb"),
  14190. name: "Front",
  14191. image: {
  14192. source: "./media/characters/seara/front.svg",
  14193. extra: 1,
  14194. bottom: 0.05
  14195. }
  14196. },
  14197. },
  14198. [
  14199. {
  14200. name: "Normal",
  14201. height: math.unit(5 + 11 / 12, "feet"),
  14202. default: true
  14203. },
  14204. ]
  14205. ))
  14206. characterMakers.push(() => makeCharacter(
  14207. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14208. {
  14209. front: {
  14210. height: math.unit(16 + 5 / 12, "feet"),
  14211. weight: math.unit(524, "lb"),
  14212. name: "Front",
  14213. image: {
  14214. source: "./media/characters/caspian/front.svg",
  14215. extra: 1,
  14216. bottom: 0.04
  14217. }
  14218. },
  14219. },
  14220. [
  14221. {
  14222. name: "Normal",
  14223. height: math.unit(16 + 5 / 12, "feet"),
  14224. default: true
  14225. },
  14226. ]
  14227. ))
  14228. characterMakers.push(() => makeCharacter(
  14229. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14230. {
  14231. front: {
  14232. height: math.unit(5 + 7 / 12, "feet"),
  14233. weight: math.unit(170, "lb"),
  14234. name: "Front",
  14235. image: {
  14236. source: "./media/characters/mika/front.svg",
  14237. extra: 1,
  14238. bottom: 0.016
  14239. }
  14240. },
  14241. },
  14242. [
  14243. {
  14244. name: "Normal",
  14245. height: math.unit(5 + 7 / 12, "feet"),
  14246. default: true
  14247. },
  14248. ]
  14249. ))
  14250. characterMakers.push(() => makeCharacter(
  14251. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14252. {
  14253. front: {
  14254. height: math.unit(6 + 2 / 12, "feet"),
  14255. weight: math.unit(268, "lb"),
  14256. name: "Front",
  14257. image: {
  14258. source: "./media/characters/sol/front.svg",
  14259. extra: 247 / 231,
  14260. bottom: 0.05
  14261. }
  14262. },
  14263. },
  14264. [
  14265. {
  14266. name: "Normal",
  14267. height: math.unit(6 + 2 / 12, "feet"),
  14268. default: true
  14269. },
  14270. ]
  14271. ))
  14272. characterMakers.push(() => makeCharacter(
  14273. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14274. {
  14275. buizel: {
  14276. height: math.unit(2 + 5 / 12, "feet"),
  14277. weight: math.unit(87, "lb"),
  14278. name: "Buizel",
  14279. image: {
  14280. source: "./media/characters/umiko/buizel.svg",
  14281. extra: 172 / 157,
  14282. bottom: 0.01
  14283. }
  14284. },
  14285. floatzel: {
  14286. height: math.unit(5 + 9 / 12, "feet"),
  14287. weight: math.unit(250, "lb"),
  14288. name: "Floatzel",
  14289. image: {
  14290. source: "./media/characters/umiko/floatzel.svg",
  14291. extra: 262 / 248
  14292. }
  14293. },
  14294. },
  14295. [
  14296. {
  14297. name: "Normal",
  14298. height: math.unit(2 + 5 / 12, "feet"),
  14299. default: true
  14300. },
  14301. ]
  14302. ))
  14303. characterMakers.push(() => makeCharacter(
  14304. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14305. {
  14306. front: {
  14307. height: math.unit(6 + 2 / 12, "feet"),
  14308. weight: math.unit(146, "lb"),
  14309. name: "Front",
  14310. image: {
  14311. source: "./media/characters/iliac/front.svg",
  14312. extra: 389 / 365,
  14313. bottom: 0.035
  14314. }
  14315. },
  14316. },
  14317. [
  14318. {
  14319. name: "Normal",
  14320. height: math.unit(6 + 2 / 12, "feet"),
  14321. default: true
  14322. },
  14323. ]
  14324. ))
  14325. characterMakers.push(() => makeCharacter(
  14326. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14327. {
  14328. front: {
  14329. height: math.unit(6, "feet"),
  14330. weight: math.unit(170, "lb"),
  14331. name: "Front",
  14332. image: {
  14333. source: "./media/characters/topaz/front.svg",
  14334. extra: 317 / 303,
  14335. bottom: 0.055
  14336. }
  14337. },
  14338. },
  14339. [
  14340. {
  14341. name: "Normal",
  14342. height: math.unit(6, "feet"),
  14343. default: true
  14344. },
  14345. ]
  14346. ))
  14347. characterMakers.push(() => makeCharacter(
  14348. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14349. {
  14350. front: {
  14351. height: math.unit(5 + 11 / 12, "feet"),
  14352. weight: math.unit(144, "lb"),
  14353. name: "Front",
  14354. image: {
  14355. source: "./media/characters/gabriel/front.svg",
  14356. extra: 285 / 262,
  14357. bottom: 0.004
  14358. }
  14359. },
  14360. },
  14361. [
  14362. {
  14363. name: "Normal",
  14364. height: math.unit(5 + 11 / 12, "feet"),
  14365. default: true
  14366. },
  14367. ]
  14368. ))
  14369. characterMakers.push(() => makeCharacter(
  14370. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14371. {
  14372. side: {
  14373. height: math.unit(6 + 5 / 12, "feet"),
  14374. weight: math.unit(300, "lb"),
  14375. name: "Side",
  14376. image: {
  14377. source: "./media/characters/tempest-suicune/side.svg",
  14378. extra: 195 / 154,
  14379. bottom: 0.04
  14380. }
  14381. },
  14382. },
  14383. [
  14384. {
  14385. name: "Normal",
  14386. height: math.unit(6 + 5 / 12, "feet"),
  14387. default: true
  14388. },
  14389. ]
  14390. ))
  14391. characterMakers.push(() => makeCharacter(
  14392. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14393. {
  14394. front: {
  14395. height: math.unit(7 + 2 / 12, "feet"),
  14396. weight: math.unit(322, "lb"),
  14397. name: "Front",
  14398. image: {
  14399. source: "./media/characters/vulcan/front.svg",
  14400. extra: 154 / 147,
  14401. bottom: 0.04
  14402. }
  14403. },
  14404. },
  14405. [
  14406. {
  14407. name: "Normal",
  14408. height: math.unit(7 + 2 / 12, "feet"),
  14409. default: true
  14410. },
  14411. ]
  14412. ))
  14413. characterMakers.push(() => makeCharacter(
  14414. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14415. {
  14416. front: {
  14417. height: math.unit(5 + 10 / 12, "feet"),
  14418. weight: math.unit(264, "lb"),
  14419. name: "Front",
  14420. image: {
  14421. source: "./media/characters/gault/front.svg",
  14422. extra: 161 / 140,
  14423. bottom: 0.028
  14424. }
  14425. },
  14426. },
  14427. [
  14428. {
  14429. name: "Normal",
  14430. height: math.unit(5 + 10 / 12, "feet"),
  14431. default: true
  14432. },
  14433. ]
  14434. ))
  14435. characterMakers.push(() => makeCharacter(
  14436. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14437. {
  14438. front: {
  14439. height: math.unit(6, "feet"),
  14440. weight: math.unit(150, "lb"),
  14441. name: "Front",
  14442. image: {
  14443. source: "./media/characters/shard/front.svg",
  14444. extra: 273 / 238,
  14445. bottom: 0.02
  14446. }
  14447. },
  14448. },
  14449. [
  14450. {
  14451. name: "Normal",
  14452. height: math.unit(3 + 6 / 12, "feet"),
  14453. default: true
  14454. },
  14455. ]
  14456. ))
  14457. characterMakers.push(() => makeCharacter(
  14458. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14459. {
  14460. front: {
  14461. height: math.unit(5 + 11 / 12, "feet"),
  14462. weight: math.unit(146, "lb"),
  14463. name: "Front",
  14464. image: {
  14465. source: "./media/characters/ashe/front.svg",
  14466. extra: 400 / 373,
  14467. bottom: 0.01
  14468. }
  14469. },
  14470. },
  14471. [
  14472. {
  14473. name: "Normal",
  14474. height: math.unit(5 + 11 / 12, "feet"),
  14475. default: true
  14476. },
  14477. ]
  14478. ))
  14479. characterMakers.push(() => makeCharacter(
  14480. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14481. {
  14482. front: {
  14483. height: math.unit(5 + 5 / 12, "feet"),
  14484. weight: math.unit(135, "lb"),
  14485. name: "Front",
  14486. image: {
  14487. source: "./media/characters/beatrix/front.svg",
  14488. extra: 392 / 379,
  14489. bottom: 0.01
  14490. }
  14491. },
  14492. },
  14493. [
  14494. {
  14495. name: "Normal",
  14496. height: math.unit(6, "feet"),
  14497. default: true
  14498. },
  14499. ]
  14500. ))
  14501. characterMakers.push(() => makeCharacter(
  14502. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14503. {
  14504. front: {
  14505. height: math.unit(6, "feet"),
  14506. weight: math.unit(150, "lb"),
  14507. name: "Front",
  14508. image: {
  14509. source: "./media/characters/ignatius/front.svg",
  14510. extra: 245 / 222,
  14511. bottom: 0.01
  14512. }
  14513. },
  14514. },
  14515. [
  14516. {
  14517. name: "Normal",
  14518. height: math.unit(5 + 5 / 12, "feet"),
  14519. default: true
  14520. },
  14521. ]
  14522. ))
  14523. characterMakers.push(() => makeCharacter(
  14524. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14525. {
  14526. front: {
  14527. height: math.unit(6 + 2 / 12, "feet"),
  14528. weight: math.unit(138, "lb"),
  14529. name: "Front",
  14530. image: {
  14531. source: "./media/characters/mei-li/front.svg",
  14532. extra: 237 / 229,
  14533. bottom: 0.03
  14534. }
  14535. },
  14536. },
  14537. [
  14538. {
  14539. name: "Normal",
  14540. height: math.unit(6 + 2 / 12, "feet"),
  14541. default: true
  14542. },
  14543. ]
  14544. ))
  14545. characterMakers.push(() => makeCharacter(
  14546. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14547. {
  14548. front: {
  14549. height: math.unit(2 + 4 / 12, "feet"),
  14550. weight: math.unit(62, "lb"),
  14551. name: "Front",
  14552. image: {
  14553. source: "./media/characters/puru/front.svg",
  14554. extra: 206 / 149,
  14555. bottom: 0.06
  14556. }
  14557. },
  14558. },
  14559. [
  14560. {
  14561. name: "Normal",
  14562. height: math.unit(2 + 4 / 12, "feet"),
  14563. default: true
  14564. },
  14565. ]
  14566. ))
  14567. characterMakers.push(() => makeCharacter(
  14568. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14569. {
  14570. taur: {
  14571. height: math.unit(11, "feet"),
  14572. weight: math.unit(500, "lb"),
  14573. name: "Taur",
  14574. image: {
  14575. source: "./media/characters/kee/taur.svg",
  14576. extra: 1,
  14577. bottom: 0.04
  14578. }
  14579. },
  14580. },
  14581. [
  14582. {
  14583. name: "Normal",
  14584. height: math.unit(11, "feet"),
  14585. default: true
  14586. },
  14587. ]
  14588. ))
  14589. characterMakers.push(() => makeCharacter(
  14590. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14591. {
  14592. anthro: {
  14593. height: math.unit(7, "feet"),
  14594. weight: math.unit(190, "lb"),
  14595. name: "Anthro",
  14596. image: {
  14597. source: "./media/characters/cobalt-dracha/anthro.svg",
  14598. extra: 231 / 225,
  14599. bottom: 0.04
  14600. }
  14601. },
  14602. feral: {
  14603. height: math.unit(9 + 7 / 12, "feet"),
  14604. weight: math.unit(294, "lb"),
  14605. name: "Feral",
  14606. image: {
  14607. source: "./media/characters/cobalt-dracha/feral.svg",
  14608. extra: 692 / 633,
  14609. bottom: 0.05
  14610. }
  14611. },
  14612. },
  14613. [
  14614. {
  14615. name: "Normal",
  14616. height: math.unit(7, "feet"),
  14617. default: true
  14618. },
  14619. ]
  14620. ))
  14621. characterMakers.push(() => makeCharacter(
  14622. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14623. {
  14624. fallen: {
  14625. height: math.unit(11 + 8 / 12, "feet"),
  14626. weight: math.unit(485, "lb"),
  14627. name: "Java (Fallen)",
  14628. rename: true,
  14629. image: {
  14630. source: "./media/characters/java/fallen.svg",
  14631. extra: 226 / 208,
  14632. bottom: 0.005
  14633. }
  14634. },
  14635. godkin: {
  14636. height: math.unit(10 + 6 / 12, "feet"),
  14637. weight: math.unit(328, "lb"),
  14638. name: "Java (Godkin)",
  14639. rename: true,
  14640. image: {
  14641. source: "./media/characters/java/godkin.svg",
  14642. extra: 270 / 262,
  14643. bottom: 0.02
  14644. }
  14645. },
  14646. },
  14647. [
  14648. {
  14649. name: "Normal",
  14650. height: math.unit(11 + 8 / 12, "feet"),
  14651. default: true
  14652. },
  14653. ]
  14654. ))
  14655. characterMakers.push(() => makeCharacter(
  14656. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14657. {
  14658. front: {
  14659. height: math.unit(7 + 8 / 12, "feet"),
  14660. weight: math.unit(320, "lb"),
  14661. name: "Front",
  14662. image: {
  14663. source: "./media/characters/skoll/front.svg",
  14664. extra: 232 / 220,
  14665. bottom: 0.02
  14666. }
  14667. },
  14668. },
  14669. [
  14670. {
  14671. name: "Normal",
  14672. height: math.unit(7 + 8 / 12, "feet"),
  14673. default: true
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14679. {
  14680. front: {
  14681. height: math.unit(5 + 9 / 12, "feet"),
  14682. weight: math.unit(170, "lb"),
  14683. name: "Front",
  14684. image: {
  14685. source: "./media/characters/purna/front.svg",
  14686. extra: 239 / 229,
  14687. bottom: 0.01
  14688. }
  14689. },
  14690. },
  14691. [
  14692. {
  14693. name: "Normal",
  14694. height: math.unit(5 + 9 / 12, "feet"),
  14695. default: true
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(5 + 9 / 12, "feet"),
  14704. weight: math.unit(142, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/kuva/front.svg",
  14708. extra: 281 / 271,
  14709. bottom: 0.006
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Normal",
  14716. height: math.unit(5 + 9 / 12, "feet"),
  14717. default: true
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14723. {
  14724. anthro: {
  14725. height: math.unit(9 + 2 / 12, "feet"),
  14726. weight: math.unit(270, "lb"),
  14727. name: "Anthro",
  14728. image: {
  14729. source: "./media/characters/embra/anthro.svg",
  14730. extra: 200 / 187,
  14731. bottom: 0.02
  14732. }
  14733. },
  14734. feral: {
  14735. height: math.unit(18 + 8 / 12, "feet"),
  14736. weight: math.unit(576, "lb"),
  14737. name: "Feral",
  14738. image: {
  14739. source: "./media/characters/embra/feral.svg",
  14740. extra: 152 / 137,
  14741. bottom: 0.037
  14742. }
  14743. },
  14744. },
  14745. [
  14746. {
  14747. name: "Normal",
  14748. height: math.unit(9 + 2 / 12, "feet"),
  14749. default: true
  14750. },
  14751. ]
  14752. ))
  14753. characterMakers.push(() => makeCharacter(
  14754. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14755. {
  14756. anthro: {
  14757. height: math.unit(10 + 9 / 12, "feet"),
  14758. weight: math.unit(224, "lb"),
  14759. name: "Anthro",
  14760. image: {
  14761. source: "./media/characters/grottos/anthro.svg",
  14762. extra: 350 / 332,
  14763. bottom: 0.045
  14764. }
  14765. },
  14766. feral: {
  14767. height: math.unit(20 + 7 / 12, "feet"),
  14768. weight: math.unit(629, "lb"),
  14769. name: "Feral",
  14770. image: {
  14771. source: "./media/characters/grottos/feral.svg",
  14772. extra: 207 / 190,
  14773. bottom: 0.05
  14774. }
  14775. },
  14776. },
  14777. [
  14778. {
  14779. name: "Normal",
  14780. height: math.unit(10 + 9 / 12, "feet"),
  14781. default: true
  14782. },
  14783. ]
  14784. ))
  14785. characterMakers.push(() => makeCharacter(
  14786. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14787. {
  14788. anthro: {
  14789. height: math.unit(9 + 6 / 12, "feet"),
  14790. weight: math.unit(298, "lb"),
  14791. name: "Anthro",
  14792. image: {
  14793. source: "./media/characters/frifna/anthro.svg",
  14794. extra: 282 / 269,
  14795. bottom: 0.015
  14796. }
  14797. },
  14798. feral: {
  14799. height: math.unit(16 + 2 / 12, "feet"),
  14800. weight: math.unit(624, "lb"),
  14801. name: "Feral",
  14802. image: {
  14803. source: "./media/characters/frifna/feral.svg"
  14804. }
  14805. },
  14806. },
  14807. [
  14808. {
  14809. name: "Normal",
  14810. height: math.unit(9 + 6 / 12, "feet"),
  14811. default: true
  14812. },
  14813. ]
  14814. ))
  14815. characterMakers.push(() => makeCharacter(
  14816. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14817. {
  14818. front: {
  14819. height: math.unit(6 + 2 / 12, "feet"),
  14820. weight: math.unit(168, "lb"),
  14821. name: "Front",
  14822. image: {
  14823. source: "./media/characters/elise/front.svg",
  14824. extra: 276 / 271
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Normal",
  14831. height: math.unit(6 + 2 / 12, "feet"),
  14832. default: true
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14838. {
  14839. front: {
  14840. height: math.unit(5 + 10 / 12, "feet"),
  14841. weight: math.unit(210, "lb"),
  14842. name: "Front",
  14843. image: {
  14844. source: "./media/characters/glade/front.svg",
  14845. extra: 258 / 247,
  14846. bottom: 0.008
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Normal",
  14853. height: math.unit(5 + 10 / 12, "feet"),
  14854. default: true
  14855. },
  14856. ]
  14857. ))
  14858. characterMakers.push(() => makeCharacter(
  14859. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14860. {
  14861. front: {
  14862. height: math.unit(5 + 10 / 12, "feet"),
  14863. weight: math.unit(129, "lb"),
  14864. name: "Front",
  14865. image: {
  14866. source: "./media/characters/rina/front.svg",
  14867. extra: 266 / 255,
  14868. bottom: 0.005
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Normal",
  14875. height: math.unit(5 + 10 / 12, "feet"),
  14876. default: true
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14882. {
  14883. front: {
  14884. height: math.unit(6 + 1 / 12, "feet"),
  14885. weight: math.unit(192, "lb"),
  14886. name: "Front",
  14887. image: {
  14888. source: "./media/characters/veronica/front.svg",
  14889. extra: 319 / 309,
  14890. bottom: 0.005
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Normal",
  14897. height: math.unit(6 + 1 / 12, "feet"),
  14898. default: true
  14899. },
  14900. ]
  14901. ))
  14902. characterMakers.push(() => makeCharacter(
  14903. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14904. {
  14905. front: {
  14906. height: math.unit(9 + 3 / 12, "feet"),
  14907. weight: math.unit(1100, "lb"),
  14908. name: "Front",
  14909. image: {
  14910. source: "./media/characters/braxton/front.svg",
  14911. extra: 1057 / 984,
  14912. bottom: 0.05
  14913. }
  14914. },
  14915. },
  14916. [
  14917. {
  14918. name: "Normal",
  14919. height: math.unit(9 + 3 / 12, "feet")
  14920. },
  14921. {
  14922. name: "Giant",
  14923. height: math.unit(300, "feet"),
  14924. default: true
  14925. },
  14926. {
  14927. name: "Macro",
  14928. height: math.unit(700, "feet")
  14929. },
  14930. {
  14931. name: "Megamacro",
  14932. height: math.unit(6000, "feet")
  14933. },
  14934. ]
  14935. ))
  14936. characterMakers.push(() => makeCharacter(
  14937. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14938. {
  14939. front: {
  14940. height: math.unit(6 + 7 / 12, "feet"),
  14941. weight: math.unit(150, "lb"),
  14942. name: "Front",
  14943. image: {
  14944. source: "./media/characters/blue-feyonics/front.svg",
  14945. extra: 1403 / 1306,
  14946. bottom: 0.047
  14947. }
  14948. },
  14949. },
  14950. [
  14951. {
  14952. name: "Normal",
  14953. height: math.unit(6 + 7 / 12, "feet"),
  14954. default: true
  14955. },
  14956. ]
  14957. ))
  14958. characterMakers.push(() => makeCharacter(
  14959. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14960. {
  14961. front: {
  14962. height: math.unit(1.8, "meters"),
  14963. weight: math.unit(60, "kg"),
  14964. name: "Front",
  14965. image: {
  14966. source: "./media/characters/maxwell/front.svg",
  14967. extra: 2060 / 1873
  14968. }
  14969. },
  14970. },
  14971. [
  14972. {
  14973. name: "Micro",
  14974. height: math.unit(1, "mm")
  14975. },
  14976. {
  14977. name: "Normal",
  14978. height: math.unit(1.8, "meter"),
  14979. default: true
  14980. },
  14981. {
  14982. name: "Macro",
  14983. height: math.unit(30, "meters")
  14984. },
  14985. {
  14986. name: "Megamacro",
  14987. height: math.unit(10, "km")
  14988. },
  14989. ]
  14990. ))
  14991. characterMakers.push(() => makeCharacter(
  14992. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14993. {
  14994. front: {
  14995. height: math.unit(6, "feet"),
  14996. weight: math.unit(150, "lb"),
  14997. name: "Front",
  14998. image: {
  14999. source: "./media/characters/jack/front.svg",
  15000. extra: 1754 / 1640,
  15001. bottom: 0.01
  15002. }
  15003. },
  15004. },
  15005. [
  15006. {
  15007. name: "Normal",
  15008. height: math.unit(80000, "feet"),
  15009. default: true
  15010. },
  15011. {
  15012. name: "Max size",
  15013. height: math.unit(10, "lightyears")
  15014. },
  15015. ]
  15016. ))
  15017. characterMakers.push(() => makeCharacter(
  15018. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15019. {
  15020. upright: {
  15021. height: math.unit(7, "feet"),
  15022. weight: math.unit(170, "lb"),
  15023. name: "Upright",
  15024. image: {
  15025. source: "./media/characters/cafat/upright.svg",
  15026. bottom: 0.01
  15027. }
  15028. },
  15029. uprightFull: {
  15030. height: math.unit(7, "feet"),
  15031. weight: math.unit(170, "lb"),
  15032. name: "Upright (Full)",
  15033. image: {
  15034. source: "./media/characters/cafat/upright-full.svg",
  15035. bottom: 0.01
  15036. }
  15037. },
  15038. side: {
  15039. height: math.unit(5, "feet"),
  15040. weight: math.unit(150, "lb"),
  15041. name: "Side",
  15042. image: {
  15043. source: "./media/characters/cafat/side.svg"
  15044. }
  15045. },
  15046. },
  15047. [
  15048. {
  15049. name: "Small",
  15050. height: math.unit(7, "feet"),
  15051. default: true
  15052. },
  15053. {
  15054. name: "Large",
  15055. height: math.unit(15.5, "feet")
  15056. },
  15057. ]
  15058. ))
  15059. characterMakers.push(() => makeCharacter(
  15060. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15061. {
  15062. front: {
  15063. height: math.unit(6, "feet"),
  15064. weight: math.unit(150, "lb"),
  15065. name: "Front",
  15066. image: {
  15067. source: "./media/characters/verin-raharra/front.svg",
  15068. extra: 5019 / 4835,
  15069. bottom: 0.023
  15070. }
  15071. },
  15072. },
  15073. [
  15074. {
  15075. name: "Normal",
  15076. height: math.unit(7 + 5 / 12, "feet"),
  15077. default: true
  15078. },
  15079. {
  15080. name: "Upsized",
  15081. height: math.unit(20, "feet")
  15082. },
  15083. ]
  15084. ))
  15085. characterMakers.push(() => makeCharacter(
  15086. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15087. {
  15088. front: {
  15089. height: math.unit(7, "feet"),
  15090. weight: math.unit(230, "lb"),
  15091. name: "Front",
  15092. image: {
  15093. source: "./media/characters/nakata/front.svg",
  15094. extra: 1.005,
  15095. bottom: 0.01
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "Normal",
  15102. height: math.unit(7, "feet"),
  15103. default: true
  15104. },
  15105. {
  15106. name: "Big",
  15107. height: math.unit(14, "feet")
  15108. },
  15109. {
  15110. name: "Macro",
  15111. height: math.unit(400, "feet")
  15112. },
  15113. ]
  15114. ))
  15115. characterMakers.push(() => makeCharacter(
  15116. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15117. {
  15118. front: {
  15119. height: math.unit(4.91, "feet"),
  15120. weight: math.unit(100, "lb"),
  15121. name: "Front",
  15122. image: {
  15123. source: "./media/characters/lily/front.svg",
  15124. extra: 1585 / 1415,
  15125. bottom: 0.02
  15126. }
  15127. },
  15128. },
  15129. [
  15130. {
  15131. name: "Normal",
  15132. height: math.unit(4.91, "feet"),
  15133. default: true
  15134. },
  15135. ]
  15136. ))
  15137. characterMakers.push(() => makeCharacter(
  15138. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15139. {
  15140. laying: {
  15141. height: math.unit(4 + 4 / 12, "feet"),
  15142. weight: math.unit(600, "lb"),
  15143. name: "Laying",
  15144. image: {
  15145. source: "./media/characters/sheila/laying.svg",
  15146. extra: 1333 / 1265,
  15147. bottom: 0.16
  15148. }
  15149. },
  15150. },
  15151. [
  15152. {
  15153. name: "Normal",
  15154. height: math.unit(4 + 4 / 12, "feet"),
  15155. default: true
  15156. },
  15157. ]
  15158. ))
  15159. characterMakers.push(() => makeCharacter(
  15160. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15161. {
  15162. front: {
  15163. height: math.unit(6, "feet"),
  15164. weight: math.unit(190, "lb"),
  15165. name: "Front",
  15166. image: {
  15167. source: "./media/characters/sax/front.svg",
  15168. extra: 1187 / 973,
  15169. bottom: 0.042
  15170. }
  15171. },
  15172. },
  15173. [
  15174. {
  15175. name: "Micro",
  15176. height: math.unit(4, "inches"),
  15177. default: true
  15178. },
  15179. ]
  15180. ))
  15181. characterMakers.push(() => makeCharacter(
  15182. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15183. {
  15184. front: {
  15185. height: math.unit(6, "feet"),
  15186. weight: math.unit(150, "lb"),
  15187. name: "Front",
  15188. image: {
  15189. source: "./media/characters/pandora/front.svg",
  15190. extra: 2720 / 2556,
  15191. bottom: 0.015
  15192. }
  15193. },
  15194. back: {
  15195. height: math.unit(6, "feet"),
  15196. weight: math.unit(150, "lb"),
  15197. name: "Back",
  15198. image: {
  15199. source: "./media/characters/pandora/back.svg",
  15200. extra: 2720 / 2556,
  15201. bottom: 0.01
  15202. }
  15203. },
  15204. beans: {
  15205. height: math.unit(6 / 8, "feet"),
  15206. name: "Beans",
  15207. image: {
  15208. source: "./media/characters/pandora/beans.svg"
  15209. }
  15210. },
  15211. skirt: {
  15212. height: math.unit(6, "feet"),
  15213. weight: math.unit(150, "lb"),
  15214. name: "Skirt",
  15215. image: {
  15216. source: "./media/characters/pandora/skirt.svg",
  15217. extra: 1622 / 1525,
  15218. bottom: 0.015
  15219. }
  15220. },
  15221. hoodie: {
  15222. height: math.unit(6, "feet"),
  15223. weight: math.unit(150, "lb"),
  15224. name: "Hoodie",
  15225. image: {
  15226. source: "./media/characters/pandora/hoodie.svg",
  15227. extra: 1622 / 1525,
  15228. bottom: 0.015
  15229. }
  15230. },
  15231. casual: {
  15232. height: math.unit(6, "feet"),
  15233. weight: math.unit(150, "lb"),
  15234. name: "Casual",
  15235. image: {
  15236. source: "./media/characters/pandora/casual.svg",
  15237. extra: 1622 / 1525,
  15238. bottom: 0.015
  15239. }
  15240. },
  15241. },
  15242. [
  15243. {
  15244. name: "Normal",
  15245. height: math.unit(6, "feet")
  15246. },
  15247. {
  15248. name: "Big Steppy",
  15249. height: math.unit(1, "km"),
  15250. default: true
  15251. },
  15252. ]
  15253. ))
  15254. characterMakers.push(() => makeCharacter(
  15255. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15256. {
  15257. side: {
  15258. height: math.unit(10, "feet"),
  15259. weight: math.unit(800, "kg"),
  15260. name: "Side",
  15261. image: {
  15262. source: "./media/characters/venio-darcony/side.svg",
  15263. extra: 1373 / 1003,
  15264. bottom: 0.037
  15265. }
  15266. },
  15267. front: {
  15268. height: math.unit(19, "feet"),
  15269. weight: math.unit(800, "kg"),
  15270. name: "Front",
  15271. image: {
  15272. source: "./media/characters/venio-darcony/front.svg"
  15273. }
  15274. },
  15275. back: {
  15276. height: math.unit(19, "feet"),
  15277. weight: math.unit(800, "kg"),
  15278. name: "Back",
  15279. image: {
  15280. source: "./media/characters/venio-darcony/back.svg"
  15281. }
  15282. },
  15283. sideNsfw: {
  15284. height: math.unit(10, "feet"),
  15285. weight: math.unit(800, "kg"),
  15286. name: "Side (NSFW)",
  15287. image: {
  15288. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15289. extra: 1373 / 1003,
  15290. bottom: 0.037
  15291. }
  15292. },
  15293. frontNsfw: {
  15294. height: math.unit(19, "feet"),
  15295. weight: math.unit(800, "kg"),
  15296. name: "Front (NSFW)",
  15297. image: {
  15298. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15299. }
  15300. },
  15301. backNsfw: {
  15302. height: math.unit(19, "feet"),
  15303. weight: math.unit(800, "kg"),
  15304. name: "Back (NSFW)",
  15305. image: {
  15306. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15307. }
  15308. },
  15309. sideArmored: {
  15310. height: math.unit(10, "feet"),
  15311. weight: math.unit(800, "kg"),
  15312. name: "Side (Armored)",
  15313. image: {
  15314. source: "./media/characters/venio-darcony/side-armored.svg",
  15315. extra: 1373 / 1003,
  15316. bottom: 0.037
  15317. }
  15318. },
  15319. frontArmored: {
  15320. height: math.unit(19, "feet"),
  15321. weight: math.unit(900, "kg"),
  15322. name: "Front (Armored)",
  15323. image: {
  15324. source: "./media/characters/venio-darcony/front-armored.svg"
  15325. }
  15326. },
  15327. backArmored: {
  15328. height: math.unit(19, "feet"),
  15329. weight: math.unit(900, "kg"),
  15330. name: "Back (Armored)",
  15331. image: {
  15332. source: "./media/characters/venio-darcony/back-armored.svg"
  15333. }
  15334. },
  15335. sword: {
  15336. height: math.unit(10, "feet"),
  15337. weight: math.unit(50, "lb"),
  15338. name: "Sword",
  15339. image: {
  15340. source: "./media/characters/venio-darcony/sword.svg"
  15341. }
  15342. },
  15343. },
  15344. [
  15345. {
  15346. name: "Normal",
  15347. height: math.unit(10, "feet")
  15348. },
  15349. {
  15350. name: "Macro",
  15351. height: math.unit(130, "feet"),
  15352. default: true
  15353. },
  15354. {
  15355. name: "Macro+",
  15356. height: math.unit(240, "feet")
  15357. },
  15358. ]
  15359. ))
  15360. characterMakers.push(() => makeCharacter(
  15361. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15362. {
  15363. front: {
  15364. height: math.unit(6, "feet"),
  15365. weight: math.unit(150, "lb"),
  15366. name: "Front",
  15367. image: {
  15368. source: "./media/characters/veski/front.svg",
  15369. extra: 1299 / 1225,
  15370. bottom: 0.04
  15371. }
  15372. },
  15373. back: {
  15374. height: math.unit(6, "feet"),
  15375. weight: math.unit(150, "lb"),
  15376. name: "Back",
  15377. image: {
  15378. source: "./media/characters/veski/back.svg",
  15379. extra: 1299 / 1225,
  15380. bottom: 0.008
  15381. }
  15382. },
  15383. maw: {
  15384. height: math.unit(1.5 * 1.21, "feet"),
  15385. name: "Maw",
  15386. image: {
  15387. source: "./media/characters/veski/maw.svg"
  15388. }
  15389. },
  15390. },
  15391. [
  15392. {
  15393. name: "Macro",
  15394. height: math.unit(2, "km"),
  15395. default: true
  15396. },
  15397. ]
  15398. ))
  15399. characterMakers.push(() => makeCharacter(
  15400. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15401. {
  15402. front: {
  15403. height: math.unit(5 + 7 / 12, "feet"),
  15404. name: "Front",
  15405. image: {
  15406. source: "./media/characters/isabelle/front.svg",
  15407. extra: 2130 / 1976,
  15408. bottom: 0.05
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Supermicro",
  15415. height: math.unit(10, "micrometers")
  15416. },
  15417. {
  15418. name: "Micro",
  15419. height: math.unit(1, "inch")
  15420. },
  15421. {
  15422. name: "Tiny",
  15423. height: math.unit(5, "inches")
  15424. },
  15425. {
  15426. name: "Standard",
  15427. height: math.unit(5 + 7 / 12, "inches")
  15428. },
  15429. {
  15430. name: "Macro",
  15431. height: math.unit(80, "meters"),
  15432. default: true
  15433. },
  15434. {
  15435. name: "Megamacro",
  15436. height: math.unit(250, "meters")
  15437. },
  15438. {
  15439. name: "Gigamacro",
  15440. height: math.unit(5, "km")
  15441. },
  15442. {
  15443. name: "Cosmic",
  15444. height: math.unit(2.5e6, "miles")
  15445. },
  15446. ]
  15447. ))
  15448. characterMakers.push(() => makeCharacter(
  15449. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15450. {
  15451. front: {
  15452. height: math.unit(6, "feet"),
  15453. weight: math.unit(150, "lb"),
  15454. name: "Front",
  15455. image: {
  15456. source: "./media/characters/hanzo/front.svg",
  15457. extra: 374 / 344,
  15458. bottom: 0.02
  15459. }
  15460. },
  15461. },
  15462. [
  15463. {
  15464. name: "Normal",
  15465. height: math.unit(8, "feet"),
  15466. default: true
  15467. },
  15468. ]
  15469. ))
  15470. characterMakers.push(() => makeCharacter(
  15471. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15472. {
  15473. front: {
  15474. height: math.unit(7, "feet"),
  15475. weight: math.unit(130, "lb"),
  15476. name: "Front",
  15477. image: {
  15478. source: "./media/characters/anna/front.svg",
  15479. extra: 169 / 145,
  15480. bottom: 0.06
  15481. }
  15482. },
  15483. full: {
  15484. height: math.unit(4.96, "feet"),
  15485. weight: math.unit(220, "lb"),
  15486. name: "Full",
  15487. image: {
  15488. source: "./media/characters/anna/full.svg",
  15489. extra: 138 / 114,
  15490. bottom: 0.15
  15491. }
  15492. },
  15493. tongue: {
  15494. height: math.unit(2.53, "feet"),
  15495. name: "Tongue",
  15496. image: {
  15497. source: "./media/characters/anna/tongue.svg"
  15498. }
  15499. },
  15500. },
  15501. [
  15502. {
  15503. name: "Normal",
  15504. height: math.unit(7, "feet"),
  15505. default: true
  15506. },
  15507. ]
  15508. ))
  15509. characterMakers.push(() => makeCharacter(
  15510. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15511. {
  15512. front: {
  15513. height: math.unit(7, "feet"),
  15514. weight: math.unit(150, "lb"),
  15515. name: "Front",
  15516. image: {
  15517. source: "./media/characters/ian-corvid/front.svg",
  15518. extra: 150 / 142,
  15519. bottom: 0.02
  15520. }
  15521. },
  15522. back: {
  15523. height: math.unit(7, "feet"),
  15524. weight: math.unit(150, "lb"),
  15525. name: "Back",
  15526. image: {
  15527. source: "./media/characters/ian-corvid/back.svg",
  15528. extra: 150 / 143,
  15529. bottom: 0.01
  15530. }
  15531. },
  15532. stomping: {
  15533. height: math.unit(7, "feet"),
  15534. weight: math.unit(150, "lb"),
  15535. name: "Stomping",
  15536. image: {
  15537. source: "./media/characters/ian-corvid/stomping.svg",
  15538. extra: 76 / 72
  15539. }
  15540. },
  15541. sitting: {
  15542. height: math.unit(7 / 1.8, "feet"),
  15543. weight: math.unit(150, "lb"),
  15544. name: "Sitting",
  15545. image: {
  15546. source: "./media/characters/ian-corvid/sitting.svg",
  15547. extra: 1400 / 1269,
  15548. bottom: 0.15
  15549. }
  15550. },
  15551. },
  15552. [
  15553. {
  15554. name: "Tiny Microw",
  15555. height: math.unit(1, "inch")
  15556. },
  15557. {
  15558. name: "Microw",
  15559. height: math.unit(6, "inches")
  15560. },
  15561. {
  15562. name: "Crow",
  15563. height: math.unit(7 + 1 / 12, "feet"),
  15564. default: true
  15565. },
  15566. {
  15567. name: "Macrow",
  15568. height: math.unit(176, "feet")
  15569. },
  15570. ]
  15571. ))
  15572. characterMakers.push(() => makeCharacter(
  15573. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15574. {
  15575. front: {
  15576. height: math.unit(5 + 7 / 12, "feet"),
  15577. weight: math.unit(147, "lb"),
  15578. name: "Front",
  15579. image: {
  15580. source: "./media/characters/natalie-kellon/front.svg",
  15581. extra: 1214 / 1141,
  15582. bottom: 0.02
  15583. }
  15584. },
  15585. },
  15586. [
  15587. {
  15588. name: "Micro",
  15589. height: math.unit(1 / 16, "inch")
  15590. },
  15591. {
  15592. name: "Tiny",
  15593. height: math.unit(4, "inches")
  15594. },
  15595. {
  15596. name: "Normal",
  15597. height: math.unit(5 + 7 / 12, "feet"),
  15598. default: true
  15599. },
  15600. {
  15601. name: "Amazon",
  15602. height: math.unit(12, "feet")
  15603. },
  15604. {
  15605. name: "Giantess",
  15606. height: math.unit(160, "meters")
  15607. },
  15608. {
  15609. name: "Titaness",
  15610. height: math.unit(800, "meters")
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15616. {
  15617. front: {
  15618. height: math.unit(6, "feet"),
  15619. weight: math.unit(150, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/alluria/front.svg",
  15623. extra: 806 / 738,
  15624. bottom: 0.01
  15625. }
  15626. },
  15627. side: {
  15628. height: math.unit(6, "feet"),
  15629. weight: math.unit(150, "lb"),
  15630. name: "Side",
  15631. image: {
  15632. source: "./media/characters/alluria/side.svg",
  15633. extra: 800 / 750,
  15634. }
  15635. },
  15636. back: {
  15637. height: math.unit(6, "feet"),
  15638. weight: math.unit(150, "lb"),
  15639. name: "Back",
  15640. image: {
  15641. source: "./media/characters/alluria/back.svg",
  15642. extra: 806 / 738,
  15643. }
  15644. },
  15645. frontMaid: {
  15646. height: math.unit(6, "feet"),
  15647. weight: math.unit(150, "lb"),
  15648. name: "Front (Maid)",
  15649. image: {
  15650. source: "./media/characters/alluria/front-maid.svg",
  15651. extra: 806 / 738,
  15652. bottom: 0.01
  15653. }
  15654. },
  15655. sideMaid: {
  15656. height: math.unit(6, "feet"),
  15657. weight: math.unit(150, "lb"),
  15658. name: "Side (Maid)",
  15659. image: {
  15660. source: "./media/characters/alluria/side-maid.svg",
  15661. extra: 800 / 750,
  15662. bottom: 0.005
  15663. }
  15664. },
  15665. backMaid: {
  15666. height: math.unit(6, "feet"),
  15667. weight: math.unit(150, "lb"),
  15668. name: "Back (Maid)",
  15669. image: {
  15670. source: "./media/characters/alluria/back-maid.svg",
  15671. extra: 806 / 738,
  15672. }
  15673. },
  15674. },
  15675. [
  15676. {
  15677. name: "Micro",
  15678. height: math.unit(6, "inches"),
  15679. default: true
  15680. },
  15681. ]
  15682. ))
  15683. characterMakers.push(() => makeCharacter(
  15684. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15685. {
  15686. front: {
  15687. height: math.unit(6, "feet"),
  15688. weight: math.unit(150, "lb"),
  15689. name: "Front",
  15690. image: {
  15691. source: "./media/characters/kyle/front.svg",
  15692. extra: 1069 / 962,
  15693. bottom: 77.228 / 1727.45
  15694. }
  15695. },
  15696. },
  15697. [
  15698. {
  15699. name: "Macro",
  15700. height: math.unit(150, "feet"),
  15701. default: true
  15702. },
  15703. ]
  15704. ))
  15705. characterMakers.push(() => makeCharacter(
  15706. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15707. {
  15708. front: {
  15709. height: math.unit(6, "feet"),
  15710. weight: math.unit(300, "lb"),
  15711. name: "Front",
  15712. image: {
  15713. source: "./media/characters/duncan/front.svg",
  15714. extra: 1650 / 1482,
  15715. bottom: 0.05
  15716. }
  15717. },
  15718. },
  15719. [
  15720. {
  15721. name: "Macro",
  15722. height: math.unit(100, "feet"),
  15723. default: true
  15724. },
  15725. ]
  15726. ))
  15727. characterMakers.push(() => makeCharacter(
  15728. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15729. {
  15730. front: {
  15731. height: math.unit(5 + 4 / 12, "feet"),
  15732. weight: math.unit(220, "lb"),
  15733. name: "Front",
  15734. image: {
  15735. source: "./media/characters/memory/front.svg",
  15736. extra: 3641 / 3545,
  15737. bottom: 0.03
  15738. }
  15739. },
  15740. back: {
  15741. height: math.unit(5 + 4 / 12, "feet"),
  15742. weight: math.unit(220, "lb"),
  15743. name: "Back",
  15744. image: {
  15745. source: "./media/characters/memory/back.svg",
  15746. extra: 3641 / 3545,
  15747. bottom: 0.025
  15748. }
  15749. },
  15750. frontSkirt: {
  15751. height: math.unit(5 + 4 / 12, "feet"),
  15752. weight: math.unit(220, "lb"),
  15753. name: "Front (Skirt)",
  15754. image: {
  15755. source: "./media/characters/memory/front-skirt.svg",
  15756. extra: 3641 / 3545,
  15757. bottom: 0.03
  15758. }
  15759. },
  15760. frontDress: {
  15761. height: math.unit(5 + 4 / 12, "feet"),
  15762. weight: math.unit(220, "lb"),
  15763. name: "Front (Dress)",
  15764. image: {
  15765. source: "./media/characters/memory/front-dress.svg",
  15766. extra: 3641 / 3545,
  15767. bottom: 0.03
  15768. }
  15769. },
  15770. },
  15771. [
  15772. {
  15773. name: "Micro",
  15774. height: math.unit(6, "inches"),
  15775. default: true
  15776. },
  15777. {
  15778. name: "Normal",
  15779. height: math.unit(5 + 4 / 12, "feet")
  15780. },
  15781. ]
  15782. ))
  15783. characterMakers.push(() => makeCharacter(
  15784. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15785. {
  15786. front: {
  15787. height: math.unit(4 + 11 / 12, "feet"),
  15788. weight: math.unit(100, "lb"),
  15789. name: "Front",
  15790. image: {
  15791. source: "./media/characters/luno/front.svg",
  15792. extra: 1535 / 1487,
  15793. bottom: 0.03
  15794. }
  15795. },
  15796. },
  15797. [
  15798. {
  15799. name: "Micro",
  15800. height: math.unit(3, "inches")
  15801. },
  15802. {
  15803. name: "Normal",
  15804. height: math.unit(4 + 11 / 12, "feet"),
  15805. default: true
  15806. },
  15807. {
  15808. name: "Macro",
  15809. height: math.unit(300, "feet")
  15810. },
  15811. {
  15812. name: "Megamacro",
  15813. height: math.unit(700, "miles")
  15814. },
  15815. ]
  15816. ))
  15817. characterMakers.push(() => makeCharacter(
  15818. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15819. {
  15820. front: {
  15821. height: math.unit(6 + 2 / 12, "feet"),
  15822. weight: math.unit(170, "lb"),
  15823. name: "Front",
  15824. image: {
  15825. source: "./media/characters/jamesy/front.svg",
  15826. extra: 440 / 382,
  15827. bottom: 0.005
  15828. }
  15829. },
  15830. },
  15831. [
  15832. {
  15833. name: "Micro",
  15834. height: math.unit(3, "inches")
  15835. },
  15836. {
  15837. name: "Normal",
  15838. height: math.unit(6 + 2 / 12, "feet"),
  15839. default: true
  15840. },
  15841. {
  15842. name: "Macro",
  15843. height: math.unit(300, "feet")
  15844. },
  15845. {
  15846. name: "Megamacro",
  15847. height: math.unit(700, "miles")
  15848. },
  15849. ]
  15850. ))
  15851. characterMakers.push(() => makeCharacter(
  15852. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15853. {
  15854. front: {
  15855. height: math.unit(6, "feet"),
  15856. weight: math.unit(160, "lb"),
  15857. name: "Front",
  15858. image: {
  15859. source: "./media/characters/mark/front.svg",
  15860. extra: 3300 / 3100,
  15861. bottom: 136.42 / 3440.47
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Macro",
  15868. height: math.unit(120, "meters")
  15869. },
  15870. {
  15871. name: "Bigger Macro",
  15872. height: math.unit(350, "meters")
  15873. },
  15874. {
  15875. name: "Megamacro",
  15876. height: math.unit(8, "km"),
  15877. default: true
  15878. },
  15879. {
  15880. name: "Continental",
  15881. height: math.unit(4550, "km")
  15882. },
  15883. {
  15884. name: "Planetary",
  15885. height: math.unit(65000, "km")
  15886. },
  15887. ]
  15888. ))
  15889. characterMakers.push(() => makeCharacter(
  15890. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15891. {
  15892. front: {
  15893. height: math.unit(6, "feet"),
  15894. weight: math.unit(400, "lb"),
  15895. name: "Front",
  15896. image: {
  15897. source: "./media/characters/mac/front.svg",
  15898. extra: 1048 / 987.7,
  15899. bottom: 60 / 1107.6,
  15900. }
  15901. },
  15902. },
  15903. [
  15904. {
  15905. name: "Macro",
  15906. height: math.unit(500, "feet"),
  15907. default: true
  15908. },
  15909. ]
  15910. ))
  15911. characterMakers.push(() => makeCharacter(
  15912. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15913. {
  15914. front: {
  15915. height: math.unit(5 + 2 / 12, "feet"),
  15916. weight: math.unit(190, "lb"),
  15917. name: "Front",
  15918. image: {
  15919. source: "./media/characters/bari/front.svg",
  15920. extra: 3156 / 2880,
  15921. bottom: 0.03
  15922. }
  15923. },
  15924. back: {
  15925. height: math.unit(5 + 2 / 12, "feet"),
  15926. weight: math.unit(190, "lb"),
  15927. name: "Back",
  15928. image: {
  15929. source: "./media/characters/bari/back.svg",
  15930. extra: 3260 / 2834,
  15931. bottom: 0.025
  15932. }
  15933. },
  15934. frontPlush: {
  15935. height: math.unit(5 + 2 / 12, "feet"),
  15936. weight: math.unit(190, "lb"),
  15937. name: "Front (Plush)",
  15938. image: {
  15939. source: "./media/characters/bari/front-plush.svg",
  15940. extra: 1112 / 1061,
  15941. bottom: 0.002
  15942. }
  15943. },
  15944. },
  15945. [
  15946. {
  15947. name: "Micro",
  15948. height: math.unit(3, "inches")
  15949. },
  15950. {
  15951. name: "Normal",
  15952. height: math.unit(5 + 2 / 12, "feet"),
  15953. default: true
  15954. },
  15955. {
  15956. name: "Macro",
  15957. height: math.unit(20, "feet")
  15958. },
  15959. ]
  15960. ))
  15961. characterMakers.push(() => makeCharacter(
  15962. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15963. {
  15964. front: {
  15965. height: math.unit(6 + 1 / 12, "feet"),
  15966. weight: math.unit(275, "lb"),
  15967. name: "Front",
  15968. image: {
  15969. source: "./media/characters/hunter-misha-raven/front.svg"
  15970. }
  15971. },
  15972. },
  15973. [
  15974. {
  15975. name: "Mortal",
  15976. height: math.unit(6 + 1 / 12, "feet")
  15977. },
  15978. {
  15979. name: "Divine",
  15980. height: math.unit(1.12134e34, "parsecs"),
  15981. default: true
  15982. },
  15983. ]
  15984. ))
  15985. characterMakers.push(() => makeCharacter(
  15986. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15987. {
  15988. front: {
  15989. height: math.unit(6 + 3 / 12, "feet"),
  15990. weight: math.unit(220, "lb"),
  15991. name: "Front",
  15992. image: {
  15993. source: "./media/characters/max-calore/front.svg",
  15994. extra: 1700 / 1648,
  15995. bottom: 0.01
  15996. }
  15997. },
  15998. back: {
  15999. height: math.unit(6 + 3 / 12, "feet"),
  16000. weight: math.unit(220, "lb"),
  16001. name: "Back",
  16002. image: {
  16003. source: "./media/characters/max-calore/back.svg",
  16004. extra: 1700 / 1648,
  16005. bottom: 0.01
  16006. }
  16007. },
  16008. },
  16009. [
  16010. {
  16011. name: "Normal",
  16012. height: math.unit(6 + 3 / 12, "feet"),
  16013. default: true
  16014. },
  16015. ]
  16016. ))
  16017. characterMakers.push(() => makeCharacter(
  16018. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16019. {
  16020. side: {
  16021. height: math.unit(2 + 8 / 12, "feet"),
  16022. weight: math.unit(99, "lb"),
  16023. name: "Side",
  16024. image: {
  16025. source: "./media/characters/aspen/side.svg",
  16026. extra: 152 / 138,
  16027. bottom: 0.032
  16028. }
  16029. },
  16030. },
  16031. [
  16032. {
  16033. name: "Normal",
  16034. height: math.unit(2 + 8 / 12, "feet"),
  16035. default: true
  16036. },
  16037. ]
  16038. ))
  16039. characterMakers.push(() => makeCharacter(
  16040. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16041. {
  16042. side: {
  16043. height: math.unit(3 + 2 / 12, "feet"),
  16044. weight: math.unit(224, "lb"),
  16045. name: "Side",
  16046. image: {
  16047. source: "./media/characters/sheila-feral-wolf/side.svg",
  16048. extra: 179 / 166,
  16049. bottom: 0.03
  16050. }
  16051. },
  16052. },
  16053. [
  16054. {
  16055. name: "Normal",
  16056. height: math.unit(3 + 2 / 12, "feet"),
  16057. default: true
  16058. },
  16059. ]
  16060. ))
  16061. characterMakers.push(() => makeCharacter(
  16062. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16063. {
  16064. side: {
  16065. height: math.unit(1 + 9 / 12, "feet"),
  16066. weight: math.unit(38, "lb"),
  16067. name: "Side",
  16068. image: {
  16069. source: "./media/characters/michelle/side.svg",
  16070. extra: 147 / 136.7,
  16071. bottom: 0.03
  16072. }
  16073. },
  16074. },
  16075. [
  16076. {
  16077. name: "Normal",
  16078. height: math.unit(1 + 9 / 12, "feet"),
  16079. default: true
  16080. },
  16081. ]
  16082. ))
  16083. characterMakers.push(() => makeCharacter(
  16084. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16085. {
  16086. front: {
  16087. height: math.unit(1 + 1 / 12, "feet"),
  16088. weight: math.unit(18, "lb"),
  16089. name: "Front",
  16090. image: {
  16091. source: "./media/characters/nino/front.svg"
  16092. }
  16093. },
  16094. },
  16095. [
  16096. {
  16097. name: "Normal",
  16098. height: math.unit(1 + 1 / 12, "feet"),
  16099. default: true
  16100. },
  16101. ]
  16102. ))
  16103. characterMakers.push(() => makeCharacter(
  16104. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16105. {
  16106. front: {
  16107. height: math.unit(1, "feet"),
  16108. weight: math.unit(16, "lb"),
  16109. name: "Front",
  16110. image: {
  16111. source: "./media/characters/viola/front.svg"
  16112. }
  16113. },
  16114. },
  16115. [
  16116. {
  16117. name: "Normal",
  16118. height: math.unit(1, "feet"),
  16119. default: true
  16120. },
  16121. ]
  16122. ))
  16123. characterMakers.push(() => makeCharacter(
  16124. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16125. {
  16126. front: {
  16127. height: math.unit(6 + 5 / 12, "feet"),
  16128. weight: math.unit(580, "lb"),
  16129. name: "Front",
  16130. image: {
  16131. source: "./media/characters/atlas/front.svg",
  16132. extra: 298.5 / 290,
  16133. bottom: 0.015
  16134. }
  16135. },
  16136. },
  16137. [
  16138. {
  16139. name: "Normal",
  16140. height: math.unit(6 + 5 / 12, "feet"),
  16141. default: true
  16142. },
  16143. ]
  16144. ))
  16145. characterMakers.push(() => makeCharacter(
  16146. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16147. {
  16148. side: {
  16149. height: math.unit(1 + 10 / 12, "feet"),
  16150. weight: math.unit(25, "lb"),
  16151. name: "Side",
  16152. image: {
  16153. source: "./media/characters/davy/side.svg",
  16154. extra: 200 / 170,
  16155. bottom: 0.01
  16156. }
  16157. },
  16158. },
  16159. [
  16160. {
  16161. name: "Normal",
  16162. height: math.unit(1 + 10 / 12, "feet"),
  16163. default: true
  16164. },
  16165. ]
  16166. ))
  16167. characterMakers.push(() => makeCharacter(
  16168. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16169. {
  16170. side: {
  16171. height: math.unit(4 + 8 / 12, "feet"),
  16172. weight: math.unit(166, "lb"),
  16173. name: "Side",
  16174. image: {
  16175. source: "./media/characters/fiona/side.svg",
  16176. extra: 232 / 220,
  16177. bottom: 0.03
  16178. }
  16179. },
  16180. },
  16181. [
  16182. {
  16183. name: "Normal",
  16184. height: math.unit(4 + 8 / 12, "feet"),
  16185. default: true
  16186. },
  16187. ]
  16188. ))
  16189. characterMakers.push(() => makeCharacter(
  16190. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16191. {
  16192. front: {
  16193. height: math.unit(2, "feet"),
  16194. weight: math.unit(62, "lb"),
  16195. name: "Front",
  16196. image: {
  16197. source: "./media/characters/lyla/front.svg",
  16198. bottom: 0.1
  16199. }
  16200. },
  16201. },
  16202. [
  16203. {
  16204. name: "Normal",
  16205. height: math.unit(2, "feet"),
  16206. default: true
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16212. {
  16213. side: {
  16214. height: math.unit(1.8, "feet"),
  16215. weight: math.unit(44, "lb"),
  16216. name: "Side",
  16217. image: {
  16218. source: "./media/characters/perseus/side.svg",
  16219. bottom: 0.21
  16220. }
  16221. },
  16222. },
  16223. [
  16224. {
  16225. name: "Normal",
  16226. height: math.unit(1.8, "feet"),
  16227. default: true
  16228. },
  16229. ]
  16230. ))
  16231. characterMakers.push(() => makeCharacter(
  16232. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16233. {
  16234. side: {
  16235. height: math.unit(4 + 2 / 12, "feet"),
  16236. weight: math.unit(20, "lb"),
  16237. name: "Side",
  16238. image: {
  16239. source: "./media/characters/remus/side.svg"
  16240. }
  16241. },
  16242. },
  16243. [
  16244. {
  16245. name: "Normal",
  16246. height: math.unit(4 + 2 / 12, "feet"),
  16247. default: true
  16248. },
  16249. ]
  16250. ))
  16251. characterMakers.push(() => makeCharacter(
  16252. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16253. {
  16254. front: {
  16255. height: math.unit(4 + 11 / 12, "feet"),
  16256. weight: math.unit(114, "lb"),
  16257. name: "Front",
  16258. image: {
  16259. source: "./media/characters/raf/front.svg",
  16260. bottom: 20.5 / 1863
  16261. }
  16262. },
  16263. side: {
  16264. height: math.unit(4 + 11 / 12, "feet"),
  16265. weight: math.unit(114, "lb"),
  16266. name: "Side",
  16267. image: {
  16268. source: "./media/characters/raf/side.svg",
  16269. bottom: 22 / 1822
  16270. }
  16271. },
  16272. },
  16273. [
  16274. {
  16275. name: "Micro",
  16276. height: math.unit(2, "inches")
  16277. },
  16278. {
  16279. name: "Normal",
  16280. height: math.unit(4 + 11 / 12, "feet"),
  16281. default: true
  16282. },
  16283. {
  16284. name: "Macro",
  16285. height: math.unit(70, "feet")
  16286. },
  16287. ]
  16288. ))
  16289. characterMakers.push(() => makeCharacter(
  16290. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16291. {
  16292. front: {
  16293. height: math.unit(1.5, "meters"),
  16294. weight: math.unit(68, "kg"),
  16295. name: "Front",
  16296. image: {
  16297. source: "./media/characters/liam-einarr/front.svg",
  16298. extra: 2822 / 2666
  16299. }
  16300. },
  16301. back: {
  16302. height: math.unit(1.5, "meters"),
  16303. weight: math.unit(68, "kg"),
  16304. name: "Back",
  16305. image: {
  16306. source: "./media/characters/liam-einarr/back.svg",
  16307. extra: 2822 / 2666,
  16308. bottom: 0.015
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Normal",
  16315. height: math.unit(1.5, "meters"),
  16316. default: true
  16317. },
  16318. {
  16319. name: "Macro",
  16320. height: math.unit(150, "meters")
  16321. },
  16322. {
  16323. name: "Megamacro",
  16324. height: math.unit(35, "km")
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16330. {
  16331. front: {
  16332. height: math.unit(6, "feet"),
  16333. weight: math.unit(75, "kg"),
  16334. name: "Front",
  16335. image: {
  16336. source: "./media/characters/linda/front.svg",
  16337. extra: 930 / 874,
  16338. bottom: 0.004
  16339. }
  16340. },
  16341. },
  16342. [
  16343. {
  16344. name: "Normal",
  16345. height: math.unit(6, "feet"),
  16346. default: true
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16352. {
  16353. front: {
  16354. height: math.unit(6 + 8 / 12, "feet"),
  16355. weight: math.unit(220, "lb"),
  16356. name: "Front",
  16357. image: {
  16358. source: "./media/characters/caylex/front.svg",
  16359. extra: 821 / 772,
  16360. bottom: 0.07
  16361. }
  16362. },
  16363. back: {
  16364. height: math.unit(6 + 8 / 12, "feet"),
  16365. weight: math.unit(220, "lb"),
  16366. name: "Back",
  16367. image: {
  16368. source: "./media/characters/caylex/back.svg",
  16369. extra: 821 / 772,
  16370. bottom: 0.022
  16371. }
  16372. },
  16373. hand: {
  16374. height: math.unit(1.25, "feet"),
  16375. name: "Hand",
  16376. image: {
  16377. source: "./media/characters/caylex/hand.svg"
  16378. }
  16379. },
  16380. foot: {
  16381. height: math.unit(1.6, "feet"),
  16382. name: "Foot",
  16383. image: {
  16384. source: "./media/characters/caylex/foot.svg"
  16385. }
  16386. },
  16387. armored: {
  16388. height: math.unit(6 + 8 / 12, "feet"),
  16389. weight: math.unit(250, "lb"),
  16390. name: "Armored",
  16391. image: {
  16392. source: "./media/characters/caylex/armored.svg",
  16393. extra: 1420 / 1310,
  16394. bottom: 0.045
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Normal",
  16401. height: math.unit(6 + 8 / 12, "feet"),
  16402. default: true
  16403. },
  16404. {
  16405. name: "Normal+",
  16406. height: math.unit(12, "feet")
  16407. },
  16408. ]
  16409. ))
  16410. characterMakers.push(() => makeCharacter(
  16411. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16412. {
  16413. front: {
  16414. height: math.unit(7 + 6 / 12, "feet"),
  16415. weight: math.unit(288, "lb"),
  16416. name: "Front",
  16417. image: {
  16418. source: "./media/characters/alana/front.svg",
  16419. extra: 679 / 653,
  16420. bottom: 22.5 / 701
  16421. }
  16422. },
  16423. },
  16424. [
  16425. {
  16426. name: "Normal",
  16427. height: math.unit(7 + 6 / 12, "feet")
  16428. },
  16429. {
  16430. name: "Large",
  16431. height: math.unit(50, "feet")
  16432. },
  16433. {
  16434. name: "Macro",
  16435. height: math.unit(100, "feet"),
  16436. default: true
  16437. },
  16438. {
  16439. name: "Macro+",
  16440. height: math.unit(200, "feet")
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16446. {
  16447. front: {
  16448. height: math.unit(6 + 1 / 12, "feet"),
  16449. weight: math.unit(210, "lb"),
  16450. name: "Front",
  16451. image: {
  16452. source: "./media/characters/hasani/front.svg",
  16453. extra: 244 / 232,
  16454. bottom: 0.01
  16455. }
  16456. },
  16457. back: {
  16458. height: math.unit(6 + 1 / 12, "feet"),
  16459. weight: math.unit(210, "lb"),
  16460. name: "Back",
  16461. image: {
  16462. source: "./media/characters/hasani/back.svg",
  16463. extra: 244 / 232,
  16464. bottom: 0.01
  16465. }
  16466. },
  16467. },
  16468. [
  16469. {
  16470. name: "Normal",
  16471. height: math.unit(6 + 1 / 12, "feet")
  16472. },
  16473. {
  16474. name: "Macro",
  16475. height: math.unit(175, "feet"),
  16476. default: true
  16477. },
  16478. ]
  16479. ))
  16480. characterMakers.push(() => makeCharacter(
  16481. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16482. {
  16483. front: {
  16484. height: math.unit(1.82, "meters"),
  16485. weight: math.unit(140, "lb"),
  16486. name: "Front",
  16487. image: {
  16488. source: "./media/characters/nita/front.svg",
  16489. extra: 2473 / 2363,
  16490. bottom: 0.01
  16491. }
  16492. },
  16493. },
  16494. [
  16495. {
  16496. name: "Normal",
  16497. height: math.unit(1.82, "m")
  16498. },
  16499. {
  16500. name: "Macro",
  16501. height: math.unit(300, "m")
  16502. },
  16503. {
  16504. name: "Mistake Canon",
  16505. height: math.unit(0.5, "miles"),
  16506. default: true
  16507. },
  16508. {
  16509. name: "Big Mistake",
  16510. height: math.unit(13, "miles")
  16511. },
  16512. {
  16513. name: "Playing God",
  16514. height: math.unit(2450, "miles")
  16515. },
  16516. ]
  16517. ))
  16518. characterMakers.push(() => makeCharacter(
  16519. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16520. {
  16521. front: {
  16522. height: math.unit(4, "feet"),
  16523. weight: math.unit(120, "lb"),
  16524. name: "Front",
  16525. image: {
  16526. source: "./media/characters/shiriko/front.svg",
  16527. extra: 195 / 188
  16528. }
  16529. },
  16530. },
  16531. [
  16532. {
  16533. name: "Normal",
  16534. height: math.unit(4, "feet"),
  16535. default: true
  16536. },
  16537. ]
  16538. ))
  16539. characterMakers.push(() => makeCharacter(
  16540. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16541. {
  16542. front: {
  16543. height: math.unit(6, "feet"),
  16544. name: "front",
  16545. image: {
  16546. source: "./media/characters/deja/front.svg",
  16547. extra: 926 / 840,
  16548. bottom: 0.07
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Planck Length",
  16555. height: math.unit(1.6e-35, "meters")
  16556. },
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(30.48, "meters"),
  16560. default: true
  16561. },
  16562. {
  16563. name: "Universal",
  16564. height: math.unit(8.8e26, "meters")
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16570. {
  16571. side: {
  16572. height: math.unit(8, "feet"),
  16573. weight: math.unit(6300, "lb"),
  16574. name: "Side",
  16575. image: {
  16576. source: "./media/characters/anima/side.svg",
  16577. bottom: 0.035
  16578. }
  16579. },
  16580. },
  16581. [
  16582. {
  16583. name: "Normal",
  16584. height: math.unit(8, "feet"),
  16585. default: true
  16586. },
  16587. ]
  16588. ))
  16589. characterMakers.push(() => makeCharacter(
  16590. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16591. {
  16592. front: {
  16593. height: math.unit(8, "feet"),
  16594. weight: math.unit(350, "lb"),
  16595. name: "Front",
  16596. image: {
  16597. source: "./media/characters/bianca/front.svg",
  16598. extra: 234 / 225,
  16599. bottom: 0.03
  16600. }
  16601. },
  16602. },
  16603. [
  16604. {
  16605. name: "Normal",
  16606. height: math.unit(8, "feet"),
  16607. default: true
  16608. },
  16609. ]
  16610. ))
  16611. characterMakers.push(() => makeCharacter(
  16612. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16613. {
  16614. front: {
  16615. height: math.unit(6, "feet"),
  16616. weight: math.unit(150, "lb"),
  16617. name: "Front",
  16618. image: {
  16619. source: "./media/characters/adinia/front.svg",
  16620. extra: 1845 / 1672,
  16621. bottom: 0.02
  16622. }
  16623. },
  16624. back: {
  16625. height: math.unit(6, "feet"),
  16626. weight: math.unit(150, "lb"),
  16627. name: "Back",
  16628. image: {
  16629. source: "./media/characters/adinia/back.svg",
  16630. extra: 1845 / 1672,
  16631. bottom: 0.002
  16632. }
  16633. },
  16634. },
  16635. [
  16636. {
  16637. name: "Normal",
  16638. height: math.unit(11 + 5 / 12, "feet"),
  16639. default: true
  16640. },
  16641. ]
  16642. ))
  16643. characterMakers.push(() => makeCharacter(
  16644. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16645. {
  16646. front: {
  16647. height: math.unit(3, "meters"),
  16648. weight: math.unit(200, "kg"),
  16649. name: "Front",
  16650. image: {
  16651. source: "./media/characters/lykasa/front.svg",
  16652. extra: 1076 / 976,
  16653. bottom: 0.06
  16654. }
  16655. },
  16656. },
  16657. [
  16658. {
  16659. name: "Normal",
  16660. height: math.unit(3, "meters")
  16661. },
  16662. {
  16663. name: "Kaiju",
  16664. height: math.unit(120, "meters"),
  16665. default: true
  16666. },
  16667. {
  16668. name: "Mega Kaiju",
  16669. height: math.unit(240, "km")
  16670. },
  16671. {
  16672. name: "Giga Kaiju",
  16673. height: math.unit(400, "megameters")
  16674. },
  16675. {
  16676. name: "Tera Kaiju",
  16677. height: math.unit(800, "gigameters")
  16678. },
  16679. {
  16680. name: "Kaiju Dragon Goddess",
  16681. height: math.unit(26, "zettaparsecs")
  16682. },
  16683. ]
  16684. ))
  16685. characterMakers.push(() => makeCharacter(
  16686. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16687. {
  16688. side: {
  16689. height: math.unit(283 / 124 * 6, "feet"),
  16690. weight: math.unit(35000, "lb"),
  16691. name: "Side",
  16692. image: {
  16693. source: "./media/characters/malfaren/side.svg",
  16694. extra: 2500 / 1010,
  16695. bottom: 0.01
  16696. }
  16697. },
  16698. front: {
  16699. height: math.unit(22.36, "feet"),
  16700. weight: math.unit(35000, "lb"),
  16701. name: "Front",
  16702. image: {
  16703. source: "./media/characters/malfaren/front.svg",
  16704. extra: 1631 / 1476,
  16705. bottom: 0.01
  16706. }
  16707. },
  16708. maw: {
  16709. height: math.unit(6.9, "feet"),
  16710. name: "Maw",
  16711. image: {
  16712. source: "./media/characters/malfaren/maw.svg"
  16713. }
  16714. },
  16715. },
  16716. [
  16717. {
  16718. name: "Big",
  16719. height: math.unit(283 / 162 * 6, "feet"),
  16720. },
  16721. {
  16722. name: "Bigger",
  16723. height: math.unit(283 / 124 * 6, "feet")
  16724. },
  16725. {
  16726. name: "Massive",
  16727. height: math.unit(283 / 92 * 6, "feet"),
  16728. default: true
  16729. },
  16730. {
  16731. name: "👀💦",
  16732. height: math.unit(283 / 73 * 6, "feet"),
  16733. },
  16734. ]
  16735. ))
  16736. characterMakers.push(() => makeCharacter(
  16737. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16738. {
  16739. front: {
  16740. height: math.unit(1.7, "m"),
  16741. weight: math.unit(70, "kg"),
  16742. name: "Front",
  16743. image: {
  16744. source: "./media/characters/kernel/front.svg",
  16745. extra: 222 / 210,
  16746. bottom: 0.007
  16747. }
  16748. },
  16749. },
  16750. [
  16751. {
  16752. name: "Nano",
  16753. height: math.unit(17, "micrometers")
  16754. },
  16755. {
  16756. name: "Micro",
  16757. height: math.unit(1.7, "mm")
  16758. },
  16759. {
  16760. name: "Small",
  16761. height: math.unit(1.7, "cm")
  16762. },
  16763. {
  16764. name: "Normal",
  16765. height: math.unit(1.7, "m"),
  16766. default: true
  16767. },
  16768. ]
  16769. ))
  16770. characterMakers.push(() => makeCharacter(
  16771. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16772. {
  16773. front: {
  16774. height: math.unit(1.75, "meters"),
  16775. weight: math.unit(65, "kg"),
  16776. name: "Front",
  16777. image: {
  16778. source: "./media/characters/jayne-folest/front.svg",
  16779. extra: 2115 / 2007,
  16780. bottom: 0.02
  16781. }
  16782. },
  16783. back: {
  16784. height: math.unit(1.75, "meters"),
  16785. weight: math.unit(65, "kg"),
  16786. name: "Back",
  16787. image: {
  16788. source: "./media/characters/jayne-folest/back.svg",
  16789. extra: 2115 / 2007,
  16790. bottom: 0.005
  16791. }
  16792. },
  16793. frontClothed: {
  16794. height: math.unit(1.75, "meters"),
  16795. weight: math.unit(65, "kg"),
  16796. name: "Front (Clothed)",
  16797. image: {
  16798. source: "./media/characters/jayne-folest/front-clothed.svg",
  16799. extra: 2115 / 2007,
  16800. bottom: 0.035
  16801. }
  16802. },
  16803. hand: {
  16804. height: math.unit(1 / 1.260, "feet"),
  16805. name: "Hand",
  16806. image: {
  16807. source: "./media/characters/jayne-folest/hand.svg"
  16808. }
  16809. },
  16810. foot: {
  16811. height: math.unit(1 / 0.918, "feet"),
  16812. name: "Foot",
  16813. image: {
  16814. source: "./media/characters/jayne-folest/foot.svg"
  16815. }
  16816. },
  16817. },
  16818. [
  16819. {
  16820. name: "Micro",
  16821. height: math.unit(4, "cm")
  16822. },
  16823. {
  16824. name: "Normal",
  16825. height: math.unit(1.75, "meters")
  16826. },
  16827. {
  16828. name: "Macro",
  16829. height: math.unit(47.5, "meters"),
  16830. default: true
  16831. },
  16832. ]
  16833. ))
  16834. characterMakers.push(() => makeCharacter(
  16835. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16836. {
  16837. front: {
  16838. height: math.unit(180, "cm"),
  16839. weight: math.unit(70, "kg"),
  16840. name: "Front",
  16841. image: {
  16842. source: "./media/characters/algier/front.svg",
  16843. extra: 596 / 572,
  16844. bottom: 0.04
  16845. }
  16846. },
  16847. back: {
  16848. height: math.unit(180, "cm"),
  16849. weight: math.unit(70, "kg"),
  16850. name: "Back",
  16851. image: {
  16852. source: "./media/characters/algier/back.svg",
  16853. extra: 596 / 572,
  16854. bottom: 0.025
  16855. }
  16856. },
  16857. frontdressed: {
  16858. height: math.unit(180, "cm"),
  16859. weight: math.unit(150, "kg"),
  16860. name: "Front-dressed",
  16861. image: {
  16862. source: "./media/characters/algier/front-dressed.svg",
  16863. extra: 596 / 572,
  16864. bottom: 0.038
  16865. }
  16866. },
  16867. },
  16868. [
  16869. {
  16870. name: "Micro",
  16871. height: math.unit(5, "cm")
  16872. },
  16873. {
  16874. name: "Normal",
  16875. height: math.unit(180, "cm"),
  16876. default: true
  16877. },
  16878. {
  16879. name: "Macro",
  16880. height: math.unit(64, "m")
  16881. },
  16882. ]
  16883. ))
  16884. characterMakers.push(() => makeCharacter(
  16885. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16886. {
  16887. upright: {
  16888. height: math.unit(7, "feet"),
  16889. weight: math.unit(300, "lb"),
  16890. name: "Upright",
  16891. image: {
  16892. source: "./media/characters/pretzel/upright.svg",
  16893. extra: 534 / 522,
  16894. bottom: 0.065
  16895. }
  16896. },
  16897. sprawling: {
  16898. height: math.unit(3.75, "feet"),
  16899. weight: math.unit(300, "lb"),
  16900. name: "Sprawling",
  16901. image: {
  16902. source: "./media/characters/pretzel/sprawling.svg",
  16903. extra: 314 / 281,
  16904. bottom: 0.1
  16905. }
  16906. },
  16907. tongue: {
  16908. height: math.unit(2, "feet"),
  16909. name: "Tongue",
  16910. image: {
  16911. source: "./media/characters/pretzel/tongue.svg"
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Normal",
  16918. height: math.unit(7, "feet"),
  16919. default: true
  16920. },
  16921. {
  16922. name: "Oversized",
  16923. height: math.unit(15, "feet")
  16924. },
  16925. {
  16926. name: "Huge",
  16927. height: math.unit(30, "feet")
  16928. },
  16929. {
  16930. name: "Macro",
  16931. height: math.unit(250, "feet")
  16932. },
  16933. ]
  16934. ))
  16935. characterMakers.push(() => makeCharacter(
  16936. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16937. {
  16938. sideFront: {
  16939. height: math.unit(5 + 2 / 12, "feet"),
  16940. weight: math.unit(120, "lb"),
  16941. name: "Front Side",
  16942. image: {
  16943. source: "./media/characters/roxi/side-front.svg",
  16944. extra: 2924 / 2717,
  16945. bottom: 0.08
  16946. }
  16947. },
  16948. sideBack: {
  16949. height: math.unit(5 + 2 / 12, "feet"),
  16950. weight: math.unit(120, "lb"),
  16951. name: "Back Side",
  16952. image: {
  16953. source: "./media/characters/roxi/side-back.svg",
  16954. extra: 2904 / 2693,
  16955. bottom: 0.06
  16956. }
  16957. },
  16958. front: {
  16959. height: math.unit(5 + 2 / 12, "feet"),
  16960. weight: math.unit(120, "lb"),
  16961. name: "Front",
  16962. image: {
  16963. source: "./media/characters/roxi/front.svg",
  16964. extra: 2028 / 1907,
  16965. bottom: 0.01
  16966. }
  16967. },
  16968. frontAlt: {
  16969. height: math.unit(5 + 2 / 12, "feet"),
  16970. weight: math.unit(120, "lb"),
  16971. name: "Front (Alt)",
  16972. image: {
  16973. source: "./media/characters/roxi/front-alt.svg",
  16974. extra: 1828 / 1798,
  16975. bottom: 0.01
  16976. }
  16977. },
  16978. sitting: {
  16979. height: math.unit(2.8, "feet"),
  16980. weight: math.unit(120, "lb"),
  16981. name: "Sitting",
  16982. image: {
  16983. source: "./media/characters/roxi/sitting.svg",
  16984. extra: 2660 / 2462,
  16985. bottom: 0.1
  16986. }
  16987. },
  16988. },
  16989. [
  16990. {
  16991. name: "Normal",
  16992. height: math.unit(5 + 2 / 12, "feet"),
  16993. default: true
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16999. {
  17000. side: {
  17001. height: math.unit(55, "feet"),
  17002. weight: math.unit(153, "tons"),
  17003. name: "Side",
  17004. image: {
  17005. source: "./media/characters/shadow/side.svg",
  17006. extra: 701 / 628,
  17007. bottom: 0.02
  17008. }
  17009. },
  17010. flying: {
  17011. height: math.unit(145, "feet"),
  17012. weight: math.unit(153, "tons"),
  17013. name: "Flying",
  17014. image: {
  17015. source: "./media/characters/shadow/flying.svg"
  17016. }
  17017. },
  17018. },
  17019. [
  17020. {
  17021. name: "Normal",
  17022. height: math.unit(55, "feet"),
  17023. default: true
  17024. },
  17025. ]
  17026. ))
  17027. characterMakers.push(() => makeCharacter(
  17028. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17029. {
  17030. front: {
  17031. height: math.unit(6, "feet"),
  17032. weight: math.unit(200, "lb"),
  17033. name: "Front",
  17034. image: {
  17035. source: "./media/characters/marcie/front.svg",
  17036. extra: 960 / 876,
  17037. bottom: 58 / 1017.87
  17038. }
  17039. },
  17040. },
  17041. [
  17042. {
  17043. name: "Macro",
  17044. height: math.unit(1, "mile"),
  17045. default: true
  17046. },
  17047. ]
  17048. ))
  17049. characterMakers.push(() => makeCharacter(
  17050. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17051. {
  17052. front: {
  17053. height: math.unit(7, "feet"),
  17054. weight: math.unit(200, "lb"),
  17055. name: "Front",
  17056. image: {
  17057. source: "./media/characters/kachina/front.svg",
  17058. extra: 1290.68 / 1119,
  17059. bottom: 36.5 / 1327.18
  17060. }
  17061. },
  17062. },
  17063. [
  17064. {
  17065. name: "Normal",
  17066. height: math.unit(7, "feet"),
  17067. default: true
  17068. },
  17069. ]
  17070. ))
  17071. characterMakers.push(() => makeCharacter(
  17072. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17073. {
  17074. looking: {
  17075. height: math.unit(2, "meters"),
  17076. weight: math.unit(300, "kg"),
  17077. name: "Looking",
  17078. image: {
  17079. source: "./media/characters/kash/looking.svg",
  17080. extra: 474 / 344,
  17081. bottom: 0.03
  17082. }
  17083. },
  17084. side: {
  17085. height: math.unit(2, "meters"),
  17086. weight: math.unit(300, "kg"),
  17087. name: "Side",
  17088. image: {
  17089. source: "./media/characters/kash/side.svg",
  17090. extra: 302 / 251,
  17091. bottom: 0.03
  17092. }
  17093. },
  17094. front: {
  17095. height: math.unit(2, "meters"),
  17096. weight: math.unit(300, "kg"),
  17097. name: "Front",
  17098. image: {
  17099. source: "./media/characters/kash/front.svg",
  17100. extra: 495 / 360,
  17101. bottom: 0.015
  17102. }
  17103. },
  17104. },
  17105. [
  17106. {
  17107. name: "Normal",
  17108. height: math.unit(2, "meters"),
  17109. default: true
  17110. },
  17111. {
  17112. name: "Big",
  17113. height: math.unit(3, "meters")
  17114. },
  17115. {
  17116. name: "Large",
  17117. height: math.unit(5, "meters")
  17118. },
  17119. ]
  17120. ))
  17121. characterMakers.push(() => makeCharacter(
  17122. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17123. {
  17124. feeding: {
  17125. height: math.unit(6.7, "feet"),
  17126. weight: math.unit(350, "lb"),
  17127. name: "Feeding",
  17128. image: {
  17129. source: "./media/characters/lalim/feeding.svg",
  17130. }
  17131. },
  17132. },
  17133. [
  17134. {
  17135. name: "Normal",
  17136. height: math.unit(6.7, "feet"),
  17137. default: true
  17138. },
  17139. ]
  17140. ))
  17141. characterMakers.push(() => makeCharacter(
  17142. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17143. {
  17144. front: {
  17145. height: math.unit(9.5, "feet"),
  17146. weight: math.unit(600, "lb"),
  17147. name: "Front",
  17148. image: {
  17149. source: "./media/characters/de'vout/front.svg",
  17150. extra: 1443 / 1328,
  17151. bottom: 0.025
  17152. }
  17153. },
  17154. back: {
  17155. height: math.unit(9.5, "feet"),
  17156. weight: math.unit(600, "lb"),
  17157. name: "Back",
  17158. image: {
  17159. source: "./media/characters/de'vout/back.svg",
  17160. extra: 1443 / 1328
  17161. }
  17162. },
  17163. frontDressed: {
  17164. height: math.unit(9.5, "feet"),
  17165. weight: math.unit(600, "lb"),
  17166. name: "Front (Dressed",
  17167. image: {
  17168. source: "./media/characters/de'vout/front-dressed.svg",
  17169. extra: 1443 / 1328,
  17170. bottom: 0.025
  17171. }
  17172. },
  17173. backDressed: {
  17174. height: math.unit(9.5, "feet"),
  17175. weight: math.unit(600, "lb"),
  17176. name: "Back (Dressed",
  17177. image: {
  17178. source: "./media/characters/de'vout/back-dressed.svg",
  17179. extra: 1443 / 1328
  17180. }
  17181. },
  17182. },
  17183. [
  17184. {
  17185. name: "Normal",
  17186. height: math.unit(9.5, "feet"),
  17187. default: true
  17188. },
  17189. ]
  17190. ))
  17191. characterMakers.push(() => makeCharacter(
  17192. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17193. {
  17194. front: {
  17195. height: math.unit(8, "feet"),
  17196. weight: math.unit(225, "lb"),
  17197. name: "Front",
  17198. image: {
  17199. source: "./media/characters/talana/front.svg",
  17200. extra: 1410 / 1300,
  17201. bottom: 0.015
  17202. }
  17203. },
  17204. frontDressed: {
  17205. height: math.unit(8, "feet"),
  17206. weight: math.unit(225, "lb"),
  17207. name: "Front (Dressed",
  17208. image: {
  17209. source: "./media/characters/talana/front-dressed.svg",
  17210. extra: 1410 / 1300,
  17211. bottom: 0.015
  17212. }
  17213. },
  17214. },
  17215. [
  17216. {
  17217. name: "Normal",
  17218. height: math.unit(8, "feet"),
  17219. default: true
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17225. {
  17226. side: {
  17227. height: math.unit(7.2, "feet"),
  17228. weight: math.unit(150, "lb"),
  17229. name: "Side",
  17230. image: {
  17231. source: "./media/characters/xeauvok/side.svg",
  17232. extra: 1975 / 1523,
  17233. bottom: 0.07
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Normal",
  17240. height: math.unit(7.2, "feet"),
  17241. default: true
  17242. },
  17243. ]
  17244. ))
  17245. characterMakers.push(() => makeCharacter(
  17246. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17247. {
  17248. side: {
  17249. height: math.unit(10, "feet"),
  17250. weight: math.unit(900, "kg"),
  17251. name: "Side",
  17252. image: {
  17253. source: "./media/characters/zara/side.svg",
  17254. extra: 504 / 498
  17255. }
  17256. },
  17257. },
  17258. [
  17259. {
  17260. name: "Normal",
  17261. height: math.unit(10, "feet"),
  17262. default: true
  17263. },
  17264. ]
  17265. ))
  17266. characterMakers.push(() => makeCharacter(
  17267. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17268. {
  17269. side: {
  17270. height: math.unit(6, "feet"),
  17271. weight: math.unit(150, "lb"),
  17272. name: "Side",
  17273. image: {
  17274. source: "./media/characters/richard-dragon/side.svg",
  17275. extra: 845 / 340,
  17276. bottom: 0.017
  17277. }
  17278. },
  17279. maw: {
  17280. height: math.unit(2.97, "feet"),
  17281. name: "Maw",
  17282. image: {
  17283. source: "./media/characters/richard-dragon/maw.svg"
  17284. }
  17285. },
  17286. },
  17287. [
  17288. ]
  17289. ))
  17290. characterMakers.push(() => makeCharacter(
  17291. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17292. {
  17293. front: {
  17294. height: math.unit(4, "feet"),
  17295. weight: math.unit(100, "lb"),
  17296. name: "Front",
  17297. image: {
  17298. source: "./media/characters/richard-smeargle/front.svg",
  17299. extra: 2952 / 2820,
  17300. bottom: 0.028
  17301. }
  17302. },
  17303. },
  17304. [
  17305. {
  17306. name: "Normal",
  17307. height: math.unit(4, "feet"),
  17308. default: true
  17309. },
  17310. {
  17311. name: "Dynamax",
  17312. height: math.unit(20, "meters")
  17313. },
  17314. ]
  17315. ))
  17316. characterMakers.push(() => makeCharacter(
  17317. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17318. {
  17319. front: {
  17320. height: math.unit(6, "feet"),
  17321. weight: math.unit(110, "lb"),
  17322. name: "Front",
  17323. image: {
  17324. source: "./media/characters/klay/front.svg",
  17325. extra: 962 / 883,
  17326. bottom: 0.04
  17327. }
  17328. },
  17329. back: {
  17330. height: math.unit(6, "feet"),
  17331. weight: math.unit(110, "lb"),
  17332. name: "Back",
  17333. image: {
  17334. source: "./media/characters/klay/back.svg",
  17335. extra: 962 / 883
  17336. }
  17337. },
  17338. beans: {
  17339. height: math.unit(1.15, "feet"),
  17340. name: "Beans",
  17341. image: {
  17342. source: "./media/characters/klay/beans.svg"
  17343. }
  17344. },
  17345. },
  17346. [
  17347. {
  17348. name: "Micro",
  17349. height: math.unit(6, "inches")
  17350. },
  17351. {
  17352. name: "Mini",
  17353. height: math.unit(3, "feet")
  17354. },
  17355. {
  17356. name: "Normal",
  17357. height: math.unit(6, "feet"),
  17358. default: true
  17359. },
  17360. {
  17361. name: "Big",
  17362. height: math.unit(25, "feet")
  17363. },
  17364. {
  17365. name: "Macro",
  17366. height: math.unit(100, "feet")
  17367. },
  17368. {
  17369. name: "Megamacro",
  17370. height: math.unit(400, "feet")
  17371. },
  17372. ]
  17373. ))
  17374. characterMakers.push(() => makeCharacter(
  17375. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17376. {
  17377. front: {
  17378. height: math.unit(6, "feet"),
  17379. weight: math.unit(160, "lb"),
  17380. name: "Front",
  17381. image: {
  17382. source: "./media/characters/marcus/front.svg",
  17383. extra: 734 / 676,
  17384. bottom: 0.03
  17385. }
  17386. },
  17387. },
  17388. [
  17389. {
  17390. name: "Little",
  17391. height: math.unit(6, "feet")
  17392. },
  17393. {
  17394. name: "Normal",
  17395. height: math.unit(110, "feet"),
  17396. default: true
  17397. },
  17398. {
  17399. name: "Macro",
  17400. height: math.unit(250, "feet")
  17401. },
  17402. {
  17403. name: "Megamacro",
  17404. height: math.unit(1000, "feet")
  17405. },
  17406. ]
  17407. ))
  17408. characterMakers.push(() => makeCharacter(
  17409. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17410. {
  17411. front: {
  17412. height: math.unit(7, "feet"),
  17413. weight: math.unit(275, "lb"),
  17414. name: "Front",
  17415. image: {
  17416. source: "./media/characters/claude-delroute/front.svg",
  17417. extra: 230 / 214,
  17418. bottom: 0.007
  17419. }
  17420. },
  17421. side: {
  17422. height: math.unit(7, "feet"),
  17423. weight: math.unit(275, "lb"),
  17424. name: "Side",
  17425. image: {
  17426. source: "./media/characters/claude-delroute/side.svg",
  17427. extra: 222 / 214,
  17428. bottom: 0.01
  17429. }
  17430. },
  17431. back: {
  17432. height: math.unit(7, "feet"),
  17433. weight: math.unit(275, "lb"),
  17434. name: "Back",
  17435. image: {
  17436. source: "./media/characters/claude-delroute/back.svg",
  17437. extra: 230 / 214,
  17438. bottom: 0.015
  17439. }
  17440. },
  17441. maw: {
  17442. height: math.unit(0.6407, "meters"),
  17443. name: "Maw",
  17444. image: {
  17445. source: "./media/characters/claude-delroute/maw.svg"
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Normal",
  17452. height: math.unit(7, "feet"),
  17453. default: true
  17454. },
  17455. {
  17456. name: "Lorge",
  17457. height: math.unit(20, "feet")
  17458. },
  17459. ]
  17460. ))
  17461. characterMakers.push(() => makeCharacter(
  17462. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17463. {
  17464. front: {
  17465. height: math.unit(8 + 4 / 12, "feet"),
  17466. weight: math.unit(600, "lb"),
  17467. name: "Front",
  17468. image: {
  17469. source: "./media/characters/dragonien/front.svg",
  17470. extra: 100 / 94,
  17471. bottom: 3.3 / 103.3445
  17472. }
  17473. },
  17474. back: {
  17475. height: math.unit(8 + 4 / 12, "feet"),
  17476. weight: math.unit(600, "lb"),
  17477. name: "Back",
  17478. image: {
  17479. source: "./media/characters/dragonien/back.svg",
  17480. extra: 776 / 746,
  17481. bottom: 6.4 / 782.0616
  17482. }
  17483. },
  17484. foot: {
  17485. height: math.unit(1.54, "feet"),
  17486. name: "Foot",
  17487. image: {
  17488. source: "./media/characters/dragonien/foot.svg",
  17489. }
  17490. },
  17491. },
  17492. [
  17493. {
  17494. name: "Normal",
  17495. height: math.unit(8 + 4 / 12, "feet"),
  17496. default: true
  17497. },
  17498. {
  17499. name: "Macro",
  17500. height: math.unit(200, "feet")
  17501. },
  17502. {
  17503. name: "Megamacro",
  17504. height: math.unit(1, "mile")
  17505. },
  17506. {
  17507. name: "Gigamacro",
  17508. height: math.unit(1000, "miles")
  17509. },
  17510. ]
  17511. ))
  17512. characterMakers.push(() => makeCharacter(
  17513. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17514. {
  17515. front: {
  17516. height: math.unit(5 + 2 / 12, "feet"),
  17517. weight: math.unit(110, "lb"),
  17518. name: "Front",
  17519. image: {
  17520. source: "./media/characters/desta/front.svg",
  17521. extra: 767 / 726,
  17522. bottom: 11.7 / 779
  17523. }
  17524. },
  17525. back: {
  17526. height: math.unit(5 + 2 / 12, "feet"),
  17527. weight: math.unit(110, "lb"),
  17528. name: "Back",
  17529. image: {
  17530. source: "./media/characters/desta/back.svg",
  17531. extra: 777 / 728,
  17532. bottom: 6 / 784
  17533. }
  17534. },
  17535. frontAlt: {
  17536. height: math.unit(5 + 2 / 12, "feet"),
  17537. weight: math.unit(110, "lb"),
  17538. name: "Front",
  17539. image: {
  17540. source: "./media/characters/desta/front-alt.svg",
  17541. extra: 1482 / 1417
  17542. }
  17543. },
  17544. side: {
  17545. height: math.unit(5 + 2 / 12, "feet"),
  17546. weight: math.unit(110, "lb"),
  17547. name: "Side",
  17548. image: {
  17549. source: "./media/characters/desta/side.svg",
  17550. extra: 2579 / 2491,
  17551. bottom: 0.053
  17552. }
  17553. },
  17554. },
  17555. [
  17556. {
  17557. name: "Micro",
  17558. height: math.unit(6, "inches")
  17559. },
  17560. {
  17561. name: "Normal",
  17562. height: math.unit(5 + 2 / 12, "feet"),
  17563. default: true
  17564. },
  17565. {
  17566. name: "Macro",
  17567. height: math.unit(62, "feet")
  17568. },
  17569. {
  17570. name: "Megamacro",
  17571. height: math.unit(1800, "feet")
  17572. },
  17573. ]
  17574. ))
  17575. characterMakers.push(() => makeCharacter(
  17576. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17577. {
  17578. front: {
  17579. height: math.unit(10, "feet"),
  17580. weight: math.unit(700, "lb"),
  17581. name: "Front",
  17582. image: {
  17583. source: "./media/characters/storm-alystar/front.svg",
  17584. extra: 2112 / 1898,
  17585. bottom: 0.034
  17586. }
  17587. },
  17588. },
  17589. [
  17590. {
  17591. name: "Micro",
  17592. height: math.unit(3.5, "inches")
  17593. },
  17594. {
  17595. name: "Normal",
  17596. height: math.unit(10, "feet"),
  17597. default: true
  17598. },
  17599. {
  17600. name: "Macro",
  17601. height: math.unit(400, "feet")
  17602. },
  17603. {
  17604. name: "Deific",
  17605. height: math.unit(60, "miles")
  17606. },
  17607. ]
  17608. ))
  17609. characterMakers.push(() => makeCharacter(
  17610. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17611. {
  17612. front: {
  17613. height: math.unit(2.35, "meters"),
  17614. weight: math.unit(119, "kg"),
  17615. name: "Front",
  17616. image: {
  17617. source: "./media/characters/ilia/front.svg",
  17618. extra: 1285 / 1255,
  17619. bottom: 0.06
  17620. }
  17621. },
  17622. },
  17623. [
  17624. {
  17625. name: "Normal",
  17626. height: math.unit(2.35, "meters")
  17627. },
  17628. {
  17629. name: "Macro",
  17630. height: math.unit(140, "meters"),
  17631. default: true
  17632. },
  17633. {
  17634. name: "Megamacro",
  17635. height: math.unit(100, "miles")
  17636. },
  17637. ]
  17638. ))
  17639. characterMakers.push(() => makeCharacter(
  17640. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17641. {
  17642. front: {
  17643. height: math.unit(6 + 5 / 12, "feet"),
  17644. weight: math.unit(190, "lb"),
  17645. name: "Front",
  17646. image: {
  17647. source: "./media/characters/kingdead/front.svg",
  17648. extra: 1228 / 1177
  17649. }
  17650. },
  17651. },
  17652. [
  17653. {
  17654. name: "Micro",
  17655. height: math.unit(7, "inches")
  17656. },
  17657. {
  17658. name: "Normal",
  17659. height: math.unit(6 + 5 / 12, "feet")
  17660. },
  17661. {
  17662. name: "Macro",
  17663. height: math.unit(150, "feet"),
  17664. default: true
  17665. },
  17666. {
  17667. name: "Megamacro",
  17668. height: math.unit(200, "miles")
  17669. },
  17670. ]
  17671. ))
  17672. characterMakers.push(() => makeCharacter(
  17673. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17674. {
  17675. front: {
  17676. height: math.unit(8, "feet"),
  17677. weight: math.unit(600, "lb"),
  17678. name: "Front",
  17679. image: {
  17680. source: "./media/characters/kyrehx/front.svg",
  17681. extra: 1195 / 1095,
  17682. bottom: 0.034
  17683. }
  17684. },
  17685. },
  17686. [
  17687. {
  17688. name: "Micro",
  17689. height: math.unit(2, "inches")
  17690. },
  17691. {
  17692. name: "Normal",
  17693. height: math.unit(8, "feet"),
  17694. default: true
  17695. },
  17696. {
  17697. name: "Macro",
  17698. height: math.unit(255, "feet")
  17699. },
  17700. ]
  17701. ))
  17702. characterMakers.push(() => makeCharacter(
  17703. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17704. {
  17705. front: {
  17706. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17707. weight: math.unit(184, "lb"),
  17708. name: "Front",
  17709. image: {
  17710. source: "./media/characters/xang/front.svg",
  17711. extra: 845 / 755
  17712. }
  17713. },
  17714. },
  17715. [
  17716. {
  17717. name: "Normal",
  17718. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17719. default: true
  17720. },
  17721. {
  17722. name: "Macro",
  17723. height: math.unit(0.935 * 146, "feet")
  17724. },
  17725. {
  17726. name: "Megamacro",
  17727. height: math.unit(0.935 * 3, "miles")
  17728. },
  17729. ]
  17730. ))
  17731. characterMakers.push(() => makeCharacter(
  17732. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17733. {
  17734. frontDressed: {
  17735. height: math.unit(5 + 7 / 12, "feet"),
  17736. weight: math.unit(140, "lb"),
  17737. name: "Front (Dressed)",
  17738. image: {
  17739. source: "./media/characters/doc-weardno/front-dressed.svg",
  17740. extra: 263 / 234
  17741. }
  17742. },
  17743. backDressed: {
  17744. height: math.unit(5 + 7 / 12, "feet"),
  17745. weight: math.unit(140, "lb"),
  17746. name: "Back (Dressed)",
  17747. image: {
  17748. source: "./media/characters/doc-weardno/back-dressed.svg",
  17749. extra: 266 / 238
  17750. }
  17751. },
  17752. front: {
  17753. height: math.unit(5 + 7 / 12, "feet"),
  17754. weight: math.unit(140, "lb"),
  17755. name: "Front",
  17756. image: {
  17757. source: "./media/characters/doc-weardno/front.svg",
  17758. extra: 254 / 233
  17759. }
  17760. },
  17761. },
  17762. [
  17763. {
  17764. name: "Micro",
  17765. height: math.unit(3, "inches")
  17766. },
  17767. {
  17768. name: "Normal",
  17769. height: math.unit(5 + 7 / 12, "feet"),
  17770. default: true
  17771. },
  17772. {
  17773. name: "Macro",
  17774. height: math.unit(25, "feet")
  17775. },
  17776. {
  17777. name: "Megamacro",
  17778. height: math.unit(2, "miles")
  17779. },
  17780. ]
  17781. ))
  17782. characterMakers.push(() => makeCharacter(
  17783. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17784. {
  17785. front: {
  17786. height: math.unit(6 + 2 / 12, "feet"),
  17787. weight: math.unit(153, "lb"),
  17788. name: "Front",
  17789. image: {
  17790. source: "./media/characters/seth-whilst/front.svg",
  17791. bottom: 0.07
  17792. }
  17793. },
  17794. },
  17795. [
  17796. {
  17797. name: "Micro",
  17798. height: math.unit(5, "inches")
  17799. },
  17800. {
  17801. name: "Normal",
  17802. height: math.unit(6 + 2 / 12, "feet"),
  17803. default: true
  17804. },
  17805. ]
  17806. ))
  17807. characterMakers.push(() => makeCharacter(
  17808. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17809. {
  17810. front: {
  17811. height: math.unit(3, "inches"),
  17812. weight: math.unit(8, "grams"),
  17813. name: "Front",
  17814. image: {
  17815. source: "./media/characters/pocket-jabari/front.svg",
  17816. extra: 1024 / 974,
  17817. bottom: 0.039
  17818. }
  17819. },
  17820. },
  17821. [
  17822. {
  17823. name: "Minimicro",
  17824. height: math.unit(8, "mm")
  17825. },
  17826. {
  17827. name: "Micro",
  17828. height: math.unit(3, "inches"),
  17829. default: true
  17830. },
  17831. {
  17832. name: "Normal",
  17833. height: math.unit(3, "feet")
  17834. },
  17835. ]
  17836. ))
  17837. characterMakers.push(() => makeCharacter(
  17838. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17839. {
  17840. front: {
  17841. height: math.unit(15, "feet"),
  17842. weight: math.unit(3280, "lb"),
  17843. name: "Front",
  17844. image: {
  17845. source: "./media/characters/sapphy/front.svg",
  17846. extra: 671 / 577,
  17847. bottom: 0.085
  17848. }
  17849. },
  17850. back: {
  17851. height: math.unit(15, "feet"),
  17852. weight: math.unit(3280, "lb"),
  17853. name: "Back",
  17854. image: {
  17855. source: "./media/characters/sapphy/back.svg",
  17856. extra: 631 / 607,
  17857. bottom: 0.045
  17858. }
  17859. },
  17860. },
  17861. [
  17862. {
  17863. name: "Normal",
  17864. height: math.unit(15, "feet")
  17865. },
  17866. {
  17867. name: "Casual Macro",
  17868. height: math.unit(120, "feet")
  17869. },
  17870. {
  17871. name: "Macro",
  17872. height: math.unit(2150, "feet"),
  17873. default: true
  17874. },
  17875. {
  17876. name: "Megamacro",
  17877. height: math.unit(8, "miles")
  17878. },
  17879. {
  17880. name: "Galaxy Mom",
  17881. height: math.unit(6, "megalightyears")
  17882. },
  17883. ]
  17884. ))
  17885. characterMakers.push(() => makeCharacter(
  17886. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17887. {
  17888. front: {
  17889. height: math.unit(6, "feet"),
  17890. weight: math.unit(170, "lb"),
  17891. name: "Front",
  17892. image: {
  17893. source: "./media/characters/kiro/front.svg",
  17894. extra: 1064 / 1012,
  17895. bottom: 0.052
  17896. }
  17897. },
  17898. },
  17899. [
  17900. {
  17901. name: "Micro",
  17902. height: math.unit(6, "inches")
  17903. },
  17904. {
  17905. name: "Normal",
  17906. height: math.unit(6, "feet"),
  17907. default: true
  17908. },
  17909. {
  17910. name: "Macro",
  17911. height: math.unit(72, "feet")
  17912. },
  17913. ]
  17914. ))
  17915. characterMakers.push(() => makeCharacter(
  17916. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17917. {
  17918. front: {
  17919. height: math.unit(5 + 9 / 12, "feet"),
  17920. weight: math.unit(175, "lb"),
  17921. name: "Front",
  17922. image: {
  17923. source: "./media/characters/irishfox/front.svg",
  17924. extra: 1912 / 1680,
  17925. bottom: 0.02
  17926. }
  17927. },
  17928. },
  17929. [
  17930. {
  17931. name: "Nano",
  17932. height: math.unit(1, "mm")
  17933. },
  17934. {
  17935. name: "Micro",
  17936. height: math.unit(2, "inches")
  17937. },
  17938. {
  17939. name: "Normal",
  17940. height: math.unit(5 + 9 / 12, "feet"),
  17941. default: true
  17942. },
  17943. {
  17944. name: "Macro",
  17945. height: math.unit(45, "feet")
  17946. },
  17947. ]
  17948. ))
  17949. characterMakers.push(() => makeCharacter(
  17950. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17951. {
  17952. front: {
  17953. height: math.unit(6 + 1 / 12, "feet"),
  17954. weight: math.unit(150, "lb"),
  17955. name: "Front",
  17956. image: {
  17957. source: "./media/characters/aronai-sieyes/front.svg",
  17958. extra: 1556 / 1480,
  17959. bottom: 0.015
  17960. }
  17961. },
  17962. side: {
  17963. height: math.unit(6 + 1 / 12, "feet"),
  17964. weight: math.unit(150, "lb"),
  17965. name: "Side",
  17966. image: {
  17967. source: "./media/characters/aronai-sieyes/side.svg",
  17968. extra: 1433 / 1390,
  17969. bottom: 0.0393
  17970. }
  17971. },
  17972. back: {
  17973. height: math.unit(6 + 1 / 12, "feet"),
  17974. weight: math.unit(150, "lb"),
  17975. name: "Back",
  17976. image: {
  17977. source: "./media/characters/aronai-sieyes/back.svg",
  17978. extra: 1544 / 1494,
  17979. bottom: 0.02
  17980. }
  17981. },
  17982. frontClothed: {
  17983. height: math.unit(6 + 1 / 12, "feet"),
  17984. weight: math.unit(150, "lb"),
  17985. name: "Front (Clothed)",
  17986. image: {
  17987. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17988. extra: 1582 / 1527
  17989. }
  17990. },
  17991. feral: {
  17992. height: math.unit(18, "feet"),
  17993. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17994. name: "Feral",
  17995. image: {
  17996. source: "./media/characters/aronai-sieyes/feral.svg",
  17997. extra: 1530 / 1240,
  17998. bottom: 0.035
  17999. }
  18000. },
  18001. },
  18002. [
  18003. {
  18004. name: "Micro",
  18005. height: math.unit(2, "inches")
  18006. },
  18007. {
  18008. name: "Normal",
  18009. height: math.unit(6 + 1 / 12, "feet"),
  18010. default: true
  18011. }
  18012. ]
  18013. ))
  18014. characterMakers.push(() => makeCharacter(
  18015. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18016. {
  18017. front: {
  18018. height: math.unit(12, "feet"),
  18019. weight: math.unit(410, "kg"),
  18020. name: "Front",
  18021. image: {
  18022. source: "./media/characters/xuna/front.svg",
  18023. extra: 2184 / 1980
  18024. }
  18025. },
  18026. side: {
  18027. height: math.unit(12, "feet"),
  18028. weight: math.unit(410, "kg"),
  18029. name: "Side",
  18030. image: {
  18031. source: "./media/characters/xuna/side.svg",
  18032. extra: 2184 / 1980
  18033. }
  18034. },
  18035. back: {
  18036. height: math.unit(12, "feet"),
  18037. weight: math.unit(410, "kg"),
  18038. name: "Back",
  18039. image: {
  18040. source: "./media/characters/xuna/back.svg",
  18041. extra: 2184 / 1980
  18042. }
  18043. },
  18044. },
  18045. [
  18046. {
  18047. name: "Nano glow",
  18048. height: math.unit(10, "nm")
  18049. },
  18050. {
  18051. name: "Micro floof",
  18052. height: math.unit(0.3, "m")
  18053. },
  18054. {
  18055. name: "Huggable softy boi",
  18056. height: math.unit(3.6576, "m"),
  18057. default: true
  18058. },
  18059. {
  18060. name: "Admirable floof",
  18061. height: math.unit(80, "meters")
  18062. },
  18063. {
  18064. name: "Gentle macro",
  18065. height: math.unit(300, "meters")
  18066. },
  18067. {
  18068. name: "Very careful floof",
  18069. height: math.unit(3200, "meters")
  18070. },
  18071. {
  18072. name: "The mega floof",
  18073. height: math.unit(36000, "meters")
  18074. },
  18075. {
  18076. name: "Giga-fur-Wicker",
  18077. height: math.unit(4800000, "meters")
  18078. },
  18079. {
  18080. name: "Licky world",
  18081. height: math.unit(20000000, "meters")
  18082. },
  18083. {
  18084. name: "Floofy cyan sun",
  18085. height: math.unit(1500000000, "meters")
  18086. },
  18087. {
  18088. name: "Milky Wicker",
  18089. height: math.unit(1000000000000000000000, "meters")
  18090. },
  18091. {
  18092. name: "The observing Wicker",
  18093. height: math.unit(999999999999999999999999999, "meters")
  18094. },
  18095. ]
  18096. ))
  18097. characterMakers.push(() => makeCharacter(
  18098. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18099. {
  18100. front: {
  18101. height: math.unit(5 + 9 / 12, "feet"),
  18102. weight: math.unit(150, "lb"),
  18103. name: "Front",
  18104. image: {
  18105. source: "./media/characters/arokha-sieyes/front.svg",
  18106. extra: 1425 / 1284,
  18107. bottom: 0.05
  18108. }
  18109. },
  18110. },
  18111. [
  18112. {
  18113. name: "Normal",
  18114. height: math.unit(5 + 9 / 12, "feet")
  18115. },
  18116. {
  18117. name: "Macro",
  18118. height: math.unit(30, "meters"),
  18119. default: true
  18120. },
  18121. ]
  18122. ))
  18123. characterMakers.push(() => makeCharacter(
  18124. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18125. {
  18126. front: {
  18127. height: math.unit(6, "feet"),
  18128. weight: math.unit(180, "lb"),
  18129. name: "Front",
  18130. image: {
  18131. source: "./media/characters/arokh-sieyes/front.svg",
  18132. extra: 1830 / 1769,
  18133. bottom: 0.01
  18134. }
  18135. },
  18136. },
  18137. [
  18138. {
  18139. name: "Normal",
  18140. height: math.unit(6, "feet")
  18141. },
  18142. {
  18143. name: "Macro",
  18144. height: math.unit(30, "meters"),
  18145. default: true
  18146. },
  18147. ]
  18148. ))
  18149. characterMakers.push(() => makeCharacter(
  18150. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18151. {
  18152. side: {
  18153. height: math.unit(13 + 1 / 12, "feet"),
  18154. weight: math.unit(8.5, "tonnes"),
  18155. name: "Side",
  18156. image: {
  18157. source: "./media/characters/goldeneye/side.svg",
  18158. extra: 1182 / 778,
  18159. bottom: 0.067
  18160. }
  18161. },
  18162. paw: {
  18163. height: math.unit(3.4, "feet"),
  18164. name: "Paw",
  18165. image: {
  18166. source: "./media/characters/goldeneye/paw.svg"
  18167. }
  18168. },
  18169. },
  18170. [
  18171. {
  18172. name: "Normal",
  18173. height: math.unit(13 + 1 / 12, "feet"),
  18174. default: true
  18175. },
  18176. ]
  18177. ))
  18178. characterMakers.push(() => makeCharacter(
  18179. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18180. {
  18181. front: {
  18182. height: math.unit(6 + 1 / 12, "feet"),
  18183. weight: math.unit(210, "lb"),
  18184. name: "Front",
  18185. image: {
  18186. source: "./media/characters/leonardo-lycheborne/front.svg",
  18187. extra: 390 / 365,
  18188. bottom: 0.032
  18189. }
  18190. },
  18191. side: {
  18192. height: math.unit(6 + 1 / 12, "feet"),
  18193. weight: math.unit(210, "lb"),
  18194. name: "Side",
  18195. image: {
  18196. source: "./media/characters/leonardo-lycheborne/side.svg",
  18197. extra: 390 / 365,
  18198. bottom: 0.005
  18199. }
  18200. },
  18201. back: {
  18202. height: math.unit(6 + 1 / 12, "feet"),
  18203. weight: math.unit(210, "lb"),
  18204. name: "Back",
  18205. image: {
  18206. source: "./media/characters/leonardo-lycheborne/back.svg",
  18207. extra: 392 / 366,
  18208. bottom: 0.01
  18209. }
  18210. },
  18211. hand: {
  18212. height: math.unit(1.08, "feet"),
  18213. name: "Hand",
  18214. image: {
  18215. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18216. }
  18217. },
  18218. foot: {
  18219. height: math.unit(1.32, "feet"),
  18220. name: "Foot",
  18221. image: {
  18222. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18223. }
  18224. },
  18225. were: {
  18226. height: math.unit(20, "feet"),
  18227. weight: math.unit(7800, "lb"),
  18228. name: "Were",
  18229. image: {
  18230. source: "./media/characters/leonardo-lycheborne/were.svg",
  18231. extra: 308 / 294,
  18232. bottom: 0.048
  18233. }
  18234. },
  18235. feral: {
  18236. height: math.unit(7.5, "feet"),
  18237. weight: math.unit(600, "lb"),
  18238. name: "Feral",
  18239. image: {
  18240. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18241. extra: 210 / 186,
  18242. bottom: 0.108
  18243. }
  18244. },
  18245. taur: {
  18246. height: math.unit(11, "feet"),
  18247. weight: math.unit(3300, "lb"),
  18248. name: "Taur",
  18249. image: {
  18250. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18251. extra: 320 / 303,
  18252. bottom: 0.025
  18253. }
  18254. },
  18255. barghest: {
  18256. height: math.unit(11, "feet"),
  18257. weight: math.unit(1300, "lb"),
  18258. name: "Barghest",
  18259. image: {
  18260. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18261. extra: 323 / 302,
  18262. bottom: 0.027
  18263. }
  18264. },
  18265. dick: {
  18266. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18267. name: "Dick",
  18268. image: {
  18269. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18270. }
  18271. },
  18272. dickWere: {
  18273. height: math.unit((20) / 3.8, "feet"),
  18274. name: "Dick (Were)",
  18275. image: {
  18276. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18277. }
  18278. },
  18279. },
  18280. [
  18281. {
  18282. name: "Normal",
  18283. height: math.unit(6 + 1 / 12, "feet"),
  18284. default: true
  18285. },
  18286. ]
  18287. ))
  18288. characterMakers.push(() => makeCharacter(
  18289. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18290. {
  18291. front: {
  18292. height: math.unit(10, "feet"),
  18293. weight: math.unit(350, "lb"),
  18294. name: "Front",
  18295. image: {
  18296. source: "./media/characters/jet/front.svg",
  18297. extra: 2050 / 1980,
  18298. bottom: 0.013
  18299. }
  18300. },
  18301. back: {
  18302. height: math.unit(10, "feet"),
  18303. weight: math.unit(350, "lb"),
  18304. name: "Back",
  18305. image: {
  18306. source: "./media/characters/jet/back.svg",
  18307. extra: 2050 / 1980,
  18308. bottom: 0.013
  18309. }
  18310. },
  18311. },
  18312. [
  18313. {
  18314. name: "Micro",
  18315. height: math.unit(6, "inches")
  18316. },
  18317. {
  18318. name: "Normal",
  18319. height: math.unit(10, "feet"),
  18320. default: true
  18321. },
  18322. {
  18323. name: "Macro",
  18324. height: math.unit(100, "feet")
  18325. },
  18326. ]
  18327. ))
  18328. characterMakers.push(() => makeCharacter(
  18329. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18330. {
  18331. front: {
  18332. height: math.unit(15, "feet"),
  18333. weight: math.unit(2800, "lb"),
  18334. name: "Front",
  18335. image: {
  18336. source: "./media/characters/tanarath/front.svg",
  18337. extra: 2392 / 2220,
  18338. bottom: 0.03
  18339. }
  18340. },
  18341. back: {
  18342. height: math.unit(15, "feet"),
  18343. weight: math.unit(2800, "lb"),
  18344. name: "Back",
  18345. image: {
  18346. source: "./media/characters/tanarath/back.svg",
  18347. extra: 2392 / 2220,
  18348. bottom: 0.03
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "Normal",
  18355. height: math.unit(15, "feet"),
  18356. default: true
  18357. },
  18358. ]
  18359. ))
  18360. characterMakers.push(() => makeCharacter(
  18361. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18362. {
  18363. front: {
  18364. height: math.unit(7 + 1 / 12, "feet"),
  18365. weight: math.unit(175, "lb"),
  18366. name: "Front",
  18367. image: {
  18368. source: "./media/characters/patty-cattybatty/front.svg",
  18369. extra: 908 / 874,
  18370. bottom: 0.025
  18371. }
  18372. },
  18373. },
  18374. [
  18375. {
  18376. name: "Micro",
  18377. height: math.unit(1, "inch")
  18378. },
  18379. {
  18380. name: "Normal",
  18381. height: math.unit(7 + 1 / 12, "feet")
  18382. },
  18383. {
  18384. name: "Mini Macro",
  18385. height: math.unit(155, "feet")
  18386. },
  18387. {
  18388. name: "Macro",
  18389. height: math.unit(1077, "feet")
  18390. },
  18391. {
  18392. name: "Mega Macro",
  18393. height: math.unit(47650, "feet"),
  18394. default: true
  18395. },
  18396. {
  18397. name: "Giga Macro",
  18398. height: math.unit(440, "miles")
  18399. },
  18400. {
  18401. name: "Tera Macro",
  18402. height: math.unit(8700, "miles")
  18403. },
  18404. {
  18405. name: "Planetary Macro",
  18406. height: math.unit(32700, "miles")
  18407. },
  18408. {
  18409. name: "Solar Macro",
  18410. height: math.unit(550000, "miles")
  18411. },
  18412. {
  18413. name: "Celestial Macro",
  18414. height: math.unit(2.5, "AU")
  18415. },
  18416. ]
  18417. ))
  18418. characterMakers.push(() => makeCharacter(
  18419. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18420. {
  18421. front: {
  18422. height: math.unit(4 + 5 / 12, "feet"),
  18423. weight: math.unit(90, "lb"),
  18424. name: "Front",
  18425. image: {
  18426. source: "./media/characters/cappu/front.svg",
  18427. extra: 1247 / 1152,
  18428. bottom: 0.012
  18429. }
  18430. },
  18431. },
  18432. [
  18433. {
  18434. name: "Normal",
  18435. height: math.unit(4 + 5 / 12, "feet"),
  18436. default: true
  18437. },
  18438. ]
  18439. ))
  18440. characterMakers.push(() => makeCharacter(
  18441. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18442. {
  18443. frontDressed: {
  18444. height: math.unit(70, "cm"),
  18445. weight: math.unit(6, "kg"),
  18446. name: "Front (Dressed)",
  18447. image: {
  18448. source: "./media/characters/sebi/front-dressed.svg",
  18449. extra: 713.5 / 686.5,
  18450. bottom: 0.003
  18451. }
  18452. },
  18453. front: {
  18454. height: math.unit(70, "cm"),
  18455. weight: math.unit(5, "kg"),
  18456. name: "Front",
  18457. image: {
  18458. source: "./media/characters/sebi/front.svg",
  18459. extra: 713.5 / 686.5,
  18460. bottom: 0.003
  18461. }
  18462. }
  18463. },
  18464. [
  18465. {
  18466. name: "Normal",
  18467. height: math.unit(70, "cm"),
  18468. default: true
  18469. },
  18470. {
  18471. name: "Macro",
  18472. height: math.unit(8, "meters")
  18473. },
  18474. ]
  18475. ))
  18476. characterMakers.push(() => makeCharacter(
  18477. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18478. {
  18479. front: {
  18480. height: math.unit(6, "feet"),
  18481. weight: math.unit(150, "lb"),
  18482. name: "Front",
  18483. image: {
  18484. source: "./media/characters/typhek/front.svg",
  18485. extra: 1948 / 1929,
  18486. bottom: 0.025
  18487. }
  18488. },
  18489. side: {
  18490. height: math.unit(6, "feet"),
  18491. weight: math.unit(150, "lb"),
  18492. name: "Side",
  18493. image: {
  18494. source: "./media/characters/typhek/side.svg",
  18495. extra: 2034 / 2010,
  18496. bottom: 0.003
  18497. }
  18498. },
  18499. back: {
  18500. height: math.unit(6, "feet"),
  18501. weight: math.unit(150, "lb"),
  18502. name: "Back",
  18503. image: {
  18504. source: "./media/characters/typhek/back.svg",
  18505. extra: 2005 / 1978,
  18506. bottom: 0.004
  18507. }
  18508. },
  18509. palm: {
  18510. height: math.unit(1.2, "feet"),
  18511. name: "Palm",
  18512. image: {
  18513. source: "./media/characters/typhek/palm.svg"
  18514. }
  18515. },
  18516. fist: {
  18517. height: math.unit(1.1, "feet"),
  18518. name: "Fist",
  18519. image: {
  18520. source: "./media/characters/typhek/fist.svg"
  18521. }
  18522. },
  18523. foot: {
  18524. height: math.unit(1.57, "feet"),
  18525. name: "Foot",
  18526. image: {
  18527. source: "./media/characters/typhek/foot.svg"
  18528. }
  18529. },
  18530. sole: {
  18531. height: math.unit(2.05, "feet"),
  18532. name: "Sole",
  18533. image: {
  18534. source: "./media/characters/typhek/sole.svg"
  18535. }
  18536. },
  18537. },
  18538. [
  18539. {
  18540. name: "Macro",
  18541. height: math.unit(40, "stories"),
  18542. default: true
  18543. },
  18544. {
  18545. name: "Megamacro",
  18546. height: math.unit(1, "mile")
  18547. },
  18548. {
  18549. name: "Gigamacro",
  18550. height: math.unit(4000, "solarradii")
  18551. },
  18552. {
  18553. name: "Universal",
  18554. height: math.unit(1.1, "universes")
  18555. }
  18556. ]
  18557. ))
  18558. characterMakers.push(() => makeCharacter(
  18559. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18560. {
  18561. side: {
  18562. height: math.unit(5 + 7 / 12, "feet"),
  18563. weight: math.unit(150, "lb"),
  18564. name: "Side",
  18565. image: {
  18566. source: "./media/characters/kassy/side.svg",
  18567. extra: 1280 / 1225,
  18568. bottom: 0.002
  18569. }
  18570. },
  18571. front: {
  18572. height: math.unit(5 + 7 / 12, "feet"),
  18573. weight: math.unit(150, "lb"),
  18574. name: "Front",
  18575. image: {
  18576. source: "./media/characters/kassy/front.svg",
  18577. extra: 1280 / 1225,
  18578. bottom: 0.025
  18579. }
  18580. },
  18581. back: {
  18582. height: math.unit(5 + 7 / 12, "feet"),
  18583. weight: math.unit(150, "lb"),
  18584. name: "Back",
  18585. image: {
  18586. source: "./media/characters/kassy/back.svg",
  18587. extra: 1280 / 1225,
  18588. bottom: 0.002
  18589. }
  18590. },
  18591. foot: {
  18592. height: math.unit(1.266, "feet"),
  18593. name: "Foot",
  18594. image: {
  18595. source: "./media/characters/kassy/foot.svg"
  18596. }
  18597. },
  18598. },
  18599. [
  18600. {
  18601. name: "Normal",
  18602. height: math.unit(5 + 7 / 12, "feet")
  18603. },
  18604. {
  18605. name: "Macro",
  18606. height: math.unit(137, "feet"),
  18607. default: true
  18608. },
  18609. {
  18610. name: "Megamacro",
  18611. height: math.unit(1, "mile")
  18612. },
  18613. ]
  18614. ))
  18615. characterMakers.push(() => makeCharacter(
  18616. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18617. {
  18618. front: {
  18619. height: math.unit(6 + 1 / 12, "feet"),
  18620. weight: math.unit(200, "lb"),
  18621. name: "Front",
  18622. image: {
  18623. source: "./media/characters/neil/front.svg",
  18624. extra: 1326 / 1250,
  18625. bottom: 0.023
  18626. }
  18627. },
  18628. },
  18629. [
  18630. {
  18631. name: "Normal",
  18632. height: math.unit(6 + 1 / 12, "feet"),
  18633. default: true
  18634. },
  18635. {
  18636. name: "Macro",
  18637. height: math.unit(200, "feet")
  18638. },
  18639. ]
  18640. ))
  18641. characterMakers.push(() => makeCharacter(
  18642. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18643. {
  18644. front: {
  18645. height: math.unit(5 + 9 / 12, "feet"),
  18646. weight: math.unit(190, "lb"),
  18647. name: "Front",
  18648. image: {
  18649. source: "./media/characters/atticus/front.svg",
  18650. extra: 2934 / 2785,
  18651. bottom: 0.025
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Normal",
  18658. height: math.unit(5 + 9 / 12, "feet"),
  18659. default: true
  18660. },
  18661. {
  18662. name: "Macro",
  18663. height: math.unit(180, "feet")
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18669. {
  18670. side: {
  18671. height: math.unit(9, "feet"),
  18672. weight: math.unit(650, "lb"),
  18673. name: "Side",
  18674. image: {
  18675. source: "./media/characters/milo/side.svg",
  18676. extra: 2644 / 2310,
  18677. bottom: 0.032
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(9, "feet"),
  18685. default: true
  18686. },
  18687. {
  18688. name: "Macro",
  18689. height: math.unit(300, "feet")
  18690. },
  18691. ]
  18692. ))
  18693. characterMakers.push(() => makeCharacter(
  18694. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18695. {
  18696. side: {
  18697. height: math.unit(8, "meters"),
  18698. weight: math.unit(90000, "kg"),
  18699. name: "Side",
  18700. image: {
  18701. source: "./media/characters/ijzer/side.svg",
  18702. extra: 2756 / 1600,
  18703. bottom: 0.01
  18704. }
  18705. },
  18706. },
  18707. [
  18708. {
  18709. name: "Small",
  18710. height: math.unit(3, "meters")
  18711. },
  18712. {
  18713. name: "Normal",
  18714. height: math.unit(8, "meters"),
  18715. default: true
  18716. },
  18717. {
  18718. name: "Normal+",
  18719. height: math.unit(10, "meters")
  18720. },
  18721. {
  18722. name: "Bigger",
  18723. height: math.unit(24, "meters")
  18724. },
  18725. {
  18726. name: "Huge",
  18727. height: math.unit(80, "meters")
  18728. },
  18729. ]
  18730. ))
  18731. characterMakers.push(() => makeCharacter(
  18732. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18733. {
  18734. front: {
  18735. height: math.unit(6 + 2 / 12, "feet"),
  18736. weight: math.unit(153, "lb"),
  18737. name: "Front",
  18738. image: {
  18739. source: "./media/characters/luca-cervicum/front.svg",
  18740. extra: 370 / 327,
  18741. bottom: 0.015
  18742. }
  18743. },
  18744. back: {
  18745. height: math.unit(6 + 2 / 12, "feet"),
  18746. weight: math.unit(153, "lb"),
  18747. name: "Back",
  18748. image: {
  18749. source: "./media/characters/luca-cervicum/back.svg",
  18750. extra: 367 / 333,
  18751. bottom: 0.005
  18752. }
  18753. },
  18754. frontGear: {
  18755. height: math.unit(6 + 2 / 12, "feet"),
  18756. weight: math.unit(173, "lb"),
  18757. name: "Front (Gear)",
  18758. image: {
  18759. source: "./media/characters/luca-cervicum/front-gear.svg",
  18760. extra: 377 / 333,
  18761. bottom: 0.006
  18762. }
  18763. },
  18764. },
  18765. [
  18766. {
  18767. name: "Normal",
  18768. height: math.unit(6 + 2 / 12, "feet"),
  18769. default: true
  18770. },
  18771. ]
  18772. ))
  18773. characterMakers.push(() => makeCharacter(
  18774. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18775. {
  18776. front: {
  18777. height: math.unit(6 + 1 / 12, "feet"),
  18778. weight: math.unit(304, "lb"),
  18779. name: "Front",
  18780. image: {
  18781. source: "./media/characters/oliver/front.svg",
  18782. extra: 157 / 143,
  18783. bottom: 0.08
  18784. }
  18785. },
  18786. },
  18787. [
  18788. {
  18789. name: "Normal",
  18790. height: math.unit(6 + 1 / 12, "feet"),
  18791. default: true
  18792. },
  18793. ]
  18794. ))
  18795. characterMakers.push(() => makeCharacter(
  18796. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18797. {
  18798. front: {
  18799. height: math.unit(5 + 7 / 12, "feet"),
  18800. weight: math.unit(140, "lb"),
  18801. name: "Front",
  18802. image: {
  18803. source: "./media/characters/shane/front.svg",
  18804. extra: 304 / 289,
  18805. bottom: 0.005
  18806. }
  18807. },
  18808. },
  18809. [
  18810. {
  18811. name: "Normal",
  18812. height: math.unit(5 + 7 / 12, "feet"),
  18813. default: true
  18814. },
  18815. ]
  18816. ))
  18817. characterMakers.push(() => makeCharacter(
  18818. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18819. {
  18820. front: {
  18821. height: math.unit(5 + 9 / 12, "feet"),
  18822. weight: math.unit(178, "lb"),
  18823. name: "Front",
  18824. image: {
  18825. source: "./media/characters/shin/front.svg",
  18826. extra: 159 / 151,
  18827. bottom: 0.015
  18828. }
  18829. },
  18830. },
  18831. [
  18832. {
  18833. name: "Normal",
  18834. height: math.unit(5 + 9 / 12, "feet"),
  18835. default: true
  18836. },
  18837. ]
  18838. ))
  18839. characterMakers.push(() => makeCharacter(
  18840. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18841. {
  18842. front: {
  18843. height: math.unit(5 + 10 / 12, "feet"),
  18844. weight: math.unit(168, "lb"),
  18845. name: "Front",
  18846. image: {
  18847. source: "./media/characters/xerxes/front.svg",
  18848. extra: 282 / 260,
  18849. bottom: 0.045
  18850. }
  18851. },
  18852. },
  18853. [
  18854. {
  18855. name: "Normal",
  18856. height: math.unit(5 + 10 / 12, "feet"),
  18857. default: true
  18858. },
  18859. ]
  18860. ))
  18861. characterMakers.push(() => makeCharacter(
  18862. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18863. {
  18864. front: {
  18865. height: math.unit(6 + 7 / 12, "feet"),
  18866. weight: math.unit(208, "lb"),
  18867. name: "Front",
  18868. image: {
  18869. source: "./media/characters/chaska/front.svg",
  18870. extra: 332 / 319,
  18871. bottom: 0.015
  18872. }
  18873. },
  18874. },
  18875. [
  18876. {
  18877. name: "Normal",
  18878. height: math.unit(6 + 7 / 12, "feet"),
  18879. default: true
  18880. },
  18881. ]
  18882. ))
  18883. characterMakers.push(() => makeCharacter(
  18884. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18885. {
  18886. front: {
  18887. height: math.unit(5 + 8 / 12, "feet"),
  18888. weight: math.unit(208, "lb"),
  18889. name: "Front",
  18890. image: {
  18891. source: "./media/characters/enuk/front.svg",
  18892. extra: 437 / 406,
  18893. bottom: 0.02
  18894. }
  18895. },
  18896. },
  18897. [
  18898. {
  18899. name: "Normal",
  18900. height: math.unit(5 + 8 / 12, "feet"),
  18901. default: true
  18902. },
  18903. ]
  18904. ))
  18905. characterMakers.push(() => makeCharacter(
  18906. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18907. {
  18908. front: {
  18909. height: math.unit(5 + 10 / 12, "feet"),
  18910. weight: math.unit(252, "lb"),
  18911. name: "Front",
  18912. image: {
  18913. source: "./media/characters/bruun/front.svg",
  18914. extra: 197 / 187,
  18915. bottom: 0.012
  18916. }
  18917. },
  18918. },
  18919. [
  18920. {
  18921. name: "Normal",
  18922. height: math.unit(5 + 10 / 12, "feet"),
  18923. default: true
  18924. },
  18925. ]
  18926. ))
  18927. characterMakers.push(() => makeCharacter(
  18928. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18929. {
  18930. front: {
  18931. height: math.unit(6 + 10 / 12, "feet"),
  18932. weight: math.unit(255, "lb"),
  18933. name: "Front",
  18934. image: {
  18935. source: "./media/characters/alexeev/front.svg",
  18936. extra: 213 / 200,
  18937. bottom: 0.05
  18938. }
  18939. },
  18940. },
  18941. [
  18942. {
  18943. name: "Normal",
  18944. height: math.unit(6 + 10 / 12, "feet"),
  18945. default: true
  18946. },
  18947. ]
  18948. ))
  18949. characterMakers.push(() => makeCharacter(
  18950. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18951. {
  18952. front: {
  18953. height: math.unit(2 + 8 / 12, "feet"),
  18954. weight: math.unit(22, "lb"),
  18955. name: "Front",
  18956. image: {
  18957. source: "./media/characters/evelyn/front.svg",
  18958. extra: 208 / 180
  18959. }
  18960. },
  18961. },
  18962. [
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(2 + 8 / 12, "feet"),
  18966. default: true
  18967. },
  18968. ]
  18969. ))
  18970. characterMakers.push(() => makeCharacter(
  18971. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18972. {
  18973. front: {
  18974. height: math.unit(5 + 9 / 12, "feet"),
  18975. weight: math.unit(139, "lb"),
  18976. name: "Front",
  18977. image: {
  18978. source: "./media/characters/inca/front.svg",
  18979. extra: 294 / 291,
  18980. bottom: 0.03
  18981. }
  18982. },
  18983. },
  18984. [
  18985. {
  18986. name: "Normal",
  18987. height: math.unit(5 + 9 / 12, "feet"),
  18988. default: true
  18989. },
  18990. ]
  18991. ))
  18992. characterMakers.push(() => makeCharacter(
  18993. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18994. {
  18995. front: {
  18996. height: math.unit(5 + 1 / 12, "feet"),
  18997. weight: math.unit(84, "lb"),
  18998. name: "Front",
  18999. image: {
  19000. source: "./media/characters/magdalene/front.svg",
  19001. extra: 293 / 273
  19002. }
  19003. },
  19004. },
  19005. [
  19006. {
  19007. name: "Normal",
  19008. height: math.unit(5 + 1 / 12, "feet"),
  19009. default: true
  19010. },
  19011. ]
  19012. ))
  19013. characterMakers.push(() => makeCharacter(
  19014. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19015. {
  19016. front: {
  19017. height: math.unit(6 + 3 / 12, "feet"),
  19018. weight: math.unit(185, "lb"),
  19019. name: "Front",
  19020. image: {
  19021. source: "./media/characters/mera/front.svg",
  19022. extra: 291 / 277,
  19023. bottom: 0.03
  19024. }
  19025. },
  19026. },
  19027. [
  19028. {
  19029. name: "Normal",
  19030. height: math.unit(6 + 3 / 12, "feet"),
  19031. default: true
  19032. },
  19033. ]
  19034. ))
  19035. characterMakers.push(() => makeCharacter(
  19036. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19037. {
  19038. front: {
  19039. height: math.unit(6 + 7 / 12, "feet"),
  19040. weight: math.unit(160, "lb"),
  19041. name: "Front",
  19042. image: {
  19043. source: "./media/characters/ceres/front.svg",
  19044. extra: 1023 / 950,
  19045. bottom: 0.027
  19046. }
  19047. },
  19048. back: {
  19049. height: math.unit(6 + 7 / 12, "feet"),
  19050. weight: math.unit(160, "lb"),
  19051. name: "Back",
  19052. image: {
  19053. source: "./media/characters/ceres/back.svg",
  19054. extra: 1023 / 950
  19055. }
  19056. },
  19057. },
  19058. [
  19059. {
  19060. name: "Normal",
  19061. height: math.unit(6 + 7 / 12, "feet"),
  19062. default: true
  19063. },
  19064. ]
  19065. ))
  19066. characterMakers.push(() => makeCharacter(
  19067. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19068. {
  19069. front: {
  19070. height: math.unit(5 + 10 / 12, "feet"),
  19071. weight: math.unit(150, "lb"),
  19072. name: "Front",
  19073. image: {
  19074. source: "./media/characters/kris/front.svg",
  19075. extra: 885 / 803,
  19076. bottom: 0.03
  19077. }
  19078. },
  19079. },
  19080. [
  19081. {
  19082. name: "Normal",
  19083. height: math.unit(5 + 10 / 12, "feet"),
  19084. default: true
  19085. },
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19090. {
  19091. front: {
  19092. height: math.unit(7, "feet"),
  19093. weight: math.unit(120, "kg"),
  19094. name: "Front",
  19095. image: {
  19096. source: "./media/characters/taluthus/front.svg",
  19097. extra: 903 / 833,
  19098. bottom: 0.015
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Normal",
  19105. height: math.unit(7, "feet"),
  19106. default: true
  19107. },
  19108. {
  19109. name: "Macro",
  19110. height: math.unit(300, "feet")
  19111. },
  19112. ]
  19113. ))
  19114. characterMakers.push(() => makeCharacter(
  19115. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19116. {
  19117. front: {
  19118. height: math.unit(5 + 9 / 12, "feet"),
  19119. weight: math.unit(145, "lb"),
  19120. name: "Front",
  19121. image: {
  19122. source: "./media/characters/dawn/front.svg",
  19123. extra: 2094 / 2016,
  19124. bottom: 0.025
  19125. }
  19126. },
  19127. back: {
  19128. height: math.unit(5 + 9 / 12, "feet"),
  19129. weight: math.unit(160, "lb"),
  19130. name: "Back",
  19131. image: {
  19132. source: "./media/characters/dawn/back.svg",
  19133. extra: 2112 / 2080,
  19134. bottom: 0.005
  19135. }
  19136. },
  19137. },
  19138. [
  19139. {
  19140. name: "Normal",
  19141. height: math.unit(6 + 7 / 12, "feet"),
  19142. default: true
  19143. },
  19144. ]
  19145. ))
  19146. characterMakers.push(() => makeCharacter(
  19147. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19148. {
  19149. anthro: {
  19150. height: math.unit(8 + 3 / 12, "feet"),
  19151. weight: math.unit(450, "lb"),
  19152. name: "Anthro",
  19153. image: {
  19154. source: "./media/characters/arador/anthro.svg",
  19155. extra: 1835 / 1718,
  19156. bottom: 0.025
  19157. }
  19158. },
  19159. feral: {
  19160. height: math.unit(4, "feet"),
  19161. weight: math.unit(200, "lb"),
  19162. name: "Feral",
  19163. image: {
  19164. source: "./media/characters/arador/feral.svg",
  19165. extra: 1683 / 1514,
  19166. bottom: 0.07
  19167. }
  19168. },
  19169. },
  19170. [
  19171. {
  19172. name: "Normal",
  19173. height: math.unit(8 + 3 / 12, "feet")
  19174. },
  19175. {
  19176. name: "Macro",
  19177. height: math.unit(82.5, "feet"),
  19178. default: true
  19179. },
  19180. ]
  19181. ))
  19182. characterMakers.push(() => makeCharacter(
  19183. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19184. {
  19185. front: {
  19186. height: math.unit(5 + 10 / 12, "feet"),
  19187. weight: math.unit(125, "lb"),
  19188. name: "Front",
  19189. image: {
  19190. source: "./media/characters/dharsi/front.svg",
  19191. extra: 716 / 630,
  19192. bottom: 0.035
  19193. }
  19194. },
  19195. },
  19196. [
  19197. {
  19198. name: "Nano",
  19199. height: math.unit(100, "nm")
  19200. },
  19201. {
  19202. name: "Micro",
  19203. height: math.unit(2, "inches")
  19204. },
  19205. {
  19206. name: "Normal",
  19207. height: math.unit(5 + 10 / 12, "feet"),
  19208. default: true
  19209. },
  19210. {
  19211. name: "Macro",
  19212. height: math.unit(1000, "feet")
  19213. },
  19214. {
  19215. name: "Megamacro",
  19216. height: math.unit(10, "miles")
  19217. },
  19218. {
  19219. name: "Gigamacro",
  19220. height: math.unit(3000, "miles")
  19221. },
  19222. {
  19223. name: "Teramacro",
  19224. height: math.unit(500000, "miles")
  19225. },
  19226. {
  19227. name: "Teramacro+",
  19228. height: math.unit(30, "galaxies")
  19229. },
  19230. ]
  19231. ))
  19232. characterMakers.push(() => makeCharacter(
  19233. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19234. {
  19235. front: {
  19236. height: math.unit(6, "feet"),
  19237. weight: math.unit(150, "lb"),
  19238. name: "Front",
  19239. image: {
  19240. source: "./media/characters/deathy/front.svg",
  19241. extra: 1552 / 1463,
  19242. bottom: 0.025
  19243. }
  19244. },
  19245. side: {
  19246. height: math.unit(6, "feet"),
  19247. weight: math.unit(150, "lb"),
  19248. name: "Side",
  19249. image: {
  19250. source: "./media/characters/deathy/side.svg",
  19251. extra: 1604 / 1455,
  19252. bottom: 0.025
  19253. }
  19254. },
  19255. back: {
  19256. height: math.unit(6, "feet"),
  19257. weight: math.unit(150, "lb"),
  19258. name: "Back",
  19259. image: {
  19260. source: "./media/characters/deathy/back.svg",
  19261. extra: 1580 / 1463,
  19262. bottom: 0.005
  19263. }
  19264. },
  19265. },
  19266. [
  19267. {
  19268. name: "Micro",
  19269. height: math.unit(5, "millimeters")
  19270. },
  19271. {
  19272. name: "Normal",
  19273. height: math.unit(6 + 5 / 12, "feet"),
  19274. default: true
  19275. },
  19276. ]
  19277. ))
  19278. characterMakers.push(() => makeCharacter(
  19279. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19280. {
  19281. front: {
  19282. height: math.unit(16, "feet"),
  19283. weight: math.unit(4000, "lb"),
  19284. name: "Front",
  19285. image: {
  19286. source: "./media/characters/juniper/front.svg",
  19287. bottom: 0.04
  19288. }
  19289. },
  19290. },
  19291. [
  19292. {
  19293. name: "Normal",
  19294. height: math.unit(16, "feet"),
  19295. default: true
  19296. },
  19297. ]
  19298. ))
  19299. characterMakers.push(() => makeCharacter(
  19300. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19301. {
  19302. front: {
  19303. height: math.unit(6, "feet"),
  19304. weight: math.unit(150, "lb"),
  19305. name: "Front",
  19306. image: {
  19307. source: "./media/characters/hipster/front.svg",
  19308. extra: 1312 / 1209,
  19309. bottom: 0.025
  19310. }
  19311. },
  19312. back: {
  19313. height: math.unit(6, "feet"),
  19314. weight: math.unit(150, "lb"),
  19315. name: "Back",
  19316. image: {
  19317. source: "./media/characters/hipster/back.svg",
  19318. extra: 1281 / 1196,
  19319. bottom: 0.01
  19320. }
  19321. },
  19322. },
  19323. [
  19324. {
  19325. name: "Micro",
  19326. height: math.unit(1, "mm")
  19327. },
  19328. {
  19329. name: "Normal",
  19330. height: math.unit(4, "inches"),
  19331. default: true
  19332. },
  19333. {
  19334. name: "Macro",
  19335. height: math.unit(500, "feet")
  19336. },
  19337. {
  19338. name: "Megamacro",
  19339. height: math.unit(1000, "miles")
  19340. },
  19341. ]
  19342. ))
  19343. characterMakers.push(() => makeCharacter(
  19344. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19345. {
  19346. front: {
  19347. height: math.unit(6, "feet"),
  19348. weight: math.unit(150, "lb"),
  19349. name: "Front",
  19350. image: {
  19351. source: "./media/characters/tendirmuldr/front.svg",
  19352. extra: 1878 / 1772,
  19353. bottom: 0.015
  19354. }
  19355. },
  19356. },
  19357. [
  19358. {
  19359. name: "Megamacro",
  19360. height: math.unit(1500, "miles"),
  19361. default: true
  19362. },
  19363. ]
  19364. ))
  19365. characterMakers.push(() => makeCharacter(
  19366. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19367. {
  19368. front: {
  19369. height: math.unit(14, "feet"),
  19370. weight: math.unit(12000, "lb"),
  19371. name: "Front",
  19372. image: {
  19373. source: "./media/characters/mort/front.svg",
  19374. extra: 365 / 318,
  19375. bottom: 0.01
  19376. }
  19377. },
  19378. side: {
  19379. height: math.unit(14, "feet"),
  19380. weight: math.unit(12000, "lb"),
  19381. name: "Side",
  19382. image: {
  19383. source: "./media/characters/mort/side.svg",
  19384. extra: 365 / 318,
  19385. bottom: 0.052
  19386. },
  19387. default: true
  19388. },
  19389. back: {
  19390. height: math.unit(14, "feet"),
  19391. weight: math.unit(12000, "lb"),
  19392. name: "Back",
  19393. image: {
  19394. source: "./media/characters/mort/back.svg",
  19395. extra: 371 / 332,
  19396. bottom: 0.18
  19397. }
  19398. },
  19399. },
  19400. [
  19401. {
  19402. name: "Normal",
  19403. height: math.unit(14, "feet"),
  19404. default: true
  19405. },
  19406. ]
  19407. ))
  19408. characterMakers.push(() => makeCharacter(
  19409. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19410. {
  19411. front: {
  19412. height: math.unit(8, "feet"),
  19413. weight: math.unit(1, "ton"),
  19414. name: "Front",
  19415. image: {
  19416. source: "./media/characters/lycoa/front.svg",
  19417. extra: 1875 / 1789,
  19418. bottom: 0.022
  19419. }
  19420. },
  19421. back: {
  19422. height: math.unit(8, "feet"),
  19423. weight: math.unit(1, "ton"),
  19424. name: "Back",
  19425. image: {
  19426. source: "./media/characters/lycoa/back.svg",
  19427. extra: 1835 / 1781,
  19428. bottom: 0.03
  19429. }
  19430. },
  19431. head: {
  19432. height: math.unit(2.1, "feet"),
  19433. name: "Head",
  19434. image: {
  19435. source: "./media/characters/lycoa/head.svg"
  19436. }
  19437. },
  19438. tailmaw: {
  19439. height: math.unit(1.9, "feet"),
  19440. name: "Tailmaw",
  19441. image: {
  19442. source: "./media/characters/lycoa/tailmaw.svg"
  19443. }
  19444. },
  19445. tentacles: {
  19446. height: math.unit(2.1, "feet"),
  19447. name: "Tentacles",
  19448. image: {
  19449. source: "./media/characters/lycoa/tentacles.svg"
  19450. }
  19451. },
  19452. dick: {
  19453. height: math.unit(1.73, "feet"),
  19454. name: "Dick",
  19455. image: {
  19456. source: "./media/characters/lycoa/dick.svg"
  19457. }
  19458. },
  19459. },
  19460. [
  19461. {
  19462. name: "Normal",
  19463. height: math.unit(8, "feet"),
  19464. default: true
  19465. },
  19466. {
  19467. name: "Macro",
  19468. height: math.unit(30, "feet")
  19469. },
  19470. ]
  19471. ))
  19472. characterMakers.push(() => makeCharacter(
  19473. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19474. {
  19475. front: {
  19476. height: math.unit(4 + 2 / 12, "feet"),
  19477. weight: math.unit(70, "lb"),
  19478. name: "Front",
  19479. image: {
  19480. source: "./media/characters/naldara/front.svg",
  19481. extra: 841 / 720,
  19482. bottom: 0.04
  19483. }
  19484. },
  19485. naga: {
  19486. height: math.unit(23, "feet"),
  19487. weight: math.unit(15000, "kg"),
  19488. name: "Naga",
  19489. image: {
  19490. source: "./media/characters/naldara/naga.svg",
  19491. extra: 3290 / 2959,
  19492. bottom: 124 / 3432
  19493. }
  19494. },
  19495. },
  19496. [
  19497. {
  19498. name: "Normal",
  19499. height: math.unit(4 + 2 / 12, "feet"),
  19500. default: true
  19501. },
  19502. ]
  19503. ))
  19504. characterMakers.push(() => makeCharacter(
  19505. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19506. {
  19507. front: {
  19508. height: math.unit(13 + 7 / 12, "feet"),
  19509. weight: math.unit(1500, "lb"),
  19510. name: "Front",
  19511. image: {
  19512. source: "./media/characters/briar/front.svg",
  19513. extra: 626 / 596,
  19514. bottom: 0.08
  19515. }
  19516. },
  19517. },
  19518. [
  19519. {
  19520. name: "Normal",
  19521. height: math.unit(13 + 7 / 12, "feet"),
  19522. default: true
  19523. },
  19524. ]
  19525. ))
  19526. characterMakers.push(() => makeCharacter(
  19527. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19528. {
  19529. side: {
  19530. height: math.unit(10, "feet"),
  19531. weight: math.unit(500, "lb"),
  19532. name: "Side",
  19533. image: {
  19534. source: "./media/characters/vanguard/side.svg",
  19535. extra: 502 / 425,
  19536. bottom: 0.087
  19537. }
  19538. },
  19539. },
  19540. [
  19541. {
  19542. name: "Normal",
  19543. height: math.unit(10, "feet"),
  19544. default: true
  19545. },
  19546. ]
  19547. ))
  19548. characterMakers.push(() => makeCharacter(
  19549. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19550. {
  19551. front: {
  19552. height: math.unit(7.5, "feet"),
  19553. weight: math.unit(2, "lb"),
  19554. name: "Front",
  19555. image: {
  19556. source: "./media/characters/artemis/front.svg",
  19557. extra: 1192 / 1075,
  19558. bottom: 0.07
  19559. }
  19560. },
  19561. frontNsfw: {
  19562. height: math.unit(7.5, "feet"),
  19563. weight: math.unit(2, "lb"),
  19564. name: "Front (NSFW)",
  19565. image: {
  19566. source: "./media/characters/artemis/front-nsfw.svg",
  19567. extra: 1192 / 1075,
  19568. bottom: 0.07
  19569. }
  19570. },
  19571. frontNsfwer: {
  19572. height: math.unit(7.5, "feet"),
  19573. weight: math.unit(2, "lb"),
  19574. name: "Front (NSFW-er)",
  19575. image: {
  19576. source: "./media/characters/artemis/front-nsfwer.svg",
  19577. extra: 1192 / 1075,
  19578. bottom: 0.07
  19579. }
  19580. },
  19581. side: {
  19582. height: math.unit(7.5, "feet"),
  19583. weight: math.unit(2, "lb"),
  19584. name: "Side",
  19585. image: {
  19586. source: "./media/characters/artemis/side.svg",
  19587. extra: 1192 / 1075,
  19588. bottom: 0.07
  19589. }
  19590. },
  19591. sideNsfw: {
  19592. height: math.unit(7.5, "feet"),
  19593. weight: math.unit(2, "lb"),
  19594. name: "Side (NSFW)",
  19595. image: {
  19596. source: "./media/characters/artemis/side-nsfw.svg",
  19597. extra: 1192 / 1075,
  19598. bottom: 0.07
  19599. }
  19600. },
  19601. sideNsfwer: {
  19602. height: math.unit(7.5, "feet"),
  19603. weight: math.unit(2, "lb"),
  19604. name: "Side (NSFW-er)",
  19605. image: {
  19606. source: "./media/characters/artemis/side-nsfwer.svg",
  19607. extra: 1192 / 1075,
  19608. bottom: 0.07
  19609. }
  19610. },
  19611. maw: {
  19612. height: math.unit(1.1, "feet"),
  19613. name: "Maw",
  19614. image: {
  19615. source: "./media/characters/artemis/maw.svg"
  19616. }
  19617. },
  19618. stomach: {
  19619. height: math.unit(0.95, "feet"),
  19620. name: "Stomach",
  19621. image: {
  19622. source: "./media/characters/artemis/stomach.svg"
  19623. }
  19624. },
  19625. dickCanine: {
  19626. height: math.unit(1, "feet"),
  19627. name: "Dick (Canine)",
  19628. image: {
  19629. source: "./media/characters/artemis/dick-canine.svg"
  19630. }
  19631. },
  19632. dickEquine: {
  19633. height: math.unit(0.85, "feet"),
  19634. name: "Dick (Equine)",
  19635. image: {
  19636. source: "./media/characters/artemis/dick-equine.svg"
  19637. }
  19638. },
  19639. dickExotic: {
  19640. height: math.unit(0.85, "feet"),
  19641. name: "Dick (Exotic)",
  19642. image: {
  19643. source: "./media/characters/artemis/dick-exotic.svg"
  19644. }
  19645. },
  19646. },
  19647. [
  19648. {
  19649. name: "Normal",
  19650. height: math.unit(7.5, "feet"),
  19651. default: true
  19652. },
  19653. {
  19654. name: "Enlarged",
  19655. height: math.unit(12, "feet")
  19656. },
  19657. ]
  19658. ))
  19659. characterMakers.push(() => makeCharacter(
  19660. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19661. {
  19662. front: {
  19663. height: math.unit(5 + 3 / 12, "feet"),
  19664. weight: math.unit(160, "lb"),
  19665. name: "Front",
  19666. image: {
  19667. source: "./media/characters/kira/front.svg",
  19668. extra: 906 / 786,
  19669. bottom: 0.01
  19670. }
  19671. },
  19672. back: {
  19673. height: math.unit(5 + 3 / 12, "feet"),
  19674. weight: math.unit(160, "lb"),
  19675. name: "Back",
  19676. image: {
  19677. source: "./media/characters/kira/back.svg",
  19678. extra: 882 / 757,
  19679. bottom: 0.005
  19680. }
  19681. },
  19682. frontDressed: {
  19683. height: math.unit(5 + 3 / 12, "feet"),
  19684. weight: math.unit(160, "lb"),
  19685. name: "Front (Dressed)",
  19686. image: {
  19687. source: "./media/characters/kira/front-dressed.svg",
  19688. extra: 906 / 786,
  19689. bottom: 0.01
  19690. }
  19691. },
  19692. beans: {
  19693. height: math.unit(0.92, "feet"),
  19694. name: "Beans",
  19695. image: {
  19696. source: "./media/characters/kira/beans.svg"
  19697. }
  19698. },
  19699. },
  19700. [
  19701. {
  19702. name: "Normal",
  19703. height: math.unit(5 + 3 / 12, "feet"),
  19704. default: true
  19705. },
  19706. ]
  19707. ))
  19708. characterMakers.push(() => makeCharacter(
  19709. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19710. {
  19711. front: {
  19712. height: math.unit(5 + 4 / 12, "feet"),
  19713. weight: math.unit(145, "lb"),
  19714. name: "Front",
  19715. image: {
  19716. source: "./media/characters/scramble/front.svg",
  19717. extra: 763 / 727,
  19718. bottom: 0.05
  19719. }
  19720. },
  19721. back: {
  19722. height: math.unit(5 + 4 / 12, "feet"),
  19723. weight: math.unit(145, "lb"),
  19724. name: "Back",
  19725. image: {
  19726. source: "./media/characters/scramble/back.svg",
  19727. extra: 826 / 737,
  19728. bottom: 0.002
  19729. }
  19730. },
  19731. },
  19732. [
  19733. {
  19734. name: "Normal",
  19735. height: math.unit(5 + 4 / 12, "feet"),
  19736. default: true
  19737. },
  19738. ]
  19739. ))
  19740. characterMakers.push(() => makeCharacter(
  19741. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19742. {
  19743. side: {
  19744. height: math.unit(6 + 2 / 12, "feet"),
  19745. weight: math.unit(190, "lb"),
  19746. name: "Side",
  19747. image: {
  19748. source: "./media/characters/biscuit/side.svg",
  19749. extra: 858 / 791,
  19750. bottom: 0.044
  19751. }
  19752. },
  19753. },
  19754. [
  19755. {
  19756. name: "Normal",
  19757. height: math.unit(6 + 2 / 12, "feet"),
  19758. default: true
  19759. },
  19760. ]
  19761. ))
  19762. characterMakers.push(() => makeCharacter(
  19763. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19764. {
  19765. front: {
  19766. height: math.unit(5 + 2 / 12, "feet"),
  19767. weight: math.unit(120, "lb"),
  19768. name: "Front",
  19769. image: {
  19770. source: "./media/characters/poffin/front.svg",
  19771. extra: 786 / 680,
  19772. bottom: 0.005
  19773. }
  19774. },
  19775. },
  19776. [
  19777. {
  19778. name: "Normal",
  19779. height: math.unit(5 + 2 / 12, "feet"),
  19780. default: true
  19781. },
  19782. ]
  19783. ))
  19784. characterMakers.push(() => makeCharacter(
  19785. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19786. {
  19787. front: {
  19788. height: math.unit(6 + 3 / 12, "feet"),
  19789. weight: math.unit(519, "lb"),
  19790. name: "Front",
  19791. image: {
  19792. source: "./media/characters/dhari/front.svg",
  19793. extra: 1048 / 946,
  19794. bottom: 0.015
  19795. }
  19796. },
  19797. back: {
  19798. height: math.unit(6 + 3 / 12, "feet"),
  19799. weight: math.unit(519, "lb"),
  19800. name: "Back",
  19801. image: {
  19802. source: "./media/characters/dhari/back.svg",
  19803. extra: 1048 / 931,
  19804. bottom: 0.005
  19805. }
  19806. },
  19807. frontDressed: {
  19808. height: math.unit(6 + 3 / 12, "feet"),
  19809. weight: math.unit(519, "lb"),
  19810. name: "Front (Dressed)",
  19811. image: {
  19812. source: "./media/characters/dhari/front-dressed.svg",
  19813. extra: 1713 / 1546,
  19814. bottom: 0.02
  19815. }
  19816. },
  19817. backDressed: {
  19818. height: math.unit(6 + 3 / 12, "feet"),
  19819. weight: math.unit(519, "lb"),
  19820. name: "Back (Dressed)",
  19821. image: {
  19822. source: "./media/characters/dhari/back-dressed.svg",
  19823. extra: 1699 / 1537,
  19824. bottom: 0.01
  19825. }
  19826. },
  19827. maw: {
  19828. height: math.unit(0.95, "feet"),
  19829. name: "Maw",
  19830. image: {
  19831. source: "./media/characters/dhari/maw.svg"
  19832. }
  19833. },
  19834. wereFront: {
  19835. height: math.unit(12 + 8 / 12, "feet"),
  19836. weight: math.unit(4000, "lb"),
  19837. name: "Front (Were)",
  19838. image: {
  19839. source: "./media/characters/dhari/were-front.svg",
  19840. extra: 1065 / 969,
  19841. bottom: 0.015
  19842. }
  19843. },
  19844. wereBack: {
  19845. height: math.unit(12 + 8 / 12, "feet"),
  19846. weight: math.unit(4000, "lb"),
  19847. name: "Back (Were)",
  19848. image: {
  19849. source: "./media/characters/dhari/were-back.svg",
  19850. extra: 1065 / 969,
  19851. bottom: 0.012
  19852. }
  19853. },
  19854. wereMaw: {
  19855. height: math.unit(0.625, "meters"),
  19856. name: "Maw (Were)",
  19857. image: {
  19858. source: "./media/characters/dhari/were-maw.svg"
  19859. }
  19860. },
  19861. },
  19862. [
  19863. {
  19864. name: "Normal",
  19865. height: math.unit(6 + 3 / 12, "feet"),
  19866. default: true
  19867. },
  19868. ]
  19869. ))
  19870. characterMakers.push(() => makeCharacter(
  19871. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19872. {
  19873. anthro: {
  19874. height: math.unit(5 + 7 / 12, "feet"),
  19875. weight: math.unit(175, "lb"),
  19876. name: "Anthro",
  19877. image: {
  19878. source: "./media/characters/rena-dyne/anthro.svg",
  19879. extra: 1849 / 1785,
  19880. bottom: 0.005
  19881. }
  19882. },
  19883. taur: {
  19884. height: math.unit(15 + 6 / 12, "feet"),
  19885. weight: math.unit(8000, "lb"),
  19886. name: "Taur",
  19887. image: {
  19888. source: "./media/characters/rena-dyne/taur.svg",
  19889. extra: 2315 / 2234,
  19890. bottom: 0.033
  19891. }
  19892. },
  19893. },
  19894. [
  19895. {
  19896. name: "Normal",
  19897. height: math.unit(5 + 7 / 12, "feet"),
  19898. default: true
  19899. },
  19900. ]
  19901. ))
  19902. characterMakers.push(() => makeCharacter(
  19903. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19904. {
  19905. front: {
  19906. height: math.unit(8, "feet"),
  19907. weight: math.unit(600, "lb"),
  19908. name: "Front",
  19909. image: {
  19910. source: "./media/characters/weremeep/front.svg",
  19911. extra: 967 / 862,
  19912. bottom: 0.01
  19913. }
  19914. },
  19915. },
  19916. [
  19917. {
  19918. name: "Normal",
  19919. height: math.unit(8, "feet"),
  19920. default: true
  19921. },
  19922. {
  19923. name: "Lorg",
  19924. height: math.unit(12, "feet")
  19925. },
  19926. {
  19927. name: "Oh Lawd She Comin'",
  19928. height: math.unit(20, "feet")
  19929. },
  19930. ]
  19931. ))
  19932. characterMakers.push(() => makeCharacter(
  19933. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19934. {
  19935. front: {
  19936. height: math.unit(4, "feet"),
  19937. weight: math.unit(90, "lb"),
  19938. name: "Front",
  19939. image: {
  19940. source: "./media/characters/reza/front.svg",
  19941. extra: 1183 / 1111,
  19942. bottom: 0.017
  19943. }
  19944. },
  19945. back: {
  19946. height: math.unit(4, "feet"),
  19947. weight: math.unit(90, "lb"),
  19948. name: "Back",
  19949. image: {
  19950. source: "./media/characters/reza/back.svg",
  19951. extra: 1183 / 1111,
  19952. bottom: 0.01
  19953. }
  19954. },
  19955. drake: {
  19956. height: math.unit(30, "feet"),
  19957. weight: math.unit(246960, "lb"),
  19958. name: "Drake",
  19959. image: {
  19960. source: "./media/characters/reza/drake.svg",
  19961. extra: 2350 / 2024,
  19962. bottom: 60.7 / 2403
  19963. }
  19964. },
  19965. },
  19966. [
  19967. {
  19968. name: "Normal",
  19969. height: math.unit(4, "feet"),
  19970. default: true
  19971. },
  19972. ]
  19973. ))
  19974. characterMakers.push(() => makeCharacter(
  19975. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19976. {
  19977. side: {
  19978. height: math.unit(15, "feet"),
  19979. weight: math.unit(14, "tons"),
  19980. name: "Side",
  19981. image: {
  19982. source: "./media/characters/athea/side.svg",
  19983. extra: 960 / 540,
  19984. bottom: 0.003
  19985. }
  19986. },
  19987. sitting: {
  19988. height: math.unit(6 * 2.85, "feet"),
  19989. weight: math.unit(14, "tons"),
  19990. name: "Sitting",
  19991. image: {
  19992. source: "./media/characters/athea/sitting.svg",
  19993. extra: 621 / 581,
  19994. bottom: 0.075
  19995. }
  19996. },
  19997. maw: {
  19998. height: math.unit(7.59498031496063, "feet"),
  19999. name: "Maw",
  20000. image: {
  20001. source: "./media/characters/athea/maw.svg"
  20002. }
  20003. },
  20004. },
  20005. [
  20006. {
  20007. name: "Lap Cat",
  20008. height: math.unit(2.5, "feet")
  20009. },
  20010. {
  20011. name: "Minimacro",
  20012. height: math.unit(15, "feet"),
  20013. default: true
  20014. },
  20015. {
  20016. name: "Macro",
  20017. height: math.unit(120, "feet")
  20018. },
  20019. {
  20020. name: "Macro+",
  20021. height: math.unit(640, "feet")
  20022. },
  20023. {
  20024. name: "Colossus",
  20025. height: math.unit(2.2, "miles")
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20031. {
  20032. front: {
  20033. height: math.unit(8 + 8 / 12, "feet"),
  20034. weight: math.unit(130, "kg"),
  20035. name: "Front",
  20036. image: {
  20037. source: "./media/characters/seroko/front.svg",
  20038. extra: 1385 / 1280,
  20039. bottom: 0.025
  20040. }
  20041. },
  20042. back: {
  20043. height: math.unit(8 + 8 / 12, "feet"),
  20044. weight: math.unit(130, "kg"),
  20045. name: "Back",
  20046. image: {
  20047. source: "./media/characters/seroko/back.svg",
  20048. extra: 1369 / 1238,
  20049. bottom: 0.018
  20050. }
  20051. },
  20052. frontDressed: {
  20053. height: math.unit(8 + 8 / 12, "feet"),
  20054. weight: math.unit(130, "kg"),
  20055. name: "Front (Dressed)",
  20056. image: {
  20057. source: "./media/characters/seroko/front-dressed.svg",
  20058. extra: 1366 / 1275,
  20059. bottom: 0.03
  20060. }
  20061. },
  20062. },
  20063. [
  20064. {
  20065. name: "Normal",
  20066. height: math.unit(8 + 8 / 12, "feet"),
  20067. default: true
  20068. },
  20069. ]
  20070. ))
  20071. characterMakers.push(() => makeCharacter(
  20072. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20073. {
  20074. front: {
  20075. height: math.unit(5.5, "feet"),
  20076. weight: math.unit(160, "lb"),
  20077. name: "Front",
  20078. image: {
  20079. source: "./media/characters/quatzi/front.svg",
  20080. extra: 2346 / 2242,
  20081. bottom: 0.015
  20082. }
  20083. },
  20084. },
  20085. [
  20086. {
  20087. name: "Normal",
  20088. height: math.unit(5.5, "feet"),
  20089. default: true
  20090. },
  20091. {
  20092. name: "Big",
  20093. height: math.unit(7.7, "feet")
  20094. },
  20095. ]
  20096. ))
  20097. characterMakers.push(() => makeCharacter(
  20098. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20099. {
  20100. front: {
  20101. height: math.unit(5 + 11 / 12, "feet"),
  20102. weight: math.unit(180, "lb"),
  20103. name: "Front",
  20104. image: {
  20105. source: "./media/characters/sen/front.svg",
  20106. extra: 1321 / 1254,
  20107. bottom: 0.015
  20108. }
  20109. },
  20110. side: {
  20111. height: math.unit(5 + 11 / 12, "feet"),
  20112. weight: math.unit(180, "lb"),
  20113. name: "Side",
  20114. image: {
  20115. source: "./media/characters/sen/side.svg",
  20116. extra: 1321 / 1254,
  20117. bottom: 0.007
  20118. }
  20119. },
  20120. back: {
  20121. height: math.unit(5 + 11 / 12, "feet"),
  20122. weight: math.unit(180, "lb"),
  20123. name: "Back",
  20124. image: {
  20125. source: "./media/characters/sen/back.svg",
  20126. extra: 1321 / 1254
  20127. }
  20128. },
  20129. },
  20130. [
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(5 + 11 / 12, "feet"),
  20134. default: true
  20135. },
  20136. ]
  20137. ))
  20138. characterMakers.push(() => makeCharacter(
  20139. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20140. {
  20141. front: {
  20142. height: math.unit(166.6, "cm"),
  20143. weight: math.unit(66.6, "kg"),
  20144. name: "Front",
  20145. image: {
  20146. source: "./media/characters/fruity/front.svg",
  20147. extra: 1510 / 1386,
  20148. bottom: 0.04
  20149. }
  20150. },
  20151. back: {
  20152. height: math.unit(166.6, "cm"),
  20153. weight: math.unit(66.6, "lb"),
  20154. name: "Back",
  20155. image: {
  20156. source: "./media/characters/fruity/back.svg",
  20157. extra: 1563 / 1435,
  20158. bottom: 0.005
  20159. }
  20160. },
  20161. },
  20162. [
  20163. {
  20164. name: "Normal",
  20165. height: math.unit(166.6, "cm"),
  20166. default: true
  20167. },
  20168. {
  20169. name: "Demonic",
  20170. height: math.unit(166.6, "feet")
  20171. },
  20172. ]
  20173. ))
  20174. characterMakers.push(() => makeCharacter(
  20175. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20176. {
  20177. side: {
  20178. height: math.unit(10, "feet"),
  20179. weight: math.unit(500, "lb"),
  20180. name: "Side",
  20181. image: {
  20182. source: "./media/characters/zost/side.svg",
  20183. extra: 966 / 880,
  20184. bottom: 0.075
  20185. }
  20186. },
  20187. mawFront: {
  20188. height: math.unit(1.08, "meters"),
  20189. name: "Maw (Front)",
  20190. image: {
  20191. source: "./media/characters/zost/maw-front.svg"
  20192. }
  20193. },
  20194. mawSide: {
  20195. height: math.unit(2.66, "feet"),
  20196. name: "Maw (Side)",
  20197. image: {
  20198. source: "./media/characters/zost/maw-side.svg"
  20199. }
  20200. },
  20201. },
  20202. [
  20203. {
  20204. name: "Normal",
  20205. height: math.unit(10, "feet"),
  20206. default: true
  20207. },
  20208. ]
  20209. ))
  20210. characterMakers.push(() => makeCharacter(
  20211. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20212. {
  20213. front: {
  20214. height: math.unit(5 + 4 / 12, "feet"),
  20215. weight: math.unit(120, "lb"),
  20216. name: "Front",
  20217. image: {
  20218. source: "./media/characters/luci/front.svg",
  20219. extra: 1985 / 1884,
  20220. bottom: 0.04
  20221. }
  20222. },
  20223. back: {
  20224. height: math.unit(5 + 4 / 12, "feet"),
  20225. weight: math.unit(120, "lb"),
  20226. name: "Back",
  20227. image: {
  20228. source: "./media/characters/luci/back.svg",
  20229. extra: 1892 / 1791,
  20230. bottom: 0.002
  20231. }
  20232. },
  20233. },
  20234. [
  20235. {
  20236. name: "Normal",
  20237. height: math.unit(5 + 4 / 12, "feet"),
  20238. default: true
  20239. },
  20240. ]
  20241. ))
  20242. characterMakers.push(() => makeCharacter(
  20243. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20244. {
  20245. front: {
  20246. height: math.unit(1500, "feet"),
  20247. weight: math.unit(3.8e6, "tons"),
  20248. name: "Front",
  20249. image: {
  20250. source: "./media/characters/2th/front.svg",
  20251. extra: 3489 / 3350,
  20252. bottom: 0.1
  20253. }
  20254. },
  20255. foot: {
  20256. height: math.unit(461, "feet"),
  20257. name: "Foot",
  20258. image: {
  20259. source: "./media/characters/2th/foot.svg"
  20260. }
  20261. },
  20262. },
  20263. [
  20264. {
  20265. name: "\"Micro\"",
  20266. height: math.unit(15 + 7 / 12, "feet")
  20267. },
  20268. {
  20269. name: "Normal",
  20270. height: math.unit(1500, "feet"),
  20271. default: true
  20272. },
  20273. {
  20274. name: "Macro",
  20275. height: math.unit(5000, "feet")
  20276. },
  20277. {
  20278. name: "Megamacro",
  20279. height: math.unit(15, "miles")
  20280. },
  20281. {
  20282. name: "Gigamacro",
  20283. height: math.unit(4000, "miles")
  20284. },
  20285. {
  20286. name: "Galactic",
  20287. height: math.unit(50, "AU")
  20288. },
  20289. ]
  20290. ))
  20291. characterMakers.push(() => makeCharacter(
  20292. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20293. {
  20294. front: {
  20295. height: math.unit(5 + 6 / 12, "feet"),
  20296. weight: math.unit(220, "lb"),
  20297. name: "Front",
  20298. image: {
  20299. source: "./media/characters/amethyst/front.svg",
  20300. extra: 2078 / 2040,
  20301. bottom: 0.045
  20302. }
  20303. },
  20304. back: {
  20305. height: math.unit(5 + 6 / 12, "feet"),
  20306. weight: math.unit(220, "lb"),
  20307. name: "Back",
  20308. image: {
  20309. source: "./media/characters/amethyst/back.svg",
  20310. extra: 2021 / 1989,
  20311. bottom: 0.02
  20312. }
  20313. },
  20314. },
  20315. [
  20316. {
  20317. name: "Normal",
  20318. height: math.unit(5 + 6 / 12, "feet"),
  20319. default: true
  20320. },
  20321. ]
  20322. ))
  20323. characterMakers.push(() => makeCharacter(
  20324. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20325. {
  20326. front: {
  20327. height: math.unit(4 + 11 / 12, "feet"),
  20328. weight: math.unit(120, "lb"),
  20329. name: "Front",
  20330. image: {
  20331. source: "./media/characters/yumi-akiyama/front.svg",
  20332. extra: 1327 / 1235,
  20333. bottom: 0.02
  20334. }
  20335. },
  20336. back: {
  20337. height: math.unit(4 + 11 / 12, "feet"),
  20338. weight: math.unit(120, "lb"),
  20339. name: "Back",
  20340. image: {
  20341. source: "./media/characters/yumi-akiyama/back.svg",
  20342. extra: 1287 / 1245,
  20343. bottom: 0.002
  20344. }
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Galactic",
  20350. height: math.unit(50, "galaxies"),
  20351. default: true
  20352. },
  20353. {
  20354. name: "Universal",
  20355. height: math.unit(100, "universes")
  20356. },
  20357. ]
  20358. ))
  20359. characterMakers.push(() => makeCharacter(
  20360. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20361. {
  20362. front: {
  20363. height: math.unit(8, "feet"),
  20364. weight: math.unit(500, "lb"),
  20365. name: "Front",
  20366. image: {
  20367. source: "./media/characters/rifter-yrmori/front.svg",
  20368. extra: 1180 / 1125,
  20369. bottom: 0.02
  20370. }
  20371. },
  20372. back: {
  20373. height: math.unit(8, "feet"),
  20374. weight: math.unit(500, "lb"),
  20375. name: "Back",
  20376. image: {
  20377. source: "./media/characters/rifter-yrmori/back.svg",
  20378. extra: 1190 / 1145,
  20379. bottom: 0.001
  20380. }
  20381. },
  20382. wings: {
  20383. height: math.unit(7.75, "feet"),
  20384. weight: math.unit(500, "lb"),
  20385. name: "Wings",
  20386. image: {
  20387. source: "./media/characters/rifter-yrmori/wings.svg",
  20388. extra: 1357 / 1285
  20389. }
  20390. },
  20391. maw: {
  20392. height: math.unit(0.8, "feet"),
  20393. name: "Maw",
  20394. image: {
  20395. source: "./media/characters/rifter-yrmori/maw.svg"
  20396. }
  20397. },
  20398. mawfront: {
  20399. height: math.unit(1.45, "feet"),
  20400. name: "Maw (Front)",
  20401. image: {
  20402. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20403. }
  20404. },
  20405. },
  20406. [
  20407. {
  20408. name: "Normal",
  20409. height: math.unit(8, "feet"),
  20410. default: true
  20411. },
  20412. {
  20413. name: "Macro",
  20414. height: math.unit(42, "meters")
  20415. },
  20416. ]
  20417. ))
  20418. characterMakers.push(() => makeCharacter(
  20419. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20420. {
  20421. were: {
  20422. height: math.unit(25 + 6 / 12, "feet"),
  20423. weight: math.unit(10000, "lb"),
  20424. name: "Were",
  20425. image: {
  20426. source: "./media/characters/tahajin/were.svg",
  20427. extra: 801 / 770,
  20428. bottom: 0.042
  20429. }
  20430. },
  20431. aquatic: {
  20432. height: math.unit(6 + 4 / 12, "feet"),
  20433. weight: math.unit(160, "lb"),
  20434. name: "Aquatic",
  20435. image: {
  20436. source: "./media/characters/tahajin/aquatic.svg",
  20437. extra: 572 / 542,
  20438. bottom: 0.04
  20439. }
  20440. },
  20441. chow: {
  20442. height: math.unit(8 + 11 / 12, "feet"),
  20443. weight: math.unit(450, "lb"),
  20444. name: "Chow",
  20445. image: {
  20446. source: "./media/characters/tahajin/chow.svg",
  20447. extra: 660 / 640,
  20448. bottom: 0.015
  20449. }
  20450. },
  20451. demiNaga: {
  20452. height: math.unit(6 + 8 / 12, "feet"),
  20453. weight: math.unit(300, "lb"),
  20454. name: "Demi Naga",
  20455. image: {
  20456. source: "./media/characters/tahajin/demi-naga.svg",
  20457. extra: 643 / 615,
  20458. bottom: 0.1
  20459. }
  20460. },
  20461. data: {
  20462. height: math.unit(5, "inches"),
  20463. weight: math.unit(0.1, "lb"),
  20464. name: "Data",
  20465. image: {
  20466. source: "./media/characters/tahajin/data.svg"
  20467. }
  20468. },
  20469. fluu: {
  20470. height: math.unit(5 + 7 / 12, "feet"),
  20471. weight: math.unit(140, "lb"),
  20472. name: "Fluu",
  20473. image: {
  20474. source: "./media/characters/tahajin/fluu.svg",
  20475. extra: 628 / 592,
  20476. bottom: 0.02
  20477. }
  20478. },
  20479. starWarrior: {
  20480. height: math.unit(4 + 5 / 12, "feet"),
  20481. weight: math.unit(50, "lb"),
  20482. name: "Star Warrior",
  20483. image: {
  20484. source: "./media/characters/tahajin/star-warrior.svg"
  20485. }
  20486. },
  20487. },
  20488. [
  20489. {
  20490. name: "Normal",
  20491. height: math.unit(25 + 6 / 12, "feet"),
  20492. default: true
  20493. },
  20494. ]
  20495. ))
  20496. characterMakers.push(() => makeCharacter(
  20497. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20498. {
  20499. front: {
  20500. height: math.unit(8, "feet"),
  20501. weight: math.unit(350, "lb"),
  20502. name: "Front",
  20503. image: {
  20504. source: "./media/characters/gabira/front.svg",
  20505. extra: 608 / 580,
  20506. bottom: 0.03
  20507. }
  20508. },
  20509. back: {
  20510. height: math.unit(8, "feet"),
  20511. weight: math.unit(350, "lb"),
  20512. name: "Back",
  20513. image: {
  20514. source: "./media/characters/gabira/back.svg",
  20515. extra: 608 / 580,
  20516. bottom: 0.03
  20517. }
  20518. },
  20519. },
  20520. [
  20521. {
  20522. name: "Normal",
  20523. height: math.unit(8, "feet"),
  20524. default: true
  20525. },
  20526. ]
  20527. ))
  20528. characterMakers.push(() => makeCharacter(
  20529. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20530. {
  20531. front: {
  20532. height: math.unit(5 + 3 / 12, "feet"),
  20533. weight: math.unit(137, "lb"),
  20534. name: "Front",
  20535. image: {
  20536. source: "./media/characters/sasha-katraine/front.svg",
  20537. bottom: 0.045
  20538. }
  20539. },
  20540. },
  20541. [
  20542. {
  20543. name: "Micro",
  20544. height: math.unit(5, "inches")
  20545. },
  20546. {
  20547. name: "Normal",
  20548. height: math.unit(5 + 3 / 12, "feet"),
  20549. default: true
  20550. },
  20551. ]
  20552. ))
  20553. characterMakers.push(() => makeCharacter(
  20554. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20555. {
  20556. side: {
  20557. height: math.unit(4, "inches"),
  20558. weight: math.unit(200, "grams"),
  20559. name: "Side",
  20560. image: {
  20561. source: "./media/characters/der/side.svg",
  20562. extra: 719 / 400,
  20563. bottom: 30.6 / 749.9187
  20564. }
  20565. },
  20566. },
  20567. [
  20568. {
  20569. name: "Micro",
  20570. height: math.unit(4, "inches"),
  20571. default: true
  20572. },
  20573. ]
  20574. ))
  20575. characterMakers.push(() => makeCharacter(
  20576. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20577. {
  20578. side: {
  20579. height: math.unit(30, "meters"),
  20580. weight: math.unit(700, "tonnes"),
  20581. name: "Side",
  20582. image: {
  20583. source: "./media/characters/fixerdragon/side.svg",
  20584. extra: (1293.0514 - 116.03) / 1106.86,
  20585. bottom: 116.03 / 1293.0514
  20586. }
  20587. },
  20588. },
  20589. [
  20590. {
  20591. name: "Planck",
  20592. height: math.unit(1.6e-35, "meters")
  20593. },
  20594. {
  20595. name: "Micro",
  20596. height: math.unit(0.4, "meters")
  20597. },
  20598. {
  20599. name: "Normal",
  20600. height: math.unit(30, "meters"),
  20601. default: true
  20602. },
  20603. {
  20604. name: "Megamacro",
  20605. height: math.unit(1.2, "megameters")
  20606. },
  20607. {
  20608. name: "Teramacro",
  20609. height: math.unit(130, "terameters")
  20610. },
  20611. {
  20612. name: "Yottamacro",
  20613. height: math.unit(6200, "yottameters")
  20614. },
  20615. ]
  20616. ));
  20617. characterMakers.push(() => makeCharacter(
  20618. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20619. {
  20620. front: {
  20621. height: math.unit(8, "feet"),
  20622. weight: math.unit(250, "lb"),
  20623. name: "Front",
  20624. image: {
  20625. source: "./media/characters/kite/front.svg",
  20626. extra: 2796 / 2659,
  20627. bottom: 0.002
  20628. }
  20629. },
  20630. },
  20631. [
  20632. {
  20633. name: "Normal",
  20634. height: math.unit(8, "feet"),
  20635. default: true
  20636. },
  20637. {
  20638. name: "Macro",
  20639. height: math.unit(360, "feet")
  20640. },
  20641. {
  20642. name: "Megamacro",
  20643. height: math.unit(1500, "feet")
  20644. },
  20645. ]
  20646. ))
  20647. characterMakers.push(() => makeCharacter(
  20648. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20649. {
  20650. front: {
  20651. height: math.unit(5 + 10 / 12, "feet"),
  20652. weight: math.unit(150, "lb"),
  20653. name: "Front",
  20654. image: {
  20655. source: "./media/characters/poojawa-vynar/front.svg",
  20656. extra: (1506.1547 - 55) / 1356.6,
  20657. bottom: 55 / 1506.1547
  20658. }
  20659. },
  20660. frontTailless: {
  20661. height: math.unit(5 + 10 / 12, "feet"),
  20662. weight: math.unit(150, "lb"),
  20663. name: "Front (Tailless)",
  20664. image: {
  20665. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20666. extra: (1506.1547 - 55) / 1356.6,
  20667. bottom: 55 / 1506.1547
  20668. }
  20669. },
  20670. },
  20671. [
  20672. {
  20673. name: "Normal",
  20674. height: math.unit(5 + 10 / 12, "feet"),
  20675. default: true
  20676. },
  20677. ]
  20678. ))
  20679. characterMakers.push(() => makeCharacter(
  20680. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20681. {
  20682. front: {
  20683. height: math.unit(293, "meters"),
  20684. weight: math.unit(70400, "tons"),
  20685. name: "Front",
  20686. image: {
  20687. source: "./media/characters/violette/front.svg",
  20688. extra: 1227 / 1180,
  20689. bottom: 0.005
  20690. }
  20691. },
  20692. back: {
  20693. height: math.unit(293, "meters"),
  20694. weight: math.unit(70400, "tons"),
  20695. name: "Back",
  20696. image: {
  20697. source: "./media/characters/violette/back.svg",
  20698. extra: 1227 / 1180,
  20699. bottom: 0.005
  20700. }
  20701. },
  20702. },
  20703. [
  20704. {
  20705. name: "Macro",
  20706. height: math.unit(293, "meters"),
  20707. default: true
  20708. },
  20709. ]
  20710. ))
  20711. characterMakers.push(() => makeCharacter(
  20712. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20713. {
  20714. front: {
  20715. height: math.unit(1050, "feet"),
  20716. weight: math.unit(200000, "tons"),
  20717. name: "Front",
  20718. image: {
  20719. source: "./media/characters/alessandra/front.svg",
  20720. extra: 960 / 912,
  20721. bottom: 0.06
  20722. }
  20723. },
  20724. },
  20725. [
  20726. {
  20727. name: "Macro",
  20728. height: math.unit(1050, "feet")
  20729. },
  20730. {
  20731. name: "Macro+",
  20732. height: math.unit(900, "meters"),
  20733. default: true
  20734. },
  20735. ]
  20736. ))
  20737. characterMakers.push(() => makeCharacter(
  20738. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20739. {
  20740. front: {
  20741. height: math.unit(5, "feet"),
  20742. weight: math.unit(187, "lb"),
  20743. name: "Front",
  20744. image: {
  20745. source: "./media/characters/person/front.svg",
  20746. extra: 3087 / 2945,
  20747. bottom: 91 / 3181
  20748. }
  20749. },
  20750. },
  20751. [
  20752. {
  20753. name: "Micro",
  20754. height: math.unit(3, "inches")
  20755. },
  20756. {
  20757. name: "Normal",
  20758. height: math.unit(5, "feet"),
  20759. default: true
  20760. },
  20761. {
  20762. name: "Macro",
  20763. height: math.unit(90, "feet")
  20764. },
  20765. {
  20766. name: "Max Size",
  20767. height: math.unit(280, "feet")
  20768. },
  20769. ]
  20770. ))
  20771. characterMakers.push(() => makeCharacter(
  20772. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20773. {
  20774. front: {
  20775. height: math.unit(4.5, "meters"),
  20776. weight: math.unit(3200, "lb"),
  20777. name: "Front",
  20778. image: {
  20779. source: "./media/characters/ty/front.svg",
  20780. extra: 1038 / 960,
  20781. bottom: 31.156 / 1068
  20782. }
  20783. },
  20784. back: {
  20785. height: math.unit(4.5, "meters"),
  20786. weight: math.unit(3200, "lb"),
  20787. name: "Back",
  20788. image: {
  20789. source: "./media/characters/ty/back.svg",
  20790. extra: 1044 / 966,
  20791. bottom: 7.48 / 1049
  20792. }
  20793. },
  20794. },
  20795. [
  20796. {
  20797. name: "Normal",
  20798. height: math.unit(4.5, "meters"),
  20799. default: true
  20800. },
  20801. ]
  20802. ))
  20803. characterMakers.push(() => makeCharacter(
  20804. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20805. {
  20806. front: {
  20807. height: math.unit(5 + 4 / 12, "feet"),
  20808. weight: math.unit(115, "lb"),
  20809. name: "Front",
  20810. image: {
  20811. source: "./media/characters/rocky/front.svg",
  20812. extra: 1012 / 975,
  20813. bottom: 54 / 1066
  20814. }
  20815. },
  20816. },
  20817. [
  20818. {
  20819. name: "Normal",
  20820. height: math.unit(5 + 4 / 12, "feet"),
  20821. default: true
  20822. },
  20823. ]
  20824. ))
  20825. characterMakers.push(() => makeCharacter(
  20826. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20827. {
  20828. upright: {
  20829. height: math.unit(6, "meters"),
  20830. weight: math.unit(4000, "kg"),
  20831. name: "Upright",
  20832. image: {
  20833. source: "./media/characters/ruin/upright.svg",
  20834. extra: 668 / 661,
  20835. bottom: 42 / 799.8396
  20836. }
  20837. },
  20838. },
  20839. [
  20840. {
  20841. name: "Normal",
  20842. height: math.unit(6, "meters"),
  20843. default: true
  20844. },
  20845. ]
  20846. ))
  20847. characterMakers.push(() => makeCharacter(
  20848. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20849. {
  20850. front: {
  20851. height: math.unit(5, "feet"),
  20852. weight: math.unit(106, "lb"),
  20853. name: "Front",
  20854. image: {
  20855. source: "./media/characters/robin/front.svg",
  20856. extra: 862 / 799,
  20857. bottom: 42.4 / 914.8856
  20858. }
  20859. },
  20860. },
  20861. [
  20862. {
  20863. name: "Normal",
  20864. height: math.unit(5, "feet"),
  20865. default: true
  20866. },
  20867. ]
  20868. ))
  20869. characterMakers.push(() => makeCharacter(
  20870. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20871. {
  20872. side: {
  20873. height: math.unit(3, "feet"),
  20874. weight: math.unit(225, "lb"),
  20875. name: "Side",
  20876. image: {
  20877. source: "./media/characters/saian/side.svg",
  20878. extra: 566 / 356,
  20879. bottom: 79.7 / 643
  20880. }
  20881. },
  20882. maw: {
  20883. height: math.unit(2.85, "feet"),
  20884. name: "Maw",
  20885. image: {
  20886. source: "./media/characters/saian/maw.svg"
  20887. }
  20888. },
  20889. },
  20890. [
  20891. {
  20892. name: "Normal",
  20893. height: math.unit(3, "feet"),
  20894. default: true
  20895. },
  20896. ]
  20897. ))
  20898. characterMakers.push(() => makeCharacter(
  20899. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20900. {
  20901. side: {
  20902. height: math.unit(8, "feet"),
  20903. weight: math.unit(300, "lb"),
  20904. name: "Side",
  20905. image: {
  20906. source: "./media/characters/equus-silvermane/side.svg",
  20907. extra: 2176 / 2050,
  20908. bottom: 65.7 / 2245
  20909. }
  20910. },
  20911. front: {
  20912. height: math.unit(8, "feet"),
  20913. weight: math.unit(300, "lb"),
  20914. name: "Front",
  20915. image: {
  20916. source: "./media/characters/equus-silvermane/front.svg",
  20917. extra: 4633 / 4400,
  20918. bottom: 71.3 / 4706.915
  20919. }
  20920. },
  20921. sideStepping: {
  20922. height: math.unit(8, "feet"),
  20923. weight: math.unit(300, "lb"),
  20924. name: "Side (Stepping)",
  20925. image: {
  20926. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20927. extra: 1968 / 1860,
  20928. bottom: 16.4 / 1989
  20929. }
  20930. },
  20931. },
  20932. [
  20933. {
  20934. name: "Normal",
  20935. height: math.unit(8, "feet")
  20936. },
  20937. {
  20938. name: "Minimacro",
  20939. height: math.unit(75, "feet"),
  20940. default: true
  20941. },
  20942. {
  20943. name: "Macro",
  20944. height: math.unit(150, "feet")
  20945. },
  20946. {
  20947. name: "Macro+",
  20948. height: math.unit(1000, "feet")
  20949. },
  20950. {
  20951. name: "Megamacro",
  20952. height: math.unit(1, "mile")
  20953. },
  20954. ]
  20955. ))
  20956. characterMakers.push(() => makeCharacter(
  20957. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20958. {
  20959. side: {
  20960. height: math.unit(20, "feet"),
  20961. weight: math.unit(30000, "kg"),
  20962. name: "Side",
  20963. image: {
  20964. source: "./media/characters/windar/side.svg",
  20965. extra: 1491 / 1248,
  20966. bottom: 82.56 / 1568
  20967. }
  20968. },
  20969. },
  20970. [
  20971. {
  20972. name: "Normal",
  20973. height: math.unit(20, "feet"),
  20974. default: true
  20975. },
  20976. ]
  20977. ))
  20978. characterMakers.push(() => makeCharacter(
  20979. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20980. {
  20981. side: {
  20982. height: math.unit(15.66, "feet"),
  20983. weight: math.unit(150, "lb"),
  20984. name: "Side",
  20985. image: {
  20986. source: "./media/characters/melody/side.svg",
  20987. extra: 1097 / 944,
  20988. bottom: 11.8 / 1109
  20989. }
  20990. },
  20991. sideOutfit: {
  20992. height: math.unit(15.66, "feet"),
  20993. weight: math.unit(150, "lb"),
  20994. name: "Side (Outfit)",
  20995. image: {
  20996. source: "./media/characters/melody/side-outfit.svg",
  20997. extra: 1097 / 944,
  20998. bottom: 11.8 / 1109
  20999. }
  21000. },
  21001. },
  21002. [
  21003. {
  21004. name: "Normal",
  21005. height: math.unit(15.66, "feet"),
  21006. default: true
  21007. },
  21008. ]
  21009. ))
  21010. characterMakers.push(() => makeCharacter(
  21011. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21012. {
  21013. front: {
  21014. height: math.unit(8, "feet"),
  21015. weight: math.unit(325, "lb"),
  21016. name: "Front",
  21017. image: {
  21018. source: "./media/characters/windera/front.svg",
  21019. extra: 3180 / 2845,
  21020. bottom: 178 / 3365
  21021. }
  21022. },
  21023. },
  21024. [
  21025. {
  21026. name: "Normal",
  21027. height: math.unit(8, "feet"),
  21028. default: true
  21029. },
  21030. ]
  21031. ))
  21032. characterMakers.push(() => makeCharacter(
  21033. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21034. {
  21035. front: {
  21036. height: math.unit(28.75, "feet"),
  21037. weight: math.unit(2000, "kg"),
  21038. name: "Front",
  21039. image: {
  21040. source: "./media/characters/sonear/front.svg",
  21041. extra: 1041.1 / 964.9,
  21042. bottom: 53.7 / 1096.6
  21043. }
  21044. },
  21045. },
  21046. [
  21047. {
  21048. name: "Normal",
  21049. height: math.unit(28.75, "feet"),
  21050. default: true
  21051. },
  21052. ]
  21053. ))
  21054. characterMakers.push(() => makeCharacter(
  21055. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21056. {
  21057. side: {
  21058. height: math.unit(25.5, "feet"),
  21059. weight: math.unit(23000, "kg"),
  21060. name: "Side",
  21061. image: {
  21062. source: "./media/characters/kanara/side.svg"
  21063. }
  21064. },
  21065. },
  21066. [
  21067. {
  21068. name: "Normal",
  21069. height: math.unit(25.5, "feet"),
  21070. default: true
  21071. },
  21072. ]
  21073. ))
  21074. characterMakers.push(() => makeCharacter(
  21075. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21076. {
  21077. side: {
  21078. height: math.unit(10, "feet"),
  21079. weight: math.unit(1000, "kg"),
  21080. name: "Side",
  21081. image: {
  21082. source: "./media/characters/ereus/side.svg",
  21083. extra: 1157 / 959,
  21084. bottom: 153 / 1312.5
  21085. }
  21086. },
  21087. },
  21088. [
  21089. {
  21090. name: "Normal",
  21091. height: math.unit(10, "feet"),
  21092. default: true
  21093. },
  21094. ]
  21095. ))
  21096. characterMakers.push(() => makeCharacter(
  21097. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21098. {
  21099. side: {
  21100. height: math.unit(4.5, "feet"),
  21101. weight: math.unit(500, "lb"),
  21102. name: "Side",
  21103. image: {
  21104. source: "./media/characters/e-ter/side.svg",
  21105. extra: 1550 / 1248,
  21106. bottom: 146 / 1694
  21107. }
  21108. },
  21109. },
  21110. [
  21111. {
  21112. name: "Normal",
  21113. height: math.unit(4.5, "feet"),
  21114. default: true
  21115. },
  21116. ]
  21117. ))
  21118. characterMakers.push(() => makeCharacter(
  21119. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21120. {
  21121. side: {
  21122. height: math.unit(9.7, "feet"),
  21123. weight: math.unit(4000, "kg"),
  21124. name: "Side",
  21125. image: {
  21126. source: "./media/characters/yamie/side.svg"
  21127. }
  21128. },
  21129. },
  21130. [
  21131. {
  21132. name: "Normal",
  21133. height: math.unit(9.7, "feet"),
  21134. default: true
  21135. },
  21136. ]
  21137. ))
  21138. characterMakers.push(() => makeCharacter(
  21139. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21140. {
  21141. front: {
  21142. height: math.unit(50, "feet"),
  21143. weight: math.unit(50000, "kg"),
  21144. name: "Front",
  21145. image: {
  21146. source: "./media/characters/anders/front.svg",
  21147. extra: 570 / 539,
  21148. bottom: 14.7 / 586.7
  21149. }
  21150. },
  21151. },
  21152. [
  21153. {
  21154. name: "Large",
  21155. height: math.unit(50, "feet")
  21156. },
  21157. {
  21158. name: "Macro",
  21159. height: math.unit(2000, "feet"),
  21160. default: true
  21161. },
  21162. {
  21163. name: "Megamacro",
  21164. height: math.unit(12, "miles")
  21165. },
  21166. ]
  21167. ))
  21168. characterMakers.push(() => makeCharacter(
  21169. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21170. {
  21171. front: {
  21172. height: math.unit(7 + 2 / 12, "feet"),
  21173. weight: math.unit(300, "lb"),
  21174. name: "Front",
  21175. image: {
  21176. source: "./media/characters/reban/front.svg",
  21177. extra: 516 / 487,
  21178. bottom: 42.82 / 558.356
  21179. }
  21180. },
  21181. dick: {
  21182. height: math.unit(7 / 5, "feet"),
  21183. name: "Dick",
  21184. image: {
  21185. source: "./media/characters/reban/dick.svg"
  21186. }
  21187. },
  21188. },
  21189. [
  21190. {
  21191. name: "Natural Height",
  21192. height: math.unit(7 + 2 / 12, "feet")
  21193. },
  21194. {
  21195. name: "Macro",
  21196. height: math.unit(500, "feet"),
  21197. default: true
  21198. },
  21199. {
  21200. name: "Canon Height",
  21201. height: math.unit(50, "AU")
  21202. },
  21203. ]
  21204. ))
  21205. characterMakers.push(() => makeCharacter(
  21206. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21207. {
  21208. front: {
  21209. height: math.unit(6, "feet"),
  21210. weight: math.unit(150, "lb"),
  21211. name: "Front",
  21212. image: {
  21213. source: "./media/characters/terrance-keayes/front.svg",
  21214. extra: 1.005,
  21215. bottom: 151 / 1615
  21216. }
  21217. },
  21218. side: {
  21219. height: math.unit(6, "feet"),
  21220. weight: math.unit(150, "lb"),
  21221. name: "Side",
  21222. image: {
  21223. source: "./media/characters/terrance-keayes/side.svg",
  21224. extra: 1.005,
  21225. bottom: 129.4 / 1544
  21226. }
  21227. },
  21228. back: {
  21229. height: math.unit(6, "feet"),
  21230. weight: math.unit(150, "lb"),
  21231. name: "Back",
  21232. image: {
  21233. source: "./media/characters/terrance-keayes/back.svg",
  21234. extra: 1.005,
  21235. bottom: 58.4 / 1557.3
  21236. }
  21237. },
  21238. dick: {
  21239. height: math.unit(6 * 0.208, "feet"),
  21240. name: "Dick",
  21241. image: {
  21242. source: "./media/characters/terrance-keayes/dick.svg"
  21243. }
  21244. },
  21245. },
  21246. [
  21247. {
  21248. name: "Canon Height",
  21249. height: math.unit(35, "miles"),
  21250. default: true
  21251. },
  21252. ]
  21253. ))
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21256. {
  21257. front: {
  21258. height: math.unit(6, "feet"),
  21259. weight: math.unit(150, "lb"),
  21260. name: "Front",
  21261. image: {
  21262. source: "./media/characters/ofelia/front.svg",
  21263. extra: 546 / 541,
  21264. bottom: 39 / 583
  21265. }
  21266. },
  21267. back: {
  21268. height: math.unit(6, "feet"),
  21269. weight: math.unit(150, "lb"),
  21270. name: "Back",
  21271. image: {
  21272. source: "./media/characters/ofelia/back.svg",
  21273. extra: 564 / 559.5,
  21274. bottom: 8.69 / 573.02
  21275. }
  21276. },
  21277. maw: {
  21278. height: math.unit(1, "feet"),
  21279. name: "Maw",
  21280. image: {
  21281. source: "./media/characters/ofelia/maw.svg"
  21282. }
  21283. },
  21284. foot: {
  21285. height: math.unit(1.949, "feet"),
  21286. name: "Foot",
  21287. image: {
  21288. source: "./media/characters/ofelia/foot.svg"
  21289. }
  21290. },
  21291. },
  21292. [
  21293. {
  21294. name: "Canon Height",
  21295. height: math.unit(2000, "miles"),
  21296. default: true
  21297. },
  21298. ]
  21299. ))
  21300. characterMakers.push(() => makeCharacter(
  21301. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21302. {
  21303. front: {
  21304. height: math.unit(6, "feet"),
  21305. weight: math.unit(150, "lb"),
  21306. name: "Front",
  21307. image: {
  21308. source: "./media/characters/samuel/front.svg",
  21309. extra: 265 / 258,
  21310. bottom: 2 / 266.1566
  21311. }
  21312. },
  21313. },
  21314. [
  21315. {
  21316. name: "Macro",
  21317. height: math.unit(100, "feet"),
  21318. default: true
  21319. },
  21320. {
  21321. name: "Full Size",
  21322. height: math.unit(1000, "miles")
  21323. },
  21324. ]
  21325. ))
  21326. characterMakers.push(() => makeCharacter(
  21327. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21328. {
  21329. front: {
  21330. height: math.unit(6, "feet"),
  21331. weight: math.unit(300, "lb"),
  21332. name: "Front",
  21333. image: {
  21334. source: "./media/characters/beishir-kiel/front.svg",
  21335. extra: 569 / 547,
  21336. bottom: 41.9 / 609
  21337. }
  21338. },
  21339. maw: {
  21340. height: math.unit(6 * 0.202, "feet"),
  21341. name: "Maw",
  21342. image: {
  21343. source: "./media/characters/beishir-kiel/maw.svg"
  21344. }
  21345. },
  21346. },
  21347. [
  21348. {
  21349. name: "Macro",
  21350. height: math.unit(300, "feet"),
  21351. default: true
  21352. },
  21353. ]
  21354. ))
  21355. characterMakers.push(() => makeCharacter(
  21356. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21357. {
  21358. front: {
  21359. height: math.unit(5 + 8 / 12, "feet"),
  21360. weight: math.unit(120, "lb"),
  21361. name: "Front",
  21362. image: {
  21363. source: "./media/characters/logan-grey/front.svg",
  21364. extra: 2539 / 2393,
  21365. bottom: 97.6 / 2636.37
  21366. }
  21367. },
  21368. frontAlt: {
  21369. height: math.unit(5 + 8 / 12, "feet"),
  21370. weight: math.unit(120, "lb"),
  21371. name: "Front (Alt)",
  21372. image: {
  21373. source: "./media/characters/logan-grey/front-alt.svg",
  21374. extra: 958 / 893,
  21375. bottom: 15 / 970.768
  21376. }
  21377. },
  21378. back: {
  21379. height: math.unit(5 + 8 / 12, "feet"),
  21380. weight: math.unit(120, "lb"),
  21381. name: "Back",
  21382. image: {
  21383. source: "./media/characters/logan-grey/back.svg",
  21384. extra: 958 / 893,
  21385. bottom: 2.1881 / 970.9788
  21386. }
  21387. },
  21388. dick: {
  21389. height: math.unit(1.437, "feet"),
  21390. name: "Dick",
  21391. image: {
  21392. source: "./media/characters/logan-grey/dick.svg"
  21393. }
  21394. },
  21395. },
  21396. [
  21397. {
  21398. name: "Normal",
  21399. height: math.unit(5 + 8 / 12, "feet")
  21400. },
  21401. {
  21402. name: "The 500 Foot Femboy",
  21403. height: math.unit(500, "feet"),
  21404. default: true
  21405. },
  21406. {
  21407. name: "Megmacro",
  21408. height: math.unit(20, "miles")
  21409. },
  21410. ]
  21411. ))
  21412. characterMakers.push(() => makeCharacter(
  21413. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21414. {
  21415. front: {
  21416. height: math.unit(8 + 2 / 12, "feet"),
  21417. weight: math.unit(275, "lb"),
  21418. name: "Front",
  21419. image: {
  21420. source: "./media/characters/draganta/front.svg",
  21421. extra: 1177 / 1135,
  21422. bottom: 33.46 / 1212.1
  21423. }
  21424. },
  21425. },
  21426. [
  21427. {
  21428. name: "Normal",
  21429. height: math.unit(8 + 6 / 12, "feet"),
  21430. default: true
  21431. },
  21432. {
  21433. name: "Macro",
  21434. height: math.unit(150, "feet")
  21435. },
  21436. {
  21437. name: "Megamacro",
  21438. height: math.unit(1000, "miles")
  21439. },
  21440. ]
  21441. ))
  21442. characterMakers.push(() => makeCharacter(
  21443. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21444. {
  21445. front: {
  21446. height: math.unit(1.72, "m"),
  21447. weight: math.unit(80, "lb"),
  21448. name: "Front",
  21449. image: {
  21450. source: "./media/characters/voski/front.svg",
  21451. extra: 2076.22 / 2022.4,
  21452. bottom: 102.7 / 2177.3866
  21453. }
  21454. },
  21455. frontNsfw: {
  21456. height: math.unit(1.72, "m"),
  21457. weight: math.unit(80, "lb"),
  21458. name: "Front (NSFW)",
  21459. image: {
  21460. source: "./media/characters/voski/front-nsfw.svg",
  21461. extra: 2076.22 / 2022.4,
  21462. bottom: 102.7 / 2177.3866
  21463. }
  21464. },
  21465. back: {
  21466. height: math.unit(1.72, "m"),
  21467. weight: math.unit(80, "lb"),
  21468. name: "Back",
  21469. image: {
  21470. source: "./media/characters/voski/back.svg",
  21471. extra: 2104 / 2051,
  21472. bottom: 10.45 / 2113.63
  21473. }
  21474. },
  21475. },
  21476. [
  21477. {
  21478. name: "Normal",
  21479. height: math.unit(1.72, "m")
  21480. },
  21481. {
  21482. name: "Macro",
  21483. height: math.unit(55, "m"),
  21484. default: true
  21485. },
  21486. {
  21487. name: "Macro+",
  21488. height: math.unit(300, "m")
  21489. },
  21490. {
  21491. name: "Macro++",
  21492. height: math.unit(700, "m")
  21493. },
  21494. {
  21495. name: "Macro+++",
  21496. height: math.unit(4500, "m")
  21497. },
  21498. {
  21499. name: "Macro++++",
  21500. height: math.unit(45, "km")
  21501. },
  21502. {
  21503. name: "Macro+++++",
  21504. height: math.unit(1220, "km")
  21505. },
  21506. ]
  21507. ))
  21508. characterMakers.push(() => makeCharacter(
  21509. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21510. {
  21511. front: {
  21512. height: math.unit(2.3, "m"),
  21513. weight: math.unit(304, "kg"),
  21514. name: "Front",
  21515. image: {
  21516. source: "./media/characters/icowom-lee/front.svg",
  21517. extra: 985 / 955,
  21518. bottom: 25.4 / 1012
  21519. }
  21520. },
  21521. fronttentacles: {
  21522. height: math.unit(2.3, "m"),
  21523. weight: math.unit(304, "kg"),
  21524. name: "Front-tentacles",
  21525. image: {
  21526. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21527. extra: 985 / 955,
  21528. bottom: 25.4 / 1012
  21529. }
  21530. },
  21531. back: {
  21532. height: math.unit(2.3, "m"),
  21533. weight: math.unit(304, "kg"),
  21534. name: "Back",
  21535. image: {
  21536. source: "./media/characters/icowom-lee/back.svg",
  21537. extra: 975 / 954,
  21538. bottom: 9.5 / 985
  21539. }
  21540. },
  21541. backtentacles: {
  21542. height: math.unit(2.3, "m"),
  21543. weight: math.unit(304, "kg"),
  21544. name: "Back-tentacles",
  21545. image: {
  21546. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21547. extra: 975 / 954,
  21548. bottom: 9.5 / 985
  21549. }
  21550. },
  21551. frontDressed: {
  21552. height: math.unit(2.3, "m"),
  21553. weight: math.unit(304, "kg"),
  21554. name: "Front (Dressed)",
  21555. image: {
  21556. source: "./media/characters/icowom-lee/front-dressed.svg",
  21557. extra: 3076 / 2933,
  21558. bottom: 51.4 / 3125.1889
  21559. }
  21560. },
  21561. rump: {
  21562. height: math.unit(0.776, "meters"),
  21563. name: "Rump",
  21564. image: {
  21565. source: "./media/characters/icowom-lee/rump.svg"
  21566. }
  21567. },
  21568. genitals: {
  21569. height: math.unit(0.78, "meters"),
  21570. name: "Genitals",
  21571. image: {
  21572. source: "./media/characters/icowom-lee/genitals.svg"
  21573. }
  21574. },
  21575. },
  21576. [
  21577. {
  21578. name: "Normal",
  21579. height: math.unit(2.3, "meters"),
  21580. default: true
  21581. },
  21582. {
  21583. name: "Macro",
  21584. height: math.unit(94, "meters"),
  21585. default: true
  21586. },
  21587. ]
  21588. ))
  21589. characterMakers.push(() => makeCharacter(
  21590. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21591. {
  21592. front: {
  21593. height: math.unit(22, "meters"),
  21594. weight: math.unit(21000, "kg"),
  21595. name: "Front",
  21596. image: {
  21597. source: "./media/characters/shock-diamond/front.svg",
  21598. extra: 2204 / 2053,
  21599. bottom: 65 / 2239.47
  21600. }
  21601. },
  21602. frontNude: {
  21603. height: math.unit(22, "meters"),
  21604. weight: math.unit(21000, "kg"),
  21605. name: "Front (Nude)",
  21606. image: {
  21607. source: "./media/characters/shock-diamond/front-nude.svg",
  21608. extra: 2514 / 2285,
  21609. bottom: 13 / 2527.56
  21610. }
  21611. },
  21612. },
  21613. [
  21614. {
  21615. name: "Normal",
  21616. height: math.unit(3, "meters")
  21617. },
  21618. {
  21619. name: "Macro",
  21620. height: math.unit(22, "meters"),
  21621. default: true
  21622. },
  21623. ]
  21624. ))
  21625. characterMakers.push(() => makeCharacter(
  21626. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21627. {
  21628. front: {
  21629. height: math.unit(5 + 4 / 12, "feet"),
  21630. weight: math.unit(120, "lb"),
  21631. name: "Front",
  21632. image: {
  21633. source: "./media/characters/rory/front.svg",
  21634. extra: 589 / 556,
  21635. bottom: 45.7 / 635.76
  21636. }
  21637. },
  21638. frontNude: {
  21639. height: math.unit(5 + 4 / 12, "feet"),
  21640. weight: math.unit(120, "lb"),
  21641. name: "Front (Nude)",
  21642. image: {
  21643. source: "./media/characters/rory/front-nude.svg",
  21644. extra: 589 / 556,
  21645. bottom: 45.7 / 635.76
  21646. }
  21647. },
  21648. side: {
  21649. height: math.unit(5 + 4 / 12, "feet"),
  21650. weight: math.unit(120, "lb"),
  21651. name: "Side",
  21652. image: {
  21653. source: "./media/characters/rory/side.svg",
  21654. extra: 597 / 564,
  21655. bottom: 55 / 653
  21656. }
  21657. },
  21658. back: {
  21659. height: math.unit(5 + 4 / 12, "feet"),
  21660. weight: math.unit(120, "lb"),
  21661. name: "Back",
  21662. image: {
  21663. source: "./media/characters/rory/back.svg",
  21664. extra: 620 / 585,
  21665. bottom: 8.86 / 630.43
  21666. }
  21667. },
  21668. dick: {
  21669. height: math.unit(0.86, "feet"),
  21670. name: "Dick",
  21671. image: {
  21672. source: "./media/characters/rory/dick.svg"
  21673. }
  21674. },
  21675. },
  21676. [
  21677. {
  21678. name: "Normal",
  21679. height: math.unit(5 + 4 / 12, "feet"),
  21680. default: true
  21681. },
  21682. {
  21683. name: "Macro",
  21684. height: math.unit(100, "feet")
  21685. },
  21686. {
  21687. name: "Macro+",
  21688. height: math.unit(140, "feet")
  21689. },
  21690. {
  21691. name: "Macro++",
  21692. height: math.unit(300, "feet")
  21693. },
  21694. ]
  21695. ))
  21696. characterMakers.push(() => makeCharacter(
  21697. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21698. {
  21699. front: {
  21700. height: math.unit(5 + 9 / 12, "feet"),
  21701. weight: math.unit(190, "lb"),
  21702. name: "Front",
  21703. image: {
  21704. source: "./media/characters/sprisk/front.svg",
  21705. extra: 1225 / 1180,
  21706. bottom: 42.7 / 1266.4
  21707. }
  21708. },
  21709. frontNsfw: {
  21710. height: math.unit(5 + 9 / 12, "feet"),
  21711. weight: math.unit(190, "lb"),
  21712. name: "Front (NSFW)",
  21713. image: {
  21714. source: "./media/characters/sprisk/front-nsfw.svg",
  21715. extra: 1225 / 1180,
  21716. bottom: 42.7 / 1266.4
  21717. }
  21718. },
  21719. back: {
  21720. height: math.unit(5 + 9 / 12, "feet"),
  21721. weight: math.unit(190, "lb"),
  21722. name: "Back",
  21723. image: {
  21724. source: "./media/characters/sprisk/back.svg",
  21725. extra: 1247 / 1200,
  21726. bottom: 5.6 / 1253.04
  21727. }
  21728. },
  21729. },
  21730. [
  21731. {
  21732. name: "Tiny",
  21733. height: math.unit(2, "inches")
  21734. },
  21735. {
  21736. name: "Normal",
  21737. height: math.unit(5 + 9 / 12, "feet"),
  21738. default: true
  21739. },
  21740. {
  21741. name: "Mini Macro",
  21742. height: math.unit(18, "feet")
  21743. },
  21744. {
  21745. name: "Macro",
  21746. height: math.unit(100, "feet")
  21747. },
  21748. {
  21749. name: "MACRO",
  21750. height: math.unit(50, "miles")
  21751. },
  21752. {
  21753. name: "M A C R O",
  21754. height: math.unit(300, "miles")
  21755. },
  21756. ]
  21757. ))
  21758. characterMakers.push(() => makeCharacter(
  21759. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21760. {
  21761. side: {
  21762. height: math.unit(15.6, "meters"),
  21763. weight: math.unit(700000, "kg"),
  21764. name: "Side",
  21765. image: {
  21766. source: "./media/characters/bunsen/side.svg",
  21767. extra: 1644 / 358
  21768. }
  21769. },
  21770. foot: {
  21771. height: math.unit(1.611 * 1644 / 358, "meter"),
  21772. name: "Foot",
  21773. image: {
  21774. source: "./media/characters/bunsen/foot.svg"
  21775. }
  21776. },
  21777. },
  21778. [
  21779. {
  21780. name: "Small",
  21781. height: math.unit(10, "feet")
  21782. },
  21783. {
  21784. name: "Normal",
  21785. height: math.unit(15.6, "meters"),
  21786. default: true
  21787. },
  21788. ]
  21789. ))
  21790. characterMakers.push(() => makeCharacter(
  21791. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21792. {
  21793. front: {
  21794. height: math.unit(4 + 11 / 12, "feet"),
  21795. weight: math.unit(140, "lb"),
  21796. name: "Front",
  21797. image: {
  21798. source: "./media/characters/sesh/front.svg",
  21799. extra: 3420 / 3231,
  21800. bottom: 72 / 3949.5
  21801. }
  21802. },
  21803. },
  21804. [
  21805. {
  21806. name: "Normal",
  21807. height: math.unit(4 + 11 / 12, "feet")
  21808. },
  21809. {
  21810. name: "Grown",
  21811. height: math.unit(15, "feet"),
  21812. default: true
  21813. },
  21814. {
  21815. name: "Macro",
  21816. height: math.unit(1500, "feet")
  21817. },
  21818. {
  21819. name: "Megamacro",
  21820. height: math.unit(30, "miles")
  21821. },
  21822. {
  21823. name: "Continental",
  21824. height: math.unit(3000, "miles")
  21825. },
  21826. {
  21827. name: "Gravity Mass",
  21828. height: math.unit(300000, "miles")
  21829. },
  21830. {
  21831. name: "Planet Buster",
  21832. height: math.unit(30000000, "miles")
  21833. },
  21834. {
  21835. name: "Big",
  21836. height: math.unit(3000000000, "miles")
  21837. },
  21838. ]
  21839. ))
  21840. characterMakers.push(() => makeCharacter(
  21841. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21842. {
  21843. front: {
  21844. height: math.unit(9, "feet"),
  21845. weight: math.unit(350, "lb"),
  21846. name: "Front",
  21847. image: {
  21848. source: "./media/characters/pepper/front.svg",
  21849. extra: 1448 / 1312,
  21850. bottom: 9.4 / 1457.88
  21851. }
  21852. },
  21853. back: {
  21854. height: math.unit(9, "feet"),
  21855. weight: math.unit(350, "lb"),
  21856. name: "Back",
  21857. image: {
  21858. source: "./media/characters/pepper/back.svg",
  21859. extra: 1423 / 1300,
  21860. bottom: 4.6 / 1429
  21861. }
  21862. },
  21863. maw: {
  21864. height: math.unit(0.932, "feet"),
  21865. name: "Maw",
  21866. image: {
  21867. source: "./media/characters/pepper/maw.svg"
  21868. }
  21869. },
  21870. },
  21871. [
  21872. {
  21873. name: "Normal",
  21874. height: math.unit(9, "feet"),
  21875. default: true
  21876. },
  21877. ]
  21878. ))
  21879. characterMakers.push(() => makeCharacter(
  21880. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21881. {
  21882. front: {
  21883. height: math.unit(6, "feet"),
  21884. weight: math.unit(150, "lb"),
  21885. name: "Front",
  21886. image: {
  21887. source: "./media/characters/maelstrom/front.svg",
  21888. extra: 2100 / 1883,
  21889. bottom: 94 / 2196.7
  21890. }
  21891. },
  21892. },
  21893. [
  21894. {
  21895. name: "Less Kaiju",
  21896. height: math.unit(200, "feet")
  21897. },
  21898. {
  21899. name: "Kaiju",
  21900. height: math.unit(400, "feet"),
  21901. default: true
  21902. },
  21903. {
  21904. name: "Kaiju-er",
  21905. height: math.unit(600, "feet")
  21906. },
  21907. ]
  21908. ))
  21909. characterMakers.push(() => makeCharacter(
  21910. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21911. {
  21912. front: {
  21913. height: math.unit(6 + 5 / 12, "feet"),
  21914. weight: math.unit(180, "lb"),
  21915. name: "Front",
  21916. image: {
  21917. source: "./media/characters/lexir/front.svg",
  21918. extra: 180 / 172,
  21919. bottom: 12 / 192
  21920. }
  21921. },
  21922. back: {
  21923. height: math.unit(6 + 5 / 12, "feet"),
  21924. weight: math.unit(180, "lb"),
  21925. name: "Back",
  21926. image: {
  21927. source: "./media/characters/lexir/back.svg",
  21928. extra: 183.84 / 175.5,
  21929. bottom: 3.1 / 187
  21930. }
  21931. },
  21932. },
  21933. [
  21934. {
  21935. name: "Very Smal",
  21936. height: math.unit(1, "nm")
  21937. },
  21938. {
  21939. name: "Normal",
  21940. height: math.unit(6 + 5 / 12, "feet"),
  21941. default: true
  21942. },
  21943. {
  21944. name: "Macro",
  21945. height: math.unit(1, "mile")
  21946. },
  21947. {
  21948. name: "Megamacro",
  21949. height: math.unit(50, "miles")
  21950. },
  21951. ]
  21952. ))
  21953. characterMakers.push(() => makeCharacter(
  21954. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21955. {
  21956. front: {
  21957. height: math.unit(1.5, "meters"),
  21958. weight: math.unit(100, "lb"),
  21959. name: "Front",
  21960. image: {
  21961. source: "./media/characters/maksio/front.svg",
  21962. extra: 1549 / 1531,
  21963. bottom: 123.7 / 1674.5429
  21964. }
  21965. },
  21966. back: {
  21967. height: math.unit(1.5, "meters"),
  21968. weight: math.unit(100, "lb"),
  21969. name: "Back",
  21970. image: {
  21971. source: "./media/characters/maksio/back.svg",
  21972. extra: 1541 / 1509,
  21973. bottom: 97 / 1639
  21974. }
  21975. },
  21976. hand: {
  21977. height: math.unit(0.621, "feet"),
  21978. name: "Hand",
  21979. image: {
  21980. source: "./media/characters/maksio/hand.svg"
  21981. }
  21982. },
  21983. foot: {
  21984. height: math.unit(1.611, "feet"),
  21985. name: "Foot",
  21986. image: {
  21987. source: "./media/characters/maksio/foot.svg"
  21988. }
  21989. },
  21990. },
  21991. [
  21992. {
  21993. name: "Shrunken",
  21994. height: math.unit(10, "cm")
  21995. },
  21996. {
  21997. name: "Normal",
  21998. height: math.unit(150, "cm"),
  21999. default: true
  22000. },
  22001. ]
  22002. ))
  22003. characterMakers.push(() => makeCharacter(
  22004. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22005. {
  22006. front: {
  22007. height: math.unit(100, "feet"),
  22008. name: "Front",
  22009. image: {
  22010. source: "./media/characters/erza-bear/front.svg",
  22011. extra: 2449 / 2390,
  22012. bottom: 46 / 2494
  22013. }
  22014. },
  22015. back: {
  22016. height: math.unit(100, "feet"),
  22017. name: "Back",
  22018. image: {
  22019. source: "./media/characters/erza-bear/back.svg",
  22020. extra: 2489 / 2430,
  22021. bottom: 85.4 / 2480
  22022. }
  22023. },
  22024. tail: {
  22025. height: math.unit(42, "feet"),
  22026. name: "Tail",
  22027. image: {
  22028. source: "./media/characters/erza-bear/tail.svg"
  22029. }
  22030. },
  22031. tongue: {
  22032. height: math.unit(8, "feet"),
  22033. name: "Tongue",
  22034. image: {
  22035. source: "./media/characters/erza-bear/tongue.svg"
  22036. }
  22037. },
  22038. dick: {
  22039. height: math.unit(10.5, "feet"),
  22040. name: "Dick",
  22041. image: {
  22042. source: "./media/characters/erza-bear/dick.svg"
  22043. }
  22044. },
  22045. dickVertical: {
  22046. height: math.unit(16.9, "feet"),
  22047. name: "Dick (Vertical)",
  22048. image: {
  22049. source: "./media/characters/erza-bear/dick-vertical.svg"
  22050. }
  22051. },
  22052. },
  22053. [
  22054. {
  22055. name: "Macro",
  22056. height: math.unit(100, "feet"),
  22057. default: true
  22058. },
  22059. ]
  22060. ))
  22061. characterMakers.push(() => makeCharacter(
  22062. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22063. {
  22064. front: {
  22065. height: math.unit(172, "cm"),
  22066. weight: math.unit(73, "kg"),
  22067. name: "Front",
  22068. image: {
  22069. source: "./media/characters/violet-flor/front.svg",
  22070. extra: 1530 / 1442,
  22071. bottom: 61.9 / 1588.8
  22072. }
  22073. },
  22074. back: {
  22075. height: math.unit(180, "cm"),
  22076. weight: math.unit(73, "kg"),
  22077. name: "Back",
  22078. image: {
  22079. source: "./media/characters/violet-flor/back.svg",
  22080. extra: 1692 / 1630,
  22081. bottom: 20 / 1712
  22082. }
  22083. },
  22084. },
  22085. [
  22086. {
  22087. name: "Normal",
  22088. height: math.unit(172, "cm"),
  22089. default: true
  22090. },
  22091. ]
  22092. ))
  22093. characterMakers.push(() => makeCharacter(
  22094. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22095. {
  22096. front: {
  22097. height: math.unit(6, "feet"),
  22098. weight: math.unit(220, "lb"),
  22099. name: "Front",
  22100. image: {
  22101. source: "./media/characters/lynn-rhea/front.svg",
  22102. extra: 310 / 273
  22103. }
  22104. },
  22105. back: {
  22106. height: math.unit(6, "feet"),
  22107. weight: math.unit(220, "lb"),
  22108. name: "Back",
  22109. image: {
  22110. source: "./media/characters/lynn-rhea/back.svg",
  22111. extra: 310 / 273
  22112. }
  22113. },
  22114. dicks: {
  22115. height: math.unit(0.9, "feet"),
  22116. name: "Dicks",
  22117. image: {
  22118. source: "./media/characters/lynn-rhea/dicks.svg"
  22119. }
  22120. },
  22121. slit: {
  22122. height: math.unit(0.4, "feet"),
  22123. name: "Slit",
  22124. image: {
  22125. source: "./media/characters/lynn-rhea/slit.svg"
  22126. }
  22127. },
  22128. },
  22129. [
  22130. {
  22131. name: "Micro",
  22132. height: math.unit(1, "inch")
  22133. },
  22134. {
  22135. name: "Macro",
  22136. height: math.unit(60, "feet"),
  22137. default: true
  22138. },
  22139. {
  22140. name: "Megamacro",
  22141. height: math.unit(2, "miles")
  22142. },
  22143. {
  22144. name: "Gigamacro",
  22145. height: math.unit(3, "earths")
  22146. },
  22147. {
  22148. name: "Galactic",
  22149. height: math.unit(0.8, "galaxies")
  22150. },
  22151. ]
  22152. ))
  22153. characterMakers.push(() => makeCharacter(
  22154. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22155. {
  22156. front: {
  22157. height: math.unit(1600, "feet"),
  22158. weight: math.unit(85758785169, "kg"),
  22159. name: "Front",
  22160. image: {
  22161. source: "./media/characters/valathos/front.svg",
  22162. extra: 1451 / 1339
  22163. }
  22164. },
  22165. },
  22166. [
  22167. {
  22168. name: "Macro",
  22169. height: math.unit(1600, "feet"),
  22170. default: true
  22171. },
  22172. ]
  22173. ))
  22174. characterMakers.push(() => makeCharacter(
  22175. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22176. {
  22177. front: {
  22178. height: math.unit(7 + 5 / 12, "feet"),
  22179. weight: math.unit(300, "lb"),
  22180. name: "Front",
  22181. image: {
  22182. source: "./media/characters/azula/front.svg",
  22183. extra: 3208 / 2880,
  22184. bottom: 80.2 / 3277
  22185. }
  22186. },
  22187. back: {
  22188. height: math.unit(7 + 5 / 12, "feet"),
  22189. weight: math.unit(300, "lb"),
  22190. name: "Back",
  22191. image: {
  22192. source: "./media/characters/azula/back.svg",
  22193. extra: 3169 / 2822,
  22194. bottom: 150.6 / 3321
  22195. }
  22196. },
  22197. },
  22198. [
  22199. {
  22200. name: "Normal",
  22201. height: math.unit(7 + 5 / 12, "feet"),
  22202. default: true
  22203. },
  22204. {
  22205. name: "Big",
  22206. height: math.unit(20, "feet")
  22207. },
  22208. ]
  22209. ))
  22210. characterMakers.push(() => makeCharacter(
  22211. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22212. {
  22213. front: {
  22214. height: math.unit(5 + 1 / 12, "feet"),
  22215. weight: math.unit(110, "lb"),
  22216. name: "Front",
  22217. image: {
  22218. source: "./media/characters/rupert/front.svg",
  22219. extra: 1549 / 1495,
  22220. bottom: 54.2 / 1604.4
  22221. }
  22222. },
  22223. },
  22224. [
  22225. {
  22226. name: "Normal",
  22227. height: math.unit(5 + 1 / 12, "feet"),
  22228. default: true
  22229. },
  22230. ]
  22231. ))
  22232. characterMakers.push(() => makeCharacter(
  22233. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22234. {
  22235. front: {
  22236. height: math.unit(8 + 4 / 12, "feet"),
  22237. weight: math.unit(350, "lb"),
  22238. name: "Front",
  22239. image: {
  22240. source: "./media/characters/sheera-castellar/front.svg",
  22241. extra: 1957 / 1894,
  22242. bottom: 26.97 / 1975.017
  22243. }
  22244. },
  22245. side: {
  22246. height: math.unit(8 + 4 / 12, "feet"),
  22247. weight: math.unit(350, "lb"),
  22248. name: "Side",
  22249. image: {
  22250. source: "./media/characters/sheera-castellar/side.svg",
  22251. extra: 1957 / 1894
  22252. }
  22253. },
  22254. back: {
  22255. height: math.unit(8 + 4 / 12, "feet"),
  22256. weight: math.unit(350, "lb"),
  22257. name: "Back",
  22258. image: {
  22259. source: "./media/characters/sheera-castellar/back.svg",
  22260. extra: 1957 / 1894
  22261. }
  22262. },
  22263. angled: {
  22264. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22265. weight: math.unit(350, "lb"),
  22266. name: "Angled",
  22267. image: {
  22268. source: "./media/characters/sheera-castellar/angled.svg",
  22269. extra: 1807 / 1707,
  22270. bottom: 68 / 1875
  22271. }
  22272. },
  22273. genitals: {
  22274. height: math.unit(2.2, "feet"),
  22275. name: "Genitals",
  22276. image: {
  22277. source: "./media/characters/sheera-castellar/genitals.svg"
  22278. }
  22279. },
  22280. },
  22281. [
  22282. {
  22283. name: "Normal",
  22284. height: math.unit(8 + 4 / 12, "feet")
  22285. },
  22286. {
  22287. name: "Macro",
  22288. height: math.unit(150, "feet"),
  22289. default: true
  22290. },
  22291. {
  22292. name: "Macro+",
  22293. height: math.unit(800, "feet")
  22294. },
  22295. ]
  22296. ))
  22297. characterMakers.push(() => makeCharacter(
  22298. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22299. {
  22300. front: {
  22301. height: math.unit(6, "feet"),
  22302. weight: math.unit(150, "lb"),
  22303. name: "Front",
  22304. image: {
  22305. source: "./media/characters/jaipur/front.svg",
  22306. extra: 3860 / 3731,
  22307. bottom: 287 / 4140
  22308. }
  22309. },
  22310. back: {
  22311. height: math.unit(6, "feet"),
  22312. weight: math.unit(150, "lb"),
  22313. name: "Back",
  22314. image: {
  22315. source: "./media/characters/jaipur/back.svg",
  22316. extra: 4060 / 3930,
  22317. bottom: 151 / 4200
  22318. }
  22319. },
  22320. },
  22321. [
  22322. {
  22323. name: "Normal",
  22324. height: math.unit(1.85, "meters"),
  22325. default: true
  22326. },
  22327. {
  22328. name: "Macro",
  22329. height: math.unit(150, "meters")
  22330. },
  22331. {
  22332. name: "Macro+",
  22333. height: math.unit(0.5, "miles")
  22334. },
  22335. {
  22336. name: "Macro++",
  22337. height: math.unit(2.5, "miles")
  22338. },
  22339. {
  22340. name: "Macro+++",
  22341. height: math.unit(12, "miles")
  22342. },
  22343. {
  22344. name: "Macro++++",
  22345. height: math.unit(120, "miles")
  22346. },
  22347. {
  22348. name: "Macro+++++",
  22349. height: math.unit(1200, "miles")
  22350. },
  22351. ]
  22352. ))
  22353. characterMakers.push(() => makeCharacter(
  22354. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22355. {
  22356. front: {
  22357. height: math.unit(6, "feet"),
  22358. weight: math.unit(150, "lb"),
  22359. name: "Front",
  22360. image: {
  22361. source: "./media/characters/sheila-wolf/front.svg",
  22362. extra: 1931 / 1808,
  22363. bottom: 29.5 / 1960
  22364. }
  22365. },
  22366. dick: {
  22367. height: math.unit(1.464, "feet"),
  22368. name: "Dick",
  22369. image: {
  22370. source: "./media/characters/sheila-wolf/dick.svg"
  22371. }
  22372. },
  22373. muzzle: {
  22374. height: math.unit(0.513, "feet"),
  22375. name: "Muzzle",
  22376. image: {
  22377. source: "./media/characters/sheila-wolf/muzzle.svg"
  22378. }
  22379. },
  22380. },
  22381. [
  22382. {
  22383. name: "Macro",
  22384. height: math.unit(70, "feet"),
  22385. default: true
  22386. },
  22387. ]
  22388. ))
  22389. characterMakers.push(() => makeCharacter(
  22390. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22391. {
  22392. front: {
  22393. height: math.unit(32, "meters"),
  22394. weight: math.unit(300000, "kg"),
  22395. name: "Front",
  22396. image: {
  22397. source: "./media/characters/almor/front.svg",
  22398. extra: 1408 / 1322,
  22399. bottom: 94.6 / 1506.5
  22400. }
  22401. },
  22402. },
  22403. [
  22404. {
  22405. name: "Macro",
  22406. height: math.unit(32, "meters"),
  22407. default: true
  22408. },
  22409. ]
  22410. ))
  22411. characterMakers.push(() => makeCharacter(
  22412. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22413. {
  22414. front: {
  22415. height: math.unit(7, "feet"),
  22416. weight: math.unit(200, "lb"),
  22417. name: "Front",
  22418. image: {
  22419. source: "./media/characters/silver/front.svg",
  22420. extra: 472.1 / 450.5,
  22421. bottom: 26.5 / 499.424
  22422. }
  22423. },
  22424. },
  22425. [
  22426. {
  22427. name: "Normal",
  22428. height: math.unit(7, "feet"),
  22429. default: true
  22430. },
  22431. {
  22432. name: "Macro",
  22433. height: math.unit(800, "feet")
  22434. },
  22435. {
  22436. name: "Megamacro",
  22437. height: math.unit(250, "miles")
  22438. },
  22439. ]
  22440. ))
  22441. characterMakers.push(() => makeCharacter(
  22442. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22443. {
  22444. front: {
  22445. height: math.unit(6, "feet"),
  22446. weight: math.unit(150, "lb"),
  22447. name: "Front",
  22448. image: {
  22449. source: "./media/characters/pliskin/front.svg",
  22450. extra: 1469 / 1359,
  22451. bottom: 70 / 1540
  22452. }
  22453. },
  22454. },
  22455. [
  22456. {
  22457. name: "Micro",
  22458. height: math.unit(3, "inches")
  22459. },
  22460. {
  22461. name: "Normal",
  22462. height: math.unit(5 + 11 / 12, "feet"),
  22463. default: true
  22464. },
  22465. {
  22466. name: "Macro",
  22467. height: math.unit(120, "feet")
  22468. },
  22469. ]
  22470. ))
  22471. characterMakers.push(() => makeCharacter(
  22472. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22473. {
  22474. front: {
  22475. height: math.unit(6, "feet"),
  22476. weight: math.unit(150, "lb"),
  22477. name: "Front",
  22478. image: {
  22479. source: "./media/characters/sammy/front.svg",
  22480. extra: 1193 / 1089,
  22481. bottom: 30.5 / 1226
  22482. }
  22483. },
  22484. },
  22485. [
  22486. {
  22487. name: "Macro",
  22488. height: math.unit(1700, "feet"),
  22489. default: true
  22490. },
  22491. {
  22492. name: "Examacro",
  22493. height: math.unit(2.5e9, "lightyears")
  22494. },
  22495. ]
  22496. ))
  22497. characterMakers.push(() => makeCharacter(
  22498. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22499. {
  22500. front: {
  22501. height: math.unit(21, "meters"),
  22502. weight: math.unit(12, "tonnes"),
  22503. name: "Front",
  22504. image: {
  22505. source: "./media/characters/kuru/front.svg",
  22506. extra: 4301 / 3785,
  22507. bottom: 371.3 / 4691
  22508. }
  22509. },
  22510. },
  22511. [
  22512. {
  22513. name: "Macro",
  22514. height: math.unit(21, "meters"),
  22515. default: true
  22516. },
  22517. ]
  22518. ))
  22519. characterMakers.push(() => makeCharacter(
  22520. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22521. {
  22522. front: {
  22523. height: math.unit(23, "meters"),
  22524. weight: math.unit(12.2, "tonnes"),
  22525. name: "Front",
  22526. image: {
  22527. source: "./media/characters/rakka/front.svg",
  22528. extra: 4670 / 4169,
  22529. bottom: 301 / 4968.7
  22530. }
  22531. },
  22532. },
  22533. [
  22534. {
  22535. name: "Macro",
  22536. height: math.unit(23, "meters"),
  22537. default: true
  22538. },
  22539. ]
  22540. ))
  22541. characterMakers.push(() => makeCharacter(
  22542. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22543. {
  22544. front: {
  22545. height: math.unit(6, "feet"),
  22546. weight: math.unit(150, "lb"),
  22547. name: "Front",
  22548. image: {
  22549. source: "./media/characters/rhys-feline/front.svg",
  22550. extra: 2488 / 2308,
  22551. bottom: 35.67 / 2519.19
  22552. }
  22553. },
  22554. },
  22555. [
  22556. {
  22557. name: "Really Small",
  22558. height: math.unit(1, "nm")
  22559. },
  22560. {
  22561. name: "Micro",
  22562. height: math.unit(4, "inches")
  22563. },
  22564. {
  22565. name: "Normal",
  22566. height: math.unit(4 + 10 / 12, "feet"),
  22567. default: true
  22568. },
  22569. {
  22570. name: "Macro",
  22571. height: math.unit(100, "feet")
  22572. },
  22573. {
  22574. name: "Megamacto",
  22575. height: math.unit(50, "miles")
  22576. },
  22577. ]
  22578. ))
  22579. characterMakers.push(() => makeCharacter(
  22580. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22581. {
  22582. side: {
  22583. height: math.unit(30, "feet"),
  22584. weight: math.unit(35000, "kg"),
  22585. name: "Side",
  22586. image: {
  22587. source: "./media/characters/alydar/side.svg",
  22588. extra: 234 / 222,
  22589. bottom: 6.5 / 241
  22590. }
  22591. },
  22592. front: {
  22593. height: math.unit(30, "feet"),
  22594. weight: math.unit(35000, "kg"),
  22595. name: "Front",
  22596. image: {
  22597. source: "./media/characters/alydar/front.svg",
  22598. extra: 223.37 / 210.2,
  22599. bottom: 22.3 / 246.76
  22600. }
  22601. },
  22602. top: {
  22603. height: math.unit(64.54, "feet"),
  22604. weight: math.unit(35000, "kg"),
  22605. name: "Top",
  22606. image: {
  22607. source: "./media/characters/alydar/top.svg"
  22608. }
  22609. },
  22610. anthro: {
  22611. height: math.unit(30, "feet"),
  22612. weight: math.unit(9000, "kg"),
  22613. name: "Anthro",
  22614. image: {
  22615. source: "./media/characters/alydar/anthro.svg",
  22616. extra: 432 / 421,
  22617. bottom: 7.18 / 440
  22618. }
  22619. },
  22620. maw: {
  22621. height: math.unit(11.693, "feet"),
  22622. name: "Maw",
  22623. image: {
  22624. source: "./media/characters/alydar/maw.svg"
  22625. }
  22626. },
  22627. head: {
  22628. height: math.unit(11.693, "feet"),
  22629. name: "Head",
  22630. image: {
  22631. source: "./media/characters/alydar/head.svg"
  22632. }
  22633. },
  22634. headAlt: {
  22635. height: math.unit(12.861, "feet"),
  22636. name: "Head (Alt)",
  22637. image: {
  22638. source: "./media/characters/alydar/head-alt.svg"
  22639. }
  22640. },
  22641. wing: {
  22642. height: math.unit(20.712, "feet"),
  22643. name: "Wing",
  22644. image: {
  22645. source: "./media/characters/alydar/wing.svg"
  22646. }
  22647. },
  22648. wingFeather: {
  22649. height: math.unit(9.662, "feet"),
  22650. name: "Wing Feather",
  22651. image: {
  22652. source: "./media/characters/alydar/wing-feather.svg"
  22653. }
  22654. },
  22655. countourFeather: {
  22656. height: math.unit(4.154, "feet"),
  22657. name: "Contour Feather",
  22658. image: {
  22659. source: "./media/characters/alydar/contour-feather.svg"
  22660. }
  22661. },
  22662. },
  22663. [
  22664. {
  22665. name: "Diplomatic",
  22666. height: math.unit(13, "feet"),
  22667. default: true
  22668. },
  22669. {
  22670. name: "Small",
  22671. height: math.unit(30, "feet")
  22672. },
  22673. {
  22674. name: "Normal",
  22675. height: math.unit(95, "feet"),
  22676. default: true
  22677. },
  22678. {
  22679. name: "Large",
  22680. height: math.unit(285, "feet")
  22681. },
  22682. {
  22683. name: "Incomprehensible",
  22684. height: math.unit(450, "megameters")
  22685. },
  22686. ]
  22687. ))
  22688. characterMakers.push(() => makeCharacter(
  22689. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22690. {
  22691. side: {
  22692. height: math.unit(11, "feet"),
  22693. weight: math.unit(1750, "kg"),
  22694. name: "Side",
  22695. image: {
  22696. source: "./media/characters/selicia/side.svg",
  22697. extra: 440 / 396,
  22698. bottom: 24.8 / 465.979
  22699. }
  22700. },
  22701. maw: {
  22702. height: math.unit(4.665, "feet"),
  22703. name: "Maw",
  22704. image: {
  22705. source: "./media/characters/selicia/maw.svg"
  22706. }
  22707. },
  22708. },
  22709. [
  22710. {
  22711. name: "Normal",
  22712. height: math.unit(11, "feet"),
  22713. default: true
  22714. },
  22715. ]
  22716. ))
  22717. characterMakers.push(() => makeCharacter(
  22718. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22719. {
  22720. side: {
  22721. height: math.unit(2 + 6 / 12, "feet"),
  22722. weight: math.unit(30, "lb"),
  22723. name: "Side",
  22724. image: {
  22725. source: "./media/characters/layla/side.svg",
  22726. extra: 244 / 188,
  22727. bottom: 18.2 / 262.1
  22728. }
  22729. },
  22730. back: {
  22731. height: math.unit(2 + 6 / 12, "feet"),
  22732. weight: math.unit(30, "lb"),
  22733. name: "Back",
  22734. image: {
  22735. source: "./media/characters/layla/back.svg",
  22736. extra: 308 / 241.5,
  22737. bottom: 8.9 / 316.8
  22738. }
  22739. },
  22740. cumming: {
  22741. height: math.unit(2 + 6 / 12, "feet"),
  22742. weight: math.unit(30, "lb"),
  22743. name: "Cumming",
  22744. image: {
  22745. source: "./media/characters/layla/cumming.svg",
  22746. extra: 342 / 279,
  22747. bottom: 595 / 938
  22748. }
  22749. },
  22750. dickFlaccid: {
  22751. height: math.unit(2.595, "feet"),
  22752. name: "Flaccid Genitals",
  22753. image: {
  22754. source: "./media/characters/layla/dick-flaccid.svg"
  22755. }
  22756. },
  22757. dickErect: {
  22758. height: math.unit(2.359, "feet"),
  22759. name: "Erect Genitals",
  22760. image: {
  22761. source: "./media/characters/layla/dick-erect.svg"
  22762. }
  22763. },
  22764. },
  22765. [
  22766. {
  22767. name: "Micro",
  22768. height: math.unit(1, "inch")
  22769. },
  22770. {
  22771. name: "Small",
  22772. height: math.unit(1, "foot")
  22773. },
  22774. {
  22775. name: "Normal",
  22776. height: math.unit(2 + 6 / 12, "feet"),
  22777. default: true
  22778. },
  22779. {
  22780. name: "Macro",
  22781. height: math.unit(200, "feet")
  22782. },
  22783. {
  22784. name: "Megamacro",
  22785. height: math.unit(1000, "miles")
  22786. },
  22787. {
  22788. name: "Planetary",
  22789. height: math.unit(8000, "miles")
  22790. },
  22791. {
  22792. name: "True Layla",
  22793. height: math.unit(200000 * 7, "multiverses")
  22794. },
  22795. ]
  22796. ))
  22797. characterMakers.push(() => makeCharacter(
  22798. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22799. {
  22800. back: {
  22801. height: math.unit(10.5, "feet"),
  22802. weight: math.unit(800, "lb"),
  22803. name: "Back",
  22804. image: {
  22805. source: "./media/characters/knox/back.svg",
  22806. extra: 1486 / 1089,
  22807. bottom: 107 / 1601.4
  22808. }
  22809. },
  22810. side: {
  22811. height: math.unit(10.5, "feet"),
  22812. weight: math.unit(800, "lb"),
  22813. name: "Side",
  22814. image: {
  22815. source: "./media/characters/knox/side.svg",
  22816. extra: 244 / 218,
  22817. bottom: 14 / 260
  22818. }
  22819. },
  22820. },
  22821. [
  22822. {
  22823. name: "Compact",
  22824. height: math.unit(10.5, "feet"),
  22825. default: true
  22826. },
  22827. {
  22828. name: "Dynamax",
  22829. height: math.unit(210, "feet")
  22830. },
  22831. {
  22832. name: "Full Macro",
  22833. height: math.unit(850, "feet")
  22834. },
  22835. ]
  22836. ))
  22837. characterMakers.push(() => makeCharacter(
  22838. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22839. {
  22840. front: {
  22841. height: math.unit(6, "feet"),
  22842. weight: math.unit(152, "lb"),
  22843. name: "Front",
  22844. image: {
  22845. source: "./media/characters/shin-pikachu/front.svg",
  22846. extra: 1574 / 1480,
  22847. bottom: 53.3 / 1626
  22848. }
  22849. },
  22850. hand: {
  22851. height: math.unit(1.055, "feet"),
  22852. name: "Hand",
  22853. image: {
  22854. source: "./media/characters/shin-pikachu/hand.svg"
  22855. }
  22856. },
  22857. foot: {
  22858. height: math.unit(1.1, "feet"),
  22859. name: "Foot",
  22860. image: {
  22861. source: "./media/characters/shin-pikachu/foot.svg"
  22862. }
  22863. },
  22864. collar: {
  22865. height: math.unit(0.386, "feet"),
  22866. name: "Collar",
  22867. image: {
  22868. source: "./media/characters/shin-pikachu/collar.svg"
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Smallest",
  22875. height: math.unit(0.5, "inches")
  22876. },
  22877. {
  22878. name: "Micro",
  22879. height: math.unit(6, "inches")
  22880. },
  22881. {
  22882. name: "Normal",
  22883. height: math.unit(6, "feet"),
  22884. default: true
  22885. },
  22886. {
  22887. name: "Macro",
  22888. height: math.unit(150, "feet")
  22889. },
  22890. ]
  22891. ))
  22892. characterMakers.push(() => makeCharacter(
  22893. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22894. {
  22895. front: {
  22896. height: math.unit(28, "feet"),
  22897. weight: math.unit(10500, "lb"),
  22898. name: "Front",
  22899. image: {
  22900. source: "./media/characters/kayda/front.svg",
  22901. extra: 1536 / 1428,
  22902. bottom: 68.7 / 1603
  22903. }
  22904. },
  22905. back: {
  22906. height: math.unit(28, "feet"),
  22907. weight: math.unit(10500, "lb"),
  22908. name: "Back",
  22909. image: {
  22910. source: "./media/characters/kayda/back.svg",
  22911. extra: 1557 / 1464,
  22912. bottom: 39.5 / 1597.49
  22913. }
  22914. },
  22915. dick: {
  22916. height: math.unit(3.858, "feet"),
  22917. name: "Dick",
  22918. image: {
  22919. source: "./media/characters/kayda/dick.svg"
  22920. }
  22921. },
  22922. },
  22923. [
  22924. {
  22925. name: "Macro",
  22926. height: math.unit(28, "feet"),
  22927. default: true
  22928. },
  22929. ]
  22930. ))
  22931. characterMakers.push(() => makeCharacter(
  22932. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22933. {
  22934. front: {
  22935. height: math.unit(10 + 11 / 12, "feet"),
  22936. weight: math.unit(1400, "lb"),
  22937. name: "Front",
  22938. image: {
  22939. source: "./media/characters/brian/front.svg",
  22940. extra: 737 / 692,
  22941. bottom: 55.4 / 785
  22942. }
  22943. },
  22944. },
  22945. [
  22946. {
  22947. name: "Normal",
  22948. height: math.unit(10 + 11 / 12, "feet"),
  22949. default: true
  22950. },
  22951. ]
  22952. ))
  22953. characterMakers.push(() => makeCharacter(
  22954. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22955. {
  22956. front: {
  22957. height: math.unit(5 + 8 / 12, "feet"),
  22958. weight: math.unit(140, "lb"),
  22959. name: "Front",
  22960. image: {
  22961. source: "./media/characters/khemri/front.svg",
  22962. extra: 4780 / 4059,
  22963. bottom: 80.1 / 4859.25
  22964. }
  22965. },
  22966. },
  22967. [
  22968. {
  22969. name: "Micro",
  22970. height: math.unit(6, "inches")
  22971. },
  22972. {
  22973. name: "Normal",
  22974. height: math.unit(5 + 8 / 12, "feet"),
  22975. default: true
  22976. },
  22977. ]
  22978. ))
  22979. characterMakers.push(() => makeCharacter(
  22980. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22981. {
  22982. front: {
  22983. height: math.unit(13, "feet"),
  22984. weight: math.unit(1700, "lb"),
  22985. name: "Front",
  22986. image: {
  22987. source: "./media/characters/felix-braveheart/front.svg",
  22988. extra: 1222 / 1157,
  22989. bottom: 53.2 / 1280
  22990. }
  22991. },
  22992. back: {
  22993. height: math.unit(13, "feet"),
  22994. weight: math.unit(1700, "lb"),
  22995. name: "Back",
  22996. image: {
  22997. source: "./media/characters/felix-braveheart/back.svg",
  22998. extra: 1277 / 1203,
  22999. bottom: 50.2 / 1327
  23000. }
  23001. },
  23002. feral: {
  23003. height: math.unit(6, "feet"),
  23004. weight: math.unit(400, "lb"),
  23005. name: "Feral",
  23006. image: {
  23007. source: "./media/characters/felix-braveheart/feral.svg",
  23008. extra: 682 / 625,
  23009. bottom: 6.9 / 688
  23010. }
  23011. },
  23012. },
  23013. [
  23014. {
  23015. name: "Normal",
  23016. height: math.unit(13, "feet"),
  23017. default: true
  23018. },
  23019. ]
  23020. ))
  23021. characterMakers.push(() => makeCharacter(
  23022. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23023. {
  23024. side: {
  23025. height: math.unit(5 + 11 / 12, "feet"),
  23026. weight: math.unit(1400, "lb"),
  23027. name: "Side",
  23028. image: {
  23029. source: "./media/characters/shadow-blade/side.svg",
  23030. extra: 1726 / 1267,
  23031. bottom: 58.4 / 1785
  23032. }
  23033. },
  23034. },
  23035. [
  23036. {
  23037. name: "Normal",
  23038. height: math.unit(5 + 11 / 12, "feet"),
  23039. default: true
  23040. },
  23041. ]
  23042. ))
  23043. characterMakers.push(() => makeCharacter(
  23044. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23045. {
  23046. front: {
  23047. height: math.unit(1 + 6 / 12, "feet"),
  23048. weight: math.unit(25, "lb"),
  23049. name: "Front",
  23050. image: {
  23051. source: "./media/characters/karla-halldor/front.svg",
  23052. extra: 1459 / 1383,
  23053. bottom: 12 / 1472
  23054. }
  23055. },
  23056. },
  23057. [
  23058. {
  23059. name: "Normal",
  23060. height: math.unit(1 + 6 / 12, "feet"),
  23061. default: true
  23062. },
  23063. ]
  23064. ))
  23065. characterMakers.push(() => makeCharacter(
  23066. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23067. {
  23068. front: {
  23069. height: math.unit(6 + 2 / 12, "feet"),
  23070. weight: math.unit(160, "lb"),
  23071. name: "Front",
  23072. image: {
  23073. source: "./media/characters/ariam/front.svg",
  23074. extra: 714 / 617,
  23075. bottom: 23.4 / 737,
  23076. }
  23077. },
  23078. squatting: {
  23079. height: math.unit(4.1, "feet"),
  23080. weight: math.unit(160, "lb"),
  23081. name: "Squatting",
  23082. image: {
  23083. source: "./media/characters/ariam/squatting.svg",
  23084. extra: 2617 / 2112,
  23085. bottom: 61.2 / 2681,
  23086. }
  23087. },
  23088. },
  23089. [
  23090. {
  23091. name: "Normal",
  23092. height: math.unit(6 + 2 / 12, "feet"),
  23093. default: true
  23094. },
  23095. {
  23096. name: "Normal+",
  23097. height: math.unit(4, "meters")
  23098. },
  23099. {
  23100. name: "Macro",
  23101. height: math.unit(50, "meters")
  23102. },
  23103. {
  23104. name: "Macro+",
  23105. height: math.unit(100, "meters")
  23106. },
  23107. {
  23108. name: "Megamacro",
  23109. height: math.unit(20, "km")
  23110. },
  23111. ]
  23112. ))
  23113. characterMakers.push(() => makeCharacter(
  23114. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23115. {
  23116. front: {
  23117. height: math.unit(1.67, "meters"),
  23118. weight: math.unit(140, "lb"),
  23119. name: "Front",
  23120. image: {
  23121. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23122. extra: 438 / 410,
  23123. bottom: 0.75 / 439
  23124. }
  23125. },
  23126. },
  23127. [
  23128. {
  23129. name: "Shrunken",
  23130. height: math.unit(7.6, "cm")
  23131. },
  23132. {
  23133. name: "Human Scale",
  23134. height: math.unit(1.67, "meters")
  23135. },
  23136. {
  23137. name: "Wolxi Scale",
  23138. height: math.unit(36.7, "meters"),
  23139. default: true
  23140. },
  23141. ]
  23142. ))
  23143. characterMakers.push(() => makeCharacter(
  23144. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23145. {
  23146. front: {
  23147. height: math.unit(1.73, "meters"),
  23148. weight: math.unit(240, "lb"),
  23149. name: "Front",
  23150. image: {
  23151. source: "./media/characters/izue-two-mothers/front.svg",
  23152. extra: 469 / 437,
  23153. bottom: 1.24 / 470.6
  23154. }
  23155. },
  23156. },
  23157. [
  23158. {
  23159. name: "Shrunken",
  23160. height: math.unit(7.86, "cm")
  23161. },
  23162. {
  23163. name: "Human Scale",
  23164. height: math.unit(1.73, "meters")
  23165. },
  23166. {
  23167. name: "Wolxi Scale",
  23168. height: math.unit(38, "meters"),
  23169. default: true
  23170. },
  23171. ]
  23172. ))
  23173. characterMakers.push(() => makeCharacter(
  23174. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23175. {
  23176. front: {
  23177. height: math.unit(1.55, "meters"),
  23178. weight: math.unit(120, "lb"),
  23179. name: "Front",
  23180. image: {
  23181. source: "./media/characters/teeku-love-shack/front.svg",
  23182. extra: 387 / 362,
  23183. bottom: 1.51 / 388
  23184. }
  23185. },
  23186. },
  23187. [
  23188. {
  23189. name: "Shrunken",
  23190. height: math.unit(7, "cm")
  23191. },
  23192. {
  23193. name: "Human Scale",
  23194. height: math.unit(1.55, "meters")
  23195. },
  23196. {
  23197. name: "Wolxi Scale",
  23198. height: math.unit(34.1, "meters"),
  23199. default: true
  23200. },
  23201. ]
  23202. ))
  23203. characterMakers.push(() => makeCharacter(
  23204. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23205. {
  23206. front: {
  23207. height: math.unit(1.83, "meters"),
  23208. weight: math.unit(135, "lb"),
  23209. name: "Front",
  23210. image: {
  23211. source: "./media/characters/dejma-the-red/front.svg",
  23212. extra: 480 / 458,
  23213. bottom: 1.8 / 482
  23214. }
  23215. },
  23216. },
  23217. [
  23218. {
  23219. name: "Shrunken",
  23220. height: math.unit(8.3, "cm")
  23221. },
  23222. {
  23223. name: "Human Scale",
  23224. height: math.unit(1.83, "meters")
  23225. },
  23226. {
  23227. name: "Wolxi Scale",
  23228. height: math.unit(40, "meters"),
  23229. default: true
  23230. },
  23231. ]
  23232. ))
  23233. characterMakers.push(() => makeCharacter(
  23234. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23235. {
  23236. front: {
  23237. height: math.unit(1.78, "meters"),
  23238. weight: math.unit(65, "kg"),
  23239. name: "Front",
  23240. image: {
  23241. source: "./media/characters/aki/front.svg",
  23242. extra: 452 / 415
  23243. }
  23244. },
  23245. frontNsfw: {
  23246. height: math.unit(1.78, "meters"),
  23247. weight: math.unit(65, "kg"),
  23248. name: "Front (NSFW)",
  23249. image: {
  23250. source: "./media/characters/aki/front-nsfw.svg",
  23251. extra: 452 / 415
  23252. }
  23253. },
  23254. back: {
  23255. height: math.unit(1.78, "meters"),
  23256. weight: math.unit(65, "kg"),
  23257. name: "Back",
  23258. image: {
  23259. source: "./media/characters/aki/back.svg",
  23260. extra: 452 / 415
  23261. }
  23262. },
  23263. rump: {
  23264. height: math.unit(2.05, "feet"),
  23265. name: "Rump",
  23266. image: {
  23267. source: "./media/characters/aki/rump.svg"
  23268. }
  23269. },
  23270. dick: {
  23271. height: math.unit(0.95, "feet"),
  23272. name: "Dick",
  23273. image: {
  23274. source: "./media/characters/aki/dick.svg"
  23275. }
  23276. },
  23277. },
  23278. [
  23279. {
  23280. name: "Micro",
  23281. height: math.unit(15, "cm")
  23282. },
  23283. {
  23284. name: "Normal",
  23285. height: math.unit(178, "cm"),
  23286. default: true
  23287. },
  23288. {
  23289. name: "Macro",
  23290. height: math.unit(214, "m")
  23291. },
  23292. {
  23293. name: "Macro+",
  23294. height: math.unit(534, "m")
  23295. },
  23296. ]
  23297. ))
  23298. characterMakers.push(() => makeCharacter(
  23299. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23300. {
  23301. front: {
  23302. height: math.unit(5 + 5 / 12, "feet"),
  23303. weight: math.unit(120, "lb"),
  23304. name: "Front",
  23305. image: {
  23306. source: "./media/characters/ari/front.svg",
  23307. extra: 714.5 / 682,
  23308. bottom: 8 / 722.5
  23309. }
  23310. },
  23311. },
  23312. [
  23313. {
  23314. name: "Normal",
  23315. height: math.unit(5 + 5 / 12, "feet")
  23316. },
  23317. {
  23318. name: "Macro",
  23319. height: math.unit(100, "feet"),
  23320. default: true
  23321. },
  23322. {
  23323. name: "Megamacro",
  23324. height: math.unit(100, "miles")
  23325. },
  23326. {
  23327. name: "Gigamacro",
  23328. height: math.unit(80000, "miles")
  23329. },
  23330. ]
  23331. ))
  23332. characterMakers.push(() => makeCharacter(
  23333. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23334. {
  23335. side: {
  23336. height: math.unit(9, "feet"),
  23337. weight: math.unit(400, "kg"),
  23338. name: "Side",
  23339. image: {
  23340. source: "./media/characters/bolt/side.svg",
  23341. extra: 1126 / 896,
  23342. bottom: 60 / 1187.3,
  23343. }
  23344. },
  23345. },
  23346. [
  23347. {
  23348. name: "Micro",
  23349. height: math.unit(5, "inches")
  23350. },
  23351. {
  23352. name: "Normal",
  23353. height: math.unit(9, "feet"),
  23354. default: true
  23355. },
  23356. {
  23357. name: "Macro",
  23358. height: math.unit(700, "feet")
  23359. },
  23360. {
  23361. name: "Max Size",
  23362. height: math.unit(1.52e22, "yottameters")
  23363. },
  23364. ]
  23365. ))
  23366. characterMakers.push(() => makeCharacter(
  23367. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23368. {
  23369. front: {
  23370. height: math.unit(4.53, "meters"),
  23371. weight: math.unit(3, "tons"),
  23372. name: "Front",
  23373. image: {
  23374. source: "./media/characters/draekon-sylviar/front.svg",
  23375. extra: 1228 / 1068,
  23376. bottom: 41 / 1270
  23377. }
  23378. },
  23379. tail: {
  23380. height: math.unit(1.772, "meter"),
  23381. name: "Tail",
  23382. image: {
  23383. source: "./media/characters/draekon-sylviar/tail.svg"
  23384. }
  23385. },
  23386. head: {
  23387. height: math.unit(1.331, "meter"),
  23388. name: "Head",
  23389. image: {
  23390. source: "./media/characters/draekon-sylviar/head.svg"
  23391. }
  23392. },
  23393. hand: {
  23394. height: math.unit(0.564, "meter"),
  23395. name: "Hand",
  23396. image: {
  23397. source: "./media/characters/draekon-sylviar/hand.svg"
  23398. }
  23399. },
  23400. foot: {
  23401. height: math.unit(0.621, "meter"),
  23402. name: "Foot",
  23403. image: {
  23404. source: "./media/characters/draekon-sylviar/foot.svg",
  23405. bottom: 32 / 324
  23406. }
  23407. },
  23408. dick: {
  23409. height: math.unit(61, "cm"),
  23410. name: "Dick",
  23411. image: {
  23412. source: "./media/characters/draekon-sylviar/dick.svg"
  23413. }
  23414. },
  23415. dickseparated: {
  23416. height: math.unit(61, "cm"),
  23417. name: "Dick-separated",
  23418. image: {
  23419. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23420. }
  23421. },
  23422. },
  23423. [
  23424. {
  23425. name: "Small",
  23426. height: math.unit(4.53 / 2, "meters"),
  23427. default: true
  23428. },
  23429. {
  23430. name: "Normal",
  23431. height: math.unit(4.53, "meters"),
  23432. default: true
  23433. },
  23434. {
  23435. name: "Large",
  23436. height: math.unit(4.53 * 2, "meters"),
  23437. },
  23438. ]
  23439. ))
  23440. characterMakers.push(() => makeCharacter(
  23441. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23442. {
  23443. front: {
  23444. height: math.unit(6 + 2 / 12, "feet"),
  23445. weight: math.unit(180, "lb"),
  23446. name: "Front",
  23447. image: {
  23448. source: "./media/characters/brawler/front.svg",
  23449. extra: 3301 / 3027,
  23450. bottom: 138 / 3439
  23451. }
  23452. },
  23453. },
  23454. [
  23455. {
  23456. name: "Normal",
  23457. height: math.unit(6 + 2 / 12, "feet"),
  23458. default: true
  23459. },
  23460. ]
  23461. ))
  23462. characterMakers.push(() => makeCharacter(
  23463. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23464. {
  23465. front: {
  23466. height: math.unit(11, "feet"),
  23467. weight: math.unit(1000, "lb"),
  23468. name: "Front",
  23469. image: {
  23470. source: "./media/characters/alex/front.svg",
  23471. bottom: 44.5 / 620
  23472. }
  23473. },
  23474. },
  23475. [
  23476. {
  23477. name: "Micro",
  23478. height: math.unit(5, "inches")
  23479. },
  23480. {
  23481. name: "Normal",
  23482. height: math.unit(11, "feet"),
  23483. default: true
  23484. },
  23485. {
  23486. name: "Macro",
  23487. height: math.unit(9.5e9, "feet")
  23488. },
  23489. {
  23490. name: "Max Size",
  23491. height: math.unit(1.4e283, "yottameters")
  23492. },
  23493. ]
  23494. ))
  23495. characterMakers.push(() => makeCharacter(
  23496. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23497. {
  23498. female: {
  23499. height: math.unit(29.9, "m"),
  23500. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23501. name: "Female",
  23502. image: {
  23503. source: "./media/characters/zenari/female.svg",
  23504. extra: 3281.6 / 3217,
  23505. bottom: 72.2 / 3353
  23506. }
  23507. },
  23508. male: {
  23509. height: math.unit(27.7, "m"),
  23510. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23511. name: "Male",
  23512. image: {
  23513. source: "./media/characters/zenari/male.svg",
  23514. extra: 3008 / 2991,
  23515. bottom: 54.6 / 3069
  23516. }
  23517. },
  23518. },
  23519. [
  23520. {
  23521. name: "Macro",
  23522. height: math.unit(29.7, "meters"),
  23523. default: true
  23524. },
  23525. ]
  23526. ))
  23527. characterMakers.push(() => makeCharacter(
  23528. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23529. {
  23530. female: {
  23531. height: math.unit(23.8, "m"),
  23532. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23533. name: "Female",
  23534. image: {
  23535. source: "./media/characters/mactarian/female.svg",
  23536. extra: 2662 / 2569,
  23537. bottom: 73 / 2736
  23538. }
  23539. },
  23540. male: {
  23541. height: math.unit(23.8, "m"),
  23542. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23543. name: "Male",
  23544. image: {
  23545. source: "./media/characters/mactarian/male.svg",
  23546. extra: 2673 / 2600,
  23547. bottom: 76 / 2750
  23548. }
  23549. },
  23550. },
  23551. [
  23552. {
  23553. name: "Macro",
  23554. height: math.unit(23.8, "meters"),
  23555. default: true
  23556. },
  23557. ]
  23558. ))
  23559. characterMakers.push(() => makeCharacter(
  23560. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23561. {
  23562. female: {
  23563. height: math.unit(19.3, "m"),
  23564. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23565. name: "Female",
  23566. image: {
  23567. source: "./media/characters/umok/female.svg",
  23568. extra: 2186 / 2078,
  23569. bottom: 87 / 2277
  23570. }
  23571. },
  23572. male: {
  23573. height: math.unit(19.5, "m"),
  23574. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23575. name: "Male",
  23576. image: {
  23577. source: "./media/characters/umok/male.svg",
  23578. extra: 2233 / 2140,
  23579. bottom: 24.4 / 2258
  23580. }
  23581. },
  23582. },
  23583. [
  23584. {
  23585. name: "Macro",
  23586. height: math.unit(19.3, "meters"),
  23587. default: true
  23588. },
  23589. ]
  23590. ))
  23591. characterMakers.push(() => makeCharacter(
  23592. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23593. {
  23594. female: {
  23595. height: math.unit(26.15, "m"),
  23596. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23597. name: "Female",
  23598. image: {
  23599. source: "./media/characters/joraxian/female.svg",
  23600. extra: 2912 / 2824,
  23601. bottom: 36 / 2956
  23602. }
  23603. },
  23604. male: {
  23605. height: math.unit(25.4, "m"),
  23606. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23607. name: "Male",
  23608. image: {
  23609. source: "./media/characters/joraxian/male.svg",
  23610. extra: 2877 / 2721,
  23611. bottom: 82 / 2967
  23612. }
  23613. },
  23614. },
  23615. [
  23616. {
  23617. name: "Macro",
  23618. height: math.unit(26.15, "meters"),
  23619. default: true
  23620. },
  23621. ]
  23622. ))
  23623. characterMakers.push(() => makeCharacter(
  23624. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23625. {
  23626. female: {
  23627. height: math.unit(21.6, "m"),
  23628. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23629. name: "Female",
  23630. image: {
  23631. source: "./media/characters/sthara/female.svg",
  23632. extra: 2516 / 2347,
  23633. bottom: 21.5 / 2537
  23634. }
  23635. },
  23636. male: {
  23637. height: math.unit(24, "m"),
  23638. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23639. name: "Male",
  23640. image: {
  23641. source: "./media/characters/sthara/male.svg",
  23642. extra: 2732 / 2607,
  23643. bottom: 23 / 2732
  23644. }
  23645. },
  23646. },
  23647. [
  23648. {
  23649. name: "Macro",
  23650. height: math.unit(21.6, "meters"),
  23651. default: true
  23652. },
  23653. ]
  23654. ))
  23655. characterMakers.push(() => makeCharacter(
  23656. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23657. {
  23658. front: {
  23659. height: math.unit(6 + 4 / 12, "feet"),
  23660. weight: math.unit(175, "lb"),
  23661. name: "Front",
  23662. image: {
  23663. source: "./media/characters/luka-bryzant/front.svg",
  23664. extra: 311 / 289,
  23665. bottom: 4 / 315
  23666. }
  23667. },
  23668. back: {
  23669. height: math.unit(6 + 4 / 12, "feet"),
  23670. weight: math.unit(175, "lb"),
  23671. name: "Back",
  23672. image: {
  23673. source: "./media/characters/luka-bryzant/back.svg",
  23674. extra: 311 / 289,
  23675. bottom: 3.8 / 313.7
  23676. }
  23677. },
  23678. },
  23679. [
  23680. {
  23681. name: "Micro",
  23682. height: math.unit(10, "inches")
  23683. },
  23684. {
  23685. name: "Normal",
  23686. height: math.unit(6 + 4 / 12, "feet"),
  23687. default: true
  23688. },
  23689. {
  23690. name: "Large",
  23691. height: math.unit(12, "feet")
  23692. },
  23693. ]
  23694. ))
  23695. characterMakers.push(() => makeCharacter(
  23696. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23697. {
  23698. front: {
  23699. height: math.unit(5 + 7 / 12, "feet"),
  23700. weight: math.unit(185, "lb"),
  23701. name: "Front",
  23702. image: {
  23703. source: "./media/characters/aman-aquila/front.svg",
  23704. extra: 1013 / 976,
  23705. bottom: 45.6 / 1057
  23706. }
  23707. },
  23708. side: {
  23709. height: math.unit(5 + 7 / 12, "feet"),
  23710. weight: math.unit(185, "lb"),
  23711. name: "Side",
  23712. image: {
  23713. source: "./media/characters/aman-aquila/side.svg",
  23714. extra: 1054 / 1011,
  23715. bottom: 15 / 1070
  23716. }
  23717. },
  23718. back: {
  23719. height: math.unit(5 + 7 / 12, "feet"),
  23720. weight: math.unit(185, "lb"),
  23721. name: "Back",
  23722. image: {
  23723. source: "./media/characters/aman-aquila/back.svg",
  23724. extra: 1026 / 970,
  23725. bottom: 12 / 1039
  23726. }
  23727. },
  23728. head: {
  23729. height: math.unit(1.211, "feet"),
  23730. name: "Head",
  23731. image: {
  23732. source: "./media/characters/aman-aquila/head.svg",
  23733. }
  23734. },
  23735. },
  23736. [
  23737. {
  23738. name: "Minimicro",
  23739. height: math.unit(0.057, "inches")
  23740. },
  23741. {
  23742. name: "Micro",
  23743. height: math.unit(7, "inches")
  23744. },
  23745. {
  23746. name: "Mini",
  23747. height: math.unit(3 + 7 / 12, "feet")
  23748. },
  23749. {
  23750. name: "Normal",
  23751. height: math.unit(5 + 7 / 12, "feet"),
  23752. default: true
  23753. },
  23754. {
  23755. name: "Macro",
  23756. height: math.unit(157 + 7 / 12, "feet")
  23757. },
  23758. {
  23759. name: "Megamacro",
  23760. height: math.unit(1557 + 7 / 12, "feet")
  23761. },
  23762. {
  23763. name: "Gigamacro",
  23764. height: math.unit(15557 + 7 / 12, "feet")
  23765. },
  23766. ]
  23767. ))
  23768. characterMakers.push(() => makeCharacter(
  23769. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23770. {
  23771. front: {
  23772. height: math.unit(3 + 2 / 12, "inches"),
  23773. weight: math.unit(0.3, "ounces"),
  23774. name: "Front",
  23775. image: {
  23776. source: "./media/characters/hiphae/front.svg",
  23777. extra: 1931 / 1683,
  23778. bottom: 24 / 1955
  23779. }
  23780. },
  23781. },
  23782. [
  23783. {
  23784. name: "Normal",
  23785. height: math.unit(3 + 1 / 2, "inches"),
  23786. default: true
  23787. },
  23788. ]
  23789. ))
  23790. characterMakers.push(() => makeCharacter(
  23791. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23792. {
  23793. front: {
  23794. height: math.unit(5 + 10 / 12, "feet"),
  23795. weight: math.unit(165, "lb"),
  23796. name: "Front",
  23797. image: {
  23798. source: "./media/characters/nicky/front.svg",
  23799. extra: 3144 / 2886,
  23800. bottom: 45.6 / 3192
  23801. }
  23802. },
  23803. back: {
  23804. height: math.unit(5 + 10 / 12, "feet"),
  23805. weight: math.unit(165, "lb"),
  23806. name: "Back",
  23807. image: {
  23808. source: "./media/characters/nicky/back.svg",
  23809. extra: 3055 / 2804,
  23810. bottom: 28.4 / 3087
  23811. }
  23812. },
  23813. frontclothed: {
  23814. height: math.unit(5 + 10 / 12, "feet"),
  23815. weight: math.unit(165, "lb"),
  23816. name: "Front-clothed",
  23817. image: {
  23818. source: "./media/characters/nicky/front-clothed.svg",
  23819. extra: 3184.9 / 2926.9,
  23820. bottom: 86.5 / 3239.9
  23821. }
  23822. },
  23823. foot: {
  23824. height: math.unit(1.16, "feet"),
  23825. name: "Foot",
  23826. image: {
  23827. source: "./media/characters/nicky/foot.svg"
  23828. }
  23829. },
  23830. feet: {
  23831. height: math.unit(1.34, "feet"),
  23832. name: "Feet",
  23833. image: {
  23834. source: "./media/characters/nicky/feet.svg"
  23835. }
  23836. },
  23837. maw: {
  23838. height: math.unit(0.9, "feet"),
  23839. name: "Maw",
  23840. image: {
  23841. source: "./media/characters/nicky/maw.svg"
  23842. }
  23843. },
  23844. },
  23845. [
  23846. {
  23847. name: "Normal",
  23848. height: math.unit(5 + 10 / 12, "feet"),
  23849. default: true
  23850. },
  23851. {
  23852. name: "Macro",
  23853. height: math.unit(60, "feet")
  23854. },
  23855. {
  23856. name: "Megamacro",
  23857. height: math.unit(1, "mile")
  23858. },
  23859. ]
  23860. ))
  23861. characterMakers.push(() => makeCharacter(
  23862. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23863. {
  23864. side: {
  23865. height: math.unit(10, "feet"),
  23866. weight: math.unit(600, "lb"),
  23867. name: "Side",
  23868. image: {
  23869. source: "./media/characters/blair/side.svg",
  23870. bottom: 16.6 / 475,
  23871. extra: 458 / 431
  23872. }
  23873. },
  23874. },
  23875. [
  23876. {
  23877. name: "Micro",
  23878. height: math.unit(8, "inches")
  23879. },
  23880. {
  23881. name: "Normal",
  23882. height: math.unit(10, "feet"),
  23883. default: true
  23884. },
  23885. {
  23886. name: "Macro",
  23887. height: math.unit(180, "feet")
  23888. },
  23889. ]
  23890. ))
  23891. characterMakers.push(() => makeCharacter(
  23892. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23893. {
  23894. front: {
  23895. height: math.unit(5 + 4 / 12, "feet"),
  23896. weight: math.unit(125, "lb"),
  23897. name: "Front",
  23898. image: {
  23899. source: "./media/characters/fisher/front.svg",
  23900. extra: 444 / 390,
  23901. bottom: 2 / 444.8
  23902. }
  23903. },
  23904. },
  23905. [
  23906. {
  23907. name: "Micro",
  23908. height: math.unit(4, "inches")
  23909. },
  23910. {
  23911. name: "Normal",
  23912. height: math.unit(5 + 4 / 12, "feet"),
  23913. default: true
  23914. },
  23915. {
  23916. name: "Macro",
  23917. height: math.unit(100, "feet")
  23918. },
  23919. ]
  23920. ))
  23921. characterMakers.push(() => makeCharacter(
  23922. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23923. {
  23924. front: {
  23925. height: math.unit(6.71, "feet"),
  23926. weight: math.unit(200, "lb"),
  23927. capacity: math.unit(1000000, "people"),
  23928. name: "Front",
  23929. image: {
  23930. source: "./media/characters/gliss/front.svg",
  23931. extra: 2347 / 2231,
  23932. bottom: 113 / 2462
  23933. }
  23934. },
  23935. hammerspaceSize: {
  23936. height: math.unit(6.71 * 717, "feet"),
  23937. weight: math.unit(200, "lb"),
  23938. capacity: math.unit(1000000, "people"),
  23939. name: "Hammerspace Size",
  23940. image: {
  23941. source: "./media/characters/gliss/front.svg",
  23942. extra: 2347 / 2231,
  23943. bottom: 113 / 2462
  23944. }
  23945. },
  23946. },
  23947. [
  23948. {
  23949. name: "Normal",
  23950. height: math.unit(6.71, "feet"),
  23951. default: true
  23952. },
  23953. ]
  23954. ))
  23955. characterMakers.push(() => makeCharacter(
  23956. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23957. {
  23958. side: {
  23959. height: math.unit(1.44, "m"),
  23960. weight: math.unit(80, "kg"),
  23961. name: "Side",
  23962. image: {
  23963. source: "./media/characters/dune-anderson/side.svg",
  23964. bottom: 49 / 1426
  23965. }
  23966. },
  23967. },
  23968. [
  23969. {
  23970. name: "Wolf-sized",
  23971. height: math.unit(1.44, "meters")
  23972. },
  23973. {
  23974. name: "Normal",
  23975. height: math.unit(5.05, "meters"),
  23976. default: true
  23977. },
  23978. {
  23979. name: "Big",
  23980. height: math.unit(14.4, "meters")
  23981. },
  23982. {
  23983. name: "Huge",
  23984. height: math.unit(144, "meters")
  23985. },
  23986. ]
  23987. ))
  23988. characterMakers.push(() => makeCharacter(
  23989. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23990. {
  23991. front: {
  23992. height: math.unit(7, "feet"),
  23993. weight: math.unit(425, "lb"),
  23994. name: "Front",
  23995. image: {
  23996. source: "./media/characters/hind/front.svg",
  23997. extra: 2091 / 1860,
  23998. bottom: 129 / 2220
  23999. }
  24000. },
  24001. back: {
  24002. height: math.unit(7, "feet"),
  24003. weight: math.unit(425, "lb"),
  24004. name: "Back",
  24005. image: {
  24006. source: "./media/characters/hind/back.svg",
  24007. extra: 2091 / 1860,
  24008. bottom: 24.6 / 2309
  24009. }
  24010. },
  24011. tail: {
  24012. height: math.unit(2.8, "feet"),
  24013. name: "Tail",
  24014. image: {
  24015. source: "./media/characters/hind/tail.svg"
  24016. }
  24017. },
  24018. head: {
  24019. height: math.unit(2.55, "feet"),
  24020. name: "Head",
  24021. image: {
  24022. source: "./media/characters/hind/head.svg"
  24023. }
  24024. },
  24025. },
  24026. [
  24027. {
  24028. name: "XS",
  24029. height: math.unit(0.7, "feet")
  24030. },
  24031. {
  24032. name: "Normal",
  24033. height: math.unit(7, "feet"),
  24034. default: true
  24035. },
  24036. {
  24037. name: "XL",
  24038. height: math.unit(70, "feet")
  24039. },
  24040. ]
  24041. ))
  24042. characterMakers.push(() => makeCharacter(
  24043. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24044. {
  24045. front: {
  24046. height: math.unit(6, "feet"),
  24047. weight: math.unit(150, "lb"),
  24048. name: "Front",
  24049. image: {
  24050. source: "./media/characters/dylan-skaven/front.svg",
  24051. extra: 2318 / 2063,
  24052. bottom: 93.4 / 2410
  24053. }
  24054. },
  24055. },
  24056. [
  24057. {
  24058. name: "Nano",
  24059. height: math.unit(1, "mm")
  24060. },
  24061. {
  24062. name: "Micro",
  24063. height: math.unit(1, "cm")
  24064. },
  24065. {
  24066. name: "Normal",
  24067. height: math.unit(2.1, "meters"),
  24068. default: true
  24069. },
  24070. ]
  24071. ))
  24072. characterMakers.push(() => makeCharacter(
  24073. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24074. {
  24075. front: {
  24076. height: math.unit(7 + 5 / 12, "feet"),
  24077. weight: math.unit(357, "lb"),
  24078. name: "Front",
  24079. image: {
  24080. source: "./media/characters/solex-draconov/front.svg",
  24081. extra: 1993 / 1865,
  24082. bottom: 117 / 2111
  24083. }
  24084. },
  24085. },
  24086. [
  24087. {
  24088. name: "Natural Height",
  24089. height: math.unit(7 + 5 / 12, "feet"),
  24090. default: true
  24091. },
  24092. {
  24093. name: "Macro",
  24094. height: math.unit(350, "feet")
  24095. },
  24096. {
  24097. name: "Macro+",
  24098. height: math.unit(1000, "feet")
  24099. },
  24100. {
  24101. name: "Megamacro",
  24102. height: math.unit(20, "km")
  24103. },
  24104. {
  24105. name: "Megamacro+",
  24106. height: math.unit(1000, "km")
  24107. },
  24108. {
  24109. name: "Gigamacro",
  24110. height: math.unit(2.5, "Gm")
  24111. },
  24112. {
  24113. name: "Teramacro",
  24114. height: math.unit(15, "Tm")
  24115. },
  24116. {
  24117. name: "Galactic",
  24118. height: math.unit(30, "Zm")
  24119. },
  24120. {
  24121. name: "Universal",
  24122. height: math.unit(21000, "Ym")
  24123. },
  24124. {
  24125. name: "Omniversal",
  24126. height: math.unit(9.861e50, "Ym")
  24127. },
  24128. {
  24129. name: "Existential",
  24130. height: math.unit(1e300, "meters")
  24131. },
  24132. ]
  24133. ))
  24134. characterMakers.push(() => makeCharacter(
  24135. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24136. {
  24137. side: {
  24138. height: math.unit(25, "feet"),
  24139. weight: math.unit(90000, "lb"),
  24140. name: "Side",
  24141. image: {
  24142. source: "./media/characters/mandarax/side.svg",
  24143. extra: 614 / 332,
  24144. bottom: 55 / 630
  24145. }
  24146. },
  24147. head: {
  24148. height: math.unit(11.4, "feet"),
  24149. name: "Head",
  24150. image: {
  24151. source: "./media/characters/mandarax/head.svg"
  24152. }
  24153. },
  24154. belly: {
  24155. height: math.unit(33, "feet"),
  24156. name: "Belly",
  24157. capacity: math.unit(500, "people"),
  24158. image: {
  24159. source: "./media/characters/mandarax/belly.svg"
  24160. }
  24161. },
  24162. dick: {
  24163. height: math.unit(8.46, "feet"),
  24164. name: "Dick",
  24165. image: {
  24166. source: "./media/characters/mandarax/dick.svg"
  24167. }
  24168. },
  24169. top: {
  24170. height: math.unit(28, "meters"),
  24171. name: "Top",
  24172. image: {
  24173. source: "./media/characters/mandarax/top.svg"
  24174. }
  24175. },
  24176. },
  24177. [
  24178. {
  24179. name: "Normal",
  24180. height: math.unit(25, "feet"),
  24181. default: true
  24182. },
  24183. ]
  24184. ))
  24185. characterMakers.push(() => makeCharacter(
  24186. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24187. {
  24188. front: {
  24189. height: math.unit(5, "feet"),
  24190. weight: math.unit(90, "lb"),
  24191. name: "Front",
  24192. image: {
  24193. source: "./media/characters/pixil/front.svg",
  24194. extra: 2000 / 1618,
  24195. bottom: 12.3 / 2011
  24196. }
  24197. },
  24198. },
  24199. [
  24200. {
  24201. name: "Normal",
  24202. height: math.unit(5, "feet"),
  24203. default: true
  24204. },
  24205. {
  24206. name: "Megamacro",
  24207. height: math.unit(10, "miles"),
  24208. },
  24209. ]
  24210. ))
  24211. characterMakers.push(() => makeCharacter(
  24212. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24213. {
  24214. front: {
  24215. height: math.unit(7 + 2 / 12, "feet"),
  24216. weight: math.unit(200, "lb"),
  24217. name: "Front",
  24218. image: {
  24219. source: "./media/characters/angel/front.svg",
  24220. extra: 1830 / 1737,
  24221. bottom: 22.6 / 1854,
  24222. }
  24223. },
  24224. },
  24225. [
  24226. {
  24227. name: "Normal",
  24228. height: math.unit(7 + 2 / 12, "feet"),
  24229. default: true
  24230. },
  24231. {
  24232. name: "Macro",
  24233. height: math.unit(1000, "feet")
  24234. },
  24235. {
  24236. name: "Megamacro",
  24237. height: math.unit(2, "miles")
  24238. },
  24239. {
  24240. name: "Gigamacro",
  24241. height: math.unit(20, "earths")
  24242. },
  24243. ]
  24244. ))
  24245. characterMakers.push(() => makeCharacter(
  24246. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24247. {
  24248. front: {
  24249. height: math.unit(5, "feet"),
  24250. weight: math.unit(180, "lb"),
  24251. name: "Front",
  24252. image: {
  24253. source: "./media/characters/mekana/front.svg",
  24254. extra: 1671 / 1605,
  24255. bottom: 3.5 / 1691
  24256. }
  24257. },
  24258. side: {
  24259. height: math.unit(5, "feet"),
  24260. weight: math.unit(180, "lb"),
  24261. name: "Side",
  24262. image: {
  24263. source: "./media/characters/mekana/side.svg",
  24264. extra: 1671 / 1605,
  24265. bottom: 3.5 / 1691
  24266. }
  24267. },
  24268. back: {
  24269. height: math.unit(5, "feet"),
  24270. weight: math.unit(180, "lb"),
  24271. name: "Back",
  24272. image: {
  24273. source: "./media/characters/mekana/back.svg",
  24274. extra: 1671 / 1605,
  24275. bottom: 3.5 / 1691
  24276. }
  24277. },
  24278. },
  24279. [
  24280. {
  24281. name: "Normal",
  24282. height: math.unit(5, "feet"),
  24283. default: true
  24284. },
  24285. ]
  24286. ))
  24287. characterMakers.push(() => makeCharacter(
  24288. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24289. {
  24290. front: {
  24291. height: math.unit(4 + 6 / 12, "feet"),
  24292. weight: math.unit(80, "lb"),
  24293. name: "Front",
  24294. image: {
  24295. source: "./media/characters/pixie/front.svg",
  24296. extra: 1924 / 1825,
  24297. bottom: 22.4 / 1946
  24298. }
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Normal",
  24304. height: math.unit(4 + 6 / 12, "feet"),
  24305. default: true
  24306. },
  24307. {
  24308. name: "Macro",
  24309. height: math.unit(40, "feet")
  24310. },
  24311. ]
  24312. ))
  24313. characterMakers.push(() => makeCharacter(
  24314. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24315. {
  24316. front: {
  24317. height: math.unit(2.1, "meters"),
  24318. weight: math.unit(200, "lb"),
  24319. name: "Front",
  24320. image: {
  24321. source: "./media/characters/the-lascivious/front.svg",
  24322. extra: 1 / 0.893,
  24323. bottom: 3.5 / 573.7
  24324. }
  24325. },
  24326. },
  24327. [
  24328. {
  24329. name: "Human Scale",
  24330. height: math.unit(2.1, "meters")
  24331. },
  24332. {
  24333. name: "Wolxi Scale",
  24334. height: math.unit(46.2, "m"),
  24335. default: true
  24336. },
  24337. {
  24338. name: "Boinker of Buildings",
  24339. height: math.unit(10, "km")
  24340. },
  24341. {
  24342. name: "Shagger of Skyscrapers",
  24343. height: math.unit(40, "km")
  24344. },
  24345. {
  24346. name: "Banger of Boroughs",
  24347. height: math.unit(4000, "km")
  24348. },
  24349. {
  24350. name: "Screwer of States",
  24351. height: math.unit(100000, "km")
  24352. },
  24353. {
  24354. name: "Pounder of Planets",
  24355. height: math.unit(2000000, "km")
  24356. },
  24357. ]
  24358. ))
  24359. characterMakers.push(() => makeCharacter(
  24360. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24361. {
  24362. front: {
  24363. height: math.unit(6, "feet"),
  24364. weight: math.unit(150, "lb"),
  24365. name: "Front",
  24366. image: {
  24367. source: "./media/characters/aj/front.svg",
  24368. extra: 2039 / 1562,
  24369. bottom: 40 / 2079
  24370. }
  24371. },
  24372. },
  24373. [
  24374. {
  24375. name: "Normal",
  24376. height: math.unit(11 + 6 / 12, "feet"),
  24377. default: true
  24378. },
  24379. {
  24380. name: "Megamacro",
  24381. height: math.unit(60, "megameters")
  24382. },
  24383. ]
  24384. ))
  24385. characterMakers.push(() => makeCharacter(
  24386. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24387. {
  24388. side: {
  24389. height: math.unit(31 + 8 / 12, "feet"),
  24390. weight: math.unit(75000, "kg"),
  24391. name: "Side",
  24392. image: {
  24393. source: "./media/characters/koros/side.svg",
  24394. extra: 1442 / 1297,
  24395. bottom: 122.7 / 1562
  24396. }
  24397. },
  24398. dicksKingsCrown: {
  24399. height: math.unit(6, "feet"),
  24400. name: "Dicks (King's Crown)",
  24401. image: {
  24402. source: "./media/characters/koros/dicks-kings-crown.svg"
  24403. }
  24404. },
  24405. dicksTailSet: {
  24406. height: math.unit(3, "feet"),
  24407. name: "Dicks (Tail Set)",
  24408. image: {
  24409. source: "./media/characters/koros/dicks-tail-set.svg"
  24410. }
  24411. },
  24412. dickCumming: {
  24413. height: math.unit(7.98, "feet"),
  24414. name: "Dick (Cumming)",
  24415. image: {
  24416. source: "./media/characters/koros/dick-cumming.svg"
  24417. }
  24418. },
  24419. dicksBack: {
  24420. height: math.unit(5.9, "feet"),
  24421. name: "Dicks (Back)",
  24422. image: {
  24423. source: "./media/characters/koros/dicks-back.svg"
  24424. }
  24425. },
  24426. dicksFront: {
  24427. height: math.unit(3.72, "feet"),
  24428. name: "Dicks (Front)",
  24429. image: {
  24430. source: "./media/characters/koros/dicks-front.svg"
  24431. }
  24432. },
  24433. dicksPeeking: {
  24434. height: math.unit(3.0, "feet"),
  24435. name: "Dicks (Peeking)",
  24436. image: {
  24437. source: "./media/characters/koros/dicks-peeking.svg"
  24438. }
  24439. },
  24440. eye: {
  24441. height: math.unit(1.7, "feet"),
  24442. name: "Eye",
  24443. image: {
  24444. source: "./media/characters/koros/eye.svg"
  24445. }
  24446. },
  24447. headFront: {
  24448. height: math.unit(11.69, "feet"),
  24449. name: "Head (Front)",
  24450. image: {
  24451. source: "./media/characters/koros/head-front.svg"
  24452. }
  24453. },
  24454. headSide: {
  24455. height: math.unit(14, "feet"),
  24456. name: "Head (Side)",
  24457. image: {
  24458. source: "./media/characters/koros/head-side.svg"
  24459. }
  24460. },
  24461. leg: {
  24462. height: math.unit(17, "feet"),
  24463. name: "Leg",
  24464. image: {
  24465. source: "./media/characters/koros/leg.svg"
  24466. }
  24467. },
  24468. mawSide: {
  24469. height: math.unit(12.8, "feet"),
  24470. name: "Maw (Side)",
  24471. image: {
  24472. source: "./media/characters/koros/maw-side.svg"
  24473. }
  24474. },
  24475. mawSpitting: {
  24476. height: math.unit(17, "feet"),
  24477. name: "Maw (Spitting)",
  24478. image: {
  24479. source: "./media/characters/koros/maw-spitting.svg"
  24480. }
  24481. },
  24482. slit: {
  24483. height: math.unit(2.8, "feet"),
  24484. name: "Slit",
  24485. image: {
  24486. source: "./media/characters/koros/slit.svg"
  24487. }
  24488. },
  24489. stomach: {
  24490. height: math.unit(6.8, "feet"),
  24491. capacity: math.unit(20, "people"),
  24492. name: "Stomach",
  24493. image: {
  24494. source: "./media/characters/koros/stomach.svg"
  24495. }
  24496. },
  24497. wingspanBottom: {
  24498. height: math.unit(114, "feet"),
  24499. name: "Wingspan (Bottom)",
  24500. image: {
  24501. source: "./media/characters/koros/wingspan-bottom.svg"
  24502. }
  24503. },
  24504. wingspanTop: {
  24505. height: math.unit(104, "feet"),
  24506. name: "Wingspan (Top)",
  24507. image: {
  24508. source: "./media/characters/koros/wingspan-top.svg"
  24509. }
  24510. },
  24511. },
  24512. [
  24513. {
  24514. name: "Normal",
  24515. height: math.unit(31 + 8 / 12, "feet"),
  24516. default: true
  24517. },
  24518. ]
  24519. ))
  24520. characterMakers.push(() => makeCharacter(
  24521. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24522. {
  24523. front: {
  24524. height: math.unit(18 + 5 / 12, "feet"),
  24525. weight: math.unit(3750, "kg"),
  24526. name: "Front",
  24527. image: {
  24528. source: "./media/characters/vexx/front.svg",
  24529. extra: 426 / 396,
  24530. bottom: 31.5 / 458
  24531. }
  24532. },
  24533. maw: {
  24534. height: math.unit(6, "feet"),
  24535. name: "Maw",
  24536. image: {
  24537. source: "./media/characters/vexx/maw.svg"
  24538. }
  24539. },
  24540. },
  24541. [
  24542. {
  24543. name: "Normal",
  24544. height: math.unit(18 + 5 / 12, "feet"),
  24545. default: true
  24546. },
  24547. ]
  24548. ))
  24549. characterMakers.push(() => makeCharacter(
  24550. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24551. {
  24552. front: {
  24553. height: math.unit(17 + 6 / 12, "feet"),
  24554. weight: math.unit(150, "lb"),
  24555. name: "Front",
  24556. image: {
  24557. source: "./media/characters/baadra/front.svg",
  24558. extra: 3137 / 2890,
  24559. bottom: 168.4 / 3305
  24560. }
  24561. },
  24562. back: {
  24563. height: math.unit(17 + 6 / 12, "feet"),
  24564. weight: math.unit(150, "lb"),
  24565. name: "Back",
  24566. image: {
  24567. source: "./media/characters/baadra/back.svg",
  24568. extra: 3142 / 2890,
  24569. bottom: 220 / 3371
  24570. }
  24571. },
  24572. head: {
  24573. height: math.unit(5.45, "feet"),
  24574. name: "Head",
  24575. image: {
  24576. source: "./media/characters/baadra/head.svg"
  24577. }
  24578. },
  24579. headAngry: {
  24580. height: math.unit(4.95, "feet"),
  24581. name: "Head (Angry)",
  24582. image: {
  24583. source: "./media/characters/baadra/head-angry.svg"
  24584. }
  24585. },
  24586. headOpen: {
  24587. height: math.unit(6, "feet"),
  24588. name: "Head (Open)",
  24589. image: {
  24590. source: "./media/characters/baadra/head-open.svg"
  24591. }
  24592. },
  24593. },
  24594. [
  24595. {
  24596. name: "Normal",
  24597. height: math.unit(17 + 6 / 12, "feet"),
  24598. default: true
  24599. },
  24600. ]
  24601. ))
  24602. characterMakers.push(() => makeCharacter(
  24603. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24604. {
  24605. front: {
  24606. height: math.unit(7 + 3 / 12, "feet"),
  24607. weight: math.unit(180, "lb"),
  24608. name: "Front",
  24609. image: {
  24610. source: "./media/characters/juri/front.svg",
  24611. extra: 1401 / 1237,
  24612. bottom: 18.5 / 1418
  24613. }
  24614. },
  24615. side: {
  24616. height: math.unit(7 + 3 / 12, "feet"),
  24617. weight: math.unit(180, "lb"),
  24618. name: "Side",
  24619. image: {
  24620. source: "./media/characters/juri/side.svg",
  24621. extra: 1424 / 1242,
  24622. bottom: 18.5 / 1447
  24623. }
  24624. },
  24625. sitting: {
  24626. height: math.unit(6, "feet"),
  24627. weight: math.unit(180, "lb"),
  24628. name: "Sitting",
  24629. image: {
  24630. source: "./media/characters/juri/sitting.svg",
  24631. extra: 1270 / 1143,
  24632. bottom: 100 / 1343
  24633. }
  24634. },
  24635. back: {
  24636. height: math.unit(7 + 3 / 12, "feet"),
  24637. weight: math.unit(180, "lb"),
  24638. name: "Back",
  24639. image: {
  24640. source: "./media/characters/juri/back.svg",
  24641. extra: 1377 / 1240,
  24642. bottom: 23.7 / 1405
  24643. }
  24644. },
  24645. maw: {
  24646. height: math.unit(2.8, "feet"),
  24647. name: "Maw",
  24648. image: {
  24649. source: "./media/characters/juri/maw.svg"
  24650. }
  24651. },
  24652. stomach: {
  24653. height: math.unit(0.89, "feet"),
  24654. capacity: math.unit(4, "liters"),
  24655. name: "Stomach",
  24656. image: {
  24657. source: "./media/characters/juri/stomach.svg"
  24658. }
  24659. },
  24660. },
  24661. [
  24662. {
  24663. name: "Normal",
  24664. height: math.unit(7 + 3 / 12, "feet"),
  24665. default: true
  24666. },
  24667. ]
  24668. ))
  24669. characterMakers.push(() => makeCharacter(
  24670. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24671. {
  24672. fox: {
  24673. height: math.unit(5 + 6 / 12, "feet"),
  24674. weight: math.unit(140, "lb"),
  24675. name: "Fox",
  24676. image: {
  24677. source: "./media/characters/maxene-sita/fox.svg",
  24678. extra: 146 / 138,
  24679. bottom: 2.1 / 148.19
  24680. }
  24681. },
  24682. kitsune: {
  24683. height: math.unit(10, "feet"),
  24684. weight: math.unit(800, "lb"),
  24685. name: "Kitsune",
  24686. image: {
  24687. source: "./media/characters/maxene-sita/kitsune.svg",
  24688. extra: 185 / 176,
  24689. bottom: 4.7 / 189.9
  24690. }
  24691. },
  24692. },
  24693. [
  24694. {
  24695. name: "Normal",
  24696. height: math.unit(5 + 6 / 12, "feet"),
  24697. default: true
  24698. },
  24699. ]
  24700. ))
  24701. characterMakers.push(() => makeCharacter(
  24702. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24703. {
  24704. front: {
  24705. height: math.unit(3 + 4 / 12, "feet"),
  24706. weight: math.unit(70, "lb"),
  24707. name: "Front",
  24708. image: {
  24709. source: "./media/characters/maia/front.svg",
  24710. extra: 227 / 219.5,
  24711. bottom: 40 / 267
  24712. }
  24713. },
  24714. back: {
  24715. height: math.unit(3 + 4 / 12, "feet"),
  24716. weight: math.unit(70, "lb"),
  24717. name: "Back",
  24718. image: {
  24719. source: "./media/characters/maia/back.svg",
  24720. extra: 237 / 225
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Normal",
  24727. height: math.unit(3 + 4 / 12, "feet"),
  24728. default: true
  24729. },
  24730. ]
  24731. ))
  24732. characterMakers.push(() => makeCharacter(
  24733. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24734. {
  24735. front: {
  24736. height: math.unit(5 + 10 / 12, "feet"),
  24737. weight: math.unit(197, "lb"),
  24738. name: "Front",
  24739. image: {
  24740. source: "./media/characters/jabaro/front.svg",
  24741. extra: 225 / 216,
  24742. bottom: 5.06 / 230
  24743. }
  24744. },
  24745. back: {
  24746. height: math.unit(5 + 10 / 12, "feet"),
  24747. weight: math.unit(197, "lb"),
  24748. name: "Back",
  24749. image: {
  24750. source: "./media/characters/jabaro/back.svg",
  24751. extra: 225 / 219,
  24752. bottom: 1.9 / 227
  24753. }
  24754. },
  24755. },
  24756. [
  24757. {
  24758. name: "Normal",
  24759. height: math.unit(5 + 10 / 12, "feet"),
  24760. default: true
  24761. },
  24762. ]
  24763. ))
  24764. characterMakers.push(() => makeCharacter(
  24765. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24766. {
  24767. front: {
  24768. height: math.unit(5 + 8 / 12, "feet"),
  24769. weight: math.unit(139, "lb"),
  24770. name: "Front",
  24771. image: {
  24772. source: "./media/characters/risa/front.svg",
  24773. extra: 270 / 260,
  24774. bottom: 11.2 / 282
  24775. }
  24776. },
  24777. back: {
  24778. height: math.unit(5 + 8 / 12, "feet"),
  24779. weight: math.unit(139, "lb"),
  24780. name: "Back",
  24781. image: {
  24782. source: "./media/characters/risa/back.svg",
  24783. extra: 264 / 255,
  24784. bottom: 4 / 268
  24785. }
  24786. },
  24787. },
  24788. [
  24789. {
  24790. name: "Normal",
  24791. height: math.unit(5 + 8 / 12, "feet"),
  24792. default: true
  24793. },
  24794. ]
  24795. ))
  24796. characterMakers.push(() => makeCharacter(
  24797. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24798. {
  24799. front: {
  24800. height: math.unit(2 + 11 / 12, "feet"),
  24801. weight: math.unit(30, "lb"),
  24802. name: "Front",
  24803. image: {
  24804. source: "./media/characters/weatley/front.svg",
  24805. bottom: 10.7 / 414,
  24806. extra: 403.5 / 362
  24807. }
  24808. },
  24809. back: {
  24810. height: math.unit(2 + 11 / 12, "feet"),
  24811. weight: math.unit(30, "lb"),
  24812. name: "Back",
  24813. image: {
  24814. source: "./media/characters/weatley/back.svg",
  24815. bottom: 10.7 / 414,
  24816. extra: 403.5 / 362
  24817. }
  24818. },
  24819. },
  24820. [
  24821. {
  24822. name: "Normal",
  24823. height: math.unit(2 + 11 / 12, "feet"),
  24824. default: true
  24825. },
  24826. ]
  24827. ))
  24828. characterMakers.push(() => makeCharacter(
  24829. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24830. {
  24831. front: {
  24832. height: math.unit(5 + 2 / 12, "feet"),
  24833. weight: math.unit(50, "kg"),
  24834. name: "Front",
  24835. image: {
  24836. source: "./media/characters/mercury-crescent/front.svg",
  24837. extra: 1088 / 1033,
  24838. bottom: 18.9 / 1109
  24839. }
  24840. },
  24841. },
  24842. [
  24843. {
  24844. name: "Normal",
  24845. height: math.unit(5 + 2 / 12, "feet"),
  24846. default: true
  24847. },
  24848. ]
  24849. ))
  24850. characterMakers.push(() => makeCharacter(
  24851. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24852. {
  24853. front: {
  24854. height: math.unit(2, "feet"),
  24855. weight: math.unit(15, "kg"),
  24856. name: "Front",
  24857. image: {
  24858. source: "./media/characters/diamond-jones/front.svg",
  24859. bottom: 16 / 568
  24860. }
  24861. },
  24862. },
  24863. [
  24864. {
  24865. name: "Normal",
  24866. height: math.unit(2, "feet"),
  24867. default: true
  24868. },
  24869. ]
  24870. ))
  24871. characterMakers.push(() => makeCharacter(
  24872. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24873. {
  24874. front: {
  24875. height: math.unit(3, "feet"),
  24876. weight: math.unit(30, "kg"),
  24877. name: "Front",
  24878. image: {
  24879. source: "./media/characters/sweet-bit/front.svg",
  24880. extra: 675 / 567,
  24881. bottom: 27.7 / 703
  24882. }
  24883. },
  24884. },
  24885. [
  24886. {
  24887. name: "Normal",
  24888. height: math.unit(3, "feet"),
  24889. default: true
  24890. },
  24891. ]
  24892. ))
  24893. characterMakers.push(() => makeCharacter(
  24894. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24895. {
  24896. side: {
  24897. height: math.unit(9.178, "feet"),
  24898. weight: math.unit(500, "lb"),
  24899. name: "Side",
  24900. image: {
  24901. source: "./media/characters/umbrazen/side.svg",
  24902. extra: 1730 / 1473,
  24903. bottom: 34.6 / 1765
  24904. }
  24905. },
  24906. },
  24907. [
  24908. {
  24909. name: "Normal",
  24910. height: math.unit(9.178, "feet"),
  24911. default: true
  24912. },
  24913. ]
  24914. ))
  24915. characterMakers.push(() => makeCharacter(
  24916. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24917. {
  24918. front: {
  24919. height: math.unit(10, "feet"),
  24920. weight: math.unit(750, "lb"),
  24921. name: "Front",
  24922. image: {
  24923. source: "./media/characters/arlist/front.svg",
  24924. extra: 961 / 778,
  24925. bottom: 6.2 / 986
  24926. }
  24927. },
  24928. },
  24929. [
  24930. {
  24931. name: "Normal",
  24932. height: math.unit(10, "feet"),
  24933. default: true
  24934. },
  24935. ]
  24936. ))
  24937. characterMakers.push(() => makeCharacter(
  24938. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24939. {
  24940. front: {
  24941. height: math.unit(5 + 1 / 12, "feet"),
  24942. weight: math.unit(110, "lb"),
  24943. name: "Front",
  24944. image: {
  24945. source: "./media/characters/aradel/front.svg",
  24946. extra: 324 / 303,
  24947. bottom: 3.6 / 329.4
  24948. }
  24949. },
  24950. },
  24951. [
  24952. {
  24953. name: "Normal",
  24954. height: math.unit(5 + 1 / 12, "feet"),
  24955. default: true
  24956. },
  24957. ]
  24958. ))
  24959. characterMakers.push(() => makeCharacter(
  24960. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24961. {
  24962. front: {
  24963. height: math.unit(3 + 8 / 12, "feet"),
  24964. weight: math.unit(50, "lb"),
  24965. name: "Front",
  24966. image: {
  24967. source: "./media/characters/serryn/front.svg",
  24968. extra: 1792 / 1656,
  24969. bottom: 43.5 / 1840
  24970. }
  24971. },
  24972. },
  24973. [
  24974. {
  24975. name: "Normal",
  24976. height: math.unit(3 + 8 / 12, "feet"),
  24977. default: true
  24978. },
  24979. ]
  24980. ))
  24981. characterMakers.push(() => makeCharacter(
  24982. { name: "Xavier Thyme" },
  24983. {
  24984. front: {
  24985. height: math.unit(7 + 10 / 12, "feet"),
  24986. weight: math.unit(255, "lb"),
  24987. name: "Front",
  24988. image: {
  24989. source: "./media/characters/xavier-thyme/front.svg",
  24990. extra: 3733 / 3642,
  24991. bottom: 131 / 3869
  24992. }
  24993. },
  24994. frontRaven: {
  24995. height: math.unit(7 + 10 / 12, "feet"),
  24996. weight: math.unit(255, "lb"),
  24997. name: "Front (Raven)",
  24998. image: {
  24999. source: "./media/characters/xavier-thyme/front-raven.svg",
  25000. extra: 4385 / 3642,
  25001. bottom: 131 / 4517
  25002. }
  25003. },
  25004. },
  25005. [
  25006. {
  25007. name: "Normal",
  25008. height: math.unit(7 + 10 / 12, "feet"),
  25009. default: true
  25010. },
  25011. ]
  25012. ))
  25013. characterMakers.push(() => makeCharacter(
  25014. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25015. {
  25016. front: {
  25017. height: math.unit(1.6, "m"),
  25018. weight: math.unit(50, "kg"),
  25019. name: "Front",
  25020. image: {
  25021. source: "./media/characters/kiki/front.svg",
  25022. extra: 4682 / 3610,
  25023. bottom: 115 / 4777
  25024. }
  25025. },
  25026. },
  25027. [
  25028. {
  25029. name: "Normal",
  25030. height: math.unit(1.6, "meters"),
  25031. default: true
  25032. },
  25033. ]
  25034. ))
  25035. characterMakers.push(() => makeCharacter(
  25036. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25037. {
  25038. front: {
  25039. height: math.unit(50, "m"),
  25040. weight: math.unit(500, "tonnes"),
  25041. name: "Front",
  25042. image: {
  25043. source: "./media/characters/ryoko/front.svg",
  25044. extra: 4632 / 3926,
  25045. bottom: 193 / 4823
  25046. }
  25047. },
  25048. },
  25049. [
  25050. {
  25051. name: "Normal",
  25052. height: math.unit(50, "meters"),
  25053. default: true
  25054. },
  25055. ]
  25056. ))
  25057. characterMakers.push(() => makeCharacter(
  25058. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25059. {
  25060. front: {
  25061. height: math.unit(30, "m"),
  25062. weight: math.unit(22, "tonnes"),
  25063. name: "Front",
  25064. image: {
  25065. source: "./media/characters/elio/front.svg",
  25066. extra: 4582 / 3720,
  25067. bottom: 236 / 4828
  25068. }
  25069. },
  25070. },
  25071. [
  25072. {
  25073. name: "Normal",
  25074. height: math.unit(30, "meters"),
  25075. default: true
  25076. },
  25077. ]
  25078. ))
  25079. characterMakers.push(() => makeCharacter(
  25080. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25081. {
  25082. front: {
  25083. height: math.unit(6 + 3 / 12, "feet"),
  25084. weight: math.unit(120, "lb"),
  25085. name: "Front",
  25086. image: {
  25087. source: "./media/characters/azura/front.svg",
  25088. extra: 1149 / 1135,
  25089. bottom: 45 / 1194
  25090. }
  25091. },
  25092. frontClothed: {
  25093. height: math.unit(6 + 3 / 12, "feet"),
  25094. weight: math.unit(120, "lb"),
  25095. name: "Front (Clothed)",
  25096. image: {
  25097. source: "./media/characters/azura/front-clothed.svg",
  25098. extra: 1149 / 1135,
  25099. bottom: 45 / 1194
  25100. }
  25101. },
  25102. },
  25103. [
  25104. {
  25105. name: "Normal",
  25106. height: math.unit(6 + 3 / 12, "feet"),
  25107. default: true
  25108. },
  25109. {
  25110. name: "Macro",
  25111. height: math.unit(20 + 6 / 12, "feet")
  25112. },
  25113. {
  25114. name: "Megamacro",
  25115. height: math.unit(12, "miles")
  25116. },
  25117. {
  25118. name: "Gigamacro",
  25119. height: math.unit(10000, "miles")
  25120. },
  25121. {
  25122. name: "Teramacro",
  25123. height: math.unit(900000, "miles")
  25124. },
  25125. ]
  25126. ))
  25127. characterMakers.push(() => makeCharacter(
  25128. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25129. {
  25130. front: {
  25131. height: math.unit(12, "feet"),
  25132. weight: math.unit(1, "ton"),
  25133. capacity: math.unit(660000, "gallons"),
  25134. name: "Front",
  25135. image: {
  25136. source: "./media/characters/zeus/front.svg",
  25137. extra: 5005 / 4717,
  25138. bottom: 363 / 5388
  25139. }
  25140. },
  25141. },
  25142. [
  25143. {
  25144. name: "Normal",
  25145. height: math.unit(12, "feet")
  25146. },
  25147. {
  25148. name: "Preferred Size",
  25149. height: math.unit(0.5, "miles"),
  25150. default: true
  25151. },
  25152. {
  25153. name: "Giga Horse",
  25154. height: math.unit(300, "miles")
  25155. },
  25156. {
  25157. name: "Riding Planets",
  25158. height: math.unit(30, "megameters")
  25159. },
  25160. {
  25161. name: "Cosmic Giant",
  25162. height: math.unit(3, "zettameters")
  25163. },
  25164. {
  25165. name: "Breeding God",
  25166. height: math.unit(9.92e22, "yottameters")
  25167. },
  25168. ]
  25169. ))
  25170. characterMakers.push(() => makeCharacter(
  25171. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25172. {
  25173. side: {
  25174. height: math.unit(9, "feet"),
  25175. weight: math.unit(1500, "kg"),
  25176. name: "Side",
  25177. image: {
  25178. source: "./media/characters/fang/side.svg",
  25179. extra: 924 / 866,
  25180. bottom: 47.5 / 972.3
  25181. }
  25182. },
  25183. },
  25184. [
  25185. {
  25186. name: "Normal",
  25187. height: math.unit(9, "feet"),
  25188. default: true
  25189. },
  25190. {
  25191. name: "Macro",
  25192. height: math.unit(75 + 6 / 12, "feet")
  25193. },
  25194. {
  25195. name: "Teramacro",
  25196. height: math.unit(50000, "miles")
  25197. },
  25198. ]
  25199. ))
  25200. characterMakers.push(() => makeCharacter(
  25201. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25202. {
  25203. front: {
  25204. height: math.unit(10, "feet"),
  25205. weight: math.unit(2, "tons"),
  25206. name: "Front",
  25207. image: {
  25208. source: "./media/characters/rekhit/front.svg",
  25209. extra: 2796 / 2590,
  25210. bottom: 225 / 3022
  25211. }
  25212. },
  25213. },
  25214. [
  25215. {
  25216. name: "Normal",
  25217. height: math.unit(10, "feet"),
  25218. default: true
  25219. },
  25220. {
  25221. name: "Macro",
  25222. height: math.unit(500, "feet")
  25223. },
  25224. ]
  25225. ))
  25226. characterMakers.push(() => makeCharacter(
  25227. { name: "Dahlia Verrick" },
  25228. {
  25229. front: {
  25230. height: math.unit(7 + 6.451 / 12, "feet"),
  25231. weight: math.unit(310, "lb"),
  25232. name: "Front",
  25233. image: {
  25234. source: "./media/characters/dahlia-verrick/front.svg",
  25235. extra: 1488 / 1365,
  25236. bottom: 6.2 / 1495
  25237. }
  25238. },
  25239. back: {
  25240. height: math.unit(7 + 6.451 / 12, "feet"),
  25241. weight: math.unit(310, "lb"),
  25242. name: "Back",
  25243. image: {
  25244. source: "./media/characters/dahlia-verrick/back.svg",
  25245. extra: 1472 / 1351,
  25246. bottom: 5.28 / 1477
  25247. }
  25248. },
  25249. frontBusiness: {
  25250. height: math.unit(7 + 6.451 / 12, "feet"),
  25251. weight: math.unit(200, "lb"),
  25252. name: "Front (Business)",
  25253. image: {
  25254. source: "./media/characters/dahlia-verrick/front-business.svg",
  25255. extra: 1478 / 1381,
  25256. bottom: 5.5 / 1484
  25257. }
  25258. },
  25259. frontCasual: {
  25260. height: math.unit(7 + 6.451 / 12, "feet"),
  25261. weight: math.unit(200, "lb"),
  25262. name: "Front (Casual)",
  25263. image: {
  25264. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25265. extra: 1478 / 1381,
  25266. bottom: 5.5 / 1484
  25267. }
  25268. },
  25269. },
  25270. [
  25271. {
  25272. name: "Travel-Sized",
  25273. height: math.unit(7.45, "inches")
  25274. },
  25275. {
  25276. name: "Normal",
  25277. height: math.unit(7 + 6.451 / 12, "feet"),
  25278. default: true
  25279. },
  25280. {
  25281. name: "Hitting the Town",
  25282. height: math.unit(37 + 8 / 12, "feet")
  25283. },
  25284. {
  25285. name: "Stomp in the Suburbs",
  25286. height: math.unit(964 + 9.728 / 12, "feet")
  25287. },
  25288. {
  25289. name: "Sit on the City",
  25290. height: math.unit(61747 + 10.592 / 12, "feet")
  25291. },
  25292. {
  25293. name: "Glomp the Globe",
  25294. height: math.unit(252919327 + 4.832 / 12, "feet")
  25295. },
  25296. ]
  25297. ))
  25298. characterMakers.push(() => makeCharacter(
  25299. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25300. {
  25301. front: {
  25302. height: math.unit(6 + 4 / 12, "feet"),
  25303. weight: math.unit(320, "lb"),
  25304. name: "Front",
  25305. image: {
  25306. source: "./media/characters/balina-mahigan/front.svg",
  25307. extra: 447 / 428,
  25308. bottom: 18 / 466
  25309. }
  25310. },
  25311. back: {
  25312. height: math.unit(6 + 4 / 12, "feet"),
  25313. weight: math.unit(320, "lb"),
  25314. name: "Back",
  25315. image: {
  25316. source: "./media/characters/balina-mahigan/back.svg",
  25317. extra: 445 / 428,
  25318. bottom: 4.07 / 448
  25319. }
  25320. },
  25321. arm: {
  25322. height: math.unit(1.88, "feet"),
  25323. name: "Arm",
  25324. image: {
  25325. source: "./media/characters/balina-mahigan/arm.svg"
  25326. }
  25327. },
  25328. backPort: {
  25329. height: math.unit(0.685, "feet"),
  25330. name: "Back Port",
  25331. image: {
  25332. source: "./media/characters/balina-mahigan/back-port.svg"
  25333. }
  25334. },
  25335. hoofpaw: {
  25336. height: math.unit(1.41, "feet"),
  25337. name: "Hoofpaw",
  25338. image: {
  25339. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25340. }
  25341. },
  25342. leftHandBack: {
  25343. height: math.unit(0.938, "feet"),
  25344. name: "Left Hand (Back)",
  25345. image: {
  25346. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25347. }
  25348. },
  25349. leftHandFront: {
  25350. height: math.unit(0.938, "feet"),
  25351. name: "Left Hand (Front)",
  25352. image: {
  25353. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25354. }
  25355. },
  25356. rightHandBack: {
  25357. height: math.unit(0.95, "feet"),
  25358. name: "Right Hand (Back)",
  25359. image: {
  25360. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25361. }
  25362. },
  25363. rightHandFront: {
  25364. height: math.unit(0.95, "feet"),
  25365. name: "Right Hand (Front)",
  25366. image: {
  25367. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25368. }
  25369. },
  25370. },
  25371. [
  25372. {
  25373. name: "Normal",
  25374. height: math.unit(6 + 4 / 12, "feet"),
  25375. default: true
  25376. },
  25377. ]
  25378. ))
  25379. characterMakers.push(() => makeCharacter(
  25380. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25381. {
  25382. front: {
  25383. height: math.unit(6, "feet"),
  25384. weight: math.unit(320, "lb"),
  25385. name: "Front",
  25386. image: {
  25387. source: "./media/characters/balina-mejeri/front.svg",
  25388. extra: 517 / 488,
  25389. bottom: 44.2 / 561
  25390. }
  25391. },
  25392. },
  25393. [
  25394. {
  25395. name: "Normal",
  25396. height: math.unit(6 + 4 / 12, "feet")
  25397. },
  25398. {
  25399. name: "Business",
  25400. height: math.unit(155, "feet"),
  25401. default: true
  25402. },
  25403. ]
  25404. ))
  25405. characterMakers.push(() => makeCharacter(
  25406. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25407. {
  25408. kneeling: {
  25409. height: math.unit(6 + 4 / 12, "feet"),
  25410. weight: math.unit(300 * 20, "lb"),
  25411. name: "Kneeling",
  25412. image: {
  25413. source: "./media/characters/balbarian/kneeling.svg",
  25414. extra: 922 / 862,
  25415. bottom: 42.4 / 965
  25416. }
  25417. },
  25418. },
  25419. [
  25420. {
  25421. name: "Normal",
  25422. height: math.unit(6 + 4 / 12, "feet")
  25423. },
  25424. {
  25425. name: "Treasured",
  25426. height: math.unit(18 + 9 / 12, "feet"),
  25427. default: true
  25428. },
  25429. {
  25430. name: "Macro",
  25431. height: math.unit(900, "feet")
  25432. },
  25433. ]
  25434. ))
  25435. characterMakers.push(() => makeCharacter(
  25436. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25437. {
  25438. front: {
  25439. height: math.unit(6 + 4 / 12, "feet"),
  25440. weight: math.unit(325, "lb"),
  25441. name: "Front",
  25442. image: {
  25443. source: "./media/characters/balina-amarini/front.svg",
  25444. extra: 415 / 403,
  25445. bottom: 19 / 433.4
  25446. }
  25447. },
  25448. back: {
  25449. height: math.unit(6 + 4 / 12, "feet"),
  25450. weight: math.unit(325, "lb"),
  25451. name: "Back",
  25452. image: {
  25453. source: "./media/characters/balina-amarini/back.svg",
  25454. extra: 415 / 403,
  25455. bottom: 13.5 / 432
  25456. }
  25457. },
  25458. overdrive: {
  25459. height: math.unit(6 + 4 / 12, "feet"),
  25460. weight: math.unit(400, "lb"),
  25461. name: "Overdrive",
  25462. image: {
  25463. source: "./media/characters/balina-amarini/overdrive.svg",
  25464. extra: 269 / 259,
  25465. bottom: 12 / 282
  25466. }
  25467. },
  25468. },
  25469. [
  25470. {
  25471. name: "Boom",
  25472. height: math.unit(9 + 10 / 12, "feet"),
  25473. default: true
  25474. },
  25475. {
  25476. name: "Macro",
  25477. height: math.unit(280, "feet")
  25478. },
  25479. ]
  25480. ))
  25481. characterMakers.push(() => makeCharacter(
  25482. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25483. {
  25484. goddess: {
  25485. height: math.unit(600, "feet"),
  25486. weight: math.unit(2000000, "tons"),
  25487. name: "Goddess",
  25488. image: {
  25489. source: "./media/characters/lady-kubwa/goddess.svg",
  25490. extra: 1240.5 / 1223,
  25491. bottom: 22 / 1263
  25492. }
  25493. },
  25494. goddesser: {
  25495. height: math.unit(900, "feet"),
  25496. weight: math.unit(20000000, "lb"),
  25497. name: "Goddess-er",
  25498. image: {
  25499. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25500. extra: 899 / 888,
  25501. bottom: 12.6 / 912
  25502. }
  25503. },
  25504. },
  25505. [
  25506. {
  25507. name: "Macro",
  25508. height: math.unit(600, "feet"),
  25509. default: true
  25510. },
  25511. {
  25512. name: "Megamacro",
  25513. height: math.unit(250, "miles")
  25514. },
  25515. ]
  25516. ))
  25517. characterMakers.push(() => makeCharacter(
  25518. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25519. {
  25520. front: {
  25521. height: math.unit(7 + 7 / 12, "feet"),
  25522. weight: math.unit(250, "lb"),
  25523. name: "Front",
  25524. image: {
  25525. source: "./media/characters/tala-grovehorn/front.svg",
  25526. extra: 2636 / 2525,
  25527. bottom: 147 / 2781
  25528. }
  25529. },
  25530. back: {
  25531. height: math.unit(7 + 7 / 12, "feet"),
  25532. weight: math.unit(250, "lb"),
  25533. name: "Back",
  25534. image: {
  25535. source: "./media/characters/tala-grovehorn/back.svg",
  25536. extra: 2635 / 2539,
  25537. bottom: 100 / 2732.8
  25538. }
  25539. },
  25540. mouth: {
  25541. height: math.unit(1.15, "feet"),
  25542. name: "Mouth",
  25543. image: {
  25544. source: "./media/characters/tala-grovehorn/mouth.svg"
  25545. }
  25546. },
  25547. dick: {
  25548. height: math.unit(2.36, "feet"),
  25549. name: "Dick",
  25550. image: {
  25551. source: "./media/characters/tala-grovehorn/dick.svg"
  25552. }
  25553. },
  25554. slit: {
  25555. height: math.unit(0.61, "feet"),
  25556. name: "Slit",
  25557. image: {
  25558. source: "./media/characters/tala-grovehorn/slit.svg"
  25559. }
  25560. },
  25561. },
  25562. [
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25567. {
  25568. front: {
  25569. height: math.unit(7 + 7 / 12, "feet"),
  25570. weight: math.unit(225, "lb"),
  25571. name: "Front",
  25572. image: {
  25573. source: "./media/characters/epona/front.svg",
  25574. extra: 2445 / 2290,
  25575. bottom: 251 / 2696
  25576. }
  25577. },
  25578. back: {
  25579. height: math.unit(7 + 7 / 12, "feet"),
  25580. weight: math.unit(225, "lb"),
  25581. name: "Back",
  25582. image: {
  25583. source: "./media/characters/epona/back.svg",
  25584. extra: 2546 / 2408,
  25585. bottom: 44 / 2589
  25586. }
  25587. },
  25588. genitals: {
  25589. height: math.unit(1.5, "feet"),
  25590. name: "Genitals",
  25591. image: {
  25592. source: "./media/characters/epona/genitals.svg"
  25593. }
  25594. },
  25595. },
  25596. [
  25597. {
  25598. name: "Normal",
  25599. height: math.unit(7 + 7 / 12, "feet")
  25600. },
  25601. ]
  25602. ))
  25603. characterMakers.push(() => makeCharacter(
  25604. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25605. {
  25606. front: {
  25607. height: math.unit(7, "feet"),
  25608. weight: math.unit(518, "lb"),
  25609. name: "Front",
  25610. image: {
  25611. source: "./media/characters/avia-bloodbourn/front.svg",
  25612. extra: 1466 / 1350,
  25613. bottom: 65 / 1527
  25614. }
  25615. },
  25616. },
  25617. [
  25618. ]
  25619. ))
  25620. characterMakers.push(() => makeCharacter(
  25621. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25622. {
  25623. front: {
  25624. height: math.unit(9.35, "feet"),
  25625. weight: math.unit(600, "lb"),
  25626. name: "Front",
  25627. image: {
  25628. source: "./media/characters/amera/front.svg",
  25629. extra: 891 / 818,
  25630. bottom: 30 / 922.7
  25631. }
  25632. },
  25633. back: {
  25634. height: math.unit(9.35, "feet"),
  25635. weight: math.unit(600, "lb"),
  25636. name: "Back",
  25637. image: {
  25638. source: "./media/characters/amera/back.svg",
  25639. extra: 876 / 824,
  25640. bottom: 6.8 / 884
  25641. }
  25642. },
  25643. dick: {
  25644. height: math.unit(2.14, "feet"),
  25645. name: "Dick",
  25646. image: {
  25647. source: "./media/characters/amera/dick.svg"
  25648. }
  25649. },
  25650. },
  25651. [
  25652. {
  25653. name: "Normal",
  25654. height: math.unit(9.35, "feet"),
  25655. default: true
  25656. },
  25657. ]
  25658. ))
  25659. characterMakers.push(() => makeCharacter(
  25660. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25661. {
  25662. kneeling: {
  25663. height: math.unit(3 + 4 / 12, "feet"),
  25664. weight: math.unit(90, "lb"),
  25665. name: "Kneeling",
  25666. image: {
  25667. source: "./media/characters/rosewen/kneeling.svg",
  25668. extra: 1835 / 1571,
  25669. bottom: 27.7 / 1862
  25670. }
  25671. },
  25672. },
  25673. [
  25674. {
  25675. name: "Normal",
  25676. height: math.unit(3 + 4 / 12, "feet"),
  25677. default: true
  25678. },
  25679. ]
  25680. ))
  25681. characterMakers.push(() => makeCharacter(
  25682. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25683. {
  25684. front: {
  25685. height: math.unit(5 + 10 / 12, "feet"),
  25686. weight: math.unit(200, "lb"),
  25687. name: "Front",
  25688. image: {
  25689. source: "./media/characters/sabah/front.svg",
  25690. extra: 849 / 763,
  25691. bottom: 33.9 / 881
  25692. }
  25693. },
  25694. },
  25695. [
  25696. {
  25697. name: "Normal",
  25698. height: math.unit(5 + 10 / 12, "feet"),
  25699. default: true
  25700. },
  25701. ]
  25702. ))
  25703. characterMakers.push(() => makeCharacter(
  25704. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25705. {
  25706. front: {
  25707. height: math.unit(3 + 5 / 12, "feet"),
  25708. weight: math.unit(40, "kg"),
  25709. name: "Front",
  25710. image: {
  25711. source: "./media/characters/purple-flame/front.svg",
  25712. extra: 1577 / 1412,
  25713. bottom: 97 / 1694
  25714. }
  25715. },
  25716. frontDressed: {
  25717. height: math.unit(3 + 5 / 12, "feet"),
  25718. weight: math.unit(40, "kg"),
  25719. name: "Front (Dressed)",
  25720. image: {
  25721. source: "./media/characters/purple-flame/front-dressed.svg",
  25722. extra: 1577 / 1412,
  25723. bottom: 97 / 1694
  25724. }
  25725. },
  25726. headphones: {
  25727. height: math.unit(0.85, "feet"),
  25728. name: "Headphones",
  25729. image: {
  25730. source: "./media/characters/purple-flame/headphones.svg"
  25731. }
  25732. },
  25733. },
  25734. [
  25735. {
  25736. name: "Really Small",
  25737. height: math.unit(5, "cm")
  25738. },
  25739. {
  25740. name: "Micro",
  25741. height: math.unit(1 + 5 / 12, "feet")
  25742. },
  25743. {
  25744. name: "Normal",
  25745. height: math.unit(3 + 5 / 12, "feet"),
  25746. default: true
  25747. },
  25748. {
  25749. name: "Minimacro",
  25750. height: math.unit(125, "feet")
  25751. },
  25752. {
  25753. name: "Macro",
  25754. height: math.unit(0.5, "miles")
  25755. },
  25756. {
  25757. name: "Megamacro",
  25758. height: math.unit(50, "miles")
  25759. },
  25760. {
  25761. name: "Gigantic",
  25762. height: math.unit(750, "miles")
  25763. },
  25764. {
  25765. name: "Planetary",
  25766. height: math.unit(15000, "miles")
  25767. },
  25768. ]
  25769. ))
  25770. characterMakers.push(() => makeCharacter(
  25771. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25772. {
  25773. front: {
  25774. height: math.unit(14, "feet"),
  25775. weight: math.unit(959, "lb"),
  25776. name: "Front",
  25777. image: {
  25778. source: "./media/characters/arsenal/front.svg",
  25779. extra: 2357 / 2157,
  25780. bottom: 93 / 2458
  25781. }
  25782. },
  25783. },
  25784. [
  25785. {
  25786. name: "Normal",
  25787. height: math.unit(14, "feet"),
  25788. default: true
  25789. },
  25790. ]
  25791. ))
  25792. characterMakers.push(() => makeCharacter(
  25793. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25794. {
  25795. front: {
  25796. height: math.unit(6, "feet"),
  25797. weight: math.unit(150, "lb"),
  25798. name: "Front",
  25799. image: {
  25800. source: "./media/characters/adira/front.svg",
  25801. extra: 1078 / 1029,
  25802. bottom: 87 / 1166
  25803. }
  25804. },
  25805. },
  25806. [
  25807. {
  25808. name: "Micro",
  25809. height: math.unit(4, "inches"),
  25810. default: true
  25811. },
  25812. {
  25813. name: "Macro",
  25814. height: math.unit(50, "feet")
  25815. },
  25816. ]
  25817. ))
  25818. characterMakers.push(() => makeCharacter(
  25819. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25820. {
  25821. front: {
  25822. height: math.unit(16, "feet"),
  25823. weight: math.unit(1000, "lb"),
  25824. name: "Front",
  25825. image: {
  25826. source: "./media/characters/grim/front.svg",
  25827. extra: 622 / 614,
  25828. bottom: 18.1 / 642
  25829. }
  25830. },
  25831. back: {
  25832. height: math.unit(16, "feet"),
  25833. weight: math.unit(1000, "lb"),
  25834. name: "Back",
  25835. image: {
  25836. source: "./media/characters/grim/back.svg",
  25837. extra: 610.6 / 602,
  25838. bottom: 40.8 / 652
  25839. }
  25840. },
  25841. hunched: {
  25842. height: math.unit(9.75, "feet"),
  25843. weight: math.unit(1000, "lb"),
  25844. name: "Hunched",
  25845. image: {
  25846. source: "./media/characters/grim/hunched.svg",
  25847. extra: 304 / 297,
  25848. bottom: 35.4 / 394
  25849. }
  25850. },
  25851. },
  25852. [
  25853. {
  25854. name: "Normal",
  25855. height: math.unit(16, "feet"),
  25856. default: true
  25857. },
  25858. ]
  25859. ))
  25860. characterMakers.push(() => makeCharacter(
  25861. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25862. {
  25863. front: {
  25864. height: math.unit(2.3, "meters"),
  25865. weight: math.unit(300, "lb"),
  25866. name: "Front",
  25867. image: {
  25868. source: "./media/characters/sinja/front-sfw.svg",
  25869. extra: 1393 / 1294,
  25870. bottom: 70 / 1463
  25871. }
  25872. },
  25873. frontNsfw: {
  25874. height: math.unit(2.3, "meters"),
  25875. weight: math.unit(300, "lb"),
  25876. name: "Front (NSFW)",
  25877. image: {
  25878. source: "./media/characters/sinja/front-nsfw.svg",
  25879. extra: 1393 / 1294,
  25880. bottom: 70 / 1463
  25881. }
  25882. },
  25883. back: {
  25884. height: math.unit(2.3, "meters"),
  25885. weight: math.unit(300, "lb"),
  25886. name: "Back",
  25887. image: {
  25888. source: "./media/characters/sinja/back.svg",
  25889. extra: 1393 / 1294,
  25890. bottom: 70 / 1463
  25891. }
  25892. },
  25893. head: {
  25894. height: math.unit(1.771, "feet"),
  25895. name: "Head",
  25896. image: {
  25897. source: "./media/characters/sinja/head.svg"
  25898. }
  25899. },
  25900. slit: {
  25901. height: math.unit(0.8, "feet"),
  25902. name: "Slit",
  25903. image: {
  25904. source: "./media/characters/sinja/slit.svg"
  25905. }
  25906. },
  25907. },
  25908. [
  25909. {
  25910. name: "Normal",
  25911. height: math.unit(2.3, "meters")
  25912. },
  25913. {
  25914. name: "Macro",
  25915. height: math.unit(91, "meters"),
  25916. default: true
  25917. },
  25918. {
  25919. name: "Megamacro",
  25920. height: math.unit(91440, "meters")
  25921. },
  25922. {
  25923. name: "Gigamacro",
  25924. height: math.unit(60960000, "meters")
  25925. },
  25926. {
  25927. name: "Teramacro",
  25928. height: math.unit(9144000000, "meters")
  25929. },
  25930. ]
  25931. ))
  25932. characterMakers.push(() => makeCharacter(
  25933. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25934. {
  25935. front: {
  25936. height: math.unit(1.7, "meters"),
  25937. weight: math.unit(130, "lb"),
  25938. name: "Front",
  25939. image: {
  25940. source: "./media/characters/kyu/front.svg",
  25941. extra: 415 / 395,
  25942. bottom: 5 / 420
  25943. }
  25944. },
  25945. head: {
  25946. height: math.unit(1.75, "feet"),
  25947. name: "Head",
  25948. image: {
  25949. source: "./media/characters/kyu/head.svg"
  25950. }
  25951. },
  25952. foot: {
  25953. height: math.unit(0.81, "feet"),
  25954. name: "Foot",
  25955. image: {
  25956. source: "./media/characters/kyu/foot.svg"
  25957. }
  25958. },
  25959. },
  25960. [
  25961. {
  25962. name: "Normal",
  25963. height: math.unit(1.7, "meters")
  25964. },
  25965. {
  25966. name: "Macro",
  25967. height: math.unit(131, "feet"),
  25968. default: true
  25969. },
  25970. {
  25971. name: "Megamacro",
  25972. height: math.unit(91440, "meters")
  25973. },
  25974. {
  25975. name: "Gigamacro",
  25976. height: math.unit(60960000, "meters")
  25977. },
  25978. {
  25979. name: "Teramacro",
  25980. height: math.unit(9144000000, "meters")
  25981. },
  25982. ]
  25983. ))
  25984. characterMakers.push(() => makeCharacter(
  25985. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25986. {
  25987. front: {
  25988. height: math.unit(7 + 1 / 12, "feet"),
  25989. weight: math.unit(250, "lb"),
  25990. name: "Front",
  25991. image: {
  25992. source: "./media/characters/joey/front.svg",
  25993. extra: 1791 / 1537,
  25994. bottom: 28 / 1816
  25995. }
  25996. },
  25997. },
  25998. [
  25999. {
  26000. name: "Micro",
  26001. height: math.unit(3, "inches")
  26002. },
  26003. {
  26004. name: "Normal",
  26005. height: math.unit(7 + 1 / 12, "feet"),
  26006. default: true
  26007. },
  26008. ]
  26009. ))
  26010. characterMakers.push(() => makeCharacter(
  26011. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26012. {
  26013. front: {
  26014. height: math.unit(165, "cm"),
  26015. weight: math.unit(140, "lb"),
  26016. name: "Front",
  26017. image: {
  26018. source: "./media/characters/sam-evans/front.svg",
  26019. extra: 3417 / 3230,
  26020. bottom: 41.3 / 3417
  26021. }
  26022. },
  26023. frontSixTails: {
  26024. height: math.unit(165, "cm"),
  26025. weight: math.unit(140, "lb"),
  26026. name: "Front-six-tails",
  26027. image: {
  26028. source: "./media/characters/sam-evans/front-six-tails.svg",
  26029. extra: 3417 / 3230,
  26030. bottom: 41.3 / 3417
  26031. }
  26032. },
  26033. back: {
  26034. height: math.unit(165, "cm"),
  26035. weight: math.unit(140, "lb"),
  26036. name: "Back",
  26037. image: {
  26038. source: "./media/characters/sam-evans/back.svg",
  26039. extra: 3227 / 3032,
  26040. bottom: 6.8 / 3234
  26041. }
  26042. },
  26043. face: {
  26044. height: math.unit(0.68, "feet"),
  26045. name: "Face",
  26046. image: {
  26047. source: "./media/characters/sam-evans/face.svg"
  26048. }
  26049. },
  26050. },
  26051. [
  26052. {
  26053. name: "Normal",
  26054. height: math.unit(165, "cm"),
  26055. default: true
  26056. },
  26057. {
  26058. name: "Macro",
  26059. height: math.unit(100, "meters")
  26060. },
  26061. {
  26062. name: "Macro+",
  26063. height: math.unit(800, "meters")
  26064. },
  26065. {
  26066. name: "Macro++",
  26067. height: math.unit(3, "km")
  26068. },
  26069. {
  26070. name: "Macro+++",
  26071. height: math.unit(30, "km")
  26072. },
  26073. ]
  26074. ))
  26075. characterMakers.push(() => makeCharacter(
  26076. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26077. {
  26078. front: {
  26079. height: math.unit(10, "feet"),
  26080. weight: math.unit(750, "lb"),
  26081. name: "Front",
  26082. image: {
  26083. source: "./media/characters/juliet-a/front.svg",
  26084. extra: 1766 / 1720,
  26085. bottom: 43 / 1809
  26086. }
  26087. },
  26088. back: {
  26089. height: math.unit(10, "feet"),
  26090. weight: math.unit(750, "lb"),
  26091. name: "Back",
  26092. image: {
  26093. source: "./media/characters/juliet-a/back.svg",
  26094. extra: 1781 / 1734,
  26095. bottom: 35 / 1810,
  26096. }
  26097. },
  26098. },
  26099. [
  26100. {
  26101. name: "Normal",
  26102. height: math.unit(10, "feet"),
  26103. default: true
  26104. },
  26105. {
  26106. name: "Dragon Form",
  26107. height: math.unit(250, "feet")
  26108. },
  26109. {
  26110. name: "Macro",
  26111. height: math.unit(1000, "feet")
  26112. },
  26113. {
  26114. name: "Megamacro",
  26115. height: math.unit(10000, "feet")
  26116. }
  26117. ]
  26118. ))
  26119. characterMakers.push(() => makeCharacter(
  26120. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26121. {
  26122. regular: {
  26123. height: math.unit(7 + 3 / 12, "feet"),
  26124. weight: math.unit(260, "lb"),
  26125. name: "Regular",
  26126. image: {
  26127. source: "./media/characters/wild/regular.svg",
  26128. extra: 97.45 / 92,
  26129. bottom: 6.8 / 104.3
  26130. }
  26131. },
  26132. biggums: {
  26133. height: math.unit(8 + 6 / 12, "feet"),
  26134. weight: math.unit(425, "lb"),
  26135. name: "Biggums",
  26136. image: {
  26137. source: "./media/characters/wild/biggums.svg",
  26138. extra: 97.45 / 92,
  26139. bottom: 7.5 / 132.34
  26140. }
  26141. },
  26142. mawRegular: {
  26143. height: math.unit(1.24, "feet"),
  26144. name: "Maw (Regular)",
  26145. image: {
  26146. source: "./media/characters/wild/maw.svg"
  26147. }
  26148. },
  26149. mawBiggums: {
  26150. height: math.unit(1.47, "feet"),
  26151. name: "Maw (Biggums)",
  26152. image: {
  26153. source: "./media/characters/wild/maw.svg"
  26154. }
  26155. },
  26156. },
  26157. [
  26158. {
  26159. name: "Normal",
  26160. height: math.unit(7 + 3 / 12, "feet"),
  26161. default: true
  26162. },
  26163. ]
  26164. ))
  26165. characterMakers.push(() => makeCharacter(
  26166. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26167. {
  26168. front: {
  26169. height: math.unit(2.5, "meters"),
  26170. weight: math.unit(200, "kg"),
  26171. name: "Front",
  26172. image: {
  26173. source: "./media/characters/vidar/front.svg",
  26174. extra: 2994 / 2795,
  26175. bottom: 56 / 3061
  26176. }
  26177. },
  26178. back: {
  26179. height: math.unit(2.5, "meters"),
  26180. weight: math.unit(200, "kg"),
  26181. name: "Back",
  26182. image: {
  26183. source: "./media/characters/vidar/back.svg",
  26184. extra: 3131 / 2928,
  26185. bottom: 13.5 / 3141.5
  26186. }
  26187. },
  26188. feral: {
  26189. height: math.unit(2.5, "meters"),
  26190. weight: math.unit(2000, "kg"),
  26191. name: "Feral",
  26192. image: {
  26193. source: "./media/characters/vidar/feral.svg",
  26194. extra: 2790 / 1765,
  26195. bottom: 6 / 2796
  26196. }
  26197. },
  26198. },
  26199. [
  26200. {
  26201. name: "Normal",
  26202. height: math.unit(2.5, "meters"),
  26203. default: true
  26204. },
  26205. {
  26206. name: "Macro",
  26207. height: math.unit(100, "meters")
  26208. },
  26209. ]
  26210. ))
  26211. characterMakers.push(() => makeCharacter(
  26212. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26213. {
  26214. front: {
  26215. height: math.unit(5 + 9 / 12, "feet"),
  26216. weight: math.unit(120, "lb"),
  26217. name: "Front",
  26218. image: {
  26219. source: "./media/characters/ash/front.svg",
  26220. extra: 2189 / 1961,
  26221. bottom: 5.2 / 2194
  26222. }
  26223. },
  26224. },
  26225. [
  26226. {
  26227. name: "Normal",
  26228. height: math.unit(5 + 9 / 12, "feet"),
  26229. default: true
  26230. },
  26231. ]
  26232. ))
  26233. characterMakers.push(() => makeCharacter(
  26234. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26235. {
  26236. front: {
  26237. height: math.unit(9, "feet"),
  26238. weight: math.unit(10000, "lb"),
  26239. name: "Front",
  26240. image: {
  26241. source: "./media/characters/gygabite/front.svg",
  26242. bottom: 31.7 / 537.8,
  26243. extra: 505 / 370
  26244. }
  26245. },
  26246. },
  26247. [
  26248. {
  26249. name: "Normal",
  26250. height: math.unit(9, "feet"),
  26251. default: true
  26252. },
  26253. ]
  26254. ))
  26255. characterMakers.push(() => makeCharacter(
  26256. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26257. {
  26258. front: {
  26259. height: math.unit(12, "feet"),
  26260. weight: math.unit(35000, "lb"),
  26261. name: "Front",
  26262. image: {
  26263. source: "./media/characters/p0tat0/front.svg",
  26264. extra: 1065 / 921,
  26265. bottom: 55.7 / 1121.25
  26266. }
  26267. },
  26268. },
  26269. [
  26270. {
  26271. name: "Normal",
  26272. height: math.unit(12, "feet"),
  26273. default: true
  26274. },
  26275. ]
  26276. ))
  26277. characterMakers.push(() => makeCharacter(
  26278. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26279. {
  26280. side: {
  26281. height: math.unit(6.5, "feet"),
  26282. weight: math.unit(800, "lb"),
  26283. name: "Side",
  26284. image: {
  26285. source: "./media/characters/dusk/side.svg",
  26286. extra: 615 / 373,
  26287. bottom: 53 / 664
  26288. }
  26289. },
  26290. sitting: {
  26291. height: math.unit(7, "feet"),
  26292. weight: math.unit(800, "lb"),
  26293. name: "Sitting",
  26294. image: {
  26295. source: "./media/characters/dusk/sitting.svg",
  26296. extra: 753 / 425,
  26297. bottom: 33 / 774
  26298. }
  26299. },
  26300. head: {
  26301. height: math.unit(6.1, "feet"),
  26302. name: "Head",
  26303. image: {
  26304. source: "./media/characters/dusk/head.svg"
  26305. }
  26306. },
  26307. },
  26308. [
  26309. {
  26310. name: "Normal",
  26311. height: math.unit(7, "feet"),
  26312. default: true
  26313. },
  26314. ]
  26315. ))
  26316. characterMakers.push(() => makeCharacter(
  26317. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26318. {
  26319. front: {
  26320. height: math.unit(15, "feet"),
  26321. weight: math.unit(7000, "lb"),
  26322. name: "Front",
  26323. image: {
  26324. source: "./media/characters/jay-direwolf/front.svg",
  26325. extra: 1810 / 1732,
  26326. bottom: 66 / 1892
  26327. }
  26328. },
  26329. },
  26330. [
  26331. {
  26332. name: "Normal",
  26333. height: math.unit(15, "feet"),
  26334. default: true
  26335. },
  26336. ]
  26337. ))
  26338. characterMakers.push(() => makeCharacter(
  26339. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26340. {
  26341. front: {
  26342. height: math.unit(4 + 9 / 12, "feet"),
  26343. weight: math.unit(130, "lb"),
  26344. name: "Front",
  26345. image: {
  26346. source: "./media/characters/anchovie/front.svg",
  26347. extra: 382 / 350,
  26348. bottom: 25 / 409
  26349. }
  26350. },
  26351. back: {
  26352. height: math.unit(4 + 9 / 12, "feet"),
  26353. weight: math.unit(130, "lb"),
  26354. name: "Back",
  26355. image: {
  26356. source: "./media/characters/anchovie/back.svg",
  26357. extra: 385 / 352,
  26358. bottom: 16.6 / 402
  26359. }
  26360. },
  26361. frontDressed: {
  26362. height: math.unit(4 + 9 / 12, "feet"),
  26363. weight: math.unit(130, "lb"),
  26364. name: "Front (Dressed)",
  26365. image: {
  26366. source: "./media/characters/anchovie/front-dressed.svg",
  26367. extra: 382 / 350,
  26368. bottom: 25 / 409
  26369. }
  26370. },
  26371. backDressed: {
  26372. height: math.unit(4 + 9 / 12, "feet"),
  26373. weight: math.unit(130, "lb"),
  26374. name: "Back (Dressed)",
  26375. image: {
  26376. source: "./media/characters/anchovie/back-dressed.svg",
  26377. extra: 385 / 352,
  26378. bottom: 16.6 / 402
  26379. }
  26380. },
  26381. },
  26382. [
  26383. {
  26384. name: "Micro",
  26385. height: math.unit(6.4, "inches")
  26386. },
  26387. {
  26388. name: "Normal",
  26389. height: math.unit(4 + 9 / 12, "feet"),
  26390. default: true
  26391. },
  26392. ]
  26393. ))
  26394. characterMakers.push(() => makeCharacter(
  26395. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26396. {
  26397. front: {
  26398. height: math.unit(2, "meters"),
  26399. weight: math.unit(180, "lb"),
  26400. name: "Front",
  26401. image: {
  26402. source: "./media/characters/acidrenamon/front.svg",
  26403. extra: 987 / 890,
  26404. bottom: 22.8 / 1009
  26405. }
  26406. },
  26407. back: {
  26408. height: math.unit(2, "meters"),
  26409. weight: math.unit(180, "lb"),
  26410. name: "Back",
  26411. image: {
  26412. source: "./media/characters/acidrenamon/back.svg",
  26413. extra: 983 / 891,
  26414. bottom: 8.4 / 992
  26415. }
  26416. },
  26417. head: {
  26418. height: math.unit(1.92, "feet"),
  26419. name: "Head",
  26420. image: {
  26421. source: "./media/characters/acidrenamon/head.svg"
  26422. }
  26423. },
  26424. rump: {
  26425. height: math.unit(1.72, "feet"),
  26426. name: "Rump",
  26427. image: {
  26428. source: "./media/characters/acidrenamon/rump.svg"
  26429. }
  26430. },
  26431. tail: {
  26432. height: math.unit(4.2, "feet"),
  26433. name: "Tail",
  26434. image: {
  26435. source: "./media/characters/acidrenamon/tail.svg"
  26436. }
  26437. },
  26438. },
  26439. [
  26440. {
  26441. name: "Normal",
  26442. height: math.unit(2, "meters"),
  26443. default: true
  26444. },
  26445. {
  26446. name: "Minimacro",
  26447. height: math.unit(7, "meters")
  26448. },
  26449. {
  26450. name: "Macro",
  26451. height: math.unit(200, "meters")
  26452. },
  26453. {
  26454. name: "Gigamacro",
  26455. height: math.unit(0.2, "earths")
  26456. },
  26457. ]
  26458. ))
  26459. characterMakers.push(() => makeCharacter(
  26460. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26461. {
  26462. front: {
  26463. height: math.unit(6, "feet"),
  26464. weight: math.unit(150, "lb"),
  26465. name: "Front",
  26466. image: {
  26467. source: "./media/characters/kenzie-lee/front.svg",
  26468. extra: 1525 / 1465,
  26469. bottom: 45 / 1570
  26470. }
  26471. },
  26472. side: {
  26473. height: math.unit(6, "feet"),
  26474. weight: math.unit(150, "lb"),
  26475. name: "Side",
  26476. image: {
  26477. source: "./media/characters/kenzie-lee/side.svg",
  26478. extra: 5505 / 5383,
  26479. bottom: 60 / 5573
  26480. }
  26481. },
  26482. },
  26483. [
  26484. {
  26485. name: "Normal",
  26486. height: math.unit(152, "feet"),
  26487. default: true
  26488. },
  26489. {
  26490. name: "Megamacro",
  26491. height: math.unit(7, "miles")
  26492. },
  26493. {
  26494. name: "Gigamacro",
  26495. height: math.unit(8000, "miles")
  26496. },
  26497. ]
  26498. ))
  26499. characterMakers.push(() => makeCharacter(
  26500. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26501. {
  26502. side: {
  26503. height: math.unit(6, "feet"),
  26504. weight: math.unit(150, "lb"),
  26505. name: "Side",
  26506. image: {
  26507. source: "./media/characters/withers/side.svg",
  26508. extra: 1830 / 1728,
  26509. bottom: 96 / 1927
  26510. }
  26511. },
  26512. front: {
  26513. height: math.unit(6, "feet"),
  26514. weight: math.unit(150, "lb"),
  26515. name: "Front",
  26516. image: {
  26517. source: "./media/characters/withers/front.svg",
  26518. extra: 1514 / 1438,
  26519. bottom: 118 / 1632
  26520. }
  26521. },
  26522. },
  26523. [
  26524. {
  26525. name: "Normal",
  26526. height: math.unit(6, "feet")
  26527. },
  26528. {
  26529. name: "Macro",
  26530. height: math.unit(50, "feet")
  26531. },
  26532. {
  26533. name: "Megamacro",
  26534. height: math.unit(15, "miles"),
  26535. default: true
  26536. },
  26537. {
  26538. name: "Megamacro+",
  26539. height: math.unit(100, "km")
  26540. },
  26541. {
  26542. name: "Gigamacro",
  26543. height: math.unit(4750, "miles")
  26544. },
  26545. {
  26546. name: "Gigamacro+",
  26547. height: math.unit(32000, "miles")
  26548. },
  26549. ]
  26550. ))
  26551. characterMakers.push(() => makeCharacter(
  26552. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26553. {
  26554. front: {
  26555. height: math.unit(6 + 7 / 12, "feet"),
  26556. weight: math.unit(250, "lb"),
  26557. name: "Front",
  26558. image: {
  26559. source: "./media/characters/nemoskii/front.svg",
  26560. extra: 2270 / 1734,
  26561. bottom: 86 / 2354
  26562. }
  26563. },
  26564. back: {
  26565. height: math.unit(6 + 7 / 12, "feet"),
  26566. weight: math.unit(250, "lb"),
  26567. name: "Back",
  26568. image: {
  26569. source: "./media/characters/nemoskii/back.svg",
  26570. extra: 1845 / 1788,
  26571. bottom: 10.5 / 1852
  26572. }
  26573. },
  26574. head: {
  26575. height: math.unit(1.31, "feet"),
  26576. name: "Head",
  26577. image: {
  26578. source: "./media/characters/nemoskii/head.svg"
  26579. }
  26580. },
  26581. },
  26582. [
  26583. {
  26584. name: "Normal",
  26585. height: math.unit(6 + 7 / 12, "feet"),
  26586. default: true
  26587. },
  26588. ]
  26589. ))
  26590. characterMakers.push(() => makeCharacter(
  26591. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26592. {
  26593. front: {
  26594. height: math.unit(1, "mile"),
  26595. weight: math.unit(265261.9, "lb"),
  26596. name: "Front",
  26597. image: {
  26598. source: "./media/characters/shui/front.svg",
  26599. extra: 1633 / 1564,
  26600. bottom: 91.5 / 1726
  26601. }
  26602. },
  26603. },
  26604. [
  26605. {
  26606. name: "Macro",
  26607. height: math.unit(1, "mile"),
  26608. default: true
  26609. },
  26610. ]
  26611. ))
  26612. characterMakers.push(() => makeCharacter(
  26613. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26614. {
  26615. front: {
  26616. height: math.unit(12 + 6 / 12, "feet"),
  26617. weight: math.unit(1342, "lb"),
  26618. name: "Front",
  26619. image: {
  26620. source: "./media/characters/arokh-takakura/front.svg",
  26621. extra: 1089 / 1043,
  26622. bottom: 77.4 / 1176.7
  26623. }
  26624. },
  26625. back: {
  26626. height: math.unit(12 + 6 / 12, "feet"),
  26627. weight: math.unit(1342, "lb"),
  26628. name: "Back",
  26629. image: {
  26630. source: "./media/characters/arokh-takakura/back.svg",
  26631. extra: 1046 / 1019,
  26632. bottom: 102 / 1150
  26633. }
  26634. },
  26635. },
  26636. [
  26637. {
  26638. name: "Big",
  26639. height: math.unit(12 + 6 / 12, "feet"),
  26640. default: true
  26641. },
  26642. ]
  26643. ))
  26644. characterMakers.push(() => makeCharacter(
  26645. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26646. {
  26647. front: {
  26648. height: math.unit(5 + 6 / 12, "feet"),
  26649. weight: math.unit(150, "lb"),
  26650. name: "Front",
  26651. image: {
  26652. source: "./media/characters/theo/front.svg",
  26653. extra: 1184 / 1131,
  26654. bottom: 7.4 / 1191
  26655. }
  26656. },
  26657. },
  26658. [
  26659. {
  26660. name: "Micro",
  26661. height: math.unit(5, "inches")
  26662. },
  26663. {
  26664. name: "Normal",
  26665. height: math.unit(5 + 6 / 12, "feet"),
  26666. default: true
  26667. },
  26668. ]
  26669. ))
  26670. characterMakers.push(() => makeCharacter(
  26671. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26672. {
  26673. front: {
  26674. height: math.unit(5 + 9 / 12, "feet"),
  26675. weight: math.unit(130, "lb"),
  26676. name: "Front",
  26677. image: {
  26678. source: "./media/characters/cecelia-swift/front.svg",
  26679. extra: 502 / 484,
  26680. bottom: 23 / 523
  26681. }
  26682. },
  26683. back: {
  26684. height: math.unit(5 + 9 / 12, "feet"),
  26685. weight: math.unit(130, "lb"),
  26686. name: "Back",
  26687. image: {
  26688. source: "./media/characters/cecelia-swift/back.svg",
  26689. extra: 499 / 485,
  26690. bottom: 12 / 511
  26691. }
  26692. },
  26693. head: {
  26694. height: math.unit(0.90, "feet"),
  26695. name: "Head",
  26696. image: {
  26697. source: "./media/characters/cecelia-swift/head.svg"
  26698. }
  26699. },
  26700. rump: {
  26701. height: math.unit(1.75, "feet"),
  26702. name: "Rump",
  26703. image: {
  26704. source: "./media/characters/cecelia-swift/rump.svg"
  26705. }
  26706. },
  26707. },
  26708. [
  26709. {
  26710. name: "Normal",
  26711. height: math.unit(5 + 9 / 12, "feet"),
  26712. default: true
  26713. },
  26714. {
  26715. name: "Big",
  26716. height: math.unit(50, "feet")
  26717. },
  26718. {
  26719. name: "Macro",
  26720. height: math.unit(100, "feet")
  26721. },
  26722. {
  26723. name: "Macro+",
  26724. height: math.unit(500, "feet")
  26725. },
  26726. {
  26727. name: "Macro++",
  26728. height: math.unit(1000, "feet")
  26729. },
  26730. ]
  26731. ))
  26732. characterMakers.push(() => makeCharacter(
  26733. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26734. {
  26735. front: {
  26736. height: math.unit(6, "feet"),
  26737. weight: math.unit(150, "lb"),
  26738. name: "Front",
  26739. image: {
  26740. source: "./media/characters/kaunan/front.svg",
  26741. extra: 2890 / 2523,
  26742. bottom: 49 / 2939
  26743. }
  26744. },
  26745. },
  26746. [
  26747. {
  26748. name: "Macro",
  26749. height: math.unit(150, "feet"),
  26750. default: true
  26751. },
  26752. ]
  26753. ))
  26754. characterMakers.push(() => makeCharacter(
  26755. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26756. {
  26757. front: {
  26758. height: math.unit(175, "cm"),
  26759. weight: math.unit(60, "kg"),
  26760. name: "Front",
  26761. image: {
  26762. source: "./media/characters/fei/front.svg",
  26763. extra: 2581 / 2400,
  26764. bottom: 82.2 / 2663
  26765. }
  26766. },
  26767. },
  26768. [
  26769. {
  26770. name: "Mortal",
  26771. height: math.unit(175, "cm")
  26772. },
  26773. {
  26774. name: "Normal",
  26775. height: math.unit(3500, "m"),
  26776. default: true
  26777. },
  26778. {
  26779. name: "Stroll",
  26780. height: math.unit(17.5, "km")
  26781. },
  26782. {
  26783. name: "Showoff",
  26784. height: math.unit(175, "km")
  26785. },
  26786. ]
  26787. ))
  26788. characterMakers.push(() => makeCharacter(
  26789. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26790. {
  26791. front: {
  26792. height: math.unit(7, "feet"),
  26793. weight: math.unit(1000, "kg"),
  26794. name: "Front",
  26795. image: {
  26796. source: "./media/characters/edrax/front.svg",
  26797. extra: 2838 / 2550,
  26798. bottom: 130 / 2968
  26799. }
  26800. },
  26801. },
  26802. [
  26803. {
  26804. name: "Small",
  26805. height: math.unit(7, "feet")
  26806. },
  26807. {
  26808. name: "Normal",
  26809. height: math.unit(1500, "meters")
  26810. },
  26811. {
  26812. name: "Mega",
  26813. height: math.unit(12000000, "km"),
  26814. default: true
  26815. },
  26816. {
  26817. name: "Megamacro",
  26818. height: math.unit(10600000, "lightyears")
  26819. },
  26820. {
  26821. name: "Hypermacro",
  26822. height: math.unit(256, "yottameters")
  26823. },
  26824. ]
  26825. ))
  26826. characterMakers.push(() => makeCharacter(
  26827. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26828. {
  26829. front: {
  26830. height: math.unit(10, "feet"),
  26831. weight: math.unit(750, "lb"),
  26832. name: "Front",
  26833. image: {
  26834. source: "./media/characters/clove/front.svg",
  26835. extra: 2031 / 1860,
  26836. bottom: 47.8 / 2080
  26837. }
  26838. },
  26839. back: {
  26840. height: math.unit(10, "feet"),
  26841. weight: math.unit(750, "lb"),
  26842. name: "Back",
  26843. image: {
  26844. source: "./media/characters/clove/back.svg",
  26845. extra: 2025 / 1859,
  26846. bottom: 46 / 2071
  26847. }
  26848. },
  26849. },
  26850. [
  26851. {
  26852. name: "Normal",
  26853. height: math.unit(10, "feet")
  26854. },
  26855. ]
  26856. ))
  26857. characterMakers.push(() => makeCharacter(
  26858. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26859. {
  26860. front: {
  26861. height: math.unit(4, "feet"),
  26862. weight: math.unit(50, "lb"),
  26863. name: "Front",
  26864. image: {
  26865. source: "./media/characters/alex-rabbit/front.svg",
  26866. extra: 507 / 458,
  26867. bottom: 18.5 / 527
  26868. }
  26869. },
  26870. back: {
  26871. height: math.unit(4, "feet"),
  26872. weight: math.unit(50, "lb"),
  26873. name: "Back",
  26874. image: {
  26875. source: "./media/characters/alex-rabbit/back.svg",
  26876. extra: 502 / 460,
  26877. bottom: 18.9 / 521
  26878. }
  26879. },
  26880. },
  26881. [
  26882. {
  26883. name: "Normal",
  26884. height: math.unit(4, "feet"),
  26885. default: true
  26886. },
  26887. ]
  26888. ))
  26889. characterMakers.push(() => makeCharacter(
  26890. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26891. {
  26892. front: {
  26893. height: math.unit(1 + 3 / 12, "feet"),
  26894. weight: math.unit(80, "lb"),
  26895. name: "Front",
  26896. image: {
  26897. source: "./media/characters/zander-rose/front.svg",
  26898. extra: 916 / 797,
  26899. bottom: 17 / 933
  26900. }
  26901. },
  26902. back: {
  26903. height: math.unit(1 + 3 / 12, "feet"),
  26904. weight: math.unit(80, "lb"),
  26905. name: "Back",
  26906. image: {
  26907. source: "./media/characters/zander-rose/back.svg",
  26908. extra: 903 / 779,
  26909. bottom: 31 / 934
  26910. }
  26911. },
  26912. },
  26913. [
  26914. {
  26915. name: "Normal",
  26916. height: math.unit(1 + 3 / 12, "feet"),
  26917. default: true
  26918. },
  26919. ]
  26920. ))
  26921. characterMakers.push(() => makeCharacter(
  26922. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26923. {
  26924. anthro: {
  26925. height: math.unit(6, "feet"),
  26926. weight: math.unit(150, "lb"),
  26927. name: "Anthro",
  26928. image: {
  26929. source: "./media/characters/razz/anthro.svg",
  26930. extra: 1437 / 1343,
  26931. bottom: 48 / 1485
  26932. }
  26933. },
  26934. feral: {
  26935. height: math.unit(6, "feet"),
  26936. weight: math.unit(150, "lb"),
  26937. name: "Feral",
  26938. image: {
  26939. source: "./media/characters/razz/feral.svg",
  26940. extra: 2569 / 1385,
  26941. bottom: 95 / 2664
  26942. }
  26943. },
  26944. },
  26945. [
  26946. {
  26947. name: "Normal",
  26948. height: math.unit(6, "feet"),
  26949. default: true
  26950. },
  26951. ]
  26952. ))
  26953. characterMakers.push(() => makeCharacter(
  26954. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  26955. {
  26956. front: {
  26957. height: math.unit(9 + 4 / 12, "feet"),
  26958. weight: math.unit(500, "lb"),
  26959. name: "Front",
  26960. image: {
  26961. source: "./media/characters/morrigan/front.svg",
  26962. extra: 2707 / 2579,
  26963. bottom: 156 / 2863
  26964. }
  26965. },
  26966. },
  26967. [
  26968. {
  26969. name: "Normal",
  26970. height: math.unit(9 + 4 / 12, "feet"),
  26971. default: true
  26972. },
  26973. ]
  26974. ))
  26975. characterMakers.push(() => makeCharacter(
  26976. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  26977. {
  26978. front: {
  26979. height: math.unit(5, "stories"),
  26980. weight: math.unit(4000, "lb"),
  26981. name: "Front",
  26982. image: {
  26983. source: "./media/characters/jenene/front.svg",
  26984. extra: 1780 / 1710,
  26985. bottom: 57 / 1837
  26986. }
  26987. },
  26988. },
  26989. [
  26990. {
  26991. name: "Normal",
  26992. height: math.unit(5, "stories"),
  26993. default: true
  26994. },
  26995. ]
  26996. ))
  26997. characterMakers.push(() => makeCharacter(
  26998. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  26999. {
  27000. front: {
  27001. height: math.unit(6, "feet"),
  27002. weight: math.unit(150, "lb"),
  27003. name: "Front",
  27004. image: {
  27005. source: "./media/characters/vix-archaser/front.svg",
  27006. extra: 2767 / 2562,
  27007. bottom: 36 / 2803
  27008. }
  27009. },
  27010. },
  27011. [
  27012. {
  27013. name: "Micro",
  27014. height: math.unit(1, "foot")
  27015. },
  27016. {
  27017. name: "Normal",
  27018. height: math.unit(6 + 5 / 12, "feet")
  27019. },
  27020. {
  27021. name: "Minimacro",
  27022. height: math.unit(500, "feet")
  27023. },
  27024. {
  27025. name: "Macro",
  27026. height: math.unit(4, "miles")
  27027. },
  27028. {
  27029. name: "Megamacro",
  27030. height: math.unit(250, "miles"),
  27031. default: true
  27032. },
  27033. {
  27034. name: "Gigamacro",
  27035. height: math.unit(1, "universe")
  27036. },
  27037. {
  27038. name: "Endgame",
  27039. height: math.unit(100, "multiverses")
  27040. }
  27041. ]
  27042. ))
  27043. characterMakers.push(() => makeCharacter(
  27044. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27045. {
  27046. taurSfw: {
  27047. height: math.unit(10, "meters"),
  27048. weight: math.unit(17500, "kg"),
  27049. name: "Taur",
  27050. image: {
  27051. source: "./media/characters/faey/taur-sfw.svg",
  27052. extra: 1200 / 968,
  27053. bottom: 41 / 1241
  27054. }
  27055. },
  27056. chestmaw: {
  27057. height: math.unit(2.01, "meters"),
  27058. name: "Chestmaw",
  27059. image: {
  27060. source: "./media/characters/faey/chestmaw.svg"
  27061. }
  27062. },
  27063. foot: {
  27064. height: math.unit(2.43, "meters"),
  27065. name: "Foot",
  27066. image: {
  27067. source: "./media/characters/faey/foot.svg"
  27068. }
  27069. },
  27070. jaws: {
  27071. height: math.unit(1.66, "meters"),
  27072. name: "Jaws",
  27073. image: {
  27074. source: "./media/characters/faey/jaws.svg"
  27075. }
  27076. },
  27077. tongues: {
  27078. height: math.unit(2.01, "meters"),
  27079. name: "Tongues",
  27080. image: {
  27081. source: "./media/characters/faey/tongues.svg"
  27082. }
  27083. },
  27084. },
  27085. [
  27086. {
  27087. name: "Small",
  27088. height: math.unit(10, "meters"),
  27089. default: true
  27090. },
  27091. {
  27092. name: "Big",
  27093. height: math.unit(500000, "km")
  27094. },
  27095. ]
  27096. ))
  27097. characterMakers.push(() => makeCharacter(
  27098. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27099. {
  27100. front: {
  27101. height: math.unit(7, "feet"),
  27102. weight: math.unit(275, "lb"),
  27103. name: "Front",
  27104. image: {
  27105. source: "./media/characters/roku/front.svg",
  27106. extra: 903 / 878,
  27107. bottom: 37 / 940
  27108. }
  27109. },
  27110. },
  27111. [
  27112. {
  27113. name: "Normal",
  27114. height: math.unit(7, "feet"),
  27115. default: true
  27116. },
  27117. {
  27118. name: "Macro",
  27119. height: math.unit(500, "feet")
  27120. },
  27121. {
  27122. name: "Megamacro",
  27123. height: math.unit(200, "miles")
  27124. },
  27125. ]
  27126. ))
  27127. characterMakers.push(() => makeCharacter(
  27128. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27129. {
  27130. front: {
  27131. height: math.unit(6 + 2 / 12, "feet"),
  27132. weight: math.unit(150, "lb"),
  27133. name: "Front",
  27134. image: {
  27135. source: "./media/characters/lira/front.svg",
  27136. extra: 1727 / 1605,
  27137. bottom: 26 / 1753
  27138. }
  27139. },
  27140. back: {
  27141. height: math.unit(6 + 2 / 12, "feet"),
  27142. weight: math.unit(150, "lb"),
  27143. name: "Back",
  27144. image: {
  27145. source: "./media/characters/lira/back.svg",
  27146. extra: 1713 / 159,
  27147. bottom: 20 / 1733
  27148. }
  27149. },
  27150. hand: {
  27151. height: math.unit(0.75, "feet"),
  27152. name: "Hand",
  27153. image: {
  27154. source: "./media/characters/lira/hand.svg"
  27155. }
  27156. },
  27157. maw: {
  27158. height: math.unit(0.65, "feet"),
  27159. name: "Maw",
  27160. image: {
  27161. source: "./media/characters/lira/maw.svg"
  27162. }
  27163. },
  27164. pawDigi: {
  27165. height: math.unit(1.6, "feet"),
  27166. name: "Paw Digi",
  27167. image: {
  27168. source: "./media/characters/lira/paw-digi.svg"
  27169. }
  27170. },
  27171. pawPlanti: {
  27172. height: math.unit(1.4, "feet"),
  27173. name: "Paw Planti",
  27174. image: {
  27175. source: "./media/characters/lira/paw-planti.svg"
  27176. }
  27177. },
  27178. },
  27179. [
  27180. {
  27181. name: "Normal",
  27182. height: math.unit(6 + 2 / 12, "feet"),
  27183. default: true
  27184. },
  27185. {
  27186. name: "Macro",
  27187. height: math.unit(100, "feet")
  27188. },
  27189. {
  27190. name: "Macro²",
  27191. height: math.unit(1600, "feet")
  27192. },
  27193. {
  27194. name: "Planetary",
  27195. height: math.unit(20, "earths")
  27196. },
  27197. ]
  27198. ))
  27199. characterMakers.push(() => makeCharacter(
  27200. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27201. {
  27202. front: {
  27203. height: math.unit(6, "feet"),
  27204. weight: math.unit(150, "lb"),
  27205. name: "Front",
  27206. image: {
  27207. source: "./media/characters/hadjet/front.svg",
  27208. extra: 1480 / 1346,
  27209. bottom: 26 / 1506
  27210. }
  27211. },
  27212. frontNsfw: {
  27213. height: math.unit(6, "feet"),
  27214. weight: math.unit(150, "lb"),
  27215. name: "Front (NSFW)",
  27216. image: {
  27217. source: "./media/characters/hadjet/front-nsfw.svg",
  27218. extra: 1440 / 1358,
  27219. bottom: 52 / 1492
  27220. }
  27221. },
  27222. },
  27223. [
  27224. {
  27225. name: "Macro",
  27226. height: math.unit(10, "stories"),
  27227. default: true
  27228. },
  27229. {
  27230. name: "Megamacro",
  27231. height: math.unit(1.5, "miles")
  27232. },
  27233. {
  27234. name: "Megamacro+",
  27235. height: math.unit(5, "miles")
  27236. },
  27237. ]
  27238. ))
  27239. characterMakers.push(() => makeCharacter(
  27240. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27241. {
  27242. side: {
  27243. height: math.unit(106, "feet"),
  27244. weight: math.unit(500, "tonnes"),
  27245. name: "Side",
  27246. image: {
  27247. source: "./media/characters/kodran/side.svg",
  27248. extra: 553 / 480,
  27249. bottom: 33 / 586
  27250. }
  27251. },
  27252. front: {
  27253. height: math.unit(132, "feet"),
  27254. weight: math.unit(500, "tonnes"),
  27255. name: "Front",
  27256. image: {
  27257. source: "./media/characters/kodran/front.svg",
  27258. extra: 667 / 643,
  27259. bottom: 42 / 709
  27260. }
  27261. },
  27262. flying: {
  27263. height: math.unit(350, "feet"),
  27264. weight: math.unit(500, "tonnes"),
  27265. name: "Flying",
  27266. image: {
  27267. source: "./media/characters/kodran/flying.svg"
  27268. }
  27269. },
  27270. foot: {
  27271. height: math.unit(33, "feet"),
  27272. name: "Foot",
  27273. image: {
  27274. source: "./media/characters/kodran/foot.svg"
  27275. }
  27276. },
  27277. footFront: {
  27278. height: math.unit(19, "feet"),
  27279. name: "Foot (Front)",
  27280. image: {
  27281. source: "./media/characters/kodran/foot-front.svg",
  27282. extra: 261 / 261,
  27283. bottom: 91 / 352
  27284. }
  27285. },
  27286. headFront: {
  27287. height: math.unit(53, "feet"),
  27288. name: "Head (Front)",
  27289. image: {
  27290. source: "./media/characters/kodran/head-front.svg"
  27291. }
  27292. },
  27293. headSide: {
  27294. height: math.unit(65, "feet"),
  27295. name: "Head (Side)",
  27296. image: {
  27297. source: "./media/characters/kodran/head-side.svg"
  27298. }
  27299. },
  27300. throat: {
  27301. height: math.unit(79, "feet"),
  27302. name: "Throat",
  27303. image: {
  27304. source: "./media/characters/kodran/throat.svg"
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Large",
  27311. height: math.unit(106, "feet"),
  27312. default: true
  27313. },
  27314. ]
  27315. ))
  27316. characterMakers.push(() => makeCharacter(
  27317. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27318. {
  27319. side: {
  27320. height: math.unit(11, "feet"),
  27321. weight: math.unit(150, "lb"),
  27322. name: "Side",
  27323. image: {
  27324. source: "./media/characters/pyxaron/side.svg",
  27325. extra: 305 / 195,
  27326. bottom: 17 / 322
  27327. }
  27328. },
  27329. },
  27330. [
  27331. {
  27332. name: "Normal",
  27333. height: math.unit(11, "feet")
  27334. },
  27335. ]
  27336. ))
  27337. characterMakers.push(() => makeCharacter(
  27338. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27339. {
  27340. front: {
  27341. height: math.unit(6, "feet"),
  27342. weight: math.unit(150, "lb"),
  27343. name: "Front",
  27344. image: {
  27345. source: "./media/characters/meep/front.svg",
  27346. extra: 88 / 80,
  27347. bottom: 6 / 94
  27348. }
  27349. },
  27350. },
  27351. [
  27352. {
  27353. name: "Fun Sized",
  27354. height: math.unit(2, "inches"),
  27355. default: true
  27356. },
  27357. {
  27358. name: "Friend Sized",
  27359. height: math.unit(8, "inches")
  27360. },
  27361. ]
  27362. ))
  27363. characterMakers.push(() => makeCharacter(
  27364. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27365. {
  27366. front: {
  27367. height: math.unit(15, "feet"),
  27368. weight: math.unit(2500, "lb"),
  27369. name: "Front",
  27370. image: {
  27371. source: "./media/characters/holly-rabbit/front.svg",
  27372. extra: 1433 / 1233,
  27373. bottom: 125 / 1558
  27374. }
  27375. },
  27376. dick: {
  27377. height: math.unit(4.6, "feet"),
  27378. name: "Dick",
  27379. image: {
  27380. source: "./media/characters/holly-rabbit/dick.svg"
  27381. }
  27382. },
  27383. },
  27384. [
  27385. {
  27386. name: "Normal",
  27387. height: math.unit(15, "feet"),
  27388. default: true
  27389. },
  27390. {
  27391. name: "Macro",
  27392. height: math.unit(250, "feet")
  27393. },
  27394. {
  27395. name: "Macro+",
  27396. height: math.unit(2500, "feet")
  27397. },
  27398. ]
  27399. ))
  27400. characterMakers.push(() => makeCharacter(
  27401. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27402. {
  27403. front: {
  27404. height: math.unit(3.02, "meters"),
  27405. weight: math.unit(500, "kg"),
  27406. name: "Front",
  27407. image: {
  27408. source: "./media/characters/drena/front.svg",
  27409. extra: 282 / 243,
  27410. bottom: 8 / 290
  27411. }
  27412. },
  27413. side: {
  27414. height: math.unit(3.02, "meters"),
  27415. weight: math.unit(500, "kg"),
  27416. name: "Side",
  27417. image: {
  27418. source: "./media/characters/drena/side.svg",
  27419. extra: 280 / 245,
  27420. bottom: 10 / 290
  27421. }
  27422. },
  27423. back: {
  27424. height: math.unit(3.02, "meters"),
  27425. weight: math.unit(500, "kg"),
  27426. name: "Back",
  27427. image: {
  27428. source: "./media/characters/drena/back.svg",
  27429. extra: 278 / 243,
  27430. bottom: 2 / 280
  27431. }
  27432. },
  27433. foot: {
  27434. height: math.unit(0.75, "meters"),
  27435. name: "Foot",
  27436. image: {
  27437. source: "./media/characters/drena/foot.svg"
  27438. }
  27439. },
  27440. maw: {
  27441. height: math.unit(0.82, "meters"),
  27442. name: "Maw",
  27443. image: {
  27444. source: "./media/characters/drena/maw.svg"
  27445. }
  27446. },
  27447. rump: {
  27448. height: math.unit(0.93, "meters"),
  27449. name: "Rump",
  27450. image: {
  27451. source: "./media/characters/drena/rump.svg"
  27452. }
  27453. },
  27454. },
  27455. [
  27456. {
  27457. name: "Normal",
  27458. height: math.unit(3.02, "meters"),
  27459. default: true
  27460. },
  27461. ]
  27462. ))
  27463. characterMakers.push(() => makeCharacter(
  27464. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27465. {
  27466. front: {
  27467. height: math.unit(6 + 4 / 12, "feet"),
  27468. weight: math.unit(250, "lb"),
  27469. name: "Front",
  27470. image: {
  27471. source: "./media/characters/remmyzilla/front.svg",
  27472. extra: 4033 / 3588,
  27473. bottom: 123 / 4156
  27474. }
  27475. },
  27476. back: {
  27477. height: math.unit(6 + 4 / 12, "feet"),
  27478. weight: math.unit(250, "lb"),
  27479. name: "Back",
  27480. image: {
  27481. source: "./media/characters/remmyzilla/back.svg",
  27482. extra: 2687 / 2555,
  27483. bottom: 48 / 2735
  27484. }
  27485. },
  27486. frontFancy: {
  27487. height: math.unit(6 + 4 / 12, "feet"),
  27488. weight: math.unit(250, "lb"),
  27489. name: "Front (Fancy)",
  27490. image: {
  27491. source: "./media/characters/remmyzilla/front-fancy.svg",
  27492. extra: 4119 / 3419,
  27493. bottom: 237 / 4356
  27494. }
  27495. },
  27496. paw: {
  27497. height: math.unit(1.73, "feet"),
  27498. name: "Paw",
  27499. image: {
  27500. source: "./media/characters/remmyzilla/paw.svg"
  27501. }
  27502. },
  27503. maw: {
  27504. height: math.unit(1.73, "feet"),
  27505. name: "Maw",
  27506. image: {
  27507. source: "./media/characters/remmyzilla/maw.svg"
  27508. }
  27509. },
  27510. },
  27511. [
  27512. {
  27513. name: "Normal",
  27514. height: math.unit(6 + 4 / 12, "feet")
  27515. },
  27516. {
  27517. name: "Minimacro",
  27518. height: math.unit(12 + 8 / 12, "feet")
  27519. },
  27520. {
  27521. name: "Normal",
  27522. height: math.unit(640, "feet"),
  27523. default: true
  27524. },
  27525. {
  27526. name: "Megamacro",
  27527. height: math.unit(6400, "feet")
  27528. },
  27529. {
  27530. name: "Gigamacro",
  27531. height: math.unit(64000, "miles")
  27532. },
  27533. ]
  27534. ))
  27535. characterMakers.push(() => makeCharacter(
  27536. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27537. {
  27538. front: {
  27539. height: math.unit(2.5, "meters"),
  27540. weight: math.unit(300, "lb"),
  27541. name: "Front",
  27542. image: {
  27543. source: "./media/characters/lawrence/front.svg",
  27544. extra: 357 / 335,
  27545. bottom: 30 / 387
  27546. }
  27547. },
  27548. back: {
  27549. height: math.unit(2.5, "meters"),
  27550. weight: math.unit(300, "lb"),
  27551. name: "Back",
  27552. image: {
  27553. source: "./media/characters/lawrence/back.svg",
  27554. extra: 357 / 338,
  27555. bottom: 16 / 373
  27556. }
  27557. },
  27558. head: {
  27559. height: math.unit(0.9, "meter"),
  27560. name: "Head",
  27561. image: {
  27562. source: "./media/characters/lawrence/head.svg"
  27563. }
  27564. },
  27565. maw: {
  27566. height: math.unit(0.7, "meter"),
  27567. name: "Maw",
  27568. image: {
  27569. source: "./media/characters/lawrence/maw.svg"
  27570. }
  27571. },
  27572. footBottom: {
  27573. height: math.unit(0.5, "meter"),
  27574. name: "Foot (Bottom)",
  27575. image: {
  27576. source: "./media/characters/lawrence/foot-bottom.svg"
  27577. }
  27578. },
  27579. footTop: {
  27580. height: math.unit(0.5, "meter"),
  27581. name: "Foot (Top)",
  27582. image: {
  27583. source: "./media/characters/lawrence/foot-top.svg"
  27584. }
  27585. },
  27586. },
  27587. [
  27588. {
  27589. name: "Normal",
  27590. height: math.unit(2.5, "meters"),
  27591. default: true
  27592. },
  27593. {
  27594. name: "Macro",
  27595. height: math.unit(95, "meters")
  27596. },
  27597. {
  27598. name: "Megamacro",
  27599. height: math.unit(150, "km")
  27600. },
  27601. ]
  27602. ))
  27603. characterMakers.push(() => makeCharacter(
  27604. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27605. {
  27606. front: {
  27607. height: math.unit(4.2, "meters"),
  27608. name: "Front",
  27609. image: {
  27610. source: "./media/characters/sydney/front.svg",
  27611. extra: 1323 / 1277,
  27612. bottom: 111 / 1434
  27613. }
  27614. },
  27615. },
  27616. [
  27617. {
  27618. name: "Normal",
  27619. height: math.unit(4.2, "meters")
  27620. },
  27621. ]
  27622. ))
  27623. characterMakers.push(() => makeCharacter(
  27624. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27625. {
  27626. back: {
  27627. height: math.unit(201, "feet"),
  27628. name: "Back",
  27629. image: {
  27630. source: "./media/characters/jessica/back.svg",
  27631. extra: 273 / 259,
  27632. bottom: 7 / 280
  27633. }
  27634. },
  27635. },
  27636. [
  27637. {
  27638. name: "Normal",
  27639. height: math.unit(201, "feet"),
  27640. default: true
  27641. },
  27642. {
  27643. name: "Megamacro",
  27644. height: math.unit(8, "miles")
  27645. },
  27646. ]
  27647. ))
  27648. characterMakers.push(() => makeCharacter(
  27649. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27650. {
  27651. side: {
  27652. height: math.unit(320, "cm"),
  27653. name: "Side",
  27654. image: {
  27655. source: "./media/characters/victoria/side.svg",
  27656. extra: 778 / 346,
  27657. bottom: 56 / 834
  27658. }
  27659. },
  27660. maw: {
  27661. height: math.unit(5.9, "feet"),
  27662. name: "Maw",
  27663. image: {
  27664. source: "./media/characters/victoria/maw.svg"
  27665. }
  27666. },
  27667. },
  27668. [
  27669. {
  27670. name: "Normal",
  27671. height: math.unit(320, "cm"),
  27672. default: true
  27673. },
  27674. ]
  27675. ))
  27676. characterMakers.push(() => makeCharacter(
  27677. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27678. {
  27679. front: {
  27680. height: math.unit(5 + 6 / 12, "feet"),
  27681. name: "Front",
  27682. image: {
  27683. source: "./media/characters/cat/front.svg",
  27684. extra: 1374 / 1257,
  27685. bottom: 59 / 1433
  27686. }
  27687. },
  27688. back: {
  27689. height: math.unit(5 + 6 / 12, "feet"),
  27690. name: "Back",
  27691. image: {
  27692. source: "./media/characters/cat/back.svg",
  27693. extra: 1337 / 1226,
  27694. bottom: 34 / 1371
  27695. }
  27696. },
  27697. taur: {
  27698. height: math.unit(7, "feet"),
  27699. name: "Taur",
  27700. image: {
  27701. source: "./media/characters/cat/taur.svg",
  27702. extra: 1345 / 1231,
  27703. bottom: 66 / 1411
  27704. }
  27705. },
  27706. lucario: {
  27707. height: math.unit(4, "feet"),
  27708. name: "Lucario",
  27709. image: {
  27710. source: "./media/characters/cat/lucario.svg",
  27711. extra: 1470 / 1318,
  27712. bottom: 65 / 1535
  27713. }
  27714. },
  27715. megaLucario: {
  27716. height: math.unit(4, "feet"),
  27717. name: "Mega Lucario",
  27718. image: {
  27719. source: "./media/characters/cat/mega-lucario.svg",
  27720. extra: 1515 / 1319,
  27721. bottom: 63 / 1578
  27722. }
  27723. },
  27724. nickit: {
  27725. height: math.unit(2, "feet"),
  27726. name: "Nickit",
  27727. image: {
  27728. source: "./media/characters/cat/nickit.svg",
  27729. extra: 1980 / 1585,
  27730. bottom: 102 / 2082
  27731. }
  27732. },
  27733. lopunnyFront: {
  27734. height: math.unit(5, "feet"),
  27735. name: "Lopunny (Front)",
  27736. image: {
  27737. source: "./media/characters/cat/lopunny-front.svg",
  27738. extra: 1782 / 1469,
  27739. bottom: 38 / 1820
  27740. }
  27741. },
  27742. lopunnyBack: {
  27743. height: math.unit(5, "feet"),
  27744. name: "Lopunny (Back)",
  27745. image: {
  27746. source: "./media/characters/cat/lopunny-back.svg",
  27747. extra: 1660 / 1490,
  27748. bottom: 25 / 1685
  27749. }
  27750. },
  27751. },
  27752. [
  27753. {
  27754. name: "Really small",
  27755. height: math.unit(1, "nm")
  27756. },
  27757. {
  27758. name: "Micro",
  27759. height: math.unit(5, "inches")
  27760. },
  27761. {
  27762. name: "Normal",
  27763. height: math.unit(5 + 6 / 12, "feet"),
  27764. default: true
  27765. },
  27766. {
  27767. name: "Macro",
  27768. height: math.unit(50, "feet")
  27769. },
  27770. {
  27771. name: "Macro+",
  27772. height: math.unit(150, "feet")
  27773. },
  27774. {
  27775. name: "Megamacro",
  27776. height: math.unit(100, "miles")
  27777. },
  27778. ]
  27779. ))
  27780. characterMakers.push(() => makeCharacter(
  27781. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27782. {
  27783. front: {
  27784. height: math.unit(63.4, "meters"),
  27785. weight: math.unit(3.28349e+6, "kilograms"),
  27786. name: "Front",
  27787. image: {
  27788. source: "./media/characters/kirina-violet/front.svg",
  27789. extra: 2812/2725,
  27790. bottom: 0/2812
  27791. }
  27792. },
  27793. back: {
  27794. height: math.unit(63.4, "meters"),
  27795. weight: math.unit(3.28349e+6, "kilograms"),
  27796. name: "Back",
  27797. image: {
  27798. source: "./media/characters/kirina-violet/back.svg",
  27799. extra: 2812/2725,
  27800. bottom: 0/2812
  27801. }
  27802. },
  27803. mouth: {
  27804. height: math.unit(4.35, "meters"),
  27805. name: "Mouth",
  27806. image: {
  27807. source: "./media/characters/kirina-violet/mouth.svg"
  27808. }
  27809. },
  27810. paw: {
  27811. height: math.unit(5.6, "meters"),
  27812. name: "Paw",
  27813. image: {
  27814. source: "./media/characters/kirina-violet/paw.svg"
  27815. }
  27816. },
  27817. tail: {
  27818. height: math.unit(18, "meters"),
  27819. name: "Tail",
  27820. image: {
  27821. source: "./media/characters/kirina-violet/tail.svg"
  27822. }
  27823. },
  27824. },
  27825. [
  27826. {
  27827. name: "Macro",
  27828. height: math.unit(63.4, "meters"),
  27829. default: true
  27830. },
  27831. ]
  27832. ))
  27833. characterMakers.push(() => makeCharacter(
  27834. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  27835. {
  27836. front: {
  27837. height: math.unit(60, "feet"),
  27838. name: "Front",
  27839. image: {
  27840. source: "./media/characters/cat-gigachu/front.svg",
  27841. extra: 1024/780,
  27842. bottom: 23/1047
  27843. }
  27844. },
  27845. back: {
  27846. height: math.unit(60, "feet"),
  27847. name: "Back",
  27848. image: {
  27849. source: "./media/characters/cat-gigachu/back.svg",
  27850. extra: 1024/780,
  27851. bottom: 23/1047
  27852. }
  27853. },
  27854. },
  27855. [
  27856. {
  27857. name: "Dynamax",
  27858. height: math.unit(60, "feet"),
  27859. default: true
  27860. },
  27861. ]
  27862. ))
  27863. characterMakers.push(() => makeCharacter(
  27864. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  27865. {
  27866. front: {
  27867. height: math.unit(6, "feet"),
  27868. weight: math.unit(150, "lb"),
  27869. name: "Front",
  27870. image: {
  27871. source: "./media/characters/sfaiyan/front.svg",
  27872. extra: 999/978,
  27873. bottom: 5/1004
  27874. }
  27875. },
  27876. },
  27877. [
  27878. {
  27879. name: "Normal",
  27880. height: math.unit(1.82, "meters")
  27881. },
  27882. {
  27883. name: "Giant",
  27884. height: math.unit(2.27, "km"),
  27885. default: true
  27886. },
  27887. ]
  27888. ))
  27889. characterMakers.push(() => makeCharacter(
  27890. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  27891. {
  27892. front: {
  27893. height: math.unit(179, "cm"),
  27894. weight: math.unit(100, "kg"),
  27895. name: "Front",
  27896. image: {
  27897. source: "./media/characters/raunehkeli/front.svg",
  27898. extra: 1934/1926,
  27899. bottom: 0/1934
  27900. }
  27901. },
  27902. },
  27903. [
  27904. {
  27905. name: "Normal",
  27906. height: math.unit(179, "cm")
  27907. },
  27908. {
  27909. name: "Maximum",
  27910. height: math.unit(575, "meters"),
  27911. default: true
  27912. },
  27913. ]
  27914. ))
  27915. characterMakers.push(() => makeCharacter(
  27916. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  27917. {
  27918. front: {
  27919. height: math.unit(6, "feet"),
  27920. weight: math.unit(150, "lb"),
  27921. name: "Front",
  27922. image: {
  27923. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  27924. extra: 2625/2518,
  27925. bottom: 60/2685
  27926. }
  27927. },
  27928. },
  27929. [
  27930. {
  27931. name: "Normal",
  27932. height: math.unit(6 + 2/12, "feet"),
  27933. default: true
  27934. },
  27935. {
  27936. name: "Macro",
  27937. height: math.unit(1180, "feet")
  27938. },
  27939. ]
  27940. ))
  27941. characterMakers.push(() => makeCharacter(
  27942. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  27943. {
  27944. front: {
  27945. height: math.unit(5 + 6/12, "feet"),
  27946. weight: math.unit(108, "lb"),
  27947. name: "Front",
  27948. image: {
  27949. source: "./media/characters/lilith-zott/front.svg",
  27950. extra: 2510/2238,
  27951. bottom: 100/2610
  27952. }
  27953. },
  27954. frontDressed: {
  27955. height: math.unit(5 + 6/12, "feet"),
  27956. weight: math.unit(108, "lb"),
  27957. name: "Front (Dressed)",
  27958. image: {
  27959. source: "./media/characters/lilith-zott/front-dressed.svg",
  27960. extra: 2510/2238,
  27961. bottom: 100/2610
  27962. }
  27963. },
  27964. },
  27965. [
  27966. {
  27967. name: "Normal",
  27968. height: math.unit(5 + 6/12, "feet")
  27969. },
  27970. {
  27971. name: "Macro",
  27972. height: math.unit(200, "feet"),
  27973. default: true
  27974. },
  27975. {
  27976. name: "Macro+",
  27977. height: math.unit(1030, "feet")
  27978. },
  27979. ]
  27980. ))
  27981. characterMakers.push(() => makeCharacter(
  27982. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  27983. {
  27984. front: {
  27985. height: math.unit(6, "feet"),
  27986. weight: math.unit(150, "lb"),
  27987. name: "Front",
  27988. image: {
  27989. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  27990. extra: 2567/2435,
  27991. bottom: 39/2606
  27992. }
  27993. },
  27994. frontSuper: {
  27995. height: math.unit(6, "feet"),
  27996. name: "Front (Super)",
  27997. image: {
  27998. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  27999. extra: 2567/2435,
  28000. bottom: 39/2606
  28001. }
  28002. },
  28003. },
  28004. [
  28005. {
  28006. name: "Normal",
  28007. height: math.unit(5 + 10/12, "feet")
  28008. },
  28009. {
  28010. name: "Macro",
  28011. height: math.unit(220, "feet"),
  28012. default: true
  28013. },
  28014. {
  28015. name: "Macro+",
  28016. height: math.unit(1100, "feet")
  28017. },
  28018. ]
  28019. ))
  28020. characterMakers.push(() => makeCharacter(
  28021. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28022. {
  28023. front: {
  28024. height: math.unit(100, "miles"),
  28025. name: "Front",
  28026. image: {
  28027. source: "./media/characters/sona/front.svg",
  28028. extra: 2433/2201,
  28029. bottom: 53/2486
  28030. }
  28031. },
  28032. foot: {
  28033. height: math.unit(16.1, "miles"),
  28034. name: "Foot",
  28035. image: {
  28036. source: "./media/characters/sona/foot.svg"
  28037. }
  28038. },
  28039. },
  28040. [
  28041. {
  28042. name: "Macro",
  28043. height: math.unit(100, "miles"),
  28044. default: true
  28045. },
  28046. ]
  28047. ))
  28048. characterMakers.push(() => makeCharacter(
  28049. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28050. {
  28051. front: {
  28052. height: math.unit(6, "feet"),
  28053. weight: math.unit(150, "lb"),
  28054. name: "Front",
  28055. image: {
  28056. source: "./media/characters/bailey/front.svg",
  28057. extra: 1778/1724,
  28058. bottom: 30/1808
  28059. }
  28060. },
  28061. },
  28062. [
  28063. {
  28064. name: "Micro",
  28065. height: math.unit(4, "inches")
  28066. },
  28067. {
  28068. name: "Normal",
  28069. height: math.unit(5 + 5/12, "feet"),
  28070. default: true
  28071. },
  28072. {
  28073. name: "Macro",
  28074. height: math.unit(250, "feet")
  28075. },
  28076. {
  28077. name: "Megamacro",
  28078. height: math.unit(100, "miles")
  28079. },
  28080. ]
  28081. ))
  28082. characterMakers.push(() => makeCharacter(
  28083. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28084. {
  28085. front: {
  28086. height: math.unit(6, "feet"),
  28087. weight: math.unit(150, "lb"),
  28088. name: "Front",
  28089. image: {
  28090. source: "./media/characters/snaps/front.svg",
  28091. extra: 2370/2177,
  28092. bottom: 48/2418
  28093. }
  28094. },
  28095. back: {
  28096. height: math.unit(6, "feet"),
  28097. weight: math.unit(150, "lb"),
  28098. name: "Back",
  28099. image: {
  28100. source: "./media/characters/snaps/back.svg",
  28101. extra: 2408/2258,
  28102. bottom: 15/2423
  28103. }
  28104. },
  28105. },
  28106. [
  28107. {
  28108. name: "Micro",
  28109. height: math.unit(9, "inches")
  28110. },
  28111. {
  28112. name: "Normal",
  28113. height: math.unit(5 + 2/12, "feet"),
  28114. default: true
  28115. },
  28116. {
  28117. name: "Mini Macro",
  28118. height: math.unit(10, "feet")
  28119. },
  28120. ]
  28121. ))
  28122. //characters
  28123. function makeCharacters() {
  28124. const results = [];
  28125. characterMakers.forEach(character => {
  28126. results.push(character());
  28127. });
  28128. return results;
  28129. }