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

29348 строки
733 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon", "candy"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. }
  1380. //species
  1381. function getSpeciesInfo(speciesList) {
  1382. let result = new Set();
  1383. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1384. result.add(entry)
  1385. });
  1386. return Array.from(result);
  1387. };
  1388. function getSpeciesInfoHelper(species) {
  1389. if (!speciesData[species]) {
  1390. console.warn(species + " doesn't exist");
  1391. return [];
  1392. }
  1393. if (speciesData[species].parents) {
  1394. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1395. } else {
  1396. return [species];
  1397. }
  1398. }
  1399. characterMakers.push(() => makeCharacter(
  1400. {
  1401. name: "Fen",
  1402. species: ["crux"],
  1403. description: {
  1404. title: "Bio",
  1405. text: "Very furry. Sheds on everything."
  1406. },
  1407. tags: [
  1408. "anthro",
  1409. "goo"
  1410. ]
  1411. },
  1412. {
  1413. back: {
  1414. height: math.unit(2.2428, "meter"),
  1415. weight: math.unit(124.738, "kg"),
  1416. name: "Back",
  1417. image: {
  1418. source: "./media/characters/fen/back.svg",
  1419. extra: 2024 / 1867,
  1420. bottom: 13 / 2037
  1421. },
  1422. info: {
  1423. description: {
  1424. mode: "append",
  1425. text: "\n\nHe is not currently looking at you."
  1426. }
  1427. }
  1428. },
  1429. full: {
  1430. height: math.unit(1.34, "meter"),
  1431. weight: math.unit(225, "kg"),
  1432. name: "Full",
  1433. image: {
  1434. source: "./media/characters/fen/full.svg"
  1435. },
  1436. info: {
  1437. description: {
  1438. mode: "append",
  1439. text: "\n\nMunch."
  1440. }
  1441. }
  1442. },
  1443. kneeling: {
  1444. height: math.unit(5.4, "feet"),
  1445. weight: math.unit(124.738, "kg"),
  1446. name: "Kneeling",
  1447. image: {
  1448. source: "./media/characters/fen/kneeling.svg",
  1449. extra: 563 / 507
  1450. }
  1451. },
  1452. goo: {
  1453. height: math.unit(2.8, "feet"),
  1454. weight: math.unit(125, "kg"),
  1455. capacity: math.unit(1, "people"),
  1456. name: "Goo",
  1457. image: {
  1458. source: "./media/characters/fen/goo.svg",
  1459. bottom: 116 / 613
  1460. }
  1461. },
  1462. lounging: {
  1463. height: math.unit(6.5, "feet"),
  1464. weight: math.unit(125, "kg"),
  1465. name: "Lounging",
  1466. image: {
  1467. source: "./media/characters/fen/lounging.svg"
  1468. }
  1469. },
  1470. },
  1471. [
  1472. {
  1473. name: "Normal",
  1474. height: math.unit(2.2428, "meter")
  1475. },
  1476. {
  1477. name: "Big",
  1478. height: math.unit(12, "feet")
  1479. },
  1480. {
  1481. name: "Minimacro",
  1482. height: math.unit(40, "feet"),
  1483. default: true,
  1484. info: {
  1485. description: {
  1486. mode: "append",
  1487. text: "\n\nTOO DAMN BIG"
  1488. }
  1489. }
  1490. },
  1491. {
  1492. name: "Macro",
  1493. height: math.unit(100, "feet"),
  1494. info: {
  1495. description: {
  1496. mode: "append",
  1497. text: "\n\nTOO DAMN BIG"
  1498. }
  1499. }
  1500. },
  1501. {
  1502. name: "Macro+",
  1503. height: math.unit(300, "feet")
  1504. },
  1505. {
  1506. name: "Megamacro",
  1507. height: math.unit(2, "miles")
  1508. }
  1509. ]
  1510. ))
  1511. characterMakers.push(() => makeCharacter(
  1512. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1513. {
  1514. front: {
  1515. height: math.unit(183, "cm"),
  1516. weight: math.unit(80, "kg"),
  1517. name: "Front",
  1518. image: {
  1519. source: "./media/characters/sofia-fluttertail/front.svg",
  1520. bottom: 0.01,
  1521. extra: 2154 / 2081
  1522. }
  1523. },
  1524. frontAlt: {
  1525. height: math.unit(183, "cm"),
  1526. weight: math.unit(80, "kg"),
  1527. name: "Front (alt)",
  1528. image: {
  1529. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1530. }
  1531. },
  1532. back: {
  1533. height: math.unit(183, "cm"),
  1534. weight: math.unit(80, "kg"),
  1535. name: "Back",
  1536. image: {
  1537. source: "./media/characters/sofia-fluttertail/back.svg"
  1538. }
  1539. },
  1540. kneeling: {
  1541. height: math.unit(125, "cm"),
  1542. weight: math.unit(80, "kg"),
  1543. name: "Kneeling",
  1544. image: {
  1545. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1546. extra: 1033 / 977,
  1547. bottom: 23.7 / 1057
  1548. }
  1549. },
  1550. maw: {
  1551. height: math.unit(183 / 5, "cm"),
  1552. name: "Maw",
  1553. image: {
  1554. source: "./media/characters/sofia-fluttertail/maw.svg"
  1555. }
  1556. },
  1557. mawcloseup: {
  1558. height: math.unit(183 / 5 * 0.41, "cm"),
  1559. name: "Maw (Closeup)",
  1560. image: {
  1561. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1562. }
  1563. },
  1564. },
  1565. [
  1566. {
  1567. name: "Normal",
  1568. height: math.unit(1.83, "meter")
  1569. },
  1570. {
  1571. name: "Size Thief",
  1572. height: math.unit(18, "feet")
  1573. },
  1574. {
  1575. name: "50 Foot Collie",
  1576. height: math.unit(50, "feet")
  1577. },
  1578. {
  1579. name: "Macro",
  1580. height: math.unit(96, "feet"),
  1581. default: true
  1582. },
  1583. {
  1584. name: "Megamerger",
  1585. height: math.unit(650, "feet")
  1586. },
  1587. ]
  1588. ))
  1589. characterMakers.push(() => makeCharacter(
  1590. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1591. {
  1592. front: {
  1593. height: math.unit(7, "feet"),
  1594. weight: math.unit(100, "kg"),
  1595. name: "Front",
  1596. image: {
  1597. source: "./media/characters/march/front.svg",
  1598. extra: 1,
  1599. bottom: 0.015
  1600. }
  1601. },
  1602. foot: {
  1603. height: math.unit(0.9, "feet"),
  1604. name: "Foot",
  1605. image: {
  1606. source: "./media/characters/march/foot.svg"
  1607. }
  1608. },
  1609. },
  1610. [
  1611. {
  1612. name: "Normal",
  1613. height: math.unit(7.9, "feet")
  1614. },
  1615. {
  1616. name: "Macro",
  1617. height: math.unit(220, "meters")
  1618. },
  1619. {
  1620. name: "Megamacro",
  1621. height: math.unit(2.98, "km"),
  1622. default: true
  1623. },
  1624. {
  1625. name: "Gigamacro",
  1626. height: math.unit(15963, "km")
  1627. },
  1628. {
  1629. name: "Teramacro",
  1630. height: math.unit(2980000000, "km")
  1631. },
  1632. {
  1633. name: "Examacro",
  1634. height: math.unit(250, "parsecs")
  1635. },
  1636. ]
  1637. ))
  1638. characterMakers.push(() => makeCharacter(
  1639. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1640. {
  1641. front: {
  1642. height: math.unit(6, "feet"),
  1643. weight: math.unit(60, "kg"),
  1644. name: "Front",
  1645. image: {
  1646. source: "./media/characters/noir/front.svg",
  1647. extra: 1,
  1648. bottom: 0.032
  1649. }
  1650. },
  1651. },
  1652. [
  1653. {
  1654. name: "Normal",
  1655. height: math.unit(6.6, "feet")
  1656. },
  1657. {
  1658. name: "Macro",
  1659. height: math.unit(500, "feet")
  1660. },
  1661. {
  1662. name: "Megamacro",
  1663. height: math.unit(2.5, "km"),
  1664. default: true
  1665. },
  1666. {
  1667. name: "Gigamacro",
  1668. height: math.unit(22500, "km")
  1669. },
  1670. {
  1671. name: "Teramacro",
  1672. height: math.unit(2500000000, "km")
  1673. },
  1674. {
  1675. name: "Examacro",
  1676. height: math.unit(200, "parsecs")
  1677. },
  1678. ]
  1679. ))
  1680. characterMakers.push(() => makeCharacter(
  1681. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1682. {
  1683. front: {
  1684. height: math.unit(7, "feet"),
  1685. weight: math.unit(100, "kg"),
  1686. name: "Front",
  1687. image: {
  1688. source: "./media/characters/okuri/front.svg",
  1689. extra: 1,
  1690. bottom: 0.037
  1691. }
  1692. },
  1693. back: {
  1694. height: math.unit(7, "feet"),
  1695. weight: math.unit(100, "kg"),
  1696. name: "Back",
  1697. image: {
  1698. source: "./media/characters/okuri/back.svg",
  1699. extra: 1,
  1700. bottom: 0.007
  1701. }
  1702. },
  1703. },
  1704. [
  1705. {
  1706. name: "Megamacro",
  1707. height: math.unit(100, "miles"),
  1708. default: true
  1709. },
  1710. ]
  1711. ))
  1712. characterMakers.push(() => makeCharacter(
  1713. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1714. {
  1715. front: {
  1716. height: math.unit(7, "feet"),
  1717. weight: math.unit(100, "kg"),
  1718. name: "Front",
  1719. image: {
  1720. source: "./media/characters/manny/front.svg",
  1721. extra: 1,
  1722. bottom: 0.06
  1723. }
  1724. },
  1725. back: {
  1726. height: math.unit(7, "feet"),
  1727. weight: math.unit(100, "kg"),
  1728. name: "Back",
  1729. image: {
  1730. source: "./media/characters/manny/back.svg",
  1731. extra: 1,
  1732. bottom: 0.014
  1733. }
  1734. },
  1735. },
  1736. [
  1737. {
  1738. name: "Normal",
  1739. height: math.unit(7, "feet"),
  1740. },
  1741. {
  1742. name: "Macro",
  1743. height: math.unit(78, "feet"),
  1744. default: true
  1745. },
  1746. {
  1747. name: "Macro+",
  1748. height: math.unit(300, "meters")
  1749. },
  1750. {
  1751. name: "Macro++",
  1752. height: math.unit(2400, "meters")
  1753. },
  1754. {
  1755. name: "Megamacro",
  1756. height: math.unit(5167, "meters")
  1757. },
  1758. {
  1759. name: "Gigamacro",
  1760. height: math.unit(41769, "miles")
  1761. },
  1762. ]
  1763. ))
  1764. characterMakers.push(() => makeCharacter(
  1765. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1766. {
  1767. front: {
  1768. height: math.unit(7, "feet"),
  1769. weight: math.unit(100, "kg"),
  1770. name: "Front",
  1771. image: {
  1772. source: "./media/characters/adake/front-1.svg"
  1773. }
  1774. },
  1775. frontAlt: {
  1776. height: math.unit(7, "feet"),
  1777. weight: math.unit(100, "kg"),
  1778. name: "Front (Alt)",
  1779. image: {
  1780. source: "./media/characters/adake/front-2.svg",
  1781. extra: 1,
  1782. bottom: 0.01
  1783. }
  1784. },
  1785. back: {
  1786. height: math.unit(7, "feet"),
  1787. weight: math.unit(100, "kg"),
  1788. name: "Back",
  1789. image: {
  1790. source: "./media/characters/adake/back.svg",
  1791. }
  1792. },
  1793. kneel: {
  1794. height: math.unit(5.385, "feet"),
  1795. weight: math.unit(100, "kg"),
  1796. name: "Kneeling",
  1797. image: {
  1798. source: "./media/characters/adake/kneel.svg",
  1799. bottom: 0.052
  1800. }
  1801. },
  1802. },
  1803. [
  1804. {
  1805. name: "Normal",
  1806. height: math.unit(7, "feet"),
  1807. },
  1808. {
  1809. name: "Macro",
  1810. height: math.unit(78, "feet"),
  1811. default: true
  1812. },
  1813. {
  1814. name: "Macro+",
  1815. height: math.unit(300, "meters")
  1816. },
  1817. {
  1818. name: "Macro++",
  1819. height: math.unit(2400, "meters")
  1820. },
  1821. {
  1822. name: "Megamacro",
  1823. height: math.unit(5167, "meters")
  1824. },
  1825. {
  1826. name: "Gigamacro",
  1827. height: math.unit(41769, "miles")
  1828. },
  1829. ]
  1830. ))
  1831. characterMakers.push(() => makeCharacter(
  1832. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1833. {
  1834. front: {
  1835. height: math.unit(1.65, "meters"),
  1836. weight: math.unit(50, "kg"),
  1837. name: "Front",
  1838. image: {
  1839. source: "./media/characters/elijah/front.svg",
  1840. extra: 858 / 830,
  1841. bottom: 95.5 / 953.8559
  1842. }
  1843. },
  1844. back: {
  1845. height: math.unit(1.65, "meters"),
  1846. weight: math.unit(50, "kg"),
  1847. name: "Back",
  1848. image: {
  1849. source: "./media/characters/elijah/back.svg",
  1850. extra: 895 / 850,
  1851. bottom: 5.3 / 897.956
  1852. }
  1853. },
  1854. frontNsfw: {
  1855. height: math.unit(1.65, "meters"),
  1856. weight: math.unit(50, "kg"),
  1857. name: "Front (NSFW)",
  1858. image: {
  1859. source: "./media/characters/elijah/front-nsfw.svg",
  1860. extra: 858 / 830,
  1861. bottom: 95.5 / 953.8559
  1862. }
  1863. },
  1864. backNsfw: {
  1865. height: math.unit(1.65, "meters"),
  1866. weight: math.unit(50, "kg"),
  1867. name: "Back (NSFW)",
  1868. image: {
  1869. source: "./media/characters/elijah/back-nsfw.svg",
  1870. extra: 895 / 850,
  1871. bottom: 5.3 / 897.956
  1872. }
  1873. },
  1874. dick: {
  1875. height: math.unit(1, "feet"),
  1876. name: "Dick",
  1877. image: {
  1878. source: "./media/characters/elijah/dick.svg"
  1879. }
  1880. },
  1881. beakOpen: {
  1882. height: math.unit(1.25, "feet"),
  1883. name: "Beak (Open)",
  1884. image: {
  1885. source: "./media/characters/elijah/beak-open.svg"
  1886. }
  1887. },
  1888. beakShut: {
  1889. height: math.unit(1.25, "feet"),
  1890. name: "Beak (Shut)",
  1891. image: {
  1892. source: "./media/characters/elijah/beak-shut.svg"
  1893. }
  1894. },
  1895. footFlexing: {
  1896. height: math.unit(1.61, "feet"),
  1897. name: "Foot (Flexing)",
  1898. image: {
  1899. source: "./media/characters/elijah/foot-flexing.svg"
  1900. }
  1901. },
  1902. footStepping: {
  1903. height: math.unit(1.44, "feet"),
  1904. name: "Foot (Stepping)",
  1905. image: {
  1906. source: "./media/characters/elijah/foot-stepping.svg"
  1907. }
  1908. },
  1909. plantigradeLeg: {
  1910. height: math.unit(2.34, "feet"),
  1911. name: "Plantigrade Leg",
  1912. image: {
  1913. source: "./media/characters/elijah/plantigrade-leg.svg"
  1914. }
  1915. },
  1916. plantigradeFootLeft: {
  1917. height: math.unit(0.9, "feet"),
  1918. name: "Plantigrade Foot (Left)",
  1919. image: {
  1920. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1921. }
  1922. },
  1923. plantigradeFootRight: {
  1924. height: math.unit(0.9, "feet"),
  1925. name: "Plantigrade Foot (Right)",
  1926. image: {
  1927. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1928. }
  1929. },
  1930. },
  1931. [
  1932. {
  1933. name: "Normal",
  1934. height: math.unit(1.65, "meters")
  1935. },
  1936. {
  1937. name: "Macro",
  1938. height: math.unit(55, "meters"),
  1939. default: true
  1940. },
  1941. {
  1942. name: "Macro+",
  1943. height: math.unit(105, "meters")
  1944. },
  1945. ]
  1946. ))
  1947. characterMakers.push(() => makeCharacter(
  1948. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1949. {
  1950. front: {
  1951. height: math.unit(11, "feet"),
  1952. weight: math.unit(80, "kg"),
  1953. name: "Front",
  1954. image: {
  1955. source: "./media/characters/rai/front.svg",
  1956. extra: 1,
  1957. bottom: 0.03
  1958. }
  1959. },
  1960. side: {
  1961. height: math.unit(11, "feet"),
  1962. weight: math.unit(80, "kg"),
  1963. name: "Side",
  1964. image: {
  1965. source: "./media/characters/rai/side.svg"
  1966. }
  1967. },
  1968. back: {
  1969. height: math.unit(11, "feet"),
  1970. weight: math.unit(80, "lb"),
  1971. name: "Back",
  1972. image: {
  1973. source: "./media/characters/rai/back.svg",
  1974. extra: 1,
  1975. bottom: 0.01
  1976. }
  1977. },
  1978. feral: {
  1979. height: math.unit(11, "feet"),
  1980. weight: math.unit(800, "lb"),
  1981. name: "Feral",
  1982. image: {
  1983. source: "./media/characters/rai/feral.svg",
  1984. extra: 1050 / 659,
  1985. bottom: 0.07
  1986. }
  1987. },
  1988. dragon: {
  1989. height: math.unit(23, "feet"),
  1990. weight: math.unit(50000, "lb"),
  1991. name: "Dragon",
  1992. image: {
  1993. source: "./media/characters/rai/dragon.svg",
  1994. extra: 2498 / 2030,
  1995. bottom: 85.2 / 2584
  1996. }
  1997. },
  1998. maw: {
  1999. height: math.unit(6 / 3.81416, "feet"),
  2000. name: "Maw",
  2001. image: {
  2002. source: "./media/characters/rai/maw.svg"
  2003. }
  2004. },
  2005. },
  2006. [
  2007. {
  2008. name: "Normal",
  2009. height: math.unit(11, "feet")
  2010. },
  2011. {
  2012. name: "Macro",
  2013. height: math.unit(302, "feet"),
  2014. default: true
  2015. },
  2016. ]
  2017. ))
  2018. characterMakers.push(() => makeCharacter(
  2019. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2020. {
  2021. frontDressed: {
  2022. height: math.unit(216, "feet"),
  2023. weight: math.unit(7000000, "lb"),
  2024. name: "Front (Dressed)",
  2025. image: {
  2026. source: "./media/characters/jazzy/front-dressed.svg",
  2027. extra: 2738 / 2651,
  2028. bottom: 41.8 / 2786
  2029. }
  2030. },
  2031. backDressed: {
  2032. height: math.unit(216, "feet"),
  2033. weight: math.unit(7000000, "lb"),
  2034. name: "Back (Dressed)",
  2035. image: {
  2036. source: "./media/characters/jazzy/back-dressed.svg",
  2037. extra: 2775 / 2673,
  2038. bottom: 36.8 / 2817
  2039. }
  2040. },
  2041. front: {
  2042. height: math.unit(216, "feet"),
  2043. weight: math.unit(7000000, "lb"),
  2044. name: "Front",
  2045. image: {
  2046. source: "./media/characters/jazzy/front.svg",
  2047. extra: 2738 / 2651,
  2048. bottom: 41.8 / 2786
  2049. }
  2050. },
  2051. back: {
  2052. height: math.unit(216, "feet"),
  2053. weight: math.unit(7000000, "lb"),
  2054. name: "Back",
  2055. image: {
  2056. source: "./media/characters/jazzy/back.svg",
  2057. extra: 2775 / 2673,
  2058. bottom: 36.8 / 2817
  2059. }
  2060. },
  2061. maw: {
  2062. height: math.unit(20, "feet"),
  2063. name: "Maw",
  2064. image: {
  2065. source: "./media/characters/jazzy/maw.svg"
  2066. }
  2067. },
  2068. paws: {
  2069. height: math.unit(27.5, "feet"),
  2070. name: "Paws",
  2071. image: {
  2072. source: "./media/characters/jazzy/paws.svg"
  2073. }
  2074. },
  2075. eye: {
  2076. height: math.unit(4.4, "feet"),
  2077. name: "Eye",
  2078. image: {
  2079. source: "./media/characters/jazzy/eye.svg"
  2080. }
  2081. },
  2082. droneOffense: {
  2083. height: math.unit(9.5, "inches"),
  2084. name: "Drone (Offense)",
  2085. image: {
  2086. source: "./media/characters/jazzy/drone-offense.svg"
  2087. }
  2088. },
  2089. droneRecon: {
  2090. height: math.unit(9.5, "inches"),
  2091. name: "Drone (Recon)",
  2092. image: {
  2093. source: "./media/characters/jazzy/drone-recon.svg"
  2094. }
  2095. },
  2096. droneDefense: {
  2097. height: math.unit(9.5, "inches"),
  2098. name: "Drone (Defense)",
  2099. image: {
  2100. source: "./media/characters/jazzy/drone-defense.svg"
  2101. }
  2102. },
  2103. },
  2104. [
  2105. {
  2106. name: "Macro",
  2107. height: math.unit(216, "feet"),
  2108. default: true
  2109. },
  2110. ]
  2111. ))
  2112. characterMakers.push(() => makeCharacter(
  2113. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2114. {
  2115. front: {
  2116. height: math.unit(7, "feet"),
  2117. weight: math.unit(80, "kg"),
  2118. name: "Front",
  2119. image: {
  2120. source: "./media/characters/flamm/front.svg",
  2121. extra: 1794 / 1677,
  2122. bottom: 31.7 / 1828.5
  2123. }
  2124. },
  2125. },
  2126. [
  2127. {
  2128. name: "Normal",
  2129. height: math.unit(9.5, "feet")
  2130. },
  2131. {
  2132. name: "Macro",
  2133. height: math.unit(200, "feet"),
  2134. default: true
  2135. },
  2136. ]
  2137. ))
  2138. characterMakers.push(() => makeCharacter(
  2139. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2140. {
  2141. front: {
  2142. height: math.unit(7, "feet"),
  2143. weight: math.unit(80, "kg"),
  2144. name: "Front",
  2145. image: {
  2146. source: "./media/characters/zephiro/front.svg",
  2147. extra: 2309 / 2162,
  2148. bottom: 0.069
  2149. }
  2150. },
  2151. side: {
  2152. height: math.unit(7, "feet"),
  2153. weight: math.unit(80, "kg"),
  2154. name: "Side",
  2155. image: {
  2156. source: "./media/characters/zephiro/side.svg",
  2157. extra: 2403 / 2279,
  2158. bottom: 0.015
  2159. }
  2160. },
  2161. back: {
  2162. height: math.unit(7, "feet"),
  2163. weight: math.unit(80, "kg"),
  2164. name: "Back",
  2165. image: {
  2166. source: "./media/characters/zephiro/back.svg",
  2167. extra: 2373 / 2244,
  2168. bottom: 0.013
  2169. }
  2170. },
  2171. },
  2172. [
  2173. {
  2174. name: "Micro",
  2175. height: math.unit(3, "inches")
  2176. },
  2177. {
  2178. name: "Normal",
  2179. height: math.unit(5 + 3 / 12, "feet"),
  2180. default: true
  2181. },
  2182. {
  2183. name: "Macro",
  2184. height: math.unit(118, "feet")
  2185. },
  2186. ]
  2187. ))
  2188. characterMakers.push(() => makeCharacter(
  2189. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2190. {
  2191. front: {
  2192. height: math.unit(5, "feet"),
  2193. weight: math.unit(90, "kg"),
  2194. name: "Front",
  2195. image: {
  2196. source: "./media/characters/fory/front.svg",
  2197. extra: 2862 / 2674,
  2198. bottom: 180 / 3043.8
  2199. }
  2200. },
  2201. back: {
  2202. height: math.unit(5, "feet"),
  2203. weight: math.unit(90, "kg"),
  2204. name: "Back",
  2205. image: {
  2206. source: "./media/characters/fory/back.svg",
  2207. extra: 2962 / 2791,
  2208. bottom: 106 / 3071.8
  2209. }
  2210. },
  2211. foot: {
  2212. height: math.unit(2.14, "feet"),
  2213. name: "Foot",
  2214. image: {
  2215. source: "./media/characters/fory/foot.svg"
  2216. }
  2217. },
  2218. },
  2219. [
  2220. {
  2221. name: "Normal",
  2222. height: math.unit(5, "feet")
  2223. },
  2224. {
  2225. name: "Macro",
  2226. height: math.unit(50, "feet"),
  2227. default: true
  2228. },
  2229. {
  2230. name: "Megamacro",
  2231. height: math.unit(10, "miles")
  2232. },
  2233. {
  2234. name: "Gigamacro",
  2235. height: math.unit(5, "earths")
  2236. },
  2237. ]
  2238. ))
  2239. characterMakers.push(() => makeCharacter(
  2240. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2241. {
  2242. front: {
  2243. height: math.unit(7, "feet"),
  2244. weight: math.unit(90, "kg"),
  2245. name: "Front",
  2246. image: {
  2247. source: "./media/characters/kurrikage/front.svg",
  2248. extra: 1,
  2249. bottom: 0.035
  2250. }
  2251. },
  2252. back: {
  2253. height: math.unit(7, "feet"),
  2254. weight: math.unit(90, "lb"),
  2255. name: "Back",
  2256. image: {
  2257. source: "./media/characters/kurrikage/back.svg"
  2258. }
  2259. },
  2260. paw: {
  2261. height: math.unit(1.5, "feet"),
  2262. name: "Paw",
  2263. image: {
  2264. source: "./media/characters/kurrikage/paw.svg"
  2265. }
  2266. },
  2267. staff: {
  2268. height: math.unit(6.7, "feet"),
  2269. name: "Staff",
  2270. image: {
  2271. source: "./media/characters/kurrikage/staff.svg"
  2272. }
  2273. },
  2274. peek: {
  2275. height: math.unit(1.05, "feet"),
  2276. name: "Peeking",
  2277. image: {
  2278. source: "./media/characters/kurrikage/peek.svg",
  2279. bottom: 0.08
  2280. }
  2281. },
  2282. },
  2283. [
  2284. {
  2285. name: "Normal",
  2286. height: math.unit(12, "feet"),
  2287. default: true
  2288. },
  2289. {
  2290. name: "Big",
  2291. height: math.unit(20, "feet")
  2292. },
  2293. {
  2294. name: "Macro",
  2295. height: math.unit(500, "feet")
  2296. },
  2297. {
  2298. name: "Megamacro",
  2299. height: math.unit(20, "miles")
  2300. },
  2301. ]
  2302. ))
  2303. characterMakers.push(() => makeCharacter(
  2304. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2305. {
  2306. front: {
  2307. height: math.unit(6, "feet"),
  2308. weight: math.unit(75, "kg"),
  2309. name: "Front",
  2310. image: {
  2311. source: "./media/characters/shingo/front.svg",
  2312. extra: 3511 / 3338,
  2313. bottom: 0.005
  2314. }
  2315. },
  2316. paw: {
  2317. height: math.unit(1, "feet"),
  2318. name: "Paw",
  2319. image: {
  2320. source: "./media/characters/shingo/paw.svg"
  2321. }
  2322. },
  2323. },
  2324. [
  2325. {
  2326. name: "Micro",
  2327. height: math.unit(4, "inches")
  2328. },
  2329. {
  2330. name: "Normal",
  2331. height: math.unit(6, "feet"),
  2332. default: true
  2333. },
  2334. {
  2335. name: "Macro",
  2336. height: math.unit(108, "feet")
  2337. }
  2338. ]
  2339. ))
  2340. characterMakers.push(() => makeCharacter(
  2341. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2342. {
  2343. side: {
  2344. height: math.unit(6, "feet"),
  2345. weight: math.unit(75, "kg"),
  2346. name: "Side",
  2347. image: {
  2348. source: "./media/characters/aigey/side.svg"
  2349. }
  2350. },
  2351. },
  2352. [
  2353. {
  2354. name: "Macro",
  2355. height: math.unit(200, "feet"),
  2356. default: true
  2357. },
  2358. {
  2359. name: "Megamacro",
  2360. height: math.unit(100, "miles")
  2361. },
  2362. ]
  2363. )
  2364. )
  2365. characterMakers.push(() => makeCharacter(
  2366. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2367. {
  2368. front: {
  2369. height: math.unit(5 + 5 / 12, "feet"),
  2370. weight: math.unit(75, "kg"),
  2371. name: "Front",
  2372. image: {
  2373. source: "./media/characters/natasha/front.svg",
  2374. extra: 859 / 824,
  2375. bottom: 23 / 879.6
  2376. }
  2377. },
  2378. frontNsfw: {
  2379. height: math.unit(5 + 5 / 12, "feet"),
  2380. weight: math.unit(75, "kg"),
  2381. name: "Front (NSFW)",
  2382. image: {
  2383. source: "./media/characters/natasha/front-nsfw.svg",
  2384. extra: 859 / 824,
  2385. bottom: 23 / 879.6
  2386. }
  2387. },
  2388. frontErect: {
  2389. height: math.unit(5 + 5 / 12, "feet"),
  2390. weight: math.unit(75, "kg"),
  2391. name: "Front (Erect)",
  2392. image: {
  2393. source: "./media/characters/natasha/front-erect.svg",
  2394. extra: 859 / 824,
  2395. bottom: 23 / 879.6
  2396. }
  2397. },
  2398. back: {
  2399. height: math.unit(5 + 5 / 12, "feet"),
  2400. weight: math.unit(75, "kg"),
  2401. name: "Back",
  2402. image: {
  2403. source: "./media/characters/natasha/back.svg",
  2404. extra: 887.9 / 852.6,
  2405. bottom: 9.7 / 896.4
  2406. }
  2407. },
  2408. backAlt: {
  2409. height: math.unit(5 + 5 / 12, "feet"),
  2410. weight: math.unit(75, "kg"),
  2411. name: "Back (Alt)",
  2412. image: {
  2413. source: "./media/characters/natasha/back-alt.svg",
  2414. extra: 1236.7 / 1192,
  2415. bottom: 22.3 / 1258.2
  2416. }
  2417. },
  2418. dick: {
  2419. height: math.unit(1.772, "feet"),
  2420. name: "Dick",
  2421. image: {
  2422. source: "./media/characters/natasha/dick.svg"
  2423. }
  2424. },
  2425. paw: {
  2426. height: math.unit(0.250, "meters"),
  2427. name: "Paw",
  2428. image: {
  2429. source: "./media/characters/natasha/paw.svg"
  2430. }
  2431. },
  2432. },
  2433. [
  2434. {
  2435. name: "Normal",
  2436. height: math.unit(5 + 5 / 12, "feet")
  2437. },
  2438. {
  2439. name: "Large",
  2440. height: math.unit(12, "feet")
  2441. },
  2442. {
  2443. name: "Macro",
  2444. height: math.unit(100, "feet"),
  2445. default: true
  2446. },
  2447. {
  2448. name: "Macro+",
  2449. height: math.unit(260, "feet")
  2450. },
  2451. {
  2452. name: "Macro++",
  2453. height: math.unit(1, "mile")
  2454. },
  2455. ]
  2456. ))
  2457. characterMakers.push(() => makeCharacter(
  2458. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2459. {
  2460. front: {
  2461. height: math.unit(6, "feet"),
  2462. weight: math.unit(75, "kg"),
  2463. name: "Front",
  2464. image: {
  2465. source: "./media/characters/malik/front.svg"
  2466. }
  2467. },
  2468. side: {
  2469. height: math.unit(6, "feet"),
  2470. weight: math.unit(75, "kg"),
  2471. name: "Side",
  2472. image: {
  2473. source: "./media/characters/malik/side.svg",
  2474. extra: 1.1539
  2475. }
  2476. },
  2477. back: {
  2478. height: math.unit(6, "feet"),
  2479. weight: math.unit(75, "kg"),
  2480. name: "Back",
  2481. image: {
  2482. source: "./media/characters/malik/back.svg"
  2483. }
  2484. },
  2485. },
  2486. [
  2487. {
  2488. name: "Macro",
  2489. height: math.unit(156, "feet"),
  2490. default: true
  2491. },
  2492. {
  2493. name: "Macro+",
  2494. height: math.unit(1188, "feet")
  2495. },
  2496. ]
  2497. ))
  2498. characterMakers.push(() => makeCharacter(
  2499. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2500. {
  2501. front: {
  2502. height: math.unit(6, "feet"),
  2503. weight: math.unit(75, "kg"),
  2504. name: "Front",
  2505. image: {
  2506. source: "./media/characters/sefer/front.svg",
  2507. extra: 848 / 659,
  2508. bottom: 28.3 / 876.442
  2509. }
  2510. },
  2511. back: {
  2512. height: math.unit(6, "feet"),
  2513. weight: math.unit(75, "kg"),
  2514. name: "Back",
  2515. image: {
  2516. source: "./media/characters/sefer/back.svg",
  2517. extra: 864 / 695,
  2518. bottom: 10 / 871
  2519. }
  2520. },
  2521. frontDressed: {
  2522. height: math.unit(6, "feet"),
  2523. weight: math.unit(75, "kg"),
  2524. name: "Front (Dressed)",
  2525. image: {
  2526. source: "./media/characters/sefer/front-dressed.svg",
  2527. extra: 839 / 653,
  2528. bottom: 37.6 / 878
  2529. }
  2530. },
  2531. },
  2532. [
  2533. {
  2534. name: "Normal",
  2535. height: math.unit(6, "feet"),
  2536. default: true
  2537. },
  2538. ]
  2539. ))
  2540. characterMakers.push(() => makeCharacter(
  2541. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2542. {
  2543. body: {
  2544. height: math.unit(2.2428, "meter"),
  2545. weight: math.unit(124.738, "kg"),
  2546. name: "Body",
  2547. image: {
  2548. extra: 1225 / 1050,
  2549. source: "./media/characters/north/front.svg"
  2550. }
  2551. }
  2552. },
  2553. [
  2554. {
  2555. name: "Micro",
  2556. height: math.unit(4, "inches")
  2557. },
  2558. {
  2559. name: "Macro",
  2560. height: math.unit(63, "meters")
  2561. },
  2562. {
  2563. name: "Megamacro",
  2564. height: math.unit(101, "miles"),
  2565. default: true
  2566. }
  2567. ]
  2568. ))
  2569. characterMakers.push(() => makeCharacter(
  2570. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2571. {
  2572. angled: {
  2573. height: math.unit(4, "meter"),
  2574. weight: math.unit(150, "kg"),
  2575. name: "Angled",
  2576. image: {
  2577. source: "./media/characters/talan/angled-sfw.svg",
  2578. bottom: 29 / 3734
  2579. }
  2580. },
  2581. angledNsfw: {
  2582. height: math.unit(4, "meter"),
  2583. weight: math.unit(150, "kg"),
  2584. name: "Angled (NSFW)",
  2585. image: {
  2586. source: "./media/characters/talan/angled-nsfw.svg",
  2587. bottom: 29 / 3734
  2588. }
  2589. },
  2590. frontNsfw: {
  2591. height: math.unit(4, "meter"),
  2592. weight: math.unit(150, "kg"),
  2593. name: "Front (NSFW)",
  2594. image: {
  2595. source: "./media/characters/talan/front-nsfw.svg",
  2596. bottom: 29 / 3734
  2597. }
  2598. },
  2599. sideNsfw: {
  2600. height: math.unit(4, "meter"),
  2601. weight: math.unit(150, "kg"),
  2602. name: "Side (NSFW)",
  2603. image: {
  2604. source: "./media/characters/talan/side-nsfw.svg",
  2605. bottom: 29 / 3734
  2606. }
  2607. },
  2608. back: {
  2609. height: math.unit(4, "meter"),
  2610. weight: math.unit(150, "kg"),
  2611. name: "Back",
  2612. image: {
  2613. source: "./media/characters/talan/back.svg"
  2614. }
  2615. },
  2616. dickBottom: {
  2617. height: math.unit(0.621, "meter"),
  2618. name: "Dick (Bottom)",
  2619. image: {
  2620. source: "./media/characters/talan/dick-bottom.svg"
  2621. }
  2622. },
  2623. dickTop: {
  2624. height: math.unit(0.621, "meter"),
  2625. name: "Dick (Top)",
  2626. image: {
  2627. source: "./media/characters/talan/dick-top.svg"
  2628. }
  2629. },
  2630. dickSide: {
  2631. height: math.unit(0.305, "meter"),
  2632. name: "Dick (Side)",
  2633. image: {
  2634. source: "./media/characters/talan/dick-side.svg"
  2635. }
  2636. },
  2637. dickFront: {
  2638. height: math.unit(0.305, "meter"),
  2639. name: "Dick (Front)",
  2640. image: {
  2641. source: "./media/characters/talan/dick-front.svg"
  2642. }
  2643. },
  2644. },
  2645. [
  2646. {
  2647. name: "Normal",
  2648. height: math.unit(4, "meters")
  2649. },
  2650. {
  2651. name: "Macro",
  2652. height: math.unit(100, "meters")
  2653. },
  2654. {
  2655. name: "Megamacro",
  2656. height: math.unit(2, "miles"),
  2657. default: true
  2658. },
  2659. {
  2660. name: "Gigamacro",
  2661. height: math.unit(5000, "miles")
  2662. },
  2663. {
  2664. name: "Teramacro",
  2665. height: math.unit(100, "parsecs")
  2666. }
  2667. ]
  2668. ))
  2669. characterMakers.push(() => makeCharacter(
  2670. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2671. {
  2672. front: {
  2673. height: math.unit(2, "meter"),
  2674. weight: math.unit(90, "kg"),
  2675. name: "Front",
  2676. image: {
  2677. source: "./media/characters/gael'rathus/front.svg"
  2678. }
  2679. },
  2680. frontAlt: {
  2681. height: math.unit(2, "meter"),
  2682. weight: math.unit(90, "kg"),
  2683. name: "Front (alt)",
  2684. image: {
  2685. source: "./media/characters/gael'rathus/front-alt.svg"
  2686. }
  2687. },
  2688. frontAlt2: {
  2689. height: math.unit(2, "meter"),
  2690. weight: math.unit(90, "kg"),
  2691. name: "Front (alt 2)",
  2692. image: {
  2693. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2694. }
  2695. }
  2696. },
  2697. [
  2698. {
  2699. name: "Normal",
  2700. height: math.unit(9, "feet"),
  2701. default: true
  2702. },
  2703. {
  2704. name: "Large",
  2705. height: math.unit(25, "feet")
  2706. },
  2707. {
  2708. name: "Macro",
  2709. height: math.unit(0.25, "miles")
  2710. },
  2711. {
  2712. name: "Megamacro",
  2713. height: math.unit(10, "miles")
  2714. }
  2715. ]
  2716. ))
  2717. characterMakers.push(() => makeCharacter(
  2718. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2719. {
  2720. side: {
  2721. height: math.unit(2, "meter"),
  2722. weight: math.unit(140, "kg"),
  2723. name: "Side",
  2724. image: {
  2725. source: "./media/characters/sosha/side.svg",
  2726. bottom: 0.042
  2727. }
  2728. },
  2729. },
  2730. [
  2731. {
  2732. name: "Normal",
  2733. height: math.unit(12, "feet"),
  2734. default: true
  2735. }
  2736. ]
  2737. ))
  2738. characterMakers.push(() => makeCharacter(
  2739. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2740. {
  2741. side: {
  2742. height: math.unit(5 + 5 / 12, "feet"),
  2743. weight: math.unit(170, "kg"),
  2744. name: "Side",
  2745. image: {
  2746. source: "./media/characters/runnola/side.svg",
  2747. extra: 741 / 448,
  2748. bottom: 0.05
  2749. }
  2750. },
  2751. },
  2752. [
  2753. {
  2754. name: "Small",
  2755. height: math.unit(3, "feet")
  2756. },
  2757. {
  2758. name: "Normal",
  2759. height: math.unit(5 + 5 / 12, "feet"),
  2760. default: true
  2761. },
  2762. {
  2763. name: "Big",
  2764. height: math.unit(10, "feet")
  2765. },
  2766. ]
  2767. ))
  2768. characterMakers.push(() => makeCharacter(
  2769. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2770. {
  2771. front: {
  2772. height: math.unit(2, "meter"),
  2773. weight: math.unit(50, "kg"),
  2774. name: "Front",
  2775. image: {
  2776. source: "./media/characters/kurribird/front.svg",
  2777. bottom: 0.015
  2778. }
  2779. },
  2780. frontAlt: {
  2781. height: math.unit(1.5, "meter"),
  2782. weight: math.unit(50, "kg"),
  2783. name: "Front (Alt)",
  2784. image: {
  2785. source: "./media/characters/kurribird/front-alt.svg",
  2786. extra: 1.45
  2787. }
  2788. },
  2789. },
  2790. [
  2791. {
  2792. name: "Normal",
  2793. height: math.unit(7, "feet")
  2794. },
  2795. {
  2796. name: "Big",
  2797. height: math.unit(12, "feet"),
  2798. default: true
  2799. },
  2800. {
  2801. name: "Macro",
  2802. height: math.unit(1500, "feet")
  2803. },
  2804. {
  2805. name: "Megamacro",
  2806. height: math.unit(2, "miles")
  2807. }
  2808. ]
  2809. ))
  2810. characterMakers.push(() => makeCharacter(
  2811. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2812. {
  2813. front: {
  2814. height: math.unit(2, "meter"),
  2815. weight: math.unit(80, "kg"),
  2816. name: "Front",
  2817. image: {
  2818. source: "./media/characters/elbial/front.svg",
  2819. extra: 1643 / 1556,
  2820. bottom: 60.2 / 1696
  2821. }
  2822. },
  2823. side: {
  2824. height: math.unit(2, "meter"),
  2825. weight: math.unit(80, "kg"),
  2826. name: "Side",
  2827. image: {
  2828. source: "./media/characters/elbial/side.svg",
  2829. extra: 1630 / 1565,
  2830. bottom: 71.5 / 1697
  2831. }
  2832. },
  2833. back: {
  2834. height: math.unit(2, "meter"),
  2835. weight: math.unit(80, "kg"),
  2836. name: "Back",
  2837. image: {
  2838. source: "./media/characters/elbial/back.svg",
  2839. extra: 1668 / 1595,
  2840. bottom: 5.6 / 1672
  2841. }
  2842. },
  2843. frontDressed: {
  2844. height: math.unit(2, "meter"),
  2845. weight: math.unit(80, "kg"),
  2846. name: "Front (Dressed)",
  2847. image: {
  2848. source: "./media/characters/elbial/front-dressed.svg",
  2849. extra: 1653 / 1584,
  2850. bottom: 57 / 1708
  2851. }
  2852. },
  2853. genitals: {
  2854. height: math.unit(2 / 3.367, "meter"),
  2855. name: "Genitals",
  2856. image: {
  2857. source: "./media/characters/elbial/genitals.svg"
  2858. }
  2859. },
  2860. },
  2861. [
  2862. {
  2863. name: "Large",
  2864. height: math.unit(100, "feet")
  2865. },
  2866. {
  2867. name: "Macro",
  2868. height: math.unit(500, "feet"),
  2869. default: true
  2870. },
  2871. {
  2872. name: "Megamacro",
  2873. height: math.unit(10, "miles")
  2874. },
  2875. {
  2876. name: "Gigamacro",
  2877. height: math.unit(25000, "miles")
  2878. },
  2879. {
  2880. name: "Full-Size",
  2881. height: math.unit(8000000, "gigaparsecs")
  2882. }
  2883. ]
  2884. ))
  2885. characterMakers.push(() => makeCharacter(
  2886. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2887. {
  2888. front: {
  2889. height: math.unit(2, "meter"),
  2890. weight: math.unit(60, "kg"),
  2891. name: "Front",
  2892. image: {
  2893. source: "./media/characters/noah/front.svg"
  2894. }
  2895. },
  2896. talons: {
  2897. height: math.unit(0.315, "meter"),
  2898. name: "Talons",
  2899. image: {
  2900. source: "./media/characters/noah/talons.svg"
  2901. }
  2902. }
  2903. },
  2904. [
  2905. {
  2906. name: "Large",
  2907. height: math.unit(50, "feet")
  2908. },
  2909. {
  2910. name: "Macro",
  2911. height: math.unit(750, "feet"),
  2912. default: true
  2913. },
  2914. {
  2915. name: "Megamacro",
  2916. height: math.unit(50, "miles")
  2917. },
  2918. {
  2919. name: "Gigamacro",
  2920. height: math.unit(100000, "miles")
  2921. },
  2922. {
  2923. name: "Full-Size",
  2924. height: math.unit(3000000000, "miles")
  2925. }
  2926. ]
  2927. ))
  2928. characterMakers.push(() => makeCharacter(
  2929. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2930. {
  2931. front: {
  2932. height: math.unit(2, "meter"),
  2933. weight: math.unit(80, "kg"),
  2934. name: "Front",
  2935. image: {
  2936. source: "./media/characters/natalya/front.svg"
  2937. }
  2938. },
  2939. back: {
  2940. height: math.unit(2, "meter"),
  2941. weight: math.unit(80, "kg"),
  2942. name: "Back",
  2943. image: {
  2944. source: "./media/characters/natalya/back.svg"
  2945. }
  2946. }
  2947. },
  2948. [
  2949. {
  2950. name: "Normal",
  2951. height: math.unit(150, "feet"),
  2952. default: true
  2953. },
  2954. {
  2955. name: "Megamacro",
  2956. height: math.unit(5, "miles")
  2957. },
  2958. {
  2959. name: "Full-Size",
  2960. height: math.unit(600, "kiloparsecs")
  2961. }
  2962. ]
  2963. ))
  2964. characterMakers.push(() => makeCharacter(
  2965. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2966. {
  2967. front: {
  2968. height: math.unit(2, "meter"),
  2969. weight: math.unit(50, "kg"),
  2970. name: "Front",
  2971. image: {
  2972. source: "./media/characters/erestrebah/front.svg",
  2973. extra: 208 / 193,
  2974. bottom: 0.055
  2975. }
  2976. },
  2977. back: {
  2978. height: math.unit(2, "meter"),
  2979. weight: math.unit(50, "kg"),
  2980. name: "Back",
  2981. image: {
  2982. source: "./media/characters/erestrebah/back.svg",
  2983. extra: 1.3
  2984. }
  2985. }
  2986. },
  2987. [
  2988. {
  2989. name: "Normal",
  2990. height: math.unit(10, "feet")
  2991. },
  2992. {
  2993. name: "Large",
  2994. height: math.unit(50, "feet"),
  2995. default: true
  2996. },
  2997. {
  2998. name: "Macro",
  2999. height: math.unit(300, "feet")
  3000. },
  3001. {
  3002. name: "Macro+",
  3003. height: math.unit(750, "feet")
  3004. },
  3005. {
  3006. name: "Megamacro",
  3007. height: math.unit(3, "miles")
  3008. }
  3009. ]
  3010. ))
  3011. characterMakers.push(() => makeCharacter(
  3012. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3013. {
  3014. front: {
  3015. height: math.unit(2, "meter"),
  3016. weight: math.unit(80, "kg"),
  3017. name: "Front",
  3018. image: {
  3019. source: "./media/characters/jennifer/front.svg",
  3020. bottom: 0.11,
  3021. extra: 1.16
  3022. }
  3023. },
  3024. frontAlt: {
  3025. height: math.unit(2, "meter"),
  3026. weight: math.unit(80, "kg"),
  3027. name: "Front (Alt)",
  3028. image: {
  3029. source: "./media/characters/jennifer/front-alt.svg"
  3030. }
  3031. }
  3032. },
  3033. [
  3034. {
  3035. name: "Canon Height",
  3036. height: math.unit(120, "feet"),
  3037. default: true
  3038. },
  3039. {
  3040. name: "Macro+",
  3041. height: math.unit(300, "feet")
  3042. },
  3043. {
  3044. name: "Megamacro",
  3045. height: math.unit(20000, "feet")
  3046. }
  3047. ]
  3048. ))
  3049. characterMakers.push(() => makeCharacter(
  3050. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3051. {
  3052. front: {
  3053. height: math.unit(2, "meter"),
  3054. weight: math.unit(50, "kg"),
  3055. name: "Front",
  3056. image: {
  3057. source: "./media/characters/kalista/front.svg",
  3058. extra: 1947 / 1700,
  3059. bottom: 76.6 / 1412.98
  3060. }
  3061. },
  3062. back: {
  3063. height: math.unit(2, "meter"),
  3064. weight: math.unit(50, "kg"),
  3065. name: "Back",
  3066. image: {
  3067. source: "./media/characters/kalista/back.svg",
  3068. extra: 1366 / 1156,
  3069. bottom: 33.9 / 1362.78
  3070. }
  3071. }
  3072. },
  3073. [
  3074. {
  3075. name: "Uncomfortably Small",
  3076. height: math.unit(10, "feet")
  3077. },
  3078. {
  3079. name: "Small",
  3080. height: math.unit(30, "feet")
  3081. },
  3082. {
  3083. name: "Macro",
  3084. height: math.unit(100, "feet"),
  3085. default: true
  3086. },
  3087. {
  3088. name: "Macro+",
  3089. height: math.unit(2000, "feet")
  3090. },
  3091. {
  3092. name: "True Form",
  3093. height: math.unit(8924, "miles")
  3094. }
  3095. ]
  3096. ))
  3097. characterMakers.push(() => makeCharacter(
  3098. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3099. {
  3100. front: {
  3101. height: math.unit(2, "meter"),
  3102. weight: math.unit(120, "kg"),
  3103. name: "Front",
  3104. image: {
  3105. source: "./media/characters/ggv/front.svg"
  3106. }
  3107. },
  3108. side: {
  3109. height: math.unit(2, "meter"),
  3110. weight: math.unit(120, "kg"),
  3111. name: "Side",
  3112. image: {
  3113. source: "./media/characters/ggv/side.svg"
  3114. }
  3115. }
  3116. },
  3117. [
  3118. {
  3119. name: "Extremely Puny",
  3120. height: math.unit(9 + 5 / 12, "feet")
  3121. },
  3122. {
  3123. name: "Horribly Small",
  3124. height: math.unit(47.7, "miles"),
  3125. default: true
  3126. },
  3127. {
  3128. name: "Reasonably Sized",
  3129. height: math.unit(25000, "parsecs")
  3130. },
  3131. {
  3132. name: "Slightly Uncompressed",
  3133. height: math.unit(7.77e31, "parsecs")
  3134. },
  3135. {
  3136. name: "Omniversal",
  3137. height: math.unit(1e300, "meters")
  3138. },
  3139. ]
  3140. ))
  3141. characterMakers.push(() => makeCharacter(
  3142. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3143. {
  3144. front: {
  3145. height: math.unit(2, "meter"),
  3146. weight: math.unit(75, "lb"),
  3147. name: "Front",
  3148. image: {
  3149. source: "./media/characters/napalm/front.svg"
  3150. }
  3151. },
  3152. back: {
  3153. height: math.unit(2, "meter"),
  3154. weight: math.unit(75, "lb"),
  3155. name: "Back",
  3156. image: {
  3157. source: "./media/characters/napalm/back.svg"
  3158. }
  3159. }
  3160. },
  3161. [
  3162. {
  3163. name: "Standard",
  3164. height: math.unit(55, "feet"),
  3165. default: true
  3166. }
  3167. ]
  3168. ))
  3169. characterMakers.push(() => makeCharacter(
  3170. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3171. {
  3172. front: {
  3173. height: math.unit(7 + 5 / 6, "feet"),
  3174. weight: math.unit(325, "lb"),
  3175. name: "Front",
  3176. image: {
  3177. source: "./media/characters/asana/front.svg",
  3178. extra: 1133 / 1060,
  3179. bottom: 15.2 / 1148.6
  3180. }
  3181. },
  3182. back: {
  3183. height: math.unit(7 + 5 / 6, "feet"),
  3184. weight: math.unit(325, "lb"),
  3185. name: "Back",
  3186. image: {
  3187. source: "./media/characters/asana/back.svg",
  3188. extra: 1114 / 1043,
  3189. bottom: 5 / 1120
  3190. }
  3191. },
  3192. dressedDark: {
  3193. height: math.unit(7 + 5 / 6, "feet"),
  3194. weight: math.unit(325, "lb"),
  3195. name: "Dressed (Dark)",
  3196. image: {
  3197. source: "./media/characters/asana/dressed-dark.svg",
  3198. extra: 1133 / 1060,
  3199. bottom: 15.2 / 1148.6
  3200. }
  3201. },
  3202. dressedLight: {
  3203. height: math.unit(7 + 5 / 6, "feet"),
  3204. weight: math.unit(325, "lb"),
  3205. name: "Dressed (Light)",
  3206. image: {
  3207. source: "./media/characters/asana/dressed-light.svg",
  3208. extra: 1133 / 1060,
  3209. bottom: 15.2 / 1148.6
  3210. }
  3211. },
  3212. },
  3213. [
  3214. {
  3215. name: "Standard",
  3216. height: math.unit(7 + 5 / 6, "feet"),
  3217. default: true
  3218. },
  3219. {
  3220. name: "Large",
  3221. height: math.unit(10, "meters")
  3222. },
  3223. {
  3224. name: "Macro",
  3225. height: math.unit(2500, "meters")
  3226. },
  3227. {
  3228. name: "Megamacro",
  3229. height: math.unit(5e6, "meters")
  3230. },
  3231. {
  3232. name: "Examacro",
  3233. height: math.unit(5e12, "lightyears")
  3234. },
  3235. {
  3236. name: "Max Size",
  3237. height: math.unit(1e31, "lightyears")
  3238. }
  3239. ]
  3240. ))
  3241. characterMakers.push(() => makeCharacter(
  3242. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3243. {
  3244. front: {
  3245. height: math.unit(2, "meter"),
  3246. weight: math.unit(60, "kg"),
  3247. name: "Front",
  3248. image: {
  3249. source: "./media/characters/ebony/front.svg",
  3250. bottom: 0.03,
  3251. extra: 1045 / 810 + 0.03
  3252. }
  3253. },
  3254. side: {
  3255. height: math.unit(2, "meter"),
  3256. weight: math.unit(60, "kg"),
  3257. name: "Side",
  3258. image: {
  3259. source: "./media/characters/ebony/side.svg",
  3260. bottom: 0.03,
  3261. extra: 1045 / 810 + 0.03
  3262. }
  3263. },
  3264. back: {
  3265. height: math.unit(2, "meter"),
  3266. weight: math.unit(60, "kg"),
  3267. name: "Back",
  3268. image: {
  3269. source: "./media/characters/ebony/back.svg",
  3270. bottom: 0.01,
  3271. extra: 1045 / 810 + 0.01
  3272. }
  3273. },
  3274. },
  3275. [
  3276. // TODO check why I did this lol
  3277. {
  3278. name: "Standard",
  3279. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3280. default: true
  3281. },
  3282. {
  3283. name: "Macro",
  3284. height: math.unit(200, "feet")
  3285. },
  3286. {
  3287. name: "Gigamacro",
  3288. height: math.unit(13000, "km")
  3289. }
  3290. ]
  3291. ))
  3292. characterMakers.push(() => makeCharacter(
  3293. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3294. {
  3295. front: {
  3296. height: math.unit(6, "feet"),
  3297. weight: math.unit(175, "lb"),
  3298. name: "Front",
  3299. image: {
  3300. source: "./media/characters/mountain/front.svg",
  3301. extra: 972 / 955,
  3302. bottom: 64 / 1036.6
  3303. }
  3304. },
  3305. back: {
  3306. height: math.unit(6, "feet"),
  3307. weight: math.unit(175, "lb"),
  3308. name: "Back",
  3309. image: {
  3310. source: "./media/characters/mountain/back.svg",
  3311. extra: 970 / 950,
  3312. bottom: 28.25 / 999
  3313. }
  3314. },
  3315. },
  3316. [
  3317. {
  3318. name: "Large",
  3319. height: math.unit(20, "meters")
  3320. },
  3321. {
  3322. name: "Macro",
  3323. height: math.unit(300, "meters")
  3324. },
  3325. {
  3326. name: "Gigamacro",
  3327. height: math.unit(10000, "km"),
  3328. default: true
  3329. },
  3330. {
  3331. name: "Examacro",
  3332. height: math.unit(10e9, "lightyears")
  3333. }
  3334. ]
  3335. ))
  3336. characterMakers.push(() => makeCharacter(
  3337. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3338. {
  3339. front: {
  3340. height: math.unit(8, "feet"),
  3341. weight: math.unit(500, "lb"),
  3342. name: "Front",
  3343. image: {
  3344. source: "./media/characters/rick/front.svg"
  3345. }
  3346. }
  3347. },
  3348. [
  3349. {
  3350. name: "Normal",
  3351. height: math.unit(8, "feet"),
  3352. default: true
  3353. },
  3354. {
  3355. name: "Macro",
  3356. height: math.unit(5, "km")
  3357. }
  3358. ]
  3359. ))
  3360. characterMakers.push(() => makeCharacter(
  3361. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3362. {
  3363. front: {
  3364. height: math.unit(8, "feet"),
  3365. weight: math.unit(120, "lb"),
  3366. name: "Front",
  3367. image: {
  3368. source: "./media/characters/ona/front.svg"
  3369. }
  3370. },
  3371. frontAlt: {
  3372. height: math.unit(8, "feet"),
  3373. weight: math.unit(120, "lb"),
  3374. name: "Front (Alt)",
  3375. image: {
  3376. source: "./media/characters/ona/front-alt.svg"
  3377. }
  3378. },
  3379. back: {
  3380. height: math.unit(8, "feet"),
  3381. weight: math.unit(120, "lb"),
  3382. name: "Back",
  3383. image: {
  3384. source: "./media/characters/ona/back.svg"
  3385. }
  3386. },
  3387. foot: {
  3388. height: math.unit(1.1, "feet"),
  3389. name: "Foot",
  3390. image: {
  3391. source: "./media/characters/ona/foot.svg"
  3392. }
  3393. }
  3394. },
  3395. [
  3396. {
  3397. name: "Megamacro",
  3398. height: math.unit(70, "km"),
  3399. default: true
  3400. },
  3401. {
  3402. name: "Gigamacro",
  3403. height: math.unit(681818, "miles")
  3404. },
  3405. {
  3406. name: "Examacro",
  3407. height: math.unit(3800000, "lightyears")
  3408. },
  3409. ]
  3410. ))
  3411. characterMakers.push(() => makeCharacter(
  3412. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3413. {
  3414. front: {
  3415. height: math.unit(12, "feet"),
  3416. weight: math.unit(3000, "lb"),
  3417. name: "Front",
  3418. image: {
  3419. source: "./media/characters/mech/front.svg",
  3420. extra: 2900/2770,
  3421. bottom: 110/3010
  3422. }
  3423. },
  3424. back: {
  3425. height: math.unit(12, "feet"),
  3426. weight: math.unit(3000, "lb"),
  3427. name: "Back",
  3428. image: {
  3429. source: "./media/characters/mech/back.svg",
  3430. extra: 3011/2890,
  3431. bottom: 94/3105
  3432. }
  3433. },
  3434. maw: {
  3435. height: math.unit(3.07, "feet"),
  3436. name: "Maw",
  3437. image: {
  3438. source: "./media/characters/mech/maw.svg"
  3439. }
  3440. },
  3441. head: {
  3442. height: math.unit(2.82, "feet"),
  3443. name: "Head",
  3444. image: {
  3445. source: "./media/characters/mech/head.svg"
  3446. }
  3447. },
  3448. dick: {
  3449. height: math.unit(1.43, "feet"),
  3450. name: "Dick",
  3451. image: {
  3452. source: "./media/characters/mech/dick.svg"
  3453. }
  3454. },
  3455. },
  3456. [
  3457. {
  3458. name: "Normal",
  3459. height: math.unit(12, "feet")
  3460. },
  3461. {
  3462. name: "Macro",
  3463. height: math.unit(300, "feet"),
  3464. default: true
  3465. },
  3466. {
  3467. name: "Macro+",
  3468. height: math.unit(1500, "feet")
  3469. },
  3470. ]
  3471. ))
  3472. characterMakers.push(() => makeCharacter(
  3473. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3474. {
  3475. front: {
  3476. height: math.unit(1.3, "meter"),
  3477. weight: math.unit(30, "kg"),
  3478. name: "Front",
  3479. image: {
  3480. source: "./media/characters/gregory/front.svg",
  3481. }
  3482. }
  3483. },
  3484. [
  3485. {
  3486. name: "Normal",
  3487. height: math.unit(1.3, "meter"),
  3488. default: true
  3489. },
  3490. {
  3491. name: "Macro",
  3492. height: math.unit(20, "meter")
  3493. }
  3494. ]
  3495. ))
  3496. characterMakers.push(() => makeCharacter(
  3497. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3498. {
  3499. front: {
  3500. height: math.unit(2.8, "meter"),
  3501. weight: math.unit(200, "kg"),
  3502. name: "Front",
  3503. image: {
  3504. source: "./media/characters/elory/front.svg",
  3505. }
  3506. }
  3507. },
  3508. [
  3509. {
  3510. name: "Normal",
  3511. height: math.unit(2.8, "meter"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Macro",
  3516. height: math.unit(38, "meter")
  3517. }
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(470, "feet"),
  3525. weight: math.unit(924, "tons"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/angelpatamon/front.svg",
  3529. }
  3530. }
  3531. },
  3532. [
  3533. {
  3534. name: "Normal",
  3535. height: math.unit(470, "feet"),
  3536. default: true
  3537. },
  3538. {
  3539. name: "Deity Size I",
  3540. height: math.unit(28651.2, "km")
  3541. },
  3542. {
  3543. name: "Deity Size II",
  3544. height: math.unit(171907.2, "km")
  3545. }
  3546. ]
  3547. ))
  3548. characterMakers.push(() => makeCharacter(
  3549. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3550. {
  3551. side: {
  3552. height: math.unit(7.2, "meter"),
  3553. weight: math.unit(8.2, "tons"),
  3554. name: "Side",
  3555. image: {
  3556. source: "./media/characters/cryae/side.svg",
  3557. extra: 3500 / 1500
  3558. }
  3559. }
  3560. },
  3561. [
  3562. {
  3563. name: "Normal",
  3564. height: math.unit(7.2, "meter"),
  3565. default: true
  3566. }
  3567. ]
  3568. ))
  3569. characterMakers.push(() => makeCharacter(
  3570. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3571. {
  3572. front: {
  3573. height: math.unit(6, "feet"),
  3574. weight: math.unit(175, "lb"),
  3575. name: "Front",
  3576. image: {
  3577. source: "./media/characters/xera/front.svg",
  3578. extra: 2377 / 1972,
  3579. bottom: 75.5 / 2452
  3580. }
  3581. },
  3582. side: {
  3583. height: math.unit(6, "feet"),
  3584. weight: math.unit(175, "lb"),
  3585. name: "Side",
  3586. image: {
  3587. source: "./media/characters/xera/side.svg",
  3588. extra: 2345 / 2019,
  3589. bottom: 39.7 / 2384
  3590. }
  3591. },
  3592. back: {
  3593. height: math.unit(6, "feet"),
  3594. weight: math.unit(175, "lb"),
  3595. name: "Back",
  3596. image: {
  3597. source: "./media/characters/xera/back.svg",
  3598. extra: 2095 / 1984,
  3599. bottom: 67 / 2166
  3600. }
  3601. },
  3602. },
  3603. [
  3604. {
  3605. name: "Small",
  3606. height: math.unit(10, "feet")
  3607. },
  3608. {
  3609. name: "Macro",
  3610. height: math.unit(500, "meters"),
  3611. default: true
  3612. },
  3613. {
  3614. name: "Macro+",
  3615. height: math.unit(10, "km")
  3616. },
  3617. {
  3618. name: "Gigamacro",
  3619. height: math.unit(25000, "km")
  3620. },
  3621. {
  3622. name: "Teramacro",
  3623. height: math.unit(3e6, "km")
  3624. }
  3625. ]
  3626. ))
  3627. characterMakers.push(() => makeCharacter(
  3628. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3629. {
  3630. front: {
  3631. height: math.unit(6, "feet"),
  3632. weight: math.unit(175, "lb"),
  3633. name: "Front",
  3634. image: {
  3635. source: "./media/characters/nebula/front.svg",
  3636. extra: 2566 / 2362,
  3637. bottom: 81 / 2644
  3638. }
  3639. }
  3640. },
  3641. [
  3642. {
  3643. name: "Small",
  3644. height: math.unit(4.5, "meters")
  3645. },
  3646. {
  3647. name: "Macro",
  3648. height: math.unit(1500, "meters"),
  3649. default: true
  3650. },
  3651. {
  3652. name: "Megamacro",
  3653. height: math.unit(150, "km")
  3654. },
  3655. {
  3656. name: "Gigamacro",
  3657. height: math.unit(27000, "km")
  3658. }
  3659. ]
  3660. ))
  3661. characterMakers.push(() => makeCharacter(
  3662. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3663. {
  3664. front: {
  3665. height: math.unit(6, "feet"),
  3666. weight: math.unit(225, "lb"),
  3667. name: "Front",
  3668. image: {
  3669. source: "./media/characters/abysgar/front.svg"
  3670. }
  3671. }
  3672. },
  3673. [
  3674. {
  3675. name: "Small",
  3676. height: math.unit(4.5, "meters")
  3677. },
  3678. {
  3679. name: "Macro",
  3680. height: math.unit(1250, "meters"),
  3681. default: true
  3682. },
  3683. {
  3684. name: "Megamacro",
  3685. height: math.unit(125, "km")
  3686. },
  3687. {
  3688. name: "Gigamacro",
  3689. height: math.unit(26000, "km")
  3690. }
  3691. ]
  3692. ))
  3693. characterMakers.push(() => makeCharacter(
  3694. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3695. {
  3696. front: {
  3697. height: math.unit(6, "feet"),
  3698. weight: math.unit(180, "lb"),
  3699. name: "Front",
  3700. image: {
  3701. source: "./media/characters/yakuz/front.svg"
  3702. }
  3703. }
  3704. },
  3705. [
  3706. {
  3707. name: "Small",
  3708. height: math.unit(5, "meters")
  3709. },
  3710. {
  3711. name: "Macro",
  3712. height: math.unit(1500, "meters"),
  3713. default: true
  3714. },
  3715. {
  3716. name: "Megamacro",
  3717. height: math.unit(200, "km")
  3718. },
  3719. {
  3720. name: "Gigamacro",
  3721. height: math.unit(100000, "km")
  3722. }
  3723. ]
  3724. ))
  3725. characterMakers.push(() => makeCharacter(
  3726. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3727. {
  3728. front: {
  3729. height: math.unit(6, "feet"),
  3730. weight: math.unit(175, "lb"),
  3731. name: "Front",
  3732. image: {
  3733. source: "./media/characters/mirova/front.svg",
  3734. extra: 3334 / 3071,
  3735. bottom: 42 / 3375.6
  3736. }
  3737. }
  3738. },
  3739. [
  3740. {
  3741. name: "Small",
  3742. height: math.unit(5, "meters")
  3743. },
  3744. {
  3745. name: "Macro",
  3746. height: math.unit(900, "meters"),
  3747. default: true
  3748. },
  3749. {
  3750. name: "Megamacro",
  3751. height: math.unit(135, "km")
  3752. },
  3753. {
  3754. name: "Gigamacro",
  3755. height: math.unit(20000, "km")
  3756. }
  3757. ]
  3758. ))
  3759. characterMakers.push(() => makeCharacter(
  3760. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3761. {
  3762. side: {
  3763. height: math.unit(28.35, "feet"),
  3764. weight: math.unit(99.75, "tons"),
  3765. name: "Side",
  3766. image: {
  3767. source: "./media/characters/asana-mech/side.svg",
  3768. extra: 923 / 699,
  3769. bottom: 50 / 975
  3770. }
  3771. },
  3772. chaingun: {
  3773. height: math.unit(7, "feet"),
  3774. weight: math.unit(2400, "lb"),
  3775. name: "Chaingun",
  3776. image: {
  3777. source: "./media/characters/asana-mech/chaingun.svg"
  3778. }
  3779. },
  3780. laser: {
  3781. height: math.unit(7.12, "feet"),
  3782. weight: math.unit(2000, "lb"),
  3783. name: "Laser",
  3784. image: {
  3785. source: "./media/characters/asana-mech/laser.svg"
  3786. }
  3787. },
  3788. },
  3789. [
  3790. {
  3791. name: "Normal",
  3792. height: math.unit(28.35, "feet"),
  3793. default: true
  3794. },
  3795. {
  3796. name: "Macro",
  3797. height: math.unit(2500, "feet")
  3798. },
  3799. {
  3800. name: "Megamacro",
  3801. height: math.unit(25, "miles")
  3802. },
  3803. {
  3804. name: "Examacro",
  3805. height: math.unit(6e8, "lightyears")
  3806. },
  3807. ]
  3808. ))
  3809. characterMakers.push(() => makeCharacter(
  3810. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3811. {
  3812. front: {
  3813. height: math.unit(5, "meters"),
  3814. weight: math.unit(1000, "kg"),
  3815. name: "Front",
  3816. image: {
  3817. source: "./media/characters/asche/front.svg",
  3818. extra: 1258 / 1190,
  3819. bottom: 47 / 1305
  3820. }
  3821. },
  3822. frontUnderwear: {
  3823. height: math.unit(5, "meters"),
  3824. weight: math.unit(1000, "kg"),
  3825. name: "Front (Underwear)",
  3826. image: {
  3827. source: "./media/characters/asche/front-underwear.svg",
  3828. extra: 1258 / 1190,
  3829. bottom: 47 / 1305
  3830. }
  3831. },
  3832. frontDressed: {
  3833. height: math.unit(5, "meters"),
  3834. weight: math.unit(1000, "kg"),
  3835. name: "Front (Dressed)",
  3836. image: {
  3837. source: "./media/characters/asche/front-dressed.svg",
  3838. extra: 1258 / 1190,
  3839. bottom: 47 / 1305
  3840. }
  3841. },
  3842. frontArmor: {
  3843. height: math.unit(5, "meters"),
  3844. weight: math.unit(1000, "kg"),
  3845. name: "Front (Armored)",
  3846. image: {
  3847. source: "./media/characters/asche/front-armored.svg",
  3848. extra: 1374 / 1308,
  3849. bottom: 23 / 1397
  3850. }
  3851. },
  3852. mp724: {
  3853. height: math.unit(0.96, "meters"),
  3854. weight: math.unit(38, "kg"),
  3855. name: "H&K MP724",
  3856. image: {
  3857. source: "./media/characters/asche/h&k-mp724.svg"
  3858. }
  3859. },
  3860. side: {
  3861. height: math.unit(5, "meters"),
  3862. weight: math.unit(1000, "kg"),
  3863. name: "Side",
  3864. image: {
  3865. source: "./media/characters/asche/side.svg",
  3866. extra: 1717 / 1609,
  3867. bottom: 0.005
  3868. }
  3869. },
  3870. back: {
  3871. height: math.unit(5, "meters"),
  3872. weight: math.unit(1000, "kg"),
  3873. name: "Back",
  3874. image: {
  3875. source: "./media/characters/asche/back.svg",
  3876. extra: 1570 / 1501
  3877. }
  3878. },
  3879. },
  3880. [
  3881. {
  3882. name: "DEFCON 5",
  3883. height: math.unit(5, "meters")
  3884. },
  3885. {
  3886. name: "DEFCON 4",
  3887. height: math.unit(500, "meters"),
  3888. default: true
  3889. },
  3890. {
  3891. name: "DEFCON 3",
  3892. height: math.unit(5, "km")
  3893. },
  3894. {
  3895. name: "DEFCON 2",
  3896. height: math.unit(500, "km")
  3897. },
  3898. {
  3899. name: "DEFCON 1",
  3900. height: math.unit(500000, "km")
  3901. },
  3902. {
  3903. name: "DEFCON 0",
  3904. height: math.unit(3, "gigaparsecs")
  3905. },
  3906. ]
  3907. ))
  3908. characterMakers.push(() => makeCharacter(
  3909. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3910. {
  3911. front: {
  3912. height: math.unit(2, "meters"),
  3913. weight: math.unit(76, "kg"),
  3914. name: "Front",
  3915. image: {
  3916. source: "./media/characters/gale/front.svg"
  3917. }
  3918. },
  3919. frontAlt1: {
  3920. height: math.unit(2, "meters"),
  3921. weight: math.unit(76, "kg"),
  3922. name: "Front (Alt 1)",
  3923. image: {
  3924. source: "./media/characters/gale/front-alt-1.svg"
  3925. }
  3926. },
  3927. frontAlt2: {
  3928. height: math.unit(2, "meters"),
  3929. weight: math.unit(76, "kg"),
  3930. name: "Front (Alt 2)",
  3931. image: {
  3932. source: "./media/characters/gale/front-alt-2.svg"
  3933. }
  3934. },
  3935. },
  3936. [
  3937. {
  3938. name: "Normal",
  3939. height: math.unit(7, "feet")
  3940. },
  3941. {
  3942. name: "Macro",
  3943. height: math.unit(150, "feet"),
  3944. default: true
  3945. },
  3946. {
  3947. name: "Macro+",
  3948. height: math.unit(300, "feet")
  3949. },
  3950. ]
  3951. ))
  3952. characterMakers.push(() => makeCharacter(
  3953. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3954. {
  3955. front: {
  3956. height: math.unit(2, "meters"),
  3957. weight: math.unit(76, "kg"),
  3958. name: "Front",
  3959. image: {
  3960. source: "./media/characters/draylen/front.svg"
  3961. }
  3962. }
  3963. },
  3964. [
  3965. {
  3966. name: "Macro",
  3967. height: math.unit(150, "feet"),
  3968. default: true
  3969. }
  3970. ]
  3971. ))
  3972. characterMakers.push(() => makeCharacter(
  3973. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3974. {
  3975. front: {
  3976. height: math.unit(7 + 9 / 12, "feet"),
  3977. weight: math.unit(379, "lbs"),
  3978. name: "Front",
  3979. image: {
  3980. source: "./media/characters/chez/front.svg"
  3981. }
  3982. },
  3983. side: {
  3984. height: math.unit(7 + 9 / 12, "feet"),
  3985. weight: math.unit(379, "lbs"),
  3986. name: "Side",
  3987. image: {
  3988. source: "./media/characters/chez/side.svg"
  3989. }
  3990. }
  3991. },
  3992. [
  3993. {
  3994. name: "Normal",
  3995. height: math.unit(7 + 9 / 12, "feet"),
  3996. default: true
  3997. },
  3998. {
  3999. name: "God King",
  4000. height: math.unit(9750000, "meters")
  4001. }
  4002. ]
  4003. ))
  4004. characterMakers.push(() => makeCharacter(
  4005. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4006. {
  4007. front: {
  4008. height: math.unit(6, "feet"),
  4009. weight: math.unit(275, "lbs"),
  4010. name: "Front",
  4011. image: {
  4012. source: "./media/characters/kaylum/front.svg",
  4013. bottom: 0.01,
  4014. extra: 1166 / 1031
  4015. }
  4016. },
  4017. frontWingless: {
  4018. height: math.unit(6, "feet"),
  4019. weight: math.unit(275, "lbs"),
  4020. name: "Front (Wingless)",
  4021. image: {
  4022. source: "./media/characters/kaylum/front-wingless.svg",
  4023. bottom: 0.01,
  4024. extra: 1117 / 1031
  4025. }
  4026. }
  4027. },
  4028. [
  4029. {
  4030. name: "Normal",
  4031. height: math.unit(3.05, "meters")
  4032. },
  4033. {
  4034. name: "Master",
  4035. height: math.unit(5.5, "meters")
  4036. },
  4037. {
  4038. name: "Rampage",
  4039. height: math.unit(19, "meters")
  4040. },
  4041. {
  4042. name: "Macro Lite",
  4043. height: math.unit(37, "meters")
  4044. },
  4045. {
  4046. name: "Hyper Predator",
  4047. height: math.unit(61, "meters")
  4048. },
  4049. {
  4050. name: "Macro",
  4051. height: math.unit(138, "meters"),
  4052. default: true
  4053. }
  4054. ]
  4055. ))
  4056. characterMakers.push(() => makeCharacter(
  4057. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4058. {
  4059. front: {
  4060. height: math.unit(6, "feet"),
  4061. weight: math.unit(150, "lbs"),
  4062. name: "Front",
  4063. image: {
  4064. source: "./media/characters/geta/front.svg"
  4065. }
  4066. }
  4067. },
  4068. [
  4069. {
  4070. name: "Micro",
  4071. height: math.unit(3, "inches"),
  4072. default: true
  4073. },
  4074. {
  4075. name: "Normal",
  4076. height: math.unit(5 + 5 / 12, "feet")
  4077. }
  4078. ]
  4079. ))
  4080. characterMakers.push(() => makeCharacter(
  4081. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4082. {
  4083. front: {
  4084. height: math.unit(6, "feet"),
  4085. weight: math.unit(300, "lbs"),
  4086. name: "Front",
  4087. image: {
  4088. source: "./media/characters/tyrnn/front.svg"
  4089. }
  4090. }
  4091. },
  4092. [
  4093. {
  4094. name: "Main Height",
  4095. height: math.unit(355, "feet"),
  4096. default: true
  4097. },
  4098. {
  4099. name: "Fave. Height",
  4100. height: math.unit(2400, "feet")
  4101. }
  4102. ]
  4103. ))
  4104. characterMakers.push(() => makeCharacter(
  4105. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4106. {
  4107. front: {
  4108. height: math.unit(6, "feet"),
  4109. weight: math.unit(300, "lbs"),
  4110. name: "Front",
  4111. image: {
  4112. source: "./media/characters/appledectomy/front.svg"
  4113. }
  4114. }
  4115. },
  4116. [
  4117. {
  4118. name: "Macro",
  4119. height: math.unit(2500, "feet")
  4120. },
  4121. {
  4122. name: "Megamacro",
  4123. height: math.unit(50, "miles"),
  4124. default: true
  4125. },
  4126. {
  4127. name: "Gigamacro",
  4128. height: math.unit(5000, "miles")
  4129. },
  4130. {
  4131. name: "Teramacro",
  4132. height: math.unit(250000, "miles")
  4133. },
  4134. ]
  4135. ))
  4136. characterMakers.push(() => makeCharacter(
  4137. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4138. {
  4139. front: {
  4140. height: math.unit(6, "feet"),
  4141. weight: math.unit(200, "lbs"),
  4142. name: "Front",
  4143. image: {
  4144. source: "./media/characters/vulpes/front.svg",
  4145. extra: 573 / 543,
  4146. bottom: 0.033
  4147. }
  4148. },
  4149. side: {
  4150. height: math.unit(6, "feet"),
  4151. weight: math.unit(200, "lbs"),
  4152. name: "Side",
  4153. image: {
  4154. source: "./media/characters/vulpes/side.svg",
  4155. extra: 577 / 549,
  4156. bottom: 11 / 588
  4157. }
  4158. },
  4159. back: {
  4160. height: math.unit(6, "feet"),
  4161. weight: math.unit(200, "lbs"),
  4162. name: "Back",
  4163. image: {
  4164. source: "./media/characters/vulpes/back.svg",
  4165. extra: 573 / 549,
  4166. bottom: 20 / 593
  4167. }
  4168. },
  4169. feet: {
  4170. height: math.unit(1.276, "feet"),
  4171. name: "Feet",
  4172. image: {
  4173. source: "./media/characters/vulpes/feet.svg"
  4174. }
  4175. },
  4176. maw: {
  4177. height: math.unit(1.18, "feet"),
  4178. name: "Maw",
  4179. image: {
  4180. source: "./media/characters/vulpes/maw.svg"
  4181. }
  4182. },
  4183. },
  4184. [
  4185. {
  4186. name: "Micro",
  4187. height: math.unit(2, "inches")
  4188. },
  4189. {
  4190. name: "Normal",
  4191. height: math.unit(6.3, "feet")
  4192. },
  4193. {
  4194. name: "Macro",
  4195. height: math.unit(850, "feet")
  4196. },
  4197. {
  4198. name: "Megamacro",
  4199. height: math.unit(7500, "feet"),
  4200. default: true
  4201. },
  4202. {
  4203. name: "Gigamacro",
  4204. height: math.unit(570000, "miles")
  4205. }
  4206. ]
  4207. ))
  4208. characterMakers.push(() => makeCharacter(
  4209. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4210. {
  4211. front: {
  4212. height: math.unit(6, "feet"),
  4213. weight: math.unit(210, "lbs"),
  4214. name: "Front",
  4215. image: {
  4216. source: "./media/characters/rain-fallen/front.svg"
  4217. }
  4218. },
  4219. side: {
  4220. height: math.unit(6, "feet"),
  4221. weight: math.unit(210, "lbs"),
  4222. name: "Side",
  4223. image: {
  4224. source: "./media/characters/rain-fallen/side.svg"
  4225. }
  4226. },
  4227. back: {
  4228. height: math.unit(6, "feet"),
  4229. weight: math.unit(210, "lbs"),
  4230. name: "Back",
  4231. image: {
  4232. source: "./media/characters/rain-fallen/back.svg"
  4233. }
  4234. },
  4235. feral: {
  4236. height: math.unit(9, "feet"),
  4237. weight: math.unit(700, "lbs"),
  4238. name: "Feral",
  4239. image: {
  4240. source: "./media/characters/rain-fallen/feral.svg"
  4241. }
  4242. },
  4243. },
  4244. [
  4245. {
  4246. name: "Normal",
  4247. height: math.unit(5, "meter")
  4248. },
  4249. {
  4250. name: "Macro",
  4251. height: math.unit(150, "meter"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Megamacro",
  4256. height: math.unit(278e6, "meter")
  4257. },
  4258. {
  4259. name: "Gigamacro",
  4260. height: math.unit(2e9, "meter")
  4261. },
  4262. {
  4263. name: "Teramacro",
  4264. height: math.unit(8e12, "meter")
  4265. },
  4266. {
  4267. name: "Devourer",
  4268. height: math.unit(14, "zettameters")
  4269. },
  4270. {
  4271. name: "Scarlet King",
  4272. height: math.unit(18, "yottameters")
  4273. },
  4274. {
  4275. name: "Void",
  4276. height: math.unit(6.66e66, "yottameters")
  4277. }
  4278. ]
  4279. ))
  4280. characterMakers.push(() => makeCharacter(
  4281. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4282. {
  4283. standing: {
  4284. height: math.unit(6, "feet"),
  4285. weight: math.unit(180, "lbs"),
  4286. name: "Standing",
  4287. image: {
  4288. source: "./media/characters/zaakira/standing.svg"
  4289. }
  4290. },
  4291. laying: {
  4292. height: math.unit(3, "feet"),
  4293. weight: math.unit(180, "lbs"),
  4294. name: "Laying",
  4295. image: {
  4296. source: "./media/characters/zaakira/laying.svg"
  4297. }
  4298. },
  4299. },
  4300. [
  4301. {
  4302. name: "Normal",
  4303. height: math.unit(12, "feet")
  4304. },
  4305. {
  4306. name: "Macro",
  4307. height: math.unit(279, "feet"),
  4308. default: true
  4309. }
  4310. ]
  4311. ))
  4312. characterMakers.push(() => makeCharacter(
  4313. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4314. {
  4315. femSfw: {
  4316. height: math.unit(8, "feet"),
  4317. weight: math.unit(350, "lb"),
  4318. name: "Fem",
  4319. image: {
  4320. source: "./media/characters/sigvald/fem-sfw.svg",
  4321. extra: 182 / 164,
  4322. bottom: 8.7 / 190.5
  4323. }
  4324. },
  4325. femNsfw: {
  4326. height: math.unit(8, "feet"),
  4327. weight: math.unit(350, "lb"),
  4328. name: "Fem (NSFW)",
  4329. image: {
  4330. source: "./media/characters/sigvald/fem-nsfw.svg",
  4331. extra: 182 / 164,
  4332. bottom: 8.7 / 190.5
  4333. }
  4334. },
  4335. maleNsfw: {
  4336. height: math.unit(8, "feet"),
  4337. weight: math.unit(350, "lb"),
  4338. name: "Male (NSFW)",
  4339. image: {
  4340. source: "./media/characters/sigvald/male-nsfw.svg",
  4341. extra: 182 / 164,
  4342. bottom: 8.7 / 190.5
  4343. }
  4344. },
  4345. hermNsfw: {
  4346. height: math.unit(8, "feet"),
  4347. weight: math.unit(350, "lb"),
  4348. name: "Herm (NSFW)",
  4349. image: {
  4350. source: "./media/characters/sigvald/herm-nsfw.svg",
  4351. extra: 182 / 164,
  4352. bottom: 8.7 / 190.5
  4353. }
  4354. },
  4355. dick: {
  4356. height: math.unit(2.36, "feet"),
  4357. name: "Dick",
  4358. image: {
  4359. source: "./media/characters/sigvald/dick.svg"
  4360. }
  4361. },
  4362. eye: {
  4363. height: math.unit(0.31, "feet"),
  4364. name: "Eye",
  4365. image: {
  4366. source: "./media/characters/sigvald/eye.svg"
  4367. }
  4368. },
  4369. mouth: {
  4370. height: math.unit(0.92, "feet"),
  4371. name: "Mouth",
  4372. image: {
  4373. source: "./media/characters/sigvald/mouth.svg"
  4374. }
  4375. },
  4376. paws: {
  4377. height: math.unit(2.2, "feet"),
  4378. name: "Paws",
  4379. image: {
  4380. source: "./media/characters/sigvald/paws.svg"
  4381. }
  4382. }
  4383. },
  4384. [
  4385. {
  4386. name: "Normal",
  4387. height: math.unit(8, "feet")
  4388. },
  4389. {
  4390. name: "Large",
  4391. height: math.unit(12, "feet")
  4392. },
  4393. {
  4394. name: "Larger",
  4395. height: math.unit(20, "feet")
  4396. },
  4397. {
  4398. name: "Macro",
  4399. height: math.unit(150, "feet")
  4400. },
  4401. {
  4402. name: "Macro+",
  4403. height: math.unit(200, "feet"),
  4404. default: true
  4405. },
  4406. ]
  4407. ))
  4408. characterMakers.push(() => makeCharacter(
  4409. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4410. {
  4411. side: {
  4412. height: math.unit(12, "feet"),
  4413. weight: math.unit(2000, "kg"),
  4414. name: "Side",
  4415. image: {
  4416. source: "./media/characters/scott/side.svg",
  4417. extra: 754 / 724,
  4418. bottom: 0.069
  4419. }
  4420. },
  4421. upright: {
  4422. height: math.unit(12, "feet"),
  4423. weight: math.unit(2000, "kg"),
  4424. name: "Upright",
  4425. image: {
  4426. source: "./media/characters/scott/upright.svg",
  4427. extra: 3881 / 3722,
  4428. bottom: 0.05
  4429. }
  4430. },
  4431. },
  4432. [
  4433. {
  4434. name: "Normal",
  4435. height: math.unit(12, "feet"),
  4436. default: true
  4437. },
  4438. ]
  4439. ))
  4440. characterMakers.push(() => makeCharacter(
  4441. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4442. {
  4443. side: {
  4444. height: math.unit(8, "meters"),
  4445. weight: math.unit(84755, "lbs"),
  4446. name: "Side",
  4447. image: {
  4448. source: "./media/characters/tobias/side.svg",
  4449. extra: 1474 / 1096,
  4450. bottom: 38.9 / 1513.1235
  4451. }
  4452. },
  4453. },
  4454. [
  4455. {
  4456. name: "Normal",
  4457. height: math.unit(8, "meters"),
  4458. default: true
  4459. },
  4460. ]
  4461. ))
  4462. characterMakers.push(() => makeCharacter(
  4463. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4464. {
  4465. front: {
  4466. height: math.unit(5.5, "feet"),
  4467. weight: math.unit(400, "lbs"),
  4468. name: "Front",
  4469. image: {
  4470. source: "./media/characters/kieran/front.svg",
  4471. extra: 2694 / 2364,
  4472. bottom: 217 / 2908
  4473. }
  4474. },
  4475. side: {
  4476. height: math.unit(5.5, "feet"),
  4477. weight: math.unit(400, "lbs"),
  4478. name: "Side",
  4479. image: {
  4480. source: "./media/characters/kieran/side.svg",
  4481. extra: 875 / 777,
  4482. bottom: 84.6 / 959
  4483. }
  4484. },
  4485. },
  4486. [
  4487. {
  4488. name: "Normal",
  4489. height: math.unit(5.5, "feet"),
  4490. default: true
  4491. },
  4492. ]
  4493. ))
  4494. characterMakers.push(() => makeCharacter(
  4495. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4496. {
  4497. side: {
  4498. height: math.unit(2, "meters"),
  4499. weight: math.unit(70, "kg"),
  4500. name: "Side",
  4501. image: {
  4502. source: "./media/characters/sanya/side.svg",
  4503. bottom: 0.02,
  4504. extra: 1.02
  4505. }
  4506. },
  4507. },
  4508. [
  4509. {
  4510. name: "Small",
  4511. height: math.unit(2, "meters")
  4512. },
  4513. {
  4514. name: "Normal",
  4515. height: math.unit(3, "meters")
  4516. },
  4517. {
  4518. name: "Macro",
  4519. height: math.unit(16, "meters"),
  4520. default: true
  4521. },
  4522. ]
  4523. ))
  4524. characterMakers.push(() => makeCharacter(
  4525. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4526. {
  4527. front: {
  4528. height: math.unit(2, "meters"),
  4529. weight: math.unit(120, "kg"),
  4530. name: "Front",
  4531. image: {
  4532. source: "./media/characters/miranda/front.svg",
  4533. extra: 195 / 185,
  4534. bottom: 10.9 / 206.5
  4535. }
  4536. },
  4537. back: {
  4538. height: math.unit(2, "meters"),
  4539. weight: math.unit(120, "kg"),
  4540. name: "Back",
  4541. image: {
  4542. source: "./media/characters/miranda/back.svg",
  4543. extra: 201 / 193,
  4544. bottom: 2.3 / 203.7
  4545. }
  4546. },
  4547. },
  4548. [
  4549. {
  4550. name: "Normal",
  4551. height: math.unit(10, "feet"),
  4552. default: true
  4553. }
  4554. ]
  4555. ))
  4556. characterMakers.push(() => makeCharacter(
  4557. { name: "James", species: ["deer"], tags: ["anthro"] },
  4558. {
  4559. side: {
  4560. height: math.unit(2, "meters"),
  4561. weight: math.unit(100, "kg"),
  4562. name: "Front",
  4563. image: {
  4564. source: "./media/characters/james/front.svg",
  4565. extra: 10 / 8.5
  4566. }
  4567. },
  4568. },
  4569. [
  4570. {
  4571. name: "Normal",
  4572. height: math.unit(8.5, "feet"),
  4573. default: true
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4579. {
  4580. side: {
  4581. height: math.unit(9.5, "feet"),
  4582. weight: math.unit(2500, "lbs"),
  4583. name: "Side",
  4584. image: {
  4585. source: "./media/characters/heather/side.svg"
  4586. }
  4587. },
  4588. },
  4589. [
  4590. {
  4591. name: "Normal",
  4592. height: math.unit(9.5, "feet"),
  4593. default: true
  4594. }
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4599. {
  4600. side: {
  4601. height: math.unit(6.5, "feet"),
  4602. weight: math.unit(400, "lbs"),
  4603. name: "Side",
  4604. image: {
  4605. source: "./media/characters/lukas/side.svg",
  4606. extra: 7.25 / 6.5
  4607. }
  4608. },
  4609. },
  4610. [
  4611. {
  4612. name: "Normal",
  4613. height: math.unit(6.5, "feet"),
  4614. default: true
  4615. }
  4616. ]
  4617. ))
  4618. characterMakers.push(() => makeCharacter(
  4619. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4620. {
  4621. side: {
  4622. height: math.unit(5, "feet"),
  4623. weight: math.unit(3000, "lbs"),
  4624. name: "Side",
  4625. image: {
  4626. source: "./media/characters/louise/side.svg"
  4627. }
  4628. },
  4629. },
  4630. [
  4631. {
  4632. name: "Normal",
  4633. height: math.unit(5, "feet"),
  4634. default: true
  4635. }
  4636. ]
  4637. ))
  4638. characterMakers.push(() => makeCharacter(
  4639. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4640. {
  4641. side: {
  4642. height: math.unit(6, "feet"),
  4643. weight: math.unit(150, "lbs"),
  4644. name: "Side",
  4645. image: {
  4646. source: "./media/characters/ramona/side.svg"
  4647. }
  4648. },
  4649. },
  4650. [
  4651. {
  4652. name: "Normal",
  4653. height: math.unit(5.3, "meters"),
  4654. default: true
  4655. },
  4656. {
  4657. name: "Macro",
  4658. height: math.unit(20, "stories")
  4659. },
  4660. {
  4661. name: "Macro+",
  4662. height: math.unit(50, "stories")
  4663. },
  4664. ]
  4665. ))
  4666. characterMakers.push(() => makeCharacter(
  4667. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4668. {
  4669. standing: {
  4670. height: math.unit(5.75, "feet"),
  4671. weight: math.unit(160, "lbs"),
  4672. name: "Standing",
  4673. image: {
  4674. source: "./media/characters/deerpuff/standing.svg",
  4675. extra: 682 / 624
  4676. }
  4677. },
  4678. sitting: {
  4679. height: math.unit(5.75 / 1.79, "feet"),
  4680. weight: math.unit(160, "lbs"),
  4681. name: "Sitting",
  4682. image: {
  4683. source: "./media/characters/deerpuff/sitting.svg",
  4684. bottom: 44 / 400,
  4685. extra: 1
  4686. }
  4687. },
  4688. taurLaying: {
  4689. height: math.unit(6, "feet"),
  4690. weight: math.unit(400, "lbs"),
  4691. name: "Taur (Laying)",
  4692. image: {
  4693. source: "./media/characters/deerpuff/taur-laying.svg"
  4694. }
  4695. },
  4696. },
  4697. [
  4698. {
  4699. name: "Puffball",
  4700. height: math.unit(6, "inches")
  4701. },
  4702. {
  4703. name: "Normalpuff",
  4704. height: math.unit(5.75, "feet")
  4705. },
  4706. {
  4707. name: "Macropuff",
  4708. height: math.unit(1500, "feet"),
  4709. default: true
  4710. },
  4711. {
  4712. name: "Megapuff",
  4713. height: math.unit(500, "miles")
  4714. },
  4715. {
  4716. name: "Gigapuff",
  4717. height: math.unit(250000, "miles")
  4718. },
  4719. {
  4720. name: "Omegapuff",
  4721. height: math.unit(1000, "lightyears")
  4722. },
  4723. ]
  4724. ))
  4725. characterMakers.push(() => makeCharacter(
  4726. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4727. {
  4728. stomping: {
  4729. height: math.unit(6, "feet"),
  4730. weight: math.unit(170, "lbs"),
  4731. name: "Stomping",
  4732. image: {
  4733. source: "./media/characters/vivian/stomping.svg"
  4734. }
  4735. },
  4736. sitting: {
  4737. height: math.unit(6 / 1.75, "feet"),
  4738. weight: math.unit(170, "lbs"),
  4739. name: "Sitting",
  4740. image: {
  4741. source: "./media/characters/vivian/sitting.svg",
  4742. bottom: 1 / 6.4,
  4743. extra: 1,
  4744. }
  4745. },
  4746. },
  4747. [
  4748. {
  4749. name: "Normal",
  4750. height: math.unit(7, "feet"),
  4751. default: true
  4752. },
  4753. {
  4754. name: "Macro",
  4755. height: math.unit(10, "stories")
  4756. },
  4757. {
  4758. name: "Macro+",
  4759. height: math.unit(30, "stories")
  4760. },
  4761. {
  4762. name: "Megamacro",
  4763. height: math.unit(10, "miles")
  4764. },
  4765. {
  4766. name: "Megamacro+",
  4767. height: math.unit(2750000, "meters")
  4768. },
  4769. ]
  4770. ))
  4771. characterMakers.push(() => makeCharacter(
  4772. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4773. {
  4774. front: {
  4775. height: math.unit(6, "feet"),
  4776. weight: math.unit(160, "lbs"),
  4777. name: "Front",
  4778. image: {
  4779. source: "./media/characters/prince/front.svg",
  4780. extra: 3400 / 3000
  4781. }
  4782. },
  4783. jumping: {
  4784. height: math.unit(6, "feet"),
  4785. weight: math.unit(160, "lbs"),
  4786. name: "Jumping",
  4787. image: {
  4788. source: "./media/characters/prince/jump.svg",
  4789. extra: 2555 / 2134
  4790. }
  4791. },
  4792. },
  4793. [
  4794. {
  4795. name: "Normal",
  4796. height: math.unit(7.75, "feet"),
  4797. default: true
  4798. },
  4799. {
  4800. name: "Not cute",
  4801. height: math.unit(17, "feet")
  4802. },
  4803. {
  4804. name: "I said NOT",
  4805. height: math.unit(91, "feet")
  4806. },
  4807. {
  4808. name: "Please stop",
  4809. height: math.unit(560, "feet")
  4810. },
  4811. {
  4812. name: "What have you done",
  4813. height: math.unit(2200, "feet")
  4814. },
  4815. {
  4816. name: "Deer God",
  4817. height: math.unit(3.6, "miles")
  4818. },
  4819. ]
  4820. ))
  4821. characterMakers.push(() => makeCharacter(
  4822. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4823. {
  4824. standing: {
  4825. height: math.unit(6, "feet"),
  4826. weight: math.unit(300, "lbs"),
  4827. name: "Standing",
  4828. image: {
  4829. source: "./media/characters/psymon/standing.svg",
  4830. extra: 1888 / 1810,
  4831. bottom: 0.05
  4832. }
  4833. },
  4834. slithering: {
  4835. height: math.unit(6, "feet"),
  4836. weight: math.unit(300, "lbs"),
  4837. name: "Slithering",
  4838. image: {
  4839. source: "./media/characters/psymon/slithering.svg",
  4840. extra: 1330 / 1224
  4841. }
  4842. },
  4843. slitheringAlt: {
  4844. height: math.unit(6, "feet"),
  4845. weight: math.unit(300, "lbs"),
  4846. name: "Slithering (Alt)",
  4847. image: {
  4848. source: "./media/characters/psymon/slithering-alt.svg",
  4849. extra: 1330 / 1224
  4850. }
  4851. },
  4852. },
  4853. [
  4854. {
  4855. name: "Normal",
  4856. height: math.unit(11.25, "feet"),
  4857. default: true
  4858. },
  4859. {
  4860. name: "Large",
  4861. height: math.unit(27, "feet")
  4862. },
  4863. {
  4864. name: "Giant",
  4865. height: math.unit(87, "feet")
  4866. },
  4867. {
  4868. name: "Macro",
  4869. height: math.unit(365, "feet")
  4870. },
  4871. {
  4872. name: "Megamacro",
  4873. height: math.unit(3, "miles")
  4874. },
  4875. {
  4876. name: "World Serpent",
  4877. height: math.unit(8000, "miles")
  4878. },
  4879. ]
  4880. ))
  4881. characterMakers.push(() => makeCharacter(
  4882. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4883. {
  4884. front: {
  4885. height: math.unit(6, "feet"),
  4886. weight: math.unit(180, "lbs"),
  4887. name: "Front",
  4888. image: {
  4889. source: "./media/characters/daimos/front.svg",
  4890. extra: 4160 / 3897,
  4891. bottom: 0.021
  4892. }
  4893. }
  4894. },
  4895. [
  4896. {
  4897. name: "Normal",
  4898. height: math.unit(8, "feet"),
  4899. default: true
  4900. },
  4901. {
  4902. name: "Big Dog",
  4903. height: math.unit(22, "feet")
  4904. },
  4905. {
  4906. name: "Macro",
  4907. height: math.unit(127, "feet")
  4908. },
  4909. {
  4910. name: "Megamacro",
  4911. height: math.unit(3600, "feet")
  4912. },
  4913. ]
  4914. ))
  4915. characterMakers.push(() => makeCharacter(
  4916. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4917. {
  4918. side: {
  4919. height: math.unit(6, "feet"),
  4920. weight: math.unit(180, "lbs"),
  4921. name: "Side",
  4922. image: {
  4923. source: "./media/characters/blake/side.svg",
  4924. extra: 1212 / 1120,
  4925. bottom: 0.05
  4926. }
  4927. },
  4928. crouched: {
  4929. height: math.unit(6 * 0.57, "feet"),
  4930. weight: math.unit(180, "lbs"),
  4931. name: "Crouched",
  4932. image: {
  4933. source: "./media/characters/blake/crouched.svg",
  4934. extra: 840 / 587,
  4935. bottom: 0.04
  4936. }
  4937. },
  4938. bent: {
  4939. height: math.unit(6 * 0.75, "feet"),
  4940. weight: math.unit(180, "lbs"),
  4941. name: "Bent",
  4942. image: {
  4943. source: "./media/characters/blake/bent.svg",
  4944. extra: 592 / 544,
  4945. bottom: 0.035
  4946. }
  4947. },
  4948. },
  4949. [
  4950. {
  4951. name: "Normal",
  4952. height: math.unit(8 + 1 / 6, "feet"),
  4953. default: true
  4954. },
  4955. {
  4956. name: "Big Backside",
  4957. height: math.unit(37, "feet")
  4958. },
  4959. {
  4960. name: "Subway Shredder",
  4961. height: math.unit(72, "feet")
  4962. },
  4963. {
  4964. name: "City Carver",
  4965. height: math.unit(1675, "feet")
  4966. },
  4967. {
  4968. name: "Tectonic Tweaker",
  4969. height: math.unit(2300, "miles")
  4970. },
  4971. ]
  4972. ))
  4973. characterMakers.push(() => makeCharacter(
  4974. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4975. {
  4976. front: {
  4977. height: math.unit(6, "feet"),
  4978. weight: math.unit(180, "lbs"),
  4979. name: "Front",
  4980. image: {
  4981. source: "./media/characters/guisetto/front.svg",
  4982. extra: 856 / 817,
  4983. bottom: 0.06
  4984. }
  4985. },
  4986. airborne: {
  4987. height: math.unit(6, "feet"),
  4988. weight: math.unit(180, "lbs"),
  4989. name: "Airborne",
  4990. image: {
  4991. source: "./media/characters/guisetto/airborne.svg",
  4992. extra: 584 / 525
  4993. }
  4994. },
  4995. },
  4996. [
  4997. {
  4998. name: "Normal",
  4999. height: math.unit(10 + 11 / 12, "feet"),
  5000. default: true
  5001. },
  5002. {
  5003. name: "Large",
  5004. height: math.unit(35, "feet")
  5005. },
  5006. {
  5007. name: "Macro",
  5008. height: math.unit(475, "feet")
  5009. },
  5010. ]
  5011. ))
  5012. characterMakers.push(() => makeCharacter(
  5013. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5014. {
  5015. front: {
  5016. height: math.unit(6, "feet"),
  5017. weight: math.unit(180, "lbs"),
  5018. name: "Front",
  5019. image: {
  5020. source: "./media/characters/luxor/front.svg",
  5021. extra: 2940 / 2152
  5022. }
  5023. },
  5024. back: {
  5025. height: math.unit(6, "feet"),
  5026. weight: math.unit(180, "lbs"),
  5027. name: "Back",
  5028. image: {
  5029. source: "./media/characters/luxor/back.svg",
  5030. extra: 1083 / 960
  5031. }
  5032. },
  5033. },
  5034. [
  5035. {
  5036. name: "Normal",
  5037. height: math.unit(5 + 5 / 6, "feet"),
  5038. default: true
  5039. },
  5040. {
  5041. name: "Lamp",
  5042. height: math.unit(50, "feet")
  5043. },
  5044. {
  5045. name: "Lämp",
  5046. height: math.unit(300, "feet")
  5047. },
  5048. {
  5049. name: "The sun is a lamp",
  5050. height: math.unit(250000, "miles")
  5051. },
  5052. ]
  5053. ))
  5054. characterMakers.push(() => makeCharacter(
  5055. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5056. {
  5057. front: {
  5058. height: math.unit(6, "feet"),
  5059. weight: math.unit(50, "lbs"),
  5060. name: "Front",
  5061. image: {
  5062. source: "./media/characters/huoyan/front.svg"
  5063. }
  5064. },
  5065. side: {
  5066. height: math.unit(6, "feet"),
  5067. weight: math.unit(180, "lbs"),
  5068. name: "Side",
  5069. image: {
  5070. source: "./media/characters/huoyan/side.svg"
  5071. }
  5072. },
  5073. },
  5074. [
  5075. {
  5076. name: "Chef",
  5077. height: math.unit(9, "feet")
  5078. },
  5079. {
  5080. name: "Normal",
  5081. height: math.unit(65, "feet"),
  5082. default: true
  5083. },
  5084. {
  5085. name: "Macro",
  5086. height: math.unit(780, "feet")
  5087. },
  5088. {
  5089. name: "Flaming Mountain",
  5090. height: math.unit(4.8, "miles")
  5091. },
  5092. {
  5093. name: "Celestial",
  5094. height: math.unit(765000, "miles")
  5095. },
  5096. ]
  5097. ))
  5098. characterMakers.push(() => makeCharacter(
  5099. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5100. {
  5101. front: {
  5102. height: math.unit(5 + 3 / 4, "feet"),
  5103. weight: math.unit(120, "lbs"),
  5104. name: "Front",
  5105. image: {
  5106. source: "./media/characters/tails/front.svg"
  5107. }
  5108. }
  5109. },
  5110. [
  5111. {
  5112. name: "Normal",
  5113. height: math.unit(5 + 3 / 4, "feet"),
  5114. default: true
  5115. }
  5116. ]
  5117. ))
  5118. characterMakers.push(() => makeCharacter(
  5119. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5120. {
  5121. front: {
  5122. height: math.unit(4, "feet"),
  5123. weight: math.unit(50, "lbs"),
  5124. name: "Front",
  5125. image: {
  5126. source: "./media/characters/rainy/front.svg"
  5127. }
  5128. }
  5129. },
  5130. [
  5131. {
  5132. name: "Macro",
  5133. height: math.unit(800, "feet"),
  5134. default: true
  5135. }
  5136. ]
  5137. ))
  5138. characterMakers.push(() => makeCharacter(
  5139. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5140. {
  5141. front: {
  5142. height: math.unit(6, "feet"),
  5143. weight: math.unit(150, "lbs"),
  5144. name: "Front",
  5145. image: {
  5146. source: "./media/characters/rainier/front.svg"
  5147. }
  5148. }
  5149. },
  5150. [
  5151. {
  5152. name: "Micro",
  5153. height: math.unit(2, "mm"),
  5154. default: true
  5155. }
  5156. ]
  5157. ))
  5158. characterMakers.push(() => makeCharacter(
  5159. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5160. {
  5161. front: {
  5162. height: math.unit(6, "feet"),
  5163. weight: math.unit(180, "lbs"),
  5164. name: "Front",
  5165. image: {
  5166. source: "./media/characters/andy/front.svg"
  5167. }
  5168. }
  5169. },
  5170. [
  5171. {
  5172. name: "Normal",
  5173. height: math.unit(8, "feet"),
  5174. default: true
  5175. },
  5176. {
  5177. name: "Macro",
  5178. height: math.unit(1000, "feet")
  5179. },
  5180. {
  5181. name: "Megamacro",
  5182. height: math.unit(5, "miles")
  5183. },
  5184. {
  5185. name: "Gigamacro",
  5186. height: math.unit(5000, "miles")
  5187. },
  5188. ]
  5189. ))
  5190. characterMakers.push(() => makeCharacter(
  5191. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5192. {
  5193. front: {
  5194. height: math.unit(6, "feet"),
  5195. weight: math.unit(210, "lbs"),
  5196. name: "Front",
  5197. image: {
  5198. source: "./media/characters/cimmaron/front-sfw.svg",
  5199. extra: 701 / 676,
  5200. bottom: 0.046
  5201. }
  5202. },
  5203. back: {
  5204. height: math.unit(6, "feet"),
  5205. weight: math.unit(210, "lbs"),
  5206. name: "Back",
  5207. image: {
  5208. source: "./media/characters/cimmaron/back-sfw.svg",
  5209. extra: 701 / 676,
  5210. bottom: 0.046
  5211. }
  5212. },
  5213. frontNsfw: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(210, "lbs"),
  5216. name: "Front (NSFW)",
  5217. image: {
  5218. source: "./media/characters/cimmaron/front-nsfw.svg",
  5219. extra: 701 / 676,
  5220. bottom: 0.046
  5221. }
  5222. },
  5223. backNsfw: {
  5224. height: math.unit(6, "feet"),
  5225. weight: math.unit(210, "lbs"),
  5226. name: "Back (NSFW)",
  5227. image: {
  5228. source: "./media/characters/cimmaron/back-nsfw.svg",
  5229. extra: 701 / 676,
  5230. bottom: 0.046
  5231. }
  5232. },
  5233. dick: {
  5234. height: math.unit(1.714, "feet"),
  5235. name: "Dick",
  5236. image: {
  5237. source: "./media/characters/cimmaron/dick.svg"
  5238. }
  5239. },
  5240. },
  5241. [
  5242. {
  5243. name: "Normal",
  5244. height: math.unit(6, "feet"),
  5245. default: true
  5246. },
  5247. {
  5248. name: "Macro Mayor",
  5249. height: math.unit(350, "meters")
  5250. },
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5255. {
  5256. front: {
  5257. height: math.unit(6, "feet"),
  5258. weight: math.unit(200, "lbs"),
  5259. name: "Front",
  5260. image: {
  5261. source: "./media/characters/akari/front.svg",
  5262. extra: 962 / 901,
  5263. bottom: 0.04
  5264. }
  5265. }
  5266. },
  5267. [
  5268. {
  5269. name: "Micro",
  5270. height: math.unit(5, "inches"),
  5271. default: true
  5272. },
  5273. {
  5274. name: "Normal",
  5275. height: math.unit(7, "feet")
  5276. },
  5277. ]
  5278. ))
  5279. characterMakers.push(() => makeCharacter(
  5280. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5281. {
  5282. front: {
  5283. height: math.unit(6, "feet"),
  5284. weight: math.unit(140, "lbs"),
  5285. name: "Front",
  5286. image: {
  5287. source: "./media/characters/cynosura/front.svg",
  5288. extra: 896 / 847
  5289. }
  5290. },
  5291. back: {
  5292. height: math.unit(6, "feet"),
  5293. weight: math.unit(140, "lbs"),
  5294. name: "Back",
  5295. image: {
  5296. source: "./media/characters/cynosura/back.svg",
  5297. extra: 1365 / 1250
  5298. }
  5299. },
  5300. },
  5301. [
  5302. {
  5303. name: "Micro",
  5304. height: math.unit(4, "inches")
  5305. },
  5306. {
  5307. name: "Normal",
  5308. height: math.unit(5.75, "feet"),
  5309. default: true
  5310. },
  5311. {
  5312. name: "Tall",
  5313. height: math.unit(10, "feet")
  5314. },
  5315. {
  5316. name: "Big",
  5317. height: math.unit(20, "feet")
  5318. },
  5319. {
  5320. name: "Macro",
  5321. height: math.unit(50, "feet")
  5322. },
  5323. ]
  5324. ))
  5325. characterMakers.push(() => makeCharacter(
  5326. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5327. {
  5328. front: {
  5329. height: math.unit(6, "feet"),
  5330. weight: math.unit(170, "lbs"),
  5331. name: "Front",
  5332. image: {
  5333. source: "./media/characters/gin/front.svg",
  5334. extra: 1.053,
  5335. bottom: 0.025
  5336. }
  5337. },
  5338. foot: {
  5339. height: math.unit(6 / 4.25, "feet"),
  5340. name: "Foot",
  5341. image: {
  5342. source: "./media/characters/gin/foot.svg"
  5343. }
  5344. },
  5345. sole: {
  5346. height: math.unit(6 / 4.40, "feet"),
  5347. name: "Sole",
  5348. image: {
  5349. source: "./media/characters/gin/sole.svg"
  5350. }
  5351. },
  5352. },
  5353. [
  5354. {
  5355. name: "Normal",
  5356. height: math.unit(13 + 2 / 12, "feet")
  5357. },
  5358. {
  5359. name: "Macro",
  5360. height: math.unit(1500, "feet")
  5361. },
  5362. {
  5363. name: "Megamacro",
  5364. height: math.unit(200, "miles"),
  5365. default: true
  5366. },
  5367. {
  5368. name: "Gigamacro",
  5369. height: math.unit(500, "megameters")
  5370. },
  5371. {
  5372. name: "Teramacro",
  5373. height: math.unit(15, "lightyears")
  5374. }
  5375. ]
  5376. ))
  5377. characterMakers.push(() => makeCharacter(
  5378. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5379. {
  5380. front: {
  5381. height: math.unit(6 + 1 / 6, "feet"),
  5382. weight: math.unit(178, "lbs"),
  5383. name: "Front",
  5384. image: {
  5385. source: "./media/characters/guy/front.svg"
  5386. }
  5387. }
  5388. },
  5389. [
  5390. {
  5391. name: "Normal",
  5392. height: math.unit(6 + 1 / 6, "feet"),
  5393. default: true
  5394. },
  5395. {
  5396. name: "Large",
  5397. height: math.unit(25 + 7 / 12, "feet")
  5398. },
  5399. {
  5400. name: "Macro",
  5401. height: math.unit(60 + 9 / 12, "feet")
  5402. },
  5403. {
  5404. name: "Macro+",
  5405. height: math.unit(246, "feet")
  5406. },
  5407. {
  5408. name: "Macro++",
  5409. height: math.unit(878, "feet")
  5410. }
  5411. ]
  5412. ))
  5413. characterMakers.push(() => makeCharacter(
  5414. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5415. {
  5416. front: {
  5417. height: math.unit(9, "feet"),
  5418. weight: math.unit(800, "lbs"),
  5419. name: "Front",
  5420. image: {
  5421. source: "./media/characters/tiberius/front.svg",
  5422. extra: 2295 / 2071
  5423. }
  5424. },
  5425. back: {
  5426. height: math.unit(9, "feet"),
  5427. weight: math.unit(800, "lbs"),
  5428. name: "Back",
  5429. image: {
  5430. source: "./media/characters/tiberius/back.svg",
  5431. extra: 2373 / 2160
  5432. }
  5433. },
  5434. },
  5435. [
  5436. {
  5437. name: "Normal",
  5438. height: math.unit(9, "feet"),
  5439. default: true
  5440. }
  5441. ]
  5442. ))
  5443. characterMakers.push(() => makeCharacter(
  5444. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5445. {
  5446. front: {
  5447. height: math.unit(6, "feet"),
  5448. weight: math.unit(600, "lbs"),
  5449. name: "Front",
  5450. image: {
  5451. source: "./media/characters/surgo/front.svg",
  5452. extra: 3591 / 2227
  5453. }
  5454. },
  5455. back: {
  5456. height: math.unit(6, "feet"),
  5457. weight: math.unit(600, "lbs"),
  5458. name: "Back",
  5459. image: {
  5460. source: "./media/characters/surgo/back.svg",
  5461. extra: 3557 / 2228
  5462. }
  5463. },
  5464. laying: {
  5465. height: math.unit(6 * 0.85, "feet"),
  5466. weight: math.unit(600, "lbs"),
  5467. name: "Laying",
  5468. image: {
  5469. source: "./media/characters/surgo/laying.svg"
  5470. }
  5471. },
  5472. },
  5473. [
  5474. {
  5475. name: "Normal",
  5476. height: math.unit(6, "feet"),
  5477. default: true
  5478. }
  5479. ]
  5480. ))
  5481. characterMakers.push(() => makeCharacter(
  5482. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5483. {
  5484. side: {
  5485. height: math.unit(6, "feet"),
  5486. weight: math.unit(150, "lbs"),
  5487. name: "Side",
  5488. image: {
  5489. source: "./media/characters/cibus/side.svg",
  5490. extra: 800 / 400
  5491. }
  5492. },
  5493. },
  5494. [
  5495. {
  5496. name: "Normal",
  5497. height: math.unit(6, "feet"),
  5498. default: true
  5499. }
  5500. ]
  5501. ))
  5502. characterMakers.push(() => makeCharacter(
  5503. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5504. {
  5505. front: {
  5506. height: math.unit(6, "feet"),
  5507. weight: math.unit(240, "lbs"),
  5508. name: "Front",
  5509. image: {
  5510. source: "./media/characters/nibbles/front.svg"
  5511. }
  5512. },
  5513. side: {
  5514. height: math.unit(6, "feet"),
  5515. weight: math.unit(240, "lbs"),
  5516. name: "Side",
  5517. image: {
  5518. source: "./media/characters/nibbles/side.svg"
  5519. }
  5520. },
  5521. },
  5522. [
  5523. {
  5524. name: "Normal",
  5525. height: math.unit(9, "feet"),
  5526. default: true
  5527. }
  5528. ]
  5529. ))
  5530. characterMakers.push(() => makeCharacter(
  5531. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5532. {
  5533. side: {
  5534. height: math.unit(5 + 1 / 6, "feet"),
  5535. weight: math.unit(130, "lbs"),
  5536. name: "Side",
  5537. image: {
  5538. source: "./media/characters/rikky/side.svg",
  5539. extra: 851 / 801
  5540. }
  5541. },
  5542. },
  5543. [
  5544. {
  5545. name: "Normal",
  5546. height: math.unit(5 + 1 / 6, "feet")
  5547. },
  5548. {
  5549. name: "Macro",
  5550. height: math.unit(152, "feet"),
  5551. default: true
  5552. },
  5553. {
  5554. name: "Megamacro",
  5555. height: math.unit(7, "miles")
  5556. }
  5557. ]
  5558. ))
  5559. characterMakers.push(() => makeCharacter(
  5560. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5561. {
  5562. side: {
  5563. height: math.unit(370, "cm"),
  5564. weight: math.unit(350, "lbs"),
  5565. name: "Side",
  5566. image: {
  5567. source: "./media/characters/malfressa/side.svg"
  5568. }
  5569. },
  5570. walking: {
  5571. height: math.unit(370, "cm"),
  5572. weight: math.unit(350, "lbs"),
  5573. name: "Walking",
  5574. image: {
  5575. source: "./media/characters/malfressa/walking.svg"
  5576. }
  5577. },
  5578. feral: {
  5579. height: math.unit(2500, "cm"),
  5580. weight: math.unit(100000, "lbs"),
  5581. name: "Feral",
  5582. image: {
  5583. source: "./media/characters/malfressa/feral.svg",
  5584. extra: 2108 / 837,
  5585. bottom: 0.02
  5586. }
  5587. },
  5588. },
  5589. [
  5590. {
  5591. name: "Normal",
  5592. height: math.unit(370, "cm")
  5593. },
  5594. {
  5595. name: "Macro",
  5596. height: math.unit(300, "meters"),
  5597. default: true
  5598. }
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(60, "kg"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/jaro/front.svg"
  5610. }
  5611. },
  5612. back: {
  5613. height: math.unit(6, "feet"),
  5614. weight: math.unit(60, "kg"),
  5615. name: "Back",
  5616. image: {
  5617. source: "./media/characters/jaro/back.svg"
  5618. }
  5619. },
  5620. },
  5621. [
  5622. {
  5623. name: "Micro",
  5624. height: math.unit(7, "inches")
  5625. },
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(5.5, "feet"),
  5629. default: true
  5630. },
  5631. {
  5632. name: "Minimacro",
  5633. height: math.unit(20, "feet")
  5634. },
  5635. {
  5636. name: "Macro",
  5637. height: math.unit(200, "meters")
  5638. }
  5639. ]
  5640. ))
  5641. characterMakers.push(() => makeCharacter(
  5642. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5643. {
  5644. front: {
  5645. height: math.unit(6, "feet"),
  5646. weight: math.unit(195, "lb"),
  5647. name: "Front",
  5648. image: {
  5649. source: "./media/characters/rogue/front.svg"
  5650. }
  5651. },
  5652. },
  5653. [
  5654. {
  5655. name: "Macro",
  5656. height: math.unit(90, "feet"),
  5657. default: true
  5658. },
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5663. {
  5664. front: {
  5665. height: math.unit(5 + 8 / 12, "feet"),
  5666. weight: math.unit(140, "lb"),
  5667. name: "Front",
  5668. image: {
  5669. source: "./media/characters/piper/front.svg",
  5670. extra: 3928 / 3681
  5671. }
  5672. },
  5673. },
  5674. [
  5675. {
  5676. name: "Micro",
  5677. height: math.unit(2, "inches")
  5678. },
  5679. {
  5680. name: "Normal",
  5681. height: math.unit(5 + 8 / 12, "feet")
  5682. },
  5683. {
  5684. name: "Macro",
  5685. height: math.unit(250, "feet"),
  5686. default: true
  5687. },
  5688. {
  5689. name: "Megamacro",
  5690. height: math.unit(7, "miles")
  5691. },
  5692. ]
  5693. ))
  5694. characterMakers.push(() => makeCharacter(
  5695. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5696. {
  5697. front: {
  5698. height: math.unit(6, "feet"),
  5699. weight: math.unit(220, "lb"),
  5700. name: "Front",
  5701. image: {
  5702. source: "./media/characters/gemini/front.svg"
  5703. }
  5704. },
  5705. back: {
  5706. height: math.unit(6, "feet"),
  5707. weight: math.unit(220, "lb"),
  5708. name: "Back",
  5709. image: {
  5710. source: "./media/characters/gemini/back.svg"
  5711. }
  5712. },
  5713. kneeling: {
  5714. height: math.unit(6 / 1.5, "feet"),
  5715. weight: math.unit(220, "lb"),
  5716. name: "Kneeling",
  5717. image: {
  5718. source: "./media/characters/gemini/kneeling.svg",
  5719. bottom: 0.02
  5720. }
  5721. },
  5722. },
  5723. [
  5724. {
  5725. name: "Macro",
  5726. height: math.unit(300, "meters"),
  5727. default: true
  5728. },
  5729. {
  5730. name: "Megamacro",
  5731. height: math.unit(6900, "meters")
  5732. },
  5733. ]
  5734. ))
  5735. characterMakers.push(() => makeCharacter(
  5736. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5737. {
  5738. anthro: {
  5739. height: math.unit(2.35, "meters"),
  5740. weight: math.unit(73, "kg"),
  5741. name: "Anthro",
  5742. image: {
  5743. source: "./media/characters/alicia/anthro.svg",
  5744. extra: 2571 / 2385,
  5745. bottom: 75 / 2648
  5746. }
  5747. },
  5748. paw: {
  5749. height: math.unit(1.32, "feet"),
  5750. name: "Paw",
  5751. image: {
  5752. source: "./media/characters/alicia/paw.svg"
  5753. }
  5754. },
  5755. feral: {
  5756. height: math.unit(1.69, "meters"),
  5757. weight: math.unit(73, "kg"),
  5758. name: "Feral",
  5759. image: {
  5760. source: "./media/characters/alicia/feral.svg",
  5761. extra: 2123 / 1715,
  5762. bottom: 222 / 2349
  5763. }
  5764. },
  5765. },
  5766. [
  5767. {
  5768. name: "Normal",
  5769. height: math.unit(2.35, "meters")
  5770. },
  5771. {
  5772. name: "Macro",
  5773. height: math.unit(60, "meters"),
  5774. default: true
  5775. },
  5776. {
  5777. name: "Megamacro",
  5778. height: math.unit(10000, "kilometers")
  5779. },
  5780. ]
  5781. ))
  5782. characterMakers.push(() => makeCharacter(
  5783. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5784. {
  5785. front: {
  5786. height: math.unit(7, "feet"),
  5787. weight: math.unit(250, "lbs"),
  5788. name: "Front",
  5789. image: {
  5790. source: "./media/characters/archy/front.svg"
  5791. }
  5792. }
  5793. },
  5794. [
  5795. {
  5796. name: "Micro",
  5797. height: math.unit(1, "inch")
  5798. },
  5799. {
  5800. name: "Shorty",
  5801. height: math.unit(5, "feet")
  5802. },
  5803. {
  5804. name: "Normal",
  5805. height: math.unit(7, "feet")
  5806. },
  5807. {
  5808. name: "Macro",
  5809. height: math.unit(600, "meters"),
  5810. default: true
  5811. },
  5812. {
  5813. name: "Megamacro",
  5814. height: math.unit(1, "mile")
  5815. },
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5820. {
  5821. front: {
  5822. height: math.unit(1.65, "meters"),
  5823. weight: math.unit(74, "kg"),
  5824. name: "Front",
  5825. image: {
  5826. source: "./media/characters/berri/front.svg",
  5827. extra: 857 / 837,
  5828. bottom: 18 / 877
  5829. }
  5830. },
  5831. bum: {
  5832. height: math.unit(1.46, "feet"),
  5833. name: "Bum",
  5834. image: {
  5835. source: "./media/characters/berri/bum.svg"
  5836. }
  5837. },
  5838. mouth: {
  5839. height: math.unit(0.44, "feet"),
  5840. name: "Mouth",
  5841. image: {
  5842. source: "./media/characters/berri/mouth.svg"
  5843. }
  5844. },
  5845. paw: {
  5846. height: math.unit(0.826, "feet"),
  5847. name: "Paw",
  5848. image: {
  5849. source: "./media/characters/berri/paw.svg"
  5850. }
  5851. },
  5852. },
  5853. [
  5854. {
  5855. name: "Normal",
  5856. height: math.unit(1.65, "meters")
  5857. },
  5858. {
  5859. name: "Macro",
  5860. height: math.unit(60, "m"),
  5861. default: true
  5862. },
  5863. {
  5864. name: "Megamacro",
  5865. height: math.unit(9.213, "km")
  5866. },
  5867. {
  5868. name: "Planet Eater",
  5869. height: math.unit(489, "megameters")
  5870. },
  5871. {
  5872. name: "Teramacro",
  5873. height: math.unit(2471635000000, "meters")
  5874. },
  5875. {
  5876. name: "Examacro",
  5877. height: math.unit(8.0624e+26, "meters")
  5878. }
  5879. ]
  5880. ))
  5881. characterMakers.push(() => makeCharacter(
  5882. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5883. {
  5884. front: {
  5885. height: math.unit(1.72, "meters"),
  5886. weight: math.unit(68, "kg"),
  5887. name: "Front",
  5888. image: {
  5889. source: "./media/characters/lexi/front.svg"
  5890. }
  5891. }
  5892. },
  5893. [
  5894. {
  5895. name: "Very Smol",
  5896. height: math.unit(10, "mm")
  5897. },
  5898. {
  5899. name: "Micro",
  5900. height: math.unit(6.8, "cm"),
  5901. default: true
  5902. },
  5903. {
  5904. name: "Normal",
  5905. height: math.unit(1.72, "m")
  5906. }
  5907. ]
  5908. ))
  5909. characterMakers.push(() => makeCharacter(
  5910. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5911. {
  5912. front: {
  5913. height: math.unit(1.69, "meters"),
  5914. weight: math.unit(68, "kg"),
  5915. name: "Front",
  5916. image: {
  5917. source: "./media/characters/martin/front.svg",
  5918. extra: 596 / 581
  5919. }
  5920. }
  5921. },
  5922. [
  5923. {
  5924. name: "Micro",
  5925. height: math.unit(6.85, "cm"),
  5926. default: true
  5927. },
  5928. {
  5929. name: "Normal",
  5930. height: math.unit(1.69, "m")
  5931. }
  5932. ]
  5933. ))
  5934. characterMakers.push(() => makeCharacter(
  5935. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5936. {
  5937. front: {
  5938. height: math.unit(1.69, "meters"),
  5939. weight: math.unit(68, "kg"),
  5940. name: "Front",
  5941. image: {
  5942. source: "./media/characters/juno/front.svg"
  5943. }
  5944. }
  5945. },
  5946. [
  5947. {
  5948. name: "Micro",
  5949. height: math.unit(7, "cm")
  5950. },
  5951. {
  5952. name: "Normal",
  5953. height: math.unit(1.89, "m")
  5954. },
  5955. {
  5956. name: "Macro",
  5957. height: math.unit(353, "meters"),
  5958. default: true
  5959. }
  5960. ]
  5961. ))
  5962. characterMakers.push(() => makeCharacter(
  5963. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5964. {
  5965. front: {
  5966. height: math.unit(1.93, "meters"),
  5967. weight: math.unit(83, "kg"),
  5968. name: "Front",
  5969. image: {
  5970. source: "./media/characters/samantha/front.svg"
  5971. }
  5972. },
  5973. frontClothed: {
  5974. height: math.unit(1.93, "meters"),
  5975. weight: math.unit(83, "kg"),
  5976. name: "Front (Clothed)",
  5977. image: {
  5978. source: "./media/characters/samantha/front-clothed.svg"
  5979. }
  5980. },
  5981. back: {
  5982. height: math.unit(1.93, "meters"),
  5983. weight: math.unit(83, "kg"),
  5984. name: "Back",
  5985. image: {
  5986. source: "./media/characters/samantha/back.svg"
  5987. }
  5988. },
  5989. },
  5990. [
  5991. {
  5992. name: "Normal",
  5993. height: math.unit(1.93, "m")
  5994. },
  5995. {
  5996. name: "Macro",
  5997. height: math.unit(74, "meters"),
  5998. default: true
  5999. },
  6000. {
  6001. name: "Macro+",
  6002. height: math.unit(223, "meters"),
  6003. },
  6004. {
  6005. name: "Megamacro",
  6006. height: math.unit(8381, "meters"),
  6007. },
  6008. {
  6009. name: "Megamacro+",
  6010. height: math.unit(12000, "kilometers")
  6011. },
  6012. ]
  6013. ))
  6014. characterMakers.push(() => makeCharacter(
  6015. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6016. {
  6017. front: {
  6018. height: math.unit(1.92, "meters"),
  6019. weight: math.unit(80, "kg"),
  6020. name: "Front",
  6021. image: {
  6022. source: "./media/characters/dr-clay/front.svg"
  6023. }
  6024. },
  6025. frontClothed: {
  6026. height: math.unit(1.92, "meters"),
  6027. weight: math.unit(80, "kg"),
  6028. name: "Front (Clothed)",
  6029. image: {
  6030. source: "./media/characters/dr-clay/front-clothed.svg"
  6031. }
  6032. }
  6033. },
  6034. [
  6035. {
  6036. name: "Normal",
  6037. height: math.unit(1.92, "m")
  6038. },
  6039. {
  6040. name: "Macro",
  6041. height: math.unit(214, "meters"),
  6042. default: true
  6043. },
  6044. {
  6045. name: "Macro+",
  6046. height: math.unit(12.237, "meters"),
  6047. },
  6048. {
  6049. name: "Megamacro",
  6050. height: math.unit(557, "megameters"),
  6051. },
  6052. {
  6053. name: "Unimaginable",
  6054. height: math.unit(120e9, "lightyears")
  6055. },
  6056. ]
  6057. ))
  6058. characterMakers.push(() => makeCharacter(
  6059. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6060. {
  6061. front: {
  6062. height: math.unit(2, "meters"),
  6063. weight: math.unit(80, "kg"),
  6064. name: "Front",
  6065. image: {
  6066. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6067. }
  6068. }
  6069. },
  6070. [
  6071. {
  6072. name: "Teramacro",
  6073. height: math.unit(500000, "lightyears"),
  6074. default: true
  6075. },
  6076. ]
  6077. ))
  6078. characterMakers.push(() => makeCharacter(
  6079. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6080. {
  6081. front: {
  6082. height: math.unit(2, "meters"),
  6083. weight: math.unit(150, "kg"),
  6084. name: "Front",
  6085. image: {
  6086. source: "./media/characters/vemus/front.svg",
  6087. extra: 2384 / 2084,
  6088. bottom: 0.0123
  6089. }
  6090. }
  6091. },
  6092. [
  6093. {
  6094. name: "Normal",
  6095. height: math.unit(3.75, "meters"),
  6096. default: true
  6097. },
  6098. {
  6099. name: "Big",
  6100. height: math.unit(8, "meters")
  6101. },
  6102. {
  6103. name: "Macro",
  6104. height: math.unit(100, "meters")
  6105. },
  6106. {
  6107. name: "Macro+",
  6108. height: math.unit(1500, "meters")
  6109. },
  6110. {
  6111. name: "Stellar",
  6112. height: math.unit(14e8, "meters")
  6113. },
  6114. ]
  6115. ))
  6116. characterMakers.push(() => makeCharacter(
  6117. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6118. {
  6119. front: {
  6120. height: math.unit(2, "meters"),
  6121. weight: math.unit(70, "kg"),
  6122. name: "Front",
  6123. image: {
  6124. source: "./media/characters/beherit/front.svg",
  6125. extra: 1408 / 1242
  6126. }
  6127. }
  6128. },
  6129. [
  6130. {
  6131. name: "Normal",
  6132. height: math.unit(6, "feet")
  6133. },
  6134. {
  6135. name: "Lorg",
  6136. height: math.unit(25, "feet"),
  6137. default: true
  6138. },
  6139. {
  6140. name: "Lorger",
  6141. height: math.unit(75, "feet")
  6142. },
  6143. {
  6144. name: "Macro",
  6145. height: math.unit(200, "meters")
  6146. },
  6147. ]
  6148. ))
  6149. characterMakers.push(() => makeCharacter(
  6150. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6151. {
  6152. front: {
  6153. height: math.unit(2, "meters"),
  6154. weight: math.unit(150, "kg"),
  6155. name: "Front",
  6156. image: {
  6157. source: "./media/characters/everett/front.svg",
  6158. extra: 2038 / 1737,
  6159. bottom: 0.03
  6160. }
  6161. },
  6162. paw: {
  6163. height: math.unit(2 / 3.6, "meters"),
  6164. name: "Paw",
  6165. image: {
  6166. source: "./media/characters/everett/paw.svg"
  6167. }
  6168. },
  6169. },
  6170. [
  6171. {
  6172. name: "Normal",
  6173. height: math.unit(15, "feet"),
  6174. default: true
  6175. },
  6176. {
  6177. name: "Lorg",
  6178. height: math.unit(70, "feet"),
  6179. default: true
  6180. },
  6181. {
  6182. name: "Lorger",
  6183. height: math.unit(250, "feet")
  6184. },
  6185. {
  6186. name: "Macro",
  6187. height: math.unit(500, "meters")
  6188. },
  6189. ]
  6190. ))
  6191. characterMakers.push(() => makeCharacter(
  6192. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6193. {
  6194. front: {
  6195. height: math.unit(2, "meters"),
  6196. weight: math.unit(86, "kg"),
  6197. name: "Front",
  6198. image: {
  6199. source: "./media/characters/rose-lion/front.svg"
  6200. }
  6201. },
  6202. bent: {
  6203. height: math.unit(2 / 1.4288, "meters"),
  6204. weight: math.unit(86, "kg"),
  6205. name: "Bent",
  6206. image: {
  6207. source: "./media/characters/rose-lion/bent.svg"
  6208. }
  6209. }
  6210. },
  6211. [
  6212. {
  6213. name: "Mini-Micro",
  6214. height: math.unit(1, "cm")
  6215. },
  6216. {
  6217. name: "Micro",
  6218. height: math.unit(3.5, "inches"),
  6219. default: true
  6220. },
  6221. {
  6222. name: "Normal",
  6223. height: math.unit(6 + 1 / 6, "feet")
  6224. },
  6225. {
  6226. name: "Mini-Macro",
  6227. height: math.unit(9 + 10 / 12, "feet")
  6228. },
  6229. ]
  6230. ))
  6231. characterMakers.push(() => makeCharacter(
  6232. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6233. {
  6234. front: {
  6235. height: math.unit(2, "meters"),
  6236. weight: math.unit(350, "lbs"),
  6237. name: "Front",
  6238. image: {
  6239. source: "./media/characters/regal/front.svg"
  6240. }
  6241. },
  6242. back: {
  6243. height: math.unit(2, "meters"),
  6244. weight: math.unit(350, "lbs"),
  6245. name: "Back",
  6246. image: {
  6247. source: "./media/characters/regal/back.svg"
  6248. }
  6249. },
  6250. },
  6251. [
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(350, "feet"),
  6255. default: true
  6256. }
  6257. ]
  6258. ))
  6259. characterMakers.push(() => makeCharacter(
  6260. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6261. {
  6262. front: {
  6263. height: math.unit(4 + 11 / 12, "feet"),
  6264. weight: math.unit(100, "lbs"),
  6265. name: "Front",
  6266. image: {
  6267. source: "./media/characters/opal/front.svg"
  6268. }
  6269. },
  6270. frontAlt: {
  6271. height: math.unit(4 + 11 / 12, "feet"),
  6272. weight: math.unit(100, "lbs"),
  6273. name: "Front (Alt)",
  6274. image: {
  6275. source: "./media/characters/opal/front-alt.svg"
  6276. }
  6277. },
  6278. },
  6279. [
  6280. {
  6281. name: "Small",
  6282. height: math.unit(4 + 11 / 12, "feet")
  6283. },
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(20, "feet"),
  6287. default: true
  6288. },
  6289. {
  6290. name: "Macro",
  6291. height: math.unit(120, "feet")
  6292. },
  6293. {
  6294. name: "Megamacro",
  6295. height: math.unit(80, "miles")
  6296. },
  6297. {
  6298. name: "True Size",
  6299. height: math.unit(100000, "lightyears")
  6300. },
  6301. ]
  6302. ))
  6303. characterMakers.push(() => makeCharacter(
  6304. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6305. {
  6306. front: {
  6307. height: math.unit(6, "feet"),
  6308. weight: math.unit(200, "lbs"),
  6309. name: "Front",
  6310. image: {
  6311. source: "./media/characters/vector-wuff/front.svg"
  6312. }
  6313. }
  6314. },
  6315. [
  6316. {
  6317. name: "Normal",
  6318. height: math.unit(2.8, "meters")
  6319. },
  6320. {
  6321. name: "Macro",
  6322. height: math.unit(450, "meters"),
  6323. default: true
  6324. },
  6325. {
  6326. name: "Megamacro",
  6327. height: math.unit(15, "kilometers")
  6328. }
  6329. ]
  6330. ))
  6331. characterMakers.push(() => makeCharacter(
  6332. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6333. {
  6334. front: {
  6335. height: math.unit(6, "feet"),
  6336. weight: math.unit(256, "lbs"),
  6337. name: "Front",
  6338. image: {
  6339. source: "./media/characters/dannik/front.svg"
  6340. }
  6341. }
  6342. },
  6343. [
  6344. {
  6345. name: "Macro",
  6346. height: math.unit(69.57, "meters"),
  6347. default: true
  6348. },
  6349. ]
  6350. ))
  6351. characterMakers.push(() => makeCharacter(
  6352. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6353. {
  6354. front: {
  6355. height: math.unit(6, "feet"),
  6356. weight: math.unit(120, "lbs"),
  6357. name: "Front",
  6358. image: {
  6359. source: "./media/characters/azura-saharah/front.svg"
  6360. }
  6361. },
  6362. back: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(120, "lbs"),
  6365. name: "Back",
  6366. image: {
  6367. source: "./media/characters/azura-saharah/back.svg"
  6368. }
  6369. },
  6370. },
  6371. [
  6372. {
  6373. name: "Macro",
  6374. height: math.unit(100, "feet"),
  6375. default: true
  6376. },
  6377. ]
  6378. ))
  6379. characterMakers.push(() => makeCharacter(
  6380. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6381. {
  6382. side: {
  6383. height: math.unit(5 + 4 / 12, "feet"),
  6384. weight: math.unit(163, "lbs"),
  6385. name: "Side",
  6386. image: {
  6387. source: "./media/characters/kennedy/side.svg"
  6388. }
  6389. }
  6390. },
  6391. [
  6392. {
  6393. name: "Standard Doggo",
  6394. height: math.unit(5 + 4 / 12, "feet")
  6395. },
  6396. {
  6397. name: "Big Doggo",
  6398. height: math.unit(25 + 3 / 12, "feet"),
  6399. default: true
  6400. },
  6401. ]
  6402. ))
  6403. characterMakers.push(() => makeCharacter(
  6404. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6405. {
  6406. front: {
  6407. height: math.unit(6, "feet"),
  6408. weight: math.unit(90, "lbs"),
  6409. name: "Front",
  6410. image: {
  6411. source: "./media/characters/odi-lunar/front.svg"
  6412. }
  6413. }
  6414. },
  6415. [
  6416. {
  6417. name: "Micro",
  6418. height: math.unit(3, "inches"),
  6419. default: true
  6420. },
  6421. {
  6422. name: "Normal",
  6423. height: math.unit(5.5, "feet")
  6424. }
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6429. {
  6430. back: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(220, "lbs"),
  6433. name: "Back",
  6434. image: {
  6435. source: "./media/characters/mandake/back.svg"
  6436. }
  6437. }
  6438. },
  6439. [
  6440. {
  6441. name: "Normal",
  6442. height: math.unit(7, "feet"),
  6443. default: true
  6444. },
  6445. {
  6446. name: "Macro",
  6447. height: math.unit(78, "feet")
  6448. },
  6449. {
  6450. name: "Macro+",
  6451. height: math.unit(300, "meters")
  6452. },
  6453. {
  6454. name: "Macro++",
  6455. height: math.unit(2400, "feet")
  6456. },
  6457. {
  6458. name: "Megamacro",
  6459. height: math.unit(5167, "meters")
  6460. },
  6461. {
  6462. name: "Gigamacro",
  6463. height: math.unit(41769, "miles")
  6464. },
  6465. ]
  6466. ))
  6467. characterMakers.push(() => makeCharacter(
  6468. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6469. {
  6470. front: {
  6471. height: math.unit(6, "feet"),
  6472. weight: math.unit(120, "lbs"),
  6473. name: "Front",
  6474. image: {
  6475. source: "./media/characters/yozey/front.svg"
  6476. }
  6477. },
  6478. frontAlt: {
  6479. height: math.unit(6, "feet"),
  6480. weight: math.unit(120, "lbs"),
  6481. name: "Front (Alt)",
  6482. image: {
  6483. source: "./media/characters/yozey/front-alt.svg"
  6484. }
  6485. },
  6486. side: {
  6487. height: math.unit(6, "feet"),
  6488. weight: math.unit(120, "lbs"),
  6489. name: "Side",
  6490. image: {
  6491. source: "./media/characters/yozey/side.svg"
  6492. }
  6493. },
  6494. },
  6495. [
  6496. {
  6497. name: "Micro",
  6498. height: math.unit(3, "inches"),
  6499. default: true
  6500. },
  6501. {
  6502. name: "Normal",
  6503. height: math.unit(6, "feet")
  6504. }
  6505. ]
  6506. ))
  6507. characterMakers.push(() => makeCharacter(
  6508. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6509. {
  6510. front: {
  6511. height: math.unit(6, "feet"),
  6512. weight: math.unit(103, "lbs"),
  6513. name: "Front",
  6514. image: {
  6515. source: "./media/characters/valeska-voss/front.svg"
  6516. }
  6517. }
  6518. },
  6519. [
  6520. {
  6521. name: "Mini-Sized Sub",
  6522. height: math.unit(3.1, "inches")
  6523. },
  6524. {
  6525. name: "Mid-Sized Sub",
  6526. height: math.unit(6.2, "inches")
  6527. },
  6528. {
  6529. name: "Full-Sized Sub",
  6530. height: math.unit(9.3, "inches")
  6531. },
  6532. {
  6533. name: "Normal",
  6534. height: math.unit(5 + 2 / 12, "foot"),
  6535. default: true
  6536. },
  6537. ]
  6538. ))
  6539. characterMakers.push(() => makeCharacter(
  6540. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6541. {
  6542. front: {
  6543. height: math.unit(6, "feet"),
  6544. weight: math.unit(160, "lbs"),
  6545. name: "Front",
  6546. image: {
  6547. source: "./media/characters/gene-zeta/front.svg",
  6548. extra: 3006/2826,
  6549. bottom: 182/3188
  6550. }
  6551. }
  6552. },
  6553. [
  6554. {
  6555. name: "Micro",
  6556. height: math.unit(6, "inches")
  6557. },
  6558. {
  6559. name: "Normal",
  6560. height: math.unit(5 + 11/12, "foot"),
  6561. default: true
  6562. },
  6563. {
  6564. name: "Macro",
  6565. height: math.unit(140, "feet")
  6566. },
  6567. {
  6568. name: "Supercharged",
  6569. height: math.unit(2500, "feet")
  6570. },
  6571. ]
  6572. ))
  6573. characterMakers.push(() => makeCharacter(
  6574. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6575. {
  6576. front: {
  6577. height: math.unit(6, "feet"),
  6578. weight: math.unit(350, "lbs"),
  6579. name: "Front",
  6580. image: {
  6581. source: "./media/characters/razinox/front.svg",
  6582. extra: 1686 / 1548,
  6583. bottom: 28.2 / 1868
  6584. }
  6585. },
  6586. back: {
  6587. height: math.unit(6, "feet"),
  6588. weight: math.unit(350, "lbs"),
  6589. name: "Back",
  6590. image: {
  6591. source: "./media/characters/razinox/back.svg",
  6592. extra: 1660 / 1590,
  6593. bottom: 15 / 1665
  6594. }
  6595. },
  6596. },
  6597. [
  6598. {
  6599. name: "Normal",
  6600. height: math.unit(10 + 8 / 12, "foot")
  6601. },
  6602. {
  6603. name: "Minimacro",
  6604. height: math.unit(15, "foot")
  6605. },
  6606. {
  6607. name: "Macro",
  6608. height: math.unit(60, "foot"),
  6609. default: true
  6610. },
  6611. {
  6612. name: "Megamacro",
  6613. height: math.unit(5, "miles")
  6614. },
  6615. {
  6616. name: "Gigamacro",
  6617. height: math.unit(6000, "miles")
  6618. },
  6619. ]
  6620. ))
  6621. characterMakers.push(() => makeCharacter(
  6622. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6623. {
  6624. front: {
  6625. height: math.unit(6, "feet"),
  6626. weight: math.unit(150, "lbs"),
  6627. name: "Front",
  6628. image: {
  6629. source: "./media/characters/cobalt/front.svg"
  6630. }
  6631. }
  6632. },
  6633. [
  6634. {
  6635. name: "Normal",
  6636. height: math.unit(8 + 1 / 12, "foot")
  6637. },
  6638. {
  6639. name: "Macro",
  6640. height: math.unit(111, "foot"),
  6641. default: true
  6642. },
  6643. {
  6644. name: "Supracosmic",
  6645. height: math.unit(1e42, "feet")
  6646. },
  6647. ]
  6648. ))
  6649. characterMakers.push(() => makeCharacter(
  6650. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6651. {
  6652. front: {
  6653. height: math.unit(6, "feet"),
  6654. weight: math.unit(140, "lbs"),
  6655. name: "Front",
  6656. image: {
  6657. source: "./media/characters/amanda/front.svg"
  6658. }
  6659. }
  6660. },
  6661. [
  6662. {
  6663. name: "Micro",
  6664. height: math.unit(5, "inches"),
  6665. default: true
  6666. },
  6667. ]
  6668. ))
  6669. characterMakers.push(() => makeCharacter(
  6670. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6671. {
  6672. front: {
  6673. height: math.unit(5.59, "feet"),
  6674. weight: math.unit(250, "lbs"),
  6675. name: "Front",
  6676. image: {
  6677. source: "./media/characters/teal/front.svg"
  6678. }
  6679. },
  6680. frontAlt: {
  6681. height: math.unit(6, "feet"),
  6682. weight: math.unit(250, "lbs"),
  6683. name: "Front (Alt)",
  6684. image: {
  6685. source: "./media/characters/teal/front-alt.svg",
  6686. bottom: 0.04,
  6687. extra: 1
  6688. }
  6689. },
  6690. },
  6691. [
  6692. {
  6693. name: "Normal",
  6694. height: math.unit(12, "feet"),
  6695. default: true
  6696. },
  6697. {
  6698. name: "Macro",
  6699. height: math.unit(300, "feet")
  6700. },
  6701. ]
  6702. ))
  6703. characterMakers.push(() => makeCharacter(
  6704. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6705. {
  6706. frontCat: {
  6707. height: math.unit(6, "feet"),
  6708. weight: math.unit(180, "lbs"),
  6709. name: "Front (Cat)",
  6710. image: {
  6711. source: "./media/characters/ravin-amulet/front-cat.svg"
  6712. }
  6713. },
  6714. frontCatAlt: {
  6715. height: math.unit(6, "feet"),
  6716. weight: math.unit(180, "lbs"),
  6717. name: "Front (Alt, Cat)",
  6718. image: {
  6719. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6720. }
  6721. },
  6722. frontWerewolf: {
  6723. height: math.unit(6 * 1.2, "feet"),
  6724. weight: math.unit(225, "lbs"),
  6725. name: "Front (Werewolf)",
  6726. image: {
  6727. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6728. }
  6729. },
  6730. backWerewolf: {
  6731. height: math.unit(6 * 1.2, "feet"),
  6732. weight: math.unit(225, "lbs"),
  6733. name: "Back (Werewolf)",
  6734. image: {
  6735. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6736. }
  6737. },
  6738. },
  6739. [
  6740. {
  6741. name: "Nano",
  6742. height: math.unit(1, "micrometer")
  6743. },
  6744. {
  6745. name: "Micro",
  6746. height: math.unit(1, "inch")
  6747. },
  6748. {
  6749. name: "Normal",
  6750. height: math.unit(6, "feet"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Macro",
  6755. height: math.unit(60, "feet")
  6756. }
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(6, "feet"),
  6764. weight: math.unit(165, "lbs"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/fluoresce/front.svg"
  6768. }
  6769. }
  6770. },
  6771. [
  6772. {
  6773. name: "Micro",
  6774. height: math.unit(6, "cm")
  6775. },
  6776. {
  6777. name: "Normal",
  6778. height: math.unit(5 + 7 / 12, "feet"),
  6779. default: true
  6780. },
  6781. {
  6782. name: "Macro",
  6783. height: math.unit(56, "feet")
  6784. },
  6785. {
  6786. name: "Megamacro",
  6787. height: math.unit(1.9, "miles")
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(9 + 6 / 12, "feet"),
  6796. weight: math.unit(523, "lbs"),
  6797. name: "Side",
  6798. image: {
  6799. source: "./media/characters/aurora/side.svg"
  6800. }
  6801. }
  6802. },
  6803. [
  6804. {
  6805. name: "Normal",
  6806. height: math.unit(9 + 6 / 12, "feet")
  6807. },
  6808. {
  6809. name: "Macro",
  6810. height: math.unit(96, "feet"),
  6811. default: true
  6812. },
  6813. {
  6814. name: "Macro+",
  6815. height: math.unit(243, "feet")
  6816. },
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6821. {
  6822. front: {
  6823. height: math.unit(194, "cm"),
  6824. weight: math.unit(90, "kg"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/ranek/front.svg"
  6828. }
  6829. },
  6830. side: {
  6831. height: math.unit(194, "cm"),
  6832. weight: math.unit(90, "kg"),
  6833. name: "Side",
  6834. image: {
  6835. source: "./media/characters/ranek/side.svg"
  6836. }
  6837. },
  6838. back: {
  6839. height: math.unit(194, "cm"),
  6840. weight: math.unit(90, "kg"),
  6841. name: "Back",
  6842. image: {
  6843. source: "./media/characters/ranek/back.svg"
  6844. }
  6845. },
  6846. feral: {
  6847. height: math.unit(30, "cm"),
  6848. weight: math.unit(1.6, "lbs"),
  6849. name: "Feral",
  6850. image: {
  6851. source: "./media/characters/ranek/feral.svg"
  6852. }
  6853. },
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(194, "cm"),
  6859. default: true
  6860. },
  6861. {
  6862. name: "Macro",
  6863. height: math.unit(100, "meters")
  6864. },
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6869. {
  6870. front: {
  6871. height: math.unit(5 + 6 / 12, "feet"),
  6872. weight: math.unit(153, "lbs"),
  6873. name: "Front",
  6874. image: {
  6875. source: "./media/characters/andrew-cooper/front.svg"
  6876. }
  6877. },
  6878. },
  6879. [
  6880. {
  6881. name: "Nano",
  6882. height: math.unit(1, "mm")
  6883. },
  6884. {
  6885. name: "Micro",
  6886. height: math.unit(2, "inches")
  6887. },
  6888. {
  6889. name: "Normal",
  6890. height: math.unit(5 + 6 / 12, "feet"),
  6891. default: true
  6892. }
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6897. {
  6898. front: {
  6899. height: math.unit(6, "feet"),
  6900. weight: math.unit(180, "lbs"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/akane-sato/front.svg",
  6904. extra: 1219 / 1140
  6905. }
  6906. },
  6907. back: {
  6908. height: math.unit(6, "feet"),
  6909. weight: math.unit(180, "lbs"),
  6910. name: "Back",
  6911. image: {
  6912. source: "./media/characters/akane-sato/back.svg",
  6913. extra: 1219 / 1170
  6914. }
  6915. },
  6916. },
  6917. [
  6918. {
  6919. name: "Normal",
  6920. height: math.unit(2.5, "meters")
  6921. },
  6922. {
  6923. name: "Macro",
  6924. height: math.unit(250, "meters"),
  6925. default: true
  6926. },
  6927. {
  6928. name: "Megamacro",
  6929. height: math.unit(25, "km")
  6930. },
  6931. ]
  6932. ))
  6933. characterMakers.push(() => makeCharacter(
  6934. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6935. {
  6936. front: {
  6937. height: math.unit(6, "feet"),
  6938. weight: math.unit(65, "kg"),
  6939. name: "Front",
  6940. image: {
  6941. source: "./media/characters/rook/front.svg",
  6942. extra: 960 / 950
  6943. }
  6944. }
  6945. },
  6946. [
  6947. {
  6948. name: "Normal",
  6949. height: math.unit(8.8, "feet")
  6950. },
  6951. {
  6952. name: "Macro",
  6953. height: math.unit(88, "feet"),
  6954. default: true
  6955. },
  6956. {
  6957. name: "Megamacro",
  6958. height: math.unit(8, "miles")
  6959. },
  6960. ]
  6961. ))
  6962. characterMakers.push(() => makeCharacter(
  6963. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6964. {
  6965. front: {
  6966. height: math.unit(12 + 2 / 12, "feet"),
  6967. weight: math.unit(808, "lbs"),
  6968. name: "Front",
  6969. image: {
  6970. source: "./media/characters/prodigy/front.svg"
  6971. }
  6972. }
  6973. },
  6974. [
  6975. {
  6976. name: "Normal",
  6977. height: math.unit(12 + 2 / 12, "feet"),
  6978. default: true
  6979. },
  6980. {
  6981. name: "Macro",
  6982. height: math.unit(143, "feet")
  6983. },
  6984. {
  6985. name: "Macro+",
  6986. height: math.unit(400, "feet")
  6987. },
  6988. ]
  6989. ))
  6990. characterMakers.push(() => makeCharacter(
  6991. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6992. {
  6993. front: {
  6994. height: math.unit(6, "feet"),
  6995. weight: math.unit(225, "lbs"),
  6996. name: "Front",
  6997. image: {
  6998. source: "./media/characters/daniel/front.svg"
  6999. }
  7000. },
  7001. leaning: {
  7002. height: math.unit(6, "feet"),
  7003. weight: math.unit(225, "lbs"),
  7004. name: "Leaning",
  7005. image: {
  7006. source: "./media/characters/daniel/leaning.svg"
  7007. }
  7008. },
  7009. },
  7010. [
  7011. {
  7012. name: "Macro",
  7013. height: math.unit(1000, "feet"),
  7014. default: true
  7015. },
  7016. ]
  7017. ))
  7018. characterMakers.push(() => makeCharacter(
  7019. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7020. {
  7021. front: {
  7022. height: math.unit(6, "feet"),
  7023. weight: math.unit(88, "lbs"),
  7024. name: "Front",
  7025. image: {
  7026. source: "./media/characters/chiros/front.svg",
  7027. extra: 306 / 226
  7028. }
  7029. },
  7030. side: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(88, "lbs"),
  7033. name: "Side",
  7034. image: {
  7035. source: "./media/characters/chiros/side.svg",
  7036. extra: 306 / 226
  7037. }
  7038. },
  7039. },
  7040. [
  7041. {
  7042. name: "Normal",
  7043. height: math.unit(6, "cm"),
  7044. default: true
  7045. },
  7046. ]
  7047. ))
  7048. characterMakers.push(() => makeCharacter(
  7049. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7050. {
  7051. front: {
  7052. height: math.unit(6, "feet"),
  7053. weight: math.unit(100, "lbs"),
  7054. name: "Front",
  7055. image: {
  7056. source: "./media/characters/selka/front.svg",
  7057. extra: 947 / 887
  7058. }
  7059. }
  7060. },
  7061. [
  7062. {
  7063. name: "Normal",
  7064. height: math.unit(5, "cm"),
  7065. default: true
  7066. },
  7067. ]
  7068. ))
  7069. characterMakers.push(() => makeCharacter(
  7070. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7071. {
  7072. front: {
  7073. height: math.unit(8 + 3 / 12, "feet"),
  7074. weight: math.unit(424, "lbs"),
  7075. name: "Front",
  7076. image: {
  7077. source: "./media/characters/verin/front.svg",
  7078. extra: 1845 / 1550
  7079. }
  7080. },
  7081. frontArmored: {
  7082. height: math.unit(8 + 3 / 12, "feet"),
  7083. weight: math.unit(424, "lbs"),
  7084. name: "Front (Armored)",
  7085. image: {
  7086. source: "./media/characters/verin/front-armor.svg",
  7087. extra: 1845 / 1550,
  7088. bottom: 0.01
  7089. }
  7090. },
  7091. back: {
  7092. height: math.unit(8 + 3 / 12, "feet"),
  7093. weight: math.unit(424, "lbs"),
  7094. name: "Back",
  7095. image: {
  7096. source: "./media/characters/verin/back.svg",
  7097. bottom: 0.1,
  7098. extra: 1
  7099. }
  7100. },
  7101. foot: {
  7102. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7103. name: "Foot",
  7104. image: {
  7105. source: "./media/characters/verin/foot.svg"
  7106. }
  7107. },
  7108. },
  7109. [
  7110. {
  7111. name: "Normal",
  7112. height: math.unit(8 + 3 / 12, "feet")
  7113. },
  7114. {
  7115. name: "Minimacro",
  7116. height: math.unit(21, "feet"),
  7117. default: true
  7118. },
  7119. {
  7120. name: "Macro",
  7121. height: math.unit(626, "feet")
  7122. },
  7123. ]
  7124. ))
  7125. characterMakers.push(() => makeCharacter(
  7126. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7127. {
  7128. front: {
  7129. height: math.unit(2.718, "meters"),
  7130. weight: math.unit(150, "lbs"),
  7131. name: "Front",
  7132. image: {
  7133. source: "./media/characters/sovrim-terraquian/front.svg"
  7134. }
  7135. },
  7136. back: {
  7137. height: math.unit(2.718, "meters"),
  7138. weight: math.unit(150, "lbs"),
  7139. name: "Back",
  7140. image: {
  7141. source: "./media/characters/sovrim-terraquian/back.svg"
  7142. }
  7143. }
  7144. },
  7145. [
  7146. {
  7147. name: "Micro",
  7148. height: math.unit(2, "inches")
  7149. },
  7150. {
  7151. name: "Small",
  7152. height: math.unit(1, "meter")
  7153. },
  7154. {
  7155. name: "Normal",
  7156. height: math.unit(Math.E, "meters"),
  7157. default: true
  7158. },
  7159. {
  7160. name: "Macro",
  7161. height: math.unit(20, "meters")
  7162. },
  7163. {
  7164. name: "Macro+",
  7165. height: math.unit(400, "meters")
  7166. },
  7167. ]
  7168. ))
  7169. characterMakers.push(() => makeCharacter(
  7170. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7171. {
  7172. front: {
  7173. height: math.unit(7, "feet"),
  7174. weight: math.unit(489, "lbs"),
  7175. name: "Front",
  7176. image: {
  7177. source: "./media/characters/reece-silvermane/front.svg",
  7178. bottom: 0.02,
  7179. extra: 1
  7180. }
  7181. },
  7182. },
  7183. [
  7184. {
  7185. name: "Macro",
  7186. height: math.unit(1.5, "miles"),
  7187. default: true
  7188. },
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7193. {
  7194. front: {
  7195. height: math.unit(6, "feet"),
  7196. weight: math.unit(78, "kg"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/kane/front.svg",
  7200. extra: 978 / 899
  7201. }
  7202. },
  7203. },
  7204. [
  7205. {
  7206. name: "Normal",
  7207. height: math.unit(2.1, "m"),
  7208. },
  7209. {
  7210. name: "Macro",
  7211. height: math.unit(1, "km"),
  7212. default: true
  7213. },
  7214. ]
  7215. ))
  7216. characterMakers.push(() => makeCharacter(
  7217. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7218. {
  7219. front: {
  7220. height: math.unit(6, "feet"),
  7221. weight: math.unit(200, "kg"),
  7222. name: "Front",
  7223. image: {
  7224. source: "./media/characters/tegon/front.svg",
  7225. bottom: 0.01,
  7226. extra: 1
  7227. }
  7228. },
  7229. },
  7230. [
  7231. {
  7232. name: "Micro",
  7233. height: math.unit(1, "inch")
  7234. },
  7235. {
  7236. name: "Normal",
  7237. height: math.unit(6 + 3 / 12, "feet"),
  7238. default: true
  7239. },
  7240. {
  7241. name: "Macro",
  7242. height: math.unit(300, "feet")
  7243. },
  7244. {
  7245. name: "Megamacro",
  7246. height: math.unit(69, "miles")
  7247. },
  7248. ]
  7249. ))
  7250. characterMakers.push(() => makeCharacter(
  7251. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7252. {
  7253. side: {
  7254. height: math.unit(6, "feet"),
  7255. weight: math.unit(2304, "lbs"),
  7256. name: "Side",
  7257. image: {
  7258. source: "./media/characters/arcturax/side.svg",
  7259. extra: 790 / 376,
  7260. bottom: 0.01
  7261. }
  7262. },
  7263. },
  7264. [
  7265. {
  7266. name: "Micro",
  7267. height: math.unit(2, "inch")
  7268. },
  7269. {
  7270. name: "Normal",
  7271. height: math.unit(6, "feet")
  7272. },
  7273. {
  7274. name: "Macro",
  7275. height: math.unit(39, "feet"),
  7276. default: true
  7277. },
  7278. {
  7279. name: "Megamacro",
  7280. height: math.unit(7, "miles")
  7281. },
  7282. ]
  7283. ))
  7284. characterMakers.push(() => makeCharacter(
  7285. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7286. {
  7287. front: {
  7288. height: math.unit(6, "feet"),
  7289. weight: math.unit(50, "lbs"),
  7290. name: "Front",
  7291. image: {
  7292. source: "./media/characters/sentri/front.svg",
  7293. extra: 1750 / 1570,
  7294. bottom: 0.025
  7295. }
  7296. },
  7297. frontAlt: {
  7298. height: math.unit(6, "feet"),
  7299. weight: math.unit(50, "lbs"),
  7300. name: "Front (Alt)",
  7301. image: {
  7302. source: "./media/characters/sentri/front-alt.svg",
  7303. extra: 1750 / 1570,
  7304. bottom: 0.025
  7305. }
  7306. },
  7307. },
  7308. [
  7309. {
  7310. name: "Normal",
  7311. height: math.unit(15, "feet"),
  7312. default: true
  7313. },
  7314. {
  7315. name: "Macro",
  7316. height: math.unit(2500, "feet")
  7317. }
  7318. ]
  7319. ))
  7320. characterMakers.push(() => makeCharacter(
  7321. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7322. {
  7323. front: {
  7324. height: math.unit(5 + 8 / 12, "feet"),
  7325. weight: math.unit(130, "lbs"),
  7326. name: "Front",
  7327. image: {
  7328. source: "./media/characters/corvin/front.svg",
  7329. extra: 1803 / 1629
  7330. }
  7331. },
  7332. frontShirt: {
  7333. height: math.unit(5 + 8 / 12, "feet"),
  7334. weight: math.unit(130, "lbs"),
  7335. name: "Front (Shirt)",
  7336. image: {
  7337. source: "./media/characters/corvin/front-shirt.svg",
  7338. extra: 1803 / 1629
  7339. }
  7340. },
  7341. frontPoncho: {
  7342. height: math.unit(5 + 8 / 12, "feet"),
  7343. weight: math.unit(130, "lbs"),
  7344. name: "Front (Poncho)",
  7345. image: {
  7346. source: "./media/characters/corvin/front-poncho.svg",
  7347. extra: 1803 / 1629
  7348. }
  7349. },
  7350. side: {
  7351. height: math.unit(5 + 8 / 12, "feet"),
  7352. weight: math.unit(130, "lbs"),
  7353. name: "Side",
  7354. image: {
  7355. source: "./media/characters/corvin/side.svg",
  7356. extra: 1012 / 945
  7357. }
  7358. },
  7359. back: {
  7360. height: math.unit(5 + 8 / 12, "feet"),
  7361. weight: math.unit(130, "lbs"),
  7362. name: "Back",
  7363. image: {
  7364. source: "./media/characters/corvin/back.svg",
  7365. extra: 1803 / 1629
  7366. }
  7367. },
  7368. },
  7369. [
  7370. {
  7371. name: "Micro",
  7372. height: math.unit(3, "inches")
  7373. },
  7374. {
  7375. name: "Normal",
  7376. height: math.unit(5 + 8 / 12, "feet")
  7377. },
  7378. {
  7379. name: "Macro",
  7380. height: math.unit(300, "feet"),
  7381. default: true
  7382. },
  7383. {
  7384. name: "Megamacro",
  7385. height: math.unit(500, "miles")
  7386. }
  7387. ]
  7388. ))
  7389. characterMakers.push(() => makeCharacter(
  7390. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7391. {
  7392. front: {
  7393. height: math.unit(6, "feet"),
  7394. weight: math.unit(135, "lbs"),
  7395. name: "Front",
  7396. image: {
  7397. source: "./media/characters/q/front.svg",
  7398. extra: 854 / 752,
  7399. bottom: 0.005
  7400. }
  7401. },
  7402. back: {
  7403. height: math.unit(6, "feet"),
  7404. weight: math.unit(130, "lbs"),
  7405. name: "Back",
  7406. image: {
  7407. source: "./media/characters/q/back.svg",
  7408. extra: 854 / 752
  7409. }
  7410. },
  7411. },
  7412. [
  7413. {
  7414. name: "Macro",
  7415. height: math.unit(90, "feet"),
  7416. default: true
  7417. },
  7418. {
  7419. name: "Extra Macro",
  7420. height: math.unit(300, "feet"),
  7421. },
  7422. {
  7423. name: "BIG WALF",
  7424. height: math.unit(750, "feet"),
  7425. },
  7426. ]
  7427. ))
  7428. characterMakers.push(() => makeCharacter(
  7429. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7430. {
  7431. front: {
  7432. height: math.unit(6, "feet"),
  7433. weight: math.unit(150, "lbs"),
  7434. name: "Front",
  7435. image: {
  7436. source: "./media/characters/carley/front.svg",
  7437. extra: 3927 / 3540,
  7438. bottom: 29.2 / 735
  7439. }
  7440. }
  7441. },
  7442. [
  7443. {
  7444. name: "Normal",
  7445. height: math.unit(6 + 3 / 12, "feet")
  7446. },
  7447. {
  7448. name: "Macro",
  7449. height: math.unit(185, "feet"),
  7450. default: true
  7451. },
  7452. {
  7453. name: "Megamacro",
  7454. height: math.unit(8, "miles"),
  7455. },
  7456. ]
  7457. ))
  7458. characterMakers.push(() => makeCharacter(
  7459. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7460. {
  7461. front: {
  7462. height: math.unit(3, "feet"),
  7463. weight: math.unit(28, "lbs"),
  7464. name: "Front",
  7465. image: {
  7466. source: "./media/characters/citrine/front.svg"
  7467. }
  7468. }
  7469. },
  7470. [
  7471. {
  7472. name: "Normal",
  7473. height: math.unit(3, "feet"),
  7474. default: true
  7475. }
  7476. ]
  7477. ))
  7478. characterMakers.push(() => makeCharacter(
  7479. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7480. {
  7481. front: {
  7482. height: math.unit(14, "feet"),
  7483. weight: math.unit(1450, "kg"),
  7484. capacity: math.unit(15, "people"),
  7485. name: "Front",
  7486. image: {
  7487. source: "./media/characters/aura-starwind/front.svg",
  7488. extra: 1455 / 1335
  7489. }
  7490. },
  7491. side: {
  7492. height: math.unit(14, "feet"),
  7493. weight: math.unit(1450, "kg"),
  7494. capacity: math.unit(15, "people"),
  7495. name: "Side",
  7496. image: {
  7497. source: "./media/characters/aura-starwind/side.svg",
  7498. extra: 1654 / 1497
  7499. }
  7500. },
  7501. taur: {
  7502. height: math.unit(18, "feet"),
  7503. weight: math.unit(5500, "kg"),
  7504. capacity: math.unit(50, "people"),
  7505. name: "Taur",
  7506. image: {
  7507. source: "./media/characters/aura-starwind/taur.svg",
  7508. extra: 1760 / 1650
  7509. }
  7510. },
  7511. feral: {
  7512. height: math.unit(46, "feet"),
  7513. weight: math.unit(25000, "kg"),
  7514. capacity: math.unit(120, "people"),
  7515. name: "Feral",
  7516. image: {
  7517. source: "./media/characters/aura-starwind/feral.svg"
  7518. }
  7519. },
  7520. },
  7521. [
  7522. {
  7523. name: "Normal",
  7524. height: math.unit(14, "feet"),
  7525. default: true
  7526. },
  7527. {
  7528. name: "Macro",
  7529. height: math.unit(50, "meters")
  7530. },
  7531. {
  7532. name: "Megamacro",
  7533. height: math.unit(5000, "meters")
  7534. },
  7535. {
  7536. name: "Gigamacro",
  7537. height: math.unit(100000, "kilometers")
  7538. },
  7539. ]
  7540. ))
  7541. characterMakers.push(() => makeCharacter(
  7542. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7543. {
  7544. front: {
  7545. height: math.unit(2 + 7 / 12, "feet"),
  7546. weight: math.unit(32, "lbs"),
  7547. name: "Front",
  7548. image: {
  7549. source: "./media/characters/rivet/front.svg",
  7550. extra: 1716 / 1658,
  7551. bottom: 0.03
  7552. }
  7553. },
  7554. foot: {
  7555. height: math.unit(0.551, "feet"),
  7556. name: "Rivet's Foot",
  7557. image: {
  7558. source: "./media/characters/rivet/foot.svg"
  7559. },
  7560. rename: true
  7561. }
  7562. },
  7563. [
  7564. {
  7565. name: "Micro",
  7566. height: math.unit(1.5, "inches"),
  7567. },
  7568. {
  7569. name: "Normal",
  7570. height: math.unit(2 + 7 / 12, "feet"),
  7571. default: true
  7572. },
  7573. {
  7574. name: "Macro",
  7575. height: math.unit(85, "feet")
  7576. },
  7577. {
  7578. name: "Megamacro",
  7579. height: math.unit(2.2, "km")
  7580. }
  7581. ]
  7582. ))
  7583. characterMakers.push(() => makeCharacter(
  7584. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7585. {
  7586. front: {
  7587. height: math.unit(5 + 9 / 12, "feet"),
  7588. weight: math.unit(150, "lbs"),
  7589. name: "Front",
  7590. image: {
  7591. source: "./media/characters/coffee/front.svg",
  7592. extra: 3666 / 3032,
  7593. bottom: 0.04
  7594. }
  7595. },
  7596. foot: {
  7597. height: math.unit(1.29, "feet"),
  7598. name: "Foot",
  7599. image: {
  7600. source: "./media/characters/coffee/foot.svg"
  7601. }
  7602. },
  7603. },
  7604. [
  7605. {
  7606. name: "Micro",
  7607. height: math.unit(2, "inches"),
  7608. },
  7609. {
  7610. name: "Normal",
  7611. height: math.unit(5 + 9 / 12, "feet"),
  7612. default: true
  7613. },
  7614. {
  7615. name: "Macro",
  7616. height: math.unit(800, "feet")
  7617. },
  7618. {
  7619. name: "Megamacro",
  7620. height: math.unit(25, "miles")
  7621. }
  7622. ]
  7623. ))
  7624. characterMakers.push(() => makeCharacter(
  7625. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7626. {
  7627. front: {
  7628. height: math.unit(6, "feet"),
  7629. weight: math.unit(200, "lbs"),
  7630. name: "Front",
  7631. image: {
  7632. source: "./media/characters/chari-gal/front.svg",
  7633. extra: 1568 / 1385,
  7634. bottom: 0.047
  7635. }
  7636. },
  7637. gigantamax: {
  7638. height: math.unit(6 * 16, "feet"),
  7639. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7640. name: "Gigantamax",
  7641. image: {
  7642. source: "./media/characters/chari-gal/gigantamax.svg",
  7643. extra: 1124 / 888,
  7644. bottom: 0.03
  7645. }
  7646. },
  7647. },
  7648. [
  7649. {
  7650. name: "Normal",
  7651. height: math.unit(5 + 7 / 12, "feet")
  7652. },
  7653. {
  7654. name: "Macro",
  7655. height: math.unit(200, "feet"),
  7656. default: true
  7657. }
  7658. ]
  7659. ))
  7660. characterMakers.push(() => makeCharacter(
  7661. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7662. {
  7663. front: {
  7664. height: math.unit(6, "feet"),
  7665. weight: math.unit(150, "lbs"),
  7666. name: "Front",
  7667. image: {
  7668. source: "./media/characters/nova/front.svg",
  7669. extra: 5000 / 4722,
  7670. bottom: 0.02
  7671. }
  7672. }
  7673. },
  7674. [
  7675. {
  7676. name: "Micro-",
  7677. height: math.unit(0.8, "inches")
  7678. },
  7679. {
  7680. name: "Micro",
  7681. height: math.unit(2, "inches"),
  7682. default: true
  7683. },
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7688. {
  7689. front: {
  7690. height: math.unit(3 + 1 / 12, "feet"),
  7691. weight: math.unit(21.7, "lbs"),
  7692. name: "Front",
  7693. image: {
  7694. source: "./media/characters/argent/front.svg",
  7695. extra: 1471 / 1331,
  7696. bottom: 100.8 / 1575.5
  7697. }
  7698. }
  7699. },
  7700. [
  7701. {
  7702. name: "Micro",
  7703. height: math.unit(2, "inches")
  7704. },
  7705. {
  7706. name: "Normal",
  7707. height: math.unit(3 + 1 / 12, "feet"),
  7708. default: true
  7709. },
  7710. {
  7711. name: "Macro",
  7712. height: math.unit(120, "feet")
  7713. },
  7714. ]
  7715. ))
  7716. characterMakers.push(() => makeCharacter(
  7717. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7718. {
  7719. lamp: {
  7720. height: math.unit(7 * 1559 / 989, "feet"),
  7721. name: "Magic Lamp",
  7722. image: {
  7723. source: "./media/characters/mira-al-cul/lamp.svg",
  7724. extra: 1617 / 1559
  7725. }
  7726. },
  7727. front: {
  7728. height: math.unit(7, "feet"),
  7729. name: "Front",
  7730. image: {
  7731. source: "./media/characters/mira-al-cul/front.svg",
  7732. extra: 1044 / 990
  7733. }
  7734. },
  7735. },
  7736. [
  7737. {
  7738. name: "Heavily Restricted",
  7739. height: math.unit(7 * 1559 / 989, "feet")
  7740. },
  7741. {
  7742. name: "Freshly Freed",
  7743. height: math.unit(50 * 1559 / 989, "feet")
  7744. },
  7745. {
  7746. name: "World Encompassing",
  7747. height: math.unit(10000 * 1559 / 989, "miles")
  7748. },
  7749. {
  7750. name: "Galactic",
  7751. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7752. },
  7753. {
  7754. name: "Palmed Universe",
  7755. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7756. default: true
  7757. },
  7758. {
  7759. name: "Multiversal Matriarch",
  7760. height: math.unit(8.87e10, "yottameters")
  7761. },
  7762. {
  7763. name: "Void Mother",
  7764. height: math.unit(3.14e110, "yottaparsecs")
  7765. },
  7766. {
  7767. name: "Toying with Transcendence",
  7768. height: math.unit(1e307, "meters")
  7769. },
  7770. ]
  7771. ))
  7772. characterMakers.push(() => makeCharacter(
  7773. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7774. {
  7775. front: {
  7776. height: math.unit(17 + 1 / 12, "feet"),
  7777. weight: math.unit(476.2 * 5, "lbs"),
  7778. name: "Front",
  7779. image: {
  7780. source: "./media/characters/kuro-shi-uchū/front.svg",
  7781. extra: 2329 / 1835,
  7782. bottom: 0.02
  7783. }
  7784. },
  7785. },
  7786. [
  7787. {
  7788. name: "Micro",
  7789. height: math.unit(2, "inches")
  7790. },
  7791. {
  7792. name: "Normal",
  7793. height: math.unit(12, "meters")
  7794. },
  7795. {
  7796. name: "Planetary",
  7797. height: math.unit(0.00929, "AU"),
  7798. default: true
  7799. },
  7800. {
  7801. name: "Universal",
  7802. height: math.unit(20, "gigaparsecs")
  7803. },
  7804. ]
  7805. ))
  7806. characterMakers.push(() => makeCharacter(
  7807. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7808. {
  7809. front: {
  7810. height: math.unit(5 + 2 / 12, "feet"),
  7811. weight: math.unit(120, "lbs"),
  7812. name: "Front",
  7813. image: {
  7814. source: "./media/characters/katherine/front.svg",
  7815. extra: 2075 / 1969
  7816. }
  7817. },
  7818. dress: {
  7819. height: math.unit(5 + 2 / 12, "feet"),
  7820. weight: math.unit(120, "lbs"),
  7821. name: "Dress",
  7822. image: {
  7823. source: "./media/characters/katherine/dress.svg",
  7824. extra: 2258 / 2064
  7825. }
  7826. },
  7827. },
  7828. [
  7829. {
  7830. name: "Micro",
  7831. height: math.unit(1, "inches"),
  7832. default: true
  7833. },
  7834. {
  7835. name: "Normal",
  7836. height: math.unit(5 + 2 / 12, "feet")
  7837. },
  7838. {
  7839. name: "Macro",
  7840. height: math.unit(100, "meters")
  7841. },
  7842. {
  7843. name: "Megamacro",
  7844. height: math.unit(80, "miles")
  7845. },
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7850. {
  7851. front: {
  7852. height: math.unit(7 + 8 / 12, "feet"),
  7853. weight: math.unit(250, "lbs"),
  7854. name: "Front",
  7855. image: {
  7856. source: "./media/characters/yevis/front.svg",
  7857. extra: 1938 / 1755
  7858. }
  7859. }
  7860. },
  7861. [
  7862. {
  7863. name: "Mortal",
  7864. height: math.unit(7 + 8 / 12, "feet")
  7865. },
  7866. {
  7867. name: "Battle",
  7868. height: math.unit(25 + 11 / 12, "feet")
  7869. },
  7870. {
  7871. name: "Wrath",
  7872. height: math.unit(1654 + 11 / 12, "feet")
  7873. },
  7874. {
  7875. name: "Planet Destroyer",
  7876. height: math.unit(12000, "miles")
  7877. },
  7878. {
  7879. name: "Galaxy Conqueror",
  7880. height: math.unit(1.45, "zettameters"),
  7881. default: true
  7882. },
  7883. {
  7884. name: "Universal War",
  7885. height: math.unit(184, "gigaparsecs")
  7886. },
  7887. {
  7888. name: "Eternity War",
  7889. height: math.unit(1.98e55, "yottaparsecs")
  7890. },
  7891. ]
  7892. ))
  7893. characterMakers.push(() => makeCharacter(
  7894. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7895. {
  7896. front: {
  7897. height: math.unit(5 + 8 / 12, "feet"),
  7898. weight: math.unit(63, "kg"),
  7899. name: "Front",
  7900. image: {
  7901. source: "./media/characters/xavier/front.svg",
  7902. extra: 944 / 883
  7903. }
  7904. },
  7905. frontStretch: {
  7906. height: math.unit(5 + 8 / 12, "feet"),
  7907. weight: math.unit(63, "kg"),
  7908. name: "Stretching",
  7909. image: {
  7910. source: "./media/characters/xavier/front-stretch.svg",
  7911. extra: 962 / 820
  7912. }
  7913. },
  7914. },
  7915. [
  7916. {
  7917. name: "Normal",
  7918. height: math.unit(5 + 8 / 12, "feet")
  7919. },
  7920. {
  7921. name: "Macro",
  7922. height: math.unit(100, "meters"),
  7923. default: true
  7924. },
  7925. {
  7926. name: "McLargeHuge",
  7927. height: math.unit(10, "miles")
  7928. },
  7929. ]
  7930. ))
  7931. characterMakers.push(() => makeCharacter(
  7932. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7933. {
  7934. front: {
  7935. height: math.unit(5 + 5 / 12, "feet"),
  7936. weight: math.unit(150, "lb"),
  7937. name: "Front",
  7938. image: {
  7939. source: "./media/characters/joshii/front.svg",
  7940. extra: 765/653,
  7941. bottom: 51/816
  7942. }
  7943. },
  7944. foot: {
  7945. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7946. name: "Foot",
  7947. image: {
  7948. source: "./media/characters/joshii/foot.svg"
  7949. }
  7950. },
  7951. },
  7952. [
  7953. {
  7954. name: "Micro",
  7955. height: math.unit(2, "inches"),
  7956. default: true
  7957. },
  7958. {
  7959. name: "Normal",
  7960. height: math.unit(5 + 5 / 12, "feet")
  7961. },
  7962. {
  7963. name: "Macro",
  7964. height: math.unit(785, "feet")
  7965. },
  7966. {
  7967. name: "Megamacro",
  7968. height: math.unit(24.5, "miles")
  7969. },
  7970. ]
  7971. ))
  7972. characterMakers.push(() => makeCharacter(
  7973. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7974. {
  7975. front: {
  7976. height: math.unit(6, "feet"),
  7977. weight: math.unit(150, "lb"),
  7978. name: "Front",
  7979. image: {
  7980. source: "./media/characters/goddess-elizabeth/front.svg",
  7981. extra: 1800 / 1525,
  7982. bottom: 0.005
  7983. }
  7984. },
  7985. foot: {
  7986. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7987. name: "Foot",
  7988. image: {
  7989. source: "./media/characters/goddess-elizabeth/foot.svg"
  7990. }
  7991. },
  7992. mouth: {
  7993. height: math.unit(6, "feet"),
  7994. name: "Mouth",
  7995. image: {
  7996. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7997. }
  7998. },
  7999. },
  8000. [
  8001. {
  8002. name: "Micro",
  8003. height: math.unit(12, "feet")
  8004. },
  8005. {
  8006. name: "Normal",
  8007. height: math.unit(80, "miles"),
  8008. default: true
  8009. },
  8010. {
  8011. name: "Macro",
  8012. height: math.unit(15000, "parsecs")
  8013. },
  8014. ]
  8015. ))
  8016. characterMakers.push(() => makeCharacter(
  8017. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8018. {
  8019. front: {
  8020. height: math.unit(5 + 9 / 12, "feet"),
  8021. weight: math.unit(144, "lb"),
  8022. name: "Front",
  8023. image: {
  8024. source: "./media/characters/kara/front.svg"
  8025. }
  8026. },
  8027. feet: {
  8028. height: math.unit(6 / 6.765, "feet"),
  8029. name: "Kara's Feet",
  8030. rename: true,
  8031. image: {
  8032. source: "./media/characters/kara/feet.svg"
  8033. }
  8034. },
  8035. },
  8036. [
  8037. {
  8038. name: "Normal",
  8039. height: math.unit(5 + 9 / 12, "feet")
  8040. },
  8041. {
  8042. name: "Macro",
  8043. height: math.unit(174, "feet"),
  8044. default: true
  8045. },
  8046. ]
  8047. ))
  8048. characterMakers.push(() => makeCharacter(
  8049. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8050. {
  8051. front: {
  8052. height: math.unit(18, "feet"),
  8053. weight: math.unit(4050, "lb"),
  8054. name: "Front",
  8055. image: {
  8056. source: "./media/characters/tyrone/front.svg",
  8057. extra: 2520 / 2402,
  8058. bottom: 0.025
  8059. }
  8060. },
  8061. },
  8062. [
  8063. {
  8064. name: "Normal",
  8065. height: math.unit(18, "feet"),
  8066. default: true
  8067. },
  8068. {
  8069. name: "Macro",
  8070. height: math.unit(300, "feet")
  8071. },
  8072. ]
  8073. ))
  8074. characterMakers.push(() => makeCharacter(
  8075. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8076. {
  8077. front: {
  8078. height: math.unit(7 + 8 / 12, "feet"),
  8079. weight: math.unit(120, "lb"),
  8080. name: "Front",
  8081. image: {
  8082. source: "./media/characters/danny/front.svg",
  8083. extra: 1490 / 1350
  8084. }
  8085. },
  8086. back: {
  8087. height: math.unit(7 + 8 / 12, "feet"),
  8088. weight: math.unit(120, "lb"),
  8089. name: "Back",
  8090. image: {
  8091. source: "./media/characters/danny/back.svg",
  8092. extra: 1490 / 1350
  8093. }
  8094. },
  8095. },
  8096. [
  8097. {
  8098. name: "Normal",
  8099. height: math.unit(7 + 8 / 12, "feet"),
  8100. default: true
  8101. },
  8102. ]
  8103. ))
  8104. characterMakers.push(() => makeCharacter(
  8105. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8106. {
  8107. front: {
  8108. height: math.unit(3.5, "inches"),
  8109. weight: math.unit(19, "grams"),
  8110. name: "Front",
  8111. image: {
  8112. source: "./media/characters/mallow/front.svg",
  8113. extra: 471 / 431
  8114. }
  8115. },
  8116. back: {
  8117. height: math.unit(3.5, "inches"),
  8118. weight: math.unit(19, "grams"),
  8119. name: "Back",
  8120. image: {
  8121. source: "./media/characters/mallow/back.svg",
  8122. extra: 471 / 431
  8123. }
  8124. },
  8125. },
  8126. [
  8127. {
  8128. name: "Normal",
  8129. height: math.unit(3.5, "inches"),
  8130. default: true
  8131. },
  8132. ]
  8133. ))
  8134. characterMakers.push(() => makeCharacter(
  8135. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8136. {
  8137. front: {
  8138. height: math.unit(9, "feet"),
  8139. weight: math.unit(230, "kg"),
  8140. name: "Front",
  8141. image: {
  8142. source: "./media/characters/starry-aqua/front.svg"
  8143. }
  8144. },
  8145. back: {
  8146. height: math.unit(9, "feet"),
  8147. weight: math.unit(230, "kg"),
  8148. name: "Back",
  8149. image: {
  8150. source: "./media/characters/starry-aqua/back.svg"
  8151. }
  8152. },
  8153. hand: {
  8154. height: math.unit(9 * 0.1168, "feet"),
  8155. name: "Hand",
  8156. image: {
  8157. source: "./media/characters/starry-aqua/hand.svg"
  8158. }
  8159. },
  8160. foot: {
  8161. height: math.unit(9 * 0.18, "feet"),
  8162. name: "Foot",
  8163. image: {
  8164. source: "./media/characters/starry-aqua/foot.svg"
  8165. }
  8166. }
  8167. },
  8168. [
  8169. {
  8170. name: "Micro",
  8171. height: math.unit(3, "inches")
  8172. },
  8173. {
  8174. name: "Normal",
  8175. height: math.unit(9, "feet")
  8176. },
  8177. {
  8178. name: "Macro",
  8179. height: math.unit(300, "feet"),
  8180. default: true
  8181. },
  8182. {
  8183. name: "Megamacro",
  8184. height: math.unit(3200, "feet")
  8185. }
  8186. ]
  8187. ))
  8188. characterMakers.push(() => makeCharacter(
  8189. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8190. {
  8191. front: {
  8192. height: math.unit(6, "feet"),
  8193. weight: math.unit(230, "lb"),
  8194. name: "Front",
  8195. image: {
  8196. source: "./media/characters/luka/front.svg",
  8197. extra: 1,
  8198. bottom: 0.025
  8199. }
  8200. },
  8201. },
  8202. [
  8203. {
  8204. name: "Normal",
  8205. height: math.unit(12 + 8 / 12, "feet"),
  8206. default: true
  8207. },
  8208. {
  8209. name: "Minimacro",
  8210. height: math.unit(20, "feet")
  8211. },
  8212. {
  8213. name: "Macro",
  8214. height: math.unit(250, "feet")
  8215. },
  8216. {
  8217. name: "Megamacro",
  8218. height: math.unit(5, "miles")
  8219. },
  8220. {
  8221. name: "Gigamacro",
  8222. height: math.unit(8000, "miles")
  8223. },
  8224. ]
  8225. ))
  8226. characterMakers.push(() => makeCharacter(
  8227. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8228. {
  8229. front: {
  8230. height: math.unit(6, "feet"),
  8231. weight: math.unit(150, "lb"),
  8232. name: "Front",
  8233. image: {
  8234. source: "./media/characters/natalie-nightring/front.svg",
  8235. extra: 1,
  8236. bottom: 0.06
  8237. }
  8238. },
  8239. },
  8240. [
  8241. {
  8242. name: "Uh Oh",
  8243. height: math.unit(0.1, "mm")
  8244. },
  8245. {
  8246. name: "Small",
  8247. height: math.unit(3, "inches")
  8248. },
  8249. {
  8250. name: "Human Scale",
  8251. height: math.unit(6, "feet")
  8252. },
  8253. {
  8254. name: "Librarian",
  8255. height: math.unit(50, "feet"),
  8256. default: true
  8257. },
  8258. {
  8259. name: "Immense",
  8260. height: math.unit(200, "miles")
  8261. },
  8262. ]
  8263. ))
  8264. characterMakers.push(() => makeCharacter(
  8265. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8266. {
  8267. front: {
  8268. height: math.unit(6, "feet"),
  8269. weight: math.unit(180, "lbs"),
  8270. name: "Front",
  8271. image: {
  8272. source: "./media/characters/danni-rosie/front.svg",
  8273. extra: 1260 / 1128,
  8274. bottom: 0.022
  8275. }
  8276. },
  8277. },
  8278. [
  8279. {
  8280. name: "Micro",
  8281. height: math.unit(2, "inches"),
  8282. default: true
  8283. },
  8284. ]
  8285. ))
  8286. characterMakers.push(() => makeCharacter(
  8287. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8288. {
  8289. front: {
  8290. height: math.unit(5 + 9 / 12, "feet"),
  8291. weight: math.unit(220, "lb"),
  8292. name: "Front",
  8293. image: {
  8294. source: "./media/characters/samantha-kruse/front.svg",
  8295. extra: (985 / 935),
  8296. bottom: 0.03
  8297. }
  8298. },
  8299. frontUndressed: {
  8300. height: math.unit(5 + 9 / 12, "feet"),
  8301. weight: math.unit(220, "lb"),
  8302. name: "Front (Undressed)",
  8303. image: {
  8304. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8305. extra: (973 / 923),
  8306. bottom: 0.025
  8307. }
  8308. },
  8309. fat: {
  8310. height: math.unit(5 + 9 / 12, "feet"),
  8311. weight: math.unit(900, "lb"),
  8312. name: "Front (Fat)",
  8313. image: {
  8314. source: "./media/characters/samantha-kruse/fat.svg",
  8315. extra: 2688 / 2561
  8316. }
  8317. },
  8318. },
  8319. [
  8320. {
  8321. name: "Normal",
  8322. height: math.unit(5 + 9 / 12, "feet"),
  8323. default: true
  8324. }
  8325. ]
  8326. ))
  8327. characterMakers.push(() => makeCharacter(
  8328. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8329. {
  8330. back: {
  8331. height: math.unit(5 + 4 / 12, "feet"),
  8332. weight: math.unit(4963, "lb"),
  8333. name: "Back",
  8334. image: {
  8335. source: "./media/characters/amelia-rosie/back.svg",
  8336. extra: 1113 / 963,
  8337. bottom: 0.01
  8338. }
  8339. },
  8340. },
  8341. [
  8342. {
  8343. name: "Level 0",
  8344. height: math.unit(5 + 4 / 12, "feet")
  8345. },
  8346. {
  8347. name: "Level 1",
  8348. height: math.unit(164597, "feet"),
  8349. default: true
  8350. },
  8351. {
  8352. name: "Level 2",
  8353. height: math.unit(956243, "miles")
  8354. },
  8355. {
  8356. name: "Level 3",
  8357. height: math.unit(29421709423, "miles")
  8358. },
  8359. {
  8360. name: "Level 4",
  8361. height: math.unit(154, "lightyears")
  8362. },
  8363. {
  8364. name: "Level 5",
  8365. height: math.unit(4738272, "lightyears")
  8366. },
  8367. {
  8368. name: "Level 6",
  8369. height: math.unit(145787152896, "lightyears")
  8370. },
  8371. ]
  8372. ))
  8373. characterMakers.push(() => makeCharacter(
  8374. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8375. {
  8376. front: {
  8377. height: math.unit(5 + 11 / 12, "feet"),
  8378. weight: math.unit(65, "kg"),
  8379. name: "Front",
  8380. image: {
  8381. source: "./media/characters/rook-kitara/front.svg",
  8382. extra: 1347 / 1274,
  8383. bottom: 0.005
  8384. }
  8385. },
  8386. },
  8387. [
  8388. {
  8389. name: "Totally Unfair",
  8390. height: math.unit(1.8, "mm")
  8391. },
  8392. {
  8393. name: "Lap Rookie",
  8394. height: math.unit(1.4, "feet")
  8395. },
  8396. {
  8397. name: "Normal",
  8398. height: math.unit(5 + 11 / 12, "feet"),
  8399. default: true
  8400. },
  8401. {
  8402. name: "How Did This Happen",
  8403. height: math.unit(80, "miles")
  8404. }
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8409. {
  8410. front: {
  8411. height: math.unit(7, "feet"),
  8412. weight: math.unit(300, "lb"),
  8413. name: "Front",
  8414. image: {
  8415. source: "./media/characters/pisces/front.svg",
  8416. extra: 2255 / 2115,
  8417. bottom: 0.03
  8418. }
  8419. },
  8420. back: {
  8421. height: math.unit(7, "feet"),
  8422. weight: math.unit(300, "lb"),
  8423. name: "Back",
  8424. image: {
  8425. source: "./media/characters/pisces/back.svg",
  8426. extra: 2146 / 2055,
  8427. bottom: 0.04
  8428. }
  8429. },
  8430. },
  8431. [
  8432. {
  8433. name: "Normal",
  8434. height: math.unit(7, "feet"),
  8435. default: true
  8436. },
  8437. {
  8438. name: "Swimming Pool",
  8439. height: math.unit(12.2, "meters")
  8440. },
  8441. {
  8442. name: "Olympic Swimming Pool",
  8443. height: math.unit(56.3, "meters")
  8444. },
  8445. {
  8446. name: "Lake Superior",
  8447. height: math.unit(93900, "meters")
  8448. },
  8449. {
  8450. name: "Mediterranean Sea",
  8451. height: math.unit(644457, "meters")
  8452. },
  8453. {
  8454. name: "World's Oceans",
  8455. height: math.unit(4567491, "meters")
  8456. },
  8457. ]
  8458. ))
  8459. characterMakers.push(() => makeCharacter(
  8460. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8461. {
  8462. front: {
  8463. height: math.unit(2.3, "meters"),
  8464. weight: math.unit(120, "kg"),
  8465. name: "Front",
  8466. image: {
  8467. source: "./media/characters/zelas/front.svg"
  8468. }
  8469. },
  8470. side: {
  8471. height: math.unit(2.3, "meters"),
  8472. weight: math.unit(120, "kg"),
  8473. name: "Side",
  8474. image: {
  8475. source: "./media/characters/zelas/side.svg"
  8476. }
  8477. },
  8478. back: {
  8479. height: math.unit(2.3, "meters"),
  8480. weight: math.unit(120, "kg"),
  8481. name: "Back",
  8482. image: {
  8483. source: "./media/characters/zelas/back.svg"
  8484. }
  8485. },
  8486. foot: {
  8487. height: math.unit(1.116, "feet"),
  8488. name: "Foot",
  8489. image: {
  8490. source: "./media/characters/zelas/foot.svg"
  8491. }
  8492. },
  8493. },
  8494. [
  8495. {
  8496. name: "Normal",
  8497. height: math.unit(2.3, "meters")
  8498. },
  8499. {
  8500. name: "Macro",
  8501. height: math.unit(30, "meters"),
  8502. default: true
  8503. },
  8504. ]
  8505. ))
  8506. characterMakers.push(() => makeCharacter(
  8507. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8508. {
  8509. front: {
  8510. height: math.unit(1, "inch"),
  8511. weight: math.unit(0.21, "grams"),
  8512. name: "Front",
  8513. image: {
  8514. source: "./media/characters/talbot/front.svg",
  8515. extra: 594 / 544
  8516. }
  8517. },
  8518. },
  8519. [
  8520. {
  8521. name: "Micro",
  8522. height: math.unit(1, "inch"),
  8523. default: true
  8524. },
  8525. ]
  8526. ))
  8527. characterMakers.push(() => makeCharacter(
  8528. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8529. {
  8530. front: {
  8531. height: math.unit(3 + 3 / 12, "feet"),
  8532. weight: math.unit(51.8, "lb"),
  8533. name: "Front",
  8534. image: {
  8535. source: "./media/characters/fliss/front.svg",
  8536. extra: 840 / 640
  8537. }
  8538. },
  8539. },
  8540. [
  8541. {
  8542. name: "Teeny Tiny",
  8543. height: math.unit(1, "mm")
  8544. },
  8545. {
  8546. name: "Small",
  8547. height: math.unit(1, "inch"),
  8548. default: true
  8549. },
  8550. {
  8551. name: "Standard Sylveon",
  8552. height: math.unit(3 + 3 / 12, "feet")
  8553. },
  8554. {
  8555. name: "Large Nuisance",
  8556. height: math.unit(33, "feet")
  8557. },
  8558. {
  8559. name: "City Filler",
  8560. height: math.unit(3000, "feet")
  8561. },
  8562. {
  8563. name: "New Horizon",
  8564. height: math.unit(6000, "miles")
  8565. },
  8566. ]
  8567. ))
  8568. characterMakers.push(() => makeCharacter(
  8569. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8570. {
  8571. front: {
  8572. height: math.unit(5, "cm"),
  8573. weight: math.unit(1.94, "g"),
  8574. name: "Front",
  8575. image: {
  8576. source: "./media/characters/fleta/front.svg",
  8577. extra: 835 / 803
  8578. }
  8579. },
  8580. back: {
  8581. height: math.unit(5, "cm"),
  8582. weight: math.unit(1.94, "g"),
  8583. name: "Back",
  8584. image: {
  8585. source: "./media/characters/fleta/back.svg",
  8586. extra: 835 / 803
  8587. }
  8588. },
  8589. },
  8590. [
  8591. {
  8592. name: "Micro",
  8593. height: math.unit(5, "cm"),
  8594. default: true
  8595. },
  8596. ]
  8597. ))
  8598. characterMakers.push(() => makeCharacter(
  8599. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8600. {
  8601. front: {
  8602. height: math.unit(6, "feet"),
  8603. weight: math.unit(225, "lb"),
  8604. name: "Front",
  8605. image: {
  8606. source: "./media/characters/dominic/front.svg",
  8607. extra: 1770 / 1620,
  8608. bottom: 0.025
  8609. }
  8610. },
  8611. back: {
  8612. height: math.unit(6, "feet"),
  8613. weight: math.unit(225, "lb"),
  8614. name: "Back",
  8615. image: {
  8616. source: "./media/characters/dominic/back.svg",
  8617. extra: 1745 / 1620,
  8618. bottom: 0.065
  8619. }
  8620. },
  8621. },
  8622. [
  8623. {
  8624. name: "Nano",
  8625. height: math.unit(0.1, "mm")
  8626. },
  8627. {
  8628. name: "Micro-",
  8629. height: math.unit(1, "mm")
  8630. },
  8631. {
  8632. name: "Micro",
  8633. height: math.unit(4, "inches")
  8634. },
  8635. {
  8636. name: "Normal",
  8637. height: math.unit(6 + 4 / 12, "feet"),
  8638. default: true
  8639. },
  8640. {
  8641. name: "Macro",
  8642. height: math.unit(115, "feet")
  8643. },
  8644. {
  8645. name: "Macro+",
  8646. height: math.unit(955, "feet")
  8647. },
  8648. {
  8649. name: "Megamacro",
  8650. height: math.unit(8990, "feet")
  8651. },
  8652. {
  8653. name: "Gigmacro",
  8654. height: math.unit(9310, "miles")
  8655. },
  8656. {
  8657. name: "Teramacro",
  8658. height: math.unit(1567005010, "miles")
  8659. },
  8660. {
  8661. name: "Examacro",
  8662. height: math.unit(1425, "parsecs")
  8663. },
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8668. {
  8669. front: {
  8670. height: math.unit(400, "feet"),
  8671. weight: math.unit(44444444, "lb"),
  8672. name: "Front",
  8673. image: {
  8674. source: "./media/characters/major-colonel/front.svg"
  8675. }
  8676. },
  8677. back: {
  8678. height: math.unit(400, "feet"),
  8679. weight: math.unit(44444444, "lb"),
  8680. name: "Back",
  8681. image: {
  8682. source: "./media/characters/major-colonel/back.svg"
  8683. }
  8684. },
  8685. },
  8686. [
  8687. {
  8688. name: "Macro",
  8689. height: math.unit(400, "feet"),
  8690. default: true
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8696. {
  8697. catFront: {
  8698. height: math.unit(6, "feet"),
  8699. weight: math.unit(120, "lb"),
  8700. name: "Front (Cat Side)",
  8701. image: {
  8702. source: "./media/characters/axel-lycan/cat-front.svg",
  8703. extra: 430 / 402,
  8704. bottom: 43 / 472.35
  8705. }
  8706. },
  8707. catBack: {
  8708. height: math.unit(6, "feet"),
  8709. weight: math.unit(120, "lb"),
  8710. name: "Back (Cat Side)",
  8711. image: {
  8712. source: "./media/characters/axel-lycan/cat-back.svg",
  8713. extra: 447 / 419,
  8714. bottom: 23.3 / 469
  8715. }
  8716. },
  8717. wolfFront: {
  8718. height: math.unit(6, "feet"),
  8719. weight: math.unit(120, "lb"),
  8720. name: "Front (Wolf Side)",
  8721. image: {
  8722. source: "./media/characters/axel-lycan/wolf-front.svg",
  8723. extra: 485 / 456,
  8724. bottom: 19 / 504
  8725. }
  8726. },
  8727. wolfBack: {
  8728. height: math.unit(6, "feet"),
  8729. weight: math.unit(120, "lb"),
  8730. name: "Back (Wolf Side)",
  8731. image: {
  8732. source: "./media/characters/axel-lycan/wolf-back.svg",
  8733. extra: 475 / 438,
  8734. bottom: 39.2 / 514
  8735. }
  8736. },
  8737. },
  8738. [
  8739. {
  8740. name: "Macro",
  8741. height: math.unit(1, "km"),
  8742. default: true
  8743. },
  8744. ]
  8745. ))
  8746. characterMakers.push(() => makeCharacter(
  8747. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8748. {
  8749. front: {
  8750. height: math.unit(5 + 9 / 12, "feet"),
  8751. weight: math.unit(175, "lb"),
  8752. name: "Front",
  8753. image: {
  8754. source: "./media/characters/vanrel-hyena/front.svg",
  8755. extra: 1086 / 1010,
  8756. bottom: 0.04
  8757. }
  8758. },
  8759. },
  8760. [
  8761. {
  8762. name: "Normal",
  8763. height: math.unit(5 + 9 / 12, "feet"),
  8764. default: true
  8765. },
  8766. ]
  8767. ))
  8768. characterMakers.push(() => makeCharacter(
  8769. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8770. {
  8771. front: {
  8772. height: math.unit(6, "feet"),
  8773. weight: math.unit(103, "lb"),
  8774. name: "Front",
  8775. image: {
  8776. source: "./media/characters/abbott-absol/front.svg",
  8777. extra: 2010 / 1842
  8778. }
  8779. },
  8780. },
  8781. [
  8782. {
  8783. name: "Megamicro",
  8784. height: math.unit(0.1, "mm")
  8785. },
  8786. {
  8787. name: "Micro",
  8788. height: math.unit(1, "inch")
  8789. },
  8790. {
  8791. name: "Normal",
  8792. height: math.unit(6, "feet"),
  8793. default: true
  8794. },
  8795. ]
  8796. ))
  8797. characterMakers.push(() => makeCharacter(
  8798. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8799. {
  8800. front: {
  8801. height: math.unit(6, "feet"),
  8802. weight: math.unit(264, "lb"),
  8803. name: "Front",
  8804. image: {
  8805. source: "./media/characters/hector/front.svg",
  8806. extra: 2280 / 2130,
  8807. bottom: 0.07
  8808. }
  8809. },
  8810. },
  8811. [
  8812. {
  8813. name: "Normal",
  8814. height: math.unit(12.25, "foot"),
  8815. default: true
  8816. },
  8817. {
  8818. name: "Macro",
  8819. height: math.unit(160, "feet")
  8820. },
  8821. ]
  8822. ))
  8823. characterMakers.push(() => makeCharacter(
  8824. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8825. {
  8826. front: {
  8827. height: math.unit(6, "feet"),
  8828. weight: math.unit(150, "lb"),
  8829. name: "Front",
  8830. image: {
  8831. source: "./media/characters/sal/front.svg",
  8832. extra: 1846 / 1699,
  8833. bottom: 0.04
  8834. }
  8835. },
  8836. },
  8837. [
  8838. {
  8839. name: "Megamacro",
  8840. height: math.unit(10, "miles"),
  8841. default: true
  8842. },
  8843. ]
  8844. ))
  8845. characterMakers.push(() => makeCharacter(
  8846. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8847. {
  8848. front: {
  8849. height: math.unit(3, "meters"),
  8850. weight: math.unit(450, "kg"),
  8851. name: "front",
  8852. image: {
  8853. source: "./media/characters/ranger/front.svg",
  8854. extra: 2401 / 2243,
  8855. bottom: 0.05
  8856. }
  8857. },
  8858. },
  8859. [
  8860. {
  8861. name: "Normal",
  8862. height: math.unit(3, "meters"),
  8863. default: true
  8864. },
  8865. ]
  8866. ))
  8867. characterMakers.push(() => makeCharacter(
  8868. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8869. {
  8870. front: {
  8871. height: math.unit(14, "feet"),
  8872. weight: math.unit(800, "kg"),
  8873. name: "Front",
  8874. image: {
  8875. source: "./media/characters/theresa/front.svg",
  8876. extra: 3575 / 3346,
  8877. bottom: 0.03
  8878. }
  8879. },
  8880. },
  8881. [
  8882. {
  8883. name: "Normal",
  8884. height: math.unit(14, "feet"),
  8885. default: true
  8886. },
  8887. ]
  8888. ))
  8889. characterMakers.push(() => makeCharacter(
  8890. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8891. {
  8892. front: {
  8893. height: math.unit(6, "feet"),
  8894. weight: math.unit(3, "kg"),
  8895. name: "Front",
  8896. image: {
  8897. source: "./media/characters/ine/front.svg",
  8898. extra: 678 / 539,
  8899. bottom: 0.023
  8900. }
  8901. },
  8902. },
  8903. [
  8904. {
  8905. name: "Normal",
  8906. height: math.unit(2.265, "feet"),
  8907. default: true
  8908. },
  8909. ]
  8910. ))
  8911. characterMakers.push(() => makeCharacter(
  8912. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8913. {
  8914. front: {
  8915. height: math.unit(5, "feet"),
  8916. weight: math.unit(30, "kg"),
  8917. name: "Front",
  8918. image: {
  8919. source: "./media/characters/vial/front.svg",
  8920. extra: 1365 / 1277,
  8921. bottom: 0.04
  8922. }
  8923. },
  8924. },
  8925. [
  8926. {
  8927. name: "Normal",
  8928. height: math.unit(5, "feet"),
  8929. default: true
  8930. },
  8931. ]
  8932. ))
  8933. characterMakers.push(() => makeCharacter(
  8934. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8935. {
  8936. side: {
  8937. height: math.unit(3.4, "meters"),
  8938. weight: math.unit(1000, "lb"),
  8939. name: "Side",
  8940. image: {
  8941. source: "./media/characters/rovoska/side.svg",
  8942. extra: 4403 / 1515
  8943. }
  8944. },
  8945. },
  8946. [
  8947. {
  8948. name: "Normal",
  8949. height: math.unit(3.4, "meters"),
  8950. default: true
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(8, "feet"),
  8959. weight: math.unit(315, "lb"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/gunner-rotthbauer/front.svg"
  8963. }
  8964. },
  8965. back: {
  8966. height: math.unit(8, "feet"),
  8967. weight: math.unit(315, "lb"),
  8968. name: "Back",
  8969. image: {
  8970. source: "./media/characters/gunner-rotthbauer/back.svg"
  8971. }
  8972. },
  8973. },
  8974. [
  8975. {
  8976. name: "Micro",
  8977. height: math.unit(3.5, "inches")
  8978. },
  8979. {
  8980. name: "Normal",
  8981. height: math.unit(8, "feet"),
  8982. default: true
  8983. },
  8984. {
  8985. name: "Macro",
  8986. height: math.unit(250, "feet")
  8987. },
  8988. {
  8989. name: "Megamacro",
  8990. height: math.unit(1, "AU")
  8991. },
  8992. ]
  8993. ))
  8994. characterMakers.push(() => makeCharacter(
  8995. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8996. {
  8997. front: {
  8998. height: math.unit(5 + 5 / 12, "feet"),
  8999. weight: math.unit(140, "lb"),
  9000. name: "Front",
  9001. image: {
  9002. source: "./media/characters/allatia/front.svg",
  9003. extra: 1227 / 1180,
  9004. bottom: 0.027
  9005. }
  9006. },
  9007. },
  9008. [
  9009. {
  9010. name: "Normal",
  9011. height: math.unit(5 + 5 / 12, "feet")
  9012. },
  9013. {
  9014. name: "Macro",
  9015. height: math.unit(250, "feet"),
  9016. default: true
  9017. },
  9018. {
  9019. name: "Megamacro",
  9020. height: math.unit(8, "miles")
  9021. }
  9022. ]
  9023. ))
  9024. characterMakers.push(() => makeCharacter(
  9025. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9026. {
  9027. front: {
  9028. height: math.unit(6, "feet"),
  9029. weight: math.unit(120, "lb"),
  9030. name: "Front",
  9031. image: {
  9032. source: "./media/characters/tene/front.svg",
  9033. extra: 1728 / 1578,
  9034. bottom: 0.022
  9035. }
  9036. },
  9037. stomping: {
  9038. height: math.unit(2.025, "meters"),
  9039. weight: math.unit(120, "lb"),
  9040. name: "Stomping",
  9041. image: {
  9042. source: "./media/characters/tene/stomping.svg",
  9043. extra: 938 / 873,
  9044. bottom: 0.01
  9045. }
  9046. },
  9047. sitting: {
  9048. height: math.unit(1, "meter"),
  9049. weight: math.unit(120, "lb"),
  9050. name: "Sitting",
  9051. image: {
  9052. source: "./media/characters/tene/sitting.svg",
  9053. extra: 437 / 415,
  9054. bottom: 0.1
  9055. }
  9056. },
  9057. feral: {
  9058. height: math.unit(3.9, "feet"),
  9059. weight: math.unit(250, "lb"),
  9060. name: "Feral",
  9061. image: {
  9062. source: "./media/characters/tene/feral.svg",
  9063. extra: 717 / 458,
  9064. bottom: 0.179
  9065. }
  9066. },
  9067. },
  9068. [
  9069. {
  9070. name: "Normal",
  9071. height: math.unit(6, "feet")
  9072. },
  9073. {
  9074. name: "Macro",
  9075. height: math.unit(300, "feet"),
  9076. default: true
  9077. },
  9078. {
  9079. name: "Megamacro",
  9080. height: math.unit(5, "miles")
  9081. },
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9086. {
  9087. side: {
  9088. height: math.unit(6, "feet"),
  9089. name: "Side",
  9090. image: {
  9091. source: "./media/characters/evander/side.svg",
  9092. extra: 877 / 477
  9093. }
  9094. },
  9095. },
  9096. [
  9097. {
  9098. name: "Normal",
  9099. height: math.unit(0.83, "meters"),
  9100. default: true
  9101. },
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9106. {
  9107. front: {
  9108. height: math.unit(12, "feet"),
  9109. weight: math.unit(1000, "lb"),
  9110. name: "Front",
  9111. image: {
  9112. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9113. extra: 1762 / 1611
  9114. }
  9115. },
  9116. back: {
  9117. height: math.unit(12, "feet"),
  9118. weight: math.unit(1000, "lb"),
  9119. name: "Back",
  9120. image: {
  9121. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9122. extra: 1762 / 1611
  9123. }
  9124. },
  9125. },
  9126. [
  9127. {
  9128. name: "Normal",
  9129. height: math.unit(12, "feet"),
  9130. default: true
  9131. },
  9132. {
  9133. name: "Kaiju",
  9134. height: math.unit(150, "feet")
  9135. },
  9136. ]
  9137. ))
  9138. characterMakers.push(() => makeCharacter(
  9139. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9140. {
  9141. front: {
  9142. height: math.unit(6, "feet"),
  9143. weight: math.unit(150, "lb"),
  9144. name: "Front",
  9145. image: {
  9146. source: "./media/characters/zero-alurus/front.svg"
  9147. }
  9148. },
  9149. back: {
  9150. height: math.unit(6, "feet"),
  9151. weight: math.unit(150, "lb"),
  9152. name: "Back",
  9153. image: {
  9154. source: "./media/characters/zero-alurus/back.svg"
  9155. }
  9156. },
  9157. },
  9158. [
  9159. {
  9160. name: "Normal",
  9161. height: math.unit(5 + 10 / 12, "feet")
  9162. },
  9163. {
  9164. name: "Macro",
  9165. height: math.unit(60, "feet"),
  9166. default: true
  9167. },
  9168. {
  9169. name: "Macro+",
  9170. height: math.unit(450, "feet")
  9171. },
  9172. ]
  9173. ))
  9174. characterMakers.push(() => makeCharacter(
  9175. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9176. {
  9177. front: {
  9178. height: math.unit(6, "feet"),
  9179. weight: math.unit(200, "lb"),
  9180. name: "Front",
  9181. image: {
  9182. source: "./media/characters/mega-shi/front.svg",
  9183. extra: 1279 / 1250,
  9184. bottom: 0.02
  9185. }
  9186. },
  9187. back: {
  9188. height: math.unit(6, "feet"),
  9189. weight: math.unit(200, "lb"),
  9190. name: "Back",
  9191. image: {
  9192. source: "./media/characters/mega-shi/back.svg",
  9193. extra: 1279 / 1250,
  9194. bottom: 0.02
  9195. }
  9196. },
  9197. },
  9198. [
  9199. {
  9200. name: "Micro",
  9201. height: math.unit(16 + 6 / 12, "feet")
  9202. },
  9203. {
  9204. name: "Third Dimension",
  9205. height: math.unit(40, "meters")
  9206. },
  9207. {
  9208. name: "Normal",
  9209. height: math.unit(660, "feet"),
  9210. default: true
  9211. },
  9212. {
  9213. name: "Megamacro",
  9214. height: math.unit(10, "miles")
  9215. },
  9216. {
  9217. name: "Planetary Launch",
  9218. height: math.unit(500, "miles")
  9219. },
  9220. {
  9221. name: "Interstellar",
  9222. height: math.unit(1e9, "miles")
  9223. },
  9224. {
  9225. name: "Leaving the Universe",
  9226. height: math.unit(1, "gigaparsec")
  9227. },
  9228. {
  9229. name: "Travelling Universes",
  9230. height: math.unit(30e15, "parsecs")
  9231. },
  9232. ]
  9233. ))
  9234. characterMakers.push(() => makeCharacter(
  9235. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9236. {
  9237. front: {
  9238. height: math.unit(6, "feet"),
  9239. weight: math.unit(150, "lb"),
  9240. name: "Front",
  9241. image: {
  9242. source: "./media/characters/odyssey/front.svg",
  9243. extra: 1782 / 1582,
  9244. bottom: 0.01
  9245. }
  9246. },
  9247. side: {
  9248. height: math.unit(5.7, "feet"),
  9249. weight: math.unit(140, "lb"),
  9250. name: "Side",
  9251. image: {
  9252. source: "./media/characters/odyssey/side.svg",
  9253. extra: 6462 / 5700
  9254. }
  9255. },
  9256. },
  9257. [
  9258. {
  9259. name: "Normal",
  9260. height: math.unit(5 + 4 / 12, "feet")
  9261. },
  9262. {
  9263. name: "Macro",
  9264. height: math.unit(1, "km")
  9265. },
  9266. {
  9267. name: "Megamacro",
  9268. height: math.unit(3000, "km")
  9269. },
  9270. {
  9271. name: "Gigamacro",
  9272. height: math.unit(1, "AU"),
  9273. default: true
  9274. },
  9275. {
  9276. name: "Omniversal",
  9277. height: math.unit(100e14, "lightyears")
  9278. },
  9279. ]
  9280. ))
  9281. characterMakers.push(() => makeCharacter(
  9282. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9283. {
  9284. front: {
  9285. height: math.unit(6, "feet"),
  9286. weight: math.unit(300, "lb"),
  9287. name: "Front",
  9288. image: {
  9289. source: "./media/characters/mekuto/front.svg",
  9290. extra: 921 / 832,
  9291. bottom: 0.03
  9292. }
  9293. },
  9294. hand: {
  9295. height: math.unit(6 / 10.24, "feet"),
  9296. name: "Hand",
  9297. image: {
  9298. source: "./media/characters/mekuto/hand.svg"
  9299. }
  9300. },
  9301. foot: {
  9302. height: math.unit(6 / 5.05, "feet"),
  9303. name: "Foot",
  9304. image: {
  9305. source: "./media/characters/mekuto/foot.svg"
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Minimicro",
  9312. height: math.unit(0.2, "inches")
  9313. },
  9314. {
  9315. name: "Micro",
  9316. height: math.unit(1.5, "inches")
  9317. },
  9318. {
  9319. name: "Normal",
  9320. height: math.unit(5 + 11 / 12, "feet"),
  9321. default: true
  9322. },
  9323. {
  9324. name: "Minimacro",
  9325. height: math.unit(17 + 9 / 12, "feet")
  9326. },
  9327. {
  9328. name: "Macro",
  9329. height: math.unit(177.5, "feet")
  9330. },
  9331. {
  9332. name: "Megamacro",
  9333. height: math.unit(152, "miles")
  9334. },
  9335. ]
  9336. ))
  9337. characterMakers.push(() => makeCharacter(
  9338. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9339. {
  9340. front: {
  9341. height: math.unit(6.5, "inches"),
  9342. weight: math.unit(13, "oz"),
  9343. name: "Front",
  9344. image: {
  9345. source: "./media/characters/dafydd-tomos/front.svg",
  9346. extra: 2990 / 2603,
  9347. bottom: 0.03
  9348. }
  9349. },
  9350. },
  9351. [
  9352. {
  9353. name: "Micro",
  9354. height: math.unit(6.5, "inches"),
  9355. default: true
  9356. },
  9357. ]
  9358. ))
  9359. characterMakers.push(() => makeCharacter(
  9360. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9361. {
  9362. front: {
  9363. height: math.unit(6, "feet"),
  9364. weight: math.unit(150, "lb"),
  9365. name: "Front",
  9366. image: {
  9367. source: "./media/characters/splinter/front.svg",
  9368. extra: 2990 / 2882,
  9369. bottom: 0.04
  9370. }
  9371. },
  9372. back: {
  9373. height: math.unit(6, "feet"),
  9374. weight: math.unit(150, "lb"),
  9375. name: "Back",
  9376. image: {
  9377. source: "./media/characters/splinter/back.svg",
  9378. extra: 2990 / 2882,
  9379. bottom: 0.04
  9380. }
  9381. },
  9382. },
  9383. [
  9384. {
  9385. name: "Normal",
  9386. height: math.unit(6, "feet")
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(230, "meters"),
  9391. default: true
  9392. },
  9393. ]
  9394. ))
  9395. characterMakers.push(() => makeCharacter(
  9396. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9397. {
  9398. front: {
  9399. height: math.unit(4 + 10 / 12, "feet"),
  9400. weight: math.unit(480, "lb"),
  9401. name: "Front",
  9402. image: {
  9403. source: "./media/characters/snow-gabumon/front.svg",
  9404. extra: 1140 / 963,
  9405. bottom: 0.058
  9406. }
  9407. },
  9408. back: {
  9409. height: math.unit(4 + 10 / 12, "feet"),
  9410. weight: math.unit(480, "lb"),
  9411. name: "Back",
  9412. image: {
  9413. source: "./media/characters/snow-gabumon/back.svg",
  9414. extra: 1115 / 962,
  9415. bottom: 0.041
  9416. }
  9417. },
  9418. frontUndresed: {
  9419. height: math.unit(4 + 10 / 12, "feet"),
  9420. weight: math.unit(480, "lb"),
  9421. name: "Front (Undressed)",
  9422. image: {
  9423. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9424. extra: 1061 / 960,
  9425. bottom: 0.045
  9426. }
  9427. },
  9428. },
  9429. [
  9430. {
  9431. name: "Micro",
  9432. height: math.unit(1, "inch")
  9433. },
  9434. {
  9435. name: "Normal",
  9436. height: math.unit(4 + 10 / 12, "feet"),
  9437. default: true
  9438. },
  9439. {
  9440. name: "Macro",
  9441. height: math.unit(200, "feet")
  9442. },
  9443. {
  9444. name: "Megamacro",
  9445. height: math.unit(120, "miles")
  9446. },
  9447. {
  9448. name: "Gigamacro",
  9449. height: math.unit(9800, "miles")
  9450. },
  9451. ]
  9452. ))
  9453. characterMakers.push(() => makeCharacter(
  9454. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9455. {
  9456. front: {
  9457. height: math.unit(1.7, "meters"),
  9458. weight: math.unit(140, "lb"),
  9459. name: "Front",
  9460. image: {
  9461. source: "./media/characters/moody/front.svg",
  9462. extra: 3226 / 3007,
  9463. bottom: 0.087
  9464. }
  9465. },
  9466. },
  9467. [
  9468. {
  9469. name: "Micro",
  9470. height: math.unit(1, "mm")
  9471. },
  9472. {
  9473. name: "Normal",
  9474. height: math.unit(1.7, "meters"),
  9475. default: true
  9476. },
  9477. {
  9478. name: "Macro",
  9479. height: math.unit(80, "meters")
  9480. },
  9481. {
  9482. name: "Macro+",
  9483. height: math.unit(500, "meters")
  9484. },
  9485. ]
  9486. ))
  9487. characterMakers.push(() => makeCharacter(
  9488. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9489. {
  9490. front: {
  9491. height: math.unit(6, "feet"),
  9492. weight: math.unit(150, "lb"),
  9493. name: "Front",
  9494. image: {
  9495. source: "./media/characters/zyas/front.svg",
  9496. extra: 1180 / 1120,
  9497. bottom: 0.045
  9498. }
  9499. },
  9500. },
  9501. [
  9502. {
  9503. name: "Normal",
  9504. height: math.unit(10, "feet"),
  9505. default: true
  9506. },
  9507. {
  9508. name: "Macro",
  9509. height: math.unit(500, "feet")
  9510. },
  9511. {
  9512. name: "Megamacro",
  9513. height: math.unit(5, "miles")
  9514. },
  9515. {
  9516. name: "Teramacro",
  9517. height: math.unit(150000, "miles")
  9518. },
  9519. ]
  9520. ))
  9521. characterMakers.push(() => makeCharacter(
  9522. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9523. {
  9524. front: {
  9525. height: math.unit(6, "feet"),
  9526. weight: math.unit(150, "lb"),
  9527. name: "Front",
  9528. image: {
  9529. source: "./media/characters/cuon/front.svg",
  9530. extra: 1390 / 1320,
  9531. bottom: 0.008
  9532. }
  9533. },
  9534. },
  9535. [
  9536. {
  9537. name: "Micro",
  9538. height: math.unit(3, "inches")
  9539. },
  9540. {
  9541. name: "Normal",
  9542. height: math.unit(18 + 9 / 12, "feet"),
  9543. default: true
  9544. },
  9545. {
  9546. name: "Macro",
  9547. height: math.unit(360, "feet")
  9548. },
  9549. {
  9550. name: "Megamacro",
  9551. height: math.unit(360, "miles")
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9557. {
  9558. front: {
  9559. height: math.unit(2.4, "meters"),
  9560. weight: math.unit(70, "kg"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/nyanuxk/front.svg",
  9564. extra: 1172 / 1084,
  9565. bottom: 0.065
  9566. }
  9567. },
  9568. side: {
  9569. height: math.unit(2.4, "meters"),
  9570. weight: math.unit(70, "kg"),
  9571. name: "Side",
  9572. image: {
  9573. source: "./media/characters/nyanuxk/side.svg",
  9574. extra: 1190 / 1132,
  9575. bottom: 0.007
  9576. }
  9577. },
  9578. back: {
  9579. height: math.unit(2.4, "meters"),
  9580. weight: math.unit(70, "kg"),
  9581. name: "Back",
  9582. image: {
  9583. source: "./media/characters/nyanuxk/back.svg",
  9584. extra: 1200 / 1141,
  9585. bottom: 0.015
  9586. }
  9587. },
  9588. foot: {
  9589. height: math.unit(0.52, "meters"),
  9590. name: "Foot",
  9591. image: {
  9592. source: "./media/characters/nyanuxk/foot.svg"
  9593. }
  9594. },
  9595. },
  9596. [
  9597. {
  9598. name: "Micro",
  9599. height: math.unit(2, "cm")
  9600. },
  9601. {
  9602. name: "Normal",
  9603. height: math.unit(2.4, "meters"),
  9604. default: true
  9605. },
  9606. {
  9607. name: "Smaller Macro",
  9608. height: math.unit(120, "meters")
  9609. },
  9610. {
  9611. name: "Bigger Macro",
  9612. height: math.unit(1.2, "km")
  9613. },
  9614. {
  9615. name: "Megamacro",
  9616. height: math.unit(15, "kilometers")
  9617. },
  9618. {
  9619. name: "Gigamacro",
  9620. height: math.unit(2000, "km")
  9621. },
  9622. {
  9623. name: "Teramacro",
  9624. height: math.unit(500000, "km")
  9625. },
  9626. ]
  9627. ))
  9628. characterMakers.push(() => makeCharacter(
  9629. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9630. {
  9631. side: {
  9632. height: math.unit(6, "feet"),
  9633. name: "Side",
  9634. image: {
  9635. source: "./media/characters/ailbhe/side.svg",
  9636. extra: 757 / 464,
  9637. bottom: 0.041
  9638. }
  9639. },
  9640. },
  9641. [
  9642. {
  9643. name: "Normal",
  9644. height: math.unit(1.07, "meters"),
  9645. default: true
  9646. },
  9647. ]
  9648. ))
  9649. characterMakers.push(() => makeCharacter(
  9650. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9651. {
  9652. front: {
  9653. height: math.unit(6, "feet"),
  9654. weight: math.unit(120, "kg"),
  9655. name: "Front",
  9656. image: {
  9657. source: "./media/characters/zevulfius/front.svg",
  9658. extra: 965 / 903
  9659. }
  9660. },
  9661. side: {
  9662. height: math.unit(6, "feet"),
  9663. weight: math.unit(120, "kg"),
  9664. name: "Side",
  9665. image: {
  9666. source: "./media/characters/zevulfius/side.svg",
  9667. extra: 939 / 900
  9668. }
  9669. },
  9670. back: {
  9671. height: math.unit(6, "feet"),
  9672. weight: math.unit(120, "kg"),
  9673. name: "Back",
  9674. image: {
  9675. source: "./media/characters/zevulfius/back.svg",
  9676. extra: 918 / 854,
  9677. bottom: 0.005
  9678. }
  9679. },
  9680. foot: {
  9681. height: math.unit(6 / 3.72, "feet"),
  9682. name: "Foot",
  9683. image: {
  9684. source: "./media/characters/zevulfius/foot.svg"
  9685. }
  9686. },
  9687. },
  9688. [
  9689. {
  9690. name: "Macro",
  9691. height: math.unit(750, "meters")
  9692. },
  9693. {
  9694. name: "Megamacro",
  9695. height: math.unit(20, "km"),
  9696. default: true
  9697. },
  9698. {
  9699. name: "Gigamacro",
  9700. height: math.unit(2000, "km")
  9701. },
  9702. {
  9703. name: "Teramacro",
  9704. height: math.unit(250000, "km")
  9705. },
  9706. ]
  9707. ))
  9708. characterMakers.push(() => makeCharacter(
  9709. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9710. {
  9711. front: {
  9712. height: math.unit(100, "feet"),
  9713. weight: math.unit(350, "kg"),
  9714. name: "Front",
  9715. image: {
  9716. source: "./media/characters/rikes/front.svg",
  9717. extra: 1565 / 1483,
  9718. bottom: 0.017
  9719. }
  9720. },
  9721. },
  9722. [
  9723. {
  9724. name: "Macro",
  9725. height: math.unit(100, "feet"),
  9726. default: true
  9727. },
  9728. ]
  9729. ))
  9730. characterMakers.push(() => makeCharacter(
  9731. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9732. {
  9733. anthro: {
  9734. height: math.unit(8, "feet"),
  9735. weight: math.unit(120, "kg"),
  9736. name: "Anthro",
  9737. image: {
  9738. source: "./media/characters/adam-silver-mane/anthro.svg",
  9739. extra: 5743 / 5339,
  9740. bottom: 0.07
  9741. }
  9742. },
  9743. taur: {
  9744. height: math.unit(16, "feet"),
  9745. weight: math.unit(1500, "kg"),
  9746. name: "Taur",
  9747. image: {
  9748. source: "./media/characters/adam-silver-mane/taur.svg",
  9749. extra: 1713 / 1571,
  9750. bottom: 0.01
  9751. }
  9752. },
  9753. },
  9754. [
  9755. {
  9756. name: "Normal",
  9757. height: math.unit(8, "feet")
  9758. },
  9759. {
  9760. name: "Minimacro",
  9761. height: math.unit(80, "feet")
  9762. },
  9763. {
  9764. name: "Macro",
  9765. height: math.unit(800, "feet"),
  9766. default: true
  9767. },
  9768. {
  9769. name: "Megamacro",
  9770. height: math.unit(8000, "feet")
  9771. },
  9772. {
  9773. name: "Gigamacro",
  9774. height: math.unit(800, "miles")
  9775. },
  9776. {
  9777. name: "Teramacro",
  9778. height: math.unit(80000, "miles")
  9779. },
  9780. {
  9781. name: "Celestial",
  9782. height: math.unit(8e6, "miles")
  9783. },
  9784. {
  9785. name: "Star Dragon",
  9786. height: math.unit(800000, "parsecs")
  9787. },
  9788. {
  9789. name: "Godly",
  9790. height: math.unit(800, "teraparsecs")
  9791. },
  9792. ]
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9796. {
  9797. front: {
  9798. height: math.unit(6, "feet"),
  9799. weight: math.unit(150, "lb"),
  9800. name: "Front",
  9801. image: {
  9802. source: "./media/characters/ky'owin/front.svg",
  9803. extra: 3888 / 3068,
  9804. bottom: 0.015
  9805. }
  9806. },
  9807. },
  9808. [
  9809. {
  9810. name: "Normal",
  9811. height: math.unit(6 + 8 / 12, "feet")
  9812. },
  9813. {
  9814. name: "Large",
  9815. height: math.unit(68, "feet")
  9816. },
  9817. {
  9818. name: "Macro",
  9819. height: math.unit(132, "feet")
  9820. },
  9821. {
  9822. name: "Macro+",
  9823. height: math.unit(340, "feet")
  9824. },
  9825. {
  9826. name: "Macro++",
  9827. height: math.unit(680, "feet"),
  9828. default: true
  9829. },
  9830. {
  9831. name: "Megamacro",
  9832. height: math.unit(1, "mile")
  9833. },
  9834. {
  9835. name: "Megamacro+",
  9836. height: math.unit(10, "miles")
  9837. },
  9838. ]
  9839. ))
  9840. characterMakers.push(() => makeCharacter(
  9841. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9842. {
  9843. front: {
  9844. height: math.unit(4, "feet"),
  9845. weight: math.unit(50, "lb"),
  9846. name: "Front",
  9847. image: {
  9848. source: "./media/characters/mal/front.svg",
  9849. extra: 785 / 724,
  9850. bottom: 0.07
  9851. }
  9852. },
  9853. },
  9854. [
  9855. {
  9856. name: "Micro",
  9857. height: math.unit(4, "inches")
  9858. },
  9859. {
  9860. name: "Normal",
  9861. height: math.unit(4, "feet"),
  9862. default: true
  9863. },
  9864. {
  9865. name: "Macro",
  9866. height: math.unit(200, "feet")
  9867. },
  9868. ]
  9869. ))
  9870. characterMakers.push(() => makeCharacter(
  9871. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9872. {
  9873. front: {
  9874. height: math.unit(6, "feet"),
  9875. weight: math.unit(150, "lb"),
  9876. name: "Front",
  9877. image: {
  9878. source: "./media/characters/jordan-deware/front.svg",
  9879. extra: 1191 / 1012
  9880. }
  9881. },
  9882. },
  9883. [
  9884. {
  9885. name: "Nano",
  9886. height: math.unit(0.01, "mm")
  9887. },
  9888. {
  9889. name: "Minimicro",
  9890. height: math.unit(1, "mm")
  9891. },
  9892. {
  9893. name: "Micro",
  9894. height: math.unit(0.5, "inches")
  9895. },
  9896. {
  9897. name: "Normal",
  9898. height: math.unit(4, "feet"),
  9899. default: true
  9900. },
  9901. {
  9902. name: "Minimacro",
  9903. height: math.unit(40, "meters")
  9904. },
  9905. {
  9906. name: "Small Macro",
  9907. height: math.unit(400, "meters")
  9908. },
  9909. {
  9910. name: "Macro",
  9911. height: math.unit(4, "miles")
  9912. },
  9913. {
  9914. name: "Megamacro",
  9915. height: math.unit(40, "miles")
  9916. },
  9917. {
  9918. name: "Megamacro+",
  9919. height: math.unit(400, "miles")
  9920. },
  9921. {
  9922. name: "Gigamacro",
  9923. height: math.unit(400000, "miles")
  9924. },
  9925. ]
  9926. ))
  9927. characterMakers.push(() => makeCharacter(
  9928. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9929. {
  9930. side: {
  9931. height: math.unit(6, "feet"),
  9932. weight: math.unit(150, "lb"),
  9933. name: "Side",
  9934. image: {
  9935. source: "./media/characters/kimiko/side.svg",
  9936. extra: 600 / 358
  9937. }
  9938. },
  9939. },
  9940. [
  9941. {
  9942. name: "Normal",
  9943. height: math.unit(15, "feet"),
  9944. default: true
  9945. },
  9946. {
  9947. name: "Macro",
  9948. height: math.unit(220, "feet")
  9949. },
  9950. {
  9951. name: "Macro+",
  9952. height: math.unit(1450, "feet")
  9953. },
  9954. {
  9955. name: "Megamacro",
  9956. height: math.unit(11500, "feet")
  9957. },
  9958. {
  9959. name: "Gigamacro",
  9960. height: math.unit(9500, "miles")
  9961. },
  9962. {
  9963. name: "Teramacro",
  9964. height: math.unit(2208005005, "miles")
  9965. },
  9966. {
  9967. name: "Examacro",
  9968. height: math.unit(2750, "parsecs")
  9969. },
  9970. {
  9971. name: "Zettamacro",
  9972. height: math.unit(101500, "parsecs")
  9973. },
  9974. ]
  9975. ))
  9976. characterMakers.push(() => makeCharacter(
  9977. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9978. {
  9979. front: {
  9980. height: math.unit(6, "feet"),
  9981. weight: math.unit(70, "kg"),
  9982. name: "Front",
  9983. image: {
  9984. source: "./media/characters/andrew-sleepy/front.svg"
  9985. }
  9986. },
  9987. side: {
  9988. height: math.unit(6, "feet"),
  9989. weight: math.unit(70, "kg"),
  9990. name: "Side",
  9991. image: {
  9992. source: "./media/characters/andrew-sleepy/side.svg"
  9993. }
  9994. },
  9995. },
  9996. [
  9997. {
  9998. name: "Micro",
  9999. height: math.unit(1, "mm"),
  10000. default: true
  10001. },
  10002. ]
  10003. ))
  10004. characterMakers.push(() => makeCharacter(
  10005. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10006. {
  10007. front: {
  10008. height: math.unit(6, "feet"),
  10009. weight: math.unit(150, "lb"),
  10010. name: "Front",
  10011. image: {
  10012. source: "./media/characters/judio/front.svg",
  10013. extra: 1258 / 1110
  10014. }
  10015. },
  10016. },
  10017. [
  10018. {
  10019. name: "Normal",
  10020. height: math.unit(5 + 6 / 12, "feet")
  10021. },
  10022. {
  10023. name: "Macro",
  10024. height: math.unit(1000, "feet"),
  10025. default: true
  10026. },
  10027. {
  10028. name: "Megamacro",
  10029. height: math.unit(10, "miles")
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10035. {
  10036. front: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(68, "kg"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/nomaxice/front.svg",
  10042. extra: 1498 / 1073,
  10043. bottom: 0.075
  10044. }
  10045. },
  10046. foot: {
  10047. height: math.unit(1.1, "feet"),
  10048. name: "Foot",
  10049. image: {
  10050. source: "./media/characters/nomaxice/foot.svg"
  10051. }
  10052. },
  10053. },
  10054. [
  10055. {
  10056. name: "Micro",
  10057. height: math.unit(8, "cm")
  10058. },
  10059. {
  10060. name: "Norm",
  10061. height: math.unit(1.82, "m")
  10062. },
  10063. {
  10064. name: "Norm+",
  10065. height: math.unit(8.8, "feet")
  10066. },
  10067. {
  10068. name: "Big",
  10069. height: math.unit(8, "meters"),
  10070. default: true
  10071. },
  10072. {
  10073. name: "Macro",
  10074. height: math.unit(18, "meters")
  10075. },
  10076. {
  10077. name: "Macro+",
  10078. height: math.unit(88, "meters")
  10079. },
  10080. ]
  10081. ))
  10082. characterMakers.push(() => makeCharacter(
  10083. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10084. {
  10085. front: {
  10086. height: math.unit(12, "feet"),
  10087. weight: math.unit(1.5, "tons"),
  10088. name: "Front",
  10089. image: {
  10090. source: "./media/characters/dydros/front.svg",
  10091. extra: 863 / 800,
  10092. bottom: 0.015
  10093. }
  10094. },
  10095. back: {
  10096. height: math.unit(12, "feet"),
  10097. weight: math.unit(1.5, "tons"),
  10098. name: "Back",
  10099. image: {
  10100. source: "./media/characters/dydros/back.svg",
  10101. extra: 900 / 843,
  10102. bottom: 0.005
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Normal",
  10109. height: math.unit(12, "feet"),
  10110. default: true
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(6, "feet"),
  10119. weight: math.unit(100, "kg"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/riggi/front.svg",
  10123. extra: 5787 / 5303
  10124. }
  10125. },
  10126. hyper: {
  10127. height: math.unit(6 * 5 / 3, "feet"),
  10128. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10129. name: "Hyper",
  10130. image: {
  10131. source: "./media/characters/riggi/hyper.svg",
  10132. extra: 3595 / 3485
  10133. }
  10134. },
  10135. },
  10136. [
  10137. {
  10138. name: "Small Macro",
  10139. height: math.unit(50, "feet")
  10140. },
  10141. {
  10142. name: "Default",
  10143. height: math.unit(200, "feet"),
  10144. default: true
  10145. },
  10146. {
  10147. name: "Loom",
  10148. height: math.unit(10000, "feet")
  10149. },
  10150. {
  10151. name: "Cruising Altitude",
  10152. height: math.unit(30000, "feet")
  10153. },
  10154. {
  10155. name: "Megamacro",
  10156. height: math.unit(100, "miles")
  10157. },
  10158. {
  10159. name: "Continent Sized",
  10160. height: math.unit(2800, "miles")
  10161. },
  10162. {
  10163. name: "Earth Sized",
  10164. height: math.unit(8000, "miles")
  10165. },
  10166. ]
  10167. ))
  10168. characterMakers.push(() => makeCharacter(
  10169. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10170. {
  10171. front: {
  10172. height: math.unit(6, "feet"),
  10173. weight: math.unit(250, "lb"),
  10174. name: "Front",
  10175. image: {
  10176. source: "./media/characters/alexi/front.svg",
  10177. extra: 3483 / 3291,
  10178. bottom: 0.04
  10179. }
  10180. },
  10181. back: {
  10182. height: math.unit(6, "feet"),
  10183. weight: math.unit(250, "lb"),
  10184. name: "Back",
  10185. image: {
  10186. source: "./media/characters/alexi/back.svg",
  10187. extra: 3533 / 3356,
  10188. bottom: 0.021
  10189. }
  10190. },
  10191. frontTransforming: {
  10192. height: math.unit(8.58, "feet"),
  10193. weight: math.unit(1300, "lb"),
  10194. name: "Transforming",
  10195. image: {
  10196. source: "./media/characters/alexi/front-transforming.svg",
  10197. extra: 437 / 409,
  10198. bottom: 19 / 458.66
  10199. }
  10200. },
  10201. frontTransformed: {
  10202. height: math.unit(12.5, "feet"),
  10203. weight: math.unit(4000, "lb"),
  10204. name: "Transformed",
  10205. image: {
  10206. source: "./media/characters/alexi/front-transformed.svg",
  10207. extra: 639 / 614,
  10208. bottom: 30.55 / 671
  10209. }
  10210. },
  10211. },
  10212. [
  10213. {
  10214. name: "Normal",
  10215. height: math.unit(14, "feet"),
  10216. default: true
  10217. },
  10218. {
  10219. name: "Minimacro",
  10220. height: math.unit(30, "meters")
  10221. },
  10222. {
  10223. name: "Macro",
  10224. height: math.unit(500, "meters")
  10225. },
  10226. {
  10227. name: "Megamacro",
  10228. height: math.unit(9000, "km")
  10229. },
  10230. {
  10231. name: "Teramacro",
  10232. height: math.unit(384000, "km")
  10233. },
  10234. ]
  10235. ))
  10236. characterMakers.push(() => makeCharacter(
  10237. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10238. {
  10239. front: {
  10240. height: math.unit(6, "feet"),
  10241. weight: math.unit(150, "lb"),
  10242. name: "Front",
  10243. image: {
  10244. source: "./media/characters/kayroo/front.svg",
  10245. extra: 1153 / 1038,
  10246. bottom: 0.06
  10247. }
  10248. },
  10249. foot: {
  10250. height: math.unit(6, "feet"),
  10251. weight: math.unit(150, "lb"),
  10252. name: "Foot",
  10253. image: {
  10254. source: "./media/characters/kayroo/foot.svg"
  10255. }
  10256. },
  10257. },
  10258. [
  10259. {
  10260. name: "Normal",
  10261. height: math.unit(8, "feet"),
  10262. default: true
  10263. },
  10264. {
  10265. name: "Minimacro",
  10266. height: math.unit(250, "feet")
  10267. },
  10268. {
  10269. name: "Macro",
  10270. height: math.unit(2800, "feet")
  10271. },
  10272. {
  10273. name: "Megamacro",
  10274. height: math.unit(5200, "feet")
  10275. },
  10276. {
  10277. name: "Gigamacro",
  10278. height: math.unit(27000, "feet")
  10279. },
  10280. {
  10281. name: "Omega",
  10282. height: math.unit(45000, "feet")
  10283. },
  10284. ]
  10285. ))
  10286. characterMakers.push(() => makeCharacter(
  10287. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10288. {
  10289. front: {
  10290. height: math.unit(18, "feet"),
  10291. weight: math.unit(5800, "lb"),
  10292. name: "Front",
  10293. image: {
  10294. source: "./media/characters/rhys/front.svg",
  10295. extra: 3386 / 3090,
  10296. bottom: 0.07
  10297. }
  10298. },
  10299. },
  10300. [
  10301. {
  10302. name: "Normal",
  10303. height: math.unit(18, "feet"),
  10304. default: true
  10305. },
  10306. {
  10307. name: "Working Size",
  10308. height: math.unit(200, "feet")
  10309. },
  10310. {
  10311. name: "Demolition Size",
  10312. height: math.unit(2000, "feet")
  10313. },
  10314. {
  10315. name: "Maximum Licensed Size",
  10316. height: math.unit(5, "miles")
  10317. },
  10318. {
  10319. name: "Maximum Observed Size",
  10320. height: math.unit(10, "yottameters")
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(250, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/toto/front.svg",
  10333. extra: 527 / 479,
  10334. bottom: 0.05
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Micro",
  10341. height: math.unit(3, "feet")
  10342. },
  10343. {
  10344. name: "Normal",
  10345. height: math.unit(10, "feet")
  10346. },
  10347. {
  10348. name: "Macro",
  10349. height: math.unit(150, "feet"),
  10350. default: true
  10351. },
  10352. {
  10353. name: "Megamacro",
  10354. height: math.unit(1200, "feet")
  10355. },
  10356. ]
  10357. ))
  10358. characterMakers.push(() => makeCharacter(
  10359. { name: "King", species: ["lion"], tags: ["anthro"] },
  10360. {
  10361. back: {
  10362. height: math.unit(6, "feet"),
  10363. weight: math.unit(150, "lb"),
  10364. name: "Back",
  10365. image: {
  10366. source: "./media/characters/king/back.svg"
  10367. }
  10368. },
  10369. },
  10370. [
  10371. {
  10372. name: "Micro",
  10373. height: math.unit(2, "inches")
  10374. },
  10375. {
  10376. name: "Normal",
  10377. height: math.unit(8, "feet")
  10378. },
  10379. {
  10380. name: "Macro",
  10381. height: math.unit(200, "feet"),
  10382. default: true
  10383. },
  10384. {
  10385. name: "Megamacro",
  10386. height: math.unit(50, "miles")
  10387. },
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10392. {
  10393. anthro: {
  10394. height: math.unit(6 + 5 / 12, "feet"),
  10395. weight: math.unit(280, "lb"),
  10396. name: "Anthro",
  10397. image: {
  10398. source: "./media/characters/cordite/anthro.svg",
  10399. extra: 1986 / 1905,
  10400. bottom: 0.025
  10401. }
  10402. },
  10403. feral: {
  10404. height: math.unit(2, "feet"),
  10405. weight: math.unit(90, "lb"),
  10406. name: "Feral",
  10407. image: {
  10408. source: "./media/characters/cordite/feral.svg",
  10409. extra: 1260 / 755,
  10410. bottom: 0.05
  10411. }
  10412. },
  10413. },
  10414. [
  10415. {
  10416. name: "Normal",
  10417. height: math.unit(6 + 5 / 12, "feet"),
  10418. default: true
  10419. },
  10420. ]
  10421. ))
  10422. characterMakers.push(() => makeCharacter(
  10423. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10424. {
  10425. front: {
  10426. height: math.unit(6, "feet"),
  10427. weight: math.unit(150, "lb"),
  10428. name: "Front",
  10429. image: {
  10430. source: "./media/characters/pianostrong/front.svg",
  10431. extra: 6577 / 6254,
  10432. bottom: 0.02
  10433. }
  10434. },
  10435. side: {
  10436. height: math.unit(6, "feet"),
  10437. weight: math.unit(150, "lb"),
  10438. name: "Side",
  10439. image: {
  10440. source: "./media/characters/pianostrong/side.svg",
  10441. extra: 6106 / 5730
  10442. }
  10443. },
  10444. back: {
  10445. height: math.unit(6, "feet"),
  10446. weight: math.unit(150, "lb"),
  10447. name: "Back",
  10448. image: {
  10449. source: "./media/characters/pianostrong/back.svg",
  10450. extra: 6085 / 5733,
  10451. bottom: 0.01
  10452. }
  10453. },
  10454. },
  10455. [
  10456. {
  10457. name: "Macro",
  10458. height: math.unit(100, "feet")
  10459. },
  10460. {
  10461. name: "Macro+",
  10462. height: math.unit(300, "feet"),
  10463. default: true
  10464. },
  10465. {
  10466. name: "Macro++",
  10467. height: math.unit(1000, "feet")
  10468. },
  10469. ]
  10470. ))
  10471. characterMakers.push(() => makeCharacter(
  10472. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10473. {
  10474. front: {
  10475. height: math.unit(6, "feet"),
  10476. weight: math.unit(150, "lb"),
  10477. name: "Front",
  10478. image: {
  10479. source: "./media/characters/kona/front.svg",
  10480. extra: 2960 / 2629,
  10481. bottom: 0.005
  10482. }
  10483. },
  10484. },
  10485. [
  10486. {
  10487. name: "Normal",
  10488. height: math.unit(11 + 8 / 12, "feet")
  10489. },
  10490. {
  10491. name: "Macro",
  10492. height: math.unit(850, "feet"),
  10493. default: true
  10494. },
  10495. {
  10496. name: "Macro+",
  10497. height: math.unit(1.5, "km"),
  10498. default: true
  10499. },
  10500. {
  10501. name: "Megamacro",
  10502. height: math.unit(80, "miles")
  10503. },
  10504. {
  10505. name: "Gigamacro",
  10506. height: math.unit(3500, "miles")
  10507. },
  10508. ]
  10509. ))
  10510. characterMakers.push(() => makeCharacter(
  10511. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10512. {
  10513. side: {
  10514. height: math.unit(1.9, "meters"),
  10515. weight: math.unit(326, "kg"),
  10516. name: "Side",
  10517. image: {
  10518. source: "./media/characters/levi/side.svg",
  10519. extra: 1704 / 1334,
  10520. bottom: 0.02
  10521. }
  10522. },
  10523. },
  10524. [
  10525. {
  10526. name: "Normal",
  10527. height: math.unit(1.9, "meters"),
  10528. default: true
  10529. },
  10530. {
  10531. name: "Macro",
  10532. height: math.unit(20, "meters")
  10533. },
  10534. {
  10535. name: "Macro+",
  10536. height: math.unit(200, "meters")
  10537. },
  10538. {
  10539. name: "Megamacro",
  10540. height: math.unit(2, "km")
  10541. },
  10542. {
  10543. name: "Megamacro+",
  10544. height: math.unit(20, "km")
  10545. },
  10546. {
  10547. name: "Gigamacro",
  10548. height: math.unit(2500, "km")
  10549. },
  10550. {
  10551. name: "Gigamacro+",
  10552. height: math.unit(120000, "km")
  10553. },
  10554. {
  10555. name: "Teramacro",
  10556. height: math.unit(7.77e6, "km")
  10557. },
  10558. ]
  10559. ))
  10560. characterMakers.push(() => makeCharacter(
  10561. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10562. {
  10563. front: {
  10564. height: math.unit(6 + 4 / 12, "feet"),
  10565. weight: math.unit(188, "lb"),
  10566. name: "Front",
  10567. image: {
  10568. source: "./media/characters/bmc/front.svg",
  10569. extra: 1067 / 1022,
  10570. bottom: 0.047
  10571. }
  10572. },
  10573. },
  10574. [
  10575. {
  10576. name: "Human-sized",
  10577. height: math.unit(6 + 4 / 12, "feet")
  10578. },
  10579. {
  10580. name: "Small",
  10581. height: math.unit(250, "feet")
  10582. },
  10583. {
  10584. name: "Normal",
  10585. height: math.unit(1250, "feet"),
  10586. default: true
  10587. },
  10588. {
  10589. name: "Good Day",
  10590. height: math.unit(88, "miles")
  10591. },
  10592. {
  10593. name: "Largest Measured Size",
  10594. height: math.unit(11.2e6, "lightyears")
  10595. },
  10596. ]
  10597. ))
  10598. characterMakers.push(() => makeCharacter(
  10599. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10600. {
  10601. front: {
  10602. height: math.unit(20, "feet"),
  10603. weight: math.unit(2016, "kg"),
  10604. name: "Front",
  10605. image: {
  10606. source: "./media/characters/sven-the-kaiju/front.svg",
  10607. extra: 1479 / 1449,
  10608. bottom: 0.05
  10609. }
  10610. },
  10611. },
  10612. [
  10613. {
  10614. name: "Fairy",
  10615. height: math.unit(6, "inches")
  10616. },
  10617. {
  10618. name: "Normal",
  10619. height: math.unit(20, "feet"),
  10620. default: true
  10621. },
  10622. {
  10623. name: "Rampage",
  10624. height: math.unit(200, "feet")
  10625. },
  10626. {
  10627. name: "Archfey Forest Guardian",
  10628. height: math.unit(1, "mile")
  10629. },
  10630. ]
  10631. ))
  10632. characterMakers.push(() => makeCharacter(
  10633. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10634. {
  10635. front: {
  10636. height: math.unit(4, "meters"),
  10637. weight: math.unit(2, "tons"),
  10638. name: "Front",
  10639. image: {
  10640. source: "./media/characters/marik/front.svg",
  10641. extra: 1057 / 1003,
  10642. bottom: 0.08
  10643. }
  10644. },
  10645. },
  10646. [
  10647. {
  10648. name: "Normal",
  10649. height: math.unit(4, "meters"),
  10650. default: true
  10651. },
  10652. {
  10653. name: "Macro",
  10654. height: math.unit(20, "meters")
  10655. },
  10656. {
  10657. name: "Megamacro",
  10658. height: math.unit(50, "km")
  10659. },
  10660. {
  10661. name: "Gigamacro",
  10662. height: math.unit(100, "km")
  10663. },
  10664. {
  10665. name: "Alpha Macro",
  10666. height: math.unit(7.88e7, "yottameters")
  10667. },
  10668. ]
  10669. ))
  10670. characterMakers.push(() => makeCharacter(
  10671. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10672. {
  10673. front: {
  10674. height: math.unit(6, "feet"),
  10675. weight: math.unit(110, "lb"),
  10676. name: "Front",
  10677. image: {
  10678. source: "./media/characters/mel/front.svg",
  10679. extra: 736 / 617,
  10680. bottom: 0.017
  10681. }
  10682. },
  10683. },
  10684. [
  10685. {
  10686. name: "Pico",
  10687. height: math.unit(3, "pm")
  10688. },
  10689. {
  10690. name: "Nano",
  10691. height: math.unit(3, "nm")
  10692. },
  10693. {
  10694. name: "Micro",
  10695. height: math.unit(0.3, "mm"),
  10696. default: true
  10697. },
  10698. {
  10699. name: "Micro+",
  10700. height: math.unit(3, "mm")
  10701. },
  10702. {
  10703. name: "Normal",
  10704. height: math.unit(5 + 10.5 / 12, "feet")
  10705. },
  10706. ]
  10707. ))
  10708. characterMakers.push(() => makeCharacter(
  10709. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10710. {
  10711. kaiju: {
  10712. height: math.unit(1.75, "meters"),
  10713. weight: math.unit(55, "kg"),
  10714. name: "Kaiju",
  10715. image: {
  10716. source: "./media/characters/lykonous/kaiju.svg",
  10717. extra: 1055 / 946,
  10718. bottom: 0.135
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Normal",
  10725. height: math.unit(2.5, "meters"),
  10726. default: true
  10727. },
  10728. {
  10729. name: "Kaiju Dragon",
  10730. height: math.unit(60, "meters")
  10731. },
  10732. {
  10733. name: "Mega Kaiju",
  10734. height: math.unit(120, "km")
  10735. },
  10736. {
  10737. name: "Giga Kaiju",
  10738. height: math.unit(200, "megameters")
  10739. },
  10740. {
  10741. name: "Terra Kaiju",
  10742. height: math.unit(400, "gigameters")
  10743. },
  10744. {
  10745. name: "Kaiju Dragon God",
  10746. height: math.unit(13000, "exaparsecs")
  10747. },
  10748. ]
  10749. ))
  10750. characterMakers.push(() => makeCharacter(
  10751. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10752. {
  10753. front: {
  10754. height: math.unit(6, "feet"),
  10755. weight: math.unit(150, "lb"),
  10756. name: "Front",
  10757. image: {
  10758. source: "./media/characters/blü/front.svg",
  10759. extra: 1883 / 1564,
  10760. bottom: 0.031
  10761. }
  10762. },
  10763. },
  10764. [
  10765. {
  10766. name: "Normal",
  10767. height: math.unit(13, "feet"),
  10768. default: true
  10769. },
  10770. {
  10771. name: "Big Boi",
  10772. height: math.unit(150, "meters")
  10773. },
  10774. {
  10775. name: "Mini Stomper",
  10776. height: math.unit(300, "meters")
  10777. },
  10778. {
  10779. name: "Macro",
  10780. height: math.unit(1000, "meters")
  10781. },
  10782. {
  10783. name: "Megamacro",
  10784. height: math.unit(11000, "meters")
  10785. },
  10786. {
  10787. name: "Gigamacro",
  10788. height: math.unit(11000, "km")
  10789. },
  10790. {
  10791. name: "Teramacro",
  10792. height: math.unit(420000, "km")
  10793. },
  10794. {
  10795. name: "Examacro",
  10796. height: math.unit(120, "parsecs")
  10797. },
  10798. {
  10799. name: "God Tho",
  10800. height: math.unit(98000000000, "parsecs")
  10801. },
  10802. ]
  10803. ))
  10804. characterMakers.push(() => makeCharacter(
  10805. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10806. {
  10807. taurFront: {
  10808. height: math.unit(6, "feet"),
  10809. weight: math.unit(200, "lb"),
  10810. name: "Taur (Front)",
  10811. image: {
  10812. source: "./media/characters/scales/taur-front.svg",
  10813. extra: 1,
  10814. bottom: 0.05
  10815. }
  10816. },
  10817. taurBack: {
  10818. height: math.unit(6, "feet"),
  10819. weight: math.unit(200, "lb"),
  10820. name: "Taur (Back)",
  10821. image: {
  10822. source: "./media/characters/scales/taur-back.svg",
  10823. extra: 1,
  10824. bottom: 0.08
  10825. }
  10826. },
  10827. anthro: {
  10828. height: math.unit(6 * 7 / 12, "feet"),
  10829. weight: math.unit(100, "lb"),
  10830. name: "Anthro",
  10831. image: {
  10832. source: "./media/characters/scales/anthro.svg",
  10833. extra: 1,
  10834. bottom: 0.06
  10835. }
  10836. },
  10837. },
  10838. [
  10839. {
  10840. name: "Normal",
  10841. height: math.unit(12, "feet"),
  10842. default: true
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10848. {
  10849. front: {
  10850. height: math.unit(6, "feet"),
  10851. weight: math.unit(150, "lb"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/koragos/front.svg",
  10855. extra: 841 / 794,
  10856. bottom: 0.035
  10857. }
  10858. },
  10859. back: {
  10860. height: math.unit(6, "feet"),
  10861. weight: math.unit(150, "lb"),
  10862. name: "Back",
  10863. image: {
  10864. source: "./media/characters/koragos/back.svg",
  10865. extra: 841 / 810,
  10866. bottom: 0.022
  10867. }
  10868. },
  10869. },
  10870. [
  10871. {
  10872. name: "Normal",
  10873. height: math.unit(6 + 11 / 12, "feet"),
  10874. default: true
  10875. },
  10876. {
  10877. name: "Macro",
  10878. height: math.unit(490, "feet")
  10879. },
  10880. {
  10881. name: "Megamacro",
  10882. height: math.unit(10, "miles")
  10883. },
  10884. {
  10885. name: "Gigamacro",
  10886. height: math.unit(50, "miles")
  10887. },
  10888. ]
  10889. ))
  10890. characterMakers.push(() => makeCharacter(
  10891. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10892. {
  10893. front: {
  10894. height: math.unit(6, "feet"),
  10895. weight: math.unit(250, "lb"),
  10896. name: "Front",
  10897. image: {
  10898. source: "./media/characters/xylrem/front.svg",
  10899. extra: 3323 / 3050,
  10900. bottom: 0.065
  10901. }
  10902. },
  10903. },
  10904. [
  10905. {
  10906. name: "Micro",
  10907. height: math.unit(4, "feet")
  10908. },
  10909. {
  10910. name: "Normal",
  10911. height: math.unit(16, "feet"),
  10912. default: true
  10913. },
  10914. {
  10915. name: "Macro",
  10916. height: math.unit(2720, "feet")
  10917. },
  10918. {
  10919. name: "Megamacro",
  10920. height: math.unit(25000, "miles")
  10921. },
  10922. ]
  10923. ))
  10924. characterMakers.push(() => makeCharacter(
  10925. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10926. {
  10927. front: {
  10928. height: math.unit(8, "feet"),
  10929. weight: math.unit(250, "kg"),
  10930. name: "Front",
  10931. image: {
  10932. source: "./media/characters/ikideru/front.svg",
  10933. extra: 930 / 870,
  10934. bottom: 0.087
  10935. }
  10936. },
  10937. back: {
  10938. height: math.unit(8, "feet"),
  10939. weight: math.unit(250, "kg"),
  10940. name: "Back",
  10941. image: {
  10942. source: "./media/characters/ikideru/back.svg",
  10943. extra: 919 / 852,
  10944. bottom: 0.055
  10945. }
  10946. },
  10947. },
  10948. [
  10949. {
  10950. name: "Rare",
  10951. height: math.unit(8, "feet"),
  10952. default: true
  10953. },
  10954. {
  10955. name: "Playful Loom",
  10956. height: math.unit(80, "feet")
  10957. },
  10958. {
  10959. name: "City Leaner",
  10960. height: math.unit(230, "feet")
  10961. },
  10962. {
  10963. name: "Megamacro",
  10964. height: math.unit(2500, "feet")
  10965. },
  10966. {
  10967. name: "Gigamacro",
  10968. height: math.unit(26400, "feet")
  10969. },
  10970. {
  10971. name: "Tectonic Shifter",
  10972. height: math.unit(1.7, "megameters")
  10973. },
  10974. {
  10975. name: "Planet Carer",
  10976. height: math.unit(21, "megameters")
  10977. },
  10978. {
  10979. name: "God",
  10980. height: math.unit(11157.22, "parsecs")
  10981. },
  10982. ]
  10983. ))
  10984. characterMakers.push(() => makeCharacter(
  10985. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10986. {
  10987. front: {
  10988. height: math.unit(6, "feet"),
  10989. weight: math.unit(120, "lb"),
  10990. name: "Front",
  10991. image: {
  10992. source: "./media/characters/neo/front.svg"
  10993. }
  10994. },
  10995. },
  10996. [
  10997. {
  10998. name: "Micro",
  10999. height: math.unit(2, "inches"),
  11000. default: true
  11001. },
  11002. {
  11003. name: "Human Size",
  11004. height: math.unit(5 + 8 / 12, "feet")
  11005. },
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11010. {
  11011. front: {
  11012. height: math.unit(13 + 10 / 12, "feet"),
  11013. weight: math.unit(5320, "lb"),
  11014. name: "Front",
  11015. image: {
  11016. source: "./media/characters/chauncey-chantz/front.svg",
  11017. extra: 1587 / 1435,
  11018. bottom: 0.02
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Normal",
  11025. height: math.unit(13 + 10 / 12, "feet"),
  11026. default: true
  11027. },
  11028. {
  11029. name: "Macro",
  11030. height: math.unit(45, "feet")
  11031. },
  11032. {
  11033. name: "Megamacro",
  11034. height: math.unit(250, "miles")
  11035. },
  11036. {
  11037. name: "Planetary",
  11038. height: math.unit(10000, "miles")
  11039. },
  11040. {
  11041. name: "Galactic",
  11042. height: math.unit(40000, "parsecs")
  11043. },
  11044. {
  11045. name: "Universal",
  11046. height: math.unit(1, "yottameter")
  11047. },
  11048. ]
  11049. ))
  11050. characterMakers.push(() => makeCharacter(
  11051. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11052. {
  11053. front: {
  11054. height: math.unit(6, "feet"),
  11055. weight: math.unit(150, "lb"),
  11056. name: "Front",
  11057. image: {
  11058. source: "./media/characters/epifox/front.svg",
  11059. extra: 1,
  11060. bottom: 0.075
  11061. }
  11062. },
  11063. },
  11064. [
  11065. {
  11066. name: "Micro",
  11067. height: math.unit(6, "inches")
  11068. },
  11069. {
  11070. name: "Normal",
  11071. height: math.unit(12, "feet"),
  11072. default: true
  11073. },
  11074. {
  11075. name: "Macro",
  11076. height: math.unit(3810, "feet")
  11077. },
  11078. {
  11079. name: "Megamacro",
  11080. height: math.unit(500, "miles")
  11081. },
  11082. ]
  11083. ))
  11084. characterMakers.push(() => makeCharacter(
  11085. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11086. {
  11087. front: {
  11088. height: math.unit(1.8796, "m"),
  11089. weight: math.unit(230, "lb"),
  11090. name: "Front",
  11091. image: {
  11092. source: "./media/characters/colin-t/front.svg",
  11093. extra: 1272 / 1193,
  11094. bottom: 0.07
  11095. }
  11096. },
  11097. },
  11098. [
  11099. {
  11100. name: "Micro",
  11101. height: math.unit(0.571, "meters")
  11102. },
  11103. {
  11104. name: "Normal",
  11105. height: math.unit(1.8796, "meters"),
  11106. default: true
  11107. },
  11108. {
  11109. name: "Tall",
  11110. height: math.unit(4, "meters")
  11111. },
  11112. {
  11113. name: "Macro",
  11114. height: math.unit(67.241, "meters")
  11115. },
  11116. {
  11117. name: "Megamacro",
  11118. height: math.unit(371.856, "meters")
  11119. },
  11120. {
  11121. name: "Planetary",
  11122. height: math.unit(12631.5689, "km")
  11123. },
  11124. ]
  11125. ))
  11126. characterMakers.push(() => makeCharacter(
  11127. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11128. {
  11129. front: {
  11130. height: math.unit(1.85, "meters"),
  11131. weight: math.unit(80, "kg"),
  11132. name: "Front",
  11133. image: {
  11134. source: "./media/characters/matvei/front.svg",
  11135. extra: 614 / 594,
  11136. bottom: 0.01
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Normal",
  11143. height: math.unit(1.85, "meters"),
  11144. default: true
  11145. },
  11146. ]
  11147. ))
  11148. characterMakers.push(() => makeCharacter(
  11149. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11150. {
  11151. front: {
  11152. height: math.unit(5 + 9 / 12, "feet"),
  11153. weight: math.unit(70, "lb"),
  11154. name: "Front",
  11155. image: {
  11156. source: "./media/characters/quincy/front.svg",
  11157. extra: 3041 / 2751
  11158. }
  11159. },
  11160. back: {
  11161. height: math.unit(5 + 9 / 12, "feet"),
  11162. weight: math.unit(70, "lb"),
  11163. name: "Back",
  11164. image: {
  11165. source: "./media/characters/quincy/back.svg",
  11166. extra: 3041 / 2751
  11167. }
  11168. },
  11169. flying: {
  11170. height: math.unit(5 + 4 / 12, "feet"),
  11171. weight: math.unit(70, "lb"),
  11172. name: "Flying",
  11173. image: {
  11174. source: "./media/characters/quincy/flying.svg",
  11175. extra: 1044 / 930
  11176. }
  11177. },
  11178. },
  11179. [
  11180. {
  11181. name: "Micro",
  11182. height: math.unit(3, "cm")
  11183. },
  11184. {
  11185. name: "Normal",
  11186. height: math.unit(5 + 9 / 12, "feet")
  11187. },
  11188. {
  11189. name: "Macro",
  11190. height: math.unit(200, "meters"),
  11191. default: true
  11192. },
  11193. {
  11194. name: "Megamacro",
  11195. height: math.unit(1000, "meters")
  11196. },
  11197. ]
  11198. ))
  11199. characterMakers.push(() => makeCharacter(
  11200. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11201. {
  11202. front: {
  11203. height: math.unit(4 + 7 / 12, "feet"),
  11204. weight: math.unit(150, "lb"),
  11205. name: "Front",
  11206. image: {
  11207. source: "./media/characters/vanrel/front.svg",
  11208. extra: 1,
  11209. bottom: 0.02
  11210. }
  11211. },
  11212. elemental: {
  11213. height: math.unit(3, "feet"),
  11214. weight: math.unit(150, "lb"),
  11215. name: "Elemental",
  11216. image: {
  11217. source: "./media/characters/vanrel/elemental.svg",
  11218. extra: 192.3 / 162.8,
  11219. bottom: 1.79 / 194.17
  11220. }
  11221. },
  11222. side: {
  11223. height: math.unit(4 + 7 / 12, "feet"),
  11224. weight: math.unit(150, "lb"),
  11225. name: "Side",
  11226. image: {
  11227. source: "./media/characters/vanrel/side.svg",
  11228. extra: 1,
  11229. bottom: 0.025
  11230. }
  11231. },
  11232. tome: {
  11233. height: math.unit(1.35, "feet"),
  11234. weight: math.unit(10, "lb"),
  11235. name: "Vanrel's Tome",
  11236. rename: true,
  11237. image: {
  11238. source: "./media/characters/vanrel/tome.svg"
  11239. }
  11240. },
  11241. beans: {
  11242. height: math.unit(0.89, "feet"),
  11243. name: "Beans",
  11244. image: {
  11245. source: "./media/characters/vanrel/beans.svg"
  11246. }
  11247. },
  11248. },
  11249. [
  11250. {
  11251. name: "Normal",
  11252. height: math.unit(4 + 7 / 12, "feet"),
  11253. default: true
  11254. },
  11255. ]
  11256. ))
  11257. characterMakers.push(() => makeCharacter(
  11258. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11259. {
  11260. front: {
  11261. height: math.unit(7 + 5 / 12, "feet"),
  11262. weight: math.unit(150, "lb"),
  11263. name: "Front",
  11264. image: {
  11265. source: "./media/characters/kuiper-vanrel/front.svg",
  11266. extra: 1118 / 1068,
  11267. bottom: 0.09
  11268. }
  11269. },
  11270. foot: {
  11271. height: math.unit(0.55, "meters"),
  11272. name: "Foot",
  11273. image: {
  11274. source: "./media/characters/kuiper-vanrel/foot.svg",
  11275. }
  11276. },
  11277. battle: {
  11278. height: math.unit(6.824, "feet"),
  11279. weight: math.unit(150, "lb"),
  11280. name: "Battle",
  11281. image: {
  11282. source: "./media/characters/kuiper-vanrel/battle.svg",
  11283. extra: 1466 / 1327,
  11284. bottom: 29 / 1492.5
  11285. }
  11286. },
  11287. battleAlt: {
  11288. height: math.unit(6.824, "feet"),
  11289. weight: math.unit(150, "lb"),
  11290. name: "Battle (Alt)",
  11291. image: {
  11292. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11293. extra: 2081 / 1965,
  11294. bottom: 40 / 2121
  11295. }
  11296. },
  11297. },
  11298. [
  11299. {
  11300. name: "Normal",
  11301. height: math.unit(7 + 5 / 12, "feet"),
  11302. default: true
  11303. },
  11304. ]
  11305. ))
  11306. characterMakers.push(() => makeCharacter(
  11307. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11308. {
  11309. front: {
  11310. height: math.unit(8 + 5 / 12, "feet"),
  11311. weight: math.unit(150, "lb"),
  11312. name: "Front",
  11313. image: {
  11314. source: "./media/characters/keset-vanrel/front.svg",
  11315. extra: 1150 / 1084,
  11316. bottom: 0.05
  11317. }
  11318. },
  11319. hand: {
  11320. height: math.unit(0.6, "meters"),
  11321. name: "Hand",
  11322. image: {
  11323. source: "./media/characters/keset-vanrel/hand.svg"
  11324. }
  11325. },
  11326. foot: {
  11327. height: math.unit(0.94978, "meters"),
  11328. name: "Foot",
  11329. image: {
  11330. source: "./media/characters/keset-vanrel/foot.svg"
  11331. }
  11332. },
  11333. battle: {
  11334. height: math.unit(7.408, "feet"),
  11335. weight: math.unit(150, "lb"),
  11336. name: "Battle",
  11337. image: {
  11338. source: "./media/characters/keset-vanrel/battle.svg",
  11339. extra: 1890 / 1386,
  11340. bottom: 73.28 / 1970
  11341. }
  11342. },
  11343. },
  11344. [
  11345. {
  11346. name: "Normal",
  11347. height: math.unit(8 + 5 / 12, "feet"),
  11348. default: true
  11349. },
  11350. ]
  11351. ))
  11352. characterMakers.push(() => makeCharacter(
  11353. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11354. {
  11355. front: {
  11356. height: math.unit(6, "feet"),
  11357. weight: math.unit(150, "lb"),
  11358. name: "Front",
  11359. image: {
  11360. source: "./media/characters/neos/front.svg",
  11361. extra: 1696 / 992,
  11362. bottom: 0.14
  11363. }
  11364. },
  11365. },
  11366. [
  11367. {
  11368. name: "Normal",
  11369. height: math.unit(54, "cm"),
  11370. default: true
  11371. },
  11372. {
  11373. name: "Macro",
  11374. height: math.unit(100, "m")
  11375. },
  11376. {
  11377. name: "Megamacro",
  11378. height: math.unit(10, "km")
  11379. },
  11380. {
  11381. name: "Megamacro+",
  11382. height: math.unit(100, "km")
  11383. },
  11384. {
  11385. name: "Gigamacro",
  11386. height: math.unit(100, "Mm")
  11387. },
  11388. {
  11389. name: "Teramacro",
  11390. height: math.unit(100, "Gm")
  11391. },
  11392. {
  11393. name: "Examacro",
  11394. height: math.unit(100, "Em")
  11395. },
  11396. {
  11397. name: "Godly",
  11398. height: math.unit(10000, "Ym")
  11399. },
  11400. {
  11401. name: "Beyond Godly",
  11402. height: math.unit(25, "multiverses")
  11403. },
  11404. ]
  11405. ))
  11406. characterMakers.push(() => makeCharacter(
  11407. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11408. {
  11409. feminine: {
  11410. height: math.unit(5, "feet"),
  11411. weight: math.unit(100, "lb"),
  11412. name: "Feminine",
  11413. image: {
  11414. source: "./media/characters/sammy-mouse/feminine.svg",
  11415. extra: 2526 / 2425,
  11416. bottom: 0.123
  11417. }
  11418. },
  11419. masculine: {
  11420. height: math.unit(5, "feet"),
  11421. weight: math.unit(100, "lb"),
  11422. name: "Masculine",
  11423. image: {
  11424. source: "./media/characters/sammy-mouse/masculine.svg",
  11425. extra: 2526 / 2425,
  11426. bottom: 0.123
  11427. }
  11428. },
  11429. },
  11430. [
  11431. {
  11432. name: "Micro",
  11433. height: math.unit(5, "inches")
  11434. },
  11435. {
  11436. name: "Normal",
  11437. height: math.unit(5, "feet"),
  11438. default: true
  11439. },
  11440. {
  11441. name: "Macro",
  11442. height: math.unit(60, "feet")
  11443. },
  11444. ]
  11445. ))
  11446. characterMakers.push(() => makeCharacter(
  11447. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11448. {
  11449. front: {
  11450. height: math.unit(4, "feet"),
  11451. weight: math.unit(50, "lb"),
  11452. name: "Front",
  11453. image: {
  11454. source: "./media/characters/kole/front.svg",
  11455. extra: 1423 / 1303,
  11456. bottom: 0.025
  11457. }
  11458. },
  11459. back: {
  11460. height: math.unit(4, "feet"),
  11461. weight: math.unit(50, "lb"),
  11462. name: "Back",
  11463. image: {
  11464. source: "./media/characters/kole/back.svg",
  11465. extra: 1426 / 1280,
  11466. bottom: 0.02
  11467. }
  11468. },
  11469. },
  11470. [
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(4, "feet"),
  11474. default: true
  11475. },
  11476. ]
  11477. ))
  11478. characterMakers.push(() => makeCharacter(
  11479. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11480. {
  11481. front: {
  11482. height: math.unit(2 + 6 / 12, "feet"),
  11483. weight: math.unit(20, "lb"),
  11484. name: "Front",
  11485. image: {
  11486. source: "./media/characters/rufran/front.svg",
  11487. extra: 2041 / 1839,
  11488. bottom: 0.055
  11489. }
  11490. },
  11491. back: {
  11492. height: math.unit(2 + 6 / 12, "feet"),
  11493. weight: math.unit(20, "lb"),
  11494. name: "Back",
  11495. image: {
  11496. source: "./media/characters/rufran/back.svg",
  11497. extra: 2054 / 1839,
  11498. bottom: 0.01
  11499. }
  11500. },
  11501. hand: {
  11502. height: math.unit(0.2166, "meters"),
  11503. name: "Hand",
  11504. image: {
  11505. source: "./media/characters/rufran/hand.svg"
  11506. }
  11507. },
  11508. foot: {
  11509. height: math.unit(0.185, "meters"),
  11510. name: "Foot",
  11511. image: {
  11512. source: "./media/characters/rufran/foot.svg"
  11513. }
  11514. },
  11515. },
  11516. [
  11517. {
  11518. name: "Micro",
  11519. height: math.unit(1, "inch")
  11520. },
  11521. {
  11522. name: "Normal",
  11523. height: math.unit(2 + 6 / 12, "feet"),
  11524. default: true
  11525. },
  11526. {
  11527. name: "Big",
  11528. height: math.unit(60, "feet")
  11529. },
  11530. {
  11531. name: "Macro",
  11532. height: math.unit(325, "feet")
  11533. },
  11534. ]
  11535. ))
  11536. characterMakers.push(() => makeCharacter(
  11537. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11538. {
  11539. front: {
  11540. height: math.unit(0.3, "meters"),
  11541. weight: math.unit(3.5, "kg"),
  11542. name: "Front",
  11543. image: {
  11544. source: "./media/characters/chip/front.svg",
  11545. extra: 748 / 674
  11546. }
  11547. },
  11548. },
  11549. [
  11550. {
  11551. name: "Micro",
  11552. height: math.unit(1, "inch"),
  11553. default: true
  11554. },
  11555. ]
  11556. ))
  11557. characterMakers.push(() => makeCharacter(
  11558. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11559. {
  11560. side: {
  11561. height: math.unit(2.3, "meters"),
  11562. weight: math.unit(3500, "lb"),
  11563. name: "Side",
  11564. image: {
  11565. source: "./media/characters/torvid/side.svg",
  11566. extra: 1972 / 722,
  11567. bottom: 0.035
  11568. }
  11569. },
  11570. },
  11571. [
  11572. {
  11573. name: "Normal",
  11574. height: math.unit(2.3, "meters"),
  11575. default: true
  11576. },
  11577. ]
  11578. ))
  11579. characterMakers.push(() => makeCharacter(
  11580. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11581. {
  11582. front: {
  11583. height: math.unit(2, "meters"),
  11584. weight: math.unit(150.5, "kg"),
  11585. name: "Front",
  11586. image: {
  11587. source: "./media/characters/susan/front.svg",
  11588. extra: 693 / 635,
  11589. bottom: 0.05
  11590. }
  11591. },
  11592. },
  11593. [
  11594. {
  11595. name: "Megamacro",
  11596. height: math.unit(505, "miles"),
  11597. default: true
  11598. },
  11599. ]
  11600. ))
  11601. characterMakers.push(() => makeCharacter(
  11602. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11603. {
  11604. front: {
  11605. height: math.unit(6, "feet"),
  11606. weight: math.unit(150, "lb"),
  11607. name: "Front",
  11608. image: {
  11609. source: "./media/characters/raindrops/front.svg",
  11610. extra: 2655 / 2461,
  11611. bottom: 49 / 2705
  11612. }
  11613. },
  11614. back: {
  11615. height: math.unit(6, "feet"),
  11616. weight: math.unit(150, "lb"),
  11617. name: "Back",
  11618. image: {
  11619. source: "./media/characters/raindrops/back.svg",
  11620. extra: 2574 / 2400,
  11621. bottom: 65 / 2634
  11622. }
  11623. },
  11624. },
  11625. [
  11626. {
  11627. name: "Micro",
  11628. height: math.unit(6, "inches")
  11629. },
  11630. {
  11631. name: "Normal",
  11632. height: math.unit(6 + 2 / 12, "feet")
  11633. },
  11634. {
  11635. name: "Macro",
  11636. height: math.unit(131, "feet"),
  11637. default: true
  11638. },
  11639. {
  11640. name: "Megamacro",
  11641. height: math.unit(15, "miles")
  11642. },
  11643. {
  11644. name: "Gigamacro",
  11645. height: math.unit(4000, "miles")
  11646. },
  11647. {
  11648. name: "Teramacro",
  11649. height: math.unit(315000, "miles")
  11650. },
  11651. ]
  11652. ))
  11653. characterMakers.push(() => makeCharacter(
  11654. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11655. {
  11656. front: {
  11657. height: math.unit(2.794, "meters"),
  11658. weight: math.unit(325, "kg"),
  11659. name: "Front",
  11660. image: {
  11661. source: "./media/characters/tezwa/front.svg",
  11662. extra: 2083 / 1906,
  11663. bottom: 0.031
  11664. }
  11665. },
  11666. foot: {
  11667. height: math.unit(0.687, "meters"),
  11668. name: "Foot",
  11669. image: {
  11670. source: "./media/characters/tezwa/foot.svg"
  11671. }
  11672. },
  11673. },
  11674. [
  11675. {
  11676. name: "Normal",
  11677. height: math.unit(9 + 2 / 12, "feet"),
  11678. default: true
  11679. },
  11680. ]
  11681. ))
  11682. characterMakers.push(() => makeCharacter(
  11683. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11684. {
  11685. front: {
  11686. height: math.unit(58, "feet"),
  11687. weight: math.unit(89000, "lb"),
  11688. name: "Front",
  11689. image: {
  11690. source: "./media/characters/typhus/front.svg",
  11691. extra: 816 / 800,
  11692. bottom: 0.065
  11693. }
  11694. },
  11695. },
  11696. [
  11697. {
  11698. name: "Macro",
  11699. height: math.unit(58, "feet"),
  11700. default: true
  11701. },
  11702. ]
  11703. ))
  11704. characterMakers.push(() => makeCharacter(
  11705. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11706. {
  11707. front: {
  11708. height: math.unit(12, "feet"),
  11709. weight: math.unit(6, "tonnes"),
  11710. name: "Front",
  11711. image: {
  11712. source: "./media/characters/lyra-von-wulf/front.svg",
  11713. extra: 1,
  11714. bottom: 0.10
  11715. }
  11716. },
  11717. frontMecha: {
  11718. height: math.unit(12, "feet"),
  11719. weight: math.unit(12, "tonnes"),
  11720. name: "Front (Mecha)",
  11721. image: {
  11722. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11723. extra: 1,
  11724. bottom: 0.042
  11725. }
  11726. },
  11727. maw: {
  11728. height: math.unit(2.2, "feet"),
  11729. name: "Maw",
  11730. image: {
  11731. source: "./media/characters/lyra-von-wulf/maw.svg"
  11732. }
  11733. },
  11734. },
  11735. [
  11736. {
  11737. name: "Normal",
  11738. height: math.unit(12, "feet"),
  11739. default: true
  11740. },
  11741. {
  11742. name: "Classic",
  11743. height: math.unit(50, "feet")
  11744. },
  11745. {
  11746. name: "Macro",
  11747. height: math.unit(500, "feet")
  11748. },
  11749. {
  11750. name: "Megamacro",
  11751. height: math.unit(1, "mile")
  11752. },
  11753. {
  11754. name: "Gigamacro",
  11755. height: math.unit(400, "miles")
  11756. },
  11757. {
  11758. name: "Teramacro",
  11759. height: math.unit(22000, "miles")
  11760. },
  11761. {
  11762. name: "Solarmacro",
  11763. height: math.unit(8600000, "miles")
  11764. },
  11765. {
  11766. name: "Galactic",
  11767. height: math.unit(1057000, "lightyears")
  11768. },
  11769. ]
  11770. ))
  11771. characterMakers.push(() => makeCharacter(
  11772. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11773. {
  11774. front: {
  11775. height: math.unit(6 + 10 / 12, "feet"),
  11776. weight: math.unit(150, "lb"),
  11777. name: "Front",
  11778. image: {
  11779. source: "./media/characters/dixon/front.svg",
  11780. extra: 3361 / 3209,
  11781. bottom: 0.01
  11782. }
  11783. },
  11784. },
  11785. [
  11786. {
  11787. name: "Normal",
  11788. height: math.unit(6 + 10 / 12, "feet"),
  11789. default: true
  11790. },
  11791. {
  11792. name: "Big",
  11793. height: math.unit(12, "meters")
  11794. },
  11795. {
  11796. name: "Macro",
  11797. height: math.unit(500, "meters")
  11798. },
  11799. {
  11800. name: "Megamacro",
  11801. height: math.unit(2, "km")
  11802. },
  11803. ]
  11804. ))
  11805. characterMakers.push(() => makeCharacter(
  11806. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11807. {
  11808. front: {
  11809. height: math.unit(185, "cm"),
  11810. weight: math.unit(68, "kg"),
  11811. name: "Front",
  11812. image: {
  11813. source: "./media/characters/kauko/front.svg",
  11814. extra: 1455 / 1421,
  11815. bottom: 0.03
  11816. }
  11817. },
  11818. back: {
  11819. height: math.unit(185, "cm"),
  11820. weight: math.unit(68, "kg"),
  11821. name: "Back",
  11822. image: {
  11823. source: "./media/characters/kauko/back.svg",
  11824. extra: 1455 / 1421,
  11825. bottom: 0.004
  11826. }
  11827. },
  11828. },
  11829. [
  11830. {
  11831. name: "Normal",
  11832. height: math.unit(185, "cm"),
  11833. default: true
  11834. },
  11835. ]
  11836. ))
  11837. characterMakers.push(() => makeCharacter(
  11838. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11839. {
  11840. front: {
  11841. height: math.unit(6, "feet"),
  11842. weight: math.unit(150, "kg"),
  11843. name: "Front",
  11844. image: {
  11845. source: "./media/characters/varg/front.svg",
  11846. extra: 1108 / 1018,
  11847. bottom: 0.0375
  11848. }
  11849. },
  11850. },
  11851. [
  11852. {
  11853. name: "Normal",
  11854. height: math.unit(5, "meters")
  11855. },
  11856. {
  11857. name: "Macro",
  11858. height: math.unit(200, "meters")
  11859. },
  11860. {
  11861. name: "Megamacro",
  11862. height: math.unit(20, "kilometers")
  11863. },
  11864. {
  11865. name: "True Size",
  11866. height: math.unit(211, "km"),
  11867. default: true
  11868. },
  11869. {
  11870. name: "Gigamacro",
  11871. height: math.unit(1000, "km")
  11872. },
  11873. {
  11874. name: "Gigamacro+",
  11875. height: math.unit(8000, "km")
  11876. },
  11877. {
  11878. name: "Teramacro",
  11879. height: math.unit(1000000, "km")
  11880. },
  11881. ]
  11882. ))
  11883. characterMakers.push(() => makeCharacter(
  11884. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11885. {
  11886. front: {
  11887. height: math.unit(7 + 7 / 12, "feet"),
  11888. weight: math.unit(267, "lb"),
  11889. name: "Front",
  11890. image: {
  11891. source: "./media/characters/dayza/front.svg",
  11892. extra: 1262 / 1200,
  11893. bottom: 0.035
  11894. }
  11895. },
  11896. side: {
  11897. height: math.unit(7 + 7 / 12, "feet"),
  11898. weight: math.unit(267, "lb"),
  11899. name: "Side",
  11900. image: {
  11901. source: "./media/characters/dayza/side.svg",
  11902. extra: 1295 / 1245,
  11903. bottom: 0.05
  11904. }
  11905. },
  11906. back: {
  11907. height: math.unit(7 + 7 / 12, "feet"),
  11908. weight: math.unit(267, "lb"),
  11909. name: "Back",
  11910. image: {
  11911. source: "./media/characters/dayza/back.svg",
  11912. extra: 1241 / 1170
  11913. }
  11914. },
  11915. },
  11916. [
  11917. {
  11918. name: "Normal",
  11919. height: math.unit(7 + 7 / 12, "feet"),
  11920. default: true
  11921. },
  11922. {
  11923. name: "Macro",
  11924. height: math.unit(155, "feet")
  11925. },
  11926. ]
  11927. ))
  11928. characterMakers.push(() => makeCharacter(
  11929. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11930. {
  11931. front: {
  11932. height: math.unit(6 + 5 / 12, "feet"),
  11933. weight: math.unit(160, "lb"),
  11934. name: "Front",
  11935. image: {
  11936. source: "./media/characters/xanthos/front.svg",
  11937. extra: 1,
  11938. bottom: 0.04
  11939. }
  11940. },
  11941. back: {
  11942. height: math.unit(6 + 5 / 12, "feet"),
  11943. weight: math.unit(160, "lb"),
  11944. name: "Back",
  11945. image: {
  11946. source: "./media/characters/xanthos/back.svg",
  11947. extra: 1,
  11948. bottom: 0.03
  11949. }
  11950. },
  11951. hand: {
  11952. height: math.unit(0.928, "feet"),
  11953. name: "Hand",
  11954. image: {
  11955. source: "./media/characters/xanthos/hand.svg"
  11956. }
  11957. },
  11958. foot: {
  11959. height: math.unit(1.286, "feet"),
  11960. name: "Foot",
  11961. image: {
  11962. source: "./media/characters/xanthos/foot.svg"
  11963. }
  11964. },
  11965. },
  11966. [
  11967. {
  11968. name: "Normal",
  11969. height: math.unit(6 + 5 / 12, "feet"),
  11970. default: true
  11971. },
  11972. {
  11973. name: "Normal+",
  11974. height: math.unit(6, "meters")
  11975. },
  11976. {
  11977. name: "Macro",
  11978. height: math.unit(40, "feet")
  11979. },
  11980. {
  11981. name: "Macro+",
  11982. height: math.unit(200, "meters")
  11983. },
  11984. {
  11985. name: "Megamacro",
  11986. height: math.unit(20, "km")
  11987. },
  11988. {
  11989. name: "Megamacro+",
  11990. height: math.unit(100, "km")
  11991. },
  11992. ]
  11993. ))
  11994. characterMakers.push(() => makeCharacter(
  11995. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11996. {
  11997. front: {
  11998. height: math.unit(6 + 3 / 12, "feet"),
  11999. weight: math.unit(215, "lb"),
  12000. name: "Front",
  12001. image: {
  12002. source: "./media/characters/grynn/front.svg",
  12003. extra: 4627 / 4209,
  12004. bottom: 0.047
  12005. }
  12006. },
  12007. },
  12008. [
  12009. {
  12010. name: "Micro",
  12011. height: math.unit(6, "inches")
  12012. },
  12013. {
  12014. name: "Normal",
  12015. height: math.unit(6 + 3 / 12, "feet"),
  12016. default: true
  12017. },
  12018. {
  12019. name: "Big",
  12020. height: math.unit(104, "feet")
  12021. },
  12022. {
  12023. name: "Macro",
  12024. height: math.unit(944, "feet")
  12025. },
  12026. {
  12027. name: "Macro+",
  12028. height: math.unit(9480, "feet")
  12029. },
  12030. {
  12031. name: "Megamacro",
  12032. height: math.unit(78752, "feet")
  12033. },
  12034. {
  12035. name: "Megamacro+",
  12036. height: math.unit(630128, "feet")
  12037. },
  12038. {
  12039. name: "Megamacro++",
  12040. height: math.unit(3150695, "feet")
  12041. },
  12042. ]
  12043. ))
  12044. characterMakers.push(() => makeCharacter(
  12045. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12046. {
  12047. front: {
  12048. height: math.unit(7 + 5 / 12, "feet"),
  12049. weight: math.unit(450, "lb"),
  12050. name: "Front",
  12051. image: {
  12052. source: "./media/characters/mocha-aura/front.svg",
  12053. extra: 1907 / 1817,
  12054. bottom: 0.04
  12055. }
  12056. },
  12057. back: {
  12058. height: math.unit(7 + 5 / 12, "feet"),
  12059. weight: math.unit(450, "lb"),
  12060. name: "Back",
  12061. image: {
  12062. source: "./media/characters/mocha-aura/back.svg",
  12063. extra: 1900 / 1825,
  12064. bottom: 0.045
  12065. }
  12066. },
  12067. },
  12068. [
  12069. {
  12070. name: "Nano",
  12071. height: math.unit(1, "nm")
  12072. },
  12073. {
  12074. name: "Megamicro",
  12075. height: math.unit(1, "mm")
  12076. },
  12077. {
  12078. name: "Micro",
  12079. height: math.unit(3, "inches")
  12080. },
  12081. {
  12082. name: "Normal",
  12083. height: math.unit(7 + 5 / 12, "feet"),
  12084. default: true
  12085. },
  12086. {
  12087. name: "Macro",
  12088. height: math.unit(30, "feet")
  12089. },
  12090. {
  12091. name: "Megamacro",
  12092. height: math.unit(3500, "feet")
  12093. },
  12094. {
  12095. name: "Teramacro",
  12096. height: math.unit(500000, "miles")
  12097. },
  12098. {
  12099. name: "Petamacro",
  12100. height: math.unit(50000000000000000, "parsecs")
  12101. },
  12102. ]
  12103. ))
  12104. characterMakers.push(() => makeCharacter(
  12105. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12106. {
  12107. front: {
  12108. height: math.unit(6, "feet"),
  12109. weight: math.unit(150, "lb"),
  12110. name: "Front",
  12111. image: {
  12112. source: "./media/characters/ilisha-devya/front.svg",
  12113. extra: 1,
  12114. bottom: 0.175
  12115. }
  12116. },
  12117. back: {
  12118. height: math.unit(6, "feet"),
  12119. weight: math.unit(150, "lb"),
  12120. name: "Back",
  12121. image: {
  12122. source: "./media/characters/ilisha-devya/back.svg",
  12123. extra: 1,
  12124. bottom: 0.015
  12125. }
  12126. },
  12127. },
  12128. [
  12129. {
  12130. name: "Macro",
  12131. height: math.unit(500, "feet"),
  12132. default: true
  12133. },
  12134. {
  12135. name: "Megamacro",
  12136. height: math.unit(10, "miles")
  12137. },
  12138. {
  12139. name: "Gigamacro",
  12140. height: math.unit(100000, "miles")
  12141. },
  12142. {
  12143. name: "Examacro",
  12144. height: math.unit(1e9, "lightyears")
  12145. },
  12146. {
  12147. name: "Omniversal",
  12148. height: math.unit(1e33, "lightyears")
  12149. },
  12150. {
  12151. name: "Beyond Infinite",
  12152. height: math.unit(1e100, "lightyears")
  12153. },
  12154. ]
  12155. ))
  12156. characterMakers.push(() => makeCharacter(
  12157. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12158. {
  12159. Side: {
  12160. height: math.unit(6, "feet"),
  12161. weight: math.unit(150, "lb"),
  12162. name: "Side",
  12163. image: {
  12164. source: "./media/characters/mira/side.svg",
  12165. extra: 900 / 799,
  12166. bottom: 0.02
  12167. }
  12168. },
  12169. },
  12170. [
  12171. {
  12172. name: "Human Size",
  12173. height: math.unit(6, "feet")
  12174. },
  12175. {
  12176. name: "Macro",
  12177. height: math.unit(100, "feet"),
  12178. default: true
  12179. },
  12180. {
  12181. name: "Megamacro",
  12182. height: math.unit(10, "miles")
  12183. },
  12184. {
  12185. name: "Gigamacro",
  12186. height: math.unit(25000, "miles")
  12187. },
  12188. {
  12189. name: "Teramacro",
  12190. height: math.unit(300, "AU")
  12191. },
  12192. {
  12193. name: "Full Size",
  12194. height: math.unit(4.5e10, "lightyears")
  12195. },
  12196. ]
  12197. ))
  12198. characterMakers.push(() => makeCharacter(
  12199. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12200. {
  12201. front: {
  12202. height: math.unit(6, "feet"),
  12203. weight: math.unit(150, "lb"),
  12204. name: "Front",
  12205. image: {
  12206. source: "./media/characters/holly/front.svg",
  12207. extra: 639 / 606
  12208. }
  12209. },
  12210. back: {
  12211. height: math.unit(6, "feet"),
  12212. weight: math.unit(150, "lb"),
  12213. name: "Back",
  12214. image: {
  12215. source: "./media/characters/holly/back.svg",
  12216. extra: 623 / 598
  12217. }
  12218. },
  12219. frontWorking: {
  12220. height: math.unit(6, "feet"),
  12221. weight: math.unit(150, "lb"),
  12222. name: "Front (Working)",
  12223. image: {
  12224. source: "./media/characters/holly/front-working.svg",
  12225. extra: 607 / 577,
  12226. bottom: 0.048
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Normal",
  12233. height: math.unit(12 + 3 / 12, "feet"),
  12234. default: true
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(6, "feet"),
  12243. weight: math.unit(150, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/porter/front.svg",
  12247. extra: 1,
  12248. bottom: 0.01
  12249. }
  12250. },
  12251. frontRobes: {
  12252. height: math.unit(6, "feet"),
  12253. weight: math.unit(150, "lb"),
  12254. name: "Front (Robes)",
  12255. image: {
  12256. source: "./media/characters/porter/front-robes.svg",
  12257. extra: 1.01,
  12258. bottom: 0.01
  12259. }
  12260. },
  12261. },
  12262. [
  12263. {
  12264. name: "Normal",
  12265. height: math.unit(11 + 9 / 12, "feet"),
  12266. default: true
  12267. },
  12268. ]
  12269. ))
  12270. characterMakers.push(() => makeCharacter(
  12271. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12272. {
  12273. legendary: {
  12274. height: math.unit(6, "feet"),
  12275. weight: math.unit(150, "lb"),
  12276. name: "Legendary",
  12277. image: {
  12278. source: "./media/characters/lucy/legendary.svg",
  12279. extra: 1355 / 1100,
  12280. bottom: 0.045
  12281. }
  12282. },
  12283. },
  12284. [
  12285. {
  12286. name: "Legendary",
  12287. height: math.unit(86882 * 2, "miles"),
  12288. default: true
  12289. },
  12290. ]
  12291. ))
  12292. characterMakers.push(() => makeCharacter(
  12293. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12294. {
  12295. front: {
  12296. height: math.unit(6, "feet"),
  12297. weight: math.unit(150, "lb"),
  12298. name: "Front",
  12299. image: {
  12300. source: "./media/characters/drusilla/front.svg",
  12301. extra: 678 / 635,
  12302. bottom: 0.03
  12303. }
  12304. },
  12305. back: {
  12306. height: math.unit(6, "feet"),
  12307. weight: math.unit(150, "lb"),
  12308. name: "Back",
  12309. image: {
  12310. source: "./media/characters/drusilla/back.svg",
  12311. extra: 678 / 635,
  12312. bottom: 0.005
  12313. }
  12314. },
  12315. },
  12316. [
  12317. {
  12318. name: "Macro",
  12319. height: math.unit(100, "feet")
  12320. },
  12321. {
  12322. name: "Canon Height",
  12323. height: math.unit(2000, "feet"),
  12324. default: true
  12325. },
  12326. ]
  12327. ))
  12328. characterMakers.push(() => makeCharacter(
  12329. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12330. {
  12331. front: {
  12332. height: math.unit(6, "feet"),
  12333. weight: math.unit(180, "lb"),
  12334. name: "Front",
  12335. image: {
  12336. source: "./media/characters/renard-thatch/front.svg",
  12337. extra: 2411 / 2275,
  12338. bottom: 0.01
  12339. }
  12340. },
  12341. frontPosing: {
  12342. height: math.unit(6, "feet"),
  12343. weight: math.unit(180, "lb"),
  12344. name: "Front (Posing)",
  12345. image: {
  12346. source: "./media/characters/renard-thatch/front-posing.svg",
  12347. extra: 2381 / 2261,
  12348. bottom: 0.01
  12349. }
  12350. },
  12351. back: {
  12352. height: math.unit(6, "feet"),
  12353. weight: math.unit(180, "lb"),
  12354. name: "Back",
  12355. image: {
  12356. source: "./media/characters/renard-thatch/back.svg",
  12357. extra: 2428 / 2288
  12358. }
  12359. },
  12360. },
  12361. [
  12362. {
  12363. name: "Micro",
  12364. height: math.unit(3, "inches")
  12365. },
  12366. {
  12367. name: "Default",
  12368. height: math.unit(6, "feet"),
  12369. default: true
  12370. },
  12371. {
  12372. name: "Macro",
  12373. height: math.unit(75, "feet")
  12374. },
  12375. ]
  12376. ))
  12377. characterMakers.push(() => makeCharacter(
  12378. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12379. {
  12380. front: {
  12381. height: math.unit(1450, "feet"),
  12382. weight: math.unit(1.21e6, "tons"),
  12383. name: "Front",
  12384. image: {
  12385. source: "./media/characters/sekvra/front.svg",
  12386. extra: 1,
  12387. bottom: 0.03
  12388. }
  12389. },
  12390. frontClothed: {
  12391. height: math.unit(1450, "feet"),
  12392. weight: math.unit(1.21e6, "tons"),
  12393. name: "Front (Clothed)",
  12394. image: {
  12395. source: "./media/characters/sekvra/front-clothed.svg",
  12396. extra: 1,
  12397. bottom: 0.03
  12398. }
  12399. },
  12400. side: {
  12401. height: math.unit(1450, "feet"),
  12402. weight: math.unit(1.21e6, "tons"),
  12403. name: "Side",
  12404. image: {
  12405. source: "./media/characters/sekvra/side.svg",
  12406. extra: 1,
  12407. bottom: 0.025
  12408. }
  12409. },
  12410. back: {
  12411. height: math.unit(1450, "feet"),
  12412. weight: math.unit(1.21e6, "tons"),
  12413. name: "Back",
  12414. image: {
  12415. source: "./media/characters/sekvra/back.svg",
  12416. extra: 1,
  12417. bottom: 0.005
  12418. }
  12419. },
  12420. },
  12421. [
  12422. {
  12423. name: "Macro",
  12424. height: math.unit(1450, "feet"),
  12425. default: true
  12426. },
  12427. {
  12428. name: "Megamacro",
  12429. height: math.unit(15000, "feet")
  12430. },
  12431. ]
  12432. ))
  12433. characterMakers.push(() => makeCharacter(
  12434. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12435. {
  12436. front: {
  12437. height: math.unit(6, "feet"),
  12438. weight: math.unit(150, "lb"),
  12439. name: "Front",
  12440. image: {
  12441. source: "./media/characters/carmine/front.svg",
  12442. extra: 1,
  12443. bottom: 0.035
  12444. }
  12445. },
  12446. frontArmor: {
  12447. height: math.unit(6, "feet"),
  12448. weight: math.unit(150, "lb"),
  12449. name: "Front (Armor)",
  12450. image: {
  12451. source: "./media/characters/carmine/front-armor.svg",
  12452. extra: 1,
  12453. bottom: 0.035
  12454. }
  12455. },
  12456. },
  12457. [
  12458. {
  12459. name: "Large",
  12460. height: math.unit(1, "mile")
  12461. },
  12462. {
  12463. name: "Huge",
  12464. height: math.unit(40, "miles"),
  12465. default: true
  12466. },
  12467. {
  12468. name: "Colossal",
  12469. height: math.unit(2500, "miles")
  12470. },
  12471. ]
  12472. ))
  12473. characterMakers.push(() => makeCharacter(
  12474. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12475. {
  12476. front: {
  12477. height: math.unit(6, "feet"),
  12478. weight: math.unit(150, "lb"),
  12479. name: "Front",
  12480. image: {
  12481. source: "./media/characters/elyssia/front.svg",
  12482. extra: 2201 / 2035,
  12483. bottom: 0.05
  12484. }
  12485. },
  12486. frontClothed: {
  12487. height: math.unit(6, "feet"),
  12488. weight: math.unit(150, "lb"),
  12489. name: "Front (Clothed)",
  12490. image: {
  12491. source: "./media/characters/elyssia/front-clothed.svg",
  12492. extra: 2201 / 2035,
  12493. bottom: 0.05
  12494. }
  12495. },
  12496. back: {
  12497. height: math.unit(6, "feet"),
  12498. weight: math.unit(150, "lb"),
  12499. name: "Back",
  12500. image: {
  12501. source: "./media/characters/elyssia/back.svg",
  12502. extra: 2201 / 2035,
  12503. bottom: 0.013
  12504. }
  12505. },
  12506. },
  12507. [
  12508. {
  12509. name: "Smaller",
  12510. height: math.unit(150, "feet")
  12511. },
  12512. {
  12513. name: "Standard",
  12514. height: math.unit(1400, "feet"),
  12515. default: true
  12516. },
  12517. {
  12518. name: "Distracted",
  12519. height: math.unit(15000, "feet")
  12520. },
  12521. ]
  12522. ))
  12523. characterMakers.push(() => makeCharacter(
  12524. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12525. {
  12526. front: {
  12527. height: math.unit(7 + 4 / 12, "feet"),
  12528. weight: math.unit(500, "lb"),
  12529. name: "Front",
  12530. image: {
  12531. source: "./media/characters/geno-maxwell/front.svg",
  12532. extra: 2207 / 2040,
  12533. bottom: 0.015
  12534. }
  12535. },
  12536. },
  12537. [
  12538. {
  12539. name: "Micro",
  12540. height: math.unit(3, "inches")
  12541. },
  12542. {
  12543. name: "Normal",
  12544. height: math.unit(7 + 4 / 12, "feet"),
  12545. default: true
  12546. },
  12547. {
  12548. name: "Macro",
  12549. height: math.unit(220, "feet")
  12550. },
  12551. {
  12552. name: "Megamacro",
  12553. height: math.unit(11, "miles")
  12554. },
  12555. ]
  12556. ))
  12557. characterMakers.push(() => makeCharacter(
  12558. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12559. {
  12560. front: {
  12561. height: math.unit(7 + 4 / 12, "feet"),
  12562. weight: math.unit(500, "lb"),
  12563. name: "Front",
  12564. image: {
  12565. source: "./media/characters/regena-maxwell/front.svg",
  12566. extra: 3115 / 2770,
  12567. bottom: 0.02
  12568. }
  12569. },
  12570. },
  12571. [
  12572. {
  12573. name: "Normal",
  12574. height: math.unit(7 + 4 / 12, "feet"),
  12575. default: true
  12576. },
  12577. {
  12578. name: "Macro",
  12579. height: math.unit(220, "feet")
  12580. },
  12581. {
  12582. name: "Megamacro",
  12583. height: math.unit(11, "miles")
  12584. },
  12585. ]
  12586. ))
  12587. characterMakers.push(() => makeCharacter(
  12588. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12589. {
  12590. front: {
  12591. height: math.unit(6, "feet"),
  12592. weight: math.unit(150, "lb"),
  12593. name: "Front",
  12594. image: {
  12595. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12596. extra: 860 / 690,
  12597. bottom: 0.03
  12598. }
  12599. },
  12600. },
  12601. [
  12602. {
  12603. name: "Normal",
  12604. height: math.unit(1.7, "meters"),
  12605. default: true
  12606. },
  12607. ]
  12608. ))
  12609. characterMakers.push(() => makeCharacter(
  12610. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12611. {
  12612. front: {
  12613. height: math.unit(6, "feet"),
  12614. weight: math.unit(150, "lb"),
  12615. name: "Front",
  12616. image: {
  12617. source: "./media/characters/quilly/front.svg",
  12618. extra: 890 / 776
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Gigamacro",
  12625. height: math.unit(404090, "miles"),
  12626. default: true
  12627. },
  12628. ]
  12629. ))
  12630. characterMakers.push(() => makeCharacter(
  12631. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12632. {
  12633. front: {
  12634. height: math.unit(7 + 8 / 12, "feet"),
  12635. weight: math.unit(350, "lb"),
  12636. name: "Front",
  12637. image: {
  12638. source: "./media/characters/tempest/front.svg",
  12639. extra: 1175 / 1086,
  12640. bottom: 0.02
  12641. }
  12642. },
  12643. },
  12644. [
  12645. {
  12646. name: "Normal",
  12647. height: math.unit(7 + 8 / 12, "feet"),
  12648. default: true
  12649. },
  12650. ]
  12651. ))
  12652. characterMakers.push(() => makeCharacter(
  12653. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12654. {
  12655. side: {
  12656. height: math.unit(4 + 5 / 12, "feet"),
  12657. weight: math.unit(80, "lb"),
  12658. name: "Side",
  12659. image: {
  12660. source: "./media/characters/rodger/side.svg",
  12661. extra: 1235 / 1118
  12662. }
  12663. },
  12664. },
  12665. [
  12666. {
  12667. name: "Micro",
  12668. height: math.unit(1, "inch")
  12669. },
  12670. {
  12671. name: "Normal",
  12672. height: math.unit(4 + 5 / 12, "feet"),
  12673. default: true
  12674. },
  12675. {
  12676. name: "Macro",
  12677. height: math.unit(120, "feet")
  12678. },
  12679. ]
  12680. ))
  12681. characterMakers.push(() => makeCharacter(
  12682. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12683. {
  12684. front: {
  12685. height: math.unit(6, "feet"),
  12686. weight: math.unit(150, "lb"),
  12687. name: "Front",
  12688. image: {
  12689. source: "./media/characters/danyel/front.svg",
  12690. extra: 1185 / 1123,
  12691. bottom: 0.05
  12692. }
  12693. },
  12694. },
  12695. [
  12696. {
  12697. name: "Shrunken",
  12698. height: math.unit(0.5, "mm")
  12699. },
  12700. {
  12701. name: "Micro",
  12702. height: math.unit(1, "mm"),
  12703. default: true
  12704. },
  12705. {
  12706. name: "Upsized",
  12707. height: math.unit(5 + 5 / 12, "feet")
  12708. },
  12709. ]
  12710. ))
  12711. characterMakers.push(() => makeCharacter(
  12712. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12713. {
  12714. front: {
  12715. height: math.unit(5 + 6 / 12, "feet"),
  12716. weight: math.unit(200, "lb"),
  12717. name: "Front",
  12718. image: {
  12719. source: "./media/characters/vivian-bijoux/front.svg",
  12720. extra: 1,
  12721. bottom: 0.072
  12722. }
  12723. },
  12724. },
  12725. [
  12726. {
  12727. name: "Normal",
  12728. height: math.unit(5 + 6 / 12, "feet"),
  12729. default: true
  12730. },
  12731. {
  12732. name: "Bad Dream",
  12733. height: math.unit(500, "feet")
  12734. },
  12735. {
  12736. name: "Nightmare",
  12737. height: math.unit(500, "miles")
  12738. },
  12739. ]
  12740. ))
  12741. characterMakers.push(() => makeCharacter(
  12742. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12743. {
  12744. front: {
  12745. height: math.unit(6 + 1 / 12, "feet"),
  12746. weight: math.unit(260, "lb"),
  12747. name: "Front",
  12748. image: {
  12749. source: "./media/characters/zeta/front.svg",
  12750. extra: 1968 / 1889,
  12751. bottom: 0.06
  12752. }
  12753. },
  12754. back: {
  12755. height: math.unit(6 + 1 / 12, "feet"),
  12756. weight: math.unit(260, "lb"),
  12757. name: "Back",
  12758. image: {
  12759. source: "./media/characters/zeta/back.svg",
  12760. extra: 1944 / 1858,
  12761. bottom: 0.03
  12762. }
  12763. },
  12764. hand: {
  12765. height: math.unit(1.112, "feet"),
  12766. name: "Hand",
  12767. image: {
  12768. source: "./media/characters/zeta/hand.svg"
  12769. }
  12770. },
  12771. foot: {
  12772. height: math.unit(1.48, "feet"),
  12773. name: "Foot",
  12774. image: {
  12775. source: "./media/characters/zeta/foot.svg"
  12776. }
  12777. },
  12778. },
  12779. [
  12780. {
  12781. name: "Micro",
  12782. height: math.unit(6, "inches")
  12783. },
  12784. {
  12785. name: "Normal",
  12786. height: math.unit(6 + 1 / 12, "feet"),
  12787. default: true
  12788. },
  12789. {
  12790. name: "Macro",
  12791. height: math.unit(20, "feet")
  12792. },
  12793. ]
  12794. ))
  12795. characterMakers.push(() => makeCharacter(
  12796. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12797. {
  12798. front: {
  12799. height: math.unit(6, "feet"),
  12800. weight: math.unit(150, "lb"),
  12801. name: "Front",
  12802. image: {
  12803. source: "./media/characters/jamie-larsen/front.svg",
  12804. extra: 962 / 933,
  12805. bottom: 0.02
  12806. }
  12807. },
  12808. back: {
  12809. height: math.unit(6, "feet"),
  12810. weight: math.unit(150, "lb"),
  12811. name: "Back",
  12812. image: {
  12813. source: "./media/characters/jamie-larsen/back.svg",
  12814. extra: 997 / 946
  12815. }
  12816. },
  12817. },
  12818. [
  12819. {
  12820. name: "Macro",
  12821. height: math.unit(28 + 7 / 12, "feet"),
  12822. default: true
  12823. },
  12824. {
  12825. name: "Macro+",
  12826. height: math.unit(180, "feet")
  12827. },
  12828. {
  12829. name: "Megamacro",
  12830. height: math.unit(10, "miles")
  12831. },
  12832. {
  12833. name: "Gigamacro",
  12834. height: math.unit(200000, "miles")
  12835. },
  12836. ]
  12837. ))
  12838. characterMakers.push(() => makeCharacter(
  12839. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12840. {
  12841. front: {
  12842. height: math.unit(6, "feet"),
  12843. weight: math.unit(120, "lb"),
  12844. name: "Front",
  12845. image: {
  12846. source: "./media/characters/vance/front.svg",
  12847. extra: 1980 / 1890,
  12848. bottom: 0.09
  12849. }
  12850. },
  12851. back: {
  12852. height: math.unit(6, "feet"),
  12853. weight: math.unit(120, "lb"),
  12854. name: "Back",
  12855. image: {
  12856. source: "./media/characters/vance/back.svg",
  12857. extra: 2081 / 1994,
  12858. bottom: 0.014
  12859. }
  12860. },
  12861. hand: {
  12862. height: math.unit(0.88, "feet"),
  12863. name: "Hand",
  12864. image: {
  12865. source: "./media/characters/vance/hand.svg"
  12866. }
  12867. },
  12868. foot: {
  12869. height: math.unit(0.64, "feet"),
  12870. name: "Foot",
  12871. image: {
  12872. source: "./media/characters/vance/foot.svg"
  12873. }
  12874. },
  12875. },
  12876. [
  12877. {
  12878. name: "Small",
  12879. height: math.unit(90, "feet"),
  12880. default: true
  12881. },
  12882. {
  12883. name: "Macro",
  12884. height: math.unit(100, "meters")
  12885. },
  12886. {
  12887. name: "Megamacro",
  12888. height: math.unit(15, "miles")
  12889. },
  12890. ]
  12891. ))
  12892. characterMakers.push(() => makeCharacter(
  12893. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12894. {
  12895. front: {
  12896. height: math.unit(6, "feet"),
  12897. weight: math.unit(180, "lb"),
  12898. name: "Front",
  12899. image: {
  12900. source: "./media/characters/xochitl/front.svg",
  12901. extra: 2297 / 2261,
  12902. bottom: 0.065
  12903. }
  12904. },
  12905. back: {
  12906. height: math.unit(6, "feet"),
  12907. weight: math.unit(180, "lb"),
  12908. name: "Back",
  12909. image: {
  12910. source: "./media/characters/xochitl/back.svg",
  12911. extra: 2386 / 2354,
  12912. bottom: 0.01
  12913. }
  12914. },
  12915. foot: {
  12916. height: math.unit(6 / 5 * 1.15, "feet"),
  12917. weight: math.unit(150, "lb"),
  12918. name: "Foot",
  12919. image: {
  12920. source: "./media/characters/xochitl/foot.svg"
  12921. }
  12922. },
  12923. },
  12924. [
  12925. {
  12926. name: "Macro",
  12927. height: math.unit(80, "feet")
  12928. },
  12929. {
  12930. name: "Macro+",
  12931. height: math.unit(400, "feet"),
  12932. default: true
  12933. },
  12934. {
  12935. name: "Gigamacro",
  12936. height: math.unit(80000, "miles")
  12937. },
  12938. {
  12939. name: "Gigamacro+",
  12940. height: math.unit(400000, "miles")
  12941. },
  12942. {
  12943. name: "Teramacro",
  12944. height: math.unit(300, "AU")
  12945. },
  12946. ]
  12947. ))
  12948. characterMakers.push(() => makeCharacter(
  12949. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12950. {
  12951. front: {
  12952. height: math.unit(6, "feet"),
  12953. weight: math.unit(150, "lb"),
  12954. name: "Front",
  12955. image: {
  12956. source: "./media/characters/vincent/front.svg",
  12957. extra: 1130 / 1080,
  12958. bottom: 0.055
  12959. }
  12960. },
  12961. beak: {
  12962. height: math.unit(6 * 0.1, "feet"),
  12963. name: "Beak",
  12964. image: {
  12965. source: "./media/characters/vincent/beak.svg"
  12966. }
  12967. },
  12968. hand: {
  12969. height: math.unit(6 * 0.85, "feet"),
  12970. weight: math.unit(150, "lb"),
  12971. name: "Hand",
  12972. image: {
  12973. source: "./media/characters/vincent/hand.svg"
  12974. }
  12975. },
  12976. foot: {
  12977. height: math.unit(6 * 0.19, "feet"),
  12978. weight: math.unit(150, "lb"),
  12979. name: "Foot",
  12980. image: {
  12981. source: "./media/characters/vincent/foot.svg"
  12982. }
  12983. },
  12984. },
  12985. [
  12986. {
  12987. name: "Base",
  12988. height: math.unit(6 + 5 / 12, "feet"),
  12989. default: true
  12990. },
  12991. {
  12992. name: "Macro",
  12993. height: math.unit(300, "feet")
  12994. },
  12995. {
  12996. name: "Megamacro",
  12997. height: math.unit(2, "miles")
  12998. },
  12999. {
  13000. name: "Gigamacro",
  13001. height: math.unit(1000, "miles")
  13002. },
  13003. ]
  13004. ))
  13005. characterMakers.push(() => makeCharacter(
  13006. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13007. {
  13008. front: {
  13009. height: math.unit(6 + 2 / 12, "feet"),
  13010. weight: math.unit(265, "lb"),
  13011. name: "Front",
  13012. image: {
  13013. source: "./media/characters/jay/front.svg",
  13014. extra: 1510 / 1430,
  13015. bottom: 0.042
  13016. }
  13017. },
  13018. back: {
  13019. height: math.unit(6 + 2 / 12, "feet"),
  13020. weight: math.unit(265, "lb"),
  13021. name: "Back",
  13022. image: {
  13023. source: "./media/characters/jay/back.svg",
  13024. extra: 1510 / 1430,
  13025. bottom: 0.025
  13026. }
  13027. },
  13028. clothed: {
  13029. height: math.unit(6 + 2 / 12, "feet"),
  13030. weight: math.unit(265, "lb"),
  13031. name: "Front (Clothed)",
  13032. image: {
  13033. source: "./media/characters/jay/clothed.svg",
  13034. extra: 744 / 699,
  13035. bottom: 0.043
  13036. }
  13037. },
  13038. head: {
  13039. height: math.unit(1.772, "feet"),
  13040. name: "Head",
  13041. image: {
  13042. source: "./media/characters/jay/head.svg"
  13043. }
  13044. },
  13045. sizeRay: {
  13046. height: math.unit(1.331, "feet"),
  13047. name: "Size Ray",
  13048. image: {
  13049. source: "./media/characters/jay/size-ray.svg"
  13050. }
  13051. },
  13052. },
  13053. [
  13054. {
  13055. name: "Micro",
  13056. height: math.unit(1, "inch")
  13057. },
  13058. {
  13059. name: "Normal",
  13060. height: math.unit(6 + 2 / 12, "feet"),
  13061. default: true
  13062. },
  13063. {
  13064. name: "Macro",
  13065. height: math.unit(1, "mile")
  13066. },
  13067. {
  13068. name: "Megamacro",
  13069. height: math.unit(100, "miles")
  13070. },
  13071. ]
  13072. ))
  13073. characterMakers.push(() => makeCharacter(
  13074. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13075. {
  13076. front: {
  13077. height: math.unit(2, "meters"),
  13078. weight: math.unit(500, "kg"),
  13079. name: "Front",
  13080. image: {
  13081. source: "./media/characters/coatl/front.svg",
  13082. extra: 3948 / 3500,
  13083. bottom: 0.082
  13084. }
  13085. },
  13086. },
  13087. [
  13088. {
  13089. name: "Normal",
  13090. height: math.unit(4, "meters")
  13091. },
  13092. {
  13093. name: "Macro",
  13094. height: math.unit(100, "meters"),
  13095. default: true
  13096. },
  13097. {
  13098. name: "Macro+",
  13099. height: math.unit(300, "meters")
  13100. },
  13101. {
  13102. name: "Megamacro",
  13103. height: math.unit(3, "gigameters")
  13104. },
  13105. {
  13106. name: "Megamacro+",
  13107. height: math.unit(300, "terameters")
  13108. },
  13109. {
  13110. name: "Megamacro++",
  13111. height: math.unit(3, "lightyears")
  13112. },
  13113. ]
  13114. ))
  13115. characterMakers.push(() => makeCharacter(
  13116. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13117. {
  13118. front: {
  13119. height: math.unit(6, "feet"),
  13120. weight: math.unit(50, "kg"),
  13121. name: "front",
  13122. image: {
  13123. source: "./media/characters/shiroryu/front.svg",
  13124. extra: 1990 / 1935
  13125. }
  13126. },
  13127. },
  13128. [
  13129. {
  13130. name: "Mortal Mingling",
  13131. height: math.unit(3, "meters")
  13132. },
  13133. {
  13134. name: "Kaiju-ish",
  13135. height: math.unit(250, "meters")
  13136. },
  13137. {
  13138. name: "Somewhat Godly",
  13139. height: math.unit(400, "km"),
  13140. default: true
  13141. },
  13142. {
  13143. name: "Planetary",
  13144. height: math.unit(300, "megameters")
  13145. },
  13146. {
  13147. name: "Galaxy-dwarfing",
  13148. height: math.unit(450, "kiloparsecs")
  13149. },
  13150. {
  13151. name: "Universe Eater",
  13152. height: math.unit(150, "gigaparsecs")
  13153. },
  13154. {
  13155. name: "Almost Immeasurable",
  13156. height: math.unit(1.3e266, "yottaparsecs")
  13157. },
  13158. ]
  13159. ))
  13160. characterMakers.push(() => makeCharacter(
  13161. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13162. {
  13163. front: {
  13164. height: math.unit(6, "feet"),
  13165. weight: math.unit(150, "lb"),
  13166. name: "Front",
  13167. image: {
  13168. source: "./media/characters/umeko/front.svg",
  13169. extra: 1,
  13170. bottom: 0.019
  13171. }
  13172. },
  13173. frontArmored: {
  13174. height: math.unit(6, "feet"),
  13175. weight: math.unit(150, "lb"),
  13176. name: "Front (Armored)",
  13177. image: {
  13178. source: "./media/characters/umeko/front-armored.svg",
  13179. extra: 1,
  13180. bottom: 0.021
  13181. }
  13182. },
  13183. },
  13184. [
  13185. {
  13186. name: "Macro",
  13187. height: math.unit(220, "feet"),
  13188. default: true
  13189. },
  13190. {
  13191. name: "Guardian Dragon",
  13192. height: math.unit(50, "miles")
  13193. },
  13194. {
  13195. name: "Cosmic",
  13196. height: math.unit(800000, "miles")
  13197. },
  13198. ]
  13199. ))
  13200. characterMakers.push(() => makeCharacter(
  13201. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13202. {
  13203. front: {
  13204. height: math.unit(6, "feet"),
  13205. weight: math.unit(150, "lb"),
  13206. name: "Front",
  13207. image: {
  13208. source: "./media/characters/cassidy/front.svg",
  13209. extra: 1,
  13210. bottom: 0.043
  13211. }
  13212. },
  13213. },
  13214. [
  13215. {
  13216. name: "Canon Height",
  13217. height: math.unit(120, "feet"),
  13218. default: true
  13219. },
  13220. {
  13221. name: "Macro+",
  13222. height: math.unit(400, "feet")
  13223. },
  13224. {
  13225. name: "Macro++",
  13226. height: math.unit(4000, "feet")
  13227. },
  13228. {
  13229. name: "Megamacro",
  13230. height: math.unit(3, "miles")
  13231. },
  13232. ]
  13233. ))
  13234. characterMakers.push(() => makeCharacter(
  13235. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13236. {
  13237. front: {
  13238. height: math.unit(6, "feet"),
  13239. weight: math.unit(150, "lb"),
  13240. name: "Front",
  13241. image: {
  13242. source: "./media/characters/isaac/front.svg",
  13243. extra: 896 / 815,
  13244. bottom: 0.11
  13245. }
  13246. },
  13247. },
  13248. [
  13249. {
  13250. name: "Human Size",
  13251. height: math.unit(8, "feet"),
  13252. default: true
  13253. },
  13254. {
  13255. name: "Macro",
  13256. height: math.unit(400, "feet")
  13257. },
  13258. {
  13259. name: "Megamacro",
  13260. height: math.unit(50, "miles")
  13261. },
  13262. {
  13263. name: "Canon Height",
  13264. height: math.unit(200, "AU")
  13265. },
  13266. ]
  13267. ))
  13268. characterMakers.push(() => makeCharacter(
  13269. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13270. {
  13271. front: {
  13272. height: math.unit(6, "feet"),
  13273. weight: math.unit(72, "kg"),
  13274. name: "Front",
  13275. image: {
  13276. source: "./media/characters/sleekit/front.svg",
  13277. extra: 4693 / 4487,
  13278. bottom: 0.012
  13279. }
  13280. },
  13281. },
  13282. [
  13283. {
  13284. name: "Minimum Height",
  13285. height: math.unit(10, "meters")
  13286. },
  13287. {
  13288. name: "Smaller",
  13289. height: math.unit(25, "meters")
  13290. },
  13291. {
  13292. name: "Larger",
  13293. height: math.unit(38, "meters"),
  13294. default: true
  13295. },
  13296. {
  13297. name: "Maximum height",
  13298. height: math.unit(100, "meters")
  13299. },
  13300. ]
  13301. ))
  13302. characterMakers.push(() => makeCharacter(
  13303. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13304. {
  13305. front: {
  13306. height: math.unit(6, "feet"),
  13307. weight: math.unit(150, "lb"),
  13308. name: "Front",
  13309. image: {
  13310. source: "./media/characters/nillia/front.svg",
  13311. extra: 2195 / 2037,
  13312. bottom: 0.005
  13313. }
  13314. },
  13315. back: {
  13316. height: math.unit(6, "feet"),
  13317. weight: math.unit(150, "lb"),
  13318. name: "Back",
  13319. image: {
  13320. source: "./media/characters/nillia/back.svg",
  13321. extra: 2195 / 2037,
  13322. bottom: 0.005
  13323. }
  13324. },
  13325. },
  13326. [
  13327. {
  13328. name: "Canon Height",
  13329. height: math.unit(489, "feet"),
  13330. default: true
  13331. }
  13332. ]
  13333. ))
  13334. characterMakers.push(() => makeCharacter(
  13335. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13336. {
  13337. front: {
  13338. height: math.unit(6, "feet"),
  13339. weight: math.unit(150, "lb"),
  13340. name: "Front",
  13341. image: {
  13342. source: "./media/characters/mesmyriza/front.svg",
  13343. extra: 2067 / 1784,
  13344. bottom: 0.035
  13345. }
  13346. },
  13347. foot: {
  13348. height: math.unit(6 / (250 / 35), "feet"),
  13349. name: "Foot",
  13350. image: {
  13351. source: "./media/characters/mesmyriza/foot.svg"
  13352. }
  13353. },
  13354. },
  13355. [
  13356. {
  13357. name: "Macro",
  13358. height: math.unit(457, "meters"),
  13359. default: true
  13360. },
  13361. {
  13362. name: "Megamacro",
  13363. height: math.unit(8, "megameters")
  13364. },
  13365. ]
  13366. ))
  13367. characterMakers.push(() => makeCharacter(
  13368. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13369. {
  13370. front: {
  13371. height: math.unit(6, "feet"),
  13372. weight: math.unit(250, "lb"),
  13373. name: "Front",
  13374. image: {
  13375. source: "./media/characters/saudade/front.svg",
  13376. extra: 1172 / 1139,
  13377. bottom: 0.035
  13378. }
  13379. },
  13380. },
  13381. [
  13382. {
  13383. name: "Micro",
  13384. height: math.unit(3, "inches")
  13385. },
  13386. {
  13387. name: "Normal",
  13388. height: math.unit(6, "feet"),
  13389. default: true
  13390. },
  13391. {
  13392. name: "Macro",
  13393. height: math.unit(50, "feet")
  13394. },
  13395. {
  13396. name: "Megamacro",
  13397. height: math.unit(2800, "feet")
  13398. },
  13399. ]
  13400. ))
  13401. characterMakers.push(() => makeCharacter(
  13402. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13403. {
  13404. front: {
  13405. height: math.unit(5 + 4 / 12, "feet"),
  13406. weight: math.unit(100, "lb"),
  13407. name: "Front",
  13408. image: {
  13409. source: "./media/characters/keireer/front.svg",
  13410. extra: 716 / 666,
  13411. bottom: 0.05
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Normal",
  13418. height: math.unit(5 + 4 / 12, "feet"),
  13419. default: true
  13420. },
  13421. ]
  13422. ))
  13423. characterMakers.push(() => makeCharacter(
  13424. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13425. {
  13426. front: {
  13427. height: math.unit(6, "feet"),
  13428. weight: math.unit(90, "kg"),
  13429. name: "Front",
  13430. image: {
  13431. source: "./media/characters/mirja/front.svg",
  13432. extra: 1789 / 1683,
  13433. bottom: 0.05
  13434. }
  13435. },
  13436. frontDressed: {
  13437. height: math.unit(6, "feet"),
  13438. weight: math.unit(90, "lb"),
  13439. name: "Front (Dressed)",
  13440. image: {
  13441. source: "./media/characters/mirja/front-dressed.svg",
  13442. extra: 1789 / 1683,
  13443. bottom: 0.05
  13444. }
  13445. },
  13446. back: {
  13447. height: math.unit(6, "feet"),
  13448. weight: math.unit(90, "lb"),
  13449. name: "Back",
  13450. image: {
  13451. source: "./media/characters/mirja/back.svg",
  13452. extra: 953 / 917,
  13453. bottom: 0.017
  13454. }
  13455. },
  13456. },
  13457. [
  13458. {
  13459. name: "\"Incognito\"",
  13460. height: math.unit(3, "meters")
  13461. },
  13462. {
  13463. name: "Strolling Size",
  13464. height: math.unit(15, "km")
  13465. },
  13466. {
  13467. name: "Larger Strolling Size",
  13468. height: math.unit(400, "km")
  13469. },
  13470. {
  13471. name: "Preferred Size",
  13472. height: math.unit(5000, "km")
  13473. },
  13474. {
  13475. name: "True Size",
  13476. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13477. default: true
  13478. },
  13479. ]
  13480. ))
  13481. characterMakers.push(() => makeCharacter(
  13482. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13483. {
  13484. front: {
  13485. height: math.unit(15, "feet"),
  13486. weight: math.unit(880, "kg"),
  13487. name: "Front",
  13488. image: {
  13489. source: "./media/characters/nightraver/front.svg",
  13490. extra: 2444 / 2160,
  13491. bottom: 0.027
  13492. }
  13493. },
  13494. back: {
  13495. height: math.unit(15, "feet"),
  13496. weight: math.unit(880, "kg"),
  13497. name: "Back",
  13498. image: {
  13499. source: "./media/characters/nightraver/back.svg",
  13500. extra: 2309 / 2180,
  13501. bottom: 0.005
  13502. }
  13503. },
  13504. sole: {
  13505. height: math.unit(2.878, "feet"),
  13506. name: "Sole",
  13507. image: {
  13508. source: "./media/characters/nightraver/sole.svg"
  13509. }
  13510. },
  13511. foot: {
  13512. height: math.unit(2.285, "feet"),
  13513. name: "Foot",
  13514. image: {
  13515. source: "./media/characters/nightraver/foot.svg"
  13516. }
  13517. },
  13518. maw: {
  13519. height: math.unit(2.67, "feet"),
  13520. name: "Maw",
  13521. image: {
  13522. source: "./media/characters/nightraver/maw.svg"
  13523. }
  13524. },
  13525. },
  13526. [
  13527. {
  13528. name: "Micro",
  13529. height: math.unit(1, "cm")
  13530. },
  13531. {
  13532. name: "Normal",
  13533. height: math.unit(15, "feet"),
  13534. default: true
  13535. },
  13536. {
  13537. name: "Macro",
  13538. height: math.unit(300, "feet")
  13539. },
  13540. {
  13541. name: "Megamacro",
  13542. height: math.unit(300, "miles")
  13543. },
  13544. {
  13545. name: "Gigamacro",
  13546. height: math.unit(10000, "miles")
  13547. },
  13548. ]
  13549. ))
  13550. characterMakers.push(() => makeCharacter(
  13551. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13552. {
  13553. side: {
  13554. height: math.unit(2, "inches"),
  13555. weight: math.unit(5, "grams"),
  13556. name: "Side",
  13557. image: {
  13558. source: "./media/characters/arc/side.svg"
  13559. }
  13560. },
  13561. },
  13562. [
  13563. {
  13564. name: "Micro",
  13565. height: math.unit(2, "inches"),
  13566. default: true
  13567. },
  13568. ]
  13569. ))
  13570. characterMakers.push(() => makeCharacter(
  13571. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13572. {
  13573. front: {
  13574. height: math.unit(1.1938, "meters"),
  13575. weight: math.unit(54, "kg"),
  13576. name: "Front",
  13577. image: {
  13578. source: "./media/characters/nebula-shahar/front.svg",
  13579. extra: 1642 / 1436,
  13580. bottom: 0.06
  13581. }
  13582. },
  13583. },
  13584. [
  13585. {
  13586. name: "Megamicro",
  13587. height: math.unit(0.3, "mm")
  13588. },
  13589. {
  13590. name: "Micro",
  13591. height: math.unit(3, "cm")
  13592. },
  13593. {
  13594. name: "Normal",
  13595. height: math.unit(138, "cm"),
  13596. default: true
  13597. },
  13598. {
  13599. name: "Macro",
  13600. height: math.unit(30, "m")
  13601. },
  13602. ]
  13603. ))
  13604. characterMakers.push(() => makeCharacter(
  13605. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13606. {
  13607. front: {
  13608. height: math.unit(5.24, "feet"),
  13609. weight: math.unit(150, "lb"),
  13610. name: "Front",
  13611. image: {
  13612. source: "./media/characters/shayla/front.svg",
  13613. extra: 1512 / 1414,
  13614. bottom: 0.01
  13615. }
  13616. },
  13617. back: {
  13618. height: math.unit(5.24, "feet"),
  13619. weight: math.unit(150, "lb"),
  13620. name: "Back",
  13621. image: {
  13622. source: "./media/characters/shayla/back.svg",
  13623. extra: 1512 / 1414
  13624. }
  13625. },
  13626. hand: {
  13627. height: math.unit(0.7781496062992126, "feet"),
  13628. name: "Hand",
  13629. image: {
  13630. source: "./media/characters/shayla/hand.svg"
  13631. }
  13632. },
  13633. foot: {
  13634. height: math.unit(1.4206036745406823, "feet"),
  13635. name: "Foot",
  13636. image: {
  13637. source: "./media/characters/shayla/foot.svg"
  13638. }
  13639. },
  13640. },
  13641. [
  13642. {
  13643. name: "Micro",
  13644. height: math.unit(0.32, "feet")
  13645. },
  13646. {
  13647. name: "Normal",
  13648. height: math.unit(5.24, "feet"),
  13649. default: true
  13650. },
  13651. {
  13652. name: "Macro",
  13653. height: math.unit(492.12, "feet")
  13654. },
  13655. {
  13656. name: "Megamacro",
  13657. height: math.unit(186.41, "miles")
  13658. },
  13659. ]
  13660. ))
  13661. characterMakers.push(() => makeCharacter(
  13662. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13663. {
  13664. front: {
  13665. height: math.unit(2.2, "m"),
  13666. weight: math.unit(120, "kg"),
  13667. name: "Front",
  13668. image: {
  13669. source: "./media/characters/pia-jr/front.svg",
  13670. extra: 1000 / 970,
  13671. bottom: 0.035
  13672. }
  13673. },
  13674. hand: {
  13675. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13676. name: "Hand",
  13677. image: {
  13678. source: "./media/characters/pia-jr/hand.svg"
  13679. }
  13680. },
  13681. paw: {
  13682. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13683. name: "Paw",
  13684. image: {
  13685. source: "./media/characters/pia-jr/paw.svg"
  13686. }
  13687. },
  13688. },
  13689. [
  13690. {
  13691. name: "Micro",
  13692. height: math.unit(1.2, "cm")
  13693. },
  13694. {
  13695. name: "Normal",
  13696. height: math.unit(2.2, "m"),
  13697. default: true
  13698. },
  13699. {
  13700. name: "Macro",
  13701. height: math.unit(180, "m")
  13702. },
  13703. {
  13704. name: "Megamacro",
  13705. height: math.unit(420, "km")
  13706. },
  13707. ]
  13708. ))
  13709. characterMakers.push(() => makeCharacter(
  13710. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13711. {
  13712. front: {
  13713. height: math.unit(2, "m"),
  13714. weight: math.unit(115, "kg"),
  13715. name: "Front",
  13716. image: {
  13717. source: "./media/characters/pia-sr/front.svg",
  13718. extra: 760 / 730,
  13719. bottom: 0.015
  13720. }
  13721. },
  13722. back: {
  13723. height: math.unit(2, "m"),
  13724. weight: math.unit(115, "kg"),
  13725. name: "Back",
  13726. image: {
  13727. source: "./media/characters/pia-sr/back.svg",
  13728. extra: 760 / 730,
  13729. bottom: 0.01
  13730. }
  13731. },
  13732. hand: {
  13733. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13734. name: "Hand",
  13735. image: {
  13736. source: "./media/characters/pia-sr/hand.svg"
  13737. }
  13738. },
  13739. foot: {
  13740. height: math.unit(1.83, "feet"),
  13741. name: "Foot",
  13742. image: {
  13743. source: "./media/characters/pia-sr/foot.svg"
  13744. }
  13745. },
  13746. },
  13747. [
  13748. {
  13749. name: "Micro",
  13750. height: math.unit(88, "mm")
  13751. },
  13752. {
  13753. name: "Normal",
  13754. height: math.unit(2, "m"),
  13755. default: true
  13756. },
  13757. {
  13758. name: "Macro",
  13759. height: math.unit(200, "m")
  13760. },
  13761. {
  13762. name: "Megamacro",
  13763. height: math.unit(420, "km")
  13764. },
  13765. ]
  13766. ))
  13767. characterMakers.push(() => makeCharacter(
  13768. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13769. {
  13770. front: {
  13771. height: math.unit(8 + 2 / 12, "feet"),
  13772. weight: math.unit(300, "lb"),
  13773. name: "Front",
  13774. image: {
  13775. source: "./media/characters/kibibyte/front.svg",
  13776. extra: 2221 / 2098,
  13777. bottom: 0.04
  13778. }
  13779. },
  13780. },
  13781. [
  13782. {
  13783. name: "Normal",
  13784. height: math.unit(8 + 2 / 12, "feet"),
  13785. default: true
  13786. },
  13787. {
  13788. name: "Socialable Macro",
  13789. height: math.unit(50, "feet")
  13790. },
  13791. {
  13792. name: "Macro",
  13793. height: math.unit(300, "feet")
  13794. },
  13795. {
  13796. name: "Megamacro",
  13797. height: math.unit(500, "miles")
  13798. },
  13799. ]
  13800. ))
  13801. characterMakers.push(() => makeCharacter(
  13802. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13803. {
  13804. front: {
  13805. height: math.unit(6, "feet"),
  13806. weight: math.unit(150, "lb"),
  13807. name: "Front",
  13808. image: {
  13809. source: "./media/characters/felix/front.svg",
  13810. extra: 762 / 722,
  13811. bottom: 0.02
  13812. }
  13813. },
  13814. frontClothed: {
  13815. height: math.unit(6, "feet"),
  13816. weight: math.unit(150, "lb"),
  13817. name: "Front (Clothed)",
  13818. image: {
  13819. source: "./media/characters/felix/front-clothed.svg",
  13820. extra: 762 / 722,
  13821. bottom: 0.02
  13822. }
  13823. },
  13824. },
  13825. [
  13826. {
  13827. name: "Normal",
  13828. height: math.unit(6 + 8 / 12, "feet"),
  13829. default: true
  13830. },
  13831. {
  13832. name: "Macro",
  13833. height: math.unit(2600, "feet")
  13834. },
  13835. {
  13836. name: "Megamacro",
  13837. height: math.unit(450, "miles")
  13838. },
  13839. ]
  13840. ))
  13841. characterMakers.push(() => makeCharacter(
  13842. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13843. {
  13844. front: {
  13845. height: math.unit(6 + 1 / 12, "feet"),
  13846. weight: math.unit(250, "lb"),
  13847. name: "Front",
  13848. image: {
  13849. source: "./media/characters/tobo/front.svg",
  13850. extra: 608 / 586,
  13851. bottom: 0.023
  13852. }
  13853. },
  13854. back: {
  13855. height: math.unit(6 + 1 / 12, "feet"),
  13856. weight: math.unit(250, "lb"),
  13857. name: "Back",
  13858. image: {
  13859. source: "./media/characters/tobo/back.svg",
  13860. extra: 608 / 586
  13861. }
  13862. },
  13863. },
  13864. [
  13865. {
  13866. name: "Nano",
  13867. height: math.unit(2, "nm")
  13868. },
  13869. {
  13870. name: "Megamicro",
  13871. height: math.unit(0.1, "mm")
  13872. },
  13873. {
  13874. name: "Micro",
  13875. height: math.unit(1, "inch"),
  13876. default: true
  13877. },
  13878. {
  13879. name: "Human-sized",
  13880. height: math.unit(6 + 1 / 12, "feet")
  13881. },
  13882. {
  13883. name: "Macro",
  13884. height: math.unit(250, "feet")
  13885. },
  13886. {
  13887. name: "Megamacro",
  13888. height: math.unit(75, "miles")
  13889. },
  13890. {
  13891. name: "Texas-sized",
  13892. height: math.unit(750, "miles")
  13893. },
  13894. {
  13895. name: "Teramacro",
  13896. height: math.unit(50000, "miles")
  13897. },
  13898. ]
  13899. ))
  13900. characterMakers.push(() => makeCharacter(
  13901. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13902. {
  13903. front: {
  13904. height: math.unit(6, "feet"),
  13905. weight: math.unit(269, "lb"),
  13906. name: "Front",
  13907. image: {
  13908. source: "./media/characters/danny-kapowsky/front.svg",
  13909. extra: 766 / 736,
  13910. bottom: 0.044
  13911. }
  13912. },
  13913. back: {
  13914. height: math.unit(6, "feet"),
  13915. weight: math.unit(269, "lb"),
  13916. name: "Back",
  13917. image: {
  13918. source: "./media/characters/danny-kapowsky/back.svg",
  13919. extra: 797 / 760,
  13920. bottom: 0.025
  13921. }
  13922. },
  13923. },
  13924. [
  13925. {
  13926. name: "Macro",
  13927. height: math.unit(150, "feet"),
  13928. default: true
  13929. },
  13930. {
  13931. name: "Macro+",
  13932. height: math.unit(200, "feet")
  13933. },
  13934. {
  13935. name: "Macro++",
  13936. height: math.unit(300, "feet")
  13937. },
  13938. {
  13939. name: "Macro+++",
  13940. height: math.unit(400, "feet")
  13941. },
  13942. ]
  13943. ))
  13944. characterMakers.push(() => makeCharacter(
  13945. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13946. {
  13947. side: {
  13948. height: math.unit(6, "feet"),
  13949. weight: math.unit(170, "lb"),
  13950. name: "Side",
  13951. image: {
  13952. source: "./media/characters/finn/side.svg",
  13953. extra: 1953 / 1807,
  13954. bottom: 0.057
  13955. }
  13956. },
  13957. },
  13958. [
  13959. {
  13960. name: "Megamacro",
  13961. height: math.unit(14445, "feet"),
  13962. default: true
  13963. },
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13968. {
  13969. front: {
  13970. height: math.unit(5 + 6 / 12, "feet"),
  13971. weight: math.unit(125, "lb"),
  13972. name: "Front",
  13973. image: {
  13974. source: "./media/characters/roy/front.svg",
  13975. extra: 1,
  13976. bottom: 0.11
  13977. }
  13978. },
  13979. },
  13980. [
  13981. {
  13982. name: "Micro",
  13983. height: math.unit(3, "inches"),
  13984. default: true
  13985. },
  13986. {
  13987. name: "Normal",
  13988. height: math.unit(5 + 6 / 12, "feet")
  13989. },
  13990. {
  13991. name: "Lesser Macro",
  13992. height: math.unit(60, "feet")
  13993. },
  13994. {
  13995. name: "Greater Macro",
  13996. height: math.unit(120, "feet")
  13997. },
  13998. ]
  13999. ))
  14000. characterMakers.push(() => makeCharacter(
  14001. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14002. {
  14003. front: {
  14004. height: math.unit(6, "feet"),
  14005. weight: math.unit(100, "lb"),
  14006. name: "Front",
  14007. image: {
  14008. source: "./media/characters/aevsivs/front.svg",
  14009. extra: 1,
  14010. bottom: 0.03
  14011. }
  14012. },
  14013. back: {
  14014. height: math.unit(6, "feet"),
  14015. weight: math.unit(100, "lb"),
  14016. name: "Back",
  14017. image: {
  14018. source: "./media/characters/aevsivs/back.svg"
  14019. }
  14020. },
  14021. },
  14022. [
  14023. {
  14024. name: "Micro",
  14025. height: math.unit(2, "inches"),
  14026. default: true
  14027. },
  14028. {
  14029. name: "Normal",
  14030. height: math.unit(5, "feet")
  14031. },
  14032. ]
  14033. ))
  14034. characterMakers.push(() => makeCharacter(
  14035. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14036. {
  14037. front: {
  14038. height: math.unit(5 + 7 / 12, "feet"),
  14039. weight: math.unit(159, "lb"),
  14040. name: "Front",
  14041. image: {
  14042. source: "./media/characters/hildegard/front.svg",
  14043. extra: 289 / 269,
  14044. bottom: 7.63 / 297.8
  14045. }
  14046. },
  14047. back: {
  14048. height: math.unit(5 + 7 / 12, "feet"),
  14049. weight: math.unit(159, "lb"),
  14050. name: "Back",
  14051. image: {
  14052. source: "./media/characters/hildegard/back.svg",
  14053. extra: 280 / 260,
  14054. bottom: 2.3 / 282
  14055. }
  14056. },
  14057. },
  14058. [
  14059. {
  14060. name: "Normal",
  14061. height: math.unit(5 + 7 / 12, "feet"),
  14062. default: true
  14063. },
  14064. ]
  14065. ))
  14066. characterMakers.push(() => makeCharacter(
  14067. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14068. {
  14069. bernard: {
  14070. height: math.unit(2 + 7 / 12, "feet"),
  14071. weight: math.unit(66, "lb"),
  14072. name: "Bernard",
  14073. rename: true,
  14074. image: {
  14075. source: "./media/characters/bernard-wilder/bernard.svg",
  14076. extra: 192 / 128,
  14077. bottom: 0.05
  14078. }
  14079. },
  14080. wilder: {
  14081. height: math.unit(5 + 8 / 12, "feet"),
  14082. weight: math.unit(143, "lb"),
  14083. name: "Wilder",
  14084. rename: true,
  14085. image: {
  14086. source: "./media/characters/bernard-wilder/wilder.svg",
  14087. extra: 361 / 312,
  14088. bottom: 0.02
  14089. }
  14090. },
  14091. },
  14092. [
  14093. {
  14094. name: "Normal",
  14095. height: math.unit(2 + 7 / 12, "feet"),
  14096. default: true
  14097. },
  14098. ]
  14099. ))
  14100. characterMakers.push(() => makeCharacter(
  14101. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14102. {
  14103. anthro: {
  14104. height: math.unit(6 + 1 / 12, "feet"),
  14105. weight: math.unit(155, "lb"),
  14106. name: "Anthro",
  14107. image: {
  14108. source: "./media/characters/hearth/anthro.svg",
  14109. extra: 260 / 250,
  14110. bottom: 0.02
  14111. }
  14112. },
  14113. feral: {
  14114. height: math.unit(3.78, "feet"),
  14115. weight: math.unit(35, "kg"),
  14116. name: "Feral",
  14117. image: {
  14118. source: "./media/characters/hearth/feral.svg",
  14119. extra: 153 / 135,
  14120. bottom: 0.03
  14121. }
  14122. },
  14123. },
  14124. [
  14125. {
  14126. name: "Normal",
  14127. height: math.unit(6 + 1 / 12, "feet"),
  14128. default: true
  14129. },
  14130. ]
  14131. ))
  14132. characterMakers.push(() => makeCharacter(
  14133. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14134. {
  14135. front: {
  14136. height: math.unit(6, "feet"),
  14137. weight: math.unit(182, "lb"),
  14138. name: "Front",
  14139. image: {
  14140. source: "./media/characters/ingrid/front.svg",
  14141. extra: 294 / 268,
  14142. bottom: 0.027
  14143. }
  14144. },
  14145. },
  14146. [
  14147. {
  14148. name: "Normal",
  14149. height: math.unit(6, "feet"),
  14150. default: true
  14151. },
  14152. ]
  14153. ))
  14154. characterMakers.push(() => makeCharacter(
  14155. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14156. {
  14157. eevee: {
  14158. height: math.unit(2 + 10 / 12, "feet"),
  14159. weight: math.unit(86, "lb"),
  14160. name: "Malgam",
  14161. image: {
  14162. source: "./media/characters/malgam/eevee.svg",
  14163. extra: 218 / 180,
  14164. bottom: 0.2
  14165. }
  14166. },
  14167. sylveon: {
  14168. height: math.unit(4, "feet"),
  14169. weight: math.unit(101, "lb"),
  14170. name: "Future Malgam",
  14171. rename: true,
  14172. image: {
  14173. source: "./media/characters/malgam/sylveon.svg",
  14174. extra: 371 / 325,
  14175. bottom: 0.015
  14176. }
  14177. },
  14178. gigantamax: {
  14179. height: math.unit(50, "feet"),
  14180. name: "Gigantamax Malgam",
  14181. rename: true,
  14182. image: {
  14183. source: "./media/characters/malgam/gigantamax.svg"
  14184. }
  14185. },
  14186. },
  14187. [
  14188. {
  14189. name: "Normal",
  14190. height: math.unit(2 + 10 / 12, "feet"),
  14191. default: true
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14197. {
  14198. front: {
  14199. height: math.unit(5 + 11 / 12, "feet"),
  14200. weight: math.unit(188, "lb"),
  14201. name: "Front",
  14202. image: {
  14203. source: "./media/characters/fleur/front.svg",
  14204. extra: 309 / 283,
  14205. bottom: 0.007
  14206. }
  14207. },
  14208. },
  14209. [
  14210. {
  14211. name: "Normal",
  14212. height: math.unit(5 + 11 / 12, "feet"),
  14213. default: true
  14214. },
  14215. ]
  14216. ))
  14217. characterMakers.push(() => makeCharacter(
  14218. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14219. {
  14220. front: {
  14221. height: math.unit(5 + 4 / 12, "feet"),
  14222. weight: math.unit(122, "lb"),
  14223. name: "Front",
  14224. image: {
  14225. source: "./media/characters/jude/front.svg",
  14226. extra: 288 / 273,
  14227. bottom: 0.03
  14228. }
  14229. },
  14230. },
  14231. [
  14232. {
  14233. name: "Normal",
  14234. height: math.unit(5 + 4 / 12, "feet"),
  14235. default: true
  14236. },
  14237. ]
  14238. ))
  14239. characterMakers.push(() => makeCharacter(
  14240. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14241. {
  14242. front: {
  14243. height: math.unit(5 + 11 / 12, "feet"),
  14244. weight: math.unit(190, "lb"),
  14245. name: "Front",
  14246. image: {
  14247. source: "./media/characters/seara/front.svg",
  14248. extra: 1,
  14249. bottom: 0.05
  14250. }
  14251. },
  14252. },
  14253. [
  14254. {
  14255. name: "Normal",
  14256. height: math.unit(5 + 11 / 12, "feet"),
  14257. default: true
  14258. },
  14259. ]
  14260. ))
  14261. characterMakers.push(() => makeCharacter(
  14262. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14263. {
  14264. front: {
  14265. height: math.unit(16 + 5 / 12, "feet"),
  14266. weight: math.unit(524, "lb"),
  14267. name: "Front",
  14268. image: {
  14269. source: "./media/characters/caspian/front.svg",
  14270. extra: 1,
  14271. bottom: 0.04
  14272. }
  14273. },
  14274. },
  14275. [
  14276. {
  14277. name: "Normal",
  14278. height: math.unit(16 + 5 / 12, "feet"),
  14279. default: true
  14280. },
  14281. ]
  14282. ))
  14283. characterMakers.push(() => makeCharacter(
  14284. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14285. {
  14286. front: {
  14287. height: math.unit(5 + 7 / 12, "feet"),
  14288. weight: math.unit(170, "lb"),
  14289. name: "Front",
  14290. image: {
  14291. source: "./media/characters/mika/front.svg",
  14292. extra: 1,
  14293. bottom: 0.016
  14294. }
  14295. },
  14296. },
  14297. [
  14298. {
  14299. name: "Normal",
  14300. height: math.unit(5 + 7 / 12, "feet"),
  14301. default: true
  14302. },
  14303. ]
  14304. ))
  14305. characterMakers.push(() => makeCharacter(
  14306. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14307. {
  14308. front: {
  14309. height: math.unit(6 + 2 / 12, "feet"),
  14310. weight: math.unit(268, "lb"),
  14311. name: "Front",
  14312. image: {
  14313. source: "./media/characters/sol/front.svg",
  14314. extra: 247 / 231,
  14315. bottom: 0.05
  14316. }
  14317. },
  14318. },
  14319. [
  14320. {
  14321. name: "Normal",
  14322. height: math.unit(6 + 2 / 12, "feet"),
  14323. default: true
  14324. },
  14325. ]
  14326. ))
  14327. characterMakers.push(() => makeCharacter(
  14328. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14329. {
  14330. buizel: {
  14331. height: math.unit(2 + 5 / 12, "feet"),
  14332. weight: math.unit(87, "lb"),
  14333. name: "Buizel",
  14334. image: {
  14335. source: "./media/characters/umiko/buizel.svg",
  14336. extra: 172 / 157,
  14337. bottom: 0.01
  14338. }
  14339. },
  14340. floatzel: {
  14341. height: math.unit(5 + 9 / 12, "feet"),
  14342. weight: math.unit(250, "lb"),
  14343. name: "Floatzel",
  14344. image: {
  14345. source: "./media/characters/umiko/floatzel.svg",
  14346. extra: 262 / 248
  14347. }
  14348. },
  14349. },
  14350. [
  14351. {
  14352. name: "Normal",
  14353. height: math.unit(2 + 5 / 12, "feet"),
  14354. default: true
  14355. },
  14356. ]
  14357. ))
  14358. characterMakers.push(() => makeCharacter(
  14359. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14360. {
  14361. front: {
  14362. height: math.unit(6 + 2 / 12, "feet"),
  14363. weight: math.unit(146, "lb"),
  14364. name: "Front",
  14365. image: {
  14366. source: "./media/characters/iliac/front.svg",
  14367. extra: 389 / 365,
  14368. bottom: 0.035
  14369. }
  14370. },
  14371. },
  14372. [
  14373. {
  14374. name: "Normal",
  14375. height: math.unit(6 + 2 / 12, "feet"),
  14376. default: true
  14377. },
  14378. ]
  14379. ))
  14380. characterMakers.push(() => makeCharacter(
  14381. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14382. {
  14383. front: {
  14384. height: math.unit(6, "feet"),
  14385. weight: math.unit(170, "lb"),
  14386. name: "Front",
  14387. image: {
  14388. source: "./media/characters/topaz/front.svg",
  14389. extra: 317 / 303,
  14390. bottom: 0.055
  14391. }
  14392. },
  14393. },
  14394. [
  14395. {
  14396. name: "Normal",
  14397. height: math.unit(6, "feet"),
  14398. default: true
  14399. },
  14400. ]
  14401. ))
  14402. characterMakers.push(() => makeCharacter(
  14403. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14404. {
  14405. front: {
  14406. height: math.unit(5 + 11 / 12, "feet"),
  14407. weight: math.unit(144, "lb"),
  14408. name: "Front",
  14409. image: {
  14410. source: "./media/characters/gabriel/front.svg",
  14411. extra: 285 / 262,
  14412. bottom: 0.004
  14413. }
  14414. },
  14415. },
  14416. [
  14417. {
  14418. name: "Normal",
  14419. height: math.unit(5 + 11 / 12, "feet"),
  14420. default: true
  14421. },
  14422. ]
  14423. ))
  14424. characterMakers.push(() => makeCharacter(
  14425. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14426. {
  14427. side: {
  14428. height: math.unit(6 + 5 / 12, "feet"),
  14429. weight: math.unit(300, "lb"),
  14430. name: "Side",
  14431. image: {
  14432. source: "./media/characters/tempest-suicune/side.svg",
  14433. extra: 195 / 154,
  14434. bottom: 0.04
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Normal",
  14441. height: math.unit(6 + 5 / 12, "feet"),
  14442. default: true
  14443. },
  14444. ]
  14445. ))
  14446. characterMakers.push(() => makeCharacter(
  14447. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14448. {
  14449. front: {
  14450. height: math.unit(7 + 2 / 12, "feet"),
  14451. weight: math.unit(322, "lb"),
  14452. name: "Front",
  14453. image: {
  14454. source: "./media/characters/vulcan/front.svg",
  14455. extra: 154 / 147,
  14456. bottom: 0.04
  14457. }
  14458. },
  14459. },
  14460. [
  14461. {
  14462. name: "Normal",
  14463. height: math.unit(7 + 2 / 12, "feet"),
  14464. default: true
  14465. },
  14466. ]
  14467. ))
  14468. characterMakers.push(() => makeCharacter(
  14469. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14470. {
  14471. front: {
  14472. height: math.unit(5 + 10 / 12, "feet"),
  14473. weight: math.unit(264, "lb"),
  14474. name: "Front",
  14475. image: {
  14476. source: "./media/characters/gault/front.svg",
  14477. extra: 161 / 140,
  14478. bottom: 0.028
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Normal",
  14485. height: math.unit(5 + 10 / 12, "feet"),
  14486. default: true
  14487. },
  14488. ]
  14489. ))
  14490. characterMakers.push(() => makeCharacter(
  14491. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14492. {
  14493. front: {
  14494. height: math.unit(6, "feet"),
  14495. weight: math.unit(150, "lb"),
  14496. name: "Front",
  14497. image: {
  14498. source: "./media/characters/shard/front.svg",
  14499. extra: 273 / 238,
  14500. bottom: 0.02
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Normal",
  14507. height: math.unit(3 + 6 / 12, "feet"),
  14508. default: true
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14514. {
  14515. front: {
  14516. height: math.unit(5 + 11 / 12, "feet"),
  14517. weight: math.unit(146, "lb"),
  14518. name: "Front",
  14519. image: {
  14520. source: "./media/characters/ashe/front.svg",
  14521. extra: 400 / 373,
  14522. bottom: 0.01
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Normal",
  14529. height: math.unit(5 + 11 / 12, "feet"),
  14530. default: true
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14536. {
  14537. front: {
  14538. height: math.unit(5 + 5 / 12, "feet"),
  14539. weight: math.unit(135, "lb"),
  14540. name: "Front",
  14541. image: {
  14542. source: "./media/characters/beatrix/front.svg",
  14543. extra: 392 / 379,
  14544. bottom: 0.01
  14545. }
  14546. },
  14547. },
  14548. [
  14549. {
  14550. name: "Normal",
  14551. height: math.unit(6, "feet"),
  14552. default: true
  14553. },
  14554. ]
  14555. ))
  14556. characterMakers.push(() => makeCharacter(
  14557. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14558. {
  14559. front: {
  14560. height: math.unit(6, "feet"),
  14561. weight: math.unit(150, "lb"),
  14562. name: "Front",
  14563. image: {
  14564. source: "./media/characters/ignatius/front.svg",
  14565. extra: 245 / 222,
  14566. bottom: 0.01
  14567. }
  14568. },
  14569. },
  14570. [
  14571. {
  14572. name: "Normal",
  14573. height: math.unit(5 + 5 / 12, "feet"),
  14574. default: true
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14580. {
  14581. front: {
  14582. height: math.unit(6 + 2 / 12, "feet"),
  14583. weight: math.unit(138, "lb"),
  14584. name: "Front",
  14585. image: {
  14586. source: "./media/characters/mei-li/front.svg",
  14587. extra: 237 / 229,
  14588. bottom: 0.03
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Normal",
  14595. height: math.unit(6 + 2 / 12, "feet"),
  14596. default: true
  14597. },
  14598. ]
  14599. ))
  14600. characterMakers.push(() => makeCharacter(
  14601. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14602. {
  14603. front: {
  14604. height: math.unit(2 + 4 / 12, "feet"),
  14605. weight: math.unit(62, "lb"),
  14606. name: "Front",
  14607. image: {
  14608. source: "./media/characters/puru/front.svg",
  14609. extra: 206 / 149,
  14610. bottom: 0.06
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Normal",
  14617. height: math.unit(2 + 4 / 12, "feet"),
  14618. default: true
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14624. {
  14625. taur: {
  14626. height: math.unit(11, "feet"),
  14627. weight: math.unit(500, "lb"),
  14628. name: "Taur",
  14629. image: {
  14630. source: "./media/characters/kee/taur.svg",
  14631. extra: 1,
  14632. bottom: 0.04
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Normal",
  14639. height: math.unit(11, "feet"),
  14640. default: true
  14641. },
  14642. ]
  14643. ))
  14644. characterMakers.push(() => makeCharacter(
  14645. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14646. {
  14647. anthro: {
  14648. height: math.unit(7, "feet"),
  14649. weight: math.unit(190, "lb"),
  14650. name: "Anthro",
  14651. image: {
  14652. source: "./media/characters/cobalt-dracha/anthro.svg",
  14653. extra: 231 / 225,
  14654. bottom: 0.04
  14655. }
  14656. },
  14657. feral: {
  14658. height: math.unit(9 + 7 / 12, "feet"),
  14659. weight: math.unit(294, "lb"),
  14660. name: "Feral",
  14661. image: {
  14662. source: "./media/characters/cobalt-dracha/feral.svg",
  14663. extra: 692 / 633,
  14664. bottom: 0.05
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Normal",
  14671. height: math.unit(7, "feet"),
  14672. default: true
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14678. {
  14679. fallen: {
  14680. height: math.unit(11 + 8 / 12, "feet"),
  14681. weight: math.unit(485, "lb"),
  14682. name: "Java (Fallen)",
  14683. rename: true,
  14684. image: {
  14685. source: "./media/characters/java/fallen.svg",
  14686. extra: 226 / 208,
  14687. bottom: 0.005
  14688. }
  14689. },
  14690. godkin: {
  14691. height: math.unit(10 + 6 / 12, "feet"),
  14692. weight: math.unit(328, "lb"),
  14693. name: "Java (Godkin)",
  14694. rename: true,
  14695. image: {
  14696. source: "./media/characters/java/godkin.svg",
  14697. extra: 270 / 262,
  14698. bottom: 0.02
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Normal",
  14705. height: math.unit(11 + 8 / 12, "feet"),
  14706. default: true
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(7 + 8 / 12, "feet"),
  14715. weight: math.unit(320, "lb"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/skoll/front.svg",
  14719. extra: 232 / 220,
  14720. bottom: 0.02
  14721. }
  14722. },
  14723. },
  14724. [
  14725. {
  14726. name: "Normal",
  14727. height: math.unit(7 + 8 / 12, "feet"),
  14728. default: true
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14734. {
  14735. front: {
  14736. height: math.unit(5 + 9 / 12, "feet"),
  14737. weight: math.unit(170, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/purna/front.svg",
  14741. extra: 239 / 229,
  14742. bottom: 0.01
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Normal",
  14749. height: math.unit(5 + 9 / 12, "feet"),
  14750. default: true
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14756. {
  14757. front: {
  14758. height: math.unit(5 + 9 / 12, "feet"),
  14759. weight: math.unit(142, "lb"),
  14760. name: "Front",
  14761. image: {
  14762. source: "./media/characters/kuva/front.svg",
  14763. extra: 281 / 271,
  14764. bottom: 0.006
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(5 + 9 / 12, "feet"),
  14772. default: true
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14778. {
  14779. anthro: {
  14780. height: math.unit(9 + 2 / 12, "feet"),
  14781. weight: math.unit(270, "lb"),
  14782. name: "Anthro",
  14783. image: {
  14784. source: "./media/characters/embra/anthro.svg",
  14785. extra: 200 / 187,
  14786. bottom: 0.02
  14787. }
  14788. },
  14789. feral: {
  14790. height: math.unit(18 + 8 / 12, "feet"),
  14791. weight: math.unit(576, "lb"),
  14792. name: "Feral",
  14793. image: {
  14794. source: "./media/characters/embra/feral.svg",
  14795. extra: 152 / 137,
  14796. bottom: 0.037
  14797. }
  14798. },
  14799. },
  14800. [
  14801. {
  14802. name: "Normal",
  14803. height: math.unit(9 + 2 / 12, "feet"),
  14804. default: true
  14805. },
  14806. ]
  14807. ))
  14808. characterMakers.push(() => makeCharacter(
  14809. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14810. {
  14811. anthro: {
  14812. height: math.unit(10 + 9 / 12, "feet"),
  14813. weight: math.unit(224, "lb"),
  14814. name: "Anthro",
  14815. image: {
  14816. source: "./media/characters/grottos/anthro.svg",
  14817. extra: 350 / 332,
  14818. bottom: 0.045
  14819. }
  14820. },
  14821. feral: {
  14822. height: math.unit(20 + 7 / 12, "feet"),
  14823. weight: math.unit(629, "lb"),
  14824. name: "Feral",
  14825. image: {
  14826. source: "./media/characters/grottos/feral.svg",
  14827. extra: 207 / 190,
  14828. bottom: 0.05
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Normal",
  14835. height: math.unit(10 + 9 / 12, "feet"),
  14836. default: true
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14842. {
  14843. anthro: {
  14844. height: math.unit(9 + 6 / 12, "feet"),
  14845. weight: math.unit(298, "lb"),
  14846. name: "Anthro",
  14847. image: {
  14848. source: "./media/characters/frifna/anthro.svg",
  14849. extra: 282 / 269,
  14850. bottom: 0.015
  14851. }
  14852. },
  14853. feral: {
  14854. height: math.unit(16 + 2 / 12, "feet"),
  14855. weight: math.unit(624, "lb"),
  14856. name: "Feral",
  14857. image: {
  14858. source: "./media/characters/frifna/feral.svg"
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Normal",
  14865. height: math.unit(9 + 6 / 12, "feet"),
  14866. default: true
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14872. {
  14873. front: {
  14874. height: math.unit(6 + 2 / 12, "feet"),
  14875. weight: math.unit(168, "lb"),
  14876. name: "Front",
  14877. image: {
  14878. source: "./media/characters/elise/front.svg",
  14879. extra: 276 / 271
  14880. }
  14881. },
  14882. },
  14883. [
  14884. {
  14885. name: "Normal",
  14886. height: math.unit(6 + 2 / 12, "feet"),
  14887. default: true
  14888. },
  14889. ]
  14890. ))
  14891. characterMakers.push(() => makeCharacter(
  14892. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14893. {
  14894. front: {
  14895. height: math.unit(5 + 10 / 12, "feet"),
  14896. weight: math.unit(210, "lb"),
  14897. name: "Front",
  14898. image: {
  14899. source: "./media/characters/glade/front.svg",
  14900. extra: 258 / 247,
  14901. bottom: 0.008
  14902. }
  14903. },
  14904. },
  14905. [
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(5 + 10 / 12, "feet"),
  14909. default: true
  14910. },
  14911. ]
  14912. ))
  14913. characterMakers.push(() => makeCharacter(
  14914. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14915. {
  14916. front: {
  14917. height: math.unit(5 + 10 / 12, "feet"),
  14918. weight: math.unit(129, "lb"),
  14919. name: "Front",
  14920. image: {
  14921. source: "./media/characters/rina/front.svg",
  14922. extra: 266 / 255,
  14923. bottom: 0.005
  14924. }
  14925. },
  14926. },
  14927. [
  14928. {
  14929. name: "Normal",
  14930. height: math.unit(5 + 10 / 12, "feet"),
  14931. default: true
  14932. },
  14933. ]
  14934. ))
  14935. characterMakers.push(() => makeCharacter(
  14936. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14937. {
  14938. front: {
  14939. height: math.unit(6 + 1 / 12, "feet"),
  14940. weight: math.unit(192, "lb"),
  14941. name: "Front",
  14942. image: {
  14943. source: "./media/characters/veronica/front.svg",
  14944. extra: 319 / 309,
  14945. bottom: 0.005
  14946. }
  14947. },
  14948. },
  14949. [
  14950. {
  14951. name: "Normal",
  14952. height: math.unit(6 + 1 / 12, "feet"),
  14953. default: true
  14954. },
  14955. ]
  14956. ))
  14957. characterMakers.push(() => makeCharacter(
  14958. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14959. {
  14960. front: {
  14961. height: math.unit(9 + 3 / 12, "feet"),
  14962. weight: math.unit(1100, "lb"),
  14963. name: "Front",
  14964. image: {
  14965. source: "./media/characters/braxton/front.svg",
  14966. extra: 1057 / 984,
  14967. bottom: 0.05
  14968. }
  14969. },
  14970. },
  14971. [
  14972. {
  14973. name: "Normal",
  14974. height: math.unit(9 + 3 / 12, "feet")
  14975. },
  14976. {
  14977. name: "Giant",
  14978. height: math.unit(300, "feet"),
  14979. default: true
  14980. },
  14981. {
  14982. name: "Macro",
  14983. height: math.unit(700, "feet")
  14984. },
  14985. {
  14986. name: "Megamacro",
  14987. height: math.unit(6000, "feet")
  14988. },
  14989. ]
  14990. ))
  14991. characterMakers.push(() => makeCharacter(
  14992. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14993. {
  14994. front: {
  14995. height: math.unit(6 + 7 / 12, "feet"),
  14996. weight: math.unit(150, "lb"),
  14997. name: "Front",
  14998. image: {
  14999. source: "./media/characters/blue-feyonics/front.svg",
  15000. extra: 1403 / 1306,
  15001. bottom: 0.047
  15002. }
  15003. },
  15004. },
  15005. [
  15006. {
  15007. name: "Normal",
  15008. height: math.unit(6 + 7 / 12, "feet"),
  15009. default: true
  15010. },
  15011. ]
  15012. ))
  15013. characterMakers.push(() => makeCharacter(
  15014. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15015. {
  15016. front: {
  15017. height: math.unit(1.8, "meters"),
  15018. weight: math.unit(60, "kg"),
  15019. name: "Front",
  15020. image: {
  15021. source: "./media/characters/maxwell/front.svg",
  15022. extra: 2060 / 1873
  15023. }
  15024. },
  15025. },
  15026. [
  15027. {
  15028. name: "Micro",
  15029. height: math.unit(1, "mm")
  15030. },
  15031. {
  15032. name: "Normal",
  15033. height: math.unit(1.8, "meter"),
  15034. default: true
  15035. },
  15036. {
  15037. name: "Macro",
  15038. height: math.unit(30, "meters")
  15039. },
  15040. {
  15041. name: "Megamacro",
  15042. height: math.unit(10, "km")
  15043. },
  15044. ]
  15045. ))
  15046. characterMakers.push(() => makeCharacter(
  15047. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15048. {
  15049. front: {
  15050. height: math.unit(6, "feet"),
  15051. weight: math.unit(150, "lb"),
  15052. name: "Front",
  15053. image: {
  15054. source: "./media/characters/jack/front.svg",
  15055. extra: 1754 / 1640,
  15056. bottom: 0.01
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(80000, "feet"),
  15064. default: true
  15065. },
  15066. {
  15067. name: "Max size",
  15068. height: math.unit(10, "lightyears")
  15069. },
  15070. ]
  15071. ))
  15072. characterMakers.push(() => makeCharacter(
  15073. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15074. {
  15075. upright: {
  15076. height: math.unit(7, "feet"),
  15077. weight: math.unit(170, "lb"),
  15078. name: "Upright",
  15079. image: {
  15080. source: "./media/characters/cafat/upright.svg",
  15081. bottom: 0.01
  15082. }
  15083. },
  15084. uprightFull: {
  15085. height: math.unit(7, "feet"),
  15086. weight: math.unit(170, "lb"),
  15087. name: "Upright (Full)",
  15088. image: {
  15089. source: "./media/characters/cafat/upright-full.svg",
  15090. bottom: 0.01
  15091. }
  15092. },
  15093. side: {
  15094. height: math.unit(5, "feet"),
  15095. weight: math.unit(150, "lb"),
  15096. name: "Side",
  15097. image: {
  15098. source: "./media/characters/cafat/side.svg"
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Small",
  15105. height: math.unit(7, "feet"),
  15106. default: true
  15107. },
  15108. {
  15109. name: "Large",
  15110. height: math.unit(15.5, "feet")
  15111. },
  15112. ]
  15113. ))
  15114. characterMakers.push(() => makeCharacter(
  15115. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15116. {
  15117. front: {
  15118. height: math.unit(6, "feet"),
  15119. weight: math.unit(150, "lb"),
  15120. name: "Front",
  15121. image: {
  15122. source: "./media/characters/verin-raharra/front.svg",
  15123. extra: 5019 / 4835,
  15124. bottom: 0.023
  15125. }
  15126. },
  15127. },
  15128. [
  15129. {
  15130. name: "Normal",
  15131. height: math.unit(7 + 5 / 12, "feet"),
  15132. default: true
  15133. },
  15134. {
  15135. name: "Upsized",
  15136. height: math.unit(20, "feet")
  15137. },
  15138. ]
  15139. ))
  15140. characterMakers.push(() => makeCharacter(
  15141. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15142. {
  15143. front: {
  15144. height: math.unit(7, "feet"),
  15145. weight: math.unit(230, "lb"),
  15146. name: "Front",
  15147. image: {
  15148. source: "./media/characters/nakata/front.svg",
  15149. extra: 1.005,
  15150. bottom: 0.01
  15151. }
  15152. },
  15153. },
  15154. [
  15155. {
  15156. name: "Normal",
  15157. height: math.unit(7, "feet"),
  15158. default: true
  15159. },
  15160. {
  15161. name: "Big",
  15162. height: math.unit(14, "feet")
  15163. },
  15164. {
  15165. name: "Macro",
  15166. height: math.unit(400, "feet")
  15167. },
  15168. ]
  15169. ))
  15170. characterMakers.push(() => makeCharacter(
  15171. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15172. {
  15173. front: {
  15174. height: math.unit(4.91, "feet"),
  15175. weight: math.unit(100, "lb"),
  15176. name: "Front",
  15177. image: {
  15178. source: "./media/characters/lily/front.svg",
  15179. extra: 1585 / 1415,
  15180. bottom: 0.02
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Normal",
  15187. height: math.unit(4.91, "feet"),
  15188. default: true
  15189. },
  15190. ]
  15191. ))
  15192. characterMakers.push(() => makeCharacter(
  15193. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15194. {
  15195. laying: {
  15196. height: math.unit(4 + 4 / 12, "feet"),
  15197. weight: math.unit(600, "lb"),
  15198. name: "Laying",
  15199. image: {
  15200. source: "./media/characters/sheila/laying.svg",
  15201. extra: 1333 / 1265,
  15202. bottom: 0.16
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(4 + 4 / 12, "feet"),
  15210. default: true
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15216. {
  15217. front: {
  15218. height: math.unit(6, "feet"),
  15219. weight: math.unit(190, "lb"),
  15220. name: "Front",
  15221. image: {
  15222. source: "./media/characters/sax/front.svg",
  15223. extra: 1187 / 973,
  15224. bottom: 0.042
  15225. }
  15226. },
  15227. },
  15228. [
  15229. {
  15230. name: "Micro",
  15231. height: math.unit(4, "inches"),
  15232. default: true
  15233. },
  15234. ]
  15235. ))
  15236. characterMakers.push(() => makeCharacter(
  15237. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15238. {
  15239. front: {
  15240. height: math.unit(6, "feet"),
  15241. weight: math.unit(150, "lb"),
  15242. name: "Front",
  15243. image: {
  15244. source: "./media/characters/pandora/front.svg",
  15245. extra: 2720 / 2556,
  15246. bottom: 0.015
  15247. }
  15248. },
  15249. back: {
  15250. height: math.unit(6, "feet"),
  15251. weight: math.unit(150, "lb"),
  15252. name: "Back",
  15253. image: {
  15254. source: "./media/characters/pandora/back.svg",
  15255. extra: 2720 / 2556,
  15256. bottom: 0.01
  15257. }
  15258. },
  15259. beans: {
  15260. height: math.unit(6 / 8, "feet"),
  15261. name: "Beans",
  15262. image: {
  15263. source: "./media/characters/pandora/beans.svg"
  15264. }
  15265. },
  15266. skirt: {
  15267. height: math.unit(6, "feet"),
  15268. weight: math.unit(150, "lb"),
  15269. name: "Skirt",
  15270. image: {
  15271. source: "./media/characters/pandora/skirt.svg",
  15272. extra: 1622 / 1525,
  15273. bottom: 0.015
  15274. }
  15275. },
  15276. hoodie: {
  15277. height: math.unit(6, "feet"),
  15278. weight: math.unit(150, "lb"),
  15279. name: "Hoodie",
  15280. image: {
  15281. source: "./media/characters/pandora/hoodie.svg",
  15282. extra: 1622 / 1525,
  15283. bottom: 0.015
  15284. }
  15285. },
  15286. casual: {
  15287. height: math.unit(6, "feet"),
  15288. weight: math.unit(150, "lb"),
  15289. name: "Casual",
  15290. image: {
  15291. source: "./media/characters/pandora/casual.svg",
  15292. extra: 1622 / 1525,
  15293. bottom: 0.015
  15294. }
  15295. },
  15296. },
  15297. [
  15298. {
  15299. name: "Normal",
  15300. height: math.unit(6, "feet")
  15301. },
  15302. {
  15303. name: "Big Steppy",
  15304. height: math.unit(1, "km"),
  15305. default: true
  15306. },
  15307. ]
  15308. ))
  15309. characterMakers.push(() => makeCharacter(
  15310. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15311. {
  15312. side: {
  15313. height: math.unit(10, "feet"),
  15314. weight: math.unit(800, "kg"),
  15315. name: "Side",
  15316. image: {
  15317. source: "./media/characters/venio-darcony/side.svg",
  15318. extra: 1373 / 1003,
  15319. bottom: 0.037
  15320. }
  15321. },
  15322. front: {
  15323. height: math.unit(19, "feet"),
  15324. weight: math.unit(800, "kg"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/venio-darcony/front.svg"
  15328. }
  15329. },
  15330. back: {
  15331. height: math.unit(19, "feet"),
  15332. weight: math.unit(800, "kg"),
  15333. name: "Back",
  15334. image: {
  15335. source: "./media/characters/venio-darcony/back.svg"
  15336. }
  15337. },
  15338. sideNsfw: {
  15339. height: math.unit(10, "feet"),
  15340. weight: math.unit(800, "kg"),
  15341. name: "Side (NSFW)",
  15342. image: {
  15343. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15344. extra: 1373 / 1003,
  15345. bottom: 0.037
  15346. }
  15347. },
  15348. frontNsfw: {
  15349. height: math.unit(19, "feet"),
  15350. weight: math.unit(800, "kg"),
  15351. name: "Front (NSFW)",
  15352. image: {
  15353. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15354. }
  15355. },
  15356. backNsfw: {
  15357. height: math.unit(19, "feet"),
  15358. weight: math.unit(800, "kg"),
  15359. name: "Back (NSFW)",
  15360. image: {
  15361. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15362. }
  15363. },
  15364. sideArmored: {
  15365. height: math.unit(10, "feet"),
  15366. weight: math.unit(800, "kg"),
  15367. name: "Side (Armored)",
  15368. image: {
  15369. source: "./media/characters/venio-darcony/side-armored.svg",
  15370. extra: 1373 / 1003,
  15371. bottom: 0.037
  15372. }
  15373. },
  15374. frontArmored: {
  15375. height: math.unit(19, "feet"),
  15376. weight: math.unit(900, "kg"),
  15377. name: "Front (Armored)",
  15378. image: {
  15379. source: "./media/characters/venio-darcony/front-armored.svg"
  15380. }
  15381. },
  15382. backArmored: {
  15383. height: math.unit(19, "feet"),
  15384. weight: math.unit(900, "kg"),
  15385. name: "Back (Armored)",
  15386. image: {
  15387. source: "./media/characters/venio-darcony/back-armored.svg"
  15388. }
  15389. },
  15390. sword: {
  15391. height: math.unit(10, "feet"),
  15392. weight: math.unit(50, "lb"),
  15393. name: "Sword",
  15394. image: {
  15395. source: "./media/characters/venio-darcony/sword.svg"
  15396. }
  15397. },
  15398. },
  15399. [
  15400. {
  15401. name: "Normal",
  15402. height: math.unit(10, "feet")
  15403. },
  15404. {
  15405. name: "Macro",
  15406. height: math.unit(130, "feet"),
  15407. default: true
  15408. },
  15409. {
  15410. name: "Macro+",
  15411. height: math.unit(240, "feet")
  15412. },
  15413. ]
  15414. ))
  15415. characterMakers.push(() => makeCharacter(
  15416. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15417. {
  15418. front: {
  15419. height: math.unit(6, "feet"),
  15420. weight: math.unit(150, "lb"),
  15421. name: "Front",
  15422. image: {
  15423. source: "./media/characters/veski/front.svg",
  15424. extra: 1299 / 1225,
  15425. bottom: 0.04
  15426. }
  15427. },
  15428. back: {
  15429. height: math.unit(6, "feet"),
  15430. weight: math.unit(150, "lb"),
  15431. name: "Back",
  15432. image: {
  15433. source: "./media/characters/veski/back.svg",
  15434. extra: 1299 / 1225,
  15435. bottom: 0.008
  15436. }
  15437. },
  15438. maw: {
  15439. height: math.unit(1.5 * 1.21, "feet"),
  15440. name: "Maw",
  15441. image: {
  15442. source: "./media/characters/veski/maw.svg"
  15443. }
  15444. },
  15445. },
  15446. [
  15447. {
  15448. name: "Macro",
  15449. height: math.unit(2, "km"),
  15450. default: true
  15451. },
  15452. ]
  15453. ))
  15454. characterMakers.push(() => makeCharacter(
  15455. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15456. {
  15457. front: {
  15458. height: math.unit(5 + 7 / 12, "feet"),
  15459. name: "Front",
  15460. image: {
  15461. source: "./media/characters/isabelle/front.svg",
  15462. extra: 2130 / 1976,
  15463. bottom: 0.05
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Supermicro",
  15470. height: math.unit(10, "micrometers")
  15471. },
  15472. {
  15473. name: "Micro",
  15474. height: math.unit(1, "inch")
  15475. },
  15476. {
  15477. name: "Tiny",
  15478. height: math.unit(5, "inches")
  15479. },
  15480. {
  15481. name: "Standard",
  15482. height: math.unit(5 + 7 / 12, "inches")
  15483. },
  15484. {
  15485. name: "Macro",
  15486. height: math.unit(80, "meters"),
  15487. default: true
  15488. },
  15489. {
  15490. name: "Megamacro",
  15491. height: math.unit(250, "meters")
  15492. },
  15493. {
  15494. name: "Gigamacro",
  15495. height: math.unit(5, "km")
  15496. },
  15497. {
  15498. name: "Cosmic",
  15499. height: math.unit(2.5e6, "miles")
  15500. },
  15501. ]
  15502. ))
  15503. characterMakers.push(() => makeCharacter(
  15504. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15505. {
  15506. front: {
  15507. height: math.unit(6, "feet"),
  15508. weight: math.unit(150, "lb"),
  15509. name: "Front",
  15510. image: {
  15511. source: "./media/characters/hanzo/front.svg",
  15512. extra: 374 / 344,
  15513. bottom: 0.02
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Normal",
  15520. height: math.unit(8, "feet"),
  15521. default: true
  15522. },
  15523. ]
  15524. ))
  15525. characterMakers.push(() => makeCharacter(
  15526. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15527. {
  15528. front: {
  15529. height: math.unit(7, "feet"),
  15530. weight: math.unit(130, "lb"),
  15531. name: "Front",
  15532. image: {
  15533. source: "./media/characters/anna/front.svg",
  15534. extra: 169 / 145,
  15535. bottom: 0.06
  15536. }
  15537. },
  15538. full: {
  15539. height: math.unit(4.96, "feet"),
  15540. weight: math.unit(220, "lb"),
  15541. name: "Full",
  15542. image: {
  15543. source: "./media/characters/anna/full.svg",
  15544. extra: 138 / 114,
  15545. bottom: 0.15
  15546. }
  15547. },
  15548. tongue: {
  15549. height: math.unit(2.53, "feet"),
  15550. name: "Tongue",
  15551. image: {
  15552. source: "./media/characters/anna/tongue.svg"
  15553. }
  15554. },
  15555. },
  15556. [
  15557. {
  15558. name: "Normal",
  15559. height: math.unit(7, "feet"),
  15560. default: true
  15561. },
  15562. ]
  15563. ))
  15564. characterMakers.push(() => makeCharacter(
  15565. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15566. {
  15567. front: {
  15568. height: math.unit(7, "feet"),
  15569. weight: math.unit(150, "lb"),
  15570. name: "Front",
  15571. image: {
  15572. source: "./media/characters/ian-corvid/front.svg",
  15573. extra: 150 / 142,
  15574. bottom: 0.02
  15575. }
  15576. },
  15577. back: {
  15578. height: math.unit(7, "feet"),
  15579. weight: math.unit(150, "lb"),
  15580. name: "Back",
  15581. image: {
  15582. source: "./media/characters/ian-corvid/back.svg",
  15583. extra: 150 / 143,
  15584. bottom: 0.01
  15585. }
  15586. },
  15587. stomping: {
  15588. height: math.unit(7, "feet"),
  15589. weight: math.unit(150, "lb"),
  15590. name: "Stomping",
  15591. image: {
  15592. source: "./media/characters/ian-corvid/stomping.svg",
  15593. extra: 76 / 72
  15594. }
  15595. },
  15596. sitting: {
  15597. height: math.unit(7 / 1.8, "feet"),
  15598. weight: math.unit(150, "lb"),
  15599. name: "Sitting",
  15600. image: {
  15601. source: "./media/characters/ian-corvid/sitting.svg",
  15602. extra: 1400 / 1269,
  15603. bottom: 0.15
  15604. }
  15605. },
  15606. },
  15607. [
  15608. {
  15609. name: "Tiny Microw",
  15610. height: math.unit(1, "inch")
  15611. },
  15612. {
  15613. name: "Microw",
  15614. height: math.unit(6, "inches")
  15615. },
  15616. {
  15617. name: "Crow",
  15618. height: math.unit(7 + 1 / 12, "feet"),
  15619. default: true
  15620. },
  15621. {
  15622. name: "Macrow",
  15623. height: math.unit(176, "feet")
  15624. },
  15625. ]
  15626. ))
  15627. characterMakers.push(() => makeCharacter(
  15628. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15629. {
  15630. front: {
  15631. height: math.unit(5 + 7 / 12, "feet"),
  15632. weight: math.unit(147, "lb"),
  15633. name: "Front",
  15634. image: {
  15635. source: "./media/characters/natalie-kellon/front.svg",
  15636. extra: 1214 / 1141,
  15637. bottom: 0.02
  15638. }
  15639. },
  15640. },
  15641. [
  15642. {
  15643. name: "Micro",
  15644. height: math.unit(1 / 16, "inch")
  15645. },
  15646. {
  15647. name: "Tiny",
  15648. height: math.unit(4, "inches")
  15649. },
  15650. {
  15651. name: "Normal",
  15652. height: math.unit(5 + 7 / 12, "feet"),
  15653. default: true
  15654. },
  15655. {
  15656. name: "Amazon",
  15657. height: math.unit(12, "feet")
  15658. },
  15659. {
  15660. name: "Giantess",
  15661. height: math.unit(160, "meters")
  15662. },
  15663. {
  15664. name: "Titaness",
  15665. height: math.unit(800, "meters")
  15666. },
  15667. ]
  15668. ))
  15669. characterMakers.push(() => makeCharacter(
  15670. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15671. {
  15672. front: {
  15673. height: math.unit(6, "feet"),
  15674. weight: math.unit(150, "lb"),
  15675. name: "Front",
  15676. image: {
  15677. source: "./media/characters/alluria/front.svg",
  15678. extra: 806 / 738,
  15679. bottom: 0.01
  15680. }
  15681. },
  15682. side: {
  15683. height: math.unit(6, "feet"),
  15684. weight: math.unit(150, "lb"),
  15685. name: "Side",
  15686. image: {
  15687. source: "./media/characters/alluria/side.svg",
  15688. extra: 800 / 750,
  15689. }
  15690. },
  15691. back: {
  15692. height: math.unit(6, "feet"),
  15693. weight: math.unit(150, "lb"),
  15694. name: "Back",
  15695. image: {
  15696. source: "./media/characters/alluria/back.svg",
  15697. extra: 806 / 738,
  15698. }
  15699. },
  15700. frontMaid: {
  15701. height: math.unit(6, "feet"),
  15702. weight: math.unit(150, "lb"),
  15703. name: "Front (Maid)",
  15704. image: {
  15705. source: "./media/characters/alluria/front-maid.svg",
  15706. extra: 806 / 738,
  15707. bottom: 0.01
  15708. }
  15709. },
  15710. sideMaid: {
  15711. height: math.unit(6, "feet"),
  15712. weight: math.unit(150, "lb"),
  15713. name: "Side (Maid)",
  15714. image: {
  15715. source: "./media/characters/alluria/side-maid.svg",
  15716. extra: 800 / 750,
  15717. bottom: 0.005
  15718. }
  15719. },
  15720. backMaid: {
  15721. height: math.unit(6, "feet"),
  15722. weight: math.unit(150, "lb"),
  15723. name: "Back (Maid)",
  15724. image: {
  15725. source: "./media/characters/alluria/back-maid.svg",
  15726. extra: 806 / 738,
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Micro",
  15733. height: math.unit(6, "inches"),
  15734. default: true
  15735. },
  15736. ]
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15740. {
  15741. front: {
  15742. height: math.unit(6, "feet"),
  15743. weight: math.unit(150, "lb"),
  15744. name: "Front",
  15745. image: {
  15746. source: "./media/characters/kyle/front.svg",
  15747. extra: 1069 / 962,
  15748. bottom: 77.228 / 1727.45
  15749. }
  15750. },
  15751. },
  15752. [
  15753. {
  15754. name: "Macro",
  15755. height: math.unit(150, "feet"),
  15756. default: true
  15757. },
  15758. ]
  15759. ))
  15760. characterMakers.push(() => makeCharacter(
  15761. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15762. {
  15763. front: {
  15764. height: math.unit(6, "feet"),
  15765. weight: math.unit(300, "lb"),
  15766. name: "Front",
  15767. image: {
  15768. source: "./media/characters/duncan/front.svg",
  15769. extra: 1650 / 1482,
  15770. bottom: 0.05
  15771. }
  15772. },
  15773. },
  15774. [
  15775. {
  15776. name: "Macro",
  15777. height: math.unit(100, "feet"),
  15778. default: true
  15779. },
  15780. ]
  15781. ))
  15782. characterMakers.push(() => makeCharacter(
  15783. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15784. {
  15785. front: {
  15786. height: math.unit(5 + 4 / 12, "feet"),
  15787. weight: math.unit(220, "lb"),
  15788. name: "Front",
  15789. image: {
  15790. source: "./media/characters/memory/front.svg",
  15791. extra: 3641 / 3545,
  15792. bottom: 0.03
  15793. }
  15794. },
  15795. back: {
  15796. height: math.unit(5 + 4 / 12, "feet"),
  15797. weight: math.unit(220, "lb"),
  15798. name: "Back",
  15799. image: {
  15800. source: "./media/characters/memory/back.svg",
  15801. extra: 3641 / 3545,
  15802. bottom: 0.025
  15803. }
  15804. },
  15805. frontSkirt: {
  15806. height: math.unit(5 + 4 / 12, "feet"),
  15807. weight: math.unit(220, "lb"),
  15808. name: "Front (Skirt)",
  15809. image: {
  15810. source: "./media/characters/memory/front-skirt.svg",
  15811. extra: 3641 / 3545,
  15812. bottom: 0.03
  15813. }
  15814. },
  15815. frontDress: {
  15816. height: math.unit(5 + 4 / 12, "feet"),
  15817. weight: math.unit(220, "lb"),
  15818. name: "Front (Dress)",
  15819. image: {
  15820. source: "./media/characters/memory/front-dress.svg",
  15821. extra: 3641 / 3545,
  15822. bottom: 0.03
  15823. }
  15824. },
  15825. },
  15826. [
  15827. {
  15828. name: "Micro",
  15829. height: math.unit(6, "inches"),
  15830. default: true
  15831. },
  15832. {
  15833. name: "Normal",
  15834. height: math.unit(5 + 4 / 12, "feet")
  15835. },
  15836. ]
  15837. ))
  15838. characterMakers.push(() => makeCharacter(
  15839. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15840. {
  15841. front: {
  15842. height: math.unit(4 + 11 / 12, "feet"),
  15843. weight: math.unit(100, "lb"),
  15844. name: "Front",
  15845. image: {
  15846. source: "./media/characters/luno/front.svg",
  15847. extra: 1535 / 1487,
  15848. bottom: 0.03
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Micro",
  15855. height: math.unit(3, "inches")
  15856. },
  15857. {
  15858. name: "Normal",
  15859. height: math.unit(4 + 11 / 12, "feet"),
  15860. default: true
  15861. },
  15862. {
  15863. name: "Macro",
  15864. height: math.unit(300, "feet")
  15865. },
  15866. {
  15867. name: "Megamacro",
  15868. height: math.unit(700, "miles")
  15869. },
  15870. ]
  15871. ))
  15872. characterMakers.push(() => makeCharacter(
  15873. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15874. {
  15875. front: {
  15876. height: math.unit(6 + 2 / 12, "feet"),
  15877. weight: math.unit(170, "lb"),
  15878. name: "Front",
  15879. image: {
  15880. source: "./media/characters/jamesy/front.svg",
  15881. extra: 440 / 382,
  15882. bottom: 0.005
  15883. }
  15884. },
  15885. },
  15886. [
  15887. {
  15888. name: "Micro",
  15889. height: math.unit(3, "inches")
  15890. },
  15891. {
  15892. name: "Normal",
  15893. height: math.unit(6 + 2 / 12, "feet"),
  15894. default: true
  15895. },
  15896. {
  15897. name: "Macro",
  15898. height: math.unit(300, "feet")
  15899. },
  15900. {
  15901. name: "Megamacro",
  15902. height: math.unit(700, "miles")
  15903. },
  15904. ]
  15905. ))
  15906. characterMakers.push(() => makeCharacter(
  15907. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15908. {
  15909. front: {
  15910. height: math.unit(6, "feet"),
  15911. weight: math.unit(160, "lb"),
  15912. name: "Front",
  15913. image: {
  15914. source: "./media/characters/mark/front.svg",
  15915. extra: 3300 / 3100,
  15916. bottom: 136.42 / 3440.47
  15917. }
  15918. },
  15919. },
  15920. [
  15921. {
  15922. name: "Macro",
  15923. height: math.unit(120, "meters")
  15924. },
  15925. {
  15926. name: "Bigger Macro",
  15927. height: math.unit(350, "meters")
  15928. },
  15929. {
  15930. name: "Megamacro",
  15931. height: math.unit(8, "km"),
  15932. default: true
  15933. },
  15934. {
  15935. name: "Continental",
  15936. height: math.unit(4550, "km")
  15937. },
  15938. {
  15939. name: "Planetary",
  15940. height: math.unit(65000, "km")
  15941. },
  15942. ]
  15943. ))
  15944. characterMakers.push(() => makeCharacter(
  15945. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15946. {
  15947. front: {
  15948. height: math.unit(6, "feet"),
  15949. weight: math.unit(400, "lb"),
  15950. name: "Front",
  15951. image: {
  15952. source: "./media/characters/mac/front.svg",
  15953. extra: 1048 / 987.7,
  15954. bottom: 60 / 1107.6,
  15955. }
  15956. },
  15957. },
  15958. [
  15959. {
  15960. name: "Macro",
  15961. height: math.unit(500, "feet"),
  15962. default: true
  15963. },
  15964. ]
  15965. ))
  15966. characterMakers.push(() => makeCharacter(
  15967. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15968. {
  15969. front: {
  15970. height: math.unit(5 + 2 / 12, "feet"),
  15971. weight: math.unit(190, "lb"),
  15972. name: "Front",
  15973. image: {
  15974. source: "./media/characters/bari/front.svg",
  15975. extra: 3156 / 2880,
  15976. bottom: 0.03
  15977. }
  15978. },
  15979. back: {
  15980. height: math.unit(5 + 2 / 12, "feet"),
  15981. weight: math.unit(190, "lb"),
  15982. name: "Back",
  15983. image: {
  15984. source: "./media/characters/bari/back.svg",
  15985. extra: 3260 / 2834,
  15986. bottom: 0.025
  15987. }
  15988. },
  15989. frontPlush: {
  15990. height: math.unit(5 + 2 / 12, "feet"),
  15991. weight: math.unit(190, "lb"),
  15992. name: "Front (Plush)",
  15993. image: {
  15994. source: "./media/characters/bari/front-plush.svg",
  15995. extra: 1112 / 1061,
  15996. bottom: 0.002
  15997. }
  15998. },
  15999. },
  16000. [
  16001. {
  16002. name: "Micro",
  16003. height: math.unit(3, "inches")
  16004. },
  16005. {
  16006. name: "Normal",
  16007. height: math.unit(5 + 2 / 12, "feet"),
  16008. default: true
  16009. },
  16010. {
  16011. name: "Macro",
  16012. height: math.unit(20, "feet")
  16013. },
  16014. ]
  16015. ))
  16016. characterMakers.push(() => makeCharacter(
  16017. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16018. {
  16019. front: {
  16020. height: math.unit(6 + 1 / 12, "feet"),
  16021. weight: math.unit(275, "lb"),
  16022. name: "Front",
  16023. image: {
  16024. source: "./media/characters/hunter-misha-raven/front.svg"
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Mortal",
  16031. height: math.unit(6 + 1 / 12, "feet")
  16032. },
  16033. {
  16034. name: "Divine",
  16035. height: math.unit(1.12134e34, "parsecs"),
  16036. default: true
  16037. },
  16038. ]
  16039. ))
  16040. characterMakers.push(() => makeCharacter(
  16041. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16042. {
  16043. front: {
  16044. height: math.unit(6 + 3 / 12, "feet"),
  16045. weight: math.unit(220, "lb"),
  16046. name: "Front",
  16047. image: {
  16048. source: "./media/characters/max-calore/front.svg",
  16049. extra: 1700 / 1648,
  16050. bottom: 0.01
  16051. }
  16052. },
  16053. back: {
  16054. height: math.unit(6 + 3 / 12, "feet"),
  16055. weight: math.unit(220, "lb"),
  16056. name: "Back",
  16057. image: {
  16058. source: "./media/characters/max-calore/back.svg",
  16059. extra: 1700 / 1648,
  16060. bottom: 0.01
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(6 + 3 / 12, "feet"),
  16068. default: true
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16074. {
  16075. side: {
  16076. height: math.unit(2 + 8 / 12, "feet"),
  16077. weight: math.unit(99, "lb"),
  16078. name: "Side",
  16079. image: {
  16080. source: "./media/characters/aspen/side.svg",
  16081. extra: 152 / 138,
  16082. bottom: 0.032
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Normal",
  16089. height: math.unit(2 + 8 / 12, "feet"),
  16090. default: true
  16091. },
  16092. ]
  16093. ))
  16094. characterMakers.push(() => makeCharacter(
  16095. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16096. {
  16097. side: {
  16098. height: math.unit(3 + 2 / 12, "feet"),
  16099. weight: math.unit(224, "lb"),
  16100. name: "Side",
  16101. image: {
  16102. source: "./media/characters/sheila-feral-wolf/side.svg",
  16103. extra: 179 / 166,
  16104. bottom: 0.03
  16105. }
  16106. },
  16107. },
  16108. [
  16109. {
  16110. name: "Normal",
  16111. height: math.unit(3 + 2 / 12, "feet"),
  16112. default: true
  16113. },
  16114. ]
  16115. ))
  16116. characterMakers.push(() => makeCharacter(
  16117. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16118. {
  16119. side: {
  16120. height: math.unit(1 + 9 / 12, "feet"),
  16121. weight: math.unit(38, "lb"),
  16122. name: "Side",
  16123. image: {
  16124. source: "./media/characters/michelle/side.svg",
  16125. extra: 147 / 136.7,
  16126. bottom: 0.03
  16127. }
  16128. },
  16129. },
  16130. [
  16131. {
  16132. name: "Normal",
  16133. height: math.unit(1 + 9 / 12, "feet"),
  16134. default: true
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16140. {
  16141. front: {
  16142. height: math.unit(1 + 1 / 12, "feet"),
  16143. weight: math.unit(18, "lb"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/nino/front.svg"
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Normal",
  16153. height: math.unit(1 + 1 / 12, "feet"),
  16154. default: true
  16155. },
  16156. ]
  16157. ))
  16158. characterMakers.push(() => makeCharacter(
  16159. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16160. {
  16161. front: {
  16162. height: math.unit(1, "feet"),
  16163. weight: math.unit(16, "lb"),
  16164. name: "Front",
  16165. image: {
  16166. source: "./media/characters/viola/front.svg"
  16167. }
  16168. },
  16169. },
  16170. [
  16171. {
  16172. name: "Normal",
  16173. height: math.unit(1, "feet"),
  16174. default: true
  16175. },
  16176. ]
  16177. ))
  16178. characterMakers.push(() => makeCharacter(
  16179. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16180. {
  16181. front: {
  16182. height: math.unit(6 + 5 / 12, "feet"),
  16183. weight: math.unit(580, "lb"),
  16184. name: "Front",
  16185. image: {
  16186. source: "./media/characters/atlas/front.svg",
  16187. extra: 298.5 / 290,
  16188. bottom: 0.015
  16189. }
  16190. },
  16191. },
  16192. [
  16193. {
  16194. name: "Normal",
  16195. height: math.unit(6 + 5 / 12, "feet"),
  16196. default: true
  16197. },
  16198. ]
  16199. ))
  16200. characterMakers.push(() => makeCharacter(
  16201. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16202. {
  16203. side: {
  16204. height: math.unit(1 + 10 / 12, "feet"),
  16205. weight: math.unit(25, "lb"),
  16206. name: "Side",
  16207. image: {
  16208. source: "./media/characters/davy/side.svg",
  16209. extra: 200 / 170,
  16210. bottom: 0.01
  16211. }
  16212. },
  16213. },
  16214. [
  16215. {
  16216. name: "Normal",
  16217. height: math.unit(1 + 10 / 12, "feet"),
  16218. default: true
  16219. },
  16220. ]
  16221. ))
  16222. characterMakers.push(() => makeCharacter(
  16223. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16224. {
  16225. side: {
  16226. height: math.unit(4 + 8 / 12, "feet"),
  16227. weight: math.unit(166, "lb"),
  16228. name: "Side",
  16229. image: {
  16230. source: "./media/characters/fiona/side.svg",
  16231. extra: 232 / 220,
  16232. bottom: 0.03
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Normal",
  16239. height: math.unit(4 + 8 / 12, "feet"),
  16240. default: true
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16246. {
  16247. front: {
  16248. height: math.unit(2, "feet"),
  16249. weight: math.unit(62, "lb"),
  16250. name: "Front",
  16251. image: {
  16252. source: "./media/characters/lyla/front.svg",
  16253. bottom: 0.1
  16254. }
  16255. },
  16256. },
  16257. [
  16258. {
  16259. name: "Normal",
  16260. height: math.unit(2, "feet"),
  16261. default: true
  16262. },
  16263. ]
  16264. ))
  16265. characterMakers.push(() => makeCharacter(
  16266. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16267. {
  16268. side: {
  16269. height: math.unit(1.8, "feet"),
  16270. weight: math.unit(44, "lb"),
  16271. name: "Side",
  16272. image: {
  16273. source: "./media/characters/perseus/side.svg",
  16274. bottom: 0.21
  16275. }
  16276. },
  16277. },
  16278. [
  16279. {
  16280. name: "Normal",
  16281. height: math.unit(1.8, "feet"),
  16282. default: true
  16283. },
  16284. ]
  16285. ))
  16286. characterMakers.push(() => makeCharacter(
  16287. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16288. {
  16289. side: {
  16290. height: math.unit(4 + 2 / 12, "feet"),
  16291. weight: math.unit(20, "lb"),
  16292. name: "Side",
  16293. image: {
  16294. source: "./media/characters/remus/side.svg"
  16295. }
  16296. },
  16297. },
  16298. [
  16299. {
  16300. name: "Normal",
  16301. height: math.unit(4 + 2 / 12, "feet"),
  16302. default: true
  16303. },
  16304. ]
  16305. ))
  16306. characterMakers.push(() => makeCharacter(
  16307. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16308. {
  16309. front: {
  16310. height: math.unit(4 + 11 / 12, "feet"),
  16311. weight: math.unit(114, "lb"),
  16312. name: "Front",
  16313. image: {
  16314. source: "./media/characters/raf/front.svg",
  16315. bottom: 20.5 / 1863
  16316. }
  16317. },
  16318. side: {
  16319. height: math.unit(4 + 11 / 12, "feet"),
  16320. weight: math.unit(114, "lb"),
  16321. name: "Side",
  16322. image: {
  16323. source: "./media/characters/raf/side.svg",
  16324. bottom: 22 / 1822
  16325. }
  16326. },
  16327. },
  16328. [
  16329. {
  16330. name: "Micro",
  16331. height: math.unit(2, "inches")
  16332. },
  16333. {
  16334. name: "Normal",
  16335. height: math.unit(4 + 11 / 12, "feet"),
  16336. default: true
  16337. },
  16338. {
  16339. name: "Macro",
  16340. height: math.unit(70, "feet")
  16341. },
  16342. ]
  16343. ))
  16344. characterMakers.push(() => makeCharacter(
  16345. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16346. {
  16347. front: {
  16348. height: math.unit(1.5, "meters"),
  16349. weight: math.unit(68, "kg"),
  16350. name: "Front",
  16351. image: {
  16352. source: "./media/characters/liam-einarr/front.svg",
  16353. extra: 2822 / 2666
  16354. }
  16355. },
  16356. back: {
  16357. height: math.unit(1.5, "meters"),
  16358. weight: math.unit(68, "kg"),
  16359. name: "Back",
  16360. image: {
  16361. source: "./media/characters/liam-einarr/back.svg",
  16362. extra: 2822 / 2666,
  16363. bottom: 0.015
  16364. }
  16365. },
  16366. },
  16367. [
  16368. {
  16369. name: "Normal",
  16370. height: math.unit(1.5, "meters"),
  16371. default: true
  16372. },
  16373. {
  16374. name: "Macro",
  16375. height: math.unit(150, "meters")
  16376. },
  16377. {
  16378. name: "Megamacro",
  16379. height: math.unit(35, "km")
  16380. },
  16381. ]
  16382. ))
  16383. characterMakers.push(() => makeCharacter(
  16384. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16385. {
  16386. front: {
  16387. height: math.unit(6, "feet"),
  16388. weight: math.unit(75, "kg"),
  16389. name: "Front",
  16390. image: {
  16391. source: "./media/characters/linda/front.svg",
  16392. extra: 930 / 874,
  16393. bottom: 0.004
  16394. }
  16395. },
  16396. },
  16397. [
  16398. {
  16399. name: "Normal",
  16400. height: math.unit(6, "feet"),
  16401. default: true
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16407. {
  16408. front: {
  16409. height: math.unit(6 + 8 / 12, "feet"),
  16410. weight: math.unit(220, "lb"),
  16411. name: "Front",
  16412. image: {
  16413. source: "./media/characters/caylex/front.svg",
  16414. extra: 821 / 772,
  16415. bottom: 0.07
  16416. }
  16417. },
  16418. back: {
  16419. height: math.unit(6 + 8 / 12, "feet"),
  16420. weight: math.unit(220, "lb"),
  16421. name: "Back",
  16422. image: {
  16423. source: "./media/characters/caylex/back.svg",
  16424. extra: 821 / 772,
  16425. bottom: 0.022
  16426. }
  16427. },
  16428. hand: {
  16429. height: math.unit(1.25, "feet"),
  16430. name: "Hand",
  16431. image: {
  16432. source: "./media/characters/caylex/hand.svg"
  16433. }
  16434. },
  16435. foot: {
  16436. height: math.unit(1.6, "feet"),
  16437. name: "Foot",
  16438. image: {
  16439. source: "./media/characters/caylex/foot.svg"
  16440. }
  16441. },
  16442. armored: {
  16443. height: math.unit(6 + 8 / 12, "feet"),
  16444. weight: math.unit(250, "lb"),
  16445. name: "Armored",
  16446. image: {
  16447. source: "./media/characters/caylex/armored.svg",
  16448. extra: 1420 / 1310,
  16449. bottom: 0.045
  16450. }
  16451. },
  16452. },
  16453. [
  16454. {
  16455. name: "Normal",
  16456. height: math.unit(6 + 8 / 12, "feet"),
  16457. default: true
  16458. },
  16459. {
  16460. name: "Normal+",
  16461. height: math.unit(12, "feet")
  16462. },
  16463. ]
  16464. ))
  16465. characterMakers.push(() => makeCharacter(
  16466. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16467. {
  16468. front: {
  16469. height: math.unit(7 + 6 / 12, "feet"),
  16470. weight: math.unit(288, "lb"),
  16471. name: "Front",
  16472. image: {
  16473. source: "./media/characters/alana/front.svg",
  16474. extra: 679 / 653,
  16475. bottom: 22.5 / 701
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Normal",
  16482. height: math.unit(7 + 6 / 12, "feet")
  16483. },
  16484. {
  16485. name: "Large",
  16486. height: math.unit(50, "feet")
  16487. },
  16488. {
  16489. name: "Macro",
  16490. height: math.unit(100, "feet"),
  16491. default: true
  16492. },
  16493. {
  16494. name: "Macro+",
  16495. height: math.unit(200, "feet")
  16496. },
  16497. ]
  16498. ))
  16499. characterMakers.push(() => makeCharacter(
  16500. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16501. {
  16502. front: {
  16503. height: math.unit(6 + 1 / 12, "feet"),
  16504. weight: math.unit(210, "lb"),
  16505. name: "Front",
  16506. image: {
  16507. source: "./media/characters/hasani/front.svg",
  16508. extra: 244 / 232,
  16509. bottom: 0.01
  16510. }
  16511. },
  16512. back: {
  16513. height: math.unit(6 + 1 / 12, "feet"),
  16514. weight: math.unit(210, "lb"),
  16515. name: "Back",
  16516. image: {
  16517. source: "./media/characters/hasani/back.svg",
  16518. extra: 244 / 232,
  16519. bottom: 0.01
  16520. }
  16521. },
  16522. },
  16523. [
  16524. {
  16525. name: "Normal",
  16526. height: math.unit(6 + 1 / 12, "feet")
  16527. },
  16528. {
  16529. name: "Macro",
  16530. height: math.unit(175, "feet"),
  16531. default: true
  16532. },
  16533. ]
  16534. ))
  16535. characterMakers.push(() => makeCharacter(
  16536. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16537. {
  16538. front: {
  16539. height: math.unit(1.82, "meters"),
  16540. weight: math.unit(140, "lb"),
  16541. name: "Front",
  16542. image: {
  16543. source: "./media/characters/nita/front.svg",
  16544. extra: 2473 / 2363,
  16545. bottom: 0.01
  16546. }
  16547. },
  16548. },
  16549. [
  16550. {
  16551. name: "Normal",
  16552. height: math.unit(1.82, "m")
  16553. },
  16554. {
  16555. name: "Macro",
  16556. height: math.unit(300, "m")
  16557. },
  16558. {
  16559. name: "Mistake Canon",
  16560. height: math.unit(0.5, "miles"),
  16561. default: true
  16562. },
  16563. {
  16564. name: "Big Mistake",
  16565. height: math.unit(13, "miles")
  16566. },
  16567. {
  16568. name: "Playing God",
  16569. height: math.unit(2450, "miles")
  16570. },
  16571. ]
  16572. ))
  16573. characterMakers.push(() => makeCharacter(
  16574. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16575. {
  16576. front: {
  16577. height: math.unit(4, "feet"),
  16578. weight: math.unit(120, "lb"),
  16579. name: "Front",
  16580. image: {
  16581. source: "./media/characters/shiriko/front.svg",
  16582. extra: 195 / 188
  16583. }
  16584. },
  16585. },
  16586. [
  16587. {
  16588. name: "Normal",
  16589. height: math.unit(4, "feet"),
  16590. default: true
  16591. },
  16592. ]
  16593. ))
  16594. characterMakers.push(() => makeCharacter(
  16595. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16596. {
  16597. front: {
  16598. height: math.unit(6, "feet"),
  16599. name: "front",
  16600. image: {
  16601. source: "./media/characters/deja/front.svg",
  16602. extra: 926 / 840,
  16603. bottom: 0.07
  16604. }
  16605. },
  16606. },
  16607. [
  16608. {
  16609. name: "Planck Length",
  16610. height: math.unit(1.6e-35, "meters")
  16611. },
  16612. {
  16613. name: "Normal",
  16614. height: math.unit(30.48, "meters"),
  16615. default: true
  16616. },
  16617. {
  16618. name: "Universal",
  16619. height: math.unit(8.8e26, "meters")
  16620. },
  16621. ]
  16622. ))
  16623. characterMakers.push(() => makeCharacter(
  16624. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16625. {
  16626. side: {
  16627. height: math.unit(8, "feet"),
  16628. weight: math.unit(6300, "lb"),
  16629. name: "Side",
  16630. image: {
  16631. source: "./media/characters/anima/side.svg",
  16632. bottom: 0.035
  16633. }
  16634. },
  16635. },
  16636. [
  16637. {
  16638. name: "Normal",
  16639. height: math.unit(8, "feet"),
  16640. default: true
  16641. },
  16642. ]
  16643. ))
  16644. characterMakers.push(() => makeCharacter(
  16645. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16646. {
  16647. front: {
  16648. height: math.unit(8, "feet"),
  16649. weight: math.unit(350, "lb"),
  16650. name: "Front",
  16651. image: {
  16652. source: "./media/characters/bianca/front.svg",
  16653. extra: 234 / 225,
  16654. bottom: 0.03
  16655. }
  16656. },
  16657. },
  16658. [
  16659. {
  16660. name: "Normal",
  16661. height: math.unit(8, "feet"),
  16662. default: true
  16663. },
  16664. ]
  16665. ))
  16666. characterMakers.push(() => makeCharacter(
  16667. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16668. {
  16669. front: {
  16670. height: math.unit(6, "feet"),
  16671. weight: math.unit(150, "lb"),
  16672. name: "Front",
  16673. image: {
  16674. source: "./media/characters/adinia/front.svg",
  16675. extra: 1845 / 1672,
  16676. bottom: 0.02
  16677. }
  16678. },
  16679. back: {
  16680. height: math.unit(6, "feet"),
  16681. weight: math.unit(150, "lb"),
  16682. name: "Back",
  16683. image: {
  16684. source: "./media/characters/adinia/back.svg",
  16685. extra: 1845 / 1672,
  16686. bottom: 0.002
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Normal",
  16693. height: math.unit(11 + 5 / 12, "feet"),
  16694. default: true
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16700. {
  16701. front: {
  16702. height: math.unit(3, "meters"),
  16703. weight: math.unit(200, "kg"),
  16704. name: "Front",
  16705. image: {
  16706. source: "./media/characters/lykasa/front.svg",
  16707. extra: 1076 / 976,
  16708. bottom: 0.06
  16709. }
  16710. },
  16711. },
  16712. [
  16713. {
  16714. name: "Normal",
  16715. height: math.unit(3, "meters")
  16716. },
  16717. {
  16718. name: "Kaiju",
  16719. height: math.unit(120, "meters"),
  16720. default: true
  16721. },
  16722. {
  16723. name: "Mega Kaiju",
  16724. height: math.unit(240, "km")
  16725. },
  16726. {
  16727. name: "Giga Kaiju",
  16728. height: math.unit(400, "megameters")
  16729. },
  16730. {
  16731. name: "Tera Kaiju",
  16732. height: math.unit(800, "gigameters")
  16733. },
  16734. {
  16735. name: "Kaiju Dragon Goddess",
  16736. height: math.unit(26, "zettaparsecs")
  16737. },
  16738. ]
  16739. ))
  16740. characterMakers.push(() => makeCharacter(
  16741. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16742. {
  16743. side: {
  16744. height: math.unit(283 / 124 * 6, "feet"),
  16745. weight: math.unit(35000, "lb"),
  16746. name: "Side",
  16747. image: {
  16748. source: "./media/characters/malfaren/side.svg",
  16749. extra: 2500 / 1010,
  16750. bottom: 0.01
  16751. }
  16752. },
  16753. front: {
  16754. height: math.unit(22.36, "feet"),
  16755. weight: math.unit(35000, "lb"),
  16756. name: "Front",
  16757. image: {
  16758. source: "./media/characters/malfaren/front.svg",
  16759. extra: 1631 / 1476,
  16760. bottom: 0.01
  16761. }
  16762. },
  16763. maw: {
  16764. height: math.unit(6.9, "feet"),
  16765. name: "Maw",
  16766. image: {
  16767. source: "./media/characters/malfaren/maw.svg"
  16768. }
  16769. },
  16770. },
  16771. [
  16772. {
  16773. name: "Big",
  16774. height: math.unit(283 / 162 * 6, "feet"),
  16775. },
  16776. {
  16777. name: "Bigger",
  16778. height: math.unit(283 / 124 * 6, "feet")
  16779. },
  16780. {
  16781. name: "Massive",
  16782. height: math.unit(283 / 92 * 6, "feet"),
  16783. default: true
  16784. },
  16785. {
  16786. name: "👀💦",
  16787. height: math.unit(283 / 73 * 6, "feet"),
  16788. },
  16789. ]
  16790. ))
  16791. characterMakers.push(() => makeCharacter(
  16792. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16793. {
  16794. front: {
  16795. height: math.unit(1.7, "m"),
  16796. weight: math.unit(70, "kg"),
  16797. name: "Front",
  16798. image: {
  16799. source: "./media/characters/kernel/front.svg",
  16800. extra: 222 / 210,
  16801. bottom: 0.007
  16802. }
  16803. },
  16804. },
  16805. [
  16806. {
  16807. name: "Nano",
  16808. height: math.unit(17, "micrometers")
  16809. },
  16810. {
  16811. name: "Micro",
  16812. height: math.unit(1.7, "mm")
  16813. },
  16814. {
  16815. name: "Small",
  16816. height: math.unit(1.7, "cm")
  16817. },
  16818. {
  16819. name: "Normal",
  16820. height: math.unit(1.7, "m"),
  16821. default: true
  16822. },
  16823. ]
  16824. ))
  16825. characterMakers.push(() => makeCharacter(
  16826. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16827. {
  16828. front: {
  16829. height: math.unit(1.75, "meters"),
  16830. weight: math.unit(65, "kg"),
  16831. name: "Front",
  16832. image: {
  16833. source: "./media/characters/jayne-folest/front.svg",
  16834. extra: 2115 / 2007,
  16835. bottom: 0.02
  16836. }
  16837. },
  16838. back: {
  16839. height: math.unit(1.75, "meters"),
  16840. weight: math.unit(65, "kg"),
  16841. name: "Back",
  16842. image: {
  16843. source: "./media/characters/jayne-folest/back.svg",
  16844. extra: 2115 / 2007,
  16845. bottom: 0.005
  16846. }
  16847. },
  16848. frontClothed: {
  16849. height: math.unit(1.75, "meters"),
  16850. weight: math.unit(65, "kg"),
  16851. name: "Front (Clothed)",
  16852. image: {
  16853. source: "./media/characters/jayne-folest/front-clothed.svg",
  16854. extra: 2115 / 2007,
  16855. bottom: 0.035
  16856. }
  16857. },
  16858. hand: {
  16859. height: math.unit(1 / 1.260, "feet"),
  16860. name: "Hand",
  16861. image: {
  16862. source: "./media/characters/jayne-folest/hand.svg"
  16863. }
  16864. },
  16865. foot: {
  16866. height: math.unit(1 / 0.918, "feet"),
  16867. name: "Foot",
  16868. image: {
  16869. source: "./media/characters/jayne-folest/foot.svg"
  16870. }
  16871. },
  16872. },
  16873. [
  16874. {
  16875. name: "Micro",
  16876. height: math.unit(4, "cm")
  16877. },
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(1.75, "meters")
  16881. },
  16882. {
  16883. name: "Macro",
  16884. height: math.unit(47.5, "meters"),
  16885. default: true
  16886. },
  16887. ]
  16888. ))
  16889. characterMakers.push(() => makeCharacter(
  16890. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16891. {
  16892. front: {
  16893. height: math.unit(180, "cm"),
  16894. weight: math.unit(70, "kg"),
  16895. name: "Front",
  16896. image: {
  16897. source: "./media/characters/algier/front.svg",
  16898. extra: 596 / 572,
  16899. bottom: 0.04
  16900. }
  16901. },
  16902. back: {
  16903. height: math.unit(180, "cm"),
  16904. weight: math.unit(70, "kg"),
  16905. name: "Back",
  16906. image: {
  16907. source: "./media/characters/algier/back.svg",
  16908. extra: 596 / 572,
  16909. bottom: 0.025
  16910. }
  16911. },
  16912. frontdressed: {
  16913. height: math.unit(180, "cm"),
  16914. weight: math.unit(150, "kg"),
  16915. name: "Front-dressed",
  16916. image: {
  16917. source: "./media/characters/algier/front-dressed.svg",
  16918. extra: 596 / 572,
  16919. bottom: 0.038
  16920. }
  16921. },
  16922. },
  16923. [
  16924. {
  16925. name: "Micro",
  16926. height: math.unit(5, "cm")
  16927. },
  16928. {
  16929. name: "Normal",
  16930. height: math.unit(180, "cm"),
  16931. default: true
  16932. },
  16933. {
  16934. name: "Macro",
  16935. height: math.unit(64, "m")
  16936. },
  16937. ]
  16938. ))
  16939. characterMakers.push(() => makeCharacter(
  16940. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16941. {
  16942. upright: {
  16943. height: math.unit(7, "feet"),
  16944. weight: math.unit(300, "lb"),
  16945. name: "Upright",
  16946. image: {
  16947. source: "./media/characters/pretzel/upright.svg",
  16948. extra: 534 / 522,
  16949. bottom: 0.065
  16950. }
  16951. },
  16952. sprawling: {
  16953. height: math.unit(3.75, "feet"),
  16954. weight: math.unit(300, "lb"),
  16955. name: "Sprawling",
  16956. image: {
  16957. source: "./media/characters/pretzel/sprawling.svg",
  16958. extra: 314 / 281,
  16959. bottom: 0.1
  16960. }
  16961. },
  16962. tongue: {
  16963. height: math.unit(2, "feet"),
  16964. name: "Tongue",
  16965. image: {
  16966. source: "./media/characters/pretzel/tongue.svg"
  16967. }
  16968. },
  16969. },
  16970. [
  16971. {
  16972. name: "Normal",
  16973. height: math.unit(7, "feet"),
  16974. default: true
  16975. },
  16976. {
  16977. name: "Oversized",
  16978. height: math.unit(15, "feet")
  16979. },
  16980. {
  16981. name: "Huge",
  16982. height: math.unit(30, "feet")
  16983. },
  16984. {
  16985. name: "Macro",
  16986. height: math.unit(250, "feet")
  16987. },
  16988. ]
  16989. ))
  16990. characterMakers.push(() => makeCharacter(
  16991. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16992. {
  16993. sideFront: {
  16994. height: math.unit(5 + 2 / 12, "feet"),
  16995. weight: math.unit(120, "lb"),
  16996. name: "Front Side",
  16997. image: {
  16998. source: "./media/characters/roxi/side-front.svg",
  16999. extra: 2924 / 2717,
  17000. bottom: 0.08
  17001. }
  17002. },
  17003. sideBack: {
  17004. height: math.unit(5 + 2 / 12, "feet"),
  17005. weight: math.unit(120, "lb"),
  17006. name: "Back Side",
  17007. image: {
  17008. source: "./media/characters/roxi/side-back.svg",
  17009. extra: 2904 / 2693,
  17010. bottom: 0.06
  17011. }
  17012. },
  17013. front: {
  17014. height: math.unit(5 + 2 / 12, "feet"),
  17015. weight: math.unit(120, "lb"),
  17016. name: "Front",
  17017. image: {
  17018. source: "./media/characters/roxi/front.svg",
  17019. extra: 2028 / 1907,
  17020. bottom: 0.01
  17021. }
  17022. },
  17023. frontAlt: {
  17024. height: math.unit(5 + 2 / 12, "feet"),
  17025. weight: math.unit(120, "lb"),
  17026. name: "Front (Alt)",
  17027. image: {
  17028. source: "./media/characters/roxi/front-alt.svg",
  17029. extra: 1828 / 1798,
  17030. bottom: 0.01
  17031. }
  17032. },
  17033. sitting: {
  17034. height: math.unit(2.8, "feet"),
  17035. weight: math.unit(120, "lb"),
  17036. name: "Sitting",
  17037. image: {
  17038. source: "./media/characters/roxi/sitting.svg",
  17039. extra: 2660 / 2462,
  17040. bottom: 0.1
  17041. }
  17042. },
  17043. },
  17044. [
  17045. {
  17046. name: "Normal",
  17047. height: math.unit(5 + 2 / 12, "feet"),
  17048. default: true
  17049. },
  17050. ]
  17051. ))
  17052. characterMakers.push(() => makeCharacter(
  17053. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17054. {
  17055. side: {
  17056. height: math.unit(55, "feet"),
  17057. weight: math.unit(153, "tons"),
  17058. name: "Side",
  17059. image: {
  17060. source: "./media/characters/shadow/side.svg",
  17061. extra: 701 / 628,
  17062. bottom: 0.02
  17063. }
  17064. },
  17065. flying: {
  17066. height: math.unit(145, "feet"),
  17067. weight: math.unit(153, "tons"),
  17068. name: "Flying",
  17069. image: {
  17070. source: "./media/characters/shadow/flying.svg"
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Normal",
  17077. height: math.unit(55, "feet"),
  17078. default: true
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17084. {
  17085. front: {
  17086. height: math.unit(6, "feet"),
  17087. weight: math.unit(200, "lb"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/marcie/front.svg",
  17091. extra: 960 / 876,
  17092. bottom: 58 / 1017.87
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Macro",
  17099. height: math.unit(1, "mile"),
  17100. default: true
  17101. },
  17102. ]
  17103. ))
  17104. characterMakers.push(() => makeCharacter(
  17105. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17106. {
  17107. front: {
  17108. height: math.unit(7, "feet"),
  17109. weight: math.unit(200, "lb"),
  17110. name: "Front",
  17111. image: {
  17112. source: "./media/characters/kachina/front.svg",
  17113. extra: 1290.68 / 1119,
  17114. bottom: 36.5 / 1327.18
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Normal",
  17121. height: math.unit(7, "feet"),
  17122. default: true
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17128. {
  17129. looking: {
  17130. height: math.unit(2, "meters"),
  17131. weight: math.unit(300, "kg"),
  17132. name: "Looking",
  17133. image: {
  17134. source: "./media/characters/kash/looking.svg",
  17135. extra: 474 / 344,
  17136. bottom: 0.03
  17137. }
  17138. },
  17139. side: {
  17140. height: math.unit(2, "meters"),
  17141. weight: math.unit(300, "kg"),
  17142. name: "Side",
  17143. image: {
  17144. source: "./media/characters/kash/side.svg",
  17145. extra: 302 / 251,
  17146. bottom: 0.03
  17147. }
  17148. },
  17149. front: {
  17150. height: math.unit(2, "meters"),
  17151. weight: math.unit(300, "kg"),
  17152. name: "Front",
  17153. image: {
  17154. source: "./media/characters/kash/front.svg",
  17155. extra: 495 / 360,
  17156. bottom: 0.015
  17157. }
  17158. },
  17159. },
  17160. [
  17161. {
  17162. name: "Normal",
  17163. height: math.unit(2, "meters"),
  17164. default: true
  17165. },
  17166. {
  17167. name: "Big",
  17168. height: math.unit(3, "meters")
  17169. },
  17170. {
  17171. name: "Large",
  17172. height: math.unit(5, "meters")
  17173. },
  17174. ]
  17175. ))
  17176. characterMakers.push(() => makeCharacter(
  17177. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17178. {
  17179. feeding: {
  17180. height: math.unit(6.7, "feet"),
  17181. weight: math.unit(350, "lb"),
  17182. name: "Feeding",
  17183. image: {
  17184. source: "./media/characters/lalim/feeding.svg",
  17185. }
  17186. },
  17187. },
  17188. [
  17189. {
  17190. name: "Normal",
  17191. height: math.unit(6.7, "feet"),
  17192. default: true
  17193. },
  17194. ]
  17195. ))
  17196. characterMakers.push(() => makeCharacter(
  17197. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17198. {
  17199. front: {
  17200. height: math.unit(9.5, "feet"),
  17201. weight: math.unit(600, "lb"),
  17202. name: "Front",
  17203. image: {
  17204. source: "./media/characters/de'vout/front.svg",
  17205. extra: 1443 / 1328,
  17206. bottom: 0.025
  17207. }
  17208. },
  17209. back: {
  17210. height: math.unit(9.5, "feet"),
  17211. weight: math.unit(600, "lb"),
  17212. name: "Back",
  17213. image: {
  17214. source: "./media/characters/de'vout/back.svg",
  17215. extra: 1443 / 1328
  17216. }
  17217. },
  17218. frontDressed: {
  17219. height: math.unit(9.5, "feet"),
  17220. weight: math.unit(600, "lb"),
  17221. name: "Front (Dressed",
  17222. image: {
  17223. source: "./media/characters/de'vout/front-dressed.svg",
  17224. extra: 1443 / 1328,
  17225. bottom: 0.025
  17226. }
  17227. },
  17228. backDressed: {
  17229. height: math.unit(9.5, "feet"),
  17230. weight: math.unit(600, "lb"),
  17231. name: "Back (Dressed",
  17232. image: {
  17233. source: "./media/characters/de'vout/back-dressed.svg",
  17234. extra: 1443 / 1328
  17235. }
  17236. },
  17237. },
  17238. [
  17239. {
  17240. name: "Normal",
  17241. height: math.unit(9.5, "feet"),
  17242. default: true
  17243. },
  17244. ]
  17245. ))
  17246. characterMakers.push(() => makeCharacter(
  17247. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17248. {
  17249. front: {
  17250. height: math.unit(8, "feet"),
  17251. weight: math.unit(225, "lb"),
  17252. name: "Front",
  17253. image: {
  17254. source: "./media/characters/talana/front.svg",
  17255. extra: 1410 / 1300,
  17256. bottom: 0.015
  17257. }
  17258. },
  17259. frontDressed: {
  17260. height: math.unit(8, "feet"),
  17261. weight: math.unit(225, "lb"),
  17262. name: "Front (Dressed",
  17263. image: {
  17264. source: "./media/characters/talana/front-dressed.svg",
  17265. extra: 1410 / 1300,
  17266. bottom: 0.015
  17267. }
  17268. },
  17269. },
  17270. [
  17271. {
  17272. name: "Normal",
  17273. height: math.unit(8, "feet"),
  17274. default: true
  17275. },
  17276. ]
  17277. ))
  17278. characterMakers.push(() => makeCharacter(
  17279. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17280. {
  17281. side: {
  17282. height: math.unit(7.2, "feet"),
  17283. weight: math.unit(150, "lb"),
  17284. name: "Side",
  17285. image: {
  17286. source: "./media/characters/xeauvok/side.svg",
  17287. extra: 1975 / 1523,
  17288. bottom: 0.07
  17289. }
  17290. },
  17291. },
  17292. [
  17293. {
  17294. name: "Normal",
  17295. height: math.unit(7.2, "feet"),
  17296. default: true
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17302. {
  17303. side: {
  17304. height: math.unit(10, "feet"),
  17305. weight: math.unit(900, "kg"),
  17306. name: "Side",
  17307. image: {
  17308. source: "./media/characters/zara/side.svg",
  17309. extra: 504 / 498
  17310. }
  17311. },
  17312. },
  17313. [
  17314. {
  17315. name: "Normal",
  17316. height: math.unit(10, "feet"),
  17317. default: true
  17318. },
  17319. ]
  17320. ))
  17321. characterMakers.push(() => makeCharacter(
  17322. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17323. {
  17324. side: {
  17325. height: math.unit(6, "feet"),
  17326. weight: math.unit(150, "lb"),
  17327. name: "Side",
  17328. image: {
  17329. source: "./media/characters/richard-dragon/side.svg",
  17330. extra: 845 / 340,
  17331. bottom: 0.017
  17332. }
  17333. },
  17334. maw: {
  17335. height: math.unit(2.97, "feet"),
  17336. name: "Maw",
  17337. image: {
  17338. source: "./media/characters/richard-dragon/maw.svg"
  17339. }
  17340. },
  17341. },
  17342. [
  17343. ]
  17344. ))
  17345. characterMakers.push(() => makeCharacter(
  17346. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17347. {
  17348. front: {
  17349. height: math.unit(4, "feet"),
  17350. weight: math.unit(100, "lb"),
  17351. name: "Front",
  17352. image: {
  17353. source: "./media/characters/richard-smeargle/front.svg",
  17354. extra: 2952 / 2820,
  17355. bottom: 0.028
  17356. }
  17357. },
  17358. },
  17359. [
  17360. {
  17361. name: "Normal",
  17362. height: math.unit(4, "feet"),
  17363. default: true
  17364. },
  17365. {
  17366. name: "Dynamax",
  17367. height: math.unit(20, "meters")
  17368. },
  17369. ]
  17370. ))
  17371. characterMakers.push(() => makeCharacter(
  17372. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17373. {
  17374. front: {
  17375. height: math.unit(6, "feet"),
  17376. weight: math.unit(110, "lb"),
  17377. name: "Front",
  17378. image: {
  17379. source: "./media/characters/klay/front.svg",
  17380. extra: 962 / 883,
  17381. bottom: 0.04
  17382. }
  17383. },
  17384. back: {
  17385. height: math.unit(6, "feet"),
  17386. weight: math.unit(110, "lb"),
  17387. name: "Back",
  17388. image: {
  17389. source: "./media/characters/klay/back.svg",
  17390. extra: 962 / 883
  17391. }
  17392. },
  17393. beans: {
  17394. height: math.unit(1.15, "feet"),
  17395. name: "Beans",
  17396. image: {
  17397. source: "./media/characters/klay/beans.svg"
  17398. }
  17399. },
  17400. },
  17401. [
  17402. {
  17403. name: "Micro",
  17404. height: math.unit(6, "inches")
  17405. },
  17406. {
  17407. name: "Mini",
  17408. height: math.unit(3, "feet")
  17409. },
  17410. {
  17411. name: "Normal",
  17412. height: math.unit(6, "feet"),
  17413. default: true
  17414. },
  17415. {
  17416. name: "Big",
  17417. height: math.unit(25, "feet")
  17418. },
  17419. {
  17420. name: "Macro",
  17421. height: math.unit(100, "feet")
  17422. },
  17423. {
  17424. name: "Megamacro",
  17425. height: math.unit(400, "feet")
  17426. },
  17427. ]
  17428. ))
  17429. characterMakers.push(() => makeCharacter(
  17430. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17431. {
  17432. front: {
  17433. height: math.unit(6, "feet"),
  17434. weight: math.unit(160, "lb"),
  17435. name: "Front",
  17436. image: {
  17437. source: "./media/characters/marcus/front.svg",
  17438. extra: 734 / 676,
  17439. bottom: 0.03
  17440. }
  17441. },
  17442. },
  17443. [
  17444. {
  17445. name: "Little",
  17446. height: math.unit(6, "feet")
  17447. },
  17448. {
  17449. name: "Normal",
  17450. height: math.unit(110, "feet"),
  17451. default: true
  17452. },
  17453. {
  17454. name: "Macro",
  17455. height: math.unit(250, "feet")
  17456. },
  17457. {
  17458. name: "Megamacro",
  17459. height: math.unit(1000, "feet")
  17460. },
  17461. ]
  17462. ))
  17463. characterMakers.push(() => makeCharacter(
  17464. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17465. {
  17466. front: {
  17467. height: math.unit(7, "feet"),
  17468. weight: math.unit(275, "lb"),
  17469. name: "Front",
  17470. image: {
  17471. source: "./media/characters/claude-delroute/front.svg",
  17472. extra: 230 / 214,
  17473. bottom: 0.007
  17474. }
  17475. },
  17476. side: {
  17477. height: math.unit(7, "feet"),
  17478. weight: math.unit(275, "lb"),
  17479. name: "Side",
  17480. image: {
  17481. source: "./media/characters/claude-delroute/side.svg",
  17482. extra: 222 / 214,
  17483. bottom: 0.01
  17484. }
  17485. },
  17486. back: {
  17487. height: math.unit(7, "feet"),
  17488. weight: math.unit(275, "lb"),
  17489. name: "Back",
  17490. image: {
  17491. source: "./media/characters/claude-delroute/back.svg",
  17492. extra: 230 / 214,
  17493. bottom: 0.015
  17494. }
  17495. },
  17496. maw: {
  17497. height: math.unit(0.6407, "meters"),
  17498. name: "Maw",
  17499. image: {
  17500. source: "./media/characters/claude-delroute/maw.svg"
  17501. }
  17502. },
  17503. },
  17504. [
  17505. {
  17506. name: "Normal",
  17507. height: math.unit(7, "feet"),
  17508. default: true
  17509. },
  17510. {
  17511. name: "Lorge",
  17512. height: math.unit(20, "feet")
  17513. },
  17514. ]
  17515. ))
  17516. characterMakers.push(() => makeCharacter(
  17517. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17518. {
  17519. front: {
  17520. height: math.unit(8 + 4 / 12, "feet"),
  17521. weight: math.unit(600, "lb"),
  17522. name: "Front",
  17523. image: {
  17524. source: "./media/characters/dragonien/front.svg",
  17525. extra: 100 / 94,
  17526. bottom: 3.3 / 103.3445
  17527. }
  17528. },
  17529. back: {
  17530. height: math.unit(8 + 4 / 12, "feet"),
  17531. weight: math.unit(600, "lb"),
  17532. name: "Back",
  17533. image: {
  17534. source: "./media/characters/dragonien/back.svg",
  17535. extra: 776 / 746,
  17536. bottom: 6.4 / 782.0616
  17537. }
  17538. },
  17539. foot: {
  17540. height: math.unit(1.54, "feet"),
  17541. name: "Foot",
  17542. image: {
  17543. source: "./media/characters/dragonien/foot.svg",
  17544. }
  17545. },
  17546. },
  17547. [
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(8 + 4 / 12, "feet"),
  17551. default: true
  17552. },
  17553. {
  17554. name: "Macro",
  17555. height: math.unit(200, "feet")
  17556. },
  17557. {
  17558. name: "Megamacro",
  17559. height: math.unit(1, "mile")
  17560. },
  17561. {
  17562. name: "Gigamacro",
  17563. height: math.unit(1000, "miles")
  17564. },
  17565. ]
  17566. ))
  17567. characterMakers.push(() => makeCharacter(
  17568. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17569. {
  17570. front: {
  17571. height: math.unit(5 + 2 / 12, "feet"),
  17572. weight: math.unit(110, "lb"),
  17573. name: "Front",
  17574. image: {
  17575. source: "./media/characters/desta/front.svg",
  17576. extra: 767 / 726,
  17577. bottom: 11.7 / 779
  17578. }
  17579. },
  17580. back: {
  17581. height: math.unit(5 + 2 / 12, "feet"),
  17582. weight: math.unit(110, "lb"),
  17583. name: "Back",
  17584. image: {
  17585. source: "./media/characters/desta/back.svg",
  17586. extra: 777 / 728,
  17587. bottom: 6 / 784
  17588. }
  17589. },
  17590. frontAlt: {
  17591. height: math.unit(5 + 2 / 12, "feet"),
  17592. weight: math.unit(110, "lb"),
  17593. name: "Front",
  17594. image: {
  17595. source: "./media/characters/desta/front-alt.svg",
  17596. extra: 1482 / 1417
  17597. }
  17598. },
  17599. side: {
  17600. height: math.unit(5 + 2 / 12, "feet"),
  17601. weight: math.unit(110, "lb"),
  17602. name: "Side",
  17603. image: {
  17604. source: "./media/characters/desta/side.svg",
  17605. extra: 2579 / 2491,
  17606. bottom: 0.053
  17607. }
  17608. },
  17609. },
  17610. [
  17611. {
  17612. name: "Micro",
  17613. height: math.unit(6, "inches")
  17614. },
  17615. {
  17616. name: "Normal",
  17617. height: math.unit(5 + 2 / 12, "feet"),
  17618. default: true
  17619. },
  17620. {
  17621. name: "Macro",
  17622. height: math.unit(62, "feet")
  17623. },
  17624. {
  17625. name: "Megamacro",
  17626. height: math.unit(1800, "feet")
  17627. },
  17628. ]
  17629. ))
  17630. characterMakers.push(() => makeCharacter(
  17631. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17632. {
  17633. front: {
  17634. height: math.unit(10, "feet"),
  17635. weight: math.unit(700, "lb"),
  17636. name: "Front",
  17637. image: {
  17638. source: "./media/characters/storm-alystar/front.svg",
  17639. extra: 2112 / 1898,
  17640. bottom: 0.034
  17641. }
  17642. },
  17643. },
  17644. [
  17645. {
  17646. name: "Micro",
  17647. height: math.unit(3.5, "inches")
  17648. },
  17649. {
  17650. name: "Normal",
  17651. height: math.unit(10, "feet"),
  17652. default: true
  17653. },
  17654. {
  17655. name: "Macro",
  17656. height: math.unit(400, "feet")
  17657. },
  17658. {
  17659. name: "Deific",
  17660. height: math.unit(60, "miles")
  17661. },
  17662. ]
  17663. ))
  17664. characterMakers.push(() => makeCharacter(
  17665. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17666. {
  17667. front: {
  17668. height: math.unit(2.35, "meters"),
  17669. weight: math.unit(119, "kg"),
  17670. name: "Front",
  17671. image: {
  17672. source: "./media/characters/ilia/front.svg",
  17673. extra: 1285 / 1255,
  17674. bottom: 0.06
  17675. }
  17676. },
  17677. },
  17678. [
  17679. {
  17680. name: "Normal",
  17681. height: math.unit(2.35, "meters")
  17682. },
  17683. {
  17684. name: "Macro",
  17685. height: math.unit(140, "meters"),
  17686. default: true
  17687. },
  17688. {
  17689. name: "Megamacro",
  17690. height: math.unit(100, "miles")
  17691. },
  17692. ]
  17693. ))
  17694. characterMakers.push(() => makeCharacter(
  17695. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17696. {
  17697. front: {
  17698. height: math.unit(6 + 5 / 12, "feet"),
  17699. weight: math.unit(190, "lb"),
  17700. name: "Front",
  17701. image: {
  17702. source: "./media/characters/kingdead/front.svg",
  17703. extra: 1228 / 1177
  17704. }
  17705. },
  17706. },
  17707. [
  17708. {
  17709. name: "Micro",
  17710. height: math.unit(7, "inches")
  17711. },
  17712. {
  17713. name: "Normal",
  17714. height: math.unit(6 + 5 / 12, "feet")
  17715. },
  17716. {
  17717. name: "Macro",
  17718. height: math.unit(150, "feet"),
  17719. default: true
  17720. },
  17721. {
  17722. name: "Megamacro",
  17723. height: math.unit(200, "miles")
  17724. },
  17725. ]
  17726. ))
  17727. characterMakers.push(() => makeCharacter(
  17728. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17729. {
  17730. front: {
  17731. height: math.unit(8, "feet"),
  17732. weight: math.unit(600, "lb"),
  17733. name: "Front",
  17734. image: {
  17735. source: "./media/characters/kyrehx/front.svg",
  17736. extra: 1195 / 1095,
  17737. bottom: 0.034
  17738. }
  17739. },
  17740. },
  17741. [
  17742. {
  17743. name: "Micro",
  17744. height: math.unit(2, "inches")
  17745. },
  17746. {
  17747. name: "Normal",
  17748. height: math.unit(8, "feet"),
  17749. default: true
  17750. },
  17751. {
  17752. name: "Macro",
  17753. height: math.unit(255, "feet")
  17754. },
  17755. ]
  17756. ))
  17757. characterMakers.push(() => makeCharacter(
  17758. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17759. {
  17760. front: {
  17761. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17762. weight: math.unit(184, "lb"),
  17763. name: "Front",
  17764. image: {
  17765. source: "./media/characters/xang/front.svg",
  17766. extra: 845 / 755
  17767. }
  17768. },
  17769. },
  17770. [
  17771. {
  17772. name: "Normal",
  17773. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17774. default: true
  17775. },
  17776. {
  17777. name: "Macro",
  17778. height: math.unit(0.935 * 146, "feet")
  17779. },
  17780. {
  17781. name: "Megamacro",
  17782. height: math.unit(0.935 * 3, "miles")
  17783. },
  17784. ]
  17785. ))
  17786. characterMakers.push(() => makeCharacter(
  17787. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17788. {
  17789. frontDressed: {
  17790. height: math.unit(5 + 7 / 12, "feet"),
  17791. weight: math.unit(140, "lb"),
  17792. name: "Front (Dressed)",
  17793. image: {
  17794. source: "./media/characters/doc-weardno/front-dressed.svg",
  17795. extra: 263 / 234
  17796. }
  17797. },
  17798. backDressed: {
  17799. height: math.unit(5 + 7 / 12, "feet"),
  17800. weight: math.unit(140, "lb"),
  17801. name: "Back (Dressed)",
  17802. image: {
  17803. source: "./media/characters/doc-weardno/back-dressed.svg",
  17804. extra: 266 / 238
  17805. }
  17806. },
  17807. front: {
  17808. height: math.unit(5 + 7 / 12, "feet"),
  17809. weight: math.unit(140, "lb"),
  17810. name: "Front",
  17811. image: {
  17812. source: "./media/characters/doc-weardno/front.svg",
  17813. extra: 254 / 233
  17814. }
  17815. },
  17816. },
  17817. [
  17818. {
  17819. name: "Micro",
  17820. height: math.unit(3, "inches")
  17821. },
  17822. {
  17823. name: "Normal",
  17824. height: math.unit(5 + 7 / 12, "feet"),
  17825. default: true
  17826. },
  17827. {
  17828. name: "Macro",
  17829. height: math.unit(25, "feet")
  17830. },
  17831. {
  17832. name: "Megamacro",
  17833. height: math.unit(2, "miles")
  17834. },
  17835. ]
  17836. ))
  17837. characterMakers.push(() => makeCharacter(
  17838. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17839. {
  17840. front: {
  17841. height: math.unit(6 + 2 / 12, "feet"),
  17842. weight: math.unit(153, "lb"),
  17843. name: "Front",
  17844. image: {
  17845. source: "./media/characters/seth-whilst/front.svg",
  17846. bottom: 0.07
  17847. }
  17848. },
  17849. },
  17850. [
  17851. {
  17852. name: "Micro",
  17853. height: math.unit(5, "inches")
  17854. },
  17855. {
  17856. name: "Normal",
  17857. height: math.unit(6 + 2 / 12, "feet"),
  17858. default: true
  17859. },
  17860. ]
  17861. ))
  17862. characterMakers.push(() => makeCharacter(
  17863. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17864. {
  17865. front: {
  17866. height: math.unit(3, "inches"),
  17867. weight: math.unit(8, "grams"),
  17868. name: "Front",
  17869. image: {
  17870. source: "./media/characters/pocket-jabari/front.svg",
  17871. extra: 1024 / 974,
  17872. bottom: 0.039
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Minimicro",
  17879. height: math.unit(8, "mm")
  17880. },
  17881. {
  17882. name: "Micro",
  17883. height: math.unit(3, "inches"),
  17884. default: true
  17885. },
  17886. {
  17887. name: "Normal",
  17888. height: math.unit(3, "feet")
  17889. },
  17890. ]
  17891. ))
  17892. characterMakers.push(() => makeCharacter(
  17893. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17894. {
  17895. front: {
  17896. height: math.unit(15, "feet"),
  17897. weight: math.unit(3280, "lb"),
  17898. name: "Front",
  17899. image: {
  17900. source: "./media/characters/sapphy/front.svg",
  17901. extra: 671 / 577,
  17902. bottom: 0.085
  17903. }
  17904. },
  17905. back: {
  17906. height: math.unit(15, "feet"),
  17907. weight: math.unit(3280, "lb"),
  17908. name: "Back",
  17909. image: {
  17910. source: "./media/characters/sapphy/back.svg",
  17911. extra: 631 / 607,
  17912. bottom: 0.045
  17913. }
  17914. },
  17915. },
  17916. [
  17917. {
  17918. name: "Normal",
  17919. height: math.unit(15, "feet")
  17920. },
  17921. {
  17922. name: "Casual Macro",
  17923. height: math.unit(120, "feet")
  17924. },
  17925. {
  17926. name: "Macro",
  17927. height: math.unit(2150, "feet"),
  17928. default: true
  17929. },
  17930. {
  17931. name: "Megamacro",
  17932. height: math.unit(8, "miles")
  17933. },
  17934. {
  17935. name: "Galaxy Mom",
  17936. height: math.unit(6, "megalightyears")
  17937. },
  17938. ]
  17939. ))
  17940. characterMakers.push(() => makeCharacter(
  17941. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17942. {
  17943. front: {
  17944. height: math.unit(6, "feet"),
  17945. weight: math.unit(170, "lb"),
  17946. name: "Front",
  17947. image: {
  17948. source: "./media/characters/kiro/front.svg",
  17949. extra: 1064 / 1012,
  17950. bottom: 0.052
  17951. }
  17952. },
  17953. },
  17954. [
  17955. {
  17956. name: "Micro",
  17957. height: math.unit(6, "inches")
  17958. },
  17959. {
  17960. name: "Normal",
  17961. height: math.unit(6, "feet"),
  17962. default: true
  17963. },
  17964. {
  17965. name: "Macro",
  17966. height: math.unit(72, "feet")
  17967. },
  17968. ]
  17969. ))
  17970. characterMakers.push(() => makeCharacter(
  17971. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17972. {
  17973. front: {
  17974. height: math.unit(5 + 9 / 12, "feet"),
  17975. weight: math.unit(175, "lb"),
  17976. name: "Front",
  17977. image: {
  17978. source: "./media/characters/irishfox/front.svg",
  17979. extra: 1912 / 1680,
  17980. bottom: 0.02
  17981. }
  17982. },
  17983. },
  17984. [
  17985. {
  17986. name: "Nano",
  17987. height: math.unit(1, "mm")
  17988. },
  17989. {
  17990. name: "Micro",
  17991. height: math.unit(2, "inches")
  17992. },
  17993. {
  17994. name: "Normal",
  17995. height: math.unit(5 + 9 / 12, "feet"),
  17996. default: true
  17997. },
  17998. {
  17999. name: "Macro",
  18000. height: math.unit(45, "feet")
  18001. },
  18002. ]
  18003. ))
  18004. characterMakers.push(() => makeCharacter(
  18005. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18006. {
  18007. front: {
  18008. height: math.unit(6 + 1 / 12, "feet"),
  18009. weight: math.unit(150, "lb"),
  18010. name: "Front",
  18011. image: {
  18012. source: "./media/characters/aronai-sieyes/front.svg",
  18013. extra: 1556 / 1480,
  18014. bottom: 0.015
  18015. }
  18016. },
  18017. side: {
  18018. height: math.unit(6 + 1 / 12, "feet"),
  18019. weight: math.unit(150, "lb"),
  18020. name: "Side",
  18021. image: {
  18022. source: "./media/characters/aronai-sieyes/side.svg",
  18023. extra: 1433 / 1390,
  18024. bottom: 0.0393
  18025. }
  18026. },
  18027. back: {
  18028. height: math.unit(6 + 1 / 12, "feet"),
  18029. weight: math.unit(150, "lb"),
  18030. name: "Back",
  18031. image: {
  18032. source: "./media/characters/aronai-sieyes/back.svg",
  18033. extra: 1544 / 1494,
  18034. bottom: 0.02
  18035. }
  18036. },
  18037. frontClothed: {
  18038. height: math.unit(6 + 1 / 12, "feet"),
  18039. weight: math.unit(150, "lb"),
  18040. name: "Front (Clothed)",
  18041. image: {
  18042. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18043. extra: 1582 / 1527
  18044. }
  18045. },
  18046. feral: {
  18047. height: math.unit(18, "feet"),
  18048. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18049. name: "Feral",
  18050. image: {
  18051. source: "./media/characters/aronai-sieyes/feral.svg",
  18052. extra: 1530 / 1240,
  18053. bottom: 0.035
  18054. }
  18055. },
  18056. },
  18057. [
  18058. {
  18059. name: "Micro",
  18060. height: math.unit(2, "inches")
  18061. },
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(6 + 1 / 12, "feet"),
  18065. default: true
  18066. }
  18067. ]
  18068. ))
  18069. characterMakers.push(() => makeCharacter(
  18070. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18071. {
  18072. front: {
  18073. height: math.unit(12, "feet"),
  18074. weight: math.unit(410, "kg"),
  18075. name: "Front",
  18076. image: {
  18077. source: "./media/characters/xuna/front.svg",
  18078. extra: 2184 / 1980
  18079. }
  18080. },
  18081. side: {
  18082. height: math.unit(12, "feet"),
  18083. weight: math.unit(410, "kg"),
  18084. name: "Side",
  18085. image: {
  18086. source: "./media/characters/xuna/side.svg",
  18087. extra: 2184 / 1980
  18088. }
  18089. },
  18090. back: {
  18091. height: math.unit(12, "feet"),
  18092. weight: math.unit(410, "kg"),
  18093. name: "Back",
  18094. image: {
  18095. source: "./media/characters/xuna/back.svg",
  18096. extra: 2184 / 1980
  18097. }
  18098. },
  18099. },
  18100. [
  18101. {
  18102. name: "Nano glow",
  18103. height: math.unit(10, "nm")
  18104. },
  18105. {
  18106. name: "Micro floof",
  18107. height: math.unit(0.3, "m")
  18108. },
  18109. {
  18110. name: "Huggable softy boi",
  18111. height: math.unit(3.6576, "m"),
  18112. default: true
  18113. },
  18114. {
  18115. name: "Admirable floof",
  18116. height: math.unit(80, "meters")
  18117. },
  18118. {
  18119. name: "Gentle macro",
  18120. height: math.unit(300, "meters")
  18121. },
  18122. {
  18123. name: "Very careful floof",
  18124. height: math.unit(3200, "meters")
  18125. },
  18126. {
  18127. name: "The mega floof",
  18128. height: math.unit(36000, "meters")
  18129. },
  18130. {
  18131. name: "Giga-fur-Wicker",
  18132. height: math.unit(4800000, "meters")
  18133. },
  18134. {
  18135. name: "Licky world",
  18136. height: math.unit(20000000, "meters")
  18137. },
  18138. {
  18139. name: "Floofy cyan sun",
  18140. height: math.unit(1500000000, "meters")
  18141. },
  18142. {
  18143. name: "Milky Wicker",
  18144. height: math.unit(1000000000000000000000, "meters")
  18145. },
  18146. {
  18147. name: "The observing Wicker",
  18148. height: math.unit(999999999999999999999999999, "meters")
  18149. },
  18150. ]
  18151. ))
  18152. characterMakers.push(() => makeCharacter(
  18153. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18154. {
  18155. front: {
  18156. height: math.unit(5 + 9 / 12, "feet"),
  18157. weight: math.unit(150, "lb"),
  18158. name: "Front",
  18159. image: {
  18160. source: "./media/characters/arokha-sieyes/front.svg",
  18161. extra: 1425 / 1284,
  18162. bottom: 0.05
  18163. }
  18164. },
  18165. },
  18166. [
  18167. {
  18168. name: "Normal",
  18169. height: math.unit(5 + 9 / 12, "feet")
  18170. },
  18171. {
  18172. name: "Macro",
  18173. height: math.unit(30, "meters"),
  18174. default: true
  18175. },
  18176. ]
  18177. ))
  18178. characterMakers.push(() => makeCharacter(
  18179. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18180. {
  18181. front: {
  18182. height: math.unit(6, "feet"),
  18183. weight: math.unit(180, "lb"),
  18184. name: "Front",
  18185. image: {
  18186. source: "./media/characters/arokh-sieyes/front.svg",
  18187. extra: 1830 / 1769,
  18188. bottom: 0.01
  18189. }
  18190. },
  18191. },
  18192. [
  18193. {
  18194. name: "Normal",
  18195. height: math.unit(6, "feet")
  18196. },
  18197. {
  18198. name: "Macro",
  18199. height: math.unit(30, "meters"),
  18200. default: true
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18206. {
  18207. side: {
  18208. height: math.unit(13 + 1 / 12, "feet"),
  18209. weight: math.unit(8.5, "tonnes"),
  18210. name: "Side",
  18211. image: {
  18212. source: "./media/characters/goldeneye/side.svg",
  18213. extra: 1182 / 778,
  18214. bottom: 0.067
  18215. }
  18216. },
  18217. paw: {
  18218. height: math.unit(3.4, "feet"),
  18219. name: "Paw",
  18220. image: {
  18221. source: "./media/characters/goldeneye/paw.svg"
  18222. }
  18223. },
  18224. },
  18225. [
  18226. {
  18227. name: "Normal",
  18228. height: math.unit(13 + 1 / 12, "feet"),
  18229. default: true
  18230. },
  18231. ]
  18232. ))
  18233. characterMakers.push(() => makeCharacter(
  18234. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18235. {
  18236. front: {
  18237. height: math.unit(6 + 1 / 12, "feet"),
  18238. weight: math.unit(210, "lb"),
  18239. name: "Front",
  18240. image: {
  18241. source: "./media/characters/leonardo-lycheborne/front.svg",
  18242. extra: 390 / 365,
  18243. bottom: 0.032
  18244. }
  18245. },
  18246. side: {
  18247. height: math.unit(6 + 1 / 12, "feet"),
  18248. weight: math.unit(210, "lb"),
  18249. name: "Side",
  18250. image: {
  18251. source: "./media/characters/leonardo-lycheborne/side.svg",
  18252. extra: 390 / 365,
  18253. bottom: 0.005
  18254. }
  18255. },
  18256. back: {
  18257. height: math.unit(6 + 1 / 12, "feet"),
  18258. weight: math.unit(210, "lb"),
  18259. name: "Back",
  18260. image: {
  18261. source: "./media/characters/leonardo-lycheborne/back.svg",
  18262. extra: 392 / 366,
  18263. bottom: 0.01
  18264. }
  18265. },
  18266. hand: {
  18267. height: math.unit(1.08, "feet"),
  18268. name: "Hand",
  18269. image: {
  18270. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18271. }
  18272. },
  18273. foot: {
  18274. height: math.unit(1.32, "feet"),
  18275. name: "Foot",
  18276. image: {
  18277. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18278. }
  18279. },
  18280. were: {
  18281. height: math.unit(20, "feet"),
  18282. weight: math.unit(7800, "lb"),
  18283. name: "Were",
  18284. image: {
  18285. source: "./media/characters/leonardo-lycheborne/were.svg",
  18286. extra: 308 / 294,
  18287. bottom: 0.048
  18288. }
  18289. },
  18290. feral: {
  18291. height: math.unit(7.5, "feet"),
  18292. weight: math.unit(600, "lb"),
  18293. name: "Feral",
  18294. image: {
  18295. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18296. extra: 210 / 186,
  18297. bottom: 0.108
  18298. }
  18299. },
  18300. taur: {
  18301. height: math.unit(11, "feet"),
  18302. weight: math.unit(3300, "lb"),
  18303. name: "Taur",
  18304. image: {
  18305. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18306. extra: 320 / 303,
  18307. bottom: 0.025
  18308. }
  18309. },
  18310. barghest: {
  18311. height: math.unit(11, "feet"),
  18312. weight: math.unit(1300, "lb"),
  18313. name: "Barghest",
  18314. image: {
  18315. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18316. extra: 323 / 302,
  18317. bottom: 0.027
  18318. }
  18319. },
  18320. dick: {
  18321. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18322. name: "Dick",
  18323. image: {
  18324. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18325. }
  18326. },
  18327. dickWere: {
  18328. height: math.unit((20) / 3.8, "feet"),
  18329. name: "Dick (Were)",
  18330. image: {
  18331. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18332. }
  18333. },
  18334. },
  18335. [
  18336. {
  18337. name: "Normal",
  18338. height: math.unit(6 + 1 / 12, "feet"),
  18339. default: true
  18340. },
  18341. ]
  18342. ))
  18343. characterMakers.push(() => makeCharacter(
  18344. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18345. {
  18346. front: {
  18347. height: math.unit(10, "feet"),
  18348. weight: math.unit(350, "lb"),
  18349. name: "Front",
  18350. image: {
  18351. source: "./media/characters/jet/front.svg",
  18352. extra: 2050 / 1980,
  18353. bottom: 0.013
  18354. }
  18355. },
  18356. back: {
  18357. height: math.unit(10, "feet"),
  18358. weight: math.unit(350, "lb"),
  18359. name: "Back",
  18360. image: {
  18361. source: "./media/characters/jet/back.svg",
  18362. extra: 2050 / 1980,
  18363. bottom: 0.013
  18364. }
  18365. },
  18366. },
  18367. [
  18368. {
  18369. name: "Micro",
  18370. height: math.unit(6, "inches")
  18371. },
  18372. {
  18373. name: "Normal",
  18374. height: math.unit(10, "feet"),
  18375. default: true
  18376. },
  18377. {
  18378. name: "Macro",
  18379. height: math.unit(100, "feet")
  18380. },
  18381. ]
  18382. ))
  18383. characterMakers.push(() => makeCharacter(
  18384. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18385. {
  18386. front: {
  18387. height: math.unit(15, "feet"),
  18388. weight: math.unit(2800, "lb"),
  18389. name: "Front",
  18390. image: {
  18391. source: "./media/characters/tanarath/front.svg",
  18392. extra: 2392 / 2220,
  18393. bottom: 0.03
  18394. }
  18395. },
  18396. back: {
  18397. height: math.unit(15, "feet"),
  18398. weight: math.unit(2800, "lb"),
  18399. name: "Back",
  18400. image: {
  18401. source: "./media/characters/tanarath/back.svg",
  18402. extra: 2392 / 2220,
  18403. bottom: 0.03
  18404. }
  18405. },
  18406. },
  18407. [
  18408. {
  18409. name: "Normal",
  18410. height: math.unit(15, "feet"),
  18411. default: true
  18412. },
  18413. ]
  18414. ))
  18415. characterMakers.push(() => makeCharacter(
  18416. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18417. {
  18418. front: {
  18419. height: math.unit(7 + 1 / 12, "feet"),
  18420. weight: math.unit(175, "lb"),
  18421. name: "Front",
  18422. image: {
  18423. source: "./media/characters/patty-cattybatty/front.svg",
  18424. extra: 908 / 874,
  18425. bottom: 0.025
  18426. }
  18427. },
  18428. },
  18429. [
  18430. {
  18431. name: "Micro",
  18432. height: math.unit(1, "inch")
  18433. },
  18434. {
  18435. name: "Normal",
  18436. height: math.unit(7 + 1 / 12, "feet")
  18437. },
  18438. {
  18439. name: "Mini Macro",
  18440. height: math.unit(155, "feet")
  18441. },
  18442. {
  18443. name: "Macro",
  18444. height: math.unit(1077, "feet")
  18445. },
  18446. {
  18447. name: "Mega Macro",
  18448. height: math.unit(47650, "feet"),
  18449. default: true
  18450. },
  18451. {
  18452. name: "Giga Macro",
  18453. height: math.unit(440, "miles")
  18454. },
  18455. {
  18456. name: "Tera Macro",
  18457. height: math.unit(8700, "miles")
  18458. },
  18459. {
  18460. name: "Planetary Macro",
  18461. height: math.unit(32700, "miles")
  18462. },
  18463. {
  18464. name: "Solar Macro",
  18465. height: math.unit(550000, "miles")
  18466. },
  18467. {
  18468. name: "Celestial Macro",
  18469. height: math.unit(2.5, "AU")
  18470. },
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18475. {
  18476. front: {
  18477. height: math.unit(4 + 5 / 12, "feet"),
  18478. weight: math.unit(90, "lb"),
  18479. name: "Front",
  18480. image: {
  18481. source: "./media/characters/cappu/front.svg",
  18482. extra: 1247 / 1152,
  18483. bottom: 0.012
  18484. }
  18485. },
  18486. },
  18487. [
  18488. {
  18489. name: "Normal",
  18490. height: math.unit(4 + 5 / 12, "feet"),
  18491. default: true
  18492. },
  18493. ]
  18494. ))
  18495. characterMakers.push(() => makeCharacter(
  18496. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18497. {
  18498. frontDressed: {
  18499. height: math.unit(70, "cm"),
  18500. weight: math.unit(6, "kg"),
  18501. name: "Front (Dressed)",
  18502. image: {
  18503. source: "./media/characters/sebi/front-dressed.svg",
  18504. extra: 713.5 / 686.5,
  18505. bottom: 0.003
  18506. }
  18507. },
  18508. front: {
  18509. height: math.unit(70, "cm"),
  18510. weight: math.unit(5, "kg"),
  18511. name: "Front",
  18512. image: {
  18513. source: "./media/characters/sebi/front.svg",
  18514. extra: 713.5 / 686.5,
  18515. bottom: 0.003
  18516. }
  18517. }
  18518. },
  18519. [
  18520. {
  18521. name: "Normal",
  18522. height: math.unit(70, "cm"),
  18523. default: true
  18524. },
  18525. {
  18526. name: "Macro",
  18527. height: math.unit(8, "meters")
  18528. },
  18529. ]
  18530. ))
  18531. characterMakers.push(() => makeCharacter(
  18532. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18533. {
  18534. front: {
  18535. height: math.unit(6, "feet"),
  18536. weight: math.unit(150, "lb"),
  18537. name: "Front",
  18538. image: {
  18539. source: "./media/characters/typhek/front.svg",
  18540. extra: 1948 / 1929,
  18541. bottom: 0.025
  18542. }
  18543. },
  18544. side: {
  18545. height: math.unit(6, "feet"),
  18546. weight: math.unit(150, "lb"),
  18547. name: "Side",
  18548. image: {
  18549. source: "./media/characters/typhek/side.svg",
  18550. extra: 2034 / 2010,
  18551. bottom: 0.003
  18552. }
  18553. },
  18554. back: {
  18555. height: math.unit(6, "feet"),
  18556. weight: math.unit(150, "lb"),
  18557. name: "Back",
  18558. image: {
  18559. source: "./media/characters/typhek/back.svg",
  18560. extra: 2005 / 1978,
  18561. bottom: 0.004
  18562. }
  18563. },
  18564. palm: {
  18565. height: math.unit(1.2, "feet"),
  18566. name: "Palm",
  18567. image: {
  18568. source: "./media/characters/typhek/palm.svg"
  18569. }
  18570. },
  18571. fist: {
  18572. height: math.unit(1.1, "feet"),
  18573. name: "Fist",
  18574. image: {
  18575. source: "./media/characters/typhek/fist.svg"
  18576. }
  18577. },
  18578. foot: {
  18579. height: math.unit(1.57, "feet"),
  18580. name: "Foot",
  18581. image: {
  18582. source: "./media/characters/typhek/foot.svg"
  18583. }
  18584. },
  18585. sole: {
  18586. height: math.unit(2.05, "feet"),
  18587. name: "Sole",
  18588. image: {
  18589. source: "./media/characters/typhek/sole.svg"
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Macro",
  18596. height: math.unit(40, "stories"),
  18597. default: true
  18598. },
  18599. {
  18600. name: "Megamacro",
  18601. height: math.unit(1, "mile")
  18602. },
  18603. {
  18604. name: "Gigamacro",
  18605. height: math.unit(4000, "solarradii")
  18606. },
  18607. {
  18608. name: "Universal",
  18609. height: math.unit(1.1, "universes")
  18610. }
  18611. ]
  18612. ))
  18613. characterMakers.push(() => makeCharacter(
  18614. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18615. {
  18616. side: {
  18617. height: math.unit(5 + 7 / 12, "feet"),
  18618. weight: math.unit(150, "lb"),
  18619. name: "Side",
  18620. image: {
  18621. source: "./media/characters/kassy/side.svg",
  18622. extra: 1280 / 1225,
  18623. bottom: 0.002
  18624. }
  18625. },
  18626. front: {
  18627. height: math.unit(5 + 7 / 12, "feet"),
  18628. weight: math.unit(150, "lb"),
  18629. name: "Front",
  18630. image: {
  18631. source: "./media/characters/kassy/front.svg",
  18632. extra: 1280 / 1225,
  18633. bottom: 0.025
  18634. }
  18635. },
  18636. back: {
  18637. height: math.unit(5 + 7 / 12, "feet"),
  18638. weight: math.unit(150, "lb"),
  18639. name: "Back",
  18640. image: {
  18641. source: "./media/characters/kassy/back.svg",
  18642. extra: 1280 / 1225,
  18643. bottom: 0.002
  18644. }
  18645. },
  18646. foot: {
  18647. height: math.unit(1.266, "feet"),
  18648. name: "Foot",
  18649. image: {
  18650. source: "./media/characters/kassy/foot.svg"
  18651. }
  18652. },
  18653. },
  18654. [
  18655. {
  18656. name: "Normal",
  18657. height: math.unit(5 + 7 / 12, "feet")
  18658. },
  18659. {
  18660. name: "Macro",
  18661. height: math.unit(137, "feet"),
  18662. default: true
  18663. },
  18664. {
  18665. name: "Megamacro",
  18666. height: math.unit(1, "mile")
  18667. },
  18668. ]
  18669. ))
  18670. characterMakers.push(() => makeCharacter(
  18671. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18672. {
  18673. front: {
  18674. height: math.unit(6 + 1 / 12, "feet"),
  18675. weight: math.unit(200, "lb"),
  18676. name: "Front",
  18677. image: {
  18678. source: "./media/characters/neil/front.svg",
  18679. extra: 1326 / 1250,
  18680. bottom: 0.023
  18681. }
  18682. },
  18683. },
  18684. [
  18685. {
  18686. name: "Normal",
  18687. height: math.unit(6 + 1 / 12, "feet"),
  18688. default: true
  18689. },
  18690. {
  18691. name: "Macro",
  18692. height: math.unit(200, "feet")
  18693. },
  18694. ]
  18695. ))
  18696. characterMakers.push(() => makeCharacter(
  18697. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18698. {
  18699. front: {
  18700. height: math.unit(5 + 9 / 12, "feet"),
  18701. weight: math.unit(190, "lb"),
  18702. name: "Front",
  18703. image: {
  18704. source: "./media/characters/atticus/front.svg",
  18705. extra: 2934 / 2785,
  18706. bottom: 0.025
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Normal",
  18713. height: math.unit(5 + 9 / 12, "feet"),
  18714. default: true
  18715. },
  18716. {
  18717. name: "Macro",
  18718. height: math.unit(180, "feet")
  18719. },
  18720. ]
  18721. ))
  18722. characterMakers.push(() => makeCharacter(
  18723. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18724. {
  18725. side: {
  18726. height: math.unit(9, "feet"),
  18727. weight: math.unit(650, "lb"),
  18728. name: "Side",
  18729. image: {
  18730. source: "./media/characters/milo/side.svg",
  18731. extra: 2644 / 2310,
  18732. bottom: 0.032
  18733. }
  18734. },
  18735. },
  18736. [
  18737. {
  18738. name: "Normal",
  18739. height: math.unit(9, "feet"),
  18740. default: true
  18741. },
  18742. {
  18743. name: "Macro",
  18744. height: math.unit(300, "feet")
  18745. },
  18746. ]
  18747. ))
  18748. characterMakers.push(() => makeCharacter(
  18749. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18750. {
  18751. side: {
  18752. height: math.unit(8, "meters"),
  18753. weight: math.unit(90000, "kg"),
  18754. name: "Side",
  18755. image: {
  18756. source: "./media/characters/ijzer/side.svg",
  18757. extra: 2756 / 1600,
  18758. bottom: 0.01
  18759. }
  18760. },
  18761. },
  18762. [
  18763. {
  18764. name: "Small",
  18765. height: math.unit(3, "meters")
  18766. },
  18767. {
  18768. name: "Normal",
  18769. height: math.unit(8, "meters"),
  18770. default: true
  18771. },
  18772. {
  18773. name: "Normal+",
  18774. height: math.unit(10, "meters")
  18775. },
  18776. {
  18777. name: "Bigger",
  18778. height: math.unit(24, "meters")
  18779. },
  18780. {
  18781. name: "Huge",
  18782. height: math.unit(80, "meters")
  18783. },
  18784. ]
  18785. ))
  18786. characterMakers.push(() => makeCharacter(
  18787. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18788. {
  18789. front: {
  18790. height: math.unit(6 + 2 / 12, "feet"),
  18791. weight: math.unit(153, "lb"),
  18792. name: "Front",
  18793. image: {
  18794. source: "./media/characters/luca-cervicum/front.svg",
  18795. extra: 370 / 327,
  18796. bottom: 0.015
  18797. }
  18798. },
  18799. back: {
  18800. height: math.unit(6 + 2 / 12, "feet"),
  18801. weight: math.unit(153, "lb"),
  18802. name: "Back",
  18803. image: {
  18804. source: "./media/characters/luca-cervicum/back.svg",
  18805. extra: 367 / 333,
  18806. bottom: 0.005
  18807. }
  18808. },
  18809. frontGear: {
  18810. height: math.unit(6 + 2 / 12, "feet"),
  18811. weight: math.unit(173, "lb"),
  18812. name: "Front (Gear)",
  18813. image: {
  18814. source: "./media/characters/luca-cervicum/front-gear.svg",
  18815. extra: 377 / 333,
  18816. bottom: 0.006
  18817. }
  18818. },
  18819. },
  18820. [
  18821. {
  18822. name: "Normal",
  18823. height: math.unit(6 + 2 / 12, "feet"),
  18824. default: true
  18825. },
  18826. ]
  18827. ))
  18828. characterMakers.push(() => makeCharacter(
  18829. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18830. {
  18831. front: {
  18832. height: math.unit(6 + 1 / 12, "feet"),
  18833. weight: math.unit(304, "lb"),
  18834. name: "Front",
  18835. image: {
  18836. source: "./media/characters/oliver/front.svg",
  18837. extra: 157 / 143,
  18838. bottom: 0.08
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(6 + 1 / 12, "feet"),
  18846. default: true
  18847. },
  18848. ]
  18849. ))
  18850. characterMakers.push(() => makeCharacter(
  18851. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18852. {
  18853. front: {
  18854. height: math.unit(5 + 7 / 12, "feet"),
  18855. weight: math.unit(140, "lb"),
  18856. name: "Front",
  18857. image: {
  18858. source: "./media/characters/shane/front.svg",
  18859. extra: 304 / 289,
  18860. bottom: 0.005
  18861. }
  18862. },
  18863. },
  18864. [
  18865. {
  18866. name: "Normal",
  18867. height: math.unit(5 + 7 / 12, "feet"),
  18868. default: true
  18869. },
  18870. ]
  18871. ))
  18872. characterMakers.push(() => makeCharacter(
  18873. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18874. {
  18875. front: {
  18876. height: math.unit(5 + 9 / 12, "feet"),
  18877. weight: math.unit(178, "lb"),
  18878. name: "Front",
  18879. image: {
  18880. source: "./media/characters/shin/front.svg",
  18881. extra: 159 / 151,
  18882. bottom: 0.015
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Normal",
  18889. height: math.unit(5 + 9 / 12, "feet"),
  18890. default: true
  18891. },
  18892. ]
  18893. ))
  18894. characterMakers.push(() => makeCharacter(
  18895. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18896. {
  18897. front: {
  18898. height: math.unit(5 + 10 / 12, "feet"),
  18899. weight: math.unit(168, "lb"),
  18900. name: "Front",
  18901. image: {
  18902. source: "./media/characters/xerxes/front.svg",
  18903. extra: 282 / 260,
  18904. bottom: 0.045
  18905. }
  18906. },
  18907. },
  18908. [
  18909. {
  18910. name: "Normal",
  18911. height: math.unit(5 + 10 / 12, "feet"),
  18912. default: true
  18913. },
  18914. ]
  18915. ))
  18916. characterMakers.push(() => makeCharacter(
  18917. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18918. {
  18919. front: {
  18920. height: math.unit(6 + 7 / 12, "feet"),
  18921. weight: math.unit(208, "lb"),
  18922. name: "Front",
  18923. image: {
  18924. source: "./media/characters/chaska/front.svg",
  18925. extra: 332 / 319,
  18926. bottom: 0.015
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Normal",
  18933. height: math.unit(6 + 7 / 12, "feet"),
  18934. default: true
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18940. {
  18941. front: {
  18942. height: math.unit(5 + 8 / 12, "feet"),
  18943. weight: math.unit(208, "lb"),
  18944. name: "Front",
  18945. image: {
  18946. source: "./media/characters/enuk/front.svg",
  18947. extra: 437 / 406,
  18948. bottom: 0.02
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(5 + 8 / 12, "feet"),
  18956. default: true
  18957. },
  18958. ]
  18959. ))
  18960. characterMakers.push(() => makeCharacter(
  18961. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18962. {
  18963. front: {
  18964. height: math.unit(5 + 10 / 12, "feet"),
  18965. weight: math.unit(252, "lb"),
  18966. name: "Front",
  18967. image: {
  18968. source: "./media/characters/bruun/front.svg",
  18969. extra: 197 / 187,
  18970. bottom: 0.012
  18971. }
  18972. },
  18973. },
  18974. [
  18975. {
  18976. name: "Normal",
  18977. height: math.unit(5 + 10 / 12, "feet"),
  18978. default: true
  18979. },
  18980. ]
  18981. ))
  18982. characterMakers.push(() => makeCharacter(
  18983. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18984. {
  18985. front: {
  18986. height: math.unit(6 + 10 / 12, "feet"),
  18987. weight: math.unit(255, "lb"),
  18988. name: "Front",
  18989. image: {
  18990. source: "./media/characters/alexeev/front.svg",
  18991. extra: 213 / 200,
  18992. bottom: 0.05
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(6 + 10 / 12, "feet"),
  19000. default: true
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19006. {
  19007. front: {
  19008. height: math.unit(2 + 8 / 12, "feet"),
  19009. weight: math.unit(22, "lb"),
  19010. name: "Front",
  19011. image: {
  19012. source: "./media/characters/evelyn/front.svg",
  19013. extra: 208 / 180
  19014. }
  19015. },
  19016. },
  19017. [
  19018. {
  19019. name: "Normal",
  19020. height: math.unit(2 + 8 / 12, "feet"),
  19021. default: true
  19022. },
  19023. ]
  19024. ))
  19025. characterMakers.push(() => makeCharacter(
  19026. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19027. {
  19028. front: {
  19029. height: math.unit(5 + 9 / 12, "feet"),
  19030. weight: math.unit(139, "lb"),
  19031. name: "Front",
  19032. image: {
  19033. source: "./media/characters/inca/front.svg",
  19034. extra: 294 / 291,
  19035. bottom: 0.03
  19036. }
  19037. },
  19038. },
  19039. [
  19040. {
  19041. name: "Normal",
  19042. height: math.unit(5 + 9 / 12, "feet"),
  19043. default: true
  19044. },
  19045. ]
  19046. ))
  19047. characterMakers.push(() => makeCharacter(
  19048. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19049. {
  19050. front: {
  19051. height: math.unit(5 + 1 / 12, "feet"),
  19052. weight: math.unit(84, "lb"),
  19053. name: "Front",
  19054. image: {
  19055. source: "./media/characters/magdalene/front.svg",
  19056. extra: 293 / 273
  19057. }
  19058. },
  19059. },
  19060. [
  19061. {
  19062. name: "Normal",
  19063. height: math.unit(5 + 1 / 12, "feet"),
  19064. default: true
  19065. },
  19066. ]
  19067. ))
  19068. characterMakers.push(() => makeCharacter(
  19069. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19070. {
  19071. front: {
  19072. height: math.unit(6 + 3 / 12, "feet"),
  19073. weight: math.unit(185, "lb"),
  19074. name: "Front",
  19075. image: {
  19076. source: "./media/characters/mera/front.svg",
  19077. extra: 291 / 277,
  19078. bottom: 0.03
  19079. }
  19080. },
  19081. },
  19082. [
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(6 + 3 / 12, "feet"),
  19086. default: true
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19092. {
  19093. front: {
  19094. height: math.unit(6 + 7 / 12, "feet"),
  19095. weight: math.unit(160, "lb"),
  19096. name: "Front",
  19097. image: {
  19098. source: "./media/characters/ceres/front.svg",
  19099. extra: 1023 / 950,
  19100. bottom: 0.027
  19101. }
  19102. },
  19103. back: {
  19104. height: math.unit(6 + 7 / 12, "feet"),
  19105. weight: math.unit(160, "lb"),
  19106. name: "Back",
  19107. image: {
  19108. source: "./media/characters/ceres/back.svg",
  19109. extra: 1023 / 950
  19110. }
  19111. },
  19112. },
  19113. [
  19114. {
  19115. name: "Normal",
  19116. height: math.unit(6 + 7 / 12, "feet"),
  19117. default: true
  19118. },
  19119. ]
  19120. ))
  19121. characterMakers.push(() => makeCharacter(
  19122. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19123. {
  19124. front: {
  19125. height: math.unit(5 + 10 / 12, "feet"),
  19126. weight: math.unit(150, "lb"),
  19127. name: "Front",
  19128. image: {
  19129. source: "./media/characters/kris/front.svg",
  19130. extra: 885 / 803,
  19131. bottom: 0.03
  19132. }
  19133. },
  19134. },
  19135. [
  19136. {
  19137. name: "Normal",
  19138. height: math.unit(5 + 10 / 12, "feet"),
  19139. default: true
  19140. },
  19141. ]
  19142. ))
  19143. characterMakers.push(() => makeCharacter(
  19144. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19145. {
  19146. front: {
  19147. height: math.unit(7, "feet"),
  19148. weight: math.unit(120, "kg"),
  19149. name: "Front",
  19150. image: {
  19151. source: "./media/characters/taluthus/front.svg",
  19152. extra: 903 / 833,
  19153. bottom: 0.015
  19154. }
  19155. },
  19156. },
  19157. [
  19158. {
  19159. name: "Normal",
  19160. height: math.unit(7, "feet"),
  19161. default: true
  19162. },
  19163. {
  19164. name: "Macro",
  19165. height: math.unit(300, "feet")
  19166. },
  19167. ]
  19168. ))
  19169. characterMakers.push(() => makeCharacter(
  19170. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19171. {
  19172. front: {
  19173. height: math.unit(5 + 9 / 12, "feet"),
  19174. weight: math.unit(145, "lb"),
  19175. name: "Front",
  19176. image: {
  19177. source: "./media/characters/dawn/front.svg",
  19178. extra: 2094 / 2016,
  19179. bottom: 0.025
  19180. }
  19181. },
  19182. back: {
  19183. height: math.unit(5 + 9 / 12, "feet"),
  19184. weight: math.unit(160, "lb"),
  19185. name: "Back",
  19186. image: {
  19187. source: "./media/characters/dawn/back.svg",
  19188. extra: 2112 / 2080,
  19189. bottom: 0.005
  19190. }
  19191. },
  19192. },
  19193. [
  19194. {
  19195. name: "Normal",
  19196. height: math.unit(6 + 7 / 12, "feet"),
  19197. default: true
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19203. {
  19204. anthro: {
  19205. height: math.unit(8 + 3 / 12, "feet"),
  19206. weight: math.unit(450, "lb"),
  19207. name: "Anthro",
  19208. image: {
  19209. source: "./media/characters/arador/anthro.svg",
  19210. extra: 1835 / 1718,
  19211. bottom: 0.025
  19212. }
  19213. },
  19214. feral: {
  19215. height: math.unit(4, "feet"),
  19216. weight: math.unit(200, "lb"),
  19217. name: "Feral",
  19218. image: {
  19219. source: "./media/characters/arador/feral.svg",
  19220. extra: 1683 / 1514,
  19221. bottom: 0.07
  19222. }
  19223. },
  19224. },
  19225. [
  19226. {
  19227. name: "Normal",
  19228. height: math.unit(8 + 3 / 12, "feet")
  19229. },
  19230. {
  19231. name: "Macro",
  19232. height: math.unit(82.5, "feet"),
  19233. default: true
  19234. },
  19235. ]
  19236. ))
  19237. characterMakers.push(() => makeCharacter(
  19238. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19239. {
  19240. front: {
  19241. height: math.unit(5 + 10 / 12, "feet"),
  19242. weight: math.unit(125, "lb"),
  19243. name: "Front",
  19244. image: {
  19245. source: "./media/characters/dharsi/front.svg",
  19246. extra: 716 / 630,
  19247. bottom: 0.035
  19248. }
  19249. },
  19250. },
  19251. [
  19252. {
  19253. name: "Nano",
  19254. height: math.unit(100, "nm")
  19255. },
  19256. {
  19257. name: "Micro",
  19258. height: math.unit(2, "inches")
  19259. },
  19260. {
  19261. name: "Normal",
  19262. height: math.unit(5 + 10 / 12, "feet"),
  19263. default: true
  19264. },
  19265. {
  19266. name: "Macro",
  19267. height: math.unit(1000, "feet")
  19268. },
  19269. {
  19270. name: "Megamacro",
  19271. height: math.unit(10, "miles")
  19272. },
  19273. {
  19274. name: "Gigamacro",
  19275. height: math.unit(3000, "miles")
  19276. },
  19277. {
  19278. name: "Teramacro",
  19279. height: math.unit(500000, "miles")
  19280. },
  19281. {
  19282. name: "Teramacro+",
  19283. height: math.unit(30, "galaxies")
  19284. },
  19285. ]
  19286. ))
  19287. characterMakers.push(() => makeCharacter(
  19288. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19289. {
  19290. front: {
  19291. height: math.unit(6, "feet"),
  19292. weight: math.unit(150, "lb"),
  19293. name: "Front",
  19294. image: {
  19295. source: "./media/characters/deathy/front.svg",
  19296. extra: 1552 / 1463,
  19297. bottom: 0.025
  19298. }
  19299. },
  19300. side: {
  19301. height: math.unit(6, "feet"),
  19302. weight: math.unit(150, "lb"),
  19303. name: "Side",
  19304. image: {
  19305. source: "./media/characters/deathy/side.svg",
  19306. extra: 1604 / 1455,
  19307. bottom: 0.025
  19308. }
  19309. },
  19310. back: {
  19311. height: math.unit(6, "feet"),
  19312. weight: math.unit(150, "lb"),
  19313. name: "Back",
  19314. image: {
  19315. source: "./media/characters/deathy/back.svg",
  19316. extra: 1580 / 1463,
  19317. bottom: 0.005
  19318. }
  19319. },
  19320. },
  19321. [
  19322. {
  19323. name: "Micro",
  19324. height: math.unit(5, "millimeters")
  19325. },
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(6 + 5 / 12, "feet"),
  19329. default: true
  19330. },
  19331. ]
  19332. ))
  19333. characterMakers.push(() => makeCharacter(
  19334. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19335. {
  19336. front: {
  19337. height: math.unit(16, "feet"),
  19338. weight: math.unit(4000, "lb"),
  19339. name: "Front",
  19340. image: {
  19341. source: "./media/characters/juniper/front.svg",
  19342. bottom: 0.04
  19343. }
  19344. },
  19345. },
  19346. [
  19347. {
  19348. name: "Normal",
  19349. height: math.unit(16, "feet"),
  19350. default: true
  19351. },
  19352. ]
  19353. ))
  19354. characterMakers.push(() => makeCharacter(
  19355. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19356. {
  19357. front: {
  19358. height: math.unit(6, "feet"),
  19359. weight: math.unit(150, "lb"),
  19360. name: "Front",
  19361. image: {
  19362. source: "./media/characters/hipster/front.svg",
  19363. extra: 1312 / 1209,
  19364. bottom: 0.025
  19365. }
  19366. },
  19367. back: {
  19368. height: math.unit(6, "feet"),
  19369. weight: math.unit(150, "lb"),
  19370. name: "Back",
  19371. image: {
  19372. source: "./media/characters/hipster/back.svg",
  19373. extra: 1281 / 1196,
  19374. bottom: 0.01
  19375. }
  19376. },
  19377. },
  19378. [
  19379. {
  19380. name: "Micro",
  19381. height: math.unit(1, "mm")
  19382. },
  19383. {
  19384. name: "Normal",
  19385. height: math.unit(4, "inches"),
  19386. default: true
  19387. },
  19388. {
  19389. name: "Macro",
  19390. height: math.unit(500, "feet")
  19391. },
  19392. {
  19393. name: "Megamacro",
  19394. height: math.unit(1000, "miles")
  19395. },
  19396. ]
  19397. ))
  19398. characterMakers.push(() => makeCharacter(
  19399. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19400. {
  19401. front: {
  19402. height: math.unit(6, "feet"),
  19403. weight: math.unit(150, "lb"),
  19404. name: "Front",
  19405. image: {
  19406. source: "./media/characters/tendirmuldr/front.svg",
  19407. extra: 1878 / 1772,
  19408. bottom: 0.015
  19409. }
  19410. },
  19411. },
  19412. [
  19413. {
  19414. name: "Megamacro",
  19415. height: math.unit(1500, "miles"),
  19416. default: true
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19422. {
  19423. front: {
  19424. height: math.unit(14, "feet"),
  19425. weight: math.unit(12000, "lb"),
  19426. name: "Front",
  19427. image: {
  19428. source: "./media/characters/mort/front.svg",
  19429. extra: 365 / 318,
  19430. bottom: 0.01
  19431. }
  19432. },
  19433. side: {
  19434. height: math.unit(14, "feet"),
  19435. weight: math.unit(12000, "lb"),
  19436. name: "Side",
  19437. image: {
  19438. source: "./media/characters/mort/side.svg",
  19439. extra: 365 / 318,
  19440. bottom: 0.052
  19441. },
  19442. default: true
  19443. },
  19444. back: {
  19445. height: math.unit(14, "feet"),
  19446. weight: math.unit(12000, "lb"),
  19447. name: "Back",
  19448. image: {
  19449. source: "./media/characters/mort/back.svg",
  19450. extra: 371 / 332,
  19451. bottom: 0.18
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Normal",
  19458. height: math.unit(14, "feet"),
  19459. default: true
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19465. {
  19466. front: {
  19467. height: math.unit(8, "feet"),
  19468. weight: math.unit(1, "ton"),
  19469. name: "Front",
  19470. image: {
  19471. source: "./media/characters/lycoa/front.svg",
  19472. extra: 1875 / 1789,
  19473. bottom: 0.022
  19474. }
  19475. },
  19476. back: {
  19477. height: math.unit(8, "feet"),
  19478. weight: math.unit(1, "ton"),
  19479. name: "Back",
  19480. image: {
  19481. source: "./media/characters/lycoa/back.svg",
  19482. extra: 1835 / 1781,
  19483. bottom: 0.03
  19484. }
  19485. },
  19486. head: {
  19487. height: math.unit(2.1, "feet"),
  19488. name: "Head",
  19489. image: {
  19490. source: "./media/characters/lycoa/head.svg"
  19491. }
  19492. },
  19493. tailmaw: {
  19494. height: math.unit(1.9, "feet"),
  19495. name: "Tailmaw",
  19496. image: {
  19497. source: "./media/characters/lycoa/tailmaw.svg"
  19498. }
  19499. },
  19500. tentacles: {
  19501. height: math.unit(2.1, "feet"),
  19502. name: "Tentacles",
  19503. image: {
  19504. source: "./media/characters/lycoa/tentacles.svg"
  19505. }
  19506. },
  19507. dick: {
  19508. height: math.unit(1.73, "feet"),
  19509. name: "Dick",
  19510. image: {
  19511. source: "./media/characters/lycoa/dick.svg"
  19512. }
  19513. },
  19514. },
  19515. [
  19516. {
  19517. name: "Normal",
  19518. height: math.unit(8, "feet"),
  19519. default: true
  19520. },
  19521. {
  19522. name: "Macro",
  19523. height: math.unit(30, "feet")
  19524. },
  19525. ]
  19526. ))
  19527. characterMakers.push(() => makeCharacter(
  19528. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19529. {
  19530. front: {
  19531. height: math.unit(4 + 2 / 12, "feet"),
  19532. weight: math.unit(70, "lb"),
  19533. name: "Front",
  19534. image: {
  19535. source: "./media/characters/naldara/front.svg",
  19536. extra: 841 / 720,
  19537. bottom: 0.04
  19538. }
  19539. },
  19540. naga: {
  19541. height: math.unit(23, "feet"),
  19542. weight: math.unit(15000, "kg"),
  19543. name: "Naga",
  19544. image: {
  19545. source: "./media/characters/naldara/naga.svg",
  19546. extra: 3290 / 2959,
  19547. bottom: 124 / 3432
  19548. }
  19549. },
  19550. },
  19551. [
  19552. {
  19553. name: "Normal",
  19554. height: math.unit(4 + 2 / 12, "feet"),
  19555. default: true
  19556. },
  19557. ]
  19558. ))
  19559. characterMakers.push(() => makeCharacter(
  19560. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19561. {
  19562. front: {
  19563. height: math.unit(13 + 7 / 12, "feet"),
  19564. weight: math.unit(1500, "lb"),
  19565. name: "Front",
  19566. image: {
  19567. source: "./media/characters/briar/front.svg",
  19568. extra: 626 / 596,
  19569. bottom: 0.08
  19570. }
  19571. },
  19572. },
  19573. [
  19574. {
  19575. name: "Normal",
  19576. height: math.unit(13 + 7 / 12, "feet"),
  19577. default: true
  19578. },
  19579. ]
  19580. ))
  19581. characterMakers.push(() => makeCharacter(
  19582. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19583. {
  19584. side: {
  19585. height: math.unit(10, "feet"),
  19586. weight: math.unit(500, "lb"),
  19587. name: "Side",
  19588. image: {
  19589. source: "./media/characters/vanguard/side.svg",
  19590. extra: 502 / 425,
  19591. bottom: 0.087
  19592. }
  19593. },
  19594. },
  19595. [
  19596. {
  19597. name: "Normal",
  19598. height: math.unit(10, "feet"),
  19599. default: true
  19600. },
  19601. ]
  19602. ))
  19603. characterMakers.push(() => makeCharacter(
  19604. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19605. {
  19606. front: {
  19607. height: math.unit(7.5, "feet"),
  19608. weight: math.unit(2, "lb"),
  19609. name: "Front",
  19610. image: {
  19611. source: "./media/characters/artemis/front.svg",
  19612. extra: 1192 / 1075,
  19613. bottom: 0.07
  19614. }
  19615. },
  19616. frontNsfw: {
  19617. height: math.unit(7.5, "feet"),
  19618. weight: math.unit(2, "lb"),
  19619. name: "Front (NSFW)",
  19620. image: {
  19621. source: "./media/characters/artemis/front-nsfw.svg",
  19622. extra: 1192 / 1075,
  19623. bottom: 0.07
  19624. }
  19625. },
  19626. frontNsfwer: {
  19627. height: math.unit(7.5, "feet"),
  19628. weight: math.unit(2, "lb"),
  19629. name: "Front (NSFW-er)",
  19630. image: {
  19631. source: "./media/characters/artemis/front-nsfwer.svg",
  19632. extra: 1192 / 1075,
  19633. bottom: 0.07
  19634. }
  19635. },
  19636. side: {
  19637. height: math.unit(7.5, "feet"),
  19638. weight: math.unit(2, "lb"),
  19639. name: "Side",
  19640. image: {
  19641. source: "./media/characters/artemis/side.svg",
  19642. extra: 1192 / 1075,
  19643. bottom: 0.07
  19644. }
  19645. },
  19646. sideNsfw: {
  19647. height: math.unit(7.5, "feet"),
  19648. weight: math.unit(2, "lb"),
  19649. name: "Side (NSFW)",
  19650. image: {
  19651. source: "./media/characters/artemis/side-nsfw.svg",
  19652. extra: 1192 / 1075,
  19653. bottom: 0.07
  19654. }
  19655. },
  19656. sideNsfwer: {
  19657. height: math.unit(7.5, "feet"),
  19658. weight: math.unit(2, "lb"),
  19659. name: "Side (NSFW-er)",
  19660. image: {
  19661. source: "./media/characters/artemis/side-nsfwer.svg",
  19662. extra: 1192 / 1075,
  19663. bottom: 0.07
  19664. }
  19665. },
  19666. maw: {
  19667. height: math.unit(1.1, "feet"),
  19668. name: "Maw",
  19669. image: {
  19670. source: "./media/characters/artemis/maw.svg"
  19671. }
  19672. },
  19673. stomach: {
  19674. height: math.unit(0.95, "feet"),
  19675. name: "Stomach",
  19676. image: {
  19677. source: "./media/characters/artemis/stomach.svg"
  19678. }
  19679. },
  19680. dickCanine: {
  19681. height: math.unit(1, "feet"),
  19682. name: "Dick (Canine)",
  19683. image: {
  19684. source: "./media/characters/artemis/dick-canine.svg"
  19685. }
  19686. },
  19687. dickEquine: {
  19688. height: math.unit(0.85, "feet"),
  19689. name: "Dick (Equine)",
  19690. image: {
  19691. source: "./media/characters/artemis/dick-equine.svg"
  19692. }
  19693. },
  19694. dickExotic: {
  19695. height: math.unit(0.85, "feet"),
  19696. name: "Dick (Exotic)",
  19697. image: {
  19698. source: "./media/characters/artemis/dick-exotic.svg"
  19699. }
  19700. },
  19701. },
  19702. [
  19703. {
  19704. name: "Normal",
  19705. height: math.unit(7.5, "feet"),
  19706. default: true
  19707. },
  19708. {
  19709. name: "Enlarged",
  19710. height: math.unit(12, "feet")
  19711. },
  19712. ]
  19713. ))
  19714. characterMakers.push(() => makeCharacter(
  19715. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19716. {
  19717. front: {
  19718. height: math.unit(5 + 3 / 12, "feet"),
  19719. weight: math.unit(160, "lb"),
  19720. name: "Front",
  19721. image: {
  19722. source: "./media/characters/kira/front.svg",
  19723. extra: 906 / 786,
  19724. bottom: 0.01
  19725. }
  19726. },
  19727. back: {
  19728. height: math.unit(5 + 3 / 12, "feet"),
  19729. weight: math.unit(160, "lb"),
  19730. name: "Back",
  19731. image: {
  19732. source: "./media/characters/kira/back.svg",
  19733. extra: 882 / 757,
  19734. bottom: 0.005
  19735. }
  19736. },
  19737. frontDressed: {
  19738. height: math.unit(5 + 3 / 12, "feet"),
  19739. weight: math.unit(160, "lb"),
  19740. name: "Front (Dressed)",
  19741. image: {
  19742. source: "./media/characters/kira/front-dressed.svg",
  19743. extra: 906 / 786,
  19744. bottom: 0.01
  19745. }
  19746. },
  19747. beans: {
  19748. height: math.unit(0.92, "feet"),
  19749. name: "Beans",
  19750. image: {
  19751. source: "./media/characters/kira/beans.svg"
  19752. }
  19753. },
  19754. },
  19755. [
  19756. {
  19757. name: "Normal",
  19758. height: math.unit(5 + 3 / 12, "feet"),
  19759. default: true
  19760. },
  19761. ]
  19762. ))
  19763. characterMakers.push(() => makeCharacter(
  19764. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19765. {
  19766. front: {
  19767. height: math.unit(5 + 4 / 12, "feet"),
  19768. weight: math.unit(145, "lb"),
  19769. name: "Front",
  19770. image: {
  19771. source: "./media/characters/scramble/front.svg",
  19772. extra: 763 / 727,
  19773. bottom: 0.05
  19774. }
  19775. },
  19776. back: {
  19777. height: math.unit(5 + 4 / 12, "feet"),
  19778. weight: math.unit(145, "lb"),
  19779. name: "Back",
  19780. image: {
  19781. source: "./media/characters/scramble/back.svg",
  19782. extra: 826 / 737,
  19783. bottom: 0.002
  19784. }
  19785. },
  19786. },
  19787. [
  19788. {
  19789. name: "Normal",
  19790. height: math.unit(5 + 4 / 12, "feet"),
  19791. default: true
  19792. },
  19793. ]
  19794. ))
  19795. characterMakers.push(() => makeCharacter(
  19796. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19797. {
  19798. side: {
  19799. height: math.unit(6 + 2 / 12, "feet"),
  19800. weight: math.unit(190, "lb"),
  19801. name: "Side",
  19802. image: {
  19803. source: "./media/characters/biscuit/side.svg",
  19804. extra: 858 / 791,
  19805. bottom: 0.044
  19806. }
  19807. },
  19808. },
  19809. [
  19810. {
  19811. name: "Normal",
  19812. height: math.unit(6 + 2 / 12, "feet"),
  19813. default: true
  19814. },
  19815. ]
  19816. ))
  19817. characterMakers.push(() => makeCharacter(
  19818. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19819. {
  19820. front: {
  19821. height: math.unit(5 + 2 / 12, "feet"),
  19822. weight: math.unit(120, "lb"),
  19823. name: "Front",
  19824. image: {
  19825. source: "./media/characters/poffin/front.svg",
  19826. extra: 786 / 680,
  19827. bottom: 0.005
  19828. }
  19829. },
  19830. },
  19831. [
  19832. {
  19833. name: "Normal",
  19834. height: math.unit(5 + 2 / 12, "feet"),
  19835. default: true
  19836. },
  19837. ]
  19838. ))
  19839. characterMakers.push(() => makeCharacter(
  19840. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19841. {
  19842. front: {
  19843. height: math.unit(6 + 3 / 12, "feet"),
  19844. weight: math.unit(519, "lb"),
  19845. name: "Front",
  19846. image: {
  19847. source: "./media/characters/dhari/front.svg",
  19848. extra: 1048 / 946,
  19849. bottom: 0.015
  19850. }
  19851. },
  19852. back: {
  19853. height: math.unit(6 + 3 / 12, "feet"),
  19854. weight: math.unit(519, "lb"),
  19855. name: "Back",
  19856. image: {
  19857. source: "./media/characters/dhari/back.svg",
  19858. extra: 1048 / 931,
  19859. bottom: 0.005
  19860. }
  19861. },
  19862. frontDressed: {
  19863. height: math.unit(6 + 3 / 12, "feet"),
  19864. weight: math.unit(519, "lb"),
  19865. name: "Front (Dressed)",
  19866. image: {
  19867. source: "./media/characters/dhari/front-dressed.svg",
  19868. extra: 1713 / 1546,
  19869. bottom: 0.02
  19870. }
  19871. },
  19872. backDressed: {
  19873. height: math.unit(6 + 3 / 12, "feet"),
  19874. weight: math.unit(519, "lb"),
  19875. name: "Back (Dressed)",
  19876. image: {
  19877. source: "./media/characters/dhari/back-dressed.svg",
  19878. extra: 1699 / 1537,
  19879. bottom: 0.01
  19880. }
  19881. },
  19882. maw: {
  19883. height: math.unit(0.95, "feet"),
  19884. name: "Maw",
  19885. image: {
  19886. source: "./media/characters/dhari/maw.svg"
  19887. }
  19888. },
  19889. wereFront: {
  19890. height: math.unit(12 + 8 / 12, "feet"),
  19891. weight: math.unit(4000, "lb"),
  19892. name: "Front (Were)",
  19893. image: {
  19894. source: "./media/characters/dhari/were-front.svg",
  19895. extra: 1065 / 969,
  19896. bottom: 0.015
  19897. }
  19898. },
  19899. wereBack: {
  19900. height: math.unit(12 + 8 / 12, "feet"),
  19901. weight: math.unit(4000, "lb"),
  19902. name: "Back (Were)",
  19903. image: {
  19904. source: "./media/characters/dhari/were-back.svg",
  19905. extra: 1065 / 969,
  19906. bottom: 0.012
  19907. }
  19908. },
  19909. wereMaw: {
  19910. height: math.unit(0.625, "meters"),
  19911. name: "Maw (Were)",
  19912. image: {
  19913. source: "./media/characters/dhari/were-maw.svg"
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(6 + 3 / 12, "feet"),
  19921. default: true
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19927. {
  19928. anthro: {
  19929. height: math.unit(5 + 7 / 12, "feet"),
  19930. weight: math.unit(175, "lb"),
  19931. name: "Anthro",
  19932. image: {
  19933. source: "./media/characters/rena-dyne/anthro.svg",
  19934. extra: 1849 / 1785,
  19935. bottom: 0.005
  19936. }
  19937. },
  19938. taur: {
  19939. height: math.unit(15 + 6 / 12, "feet"),
  19940. weight: math.unit(8000, "lb"),
  19941. name: "Taur",
  19942. image: {
  19943. source: "./media/characters/rena-dyne/taur.svg",
  19944. extra: 2315 / 2234,
  19945. bottom: 0.033
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(5 + 7 / 12, "feet"),
  19953. default: true
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19959. {
  19960. front: {
  19961. height: math.unit(8, "feet"),
  19962. weight: math.unit(600, "lb"),
  19963. name: "Front",
  19964. image: {
  19965. source: "./media/characters/weremeep/front.svg",
  19966. extra: 967 / 862,
  19967. bottom: 0.01
  19968. }
  19969. },
  19970. },
  19971. [
  19972. {
  19973. name: "Normal",
  19974. height: math.unit(8, "feet"),
  19975. default: true
  19976. },
  19977. {
  19978. name: "Lorg",
  19979. height: math.unit(12, "feet")
  19980. },
  19981. {
  19982. name: "Oh Lawd She Comin'",
  19983. height: math.unit(20, "feet")
  19984. },
  19985. ]
  19986. ))
  19987. characterMakers.push(() => makeCharacter(
  19988. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19989. {
  19990. front: {
  19991. height: math.unit(4, "feet"),
  19992. weight: math.unit(90, "lb"),
  19993. name: "Front",
  19994. image: {
  19995. source: "./media/characters/reza/front.svg",
  19996. extra: 1183 / 1111,
  19997. bottom: 0.017
  19998. }
  19999. },
  20000. back: {
  20001. height: math.unit(4, "feet"),
  20002. weight: math.unit(90, "lb"),
  20003. name: "Back",
  20004. image: {
  20005. source: "./media/characters/reza/back.svg",
  20006. extra: 1183 / 1111,
  20007. bottom: 0.01
  20008. }
  20009. },
  20010. drake: {
  20011. height: math.unit(30, "feet"),
  20012. weight: math.unit(246960, "lb"),
  20013. name: "Drake",
  20014. image: {
  20015. source: "./media/characters/reza/drake.svg",
  20016. extra: 2350 / 2024,
  20017. bottom: 60.7 / 2403
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Normal",
  20024. height: math.unit(4, "feet"),
  20025. default: true
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20031. {
  20032. side: {
  20033. height: math.unit(15, "feet"),
  20034. weight: math.unit(14, "tons"),
  20035. name: "Side",
  20036. image: {
  20037. source: "./media/characters/athea/side.svg",
  20038. extra: 960 / 540,
  20039. bottom: 0.003
  20040. }
  20041. },
  20042. sitting: {
  20043. height: math.unit(6 * 2.85, "feet"),
  20044. weight: math.unit(14, "tons"),
  20045. name: "Sitting",
  20046. image: {
  20047. source: "./media/characters/athea/sitting.svg",
  20048. extra: 621 / 581,
  20049. bottom: 0.075
  20050. }
  20051. },
  20052. maw: {
  20053. height: math.unit(7.59498031496063, "feet"),
  20054. name: "Maw",
  20055. image: {
  20056. source: "./media/characters/athea/maw.svg"
  20057. }
  20058. },
  20059. },
  20060. [
  20061. {
  20062. name: "Lap Cat",
  20063. height: math.unit(2.5, "feet")
  20064. },
  20065. {
  20066. name: "Minimacro",
  20067. height: math.unit(15, "feet"),
  20068. default: true
  20069. },
  20070. {
  20071. name: "Macro",
  20072. height: math.unit(120, "feet")
  20073. },
  20074. {
  20075. name: "Macro+",
  20076. height: math.unit(640, "feet")
  20077. },
  20078. {
  20079. name: "Colossus",
  20080. height: math.unit(2.2, "miles")
  20081. },
  20082. ]
  20083. ))
  20084. characterMakers.push(() => makeCharacter(
  20085. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20086. {
  20087. front: {
  20088. height: math.unit(8 + 8 / 12, "feet"),
  20089. weight: math.unit(130, "kg"),
  20090. name: "Front",
  20091. image: {
  20092. source: "./media/characters/seroko/front.svg",
  20093. extra: 1385 / 1280,
  20094. bottom: 0.025
  20095. }
  20096. },
  20097. back: {
  20098. height: math.unit(8 + 8 / 12, "feet"),
  20099. weight: math.unit(130, "kg"),
  20100. name: "Back",
  20101. image: {
  20102. source: "./media/characters/seroko/back.svg",
  20103. extra: 1369 / 1238,
  20104. bottom: 0.018
  20105. }
  20106. },
  20107. frontDressed: {
  20108. height: math.unit(8 + 8 / 12, "feet"),
  20109. weight: math.unit(130, "kg"),
  20110. name: "Front (Dressed)",
  20111. image: {
  20112. source: "./media/characters/seroko/front-dressed.svg",
  20113. extra: 1366 / 1275,
  20114. bottom: 0.03
  20115. }
  20116. },
  20117. },
  20118. [
  20119. {
  20120. name: "Normal",
  20121. height: math.unit(8 + 8 / 12, "feet"),
  20122. default: true
  20123. },
  20124. ]
  20125. ))
  20126. characterMakers.push(() => makeCharacter(
  20127. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20128. {
  20129. front: {
  20130. height: math.unit(5.5, "feet"),
  20131. weight: math.unit(160, "lb"),
  20132. name: "Front",
  20133. image: {
  20134. source: "./media/characters/quatzi/front.svg",
  20135. extra: 2346 / 2242,
  20136. bottom: 0.015
  20137. }
  20138. },
  20139. },
  20140. [
  20141. {
  20142. name: "Normal",
  20143. height: math.unit(5.5, "feet"),
  20144. default: true
  20145. },
  20146. {
  20147. name: "Big",
  20148. height: math.unit(7.7, "feet")
  20149. },
  20150. ]
  20151. ))
  20152. characterMakers.push(() => makeCharacter(
  20153. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20154. {
  20155. front: {
  20156. height: math.unit(5 + 11 / 12, "feet"),
  20157. weight: math.unit(180, "lb"),
  20158. name: "Front",
  20159. image: {
  20160. source: "./media/characters/sen/front.svg",
  20161. extra: 1321 / 1254,
  20162. bottom: 0.015
  20163. }
  20164. },
  20165. side: {
  20166. height: math.unit(5 + 11 / 12, "feet"),
  20167. weight: math.unit(180, "lb"),
  20168. name: "Side",
  20169. image: {
  20170. source: "./media/characters/sen/side.svg",
  20171. extra: 1321 / 1254,
  20172. bottom: 0.007
  20173. }
  20174. },
  20175. back: {
  20176. height: math.unit(5 + 11 / 12, "feet"),
  20177. weight: math.unit(180, "lb"),
  20178. name: "Back",
  20179. image: {
  20180. source: "./media/characters/sen/back.svg",
  20181. extra: 1321 / 1254
  20182. }
  20183. },
  20184. },
  20185. [
  20186. {
  20187. name: "Normal",
  20188. height: math.unit(5 + 11 / 12, "feet"),
  20189. default: true
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20195. {
  20196. front: {
  20197. height: math.unit(166.6, "cm"),
  20198. weight: math.unit(66.6, "kg"),
  20199. name: "Front",
  20200. image: {
  20201. source: "./media/characters/fruity/front.svg",
  20202. extra: 1510 / 1386,
  20203. bottom: 0.04
  20204. }
  20205. },
  20206. back: {
  20207. height: math.unit(166.6, "cm"),
  20208. weight: math.unit(66.6, "lb"),
  20209. name: "Back",
  20210. image: {
  20211. source: "./media/characters/fruity/back.svg",
  20212. extra: 1563 / 1435,
  20213. bottom: 0.005
  20214. }
  20215. },
  20216. },
  20217. [
  20218. {
  20219. name: "Normal",
  20220. height: math.unit(166.6, "cm"),
  20221. default: true
  20222. },
  20223. {
  20224. name: "Demonic",
  20225. height: math.unit(166.6, "feet")
  20226. },
  20227. ]
  20228. ))
  20229. characterMakers.push(() => makeCharacter(
  20230. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20231. {
  20232. side: {
  20233. height: math.unit(10, "feet"),
  20234. weight: math.unit(500, "lb"),
  20235. name: "Side",
  20236. image: {
  20237. source: "./media/characters/zost/side.svg",
  20238. extra: 966 / 880,
  20239. bottom: 0.075
  20240. }
  20241. },
  20242. mawFront: {
  20243. height: math.unit(1.08, "meters"),
  20244. name: "Maw (Front)",
  20245. image: {
  20246. source: "./media/characters/zost/maw-front.svg"
  20247. }
  20248. },
  20249. mawSide: {
  20250. height: math.unit(2.66, "feet"),
  20251. name: "Maw (Side)",
  20252. image: {
  20253. source: "./media/characters/zost/maw-side.svg"
  20254. }
  20255. },
  20256. },
  20257. [
  20258. {
  20259. name: "Normal",
  20260. height: math.unit(10, "feet"),
  20261. default: true
  20262. },
  20263. ]
  20264. ))
  20265. characterMakers.push(() => makeCharacter(
  20266. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20267. {
  20268. front: {
  20269. height: math.unit(5 + 4 / 12, "feet"),
  20270. weight: math.unit(120, "lb"),
  20271. name: "Front",
  20272. image: {
  20273. source: "./media/characters/luci/front.svg",
  20274. extra: 1985 / 1884,
  20275. bottom: 0.04
  20276. }
  20277. },
  20278. back: {
  20279. height: math.unit(5 + 4 / 12, "feet"),
  20280. weight: math.unit(120, "lb"),
  20281. name: "Back",
  20282. image: {
  20283. source: "./media/characters/luci/back.svg",
  20284. extra: 1892 / 1791,
  20285. bottom: 0.002
  20286. }
  20287. },
  20288. },
  20289. [
  20290. {
  20291. name: "Normal",
  20292. height: math.unit(5 + 4 / 12, "feet"),
  20293. default: true
  20294. },
  20295. ]
  20296. ))
  20297. characterMakers.push(() => makeCharacter(
  20298. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20299. {
  20300. front: {
  20301. height: math.unit(1500, "feet"),
  20302. weight: math.unit(3.8e6, "tons"),
  20303. name: "Front",
  20304. image: {
  20305. source: "./media/characters/2th/front.svg",
  20306. extra: 3489 / 3350,
  20307. bottom: 0.1
  20308. }
  20309. },
  20310. foot: {
  20311. height: math.unit(461, "feet"),
  20312. name: "Foot",
  20313. image: {
  20314. source: "./media/characters/2th/foot.svg"
  20315. }
  20316. },
  20317. },
  20318. [
  20319. {
  20320. name: "\"Micro\"",
  20321. height: math.unit(15 + 7 / 12, "feet")
  20322. },
  20323. {
  20324. name: "Normal",
  20325. height: math.unit(1500, "feet"),
  20326. default: true
  20327. },
  20328. {
  20329. name: "Macro",
  20330. height: math.unit(5000, "feet")
  20331. },
  20332. {
  20333. name: "Megamacro",
  20334. height: math.unit(15, "miles")
  20335. },
  20336. {
  20337. name: "Gigamacro",
  20338. height: math.unit(4000, "miles")
  20339. },
  20340. {
  20341. name: "Galactic",
  20342. height: math.unit(50, "AU")
  20343. },
  20344. ]
  20345. ))
  20346. characterMakers.push(() => makeCharacter(
  20347. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20348. {
  20349. front: {
  20350. height: math.unit(5 + 6 / 12, "feet"),
  20351. weight: math.unit(220, "lb"),
  20352. name: "Front",
  20353. image: {
  20354. source: "./media/characters/amethyst/front.svg",
  20355. extra: 2078 / 2040,
  20356. bottom: 0.045
  20357. }
  20358. },
  20359. back: {
  20360. height: math.unit(5 + 6 / 12, "feet"),
  20361. weight: math.unit(220, "lb"),
  20362. name: "Back",
  20363. image: {
  20364. source: "./media/characters/amethyst/back.svg",
  20365. extra: 2021 / 1989,
  20366. bottom: 0.02
  20367. }
  20368. },
  20369. },
  20370. [
  20371. {
  20372. name: "Normal",
  20373. height: math.unit(5 + 6 / 12, "feet"),
  20374. default: true
  20375. },
  20376. ]
  20377. ))
  20378. characterMakers.push(() => makeCharacter(
  20379. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20380. {
  20381. front: {
  20382. height: math.unit(4 + 11 / 12, "feet"),
  20383. weight: math.unit(120, "lb"),
  20384. name: "Front",
  20385. image: {
  20386. source: "./media/characters/yumi-akiyama/front.svg",
  20387. extra: 1327 / 1235,
  20388. bottom: 0.02
  20389. }
  20390. },
  20391. back: {
  20392. height: math.unit(4 + 11 / 12, "feet"),
  20393. weight: math.unit(120, "lb"),
  20394. name: "Back",
  20395. image: {
  20396. source: "./media/characters/yumi-akiyama/back.svg",
  20397. extra: 1287 / 1245,
  20398. bottom: 0.002
  20399. }
  20400. },
  20401. },
  20402. [
  20403. {
  20404. name: "Galactic",
  20405. height: math.unit(50, "galaxies"),
  20406. default: true
  20407. },
  20408. {
  20409. name: "Universal",
  20410. height: math.unit(100, "universes")
  20411. },
  20412. ]
  20413. ))
  20414. characterMakers.push(() => makeCharacter(
  20415. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20416. {
  20417. front: {
  20418. height: math.unit(8, "feet"),
  20419. weight: math.unit(500, "lb"),
  20420. name: "Front",
  20421. image: {
  20422. source: "./media/characters/rifter-yrmori/front.svg",
  20423. extra: 1180 / 1125,
  20424. bottom: 0.02
  20425. }
  20426. },
  20427. back: {
  20428. height: math.unit(8, "feet"),
  20429. weight: math.unit(500, "lb"),
  20430. name: "Back",
  20431. image: {
  20432. source: "./media/characters/rifter-yrmori/back.svg",
  20433. extra: 1190 / 1145,
  20434. bottom: 0.001
  20435. }
  20436. },
  20437. wings: {
  20438. height: math.unit(7.75, "feet"),
  20439. weight: math.unit(500, "lb"),
  20440. name: "Wings",
  20441. image: {
  20442. source: "./media/characters/rifter-yrmori/wings.svg",
  20443. extra: 1357 / 1285
  20444. }
  20445. },
  20446. maw: {
  20447. height: math.unit(0.8, "feet"),
  20448. name: "Maw",
  20449. image: {
  20450. source: "./media/characters/rifter-yrmori/maw.svg"
  20451. }
  20452. },
  20453. mawfront: {
  20454. height: math.unit(1.45, "feet"),
  20455. name: "Maw (Front)",
  20456. image: {
  20457. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20458. }
  20459. },
  20460. },
  20461. [
  20462. {
  20463. name: "Normal",
  20464. height: math.unit(8, "feet"),
  20465. default: true
  20466. },
  20467. {
  20468. name: "Macro",
  20469. height: math.unit(42, "meters")
  20470. },
  20471. ]
  20472. ))
  20473. characterMakers.push(() => makeCharacter(
  20474. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20475. {
  20476. were: {
  20477. height: math.unit(25 + 6 / 12, "feet"),
  20478. weight: math.unit(10000, "lb"),
  20479. name: "Were",
  20480. image: {
  20481. source: "./media/characters/tahajin/were.svg",
  20482. extra: 801 / 770,
  20483. bottom: 0.042
  20484. }
  20485. },
  20486. aquatic: {
  20487. height: math.unit(6 + 4 / 12, "feet"),
  20488. weight: math.unit(160, "lb"),
  20489. name: "Aquatic",
  20490. image: {
  20491. source: "./media/characters/tahajin/aquatic.svg",
  20492. extra: 572 / 542,
  20493. bottom: 0.04
  20494. }
  20495. },
  20496. chow: {
  20497. height: math.unit(8 + 11 / 12, "feet"),
  20498. weight: math.unit(450, "lb"),
  20499. name: "Chow",
  20500. image: {
  20501. source: "./media/characters/tahajin/chow.svg",
  20502. extra: 660 / 640,
  20503. bottom: 0.015
  20504. }
  20505. },
  20506. demiNaga: {
  20507. height: math.unit(6 + 8 / 12, "feet"),
  20508. weight: math.unit(300, "lb"),
  20509. name: "Demi Naga",
  20510. image: {
  20511. source: "./media/characters/tahajin/demi-naga.svg",
  20512. extra: 643 / 615,
  20513. bottom: 0.1
  20514. }
  20515. },
  20516. data: {
  20517. height: math.unit(5, "inches"),
  20518. weight: math.unit(0.1, "lb"),
  20519. name: "Data",
  20520. image: {
  20521. source: "./media/characters/tahajin/data.svg"
  20522. }
  20523. },
  20524. fluu: {
  20525. height: math.unit(5 + 7 / 12, "feet"),
  20526. weight: math.unit(140, "lb"),
  20527. name: "Fluu",
  20528. image: {
  20529. source: "./media/characters/tahajin/fluu.svg",
  20530. extra: 628 / 592,
  20531. bottom: 0.02
  20532. }
  20533. },
  20534. starWarrior: {
  20535. height: math.unit(4 + 5 / 12, "feet"),
  20536. weight: math.unit(50, "lb"),
  20537. name: "Star Warrior",
  20538. image: {
  20539. source: "./media/characters/tahajin/star-warrior.svg"
  20540. }
  20541. },
  20542. },
  20543. [
  20544. {
  20545. name: "Normal",
  20546. height: math.unit(25 + 6 / 12, "feet"),
  20547. default: true
  20548. },
  20549. ]
  20550. ))
  20551. characterMakers.push(() => makeCharacter(
  20552. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20553. {
  20554. front: {
  20555. height: math.unit(8, "feet"),
  20556. weight: math.unit(350, "lb"),
  20557. name: "Front",
  20558. image: {
  20559. source: "./media/characters/gabira/front.svg",
  20560. extra: 608 / 580,
  20561. bottom: 0.03
  20562. }
  20563. },
  20564. back: {
  20565. height: math.unit(8, "feet"),
  20566. weight: math.unit(350, "lb"),
  20567. name: "Back",
  20568. image: {
  20569. source: "./media/characters/gabira/back.svg",
  20570. extra: 608 / 580,
  20571. bottom: 0.03
  20572. }
  20573. },
  20574. },
  20575. [
  20576. {
  20577. name: "Normal",
  20578. height: math.unit(8, "feet"),
  20579. default: true
  20580. },
  20581. ]
  20582. ))
  20583. characterMakers.push(() => makeCharacter(
  20584. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20585. {
  20586. front: {
  20587. height: math.unit(5 + 3 / 12, "feet"),
  20588. weight: math.unit(137, "lb"),
  20589. name: "Front",
  20590. image: {
  20591. source: "./media/characters/sasha-katraine/front.svg",
  20592. bottom: 0.045
  20593. }
  20594. },
  20595. },
  20596. [
  20597. {
  20598. name: "Micro",
  20599. height: math.unit(5, "inches")
  20600. },
  20601. {
  20602. name: "Normal",
  20603. height: math.unit(5 + 3 / 12, "feet"),
  20604. default: true
  20605. },
  20606. ]
  20607. ))
  20608. characterMakers.push(() => makeCharacter(
  20609. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20610. {
  20611. side: {
  20612. height: math.unit(4, "inches"),
  20613. weight: math.unit(200, "grams"),
  20614. name: "Side",
  20615. image: {
  20616. source: "./media/characters/der/side.svg",
  20617. extra: 719 / 400,
  20618. bottom: 30.6 / 749.9187
  20619. }
  20620. },
  20621. },
  20622. [
  20623. {
  20624. name: "Micro",
  20625. height: math.unit(4, "inches"),
  20626. default: true
  20627. },
  20628. ]
  20629. ))
  20630. characterMakers.push(() => makeCharacter(
  20631. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20632. {
  20633. side: {
  20634. height: math.unit(30, "meters"),
  20635. weight: math.unit(700, "tonnes"),
  20636. name: "Side",
  20637. image: {
  20638. source: "./media/characters/fixerdragon/side.svg",
  20639. extra: (1293.0514 - 116.03) / 1106.86,
  20640. bottom: 116.03 / 1293.0514
  20641. }
  20642. },
  20643. },
  20644. [
  20645. {
  20646. name: "Planck",
  20647. height: math.unit(1.6e-35, "meters")
  20648. },
  20649. {
  20650. name: "Micro",
  20651. height: math.unit(0.4, "meters")
  20652. },
  20653. {
  20654. name: "Normal",
  20655. height: math.unit(30, "meters"),
  20656. default: true
  20657. },
  20658. {
  20659. name: "Megamacro",
  20660. height: math.unit(1.2, "megameters")
  20661. },
  20662. {
  20663. name: "Teramacro",
  20664. height: math.unit(130, "terameters")
  20665. },
  20666. {
  20667. name: "Yottamacro",
  20668. height: math.unit(6200, "yottameters")
  20669. },
  20670. ]
  20671. ));
  20672. characterMakers.push(() => makeCharacter(
  20673. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20674. {
  20675. front: {
  20676. height: math.unit(8, "feet"),
  20677. weight: math.unit(250, "lb"),
  20678. name: "Front",
  20679. image: {
  20680. source: "./media/characters/kite/front.svg",
  20681. extra: 2796 / 2659,
  20682. bottom: 0.002
  20683. }
  20684. },
  20685. },
  20686. [
  20687. {
  20688. name: "Normal",
  20689. height: math.unit(8, "feet"),
  20690. default: true
  20691. },
  20692. {
  20693. name: "Macro",
  20694. height: math.unit(360, "feet")
  20695. },
  20696. {
  20697. name: "Megamacro",
  20698. height: math.unit(1500, "feet")
  20699. },
  20700. ]
  20701. ))
  20702. characterMakers.push(() => makeCharacter(
  20703. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20704. {
  20705. front: {
  20706. height: math.unit(5 + 10 / 12, "feet"),
  20707. weight: math.unit(150, "lb"),
  20708. name: "Front",
  20709. image: {
  20710. source: "./media/characters/poojawa-vynar/front.svg",
  20711. extra: (1506.1547 - 55) / 1356.6,
  20712. bottom: 55 / 1506.1547
  20713. }
  20714. },
  20715. frontTailless: {
  20716. height: math.unit(5 + 10 / 12, "feet"),
  20717. weight: math.unit(150, "lb"),
  20718. name: "Front (Tailless)",
  20719. image: {
  20720. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20721. extra: (1506.1547 - 55) / 1356.6,
  20722. bottom: 55 / 1506.1547
  20723. }
  20724. },
  20725. },
  20726. [
  20727. {
  20728. name: "Normal",
  20729. height: math.unit(5 + 10 / 12, "feet"),
  20730. default: true
  20731. },
  20732. ]
  20733. ))
  20734. characterMakers.push(() => makeCharacter(
  20735. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20736. {
  20737. front: {
  20738. height: math.unit(293, "meters"),
  20739. weight: math.unit(70400, "tons"),
  20740. name: "Front",
  20741. image: {
  20742. source: "./media/characters/violette/front.svg",
  20743. extra: 1227 / 1180,
  20744. bottom: 0.005
  20745. }
  20746. },
  20747. back: {
  20748. height: math.unit(293, "meters"),
  20749. weight: math.unit(70400, "tons"),
  20750. name: "Back",
  20751. image: {
  20752. source: "./media/characters/violette/back.svg",
  20753. extra: 1227 / 1180,
  20754. bottom: 0.005
  20755. }
  20756. },
  20757. },
  20758. [
  20759. {
  20760. name: "Macro",
  20761. height: math.unit(293, "meters"),
  20762. default: true
  20763. },
  20764. ]
  20765. ))
  20766. characterMakers.push(() => makeCharacter(
  20767. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20768. {
  20769. front: {
  20770. height: math.unit(1050, "feet"),
  20771. weight: math.unit(200000, "tons"),
  20772. name: "Front",
  20773. image: {
  20774. source: "./media/characters/alessandra/front.svg",
  20775. extra: 960 / 912,
  20776. bottom: 0.06
  20777. }
  20778. },
  20779. },
  20780. [
  20781. {
  20782. name: "Macro",
  20783. height: math.unit(1050, "feet")
  20784. },
  20785. {
  20786. name: "Macro+",
  20787. height: math.unit(900, "meters"),
  20788. default: true
  20789. },
  20790. ]
  20791. ))
  20792. characterMakers.push(() => makeCharacter(
  20793. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20794. {
  20795. front: {
  20796. height: math.unit(5, "feet"),
  20797. weight: math.unit(187, "lb"),
  20798. name: "Front",
  20799. image: {
  20800. source: "./media/characters/person/front.svg",
  20801. extra: 3087 / 2945,
  20802. bottom: 91 / 3181
  20803. }
  20804. },
  20805. },
  20806. [
  20807. {
  20808. name: "Micro",
  20809. height: math.unit(3, "inches")
  20810. },
  20811. {
  20812. name: "Normal",
  20813. height: math.unit(5, "feet"),
  20814. default: true
  20815. },
  20816. {
  20817. name: "Macro",
  20818. height: math.unit(90, "feet")
  20819. },
  20820. {
  20821. name: "Max Size",
  20822. height: math.unit(280, "feet")
  20823. },
  20824. ]
  20825. ))
  20826. characterMakers.push(() => makeCharacter(
  20827. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20828. {
  20829. front: {
  20830. height: math.unit(4.5, "meters"),
  20831. weight: math.unit(3200, "lb"),
  20832. name: "Front",
  20833. image: {
  20834. source: "./media/characters/ty/front.svg",
  20835. extra: 1038 / 960,
  20836. bottom: 31.156 / 1068
  20837. }
  20838. },
  20839. back: {
  20840. height: math.unit(4.5, "meters"),
  20841. weight: math.unit(3200, "lb"),
  20842. name: "Back",
  20843. image: {
  20844. source: "./media/characters/ty/back.svg",
  20845. extra: 1044 / 966,
  20846. bottom: 7.48 / 1049
  20847. }
  20848. },
  20849. },
  20850. [
  20851. {
  20852. name: "Normal",
  20853. height: math.unit(4.5, "meters"),
  20854. default: true
  20855. },
  20856. ]
  20857. ))
  20858. characterMakers.push(() => makeCharacter(
  20859. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20860. {
  20861. front: {
  20862. height: math.unit(5 + 4 / 12, "feet"),
  20863. weight: math.unit(115, "lb"),
  20864. name: "Front",
  20865. image: {
  20866. source: "./media/characters/rocky/front.svg",
  20867. extra: 1012 / 975,
  20868. bottom: 54 / 1066
  20869. }
  20870. },
  20871. },
  20872. [
  20873. {
  20874. name: "Normal",
  20875. height: math.unit(5 + 4 / 12, "feet"),
  20876. default: true
  20877. },
  20878. ]
  20879. ))
  20880. characterMakers.push(() => makeCharacter(
  20881. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20882. {
  20883. upright: {
  20884. height: math.unit(6, "meters"),
  20885. weight: math.unit(4000, "kg"),
  20886. name: "Upright",
  20887. image: {
  20888. source: "./media/characters/ruin/upright.svg",
  20889. extra: 668 / 661,
  20890. bottom: 42 / 799.8396
  20891. }
  20892. },
  20893. },
  20894. [
  20895. {
  20896. name: "Normal",
  20897. height: math.unit(6, "meters"),
  20898. default: true
  20899. },
  20900. ]
  20901. ))
  20902. characterMakers.push(() => makeCharacter(
  20903. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20904. {
  20905. front: {
  20906. height: math.unit(5, "feet"),
  20907. weight: math.unit(106, "lb"),
  20908. name: "Front",
  20909. image: {
  20910. source: "./media/characters/robin/front.svg",
  20911. extra: 862 / 799,
  20912. bottom: 42.4 / 914.8856
  20913. }
  20914. },
  20915. },
  20916. [
  20917. {
  20918. name: "Normal",
  20919. height: math.unit(5, "feet"),
  20920. default: true
  20921. },
  20922. ]
  20923. ))
  20924. characterMakers.push(() => makeCharacter(
  20925. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20926. {
  20927. side: {
  20928. height: math.unit(3, "feet"),
  20929. weight: math.unit(225, "lb"),
  20930. name: "Side",
  20931. image: {
  20932. source: "./media/characters/saian/side.svg",
  20933. extra: 566 / 356,
  20934. bottom: 79.7 / 643
  20935. }
  20936. },
  20937. maw: {
  20938. height: math.unit(2.85, "feet"),
  20939. name: "Maw",
  20940. image: {
  20941. source: "./media/characters/saian/maw.svg"
  20942. }
  20943. },
  20944. },
  20945. [
  20946. {
  20947. name: "Normal",
  20948. height: math.unit(3, "feet"),
  20949. default: true
  20950. },
  20951. ]
  20952. ))
  20953. characterMakers.push(() => makeCharacter(
  20954. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20955. {
  20956. side: {
  20957. height: math.unit(8, "feet"),
  20958. weight: math.unit(300, "lb"),
  20959. name: "Side",
  20960. image: {
  20961. source: "./media/characters/equus-silvermane/side.svg",
  20962. extra: 2176 / 2050,
  20963. bottom: 65.7 / 2245
  20964. }
  20965. },
  20966. front: {
  20967. height: math.unit(8, "feet"),
  20968. weight: math.unit(300, "lb"),
  20969. name: "Front",
  20970. image: {
  20971. source: "./media/characters/equus-silvermane/front.svg",
  20972. extra: 4633 / 4400,
  20973. bottom: 71.3 / 4706.915
  20974. }
  20975. },
  20976. sideStepping: {
  20977. height: math.unit(8, "feet"),
  20978. weight: math.unit(300, "lb"),
  20979. name: "Side (Stepping)",
  20980. image: {
  20981. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20982. extra: 1968 / 1860,
  20983. bottom: 16.4 / 1989
  20984. }
  20985. },
  20986. },
  20987. [
  20988. {
  20989. name: "Normal",
  20990. height: math.unit(8, "feet")
  20991. },
  20992. {
  20993. name: "Minimacro",
  20994. height: math.unit(75, "feet"),
  20995. default: true
  20996. },
  20997. {
  20998. name: "Macro",
  20999. height: math.unit(150, "feet")
  21000. },
  21001. {
  21002. name: "Macro+",
  21003. height: math.unit(1000, "feet")
  21004. },
  21005. {
  21006. name: "Megamacro",
  21007. height: math.unit(1, "mile")
  21008. },
  21009. ]
  21010. ))
  21011. characterMakers.push(() => makeCharacter(
  21012. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21013. {
  21014. side: {
  21015. height: math.unit(20, "feet"),
  21016. weight: math.unit(30000, "kg"),
  21017. name: "Side",
  21018. image: {
  21019. source: "./media/characters/windar/side.svg",
  21020. extra: 1491 / 1248,
  21021. bottom: 82.56 / 1568
  21022. }
  21023. },
  21024. },
  21025. [
  21026. {
  21027. name: "Normal",
  21028. height: math.unit(20, "feet"),
  21029. default: true
  21030. },
  21031. ]
  21032. ))
  21033. characterMakers.push(() => makeCharacter(
  21034. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21035. {
  21036. side: {
  21037. height: math.unit(15.66, "feet"),
  21038. weight: math.unit(150, "lb"),
  21039. name: "Side",
  21040. image: {
  21041. source: "./media/characters/melody/side.svg",
  21042. extra: 1097 / 944,
  21043. bottom: 11.8 / 1109
  21044. }
  21045. },
  21046. sideOutfit: {
  21047. height: math.unit(15.66, "feet"),
  21048. weight: math.unit(150, "lb"),
  21049. name: "Side (Outfit)",
  21050. image: {
  21051. source: "./media/characters/melody/side-outfit.svg",
  21052. extra: 1097 / 944,
  21053. bottom: 11.8 / 1109
  21054. }
  21055. },
  21056. },
  21057. [
  21058. {
  21059. name: "Normal",
  21060. height: math.unit(15.66, "feet"),
  21061. default: true
  21062. },
  21063. ]
  21064. ))
  21065. characterMakers.push(() => makeCharacter(
  21066. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21067. {
  21068. front: {
  21069. height: math.unit(8, "feet"),
  21070. weight: math.unit(325, "lb"),
  21071. name: "Front",
  21072. image: {
  21073. source: "./media/characters/windera/front.svg",
  21074. extra: 3180 / 2845,
  21075. bottom: 178 / 3365
  21076. }
  21077. },
  21078. },
  21079. [
  21080. {
  21081. name: "Normal",
  21082. height: math.unit(8, "feet"),
  21083. default: true
  21084. },
  21085. ]
  21086. ))
  21087. characterMakers.push(() => makeCharacter(
  21088. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21089. {
  21090. front: {
  21091. height: math.unit(28.75, "feet"),
  21092. weight: math.unit(2000, "kg"),
  21093. name: "Front",
  21094. image: {
  21095. source: "./media/characters/sonear/front.svg",
  21096. extra: 1041.1 / 964.9,
  21097. bottom: 53.7 / 1096.6
  21098. }
  21099. },
  21100. },
  21101. [
  21102. {
  21103. name: "Normal",
  21104. height: math.unit(28.75, "feet"),
  21105. default: true
  21106. },
  21107. ]
  21108. ))
  21109. characterMakers.push(() => makeCharacter(
  21110. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21111. {
  21112. side: {
  21113. height: math.unit(25.5, "feet"),
  21114. weight: math.unit(23000, "kg"),
  21115. name: "Side",
  21116. image: {
  21117. source: "./media/characters/kanara/side.svg"
  21118. }
  21119. },
  21120. },
  21121. [
  21122. {
  21123. name: "Normal",
  21124. height: math.unit(25.5, "feet"),
  21125. default: true
  21126. },
  21127. ]
  21128. ))
  21129. characterMakers.push(() => makeCharacter(
  21130. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21131. {
  21132. side: {
  21133. height: math.unit(10, "feet"),
  21134. weight: math.unit(1000, "kg"),
  21135. name: "Side",
  21136. image: {
  21137. source: "./media/characters/ereus/side.svg",
  21138. extra: 1157 / 959,
  21139. bottom: 153 / 1312.5
  21140. }
  21141. },
  21142. },
  21143. [
  21144. {
  21145. name: "Normal",
  21146. height: math.unit(10, "feet"),
  21147. default: true
  21148. },
  21149. ]
  21150. ))
  21151. characterMakers.push(() => makeCharacter(
  21152. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21153. {
  21154. side: {
  21155. height: math.unit(4.5, "feet"),
  21156. weight: math.unit(500, "lb"),
  21157. name: "Side",
  21158. image: {
  21159. source: "./media/characters/e-ter/side.svg",
  21160. extra: 1550 / 1248,
  21161. bottom: 146 / 1694
  21162. }
  21163. },
  21164. },
  21165. [
  21166. {
  21167. name: "Normal",
  21168. height: math.unit(4.5, "feet"),
  21169. default: true
  21170. },
  21171. ]
  21172. ))
  21173. characterMakers.push(() => makeCharacter(
  21174. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21175. {
  21176. side: {
  21177. height: math.unit(9.7, "feet"),
  21178. weight: math.unit(4000, "kg"),
  21179. name: "Side",
  21180. image: {
  21181. source: "./media/characters/yamie/side.svg"
  21182. }
  21183. },
  21184. },
  21185. [
  21186. {
  21187. name: "Normal",
  21188. height: math.unit(9.7, "feet"),
  21189. default: true
  21190. },
  21191. ]
  21192. ))
  21193. characterMakers.push(() => makeCharacter(
  21194. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21195. {
  21196. front: {
  21197. height: math.unit(50, "feet"),
  21198. weight: math.unit(50000, "kg"),
  21199. name: "Front",
  21200. image: {
  21201. source: "./media/characters/anders/front.svg",
  21202. extra: 570 / 539,
  21203. bottom: 14.7 / 586.7
  21204. }
  21205. },
  21206. },
  21207. [
  21208. {
  21209. name: "Large",
  21210. height: math.unit(50, "feet")
  21211. },
  21212. {
  21213. name: "Macro",
  21214. height: math.unit(2000, "feet"),
  21215. default: true
  21216. },
  21217. {
  21218. name: "Megamacro",
  21219. height: math.unit(12, "miles")
  21220. },
  21221. ]
  21222. ))
  21223. characterMakers.push(() => makeCharacter(
  21224. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21225. {
  21226. front: {
  21227. height: math.unit(7 + 2 / 12, "feet"),
  21228. weight: math.unit(300, "lb"),
  21229. name: "Front",
  21230. image: {
  21231. source: "./media/characters/reban/front.svg",
  21232. extra: 516 / 487,
  21233. bottom: 42.82 / 558.356
  21234. }
  21235. },
  21236. dick: {
  21237. height: math.unit(7 / 5, "feet"),
  21238. name: "Dick",
  21239. image: {
  21240. source: "./media/characters/reban/dick.svg"
  21241. }
  21242. },
  21243. },
  21244. [
  21245. {
  21246. name: "Natural Height",
  21247. height: math.unit(7 + 2 / 12, "feet")
  21248. },
  21249. {
  21250. name: "Macro",
  21251. height: math.unit(500, "feet"),
  21252. default: true
  21253. },
  21254. {
  21255. name: "Canon Height",
  21256. height: math.unit(50, "AU")
  21257. },
  21258. ]
  21259. ))
  21260. characterMakers.push(() => makeCharacter(
  21261. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21262. {
  21263. front: {
  21264. height: math.unit(6, "feet"),
  21265. weight: math.unit(150, "lb"),
  21266. name: "Front",
  21267. image: {
  21268. source: "./media/characters/terrance-keayes/front.svg",
  21269. extra: 1.005,
  21270. bottom: 151 / 1615
  21271. }
  21272. },
  21273. side: {
  21274. height: math.unit(6, "feet"),
  21275. weight: math.unit(150, "lb"),
  21276. name: "Side",
  21277. image: {
  21278. source: "./media/characters/terrance-keayes/side.svg",
  21279. extra: 1.005,
  21280. bottom: 129.4 / 1544
  21281. }
  21282. },
  21283. back: {
  21284. height: math.unit(6, "feet"),
  21285. weight: math.unit(150, "lb"),
  21286. name: "Back",
  21287. image: {
  21288. source: "./media/characters/terrance-keayes/back.svg",
  21289. extra: 1.005,
  21290. bottom: 58.4 / 1557.3
  21291. }
  21292. },
  21293. dick: {
  21294. height: math.unit(6 * 0.208, "feet"),
  21295. name: "Dick",
  21296. image: {
  21297. source: "./media/characters/terrance-keayes/dick.svg"
  21298. }
  21299. },
  21300. },
  21301. [
  21302. {
  21303. name: "Canon Height",
  21304. height: math.unit(35, "miles"),
  21305. default: true
  21306. },
  21307. ]
  21308. ))
  21309. characterMakers.push(() => makeCharacter(
  21310. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21311. {
  21312. front: {
  21313. height: math.unit(6, "feet"),
  21314. weight: math.unit(150, "lb"),
  21315. name: "Front",
  21316. image: {
  21317. source: "./media/characters/ofelia/front.svg",
  21318. extra: 546 / 541,
  21319. bottom: 39 / 583
  21320. }
  21321. },
  21322. back: {
  21323. height: math.unit(6, "feet"),
  21324. weight: math.unit(150, "lb"),
  21325. name: "Back",
  21326. image: {
  21327. source: "./media/characters/ofelia/back.svg",
  21328. extra: 564 / 559.5,
  21329. bottom: 8.69 / 573.02
  21330. }
  21331. },
  21332. maw: {
  21333. height: math.unit(1, "feet"),
  21334. name: "Maw",
  21335. image: {
  21336. source: "./media/characters/ofelia/maw.svg"
  21337. }
  21338. },
  21339. foot: {
  21340. height: math.unit(1.949, "feet"),
  21341. name: "Foot",
  21342. image: {
  21343. source: "./media/characters/ofelia/foot.svg"
  21344. }
  21345. },
  21346. },
  21347. [
  21348. {
  21349. name: "Canon Height",
  21350. height: math.unit(2000, "miles"),
  21351. default: true
  21352. },
  21353. ]
  21354. ))
  21355. characterMakers.push(() => makeCharacter(
  21356. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21357. {
  21358. front: {
  21359. height: math.unit(6, "feet"),
  21360. weight: math.unit(150, "lb"),
  21361. name: "Front",
  21362. image: {
  21363. source: "./media/characters/samuel/front.svg",
  21364. extra: 265 / 258,
  21365. bottom: 2 / 266.1566
  21366. }
  21367. },
  21368. },
  21369. [
  21370. {
  21371. name: "Macro",
  21372. height: math.unit(100, "feet"),
  21373. default: true
  21374. },
  21375. {
  21376. name: "Full Size",
  21377. height: math.unit(1000, "miles")
  21378. },
  21379. ]
  21380. ))
  21381. characterMakers.push(() => makeCharacter(
  21382. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21383. {
  21384. front: {
  21385. height: math.unit(6, "feet"),
  21386. weight: math.unit(300, "lb"),
  21387. name: "Front",
  21388. image: {
  21389. source: "./media/characters/beishir-kiel/front.svg",
  21390. extra: 569 / 547,
  21391. bottom: 41.9 / 609
  21392. }
  21393. },
  21394. maw: {
  21395. height: math.unit(6 * 0.202, "feet"),
  21396. name: "Maw",
  21397. image: {
  21398. source: "./media/characters/beishir-kiel/maw.svg"
  21399. }
  21400. },
  21401. },
  21402. [
  21403. {
  21404. name: "Macro",
  21405. height: math.unit(300, "feet"),
  21406. default: true
  21407. },
  21408. ]
  21409. ))
  21410. characterMakers.push(() => makeCharacter(
  21411. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21412. {
  21413. front: {
  21414. height: math.unit(5 + 8 / 12, "feet"),
  21415. weight: math.unit(120, "lb"),
  21416. name: "Front",
  21417. image: {
  21418. source: "./media/characters/logan-grey/front.svg",
  21419. extra: 2539 / 2393,
  21420. bottom: 97.6 / 2636.37
  21421. }
  21422. },
  21423. frontAlt: {
  21424. height: math.unit(5 + 8 / 12, "feet"),
  21425. weight: math.unit(120, "lb"),
  21426. name: "Front (Alt)",
  21427. image: {
  21428. source: "./media/characters/logan-grey/front-alt.svg",
  21429. extra: 958 / 893,
  21430. bottom: 15 / 970.768
  21431. }
  21432. },
  21433. back: {
  21434. height: math.unit(5 + 8 / 12, "feet"),
  21435. weight: math.unit(120, "lb"),
  21436. name: "Back",
  21437. image: {
  21438. source: "./media/characters/logan-grey/back.svg",
  21439. extra: 958 / 893,
  21440. bottom: 2.1881 / 970.9788
  21441. }
  21442. },
  21443. dick: {
  21444. height: math.unit(1.437, "feet"),
  21445. name: "Dick",
  21446. image: {
  21447. source: "./media/characters/logan-grey/dick.svg"
  21448. }
  21449. },
  21450. },
  21451. [
  21452. {
  21453. name: "Normal",
  21454. height: math.unit(5 + 8 / 12, "feet")
  21455. },
  21456. {
  21457. name: "The 500 Foot Femboy",
  21458. height: math.unit(500, "feet"),
  21459. default: true
  21460. },
  21461. {
  21462. name: "Megmacro",
  21463. height: math.unit(20, "miles")
  21464. },
  21465. ]
  21466. ))
  21467. characterMakers.push(() => makeCharacter(
  21468. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21469. {
  21470. front: {
  21471. height: math.unit(8 + 2 / 12, "feet"),
  21472. weight: math.unit(275, "lb"),
  21473. name: "Front",
  21474. image: {
  21475. source: "./media/characters/draganta/front.svg",
  21476. extra: 1177 / 1135,
  21477. bottom: 33.46 / 1212.1
  21478. }
  21479. },
  21480. },
  21481. [
  21482. {
  21483. name: "Normal",
  21484. height: math.unit(8 + 6 / 12, "feet"),
  21485. default: true
  21486. },
  21487. {
  21488. name: "Macro",
  21489. height: math.unit(150, "feet")
  21490. },
  21491. {
  21492. name: "Megamacro",
  21493. height: math.unit(1000, "miles")
  21494. },
  21495. ]
  21496. ))
  21497. characterMakers.push(() => makeCharacter(
  21498. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21499. {
  21500. front: {
  21501. height: math.unit(1.72, "m"),
  21502. weight: math.unit(80, "lb"),
  21503. name: "Front",
  21504. image: {
  21505. source: "./media/characters/voski/front.svg",
  21506. extra: 2076.22 / 2022.4,
  21507. bottom: 102.7 / 2177.3866
  21508. }
  21509. },
  21510. frontNsfw: {
  21511. height: math.unit(1.72, "m"),
  21512. weight: math.unit(80, "lb"),
  21513. name: "Front (NSFW)",
  21514. image: {
  21515. source: "./media/characters/voski/front-nsfw.svg",
  21516. extra: 2076.22 / 2022.4,
  21517. bottom: 102.7 / 2177.3866
  21518. }
  21519. },
  21520. back: {
  21521. height: math.unit(1.72, "m"),
  21522. weight: math.unit(80, "lb"),
  21523. name: "Back",
  21524. image: {
  21525. source: "./media/characters/voski/back.svg",
  21526. extra: 2104 / 2051,
  21527. bottom: 10.45 / 2113.63
  21528. }
  21529. },
  21530. },
  21531. [
  21532. {
  21533. name: "Normal",
  21534. height: math.unit(1.72, "m")
  21535. },
  21536. {
  21537. name: "Macro",
  21538. height: math.unit(55, "m"),
  21539. default: true
  21540. },
  21541. {
  21542. name: "Macro+",
  21543. height: math.unit(300, "m")
  21544. },
  21545. {
  21546. name: "Macro++",
  21547. height: math.unit(700, "m")
  21548. },
  21549. {
  21550. name: "Macro+++",
  21551. height: math.unit(4500, "m")
  21552. },
  21553. {
  21554. name: "Macro++++",
  21555. height: math.unit(45, "km")
  21556. },
  21557. {
  21558. name: "Macro+++++",
  21559. height: math.unit(1220, "km")
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21565. {
  21566. front: {
  21567. height: math.unit(2.3, "m"),
  21568. weight: math.unit(304, "kg"),
  21569. name: "Front",
  21570. image: {
  21571. source: "./media/characters/icowom-lee/front.svg",
  21572. extra: 985 / 955,
  21573. bottom: 25.4 / 1012
  21574. }
  21575. },
  21576. fronttentacles: {
  21577. height: math.unit(2.3, "m"),
  21578. weight: math.unit(304, "kg"),
  21579. name: "Front-tentacles",
  21580. image: {
  21581. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21582. extra: 985 / 955,
  21583. bottom: 25.4 / 1012
  21584. }
  21585. },
  21586. back: {
  21587. height: math.unit(2.3, "m"),
  21588. weight: math.unit(304, "kg"),
  21589. name: "Back",
  21590. image: {
  21591. source: "./media/characters/icowom-lee/back.svg",
  21592. extra: 975 / 954,
  21593. bottom: 9.5 / 985
  21594. }
  21595. },
  21596. backtentacles: {
  21597. height: math.unit(2.3, "m"),
  21598. weight: math.unit(304, "kg"),
  21599. name: "Back-tentacles",
  21600. image: {
  21601. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21602. extra: 975 / 954,
  21603. bottom: 9.5 / 985
  21604. }
  21605. },
  21606. frontDressed: {
  21607. height: math.unit(2.3, "m"),
  21608. weight: math.unit(304, "kg"),
  21609. name: "Front (Dressed)",
  21610. image: {
  21611. source: "./media/characters/icowom-lee/front-dressed.svg",
  21612. extra: 3076 / 2933,
  21613. bottom: 51.4 / 3125.1889
  21614. }
  21615. },
  21616. rump: {
  21617. height: math.unit(0.776, "meters"),
  21618. name: "Rump",
  21619. image: {
  21620. source: "./media/characters/icowom-lee/rump.svg"
  21621. }
  21622. },
  21623. genitals: {
  21624. height: math.unit(0.78, "meters"),
  21625. name: "Genitals",
  21626. image: {
  21627. source: "./media/characters/icowom-lee/genitals.svg"
  21628. }
  21629. },
  21630. },
  21631. [
  21632. {
  21633. name: "Normal",
  21634. height: math.unit(2.3, "meters"),
  21635. default: true
  21636. },
  21637. {
  21638. name: "Macro",
  21639. height: math.unit(94, "meters"),
  21640. default: true
  21641. },
  21642. ]
  21643. ))
  21644. characterMakers.push(() => makeCharacter(
  21645. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21646. {
  21647. front: {
  21648. height: math.unit(22, "meters"),
  21649. weight: math.unit(21000, "kg"),
  21650. name: "Front",
  21651. image: {
  21652. source: "./media/characters/shock-diamond/front.svg",
  21653. extra: 2204 / 2053,
  21654. bottom: 65 / 2239.47
  21655. }
  21656. },
  21657. frontNude: {
  21658. height: math.unit(22, "meters"),
  21659. weight: math.unit(21000, "kg"),
  21660. name: "Front (Nude)",
  21661. image: {
  21662. source: "./media/characters/shock-diamond/front-nude.svg",
  21663. extra: 2514 / 2285,
  21664. bottom: 13 / 2527.56
  21665. }
  21666. },
  21667. },
  21668. [
  21669. {
  21670. name: "Normal",
  21671. height: math.unit(3, "meters")
  21672. },
  21673. {
  21674. name: "Macro",
  21675. height: math.unit(22, "meters"),
  21676. default: true
  21677. },
  21678. ]
  21679. ))
  21680. characterMakers.push(() => makeCharacter(
  21681. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21682. {
  21683. front: {
  21684. height: math.unit(5 + 4 / 12, "feet"),
  21685. weight: math.unit(120, "lb"),
  21686. name: "Front",
  21687. image: {
  21688. source: "./media/characters/rory/front.svg",
  21689. extra: 589 / 556,
  21690. bottom: 45.7 / 635.76
  21691. }
  21692. },
  21693. frontNude: {
  21694. height: math.unit(5 + 4 / 12, "feet"),
  21695. weight: math.unit(120, "lb"),
  21696. name: "Front (Nude)",
  21697. image: {
  21698. source: "./media/characters/rory/front-nude.svg",
  21699. extra: 589 / 556,
  21700. bottom: 45.7 / 635.76
  21701. }
  21702. },
  21703. side: {
  21704. height: math.unit(5 + 4 / 12, "feet"),
  21705. weight: math.unit(120, "lb"),
  21706. name: "Side",
  21707. image: {
  21708. source: "./media/characters/rory/side.svg",
  21709. extra: 597 / 564,
  21710. bottom: 55 / 653
  21711. }
  21712. },
  21713. back: {
  21714. height: math.unit(5 + 4 / 12, "feet"),
  21715. weight: math.unit(120, "lb"),
  21716. name: "Back",
  21717. image: {
  21718. source: "./media/characters/rory/back.svg",
  21719. extra: 620 / 585,
  21720. bottom: 8.86 / 630.43
  21721. }
  21722. },
  21723. dick: {
  21724. height: math.unit(0.86, "feet"),
  21725. name: "Dick",
  21726. image: {
  21727. source: "./media/characters/rory/dick.svg"
  21728. }
  21729. },
  21730. },
  21731. [
  21732. {
  21733. name: "Normal",
  21734. height: math.unit(5 + 4 / 12, "feet"),
  21735. default: true
  21736. },
  21737. {
  21738. name: "Macro",
  21739. height: math.unit(100, "feet")
  21740. },
  21741. {
  21742. name: "Macro+",
  21743. height: math.unit(140, "feet")
  21744. },
  21745. {
  21746. name: "Macro++",
  21747. height: math.unit(300, "feet")
  21748. },
  21749. ]
  21750. ))
  21751. characterMakers.push(() => makeCharacter(
  21752. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21753. {
  21754. front: {
  21755. height: math.unit(5 + 9 / 12, "feet"),
  21756. weight: math.unit(190, "lb"),
  21757. name: "Front",
  21758. image: {
  21759. source: "./media/characters/sprisk/front.svg",
  21760. extra: 1225 / 1180,
  21761. bottom: 42.7 / 1266.4
  21762. }
  21763. },
  21764. frontNsfw: {
  21765. height: math.unit(5 + 9 / 12, "feet"),
  21766. weight: math.unit(190, "lb"),
  21767. name: "Front (NSFW)",
  21768. image: {
  21769. source: "./media/characters/sprisk/front-nsfw.svg",
  21770. extra: 1225 / 1180,
  21771. bottom: 42.7 / 1266.4
  21772. }
  21773. },
  21774. back: {
  21775. height: math.unit(5 + 9 / 12, "feet"),
  21776. weight: math.unit(190, "lb"),
  21777. name: "Back",
  21778. image: {
  21779. source: "./media/characters/sprisk/back.svg",
  21780. extra: 1247 / 1200,
  21781. bottom: 5.6 / 1253.04
  21782. }
  21783. },
  21784. },
  21785. [
  21786. {
  21787. name: "Tiny",
  21788. height: math.unit(2, "inches")
  21789. },
  21790. {
  21791. name: "Normal",
  21792. height: math.unit(5 + 9 / 12, "feet"),
  21793. default: true
  21794. },
  21795. {
  21796. name: "Mini Macro",
  21797. height: math.unit(18, "feet")
  21798. },
  21799. {
  21800. name: "Macro",
  21801. height: math.unit(100, "feet")
  21802. },
  21803. {
  21804. name: "MACRO",
  21805. height: math.unit(50, "miles")
  21806. },
  21807. {
  21808. name: "M A C R O",
  21809. height: math.unit(300, "miles")
  21810. },
  21811. ]
  21812. ))
  21813. characterMakers.push(() => makeCharacter(
  21814. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21815. {
  21816. side: {
  21817. height: math.unit(15.6, "meters"),
  21818. weight: math.unit(700000, "kg"),
  21819. name: "Side",
  21820. image: {
  21821. source: "./media/characters/bunsen/side.svg",
  21822. extra: 1644 / 358
  21823. }
  21824. },
  21825. foot: {
  21826. height: math.unit(1.611 * 1644 / 358, "meter"),
  21827. name: "Foot",
  21828. image: {
  21829. source: "./media/characters/bunsen/foot.svg"
  21830. }
  21831. },
  21832. },
  21833. [
  21834. {
  21835. name: "Small",
  21836. height: math.unit(10, "feet")
  21837. },
  21838. {
  21839. name: "Normal",
  21840. height: math.unit(15.6, "meters"),
  21841. default: true
  21842. },
  21843. ]
  21844. ))
  21845. characterMakers.push(() => makeCharacter(
  21846. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21847. {
  21848. front: {
  21849. height: math.unit(4 + 11 / 12, "feet"),
  21850. weight: math.unit(140, "lb"),
  21851. name: "Front",
  21852. image: {
  21853. source: "./media/characters/sesh/front.svg",
  21854. extra: 3420 / 3231,
  21855. bottom: 72 / 3949.5
  21856. }
  21857. },
  21858. },
  21859. [
  21860. {
  21861. name: "Normal",
  21862. height: math.unit(4 + 11 / 12, "feet")
  21863. },
  21864. {
  21865. name: "Grown",
  21866. height: math.unit(15, "feet"),
  21867. default: true
  21868. },
  21869. {
  21870. name: "Macro",
  21871. height: math.unit(1500, "feet")
  21872. },
  21873. {
  21874. name: "Megamacro",
  21875. height: math.unit(30, "miles")
  21876. },
  21877. {
  21878. name: "Continental",
  21879. height: math.unit(3000, "miles")
  21880. },
  21881. {
  21882. name: "Gravity Mass",
  21883. height: math.unit(300000, "miles")
  21884. },
  21885. {
  21886. name: "Planet Buster",
  21887. height: math.unit(30000000, "miles")
  21888. },
  21889. {
  21890. name: "Big",
  21891. height: math.unit(3000000000, "miles")
  21892. },
  21893. ]
  21894. ))
  21895. characterMakers.push(() => makeCharacter(
  21896. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21897. {
  21898. front: {
  21899. height: math.unit(9, "feet"),
  21900. weight: math.unit(350, "lb"),
  21901. name: "Front",
  21902. image: {
  21903. source: "./media/characters/pepper/front.svg",
  21904. extra: 1448 / 1312,
  21905. bottom: 9.4 / 1457.88
  21906. }
  21907. },
  21908. back: {
  21909. height: math.unit(9, "feet"),
  21910. weight: math.unit(350, "lb"),
  21911. name: "Back",
  21912. image: {
  21913. source: "./media/characters/pepper/back.svg",
  21914. extra: 1423 / 1300,
  21915. bottom: 4.6 / 1429
  21916. }
  21917. },
  21918. maw: {
  21919. height: math.unit(0.932, "feet"),
  21920. name: "Maw",
  21921. image: {
  21922. source: "./media/characters/pepper/maw.svg"
  21923. }
  21924. },
  21925. },
  21926. [
  21927. {
  21928. name: "Normal",
  21929. height: math.unit(9, "feet"),
  21930. default: true
  21931. },
  21932. ]
  21933. ))
  21934. characterMakers.push(() => makeCharacter(
  21935. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21936. {
  21937. front: {
  21938. height: math.unit(6, "feet"),
  21939. weight: math.unit(150, "lb"),
  21940. name: "Front",
  21941. image: {
  21942. source: "./media/characters/maelstrom/front.svg",
  21943. extra: 2100 / 1883,
  21944. bottom: 94 / 2196.7
  21945. }
  21946. },
  21947. },
  21948. [
  21949. {
  21950. name: "Less Kaiju",
  21951. height: math.unit(200, "feet")
  21952. },
  21953. {
  21954. name: "Kaiju",
  21955. height: math.unit(400, "feet"),
  21956. default: true
  21957. },
  21958. {
  21959. name: "Kaiju-er",
  21960. height: math.unit(600, "feet")
  21961. },
  21962. ]
  21963. ))
  21964. characterMakers.push(() => makeCharacter(
  21965. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21966. {
  21967. front: {
  21968. height: math.unit(6 + 5 / 12, "feet"),
  21969. weight: math.unit(180, "lb"),
  21970. name: "Front",
  21971. image: {
  21972. source: "./media/characters/lexir/front.svg",
  21973. extra: 180 / 172,
  21974. bottom: 12 / 192
  21975. }
  21976. },
  21977. back: {
  21978. height: math.unit(6 + 5 / 12, "feet"),
  21979. weight: math.unit(180, "lb"),
  21980. name: "Back",
  21981. image: {
  21982. source: "./media/characters/lexir/back.svg",
  21983. extra: 183.84 / 175.5,
  21984. bottom: 3.1 / 187
  21985. }
  21986. },
  21987. },
  21988. [
  21989. {
  21990. name: "Very Smal",
  21991. height: math.unit(1, "nm")
  21992. },
  21993. {
  21994. name: "Normal",
  21995. height: math.unit(6 + 5 / 12, "feet"),
  21996. default: true
  21997. },
  21998. {
  21999. name: "Macro",
  22000. height: math.unit(1, "mile")
  22001. },
  22002. {
  22003. name: "Megamacro",
  22004. height: math.unit(50, "miles")
  22005. },
  22006. ]
  22007. ))
  22008. characterMakers.push(() => makeCharacter(
  22009. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22010. {
  22011. front: {
  22012. height: math.unit(1.5, "meters"),
  22013. weight: math.unit(100, "lb"),
  22014. name: "Front",
  22015. image: {
  22016. source: "./media/characters/maksio/front.svg",
  22017. extra: 1549 / 1531,
  22018. bottom: 123.7 / 1674.5429
  22019. }
  22020. },
  22021. back: {
  22022. height: math.unit(1.5, "meters"),
  22023. weight: math.unit(100, "lb"),
  22024. name: "Back",
  22025. image: {
  22026. source: "./media/characters/maksio/back.svg",
  22027. extra: 1541 / 1509,
  22028. bottom: 97 / 1639
  22029. }
  22030. },
  22031. hand: {
  22032. height: math.unit(0.621, "feet"),
  22033. name: "Hand",
  22034. image: {
  22035. source: "./media/characters/maksio/hand.svg"
  22036. }
  22037. },
  22038. foot: {
  22039. height: math.unit(1.611, "feet"),
  22040. name: "Foot",
  22041. image: {
  22042. source: "./media/characters/maksio/foot.svg"
  22043. }
  22044. },
  22045. },
  22046. [
  22047. {
  22048. name: "Shrunken",
  22049. height: math.unit(10, "cm")
  22050. },
  22051. {
  22052. name: "Normal",
  22053. height: math.unit(150, "cm"),
  22054. default: true
  22055. },
  22056. ]
  22057. ))
  22058. characterMakers.push(() => makeCharacter(
  22059. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22060. {
  22061. front: {
  22062. height: math.unit(100, "feet"),
  22063. name: "Front",
  22064. image: {
  22065. source: "./media/characters/erza-bear/front.svg",
  22066. extra: 2449 / 2390,
  22067. bottom: 46 / 2494
  22068. }
  22069. },
  22070. back: {
  22071. height: math.unit(100, "feet"),
  22072. name: "Back",
  22073. image: {
  22074. source: "./media/characters/erza-bear/back.svg",
  22075. extra: 2489 / 2430,
  22076. bottom: 85.4 / 2480
  22077. }
  22078. },
  22079. tail: {
  22080. height: math.unit(42, "feet"),
  22081. name: "Tail",
  22082. image: {
  22083. source: "./media/characters/erza-bear/tail.svg"
  22084. }
  22085. },
  22086. tongue: {
  22087. height: math.unit(8, "feet"),
  22088. name: "Tongue",
  22089. image: {
  22090. source: "./media/characters/erza-bear/tongue.svg"
  22091. }
  22092. },
  22093. dick: {
  22094. height: math.unit(10.5, "feet"),
  22095. name: "Dick",
  22096. image: {
  22097. source: "./media/characters/erza-bear/dick.svg"
  22098. }
  22099. },
  22100. dickVertical: {
  22101. height: math.unit(16.9, "feet"),
  22102. name: "Dick (Vertical)",
  22103. image: {
  22104. source: "./media/characters/erza-bear/dick-vertical.svg"
  22105. }
  22106. },
  22107. },
  22108. [
  22109. {
  22110. name: "Macro",
  22111. height: math.unit(100, "feet"),
  22112. default: true
  22113. },
  22114. ]
  22115. ))
  22116. characterMakers.push(() => makeCharacter(
  22117. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22118. {
  22119. front: {
  22120. height: math.unit(172, "cm"),
  22121. weight: math.unit(73, "kg"),
  22122. name: "Front",
  22123. image: {
  22124. source: "./media/characters/violet-flor/front.svg",
  22125. extra: 1530 / 1442,
  22126. bottom: 61.9 / 1588.8
  22127. }
  22128. },
  22129. back: {
  22130. height: math.unit(180, "cm"),
  22131. weight: math.unit(73, "kg"),
  22132. name: "Back",
  22133. image: {
  22134. source: "./media/characters/violet-flor/back.svg",
  22135. extra: 1692 / 1630,
  22136. bottom: 20 / 1712
  22137. }
  22138. },
  22139. },
  22140. [
  22141. {
  22142. name: "Normal",
  22143. height: math.unit(172, "cm"),
  22144. default: true
  22145. },
  22146. ]
  22147. ))
  22148. characterMakers.push(() => makeCharacter(
  22149. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22150. {
  22151. front: {
  22152. height: math.unit(6, "feet"),
  22153. weight: math.unit(220, "lb"),
  22154. name: "Front",
  22155. image: {
  22156. source: "./media/characters/lynn-rhea/front.svg",
  22157. extra: 310 / 273
  22158. }
  22159. },
  22160. back: {
  22161. height: math.unit(6, "feet"),
  22162. weight: math.unit(220, "lb"),
  22163. name: "Back",
  22164. image: {
  22165. source: "./media/characters/lynn-rhea/back.svg",
  22166. extra: 310 / 273
  22167. }
  22168. },
  22169. dicks: {
  22170. height: math.unit(0.9, "feet"),
  22171. name: "Dicks",
  22172. image: {
  22173. source: "./media/characters/lynn-rhea/dicks.svg"
  22174. }
  22175. },
  22176. slit: {
  22177. height: math.unit(0.4, "feet"),
  22178. name: "Slit",
  22179. image: {
  22180. source: "./media/characters/lynn-rhea/slit.svg"
  22181. }
  22182. },
  22183. },
  22184. [
  22185. {
  22186. name: "Micro",
  22187. height: math.unit(1, "inch")
  22188. },
  22189. {
  22190. name: "Macro",
  22191. height: math.unit(60, "feet"),
  22192. default: true
  22193. },
  22194. {
  22195. name: "Megamacro",
  22196. height: math.unit(2, "miles")
  22197. },
  22198. {
  22199. name: "Gigamacro",
  22200. height: math.unit(3, "earths")
  22201. },
  22202. {
  22203. name: "Galactic",
  22204. height: math.unit(0.8, "galaxies")
  22205. },
  22206. ]
  22207. ))
  22208. characterMakers.push(() => makeCharacter(
  22209. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22210. {
  22211. front: {
  22212. height: math.unit(1600, "feet"),
  22213. weight: math.unit(85758785169, "kg"),
  22214. name: "Front",
  22215. image: {
  22216. source: "./media/characters/valathos/front.svg",
  22217. extra: 1451 / 1339
  22218. }
  22219. },
  22220. },
  22221. [
  22222. {
  22223. name: "Macro",
  22224. height: math.unit(1600, "feet"),
  22225. default: true
  22226. },
  22227. ]
  22228. ))
  22229. characterMakers.push(() => makeCharacter(
  22230. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22231. {
  22232. front: {
  22233. height: math.unit(7 + 5 / 12, "feet"),
  22234. weight: math.unit(300, "lb"),
  22235. name: "Front",
  22236. image: {
  22237. source: "./media/characters/azula/front.svg",
  22238. extra: 3208 / 2880,
  22239. bottom: 80.2 / 3277
  22240. }
  22241. },
  22242. back: {
  22243. height: math.unit(7 + 5 / 12, "feet"),
  22244. weight: math.unit(300, "lb"),
  22245. name: "Back",
  22246. image: {
  22247. source: "./media/characters/azula/back.svg",
  22248. extra: 3169 / 2822,
  22249. bottom: 150.6 / 3321
  22250. }
  22251. },
  22252. },
  22253. [
  22254. {
  22255. name: "Normal",
  22256. height: math.unit(7 + 5 / 12, "feet"),
  22257. default: true
  22258. },
  22259. {
  22260. name: "Big",
  22261. height: math.unit(20, "feet")
  22262. },
  22263. ]
  22264. ))
  22265. characterMakers.push(() => makeCharacter(
  22266. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22267. {
  22268. front: {
  22269. height: math.unit(5 + 1 / 12, "feet"),
  22270. weight: math.unit(110, "lb"),
  22271. name: "Front",
  22272. image: {
  22273. source: "./media/characters/rupert/front.svg",
  22274. extra: 1549 / 1495,
  22275. bottom: 54.2 / 1604.4
  22276. }
  22277. },
  22278. },
  22279. [
  22280. {
  22281. name: "Normal",
  22282. height: math.unit(5 + 1 / 12, "feet"),
  22283. default: true
  22284. },
  22285. ]
  22286. ))
  22287. characterMakers.push(() => makeCharacter(
  22288. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22289. {
  22290. front: {
  22291. height: math.unit(8 + 4 / 12, "feet"),
  22292. weight: math.unit(350, "lb"),
  22293. name: "Front",
  22294. image: {
  22295. source: "./media/characters/sheera-castellar/front.svg",
  22296. extra: 1957 / 1894,
  22297. bottom: 26.97 / 1975.017
  22298. }
  22299. },
  22300. side: {
  22301. height: math.unit(8 + 4 / 12, "feet"),
  22302. weight: math.unit(350, "lb"),
  22303. name: "Side",
  22304. image: {
  22305. source: "./media/characters/sheera-castellar/side.svg",
  22306. extra: 1957 / 1894
  22307. }
  22308. },
  22309. back: {
  22310. height: math.unit(8 + 4 / 12, "feet"),
  22311. weight: math.unit(350, "lb"),
  22312. name: "Back",
  22313. image: {
  22314. source: "./media/characters/sheera-castellar/back.svg",
  22315. extra: 1957 / 1894
  22316. }
  22317. },
  22318. angled: {
  22319. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22320. weight: math.unit(350, "lb"),
  22321. name: "Angled",
  22322. image: {
  22323. source: "./media/characters/sheera-castellar/angled.svg",
  22324. extra: 1807 / 1707,
  22325. bottom: 68 / 1875
  22326. }
  22327. },
  22328. genitals: {
  22329. height: math.unit(2.2, "feet"),
  22330. name: "Genitals",
  22331. image: {
  22332. source: "./media/characters/sheera-castellar/genitals.svg"
  22333. }
  22334. },
  22335. },
  22336. [
  22337. {
  22338. name: "Normal",
  22339. height: math.unit(8 + 4 / 12, "feet")
  22340. },
  22341. {
  22342. name: "Macro",
  22343. height: math.unit(150, "feet"),
  22344. default: true
  22345. },
  22346. {
  22347. name: "Macro+",
  22348. height: math.unit(800, "feet")
  22349. },
  22350. ]
  22351. ))
  22352. characterMakers.push(() => makeCharacter(
  22353. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22354. {
  22355. front: {
  22356. height: math.unit(6, "feet"),
  22357. weight: math.unit(150, "lb"),
  22358. name: "Front",
  22359. image: {
  22360. source: "./media/characters/jaipur/front.svg",
  22361. extra: 3860 / 3731,
  22362. bottom: 287 / 4140
  22363. }
  22364. },
  22365. back: {
  22366. height: math.unit(6, "feet"),
  22367. weight: math.unit(150, "lb"),
  22368. name: "Back",
  22369. image: {
  22370. source: "./media/characters/jaipur/back.svg",
  22371. extra: 4060 / 3930,
  22372. bottom: 151 / 4200
  22373. }
  22374. },
  22375. },
  22376. [
  22377. {
  22378. name: "Normal",
  22379. height: math.unit(1.85, "meters"),
  22380. default: true
  22381. },
  22382. {
  22383. name: "Macro",
  22384. height: math.unit(150, "meters")
  22385. },
  22386. {
  22387. name: "Macro+",
  22388. height: math.unit(0.5, "miles")
  22389. },
  22390. {
  22391. name: "Macro++",
  22392. height: math.unit(2.5, "miles")
  22393. },
  22394. {
  22395. name: "Macro+++",
  22396. height: math.unit(12, "miles")
  22397. },
  22398. {
  22399. name: "Macro++++",
  22400. height: math.unit(120, "miles")
  22401. },
  22402. {
  22403. name: "Macro+++++",
  22404. height: math.unit(1200, "miles")
  22405. },
  22406. ]
  22407. ))
  22408. characterMakers.push(() => makeCharacter(
  22409. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22410. {
  22411. front: {
  22412. height: math.unit(6, "feet"),
  22413. weight: math.unit(150, "lb"),
  22414. name: "Front",
  22415. image: {
  22416. source: "./media/characters/sheila-wolf/front.svg",
  22417. extra: 1931 / 1808,
  22418. bottom: 29.5 / 1960
  22419. }
  22420. },
  22421. dick: {
  22422. height: math.unit(1.464, "feet"),
  22423. name: "Dick",
  22424. image: {
  22425. source: "./media/characters/sheila-wolf/dick.svg"
  22426. }
  22427. },
  22428. muzzle: {
  22429. height: math.unit(0.513, "feet"),
  22430. name: "Muzzle",
  22431. image: {
  22432. source: "./media/characters/sheila-wolf/muzzle.svg"
  22433. }
  22434. },
  22435. },
  22436. [
  22437. {
  22438. name: "Macro",
  22439. height: math.unit(70, "feet"),
  22440. default: true
  22441. },
  22442. ]
  22443. ))
  22444. characterMakers.push(() => makeCharacter(
  22445. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22446. {
  22447. front: {
  22448. height: math.unit(32, "meters"),
  22449. weight: math.unit(300000, "kg"),
  22450. name: "Front",
  22451. image: {
  22452. source: "./media/characters/almor/front.svg",
  22453. extra: 1408 / 1322,
  22454. bottom: 94.6 / 1506.5
  22455. }
  22456. },
  22457. },
  22458. [
  22459. {
  22460. name: "Macro",
  22461. height: math.unit(32, "meters"),
  22462. default: true
  22463. },
  22464. ]
  22465. ))
  22466. characterMakers.push(() => makeCharacter(
  22467. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22468. {
  22469. front: {
  22470. height: math.unit(7, "feet"),
  22471. weight: math.unit(200, "lb"),
  22472. name: "Front",
  22473. image: {
  22474. source: "./media/characters/silver/front.svg",
  22475. extra: 472.1 / 450.5,
  22476. bottom: 26.5 / 499.424
  22477. }
  22478. },
  22479. },
  22480. [
  22481. {
  22482. name: "Normal",
  22483. height: math.unit(7, "feet"),
  22484. default: true
  22485. },
  22486. {
  22487. name: "Macro",
  22488. height: math.unit(800, "feet")
  22489. },
  22490. {
  22491. name: "Megamacro",
  22492. height: math.unit(250, "miles")
  22493. },
  22494. ]
  22495. ))
  22496. characterMakers.push(() => makeCharacter(
  22497. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22498. {
  22499. front: {
  22500. height: math.unit(6, "feet"),
  22501. weight: math.unit(150, "lb"),
  22502. name: "Front",
  22503. image: {
  22504. source: "./media/characters/pliskin/front.svg",
  22505. extra: 1469 / 1359,
  22506. bottom: 70 / 1540
  22507. }
  22508. },
  22509. },
  22510. [
  22511. {
  22512. name: "Micro",
  22513. height: math.unit(3, "inches")
  22514. },
  22515. {
  22516. name: "Normal",
  22517. height: math.unit(5 + 11 / 12, "feet"),
  22518. default: true
  22519. },
  22520. {
  22521. name: "Macro",
  22522. height: math.unit(120, "feet")
  22523. },
  22524. ]
  22525. ))
  22526. characterMakers.push(() => makeCharacter(
  22527. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22528. {
  22529. front: {
  22530. height: math.unit(6, "feet"),
  22531. weight: math.unit(150, "lb"),
  22532. name: "Front",
  22533. image: {
  22534. source: "./media/characters/sammy/front.svg",
  22535. extra: 1193 / 1089,
  22536. bottom: 30.5 / 1226
  22537. }
  22538. },
  22539. },
  22540. [
  22541. {
  22542. name: "Macro",
  22543. height: math.unit(1700, "feet"),
  22544. default: true
  22545. },
  22546. {
  22547. name: "Examacro",
  22548. height: math.unit(2.5e9, "lightyears")
  22549. },
  22550. ]
  22551. ))
  22552. characterMakers.push(() => makeCharacter(
  22553. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22554. {
  22555. front: {
  22556. height: math.unit(21, "meters"),
  22557. weight: math.unit(12, "tonnes"),
  22558. name: "Front",
  22559. image: {
  22560. source: "./media/characters/kuru/front.svg",
  22561. extra: 4301 / 3785,
  22562. bottom: 371.3 / 4691
  22563. }
  22564. },
  22565. },
  22566. [
  22567. {
  22568. name: "Macro",
  22569. height: math.unit(21, "meters"),
  22570. default: true
  22571. },
  22572. ]
  22573. ))
  22574. characterMakers.push(() => makeCharacter(
  22575. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22576. {
  22577. front: {
  22578. height: math.unit(23, "meters"),
  22579. weight: math.unit(12.2, "tonnes"),
  22580. name: "Front",
  22581. image: {
  22582. source: "./media/characters/rakka/front.svg",
  22583. extra: 4670 / 4169,
  22584. bottom: 301 / 4968.7
  22585. }
  22586. },
  22587. },
  22588. [
  22589. {
  22590. name: "Macro",
  22591. height: math.unit(23, "meters"),
  22592. default: true
  22593. },
  22594. ]
  22595. ))
  22596. characterMakers.push(() => makeCharacter(
  22597. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22598. {
  22599. front: {
  22600. height: math.unit(6, "feet"),
  22601. weight: math.unit(150, "lb"),
  22602. name: "Front",
  22603. image: {
  22604. source: "./media/characters/rhys-feline/front.svg",
  22605. extra: 2488 / 2308,
  22606. bottom: 35.67 / 2519.19
  22607. }
  22608. },
  22609. },
  22610. [
  22611. {
  22612. name: "Really Small",
  22613. height: math.unit(1, "nm")
  22614. },
  22615. {
  22616. name: "Micro",
  22617. height: math.unit(4, "inches")
  22618. },
  22619. {
  22620. name: "Normal",
  22621. height: math.unit(4 + 10 / 12, "feet"),
  22622. default: true
  22623. },
  22624. {
  22625. name: "Macro",
  22626. height: math.unit(100, "feet")
  22627. },
  22628. {
  22629. name: "Megamacto",
  22630. height: math.unit(50, "miles")
  22631. },
  22632. ]
  22633. ))
  22634. characterMakers.push(() => makeCharacter(
  22635. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22636. {
  22637. side: {
  22638. height: math.unit(30, "feet"),
  22639. weight: math.unit(35000, "kg"),
  22640. name: "Side",
  22641. image: {
  22642. source: "./media/characters/alydar/side.svg",
  22643. extra: 234 / 222,
  22644. bottom: 6.5 / 241
  22645. }
  22646. },
  22647. front: {
  22648. height: math.unit(30, "feet"),
  22649. weight: math.unit(35000, "kg"),
  22650. name: "Front",
  22651. image: {
  22652. source: "./media/characters/alydar/front.svg",
  22653. extra: 223.37 / 210.2,
  22654. bottom: 22.3 / 246.76
  22655. }
  22656. },
  22657. top: {
  22658. height: math.unit(64.54, "feet"),
  22659. weight: math.unit(35000, "kg"),
  22660. name: "Top",
  22661. image: {
  22662. source: "./media/characters/alydar/top.svg"
  22663. }
  22664. },
  22665. anthro: {
  22666. height: math.unit(30, "feet"),
  22667. weight: math.unit(9000, "kg"),
  22668. name: "Anthro",
  22669. image: {
  22670. source: "./media/characters/alydar/anthro.svg",
  22671. extra: 432 / 421,
  22672. bottom: 7.18 / 440
  22673. }
  22674. },
  22675. maw: {
  22676. height: math.unit(11.693, "feet"),
  22677. name: "Maw",
  22678. image: {
  22679. source: "./media/characters/alydar/maw.svg"
  22680. }
  22681. },
  22682. head: {
  22683. height: math.unit(11.693, "feet"),
  22684. name: "Head",
  22685. image: {
  22686. source: "./media/characters/alydar/head.svg"
  22687. }
  22688. },
  22689. headAlt: {
  22690. height: math.unit(12.861, "feet"),
  22691. name: "Head (Alt)",
  22692. image: {
  22693. source: "./media/characters/alydar/head-alt.svg"
  22694. }
  22695. },
  22696. wing: {
  22697. height: math.unit(20.712, "feet"),
  22698. name: "Wing",
  22699. image: {
  22700. source: "./media/characters/alydar/wing.svg"
  22701. }
  22702. },
  22703. wingFeather: {
  22704. height: math.unit(9.662, "feet"),
  22705. name: "Wing Feather",
  22706. image: {
  22707. source: "./media/characters/alydar/wing-feather.svg"
  22708. }
  22709. },
  22710. countourFeather: {
  22711. height: math.unit(4.154, "feet"),
  22712. name: "Contour Feather",
  22713. image: {
  22714. source: "./media/characters/alydar/contour-feather.svg"
  22715. }
  22716. },
  22717. },
  22718. [
  22719. {
  22720. name: "Diplomatic",
  22721. height: math.unit(13, "feet"),
  22722. default: true
  22723. },
  22724. {
  22725. name: "Small",
  22726. height: math.unit(30, "feet")
  22727. },
  22728. {
  22729. name: "Normal",
  22730. height: math.unit(95, "feet"),
  22731. default: true
  22732. },
  22733. {
  22734. name: "Large",
  22735. height: math.unit(285, "feet")
  22736. },
  22737. {
  22738. name: "Incomprehensible",
  22739. height: math.unit(450, "megameters")
  22740. },
  22741. ]
  22742. ))
  22743. characterMakers.push(() => makeCharacter(
  22744. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22745. {
  22746. side: {
  22747. height: math.unit(11, "feet"),
  22748. weight: math.unit(1750, "kg"),
  22749. name: "Side",
  22750. image: {
  22751. source: "./media/characters/selicia/side.svg",
  22752. extra: 440 / 396,
  22753. bottom: 24.8 / 465.979
  22754. }
  22755. },
  22756. maw: {
  22757. height: math.unit(4.665, "feet"),
  22758. name: "Maw",
  22759. image: {
  22760. source: "./media/characters/selicia/maw.svg"
  22761. }
  22762. },
  22763. },
  22764. [
  22765. {
  22766. name: "Normal",
  22767. height: math.unit(11, "feet"),
  22768. default: true
  22769. },
  22770. ]
  22771. ))
  22772. characterMakers.push(() => makeCharacter(
  22773. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22774. {
  22775. side: {
  22776. height: math.unit(2 + 6 / 12, "feet"),
  22777. weight: math.unit(30, "lb"),
  22778. name: "Side",
  22779. image: {
  22780. source: "./media/characters/layla/side.svg",
  22781. extra: 244 / 188,
  22782. bottom: 18.2 / 262.1
  22783. }
  22784. },
  22785. back: {
  22786. height: math.unit(2 + 6 / 12, "feet"),
  22787. weight: math.unit(30, "lb"),
  22788. name: "Back",
  22789. image: {
  22790. source: "./media/characters/layla/back.svg",
  22791. extra: 308 / 241.5,
  22792. bottom: 8.9 / 316.8
  22793. }
  22794. },
  22795. cumming: {
  22796. height: math.unit(2 + 6 / 12, "feet"),
  22797. weight: math.unit(30, "lb"),
  22798. name: "Cumming",
  22799. image: {
  22800. source: "./media/characters/layla/cumming.svg",
  22801. extra: 342 / 279,
  22802. bottom: 595 / 938
  22803. }
  22804. },
  22805. dickFlaccid: {
  22806. height: math.unit(2.595, "feet"),
  22807. name: "Flaccid Genitals",
  22808. image: {
  22809. source: "./media/characters/layla/dick-flaccid.svg"
  22810. }
  22811. },
  22812. dickErect: {
  22813. height: math.unit(2.359, "feet"),
  22814. name: "Erect Genitals",
  22815. image: {
  22816. source: "./media/characters/layla/dick-erect.svg"
  22817. }
  22818. },
  22819. },
  22820. [
  22821. {
  22822. name: "Micro",
  22823. height: math.unit(1, "inch")
  22824. },
  22825. {
  22826. name: "Small",
  22827. height: math.unit(1, "foot")
  22828. },
  22829. {
  22830. name: "Normal",
  22831. height: math.unit(2 + 6 / 12, "feet"),
  22832. default: true
  22833. },
  22834. {
  22835. name: "Macro",
  22836. height: math.unit(200, "feet")
  22837. },
  22838. {
  22839. name: "Megamacro",
  22840. height: math.unit(1000, "miles")
  22841. },
  22842. {
  22843. name: "Planetary",
  22844. height: math.unit(8000, "miles")
  22845. },
  22846. {
  22847. name: "True Layla",
  22848. height: math.unit(200000 * 7, "multiverses")
  22849. },
  22850. ]
  22851. ))
  22852. characterMakers.push(() => makeCharacter(
  22853. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22854. {
  22855. back: {
  22856. height: math.unit(10.5, "feet"),
  22857. weight: math.unit(800, "lb"),
  22858. name: "Back",
  22859. image: {
  22860. source: "./media/characters/knox/back.svg",
  22861. extra: 1486 / 1089,
  22862. bottom: 107 / 1601.4
  22863. }
  22864. },
  22865. side: {
  22866. height: math.unit(10.5, "feet"),
  22867. weight: math.unit(800, "lb"),
  22868. name: "Side",
  22869. image: {
  22870. source: "./media/characters/knox/side.svg",
  22871. extra: 244 / 218,
  22872. bottom: 14 / 260
  22873. }
  22874. },
  22875. },
  22876. [
  22877. {
  22878. name: "Compact",
  22879. height: math.unit(10.5, "feet"),
  22880. default: true
  22881. },
  22882. {
  22883. name: "Dynamax",
  22884. height: math.unit(210, "feet")
  22885. },
  22886. {
  22887. name: "Full Macro",
  22888. height: math.unit(850, "feet")
  22889. },
  22890. ]
  22891. ))
  22892. characterMakers.push(() => makeCharacter(
  22893. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22894. {
  22895. front: {
  22896. height: math.unit(6, "feet"),
  22897. weight: math.unit(152, "lb"),
  22898. name: "Front",
  22899. image: {
  22900. source: "./media/characters/shin-pikachu/front.svg",
  22901. extra: 1574 / 1480,
  22902. bottom: 53.3 / 1626
  22903. }
  22904. },
  22905. hand: {
  22906. height: math.unit(1.055, "feet"),
  22907. name: "Hand",
  22908. image: {
  22909. source: "./media/characters/shin-pikachu/hand.svg"
  22910. }
  22911. },
  22912. foot: {
  22913. height: math.unit(1.1, "feet"),
  22914. name: "Foot",
  22915. image: {
  22916. source: "./media/characters/shin-pikachu/foot.svg"
  22917. }
  22918. },
  22919. collar: {
  22920. height: math.unit(0.386, "feet"),
  22921. name: "Collar",
  22922. image: {
  22923. source: "./media/characters/shin-pikachu/collar.svg"
  22924. }
  22925. },
  22926. },
  22927. [
  22928. {
  22929. name: "Smallest",
  22930. height: math.unit(0.5, "inches")
  22931. },
  22932. {
  22933. name: "Micro",
  22934. height: math.unit(6, "inches")
  22935. },
  22936. {
  22937. name: "Normal",
  22938. height: math.unit(6, "feet"),
  22939. default: true
  22940. },
  22941. {
  22942. name: "Macro",
  22943. height: math.unit(150, "feet")
  22944. },
  22945. ]
  22946. ))
  22947. characterMakers.push(() => makeCharacter(
  22948. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22949. {
  22950. front: {
  22951. height: math.unit(28, "feet"),
  22952. weight: math.unit(10500, "lb"),
  22953. name: "Front",
  22954. image: {
  22955. source: "./media/characters/kayda/front.svg",
  22956. extra: 1536 / 1428,
  22957. bottom: 68.7 / 1603
  22958. }
  22959. },
  22960. back: {
  22961. height: math.unit(28, "feet"),
  22962. weight: math.unit(10500, "lb"),
  22963. name: "Back",
  22964. image: {
  22965. source: "./media/characters/kayda/back.svg",
  22966. extra: 1557 / 1464,
  22967. bottom: 39.5 / 1597.49
  22968. }
  22969. },
  22970. dick: {
  22971. height: math.unit(3.858, "feet"),
  22972. name: "Dick",
  22973. image: {
  22974. source: "./media/characters/kayda/dick.svg"
  22975. }
  22976. },
  22977. },
  22978. [
  22979. {
  22980. name: "Macro",
  22981. height: math.unit(28, "feet"),
  22982. default: true
  22983. },
  22984. ]
  22985. ))
  22986. characterMakers.push(() => makeCharacter(
  22987. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22988. {
  22989. front: {
  22990. height: math.unit(10 + 11 / 12, "feet"),
  22991. weight: math.unit(1400, "lb"),
  22992. name: "Front",
  22993. image: {
  22994. source: "./media/characters/brian/front.svg",
  22995. extra: 737 / 692,
  22996. bottom: 55.4 / 785
  22997. }
  22998. },
  22999. },
  23000. [
  23001. {
  23002. name: "Normal",
  23003. height: math.unit(10 + 11 / 12, "feet"),
  23004. default: true
  23005. },
  23006. ]
  23007. ))
  23008. characterMakers.push(() => makeCharacter(
  23009. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23010. {
  23011. front: {
  23012. height: math.unit(5 + 8 / 12, "feet"),
  23013. weight: math.unit(140, "lb"),
  23014. name: "Front",
  23015. image: {
  23016. source: "./media/characters/khemri/front.svg",
  23017. extra: 4780 / 4059,
  23018. bottom: 80.1 / 4859.25
  23019. }
  23020. },
  23021. },
  23022. [
  23023. {
  23024. name: "Micro",
  23025. height: math.unit(6, "inches")
  23026. },
  23027. {
  23028. name: "Normal",
  23029. height: math.unit(5 + 8 / 12, "feet"),
  23030. default: true
  23031. },
  23032. ]
  23033. ))
  23034. characterMakers.push(() => makeCharacter(
  23035. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23036. {
  23037. front: {
  23038. height: math.unit(13, "feet"),
  23039. weight: math.unit(1700, "lb"),
  23040. name: "Front",
  23041. image: {
  23042. source: "./media/characters/felix-braveheart/front.svg",
  23043. extra: 1222 / 1157,
  23044. bottom: 53.2 / 1280
  23045. }
  23046. },
  23047. back: {
  23048. height: math.unit(13, "feet"),
  23049. weight: math.unit(1700, "lb"),
  23050. name: "Back",
  23051. image: {
  23052. source: "./media/characters/felix-braveheart/back.svg",
  23053. extra: 1277 / 1203,
  23054. bottom: 50.2 / 1327
  23055. }
  23056. },
  23057. feral: {
  23058. height: math.unit(6, "feet"),
  23059. weight: math.unit(400, "lb"),
  23060. name: "Feral",
  23061. image: {
  23062. source: "./media/characters/felix-braveheart/feral.svg",
  23063. extra: 682 / 625,
  23064. bottom: 6.9 / 688
  23065. }
  23066. },
  23067. },
  23068. [
  23069. {
  23070. name: "Normal",
  23071. height: math.unit(13, "feet"),
  23072. default: true
  23073. },
  23074. ]
  23075. ))
  23076. characterMakers.push(() => makeCharacter(
  23077. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23078. {
  23079. side: {
  23080. height: math.unit(5 + 11 / 12, "feet"),
  23081. weight: math.unit(1400, "lb"),
  23082. name: "Side",
  23083. image: {
  23084. source: "./media/characters/shadow-blade/side.svg",
  23085. extra: 1726 / 1267,
  23086. bottom: 58.4 / 1785
  23087. }
  23088. },
  23089. },
  23090. [
  23091. {
  23092. name: "Normal",
  23093. height: math.unit(5 + 11 / 12, "feet"),
  23094. default: true
  23095. },
  23096. ]
  23097. ))
  23098. characterMakers.push(() => makeCharacter(
  23099. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23100. {
  23101. front: {
  23102. height: math.unit(1 + 6 / 12, "feet"),
  23103. weight: math.unit(25, "lb"),
  23104. name: "Front",
  23105. image: {
  23106. source: "./media/characters/karla-halldor/front.svg",
  23107. extra: 1459 / 1383,
  23108. bottom: 12 / 1472
  23109. }
  23110. },
  23111. },
  23112. [
  23113. {
  23114. name: "Normal",
  23115. height: math.unit(1 + 6 / 12, "feet"),
  23116. default: true
  23117. },
  23118. ]
  23119. ))
  23120. characterMakers.push(() => makeCharacter(
  23121. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23122. {
  23123. front: {
  23124. height: math.unit(6 + 2 / 12, "feet"),
  23125. weight: math.unit(160, "lb"),
  23126. name: "Front",
  23127. image: {
  23128. source: "./media/characters/ariam/front.svg",
  23129. extra: 714 / 617,
  23130. bottom: 23.4 / 737,
  23131. }
  23132. },
  23133. squatting: {
  23134. height: math.unit(4.1, "feet"),
  23135. weight: math.unit(160, "lb"),
  23136. name: "Squatting",
  23137. image: {
  23138. source: "./media/characters/ariam/squatting.svg",
  23139. extra: 2617 / 2112,
  23140. bottom: 61.2 / 2681,
  23141. }
  23142. },
  23143. },
  23144. [
  23145. {
  23146. name: "Normal",
  23147. height: math.unit(6 + 2 / 12, "feet"),
  23148. default: true
  23149. },
  23150. {
  23151. name: "Normal+",
  23152. height: math.unit(4, "meters")
  23153. },
  23154. {
  23155. name: "Macro",
  23156. height: math.unit(50, "meters")
  23157. },
  23158. {
  23159. name: "Macro+",
  23160. height: math.unit(100, "meters")
  23161. },
  23162. {
  23163. name: "Megamacro",
  23164. height: math.unit(20, "km")
  23165. },
  23166. ]
  23167. ))
  23168. characterMakers.push(() => makeCharacter(
  23169. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23170. {
  23171. front: {
  23172. height: math.unit(1.67, "meters"),
  23173. weight: math.unit(140, "lb"),
  23174. name: "Front",
  23175. image: {
  23176. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23177. extra: 438 / 410,
  23178. bottom: 0.75 / 439
  23179. }
  23180. },
  23181. },
  23182. [
  23183. {
  23184. name: "Shrunken",
  23185. height: math.unit(7.6, "cm")
  23186. },
  23187. {
  23188. name: "Human Scale",
  23189. height: math.unit(1.67, "meters")
  23190. },
  23191. {
  23192. name: "Wolxi Scale",
  23193. height: math.unit(36.7, "meters"),
  23194. default: true
  23195. },
  23196. ]
  23197. ))
  23198. characterMakers.push(() => makeCharacter(
  23199. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23200. {
  23201. front: {
  23202. height: math.unit(1.73, "meters"),
  23203. weight: math.unit(240, "lb"),
  23204. name: "Front",
  23205. image: {
  23206. source: "./media/characters/izue-two-mothers/front.svg",
  23207. extra: 469 / 437,
  23208. bottom: 1.24 / 470.6
  23209. }
  23210. },
  23211. },
  23212. [
  23213. {
  23214. name: "Shrunken",
  23215. height: math.unit(7.86, "cm")
  23216. },
  23217. {
  23218. name: "Human Scale",
  23219. height: math.unit(1.73, "meters")
  23220. },
  23221. {
  23222. name: "Wolxi Scale",
  23223. height: math.unit(38, "meters"),
  23224. default: true
  23225. },
  23226. ]
  23227. ))
  23228. characterMakers.push(() => makeCharacter(
  23229. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23230. {
  23231. front: {
  23232. height: math.unit(1.55, "meters"),
  23233. weight: math.unit(120, "lb"),
  23234. name: "Front",
  23235. image: {
  23236. source: "./media/characters/teeku-love-shack/front.svg",
  23237. extra: 387 / 362,
  23238. bottom: 1.51 / 388
  23239. }
  23240. },
  23241. },
  23242. [
  23243. {
  23244. name: "Shrunken",
  23245. height: math.unit(7, "cm")
  23246. },
  23247. {
  23248. name: "Human Scale",
  23249. height: math.unit(1.55, "meters")
  23250. },
  23251. {
  23252. name: "Wolxi Scale",
  23253. height: math.unit(34.1, "meters"),
  23254. default: true
  23255. },
  23256. ]
  23257. ))
  23258. characterMakers.push(() => makeCharacter(
  23259. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23260. {
  23261. front: {
  23262. height: math.unit(1.83, "meters"),
  23263. weight: math.unit(135, "lb"),
  23264. name: "Front",
  23265. image: {
  23266. source: "./media/characters/dejma-the-red/front.svg",
  23267. extra: 480 / 458,
  23268. bottom: 1.8 / 482
  23269. }
  23270. },
  23271. },
  23272. [
  23273. {
  23274. name: "Shrunken",
  23275. height: math.unit(8.3, "cm")
  23276. },
  23277. {
  23278. name: "Human Scale",
  23279. height: math.unit(1.83, "meters")
  23280. },
  23281. {
  23282. name: "Wolxi Scale",
  23283. height: math.unit(40, "meters"),
  23284. default: true
  23285. },
  23286. ]
  23287. ))
  23288. characterMakers.push(() => makeCharacter(
  23289. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23290. {
  23291. front: {
  23292. height: math.unit(1.78, "meters"),
  23293. weight: math.unit(65, "kg"),
  23294. name: "Front",
  23295. image: {
  23296. source: "./media/characters/aki/front.svg",
  23297. extra: 452 / 415
  23298. }
  23299. },
  23300. frontNsfw: {
  23301. height: math.unit(1.78, "meters"),
  23302. weight: math.unit(65, "kg"),
  23303. name: "Front (NSFW)",
  23304. image: {
  23305. source: "./media/characters/aki/front-nsfw.svg",
  23306. extra: 452 / 415
  23307. }
  23308. },
  23309. back: {
  23310. height: math.unit(1.78, "meters"),
  23311. weight: math.unit(65, "kg"),
  23312. name: "Back",
  23313. image: {
  23314. source: "./media/characters/aki/back.svg",
  23315. extra: 452 / 415
  23316. }
  23317. },
  23318. rump: {
  23319. height: math.unit(2.05, "feet"),
  23320. name: "Rump",
  23321. image: {
  23322. source: "./media/characters/aki/rump.svg"
  23323. }
  23324. },
  23325. dick: {
  23326. height: math.unit(0.95, "feet"),
  23327. name: "Dick",
  23328. image: {
  23329. source: "./media/characters/aki/dick.svg"
  23330. }
  23331. },
  23332. },
  23333. [
  23334. {
  23335. name: "Micro",
  23336. height: math.unit(15, "cm")
  23337. },
  23338. {
  23339. name: "Normal",
  23340. height: math.unit(178, "cm"),
  23341. default: true
  23342. },
  23343. {
  23344. name: "Macro",
  23345. height: math.unit(214, "m")
  23346. },
  23347. {
  23348. name: "Macro+",
  23349. height: math.unit(534, "m")
  23350. },
  23351. ]
  23352. ))
  23353. characterMakers.push(() => makeCharacter(
  23354. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23355. {
  23356. front: {
  23357. height: math.unit(5 + 5 / 12, "feet"),
  23358. weight: math.unit(120, "lb"),
  23359. name: "Front",
  23360. image: {
  23361. source: "./media/characters/ari/front.svg",
  23362. extra: 714.5 / 682,
  23363. bottom: 8 / 722.5
  23364. }
  23365. },
  23366. },
  23367. [
  23368. {
  23369. name: "Normal",
  23370. height: math.unit(5 + 5 / 12, "feet")
  23371. },
  23372. {
  23373. name: "Macro",
  23374. height: math.unit(100, "feet"),
  23375. default: true
  23376. },
  23377. {
  23378. name: "Megamacro",
  23379. height: math.unit(100, "miles")
  23380. },
  23381. {
  23382. name: "Gigamacro",
  23383. height: math.unit(80000, "miles")
  23384. },
  23385. ]
  23386. ))
  23387. characterMakers.push(() => makeCharacter(
  23388. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23389. {
  23390. side: {
  23391. height: math.unit(9, "feet"),
  23392. weight: math.unit(400, "kg"),
  23393. name: "Side",
  23394. image: {
  23395. source: "./media/characters/bolt/side.svg",
  23396. extra: 1126 / 896,
  23397. bottom: 60 / 1187.3,
  23398. }
  23399. },
  23400. },
  23401. [
  23402. {
  23403. name: "Micro",
  23404. height: math.unit(5, "inches")
  23405. },
  23406. {
  23407. name: "Normal",
  23408. height: math.unit(9, "feet"),
  23409. default: true
  23410. },
  23411. {
  23412. name: "Macro",
  23413. height: math.unit(700, "feet")
  23414. },
  23415. {
  23416. name: "Max Size",
  23417. height: math.unit(1.52e22, "yottameters")
  23418. },
  23419. ]
  23420. ))
  23421. characterMakers.push(() => makeCharacter(
  23422. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23423. {
  23424. front: {
  23425. height: math.unit(4.53, "meters"),
  23426. weight: math.unit(3, "tons"),
  23427. name: "Front",
  23428. image: {
  23429. source: "./media/characters/draekon-sylviar/front.svg",
  23430. extra: 1228 / 1068,
  23431. bottom: 41 / 1270
  23432. }
  23433. },
  23434. tail: {
  23435. height: math.unit(1.772, "meter"),
  23436. name: "Tail",
  23437. image: {
  23438. source: "./media/characters/draekon-sylviar/tail.svg"
  23439. }
  23440. },
  23441. head: {
  23442. height: math.unit(1.331, "meter"),
  23443. name: "Head",
  23444. image: {
  23445. source: "./media/characters/draekon-sylviar/head.svg"
  23446. }
  23447. },
  23448. hand: {
  23449. height: math.unit(0.564, "meter"),
  23450. name: "Hand",
  23451. image: {
  23452. source: "./media/characters/draekon-sylviar/hand.svg"
  23453. }
  23454. },
  23455. foot: {
  23456. height: math.unit(0.621, "meter"),
  23457. name: "Foot",
  23458. image: {
  23459. source: "./media/characters/draekon-sylviar/foot.svg",
  23460. bottom: 32 / 324
  23461. }
  23462. },
  23463. dick: {
  23464. height: math.unit(61, "cm"),
  23465. name: "Dick",
  23466. image: {
  23467. source: "./media/characters/draekon-sylviar/dick.svg"
  23468. }
  23469. },
  23470. dickseparated: {
  23471. height: math.unit(61, "cm"),
  23472. name: "Dick-separated",
  23473. image: {
  23474. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23475. }
  23476. },
  23477. },
  23478. [
  23479. {
  23480. name: "Small",
  23481. height: math.unit(4.53 / 2, "meters"),
  23482. default: true
  23483. },
  23484. {
  23485. name: "Normal",
  23486. height: math.unit(4.53, "meters"),
  23487. default: true
  23488. },
  23489. {
  23490. name: "Large",
  23491. height: math.unit(4.53 * 2, "meters"),
  23492. },
  23493. ]
  23494. ))
  23495. characterMakers.push(() => makeCharacter(
  23496. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23497. {
  23498. front: {
  23499. height: math.unit(6 + 2 / 12, "feet"),
  23500. weight: math.unit(180, "lb"),
  23501. name: "Front",
  23502. image: {
  23503. source: "./media/characters/brawler/front.svg",
  23504. extra: 3301 / 3027,
  23505. bottom: 138 / 3439
  23506. }
  23507. },
  23508. },
  23509. [
  23510. {
  23511. name: "Normal",
  23512. height: math.unit(6 + 2 / 12, "feet"),
  23513. default: true
  23514. },
  23515. ]
  23516. ))
  23517. characterMakers.push(() => makeCharacter(
  23518. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23519. {
  23520. front: {
  23521. height: math.unit(11, "feet"),
  23522. weight: math.unit(1000, "lb"),
  23523. name: "Front",
  23524. image: {
  23525. source: "./media/characters/alex/front.svg",
  23526. bottom: 44.5 / 620
  23527. }
  23528. },
  23529. },
  23530. [
  23531. {
  23532. name: "Micro",
  23533. height: math.unit(5, "inches")
  23534. },
  23535. {
  23536. name: "Normal",
  23537. height: math.unit(11, "feet"),
  23538. default: true
  23539. },
  23540. {
  23541. name: "Macro",
  23542. height: math.unit(9.5e9, "feet")
  23543. },
  23544. {
  23545. name: "Max Size",
  23546. height: math.unit(1.4e283, "yottameters")
  23547. },
  23548. ]
  23549. ))
  23550. characterMakers.push(() => makeCharacter(
  23551. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23552. {
  23553. female: {
  23554. height: math.unit(29.9, "m"),
  23555. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23556. name: "Female",
  23557. image: {
  23558. source: "./media/characters/zenari/female.svg",
  23559. extra: 3281.6 / 3217,
  23560. bottom: 72.2 / 3353
  23561. }
  23562. },
  23563. male: {
  23564. height: math.unit(27.7, "m"),
  23565. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23566. name: "Male",
  23567. image: {
  23568. source: "./media/characters/zenari/male.svg",
  23569. extra: 3008 / 2991,
  23570. bottom: 54.6 / 3069
  23571. }
  23572. },
  23573. },
  23574. [
  23575. {
  23576. name: "Macro",
  23577. height: math.unit(29.7, "meters"),
  23578. default: true
  23579. },
  23580. ]
  23581. ))
  23582. characterMakers.push(() => makeCharacter(
  23583. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23584. {
  23585. female: {
  23586. height: math.unit(23.8, "m"),
  23587. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23588. name: "Female",
  23589. image: {
  23590. source: "./media/characters/mactarian/female.svg",
  23591. extra: 2662 / 2569,
  23592. bottom: 73 / 2736
  23593. }
  23594. },
  23595. male: {
  23596. height: math.unit(23.8, "m"),
  23597. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23598. name: "Male",
  23599. image: {
  23600. source: "./media/characters/mactarian/male.svg",
  23601. extra: 2673 / 2600,
  23602. bottom: 76 / 2750
  23603. }
  23604. },
  23605. },
  23606. [
  23607. {
  23608. name: "Macro",
  23609. height: math.unit(23.8, "meters"),
  23610. default: true
  23611. },
  23612. ]
  23613. ))
  23614. characterMakers.push(() => makeCharacter(
  23615. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23616. {
  23617. female: {
  23618. height: math.unit(19.3, "m"),
  23619. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23620. name: "Female",
  23621. image: {
  23622. source: "./media/characters/umok/female.svg",
  23623. extra: 2186 / 2078,
  23624. bottom: 87 / 2277
  23625. }
  23626. },
  23627. male: {
  23628. height: math.unit(19.5, "m"),
  23629. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23630. name: "Male",
  23631. image: {
  23632. source: "./media/characters/umok/male.svg",
  23633. extra: 2233 / 2140,
  23634. bottom: 24.4 / 2258
  23635. }
  23636. },
  23637. },
  23638. [
  23639. {
  23640. name: "Macro",
  23641. height: math.unit(19.3, "meters"),
  23642. default: true
  23643. },
  23644. ]
  23645. ))
  23646. characterMakers.push(() => makeCharacter(
  23647. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23648. {
  23649. female: {
  23650. height: math.unit(26.15, "m"),
  23651. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23652. name: "Female",
  23653. image: {
  23654. source: "./media/characters/joraxian/female.svg",
  23655. extra: 2912 / 2824,
  23656. bottom: 36 / 2956
  23657. }
  23658. },
  23659. male: {
  23660. height: math.unit(25.4, "m"),
  23661. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23662. name: "Male",
  23663. image: {
  23664. source: "./media/characters/joraxian/male.svg",
  23665. extra: 2877 / 2721,
  23666. bottom: 82 / 2967
  23667. }
  23668. },
  23669. },
  23670. [
  23671. {
  23672. name: "Macro",
  23673. height: math.unit(26.15, "meters"),
  23674. default: true
  23675. },
  23676. ]
  23677. ))
  23678. characterMakers.push(() => makeCharacter(
  23679. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23680. {
  23681. female: {
  23682. height: math.unit(21.6, "m"),
  23683. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23684. name: "Female",
  23685. image: {
  23686. source: "./media/characters/sthara/female.svg",
  23687. extra: 2516 / 2347,
  23688. bottom: 21.5 / 2537
  23689. }
  23690. },
  23691. male: {
  23692. height: math.unit(24, "m"),
  23693. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23694. name: "Male",
  23695. image: {
  23696. source: "./media/characters/sthara/male.svg",
  23697. extra: 2732 / 2607,
  23698. bottom: 23 / 2732
  23699. }
  23700. },
  23701. },
  23702. [
  23703. {
  23704. name: "Macro",
  23705. height: math.unit(21.6, "meters"),
  23706. default: true
  23707. },
  23708. ]
  23709. ))
  23710. characterMakers.push(() => makeCharacter(
  23711. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23712. {
  23713. front: {
  23714. height: math.unit(6 + 4 / 12, "feet"),
  23715. weight: math.unit(175, "lb"),
  23716. name: "Front",
  23717. image: {
  23718. source: "./media/characters/luka-bryzant/front.svg",
  23719. extra: 311 / 289,
  23720. bottom: 4 / 315
  23721. }
  23722. },
  23723. back: {
  23724. height: math.unit(6 + 4 / 12, "feet"),
  23725. weight: math.unit(175, "lb"),
  23726. name: "Back",
  23727. image: {
  23728. source: "./media/characters/luka-bryzant/back.svg",
  23729. extra: 311 / 289,
  23730. bottom: 3.8 / 313.7
  23731. }
  23732. },
  23733. },
  23734. [
  23735. {
  23736. name: "Micro",
  23737. height: math.unit(10, "inches")
  23738. },
  23739. {
  23740. name: "Normal",
  23741. height: math.unit(6 + 4 / 12, "feet"),
  23742. default: true
  23743. },
  23744. {
  23745. name: "Large",
  23746. height: math.unit(12, "feet")
  23747. },
  23748. ]
  23749. ))
  23750. characterMakers.push(() => makeCharacter(
  23751. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23752. {
  23753. front: {
  23754. height: math.unit(5 + 7 / 12, "feet"),
  23755. weight: math.unit(185, "lb"),
  23756. name: "Front",
  23757. image: {
  23758. source: "./media/characters/aman-aquila/front.svg",
  23759. extra: 1013 / 976,
  23760. bottom: 45.6 / 1057
  23761. }
  23762. },
  23763. side: {
  23764. height: math.unit(5 + 7 / 12, "feet"),
  23765. weight: math.unit(185, "lb"),
  23766. name: "Side",
  23767. image: {
  23768. source: "./media/characters/aman-aquila/side.svg",
  23769. extra: 1054 / 1011,
  23770. bottom: 15 / 1070
  23771. }
  23772. },
  23773. back: {
  23774. height: math.unit(5 + 7 / 12, "feet"),
  23775. weight: math.unit(185, "lb"),
  23776. name: "Back",
  23777. image: {
  23778. source: "./media/characters/aman-aquila/back.svg",
  23779. extra: 1026 / 970,
  23780. bottom: 12 / 1039
  23781. }
  23782. },
  23783. head: {
  23784. height: math.unit(1.211, "feet"),
  23785. name: "Head",
  23786. image: {
  23787. source: "./media/characters/aman-aquila/head.svg",
  23788. }
  23789. },
  23790. },
  23791. [
  23792. {
  23793. name: "Minimicro",
  23794. height: math.unit(0.057, "inches")
  23795. },
  23796. {
  23797. name: "Micro",
  23798. height: math.unit(7, "inches")
  23799. },
  23800. {
  23801. name: "Mini",
  23802. height: math.unit(3 + 7 / 12, "feet")
  23803. },
  23804. {
  23805. name: "Normal",
  23806. height: math.unit(5 + 7 / 12, "feet"),
  23807. default: true
  23808. },
  23809. {
  23810. name: "Macro",
  23811. height: math.unit(157 + 7 / 12, "feet")
  23812. },
  23813. {
  23814. name: "Megamacro",
  23815. height: math.unit(1557 + 7 / 12, "feet")
  23816. },
  23817. {
  23818. name: "Gigamacro",
  23819. height: math.unit(15557 + 7 / 12, "feet")
  23820. },
  23821. ]
  23822. ))
  23823. characterMakers.push(() => makeCharacter(
  23824. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23825. {
  23826. front: {
  23827. height: math.unit(3 + 2 / 12, "inches"),
  23828. weight: math.unit(0.3, "ounces"),
  23829. name: "Front",
  23830. image: {
  23831. source: "./media/characters/hiphae/front.svg",
  23832. extra: 1931 / 1683,
  23833. bottom: 24 / 1955
  23834. }
  23835. },
  23836. },
  23837. [
  23838. {
  23839. name: "Normal",
  23840. height: math.unit(3 + 1 / 2, "inches"),
  23841. default: true
  23842. },
  23843. ]
  23844. ))
  23845. characterMakers.push(() => makeCharacter(
  23846. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23847. {
  23848. front: {
  23849. height: math.unit(5 + 10 / 12, "feet"),
  23850. weight: math.unit(165, "lb"),
  23851. name: "Front",
  23852. image: {
  23853. source: "./media/characters/nicky/front.svg",
  23854. extra: 3144 / 2886,
  23855. bottom: 45.6 / 3192
  23856. }
  23857. },
  23858. back: {
  23859. height: math.unit(5 + 10 / 12, "feet"),
  23860. weight: math.unit(165, "lb"),
  23861. name: "Back",
  23862. image: {
  23863. source: "./media/characters/nicky/back.svg",
  23864. extra: 3055 / 2804,
  23865. bottom: 28.4 / 3087
  23866. }
  23867. },
  23868. frontclothed: {
  23869. height: math.unit(5 + 10 / 12, "feet"),
  23870. weight: math.unit(165, "lb"),
  23871. name: "Front-clothed",
  23872. image: {
  23873. source: "./media/characters/nicky/front-clothed.svg",
  23874. extra: 3184.9 / 2926.9,
  23875. bottom: 86.5 / 3239.9
  23876. }
  23877. },
  23878. foot: {
  23879. height: math.unit(1.16, "feet"),
  23880. name: "Foot",
  23881. image: {
  23882. source: "./media/characters/nicky/foot.svg"
  23883. }
  23884. },
  23885. feet: {
  23886. height: math.unit(1.34, "feet"),
  23887. name: "Feet",
  23888. image: {
  23889. source: "./media/characters/nicky/feet.svg"
  23890. }
  23891. },
  23892. maw: {
  23893. height: math.unit(0.9, "feet"),
  23894. name: "Maw",
  23895. image: {
  23896. source: "./media/characters/nicky/maw.svg"
  23897. }
  23898. },
  23899. },
  23900. [
  23901. {
  23902. name: "Normal",
  23903. height: math.unit(5 + 10 / 12, "feet"),
  23904. default: true
  23905. },
  23906. {
  23907. name: "Macro",
  23908. height: math.unit(60, "feet")
  23909. },
  23910. {
  23911. name: "Megamacro",
  23912. height: math.unit(1, "mile")
  23913. },
  23914. ]
  23915. ))
  23916. characterMakers.push(() => makeCharacter(
  23917. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23918. {
  23919. side: {
  23920. height: math.unit(10, "feet"),
  23921. weight: math.unit(600, "lb"),
  23922. name: "Side",
  23923. image: {
  23924. source: "./media/characters/blair/side.svg",
  23925. bottom: 16.6 / 475,
  23926. extra: 458 / 431
  23927. }
  23928. },
  23929. },
  23930. [
  23931. {
  23932. name: "Micro",
  23933. height: math.unit(8, "inches")
  23934. },
  23935. {
  23936. name: "Normal",
  23937. height: math.unit(10, "feet"),
  23938. default: true
  23939. },
  23940. {
  23941. name: "Macro",
  23942. height: math.unit(180, "feet")
  23943. },
  23944. ]
  23945. ))
  23946. characterMakers.push(() => makeCharacter(
  23947. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23948. {
  23949. front: {
  23950. height: math.unit(5 + 4 / 12, "feet"),
  23951. weight: math.unit(125, "lb"),
  23952. name: "Front",
  23953. image: {
  23954. source: "./media/characters/fisher/front.svg",
  23955. extra: 444 / 390,
  23956. bottom: 2 / 444.8
  23957. }
  23958. },
  23959. },
  23960. [
  23961. {
  23962. name: "Micro",
  23963. height: math.unit(4, "inches")
  23964. },
  23965. {
  23966. name: "Normal",
  23967. height: math.unit(5 + 4 / 12, "feet"),
  23968. default: true
  23969. },
  23970. {
  23971. name: "Macro",
  23972. height: math.unit(100, "feet")
  23973. },
  23974. ]
  23975. ))
  23976. characterMakers.push(() => makeCharacter(
  23977. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23978. {
  23979. front: {
  23980. height: math.unit(6.71, "feet"),
  23981. weight: math.unit(200, "lb"),
  23982. capacity: math.unit(1000000, "people"),
  23983. name: "Front",
  23984. image: {
  23985. source: "./media/characters/gliss/front.svg",
  23986. extra: 2347 / 2231,
  23987. bottom: 113 / 2462
  23988. }
  23989. },
  23990. hammerspaceSize: {
  23991. height: math.unit(6.71 * 717, "feet"),
  23992. weight: math.unit(200, "lb"),
  23993. capacity: math.unit(1000000, "people"),
  23994. name: "Hammerspace Size",
  23995. image: {
  23996. source: "./media/characters/gliss/front.svg",
  23997. extra: 2347 / 2231,
  23998. bottom: 113 / 2462
  23999. }
  24000. },
  24001. },
  24002. [
  24003. {
  24004. name: "Normal",
  24005. height: math.unit(6.71, "feet"),
  24006. default: true
  24007. },
  24008. ]
  24009. ))
  24010. characterMakers.push(() => makeCharacter(
  24011. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24012. {
  24013. side: {
  24014. height: math.unit(1.44, "m"),
  24015. weight: math.unit(80, "kg"),
  24016. name: "Side",
  24017. image: {
  24018. source: "./media/characters/dune-anderson/side.svg",
  24019. bottom: 49 / 1426
  24020. }
  24021. },
  24022. },
  24023. [
  24024. {
  24025. name: "Wolf-sized",
  24026. height: math.unit(1.44, "meters")
  24027. },
  24028. {
  24029. name: "Normal",
  24030. height: math.unit(5.05, "meters"),
  24031. default: true
  24032. },
  24033. {
  24034. name: "Big",
  24035. height: math.unit(14.4, "meters")
  24036. },
  24037. {
  24038. name: "Huge",
  24039. height: math.unit(144, "meters")
  24040. },
  24041. ]
  24042. ))
  24043. characterMakers.push(() => makeCharacter(
  24044. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24045. {
  24046. front: {
  24047. height: math.unit(7, "feet"),
  24048. weight: math.unit(425, "lb"),
  24049. name: "Front",
  24050. image: {
  24051. source: "./media/characters/hind/front.svg",
  24052. extra: 2091 / 1860,
  24053. bottom: 129 / 2220
  24054. }
  24055. },
  24056. back: {
  24057. height: math.unit(7, "feet"),
  24058. weight: math.unit(425, "lb"),
  24059. name: "Back",
  24060. image: {
  24061. source: "./media/characters/hind/back.svg",
  24062. extra: 2091 / 1860,
  24063. bottom: 24.6 / 2309
  24064. }
  24065. },
  24066. tail: {
  24067. height: math.unit(2.8, "feet"),
  24068. name: "Tail",
  24069. image: {
  24070. source: "./media/characters/hind/tail.svg"
  24071. }
  24072. },
  24073. head: {
  24074. height: math.unit(2.55, "feet"),
  24075. name: "Head",
  24076. image: {
  24077. source: "./media/characters/hind/head.svg"
  24078. }
  24079. },
  24080. },
  24081. [
  24082. {
  24083. name: "XS",
  24084. height: math.unit(0.7, "feet")
  24085. },
  24086. {
  24087. name: "Normal",
  24088. height: math.unit(7, "feet"),
  24089. default: true
  24090. },
  24091. {
  24092. name: "XL",
  24093. height: math.unit(70, "feet")
  24094. },
  24095. ]
  24096. ))
  24097. characterMakers.push(() => makeCharacter(
  24098. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24099. {
  24100. front: {
  24101. height: math.unit(6, "feet"),
  24102. weight: math.unit(150, "lb"),
  24103. name: "Front",
  24104. image: {
  24105. source: "./media/characters/dylan-skaven/front.svg",
  24106. extra: 2318 / 2063,
  24107. bottom: 93.4 / 2410
  24108. }
  24109. },
  24110. },
  24111. [
  24112. {
  24113. name: "Nano",
  24114. height: math.unit(1, "mm")
  24115. },
  24116. {
  24117. name: "Micro",
  24118. height: math.unit(1, "cm")
  24119. },
  24120. {
  24121. name: "Normal",
  24122. height: math.unit(2.1, "meters"),
  24123. default: true
  24124. },
  24125. ]
  24126. ))
  24127. characterMakers.push(() => makeCharacter(
  24128. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24129. {
  24130. front: {
  24131. height: math.unit(7 + 5 / 12, "feet"),
  24132. weight: math.unit(357, "lb"),
  24133. name: "Front",
  24134. image: {
  24135. source: "./media/characters/solex-draconov/front.svg",
  24136. extra: 1993 / 1865,
  24137. bottom: 117 / 2111
  24138. }
  24139. },
  24140. },
  24141. [
  24142. {
  24143. name: "Natural Height",
  24144. height: math.unit(7 + 5 / 12, "feet"),
  24145. default: true
  24146. },
  24147. {
  24148. name: "Macro",
  24149. height: math.unit(350, "feet")
  24150. },
  24151. {
  24152. name: "Macro+",
  24153. height: math.unit(1000, "feet")
  24154. },
  24155. {
  24156. name: "Megamacro",
  24157. height: math.unit(20, "km")
  24158. },
  24159. {
  24160. name: "Megamacro+",
  24161. height: math.unit(1000, "km")
  24162. },
  24163. {
  24164. name: "Gigamacro",
  24165. height: math.unit(2.5, "Gm")
  24166. },
  24167. {
  24168. name: "Teramacro",
  24169. height: math.unit(15, "Tm")
  24170. },
  24171. {
  24172. name: "Galactic",
  24173. height: math.unit(30, "Zm")
  24174. },
  24175. {
  24176. name: "Universal",
  24177. height: math.unit(21000, "Ym")
  24178. },
  24179. {
  24180. name: "Omniversal",
  24181. height: math.unit(9.861e50, "Ym")
  24182. },
  24183. {
  24184. name: "Existential",
  24185. height: math.unit(1e300, "meters")
  24186. },
  24187. ]
  24188. ))
  24189. characterMakers.push(() => makeCharacter(
  24190. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24191. {
  24192. side: {
  24193. height: math.unit(25, "feet"),
  24194. weight: math.unit(90000, "lb"),
  24195. name: "Side",
  24196. image: {
  24197. source: "./media/characters/mandarax/side.svg",
  24198. extra: 614 / 332,
  24199. bottom: 55 / 630
  24200. }
  24201. },
  24202. head: {
  24203. height: math.unit(11.4, "feet"),
  24204. name: "Head",
  24205. image: {
  24206. source: "./media/characters/mandarax/head.svg"
  24207. }
  24208. },
  24209. belly: {
  24210. height: math.unit(33, "feet"),
  24211. name: "Belly",
  24212. capacity: math.unit(500, "people"),
  24213. image: {
  24214. source: "./media/characters/mandarax/belly.svg"
  24215. }
  24216. },
  24217. dick: {
  24218. height: math.unit(8.46, "feet"),
  24219. name: "Dick",
  24220. image: {
  24221. source: "./media/characters/mandarax/dick.svg"
  24222. }
  24223. },
  24224. top: {
  24225. height: math.unit(28, "meters"),
  24226. name: "Top",
  24227. image: {
  24228. source: "./media/characters/mandarax/top.svg"
  24229. }
  24230. },
  24231. },
  24232. [
  24233. {
  24234. name: "Normal",
  24235. height: math.unit(25, "feet"),
  24236. default: true
  24237. },
  24238. ]
  24239. ))
  24240. characterMakers.push(() => makeCharacter(
  24241. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24242. {
  24243. front: {
  24244. height: math.unit(5, "feet"),
  24245. weight: math.unit(90, "lb"),
  24246. name: "Front",
  24247. image: {
  24248. source: "./media/characters/pixil/front.svg",
  24249. extra: 2000 / 1618,
  24250. bottom: 12.3 / 2011
  24251. }
  24252. },
  24253. },
  24254. [
  24255. {
  24256. name: "Normal",
  24257. height: math.unit(5, "feet"),
  24258. default: true
  24259. },
  24260. {
  24261. name: "Megamacro",
  24262. height: math.unit(10, "miles"),
  24263. },
  24264. ]
  24265. ))
  24266. characterMakers.push(() => makeCharacter(
  24267. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24268. {
  24269. front: {
  24270. height: math.unit(7 + 2 / 12, "feet"),
  24271. weight: math.unit(200, "lb"),
  24272. name: "Front",
  24273. image: {
  24274. source: "./media/characters/angel/front.svg",
  24275. extra: 1830 / 1737,
  24276. bottom: 22.6 / 1854,
  24277. }
  24278. },
  24279. },
  24280. [
  24281. {
  24282. name: "Normal",
  24283. height: math.unit(7 + 2 / 12, "feet"),
  24284. default: true
  24285. },
  24286. {
  24287. name: "Macro",
  24288. height: math.unit(1000, "feet")
  24289. },
  24290. {
  24291. name: "Megamacro",
  24292. height: math.unit(2, "miles")
  24293. },
  24294. {
  24295. name: "Gigamacro",
  24296. height: math.unit(20, "earths")
  24297. },
  24298. ]
  24299. ))
  24300. characterMakers.push(() => makeCharacter(
  24301. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24302. {
  24303. front: {
  24304. height: math.unit(5, "feet"),
  24305. weight: math.unit(180, "lb"),
  24306. name: "Front",
  24307. image: {
  24308. source: "./media/characters/mekana/front.svg",
  24309. extra: 1671 / 1605,
  24310. bottom: 3.5 / 1691
  24311. }
  24312. },
  24313. side: {
  24314. height: math.unit(5, "feet"),
  24315. weight: math.unit(180, "lb"),
  24316. name: "Side",
  24317. image: {
  24318. source: "./media/characters/mekana/side.svg",
  24319. extra: 1671 / 1605,
  24320. bottom: 3.5 / 1691
  24321. }
  24322. },
  24323. back: {
  24324. height: math.unit(5, "feet"),
  24325. weight: math.unit(180, "lb"),
  24326. name: "Back",
  24327. image: {
  24328. source: "./media/characters/mekana/back.svg",
  24329. extra: 1671 / 1605,
  24330. bottom: 3.5 / 1691
  24331. }
  24332. },
  24333. },
  24334. [
  24335. {
  24336. name: "Normal",
  24337. height: math.unit(5, "feet"),
  24338. default: true
  24339. },
  24340. ]
  24341. ))
  24342. characterMakers.push(() => makeCharacter(
  24343. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24344. {
  24345. front: {
  24346. height: math.unit(4 + 6 / 12, "feet"),
  24347. weight: math.unit(80, "lb"),
  24348. name: "Front",
  24349. image: {
  24350. source: "./media/characters/pixie/front.svg",
  24351. extra: 1924 / 1825,
  24352. bottom: 22.4 / 1946
  24353. }
  24354. },
  24355. },
  24356. [
  24357. {
  24358. name: "Normal",
  24359. height: math.unit(4 + 6 / 12, "feet"),
  24360. default: true
  24361. },
  24362. {
  24363. name: "Macro",
  24364. height: math.unit(40, "feet")
  24365. },
  24366. ]
  24367. ))
  24368. characterMakers.push(() => makeCharacter(
  24369. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24370. {
  24371. front: {
  24372. height: math.unit(2.1, "meters"),
  24373. weight: math.unit(200, "lb"),
  24374. name: "Front",
  24375. image: {
  24376. source: "./media/characters/the-lascivious/front.svg",
  24377. extra: 1 / 0.893,
  24378. bottom: 3.5 / 573.7
  24379. }
  24380. },
  24381. },
  24382. [
  24383. {
  24384. name: "Human Scale",
  24385. height: math.unit(2.1, "meters")
  24386. },
  24387. {
  24388. name: "Wolxi Scale",
  24389. height: math.unit(46.2, "m"),
  24390. default: true
  24391. },
  24392. {
  24393. name: "Boinker of Buildings",
  24394. height: math.unit(10, "km")
  24395. },
  24396. {
  24397. name: "Shagger of Skyscrapers",
  24398. height: math.unit(40, "km")
  24399. },
  24400. {
  24401. name: "Banger of Boroughs",
  24402. height: math.unit(4000, "km")
  24403. },
  24404. {
  24405. name: "Screwer of States",
  24406. height: math.unit(100000, "km")
  24407. },
  24408. {
  24409. name: "Pounder of Planets",
  24410. height: math.unit(2000000, "km")
  24411. },
  24412. ]
  24413. ))
  24414. characterMakers.push(() => makeCharacter(
  24415. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24416. {
  24417. front: {
  24418. height: math.unit(6, "feet"),
  24419. weight: math.unit(150, "lb"),
  24420. name: "Front",
  24421. image: {
  24422. source: "./media/characters/aj/front.svg",
  24423. extra: 2039 / 1562,
  24424. bottom: 40 / 2079
  24425. }
  24426. },
  24427. },
  24428. [
  24429. {
  24430. name: "Normal",
  24431. height: math.unit(11 + 6 / 12, "feet"),
  24432. default: true
  24433. },
  24434. {
  24435. name: "Megamacro",
  24436. height: math.unit(60, "megameters")
  24437. },
  24438. ]
  24439. ))
  24440. characterMakers.push(() => makeCharacter(
  24441. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24442. {
  24443. side: {
  24444. height: math.unit(31 + 8 / 12, "feet"),
  24445. weight: math.unit(75000, "kg"),
  24446. name: "Side",
  24447. image: {
  24448. source: "./media/characters/koros/side.svg",
  24449. extra: 1442 / 1297,
  24450. bottom: 122.7 / 1562
  24451. }
  24452. },
  24453. dicksKingsCrown: {
  24454. height: math.unit(6, "feet"),
  24455. name: "Dicks (King's Crown)",
  24456. image: {
  24457. source: "./media/characters/koros/dicks-kings-crown.svg"
  24458. }
  24459. },
  24460. dicksTailSet: {
  24461. height: math.unit(3, "feet"),
  24462. name: "Dicks (Tail Set)",
  24463. image: {
  24464. source: "./media/characters/koros/dicks-tail-set.svg"
  24465. }
  24466. },
  24467. dickCumming: {
  24468. height: math.unit(7.98, "feet"),
  24469. name: "Dick (Cumming)",
  24470. image: {
  24471. source: "./media/characters/koros/dick-cumming.svg"
  24472. }
  24473. },
  24474. dicksBack: {
  24475. height: math.unit(5.9, "feet"),
  24476. name: "Dicks (Back)",
  24477. image: {
  24478. source: "./media/characters/koros/dicks-back.svg"
  24479. }
  24480. },
  24481. dicksFront: {
  24482. height: math.unit(3.72, "feet"),
  24483. name: "Dicks (Front)",
  24484. image: {
  24485. source: "./media/characters/koros/dicks-front.svg"
  24486. }
  24487. },
  24488. dicksPeeking: {
  24489. height: math.unit(3.0, "feet"),
  24490. name: "Dicks (Peeking)",
  24491. image: {
  24492. source: "./media/characters/koros/dicks-peeking.svg"
  24493. }
  24494. },
  24495. eye: {
  24496. height: math.unit(1.7, "feet"),
  24497. name: "Eye",
  24498. image: {
  24499. source: "./media/characters/koros/eye.svg"
  24500. }
  24501. },
  24502. headFront: {
  24503. height: math.unit(11.69, "feet"),
  24504. name: "Head (Front)",
  24505. image: {
  24506. source: "./media/characters/koros/head-front.svg"
  24507. }
  24508. },
  24509. headSide: {
  24510. height: math.unit(14, "feet"),
  24511. name: "Head (Side)",
  24512. image: {
  24513. source: "./media/characters/koros/head-side.svg"
  24514. }
  24515. },
  24516. leg: {
  24517. height: math.unit(17, "feet"),
  24518. name: "Leg",
  24519. image: {
  24520. source: "./media/characters/koros/leg.svg"
  24521. }
  24522. },
  24523. mawSide: {
  24524. height: math.unit(12.8, "feet"),
  24525. name: "Maw (Side)",
  24526. image: {
  24527. source: "./media/characters/koros/maw-side.svg"
  24528. }
  24529. },
  24530. mawSpitting: {
  24531. height: math.unit(17, "feet"),
  24532. name: "Maw (Spitting)",
  24533. image: {
  24534. source: "./media/characters/koros/maw-spitting.svg"
  24535. }
  24536. },
  24537. slit: {
  24538. height: math.unit(2.8, "feet"),
  24539. name: "Slit",
  24540. image: {
  24541. source: "./media/characters/koros/slit.svg"
  24542. }
  24543. },
  24544. stomach: {
  24545. height: math.unit(6.8, "feet"),
  24546. capacity: math.unit(20, "people"),
  24547. name: "Stomach",
  24548. image: {
  24549. source: "./media/characters/koros/stomach.svg"
  24550. }
  24551. },
  24552. wingspanBottom: {
  24553. height: math.unit(114, "feet"),
  24554. name: "Wingspan (Bottom)",
  24555. image: {
  24556. source: "./media/characters/koros/wingspan-bottom.svg"
  24557. }
  24558. },
  24559. wingspanTop: {
  24560. height: math.unit(104, "feet"),
  24561. name: "Wingspan (Top)",
  24562. image: {
  24563. source: "./media/characters/koros/wingspan-top.svg"
  24564. }
  24565. },
  24566. },
  24567. [
  24568. {
  24569. name: "Normal",
  24570. height: math.unit(31 + 8 / 12, "feet"),
  24571. default: true
  24572. },
  24573. ]
  24574. ))
  24575. characterMakers.push(() => makeCharacter(
  24576. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24577. {
  24578. front: {
  24579. height: math.unit(18 + 5 / 12, "feet"),
  24580. weight: math.unit(3750, "kg"),
  24581. name: "Front",
  24582. image: {
  24583. source: "./media/characters/vexx/front.svg",
  24584. extra: 426 / 396,
  24585. bottom: 31.5 / 458
  24586. }
  24587. },
  24588. maw: {
  24589. height: math.unit(6, "feet"),
  24590. name: "Maw",
  24591. image: {
  24592. source: "./media/characters/vexx/maw.svg"
  24593. }
  24594. },
  24595. },
  24596. [
  24597. {
  24598. name: "Normal",
  24599. height: math.unit(18 + 5 / 12, "feet"),
  24600. default: true
  24601. },
  24602. ]
  24603. ))
  24604. characterMakers.push(() => makeCharacter(
  24605. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24606. {
  24607. front: {
  24608. height: math.unit(17 + 6 / 12, "feet"),
  24609. weight: math.unit(150, "lb"),
  24610. name: "Front",
  24611. image: {
  24612. source: "./media/characters/baadra/front.svg",
  24613. extra: 3137 / 2890,
  24614. bottom: 168.4 / 3305
  24615. }
  24616. },
  24617. back: {
  24618. height: math.unit(17 + 6 / 12, "feet"),
  24619. weight: math.unit(150, "lb"),
  24620. name: "Back",
  24621. image: {
  24622. source: "./media/characters/baadra/back.svg",
  24623. extra: 3142 / 2890,
  24624. bottom: 220 / 3371
  24625. }
  24626. },
  24627. head: {
  24628. height: math.unit(5.45, "feet"),
  24629. name: "Head",
  24630. image: {
  24631. source: "./media/characters/baadra/head.svg"
  24632. }
  24633. },
  24634. headAngry: {
  24635. height: math.unit(4.95, "feet"),
  24636. name: "Head (Angry)",
  24637. image: {
  24638. source: "./media/characters/baadra/head-angry.svg"
  24639. }
  24640. },
  24641. headOpen: {
  24642. height: math.unit(6, "feet"),
  24643. name: "Head (Open)",
  24644. image: {
  24645. source: "./media/characters/baadra/head-open.svg"
  24646. }
  24647. },
  24648. },
  24649. [
  24650. {
  24651. name: "Normal",
  24652. height: math.unit(17 + 6 / 12, "feet"),
  24653. default: true
  24654. },
  24655. ]
  24656. ))
  24657. characterMakers.push(() => makeCharacter(
  24658. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24659. {
  24660. front: {
  24661. height: math.unit(7 + 3 / 12, "feet"),
  24662. weight: math.unit(180, "lb"),
  24663. name: "Front",
  24664. image: {
  24665. source: "./media/characters/juri/front.svg",
  24666. extra: 1401 / 1237,
  24667. bottom: 18.5 / 1418
  24668. }
  24669. },
  24670. side: {
  24671. height: math.unit(7 + 3 / 12, "feet"),
  24672. weight: math.unit(180, "lb"),
  24673. name: "Side",
  24674. image: {
  24675. source: "./media/characters/juri/side.svg",
  24676. extra: 1424 / 1242,
  24677. bottom: 18.5 / 1447
  24678. }
  24679. },
  24680. sitting: {
  24681. height: math.unit(6, "feet"),
  24682. weight: math.unit(180, "lb"),
  24683. name: "Sitting",
  24684. image: {
  24685. source: "./media/characters/juri/sitting.svg",
  24686. extra: 1270 / 1143,
  24687. bottom: 100 / 1343
  24688. }
  24689. },
  24690. back: {
  24691. height: math.unit(7 + 3 / 12, "feet"),
  24692. weight: math.unit(180, "lb"),
  24693. name: "Back",
  24694. image: {
  24695. source: "./media/characters/juri/back.svg",
  24696. extra: 1377 / 1240,
  24697. bottom: 23.7 / 1405
  24698. }
  24699. },
  24700. maw: {
  24701. height: math.unit(2.8, "feet"),
  24702. name: "Maw",
  24703. image: {
  24704. source: "./media/characters/juri/maw.svg"
  24705. }
  24706. },
  24707. stomach: {
  24708. height: math.unit(0.89, "feet"),
  24709. capacity: math.unit(4, "liters"),
  24710. name: "Stomach",
  24711. image: {
  24712. source: "./media/characters/juri/stomach.svg"
  24713. }
  24714. },
  24715. },
  24716. [
  24717. {
  24718. name: "Normal",
  24719. height: math.unit(7 + 3 / 12, "feet"),
  24720. default: true
  24721. },
  24722. ]
  24723. ))
  24724. characterMakers.push(() => makeCharacter(
  24725. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24726. {
  24727. fox: {
  24728. height: math.unit(5 + 6 / 12, "feet"),
  24729. weight: math.unit(140, "lb"),
  24730. name: "Fox",
  24731. image: {
  24732. source: "./media/characters/maxene-sita/fox.svg",
  24733. extra: 146 / 138,
  24734. bottom: 2.1 / 148.19
  24735. }
  24736. },
  24737. kitsune: {
  24738. height: math.unit(10, "feet"),
  24739. weight: math.unit(800, "lb"),
  24740. name: "Kitsune",
  24741. image: {
  24742. source: "./media/characters/maxene-sita/kitsune.svg",
  24743. extra: 185 / 176,
  24744. bottom: 4.7 / 189.9
  24745. }
  24746. },
  24747. },
  24748. [
  24749. {
  24750. name: "Normal",
  24751. height: math.unit(5 + 6 / 12, "feet"),
  24752. default: true
  24753. },
  24754. ]
  24755. ))
  24756. characterMakers.push(() => makeCharacter(
  24757. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24758. {
  24759. front: {
  24760. height: math.unit(3 + 4 / 12, "feet"),
  24761. weight: math.unit(70, "lb"),
  24762. name: "Front",
  24763. image: {
  24764. source: "./media/characters/maia/front.svg",
  24765. extra: 227 / 219.5,
  24766. bottom: 40 / 267
  24767. }
  24768. },
  24769. back: {
  24770. height: math.unit(3 + 4 / 12, "feet"),
  24771. weight: math.unit(70, "lb"),
  24772. name: "Back",
  24773. image: {
  24774. source: "./media/characters/maia/back.svg",
  24775. extra: 237 / 225
  24776. }
  24777. },
  24778. },
  24779. [
  24780. {
  24781. name: "Normal",
  24782. height: math.unit(3 + 4 / 12, "feet"),
  24783. default: true
  24784. },
  24785. ]
  24786. ))
  24787. characterMakers.push(() => makeCharacter(
  24788. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24789. {
  24790. front: {
  24791. height: math.unit(5 + 10 / 12, "feet"),
  24792. weight: math.unit(197, "lb"),
  24793. name: "Front",
  24794. image: {
  24795. source: "./media/characters/jabaro/front.svg",
  24796. extra: 225 / 216,
  24797. bottom: 5.06 / 230
  24798. }
  24799. },
  24800. back: {
  24801. height: math.unit(5 + 10 / 12, "feet"),
  24802. weight: math.unit(197, "lb"),
  24803. name: "Back",
  24804. image: {
  24805. source: "./media/characters/jabaro/back.svg",
  24806. extra: 225 / 219,
  24807. bottom: 1.9 / 227
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Normal",
  24814. height: math.unit(5 + 10 / 12, "feet"),
  24815. default: true
  24816. },
  24817. ]
  24818. ))
  24819. characterMakers.push(() => makeCharacter(
  24820. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24821. {
  24822. front: {
  24823. height: math.unit(5 + 8 / 12, "feet"),
  24824. weight: math.unit(139, "lb"),
  24825. name: "Front",
  24826. image: {
  24827. source: "./media/characters/risa/front.svg",
  24828. extra: 270 / 260,
  24829. bottom: 11.2 / 282
  24830. }
  24831. },
  24832. back: {
  24833. height: math.unit(5 + 8 / 12, "feet"),
  24834. weight: math.unit(139, "lb"),
  24835. name: "Back",
  24836. image: {
  24837. source: "./media/characters/risa/back.svg",
  24838. extra: 264 / 255,
  24839. bottom: 4 / 268
  24840. }
  24841. },
  24842. },
  24843. [
  24844. {
  24845. name: "Normal",
  24846. height: math.unit(5 + 8 / 12, "feet"),
  24847. default: true
  24848. },
  24849. ]
  24850. ))
  24851. characterMakers.push(() => makeCharacter(
  24852. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24853. {
  24854. front: {
  24855. height: math.unit(2 + 11 / 12, "feet"),
  24856. weight: math.unit(30, "lb"),
  24857. name: "Front",
  24858. image: {
  24859. source: "./media/characters/weatley/front.svg",
  24860. bottom: 10.7 / 414,
  24861. extra: 403.5 / 362
  24862. }
  24863. },
  24864. back: {
  24865. height: math.unit(2 + 11 / 12, "feet"),
  24866. weight: math.unit(30, "lb"),
  24867. name: "Back",
  24868. image: {
  24869. source: "./media/characters/weatley/back.svg",
  24870. bottom: 10.7 / 414,
  24871. extra: 403.5 / 362
  24872. }
  24873. },
  24874. },
  24875. [
  24876. {
  24877. name: "Normal",
  24878. height: math.unit(2 + 11 / 12, "feet"),
  24879. default: true
  24880. },
  24881. ]
  24882. ))
  24883. characterMakers.push(() => makeCharacter(
  24884. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24885. {
  24886. front: {
  24887. height: math.unit(5 + 2 / 12, "feet"),
  24888. weight: math.unit(50, "kg"),
  24889. name: "Front",
  24890. image: {
  24891. source: "./media/characters/mercury-crescent/front.svg",
  24892. extra: 1088 / 1033,
  24893. bottom: 18.9 / 1109
  24894. }
  24895. },
  24896. },
  24897. [
  24898. {
  24899. name: "Normal",
  24900. height: math.unit(5 + 2 / 12, "feet"),
  24901. default: true
  24902. },
  24903. ]
  24904. ))
  24905. characterMakers.push(() => makeCharacter(
  24906. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24907. {
  24908. front: {
  24909. height: math.unit(2, "feet"),
  24910. weight: math.unit(15, "kg"),
  24911. name: "Front",
  24912. image: {
  24913. source: "./media/characters/diamond-jones/front.svg",
  24914. bottom: 16 / 568
  24915. }
  24916. },
  24917. },
  24918. [
  24919. {
  24920. name: "Normal",
  24921. height: math.unit(2, "feet"),
  24922. default: true
  24923. },
  24924. ]
  24925. ))
  24926. characterMakers.push(() => makeCharacter(
  24927. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24928. {
  24929. front: {
  24930. height: math.unit(3, "feet"),
  24931. weight: math.unit(30, "kg"),
  24932. name: "Front",
  24933. image: {
  24934. source: "./media/characters/sweet-bit/front.svg",
  24935. extra: 675 / 567,
  24936. bottom: 27.7 / 703
  24937. }
  24938. },
  24939. },
  24940. [
  24941. {
  24942. name: "Normal",
  24943. height: math.unit(3, "feet"),
  24944. default: true
  24945. },
  24946. ]
  24947. ))
  24948. characterMakers.push(() => makeCharacter(
  24949. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24950. {
  24951. side: {
  24952. height: math.unit(9.178, "feet"),
  24953. weight: math.unit(500, "lb"),
  24954. name: "Side",
  24955. image: {
  24956. source: "./media/characters/umbrazen/side.svg",
  24957. extra: 1730 / 1473,
  24958. bottom: 34.6 / 1765
  24959. }
  24960. },
  24961. },
  24962. [
  24963. {
  24964. name: "Normal",
  24965. height: math.unit(9.178, "feet"),
  24966. default: true
  24967. },
  24968. ]
  24969. ))
  24970. characterMakers.push(() => makeCharacter(
  24971. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24972. {
  24973. front: {
  24974. height: math.unit(10, "feet"),
  24975. weight: math.unit(750, "lb"),
  24976. name: "Front",
  24977. image: {
  24978. source: "./media/characters/arlist/front.svg",
  24979. extra: 961 / 778,
  24980. bottom: 6.2 / 986
  24981. }
  24982. },
  24983. },
  24984. [
  24985. {
  24986. name: "Normal",
  24987. height: math.unit(10, "feet"),
  24988. default: true
  24989. },
  24990. ]
  24991. ))
  24992. characterMakers.push(() => makeCharacter(
  24993. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24994. {
  24995. front: {
  24996. height: math.unit(5 + 1 / 12, "feet"),
  24997. weight: math.unit(110, "lb"),
  24998. name: "Front",
  24999. image: {
  25000. source: "./media/characters/aradel/front.svg",
  25001. extra: 324 / 303,
  25002. bottom: 3.6 / 329.4
  25003. }
  25004. },
  25005. },
  25006. [
  25007. {
  25008. name: "Normal",
  25009. height: math.unit(5 + 1 / 12, "feet"),
  25010. default: true
  25011. },
  25012. ]
  25013. ))
  25014. characterMakers.push(() => makeCharacter(
  25015. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25016. {
  25017. front: {
  25018. height: math.unit(3 + 8 / 12, "feet"),
  25019. weight: math.unit(50, "lb"),
  25020. name: "Front",
  25021. image: {
  25022. source: "./media/characters/serryn/front.svg",
  25023. extra: 1792 / 1656,
  25024. bottom: 43.5 / 1840
  25025. }
  25026. },
  25027. },
  25028. [
  25029. {
  25030. name: "Normal",
  25031. height: math.unit(3 + 8 / 12, "feet"),
  25032. default: true
  25033. },
  25034. ]
  25035. ))
  25036. characterMakers.push(() => makeCharacter(
  25037. { name: "Xavier Thyme" },
  25038. {
  25039. front: {
  25040. height: math.unit(7 + 10 / 12, "feet"),
  25041. weight: math.unit(255, "lb"),
  25042. name: "Front",
  25043. image: {
  25044. source: "./media/characters/xavier-thyme/front.svg",
  25045. extra: 3733 / 3642,
  25046. bottom: 131 / 3869
  25047. }
  25048. },
  25049. frontRaven: {
  25050. height: math.unit(7 + 10 / 12, "feet"),
  25051. weight: math.unit(255, "lb"),
  25052. name: "Front (Raven)",
  25053. image: {
  25054. source: "./media/characters/xavier-thyme/front-raven.svg",
  25055. extra: 4385 / 3642,
  25056. bottom: 131 / 4517
  25057. }
  25058. },
  25059. },
  25060. [
  25061. {
  25062. name: "Normal",
  25063. height: math.unit(7 + 10 / 12, "feet"),
  25064. default: true
  25065. },
  25066. ]
  25067. ))
  25068. characterMakers.push(() => makeCharacter(
  25069. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25070. {
  25071. front: {
  25072. height: math.unit(1.6, "m"),
  25073. weight: math.unit(50, "kg"),
  25074. name: "Front",
  25075. image: {
  25076. source: "./media/characters/kiki/front.svg",
  25077. extra: 4682 / 3610,
  25078. bottom: 115 / 4777
  25079. }
  25080. },
  25081. },
  25082. [
  25083. {
  25084. name: "Normal",
  25085. height: math.unit(1.6, "meters"),
  25086. default: true
  25087. },
  25088. ]
  25089. ))
  25090. characterMakers.push(() => makeCharacter(
  25091. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25092. {
  25093. front: {
  25094. height: math.unit(50, "m"),
  25095. weight: math.unit(500, "tonnes"),
  25096. name: "Front",
  25097. image: {
  25098. source: "./media/characters/ryoko/front.svg",
  25099. extra: 4632 / 3926,
  25100. bottom: 193 / 4823
  25101. }
  25102. },
  25103. },
  25104. [
  25105. {
  25106. name: "Normal",
  25107. height: math.unit(50, "meters"),
  25108. default: true
  25109. },
  25110. ]
  25111. ))
  25112. characterMakers.push(() => makeCharacter(
  25113. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25114. {
  25115. front: {
  25116. height: math.unit(30, "m"),
  25117. weight: math.unit(22, "tonnes"),
  25118. name: "Front",
  25119. image: {
  25120. source: "./media/characters/elio/front.svg",
  25121. extra: 4582 / 3720,
  25122. bottom: 236 / 4828
  25123. }
  25124. },
  25125. },
  25126. [
  25127. {
  25128. name: "Normal",
  25129. height: math.unit(30, "meters"),
  25130. default: true
  25131. },
  25132. ]
  25133. ))
  25134. characterMakers.push(() => makeCharacter(
  25135. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25136. {
  25137. front: {
  25138. height: math.unit(6 + 3 / 12, "feet"),
  25139. weight: math.unit(120, "lb"),
  25140. name: "Front",
  25141. image: {
  25142. source: "./media/characters/azura/front.svg",
  25143. extra: 1149 / 1135,
  25144. bottom: 45 / 1194
  25145. }
  25146. },
  25147. frontClothed: {
  25148. height: math.unit(6 + 3 / 12, "feet"),
  25149. weight: math.unit(120, "lb"),
  25150. name: "Front (Clothed)",
  25151. image: {
  25152. source: "./media/characters/azura/front-clothed.svg",
  25153. extra: 1149 / 1135,
  25154. bottom: 45 / 1194
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Normal",
  25161. height: math.unit(6 + 3 / 12, "feet"),
  25162. default: true
  25163. },
  25164. {
  25165. name: "Macro",
  25166. height: math.unit(20 + 6 / 12, "feet")
  25167. },
  25168. {
  25169. name: "Megamacro",
  25170. height: math.unit(12, "miles")
  25171. },
  25172. {
  25173. name: "Gigamacro",
  25174. height: math.unit(10000, "miles")
  25175. },
  25176. {
  25177. name: "Teramacro",
  25178. height: math.unit(900000, "miles")
  25179. },
  25180. ]
  25181. ))
  25182. characterMakers.push(() => makeCharacter(
  25183. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25184. {
  25185. front: {
  25186. height: math.unit(12, "feet"),
  25187. weight: math.unit(1, "ton"),
  25188. capacity: math.unit(660000, "gallons"),
  25189. name: "Front",
  25190. image: {
  25191. source: "./media/characters/zeus/front.svg",
  25192. extra: 5005 / 4717,
  25193. bottom: 363 / 5388
  25194. }
  25195. },
  25196. },
  25197. [
  25198. {
  25199. name: "Normal",
  25200. height: math.unit(12, "feet")
  25201. },
  25202. {
  25203. name: "Preferred Size",
  25204. height: math.unit(0.5, "miles"),
  25205. default: true
  25206. },
  25207. {
  25208. name: "Giga Horse",
  25209. height: math.unit(300, "miles")
  25210. },
  25211. {
  25212. name: "Riding Planets",
  25213. height: math.unit(30, "megameters")
  25214. },
  25215. {
  25216. name: "Cosmic Giant",
  25217. height: math.unit(3, "zettameters")
  25218. },
  25219. {
  25220. name: "Breeding God",
  25221. height: math.unit(9.92e22, "yottameters")
  25222. },
  25223. ]
  25224. ))
  25225. characterMakers.push(() => makeCharacter(
  25226. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25227. {
  25228. side: {
  25229. height: math.unit(9, "feet"),
  25230. weight: math.unit(1500, "kg"),
  25231. name: "Side",
  25232. image: {
  25233. source: "./media/characters/fang/side.svg",
  25234. extra: 924 / 866,
  25235. bottom: 47.5 / 972.3
  25236. }
  25237. },
  25238. },
  25239. [
  25240. {
  25241. name: "Normal",
  25242. height: math.unit(9, "feet"),
  25243. default: true
  25244. },
  25245. {
  25246. name: "Macro",
  25247. height: math.unit(75 + 6 / 12, "feet")
  25248. },
  25249. {
  25250. name: "Teramacro",
  25251. height: math.unit(50000, "miles")
  25252. },
  25253. ]
  25254. ))
  25255. characterMakers.push(() => makeCharacter(
  25256. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25257. {
  25258. front: {
  25259. height: math.unit(10, "feet"),
  25260. weight: math.unit(2, "tons"),
  25261. name: "Front",
  25262. image: {
  25263. source: "./media/characters/rekhit/front.svg",
  25264. extra: 2796 / 2590,
  25265. bottom: 225 / 3022
  25266. }
  25267. },
  25268. },
  25269. [
  25270. {
  25271. name: "Normal",
  25272. height: math.unit(10, "feet"),
  25273. default: true
  25274. },
  25275. {
  25276. name: "Macro",
  25277. height: math.unit(500, "feet")
  25278. },
  25279. ]
  25280. ))
  25281. characterMakers.push(() => makeCharacter(
  25282. { name: "Dahlia Verrick" },
  25283. {
  25284. front: {
  25285. height: math.unit(7 + 6.451 / 12, "feet"),
  25286. weight: math.unit(310, "lb"),
  25287. name: "Front",
  25288. image: {
  25289. source: "./media/characters/dahlia-verrick/front.svg",
  25290. extra: 1488 / 1365,
  25291. bottom: 6.2 / 1495
  25292. }
  25293. },
  25294. back: {
  25295. height: math.unit(7 + 6.451 / 12, "feet"),
  25296. weight: math.unit(310, "lb"),
  25297. name: "Back",
  25298. image: {
  25299. source: "./media/characters/dahlia-verrick/back.svg",
  25300. extra: 1472 / 1351,
  25301. bottom: 5.28 / 1477
  25302. }
  25303. },
  25304. frontBusiness: {
  25305. height: math.unit(7 + 6.451 / 12, "feet"),
  25306. weight: math.unit(200, "lb"),
  25307. name: "Front (Business)",
  25308. image: {
  25309. source: "./media/characters/dahlia-verrick/front-business.svg",
  25310. extra: 1478 / 1381,
  25311. bottom: 5.5 / 1484
  25312. }
  25313. },
  25314. frontCasual: {
  25315. height: math.unit(7 + 6.451 / 12, "feet"),
  25316. weight: math.unit(200, "lb"),
  25317. name: "Front (Casual)",
  25318. image: {
  25319. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25320. extra: 1478 / 1381,
  25321. bottom: 5.5 / 1484
  25322. }
  25323. },
  25324. },
  25325. [
  25326. {
  25327. name: "Travel-Sized",
  25328. height: math.unit(7.45, "inches")
  25329. },
  25330. {
  25331. name: "Normal",
  25332. height: math.unit(7 + 6.451 / 12, "feet"),
  25333. default: true
  25334. },
  25335. {
  25336. name: "Hitting the Town",
  25337. height: math.unit(37 + 8 / 12, "feet")
  25338. },
  25339. {
  25340. name: "Stomp in the Suburbs",
  25341. height: math.unit(964 + 9.728 / 12, "feet")
  25342. },
  25343. {
  25344. name: "Sit on the City",
  25345. height: math.unit(61747 + 10.592 / 12, "feet")
  25346. },
  25347. {
  25348. name: "Glomp the Globe",
  25349. height: math.unit(252919327 + 4.832 / 12, "feet")
  25350. },
  25351. ]
  25352. ))
  25353. characterMakers.push(() => makeCharacter(
  25354. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25355. {
  25356. front: {
  25357. height: math.unit(6 + 4 / 12, "feet"),
  25358. weight: math.unit(320, "lb"),
  25359. name: "Front",
  25360. image: {
  25361. source: "./media/characters/balina-mahigan/front.svg",
  25362. extra: 447 / 428,
  25363. bottom: 18 / 466
  25364. }
  25365. },
  25366. back: {
  25367. height: math.unit(6 + 4 / 12, "feet"),
  25368. weight: math.unit(320, "lb"),
  25369. name: "Back",
  25370. image: {
  25371. source: "./media/characters/balina-mahigan/back.svg",
  25372. extra: 445 / 428,
  25373. bottom: 4.07 / 448
  25374. }
  25375. },
  25376. arm: {
  25377. height: math.unit(1.88, "feet"),
  25378. name: "Arm",
  25379. image: {
  25380. source: "./media/characters/balina-mahigan/arm.svg"
  25381. }
  25382. },
  25383. backPort: {
  25384. height: math.unit(0.685, "feet"),
  25385. name: "Back Port",
  25386. image: {
  25387. source: "./media/characters/balina-mahigan/back-port.svg"
  25388. }
  25389. },
  25390. hoofpaw: {
  25391. height: math.unit(1.41, "feet"),
  25392. name: "Hoofpaw",
  25393. image: {
  25394. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25395. }
  25396. },
  25397. leftHandBack: {
  25398. height: math.unit(0.938, "feet"),
  25399. name: "Left Hand (Back)",
  25400. image: {
  25401. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25402. }
  25403. },
  25404. leftHandFront: {
  25405. height: math.unit(0.938, "feet"),
  25406. name: "Left Hand (Front)",
  25407. image: {
  25408. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25409. }
  25410. },
  25411. rightHandBack: {
  25412. height: math.unit(0.95, "feet"),
  25413. name: "Right Hand (Back)",
  25414. image: {
  25415. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25416. }
  25417. },
  25418. rightHandFront: {
  25419. height: math.unit(0.95, "feet"),
  25420. name: "Right Hand (Front)",
  25421. image: {
  25422. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25423. }
  25424. },
  25425. },
  25426. [
  25427. {
  25428. name: "Normal",
  25429. height: math.unit(6 + 4 / 12, "feet"),
  25430. default: true
  25431. },
  25432. ]
  25433. ))
  25434. characterMakers.push(() => makeCharacter(
  25435. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25436. {
  25437. front: {
  25438. height: math.unit(6, "feet"),
  25439. weight: math.unit(320, "lb"),
  25440. name: "Front",
  25441. image: {
  25442. source: "./media/characters/balina-mejeri/front.svg",
  25443. extra: 517 / 488,
  25444. bottom: 44.2 / 561
  25445. }
  25446. },
  25447. },
  25448. [
  25449. {
  25450. name: "Normal",
  25451. height: math.unit(6 + 4 / 12, "feet")
  25452. },
  25453. {
  25454. name: "Business",
  25455. height: math.unit(155, "feet"),
  25456. default: true
  25457. },
  25458. ]
  25459. ))
  25460. characterMakers.push(() => makeCharacter(
  25461. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25462. {
  25463. kneeling: {
  25464. height: math.unit(6 + 4 / 12, "feet"),
  25465. weight: math.unit(300 * 20, "lb"),
  25466. name: "Kneeling",
  25467. image: {
  25468. source: "./media/characters/balbarian/kneeling.svg",
  25469. extra: 922 / 862,
  25470. bottom: 42.4 / 965
  25471. }
  25472. },
  25473. },
  25474. [
  25475. {
  25476. name: "Normal",
  25477. height: math.unit(6 + 4 / 12, "feet")
  25478. },
  25479. {
  25480. name: "Treasured",
  25481. height: math.unit(18 + 9 / 12, "feet"),
  25482. default: true
  25483. },
  25484. {
  25485. name: "Macro",
  25486. height: math.unit(900, "feet")
  25487. },
  25488. ]
  25489. ))
  25490. characterMakers.push(() => makeCharacter(
  25491. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25492. {
  25493. front: {
  25494. height: math.unit(6 + 4 / 12, "feet"),
  25495. weight: math.unit(325, "lb"),
  25496. name: "Front",
  25497. image: {
  25498. source: "./media/characters/balina-amarini/front.svg",
  25499. extra: 415 / 403,
  25500. bottom: 19 / 433.4
  25501. }
  25502. },
  25503. back: {
  25504. height: math.unit(6 + 4 / 12, "feet"),
  25505. weight: math.unit(325, "lb"),
  25506. name: "Back",
  25507. image: {
  25508. source: "./media/characters/balina-amarini/back.svg",
  25509. extra: 415 / 403,
  25510. bottom: 13.5 / 432
  25511. }
  25512. },
  25513. overdrive: {
  25514. height: math.unit(6 + 4 / 12, "feet"),
  25515. weight: math.unit(400, "lb"),
  25516. name: "Overdrive",
  25517. image: {
  25518. source: "./media/characters/balina-amarini/overdrive.svg",
  25519. extra: 269 / 259,
  25520. bottom: 12 / 282
  25521. }
  25522. },
  25523. },
  25524. [
  25525. {
  25526. name: "Boom",
  25527. height: math.unit(9 + 10 / 12, "feet"),
  25528. default: true
  25529. },
  25530. {
  25531. name: "Macro",
  25532. height: math.unit(280, "feet")
  25533. },
  25534. ]
  25535. ))
  25536. characterMakers.push(() => makeCharacter(
  25537. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25538. {
  25539. goddess: {
  25540. height: math.unit(600, "feet"),
  25541. weight: math.unit(2000000, "tons"),
  25542. name: "Goddess",
  25543. image: {
  25544. source: "./media/characters/lady-kubwa/goddess.svg",
  25545. extra: 1240.5 / 1223,
  25546. bottom: 22 / 1263
  25547. }
  25548. },
  25549. goddesser: {
  25550. height: math.unit(900, "feet"),
  25551. weight: math.unit(20000000, "lb"),
  25552. name: "Goddess-er",
  25553. image: {
  25554. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25555. extra: 899 / 888,
  25556. bottom: 12.6 / 912
  25557. }
  25558. },
  25559. },
  25560. [
  25561. {
  25562. name: "Macro",
  25563. height: math.unit(600, "feet"),
  25564. default: true
  25565. },
  25566. {
  25567. name: "Megamacro",
  25568. height: math.unit(250, "miles")
  25569. },
  25570. ]
  25571. ))
  25572. characterMakers.push(() => makeCharacter(
  25573. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25574. {
  25575. front: {
  25576. height: math.unit(7 + 7 / 12, "feet"),
  25577. weight: math.unit(250, "lb"),
  25578. name: "Front",
  25579. image: {
  25580. source: "./media/characters/tala-grovehorn/front.svg",
  25581. extra: 2636 / 2525,
  25582. bottom: 147 / 2781
  25583. }
  25584. },
  25585. back: {
  25586. height: math.unit(7 + 7 / 12, "feet"),
  25587. weight: math.unit(250, "lb"),
  25588. name: "Back",
  25589. image: {
  25590. source: "./media/characters/tala-grovehorn/back.svg",
  25591. extra: 2635 / 2539,
  25592. bottom: 100 / 2732.8
  25593. }
  25594. },
  25595. mouth: {
  25596. height: math.unit(1.15, "feet"),
  25597. name: "Mouth",
  25598. image: {
  25599. source: "./media/characters/tala-grovehorn/mouth.svg"
  25600. }
  25601. },
  25602. dick: {
  25603. height: math.unit(2.36, "feet"),
  25604. name: "Dick",
  25605. image: {
  25606. source: "./media/characters/tala-grovehorn/dick.svg"
  25607. }
  25608. },
  25609. slit: {
  25610. height: math.unit(0.61, "feet"),
  25611. name: "Slit",
  25612. image: {
  25613. source: "./media/characters/tala-grovehorn/slit.svg"
  25614. }
  25615. },
  25616. },
  25617. [
  25618. ]
  25619. ))
  25620. characterMakers.push(() => makeCharacter(
  25621. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25622. {
  25623. front: {
  25624. height: math.unit(7 + 7 / 12, "feet"),
  25625. weight: math.unit(225, "lb"),
  25626. name: "Front",
  25627. image: {
  25628. source: "./media/characters/epona/front.svg",
  25629. extra: 2445 / 2290,
  25630. bottom: 251 / 2696
  25631. }
  25632. },
  25633. back: {
  25634. height: math.unit(7 + 7 / 12, "feet"),
  25635. weight: math.unit(225, "lb"),
  25636. name: "Back",
  25637. image: {
  25638. source: "./media/characters/epona/back.svg",
  25639. extra: 2546 / 2408,
  25640. bottom: 44 / 2589
  25641. }
  25642. },
  25643. genitals: {
  25644. height: math.unit(1.5, "feet"),
  25645. name: "Genitals",
  25646. image: {
  25647. source: "./media/characters/epona/genitals.svg"
  25648. }
  25649. },
  25650. },
  25651. [
  25652. {
  25653. name: "Normal",
  25654. height: math.unit(7 + 7 / 12, "feet")
  25655. },
  25656. ]
  25657. ))
  25658. characterMakers.push(() => makeCharacter(
  25659. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25660. {
  25661. front: {
  25662. height: math.unit(7, "feet"),
  25663. weight: math.unit(518, "lb"),
  25664. name: "Front",
  25665. image: {
  25666. source: "./media/characters/avia-bloodbourn/front.svg",
  25667. extra: 1466 / 1350,
  25668. bottom: 65 / 1527
  25669. }
  25670. },
  25671. },
  25672. [
  25673. ]
  25674. ))
  25675. characterMakers.push(() => makeCharacter(
  25676. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25677. {
  25678. front: {
  25679. height: math.unit(9.35, "feet"),
  25680. weight: math.unit(600, "lb"),
  25681. name: "Front",
  25682. image: {
  25683. source: "./media/characters/amera/front.svg",
  25684. extra: 891 / 818,
  25685. bottom: 30 / 922.7
  25686. }
  25687. },
  25688. back: {
  25689. height: math.unit(9.35, "feet"),
  25690. weight: math.unit(600, "lb"),
  25691. name: "Back",
  25692. image: {
  25693. source: "./media/characters/amera/back.svg",
  25694. extra: 876 / 824,
  25695. bottom: 6.8 / 884
  25696. }
  25697. },
  25698. dick: {
  25699. height: math.unit(2.14, "feet"),
  25700. name: "Dick",
  25701. image: {
  25702. source: "./media/characters/amera/dick.svg"
  25703. }
  25704. },
  25705. },
  25706. [
  25707. {
  25708. name: "Normal",
  25709. height: math.unit(9.35, "feet"),
  25710. default: true
  25711. },
  25712. ]
  25713. ))
  25714. characterMakers.push(() => makeCharacter(
  25715. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25716. {
  25717. kneeling: {
  25718. height: math.unit(3 + 4 / 12, "feet"),
  25719. weight: math.unit(90, "lb"),
  25720. name: "Kneeling",
  25721. image: {
  25722. source: "./media/characters/rosewen/kneeling.svg",
  25723. extra: 1835 / 1571,
  25724. bottom: 27.7 / 1862
  25725. }
  25726. },
  25727. },
  25728. [
  25729. {
  25730. name: "Normal",
  25731. height: math.unit(3 + 4 / 12, "feet"),
  25732. default: true
  25733. },
  25734. ]
  25735. ))
  25736. characterMakers.push(() => makeCharacter(
  25737. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25738. {
  25739. front: {
  25740. height: math.unit(5 + 10 / 12, "feet"),
  25741. weight: math.unit(200, "lb"),
  25742. name: "Front",
  25743. image: {
  25744. source: "./media/characters/sabah/front.svg",
  25745. extra: 849 / 763,
  25746. bottom: 33.9 / 881
  25747. }
  25748. },
  25749. },
  25750. [
  25751. {
  25752. name: "Normal",
  25753. height: math.unit(5 + 10 / 12, "feet"),
  25754. default: true
  25755. },
  25756. ]
  25757. ))
  25758. characterMakers.push(() => makeCharacter(
  25759. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25760. {
  25761. front: {
  25762. height: math.unit(3 + 5 / 12, "feet"),
  25763. weight: math.unit(40, "kg"),
  25764. name: "Front",
  25765. image: {
  25766. source: "./media/characters/purple-flame/front.svg",
  25767. extra: 1577 / 1412,
  25768. bottom: 97 / 1694
  25769. }
  25770. },
  25771. frontDressed: {
  25772. height: math.unit(3 + 5 / 12, "feet"),
  25773. weight: math.unit(40, "kg"),
  25774. name: "Front (Dressed)",
  25775. image: {
  25776. source: "./media/characters/purple-flame/front-dressed.svg",
  25777. extra: 1577 / 1412,
  25778. bottom: 97 / 1694
  25779. }
  25780. },
  25781. headphones: {
  25782. height: math.unit(0.85, "feet"),
  25783. name: "Headphones",
  25784. image: {
  25785. source: "./media/characters/purple-flame/headphones.svg"
  25786. }
  25787. },
  25788. },
  25789. [
  25790. {
  25791. name: "Really Small",
  25792. height: math.unit(5, "cm")
  25793. },
  25794. {
  25795. name: "Micro",
  25796. height: math.unit(1 + 5 / 12, "feet")
  25797. },
  25798. {
  25799. name: "Normal",
  25800. height: math.unit(3 + 5 / 12, "feet"),
  25801. default: true
  25802. },
  25803. {
  25804. name: "Minimacro",
  25805. height: math.unit(125, "feet")
  25806. },
  25807. {
  25808. name: "Macro",
  25809. height: math.unit(0.5, "miles")
  25810. },
  25811. {
  25812. name: "Megamacro",
  25813. height: math.unit(50, "miles")
  25814. },
  25815. {
  25816. name: "Gigantic",
  25817. height: math.unit(750, "miles")
  25818. },
  25819. {
  25820. name: "Planetary",
  25821. height: math.unit(15000, "miles")
  25822. },
  25823. ]
  25824. ))
  25825. characterMakers.push(() => makeCharacter(
  25826. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25827. {
  25828. front: {
  25829. height: math.unit(14, "feet"),
  25830. weight: math.unit(959, "lb"),
  25831. name: "Front",
  25832. image: {
  25833. source: "./media/characters/arsenal/front.svg",
  25834. extra: 2357 / 2157,
  25835. bottom: 93 / 2458
  25836. }
  25837. },
  25838. },
  25839. [
  25840. {
  25841. name: "Normal",
  25842. height: math.unit(14, "feet"),
  25843. default: true
  25844. },
  25845. ]
  25846. ))
  25847. characterMakers.push(() => makeCharacter(
  25848. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25849. {
  25850. front: {
  25851. height: math.unit(6, "feet"),
  25852. weight: math.unit(150, "lb"),
  25853. name: "Front",
  25854. image: {
  25855. source: "./media/characters/adira/front.svg",
  25856. extra: 1078 / 1029,
  25857. bottom: 87 / 1166
  25858. }
  25859. },
  25860. },
  25861. [
  25862. {
  25863. name: "Micro",
  25864. height: math.unit(4, "inches"),
  25865. default: true
  25866. },
  25867. {
  25868. name: "Macro",
  25869. height: math.unit(50, "feet")
  25870. },
  25871. ]
  25872. ))
  25873. characterMakers.push(() => makeCharacter(
  25874. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25875. {
  25876. front: {
  25877. height: math.unit(16, "feet"),
  25878. weight: math.unit(1000, "lb"),
  25879. name: "Front",
  25880. image: {
  25881. source: "./media/characters/grim/front.svg",
  25882. extra: 622 / 614,
  25883. bottom: 18.1 / 642
  25884. }
  25885. },
  25886. back: {
  25887. height: math.unit(16, "feet"),
  25888. weight: math.unit(1000, "lb"),
  25889. name: "Back",
  25890. image: {
  25891. source: "./media/characters/grim/back.svg",
  25892. extra: 610.6 / 602,
  25893. bottom: 40.8 / 652
  25894. }
  25895. },
  25896. hunched: {
  25897. height: math.unit(9.75, "feet"),
  25898. weight: math.unit(1000, "lb"),
  25899. name: "Hunched",
  25900. image: {
  25901. source: "./media/characters/grim/hunched.svg",
  25902. extra: 304 / 297,
  25903. bottom: 35.4 / 394
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Normal",
  25910. height: math.unit(16, "feet"),
  25911. default: true
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25917. {
  25918. front: {
  25919. height: math.unit(2.3, "meters"),
  25920. weight: math.unit(300, "lb"),
  25921. name: "Front",
  25922. image: {
  25923. source: "./media/characters/sinja/front-sfw.svg",
  25924. extra: 1393 / 1294,
  25925. bottom: 70 / 1463
  25926. }
  25927. },
  25928. frontNsfw: {
  25929. height: math.unit(2.3, "meters"),
  25930. weight: math.unit(300, "lb"),
  25931. name: "Front (NSFW)",
  25932. image: {
  25933. source: "./media/characters/sinja/front-nsfw.svg",
  25934. extra: 1393 / 1294,
  25935. bottom: 70 / 1463
  25936. }
  25937. },
  25938. back: {
  25939. height: math.unit(2.3, "meters"),
  25940. weight: math.unit(300, "lb"),
  25941. name: "Back",
  25942. image: {
  25943. source: "./media/characters/sinja/back.svg",
  25944. extra: 1393 / 1294,
  25945. bottom: 70 / 1463
  25946. }
  25947. },
  25948. head: {
  25949. height: math.unit(1.771, "feet"),
  25950. name: "Head",
  25951. image: {
  25952. source: "./media/characters/sinja/head.svg"
  25953. }
  25954. },
  25955. slit: {
  25956. height: math.unit(0.8, "feet"),
  25957. name: "Slit",
  25958. image: {
  25959. source: "./media/characters/sinja/slit.svg"
  25960. }
  25961. },
  25962. },
  25963. [
  25964. {
  25965. name: "Normal",
  25966. height: math.unit(2.3, "meters")
  25967. },
  25968. {
  25969. name: "Macro",
  25970. height: math.unit(91, "meters"),
  25971. default: true
  25972. },
  25973. {
  25974. name: "Megamacro",
  25975. height: math.unit(91440, "meters")
  25976. },
  25977. {
  25978. name: "Gigamacro",
  25979. height: math.unit(60960000, "meters")
  25980. },
  25981. {
  25982. name: "Teramacro",
  25983. height: math.unit(9144000000, "meters")
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25989. {
  25990. front: {
  25991. height: math.unit(1.7, "meters"),
  25992. weight: math.unit(130, "lb"),
  25993. name: "Front",
  25994. image: {
  25995. source: "./media/characters/kyu/front.svg",
  25996. extra: 415 / 395,
  25997. bottom: 5 / 420
  25998. }
  25999. },
  26000. head: {
  26001. height: math.unit(1.75, "feet"),
  26002. name: "Head",
  26003. image: {
  26004. source: "./media/characters/kyu/head.svg"
  26005. }
  26006. },
  26007. foot: {
  26008. height: math.unit(0.81, "feet"),
  26009. name: "Foot",
  26010. image: {
  26011. source: "./media/characters/kyu/foot.svg"
  26012. }
  26013. },
  26014. },
  26015. [
  26016. {
  26017. name: "Normal",
  26018. height: math.unit(1.7, "meters")
  26019. },
  26020. {
  26021. name: "Macro",
  26022. height: math.unit(131, "feet"),
  26023. default: true
  26024. },
  26025. {
  26026. name: "Megamacro",
  26027. height: math.unit(91440, "meters")
  26028. },
  26029. {
  26030. name: "Gigamacro",
  26031. height: math.unit(60960000, "meters")
  26032. },
  26033. {
  26034. name: "Teramacro",
  26035. height: math.unit(9144000000, "meters")
  26036. },
  26037. ]
  26038. ))
  26039. characterMakers.push(() => makeCharacter(
  26040. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26041. {
  26042. front: {
  26043. height: math.unit(7 + 1 / 12, "feet"),
  26044. weight: math.unit(250, "lb"),
  26045. name: "Front",
  26046. image: {
  26047. source: "./media/characters/joey/front.svg",
  26048. extra: 1791 / 1537,
  26049. bottom: 28 / 1816
  26050. }
  26051. },
  26052. },
  26053. [
  26054. {
  26055. name: "Micro",
  26056. height: math.unit(3, "inches")
  26057. },
  26058. {
  26059. name: "Normal",
  26060. height: math.unit(7 + 1 / 12, "feet"),
  26061. default: true
  26062. },
  26063. ]
  26064. ))
  26065. characterMakers.push(() => makeCharacter(
  26066. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26067. {
  26068. front: {
  26069. height: math.unit(165, "cm"),
  26070. weight: math.unit(140, "lb"),
  26071. name: "Front",
  26072. image: {
  26073. source: "./media/characters/sam-evans/front.svg",
  26074. extra: 3417 / 3230,
  26075. bottom: 41.3 / 3417
  26076. }
  26077. },
  26078. frontSixTails: {
  26079. height: math.unit(165, "cm"),
  26080. weight: math.unit(140, "lb"),
  26081. name: "Front-six-tails",
  26082. image: {
  26083. source: "./media/characters/sam-evans/front-six-tails.svg",
  26084. extra: 3417 / 3230,
  26085. bottom: 41.3 / 3417
  26086. }
  26087. },
  26088. back: {
  26089. height: math.unit(165, "cm"),
  26090. weight: math.unit(140, "lb"),
  26091. name: "Back",
  26092. image: {
  26093. source: "./media/characters/sam-evans/back.svg",
  26094. extra: 3227 / 3032,
  26095. bottom: 6.8 / 3234
  26096. }
  26097. },
  26098. face: {
  26099. height: math.unit(0.68, "feet"),
  26100. name: "Face",
  26101. image: {
  26102. source: "./media/characters/sam-evans/face.svg"
  26103. }
  26104. },
  26105. },
  26106. [
  26107. {
  26108. name: "Normal",
  26109. height: math.unit(165, "cm"),
  26110. default: true
  26111. },
  26112. {
  26113. name: "Macro",
  26114. height: math.unit(100, "meters")
  26115. },
  26116. {
  26117. name: "Macro+",
  26118. height: math.unit(800, "meters")
  26119. },
  26120. {
  26121. name: "Macro++",
  26122. height: math.unit(3, "km")
  26123. },
  26124. {
  26125. name: "Macro+++",
  26126. height: math.unit(30, "km")
  26127. },
  26128. ]
  26129. ))
  26130. characterMakers.push(() => makeCharacter(
  26131. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26132. {
  26133. front: {
  26134. height: math.unit(10, "feet"),
  26135. weight: math.unit(750, "lb"),
  26136. name: "Front",
  26137. image: {
  26138. source: "./media/characters/juliet-a/front.svg",
  26139. extra: 1766 / 1720,
  26140. bottom: 43 / 1809
  26141. }
  26142. },
  26143. back: {
  26144. height: math.unit(10, "feet"),
  26145. weight: math.unit(750, "lb"),
  26146. name: "Back",
  26147. image: {
  26148. source: "./media/characters/juliet-a/back.svg",
  26149. extra: 1781 / 1734,
  26150. bottom: 35 / 1810,
  26151. }
  26152. },
  26153. },
  26154. [
  26155. {
  26156. name: "Normal",
  26157. height: math.unit(10, "feet"),
  26158. default: true
  26159. },
  26160. {
  26161. name: "Dragon Form",
  26162. height: math.unit(250, "feet")
  26163. },
  26164. {
  26165. name: "Macro",
  26166. height: math.unit(1000, "feet")
  26167. },
  26168. {
  26169. name: "Megamacro",
  26170. height: math.unit(10000, "feet")
  26171. }
  26172. ]
  26173. ))
  26174. characterMakers.push(() => makeCharacter(
  26175. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26176. {
  26177. regular: {
  26178. height: math.unit(7 + 3 / 12, "feet"),
  26179. weight: math.unit(260, "lb"),
  26180. name: "Regular",
  26181. image: {
  26182. source: "./media/characters/wild/regular.svg",
  26183. extra: 97.45 / 92,
  26184. bottom: 6.8 / 104.3
  26185. }
  26186. },
  26187. biggums: {
  26188. height: math.unit(8 + 6 / 12, "feet"),
  26189. weight: math.unit(425, "lb"),
  26190. name: "Biggums",
  26191. image: {
  26192. source: "./media/characters/wild/biggums.svg",
  26193. extra: 97.45 / 92,
  26194. bottom: 7.5 / 132.34
  26195. }
  26196. },
  26197. mawRegular: {
  26198. height: math.unit(1.24, "feet"),
  26199. name: "Maw (Regular)",
  26200. image: {
  26201. source: "./media/characters/wild/maw.svg"
  26202. }
  26203. },
  26204. mawBiggums: {
  26205. height: math.unit(1.47, "feet"),
  26206. name: "Maw (Biggums)",
  26207. image: {
  26208. source: "./media/characters/wild/maw.svg"
  26209. }
  26210. },
  26211. },
  26212. [
  26213. {
  26214. name: "Normal",
  26215. height: math.unit(7 + 3 / 12, "feet"),
  26216. default: true
  26217. },
  26218. ]
  26219. ))
  26220. characterMakers.push(() => makeCharacter(
  26221. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26222. {
  26223. front: {
  26224. height: math.unit(2.5, "meters"),
  26225. weight: math.unit(200, "kg"),
  26226. name: "Front",
  26227. image: {
  26228. source: "./media/characters/vidar/front.svg",
  26229. extra: 2994 / 2795,
  26230. bottom: 56 / 3061
  26231. }
  26232. },
  26233. back: {
  26234. height: math.unit(2.5, "meters"),
  26235. weight: math.unit(200, "kg"),
  26236. name: "Back",
  26237. image: {
  26238. source: "./media/characters/vidar/back.svg",
  26239. extra: 3131 / 2928,
  26240. bottom: 13.5 / 3141.5
  26241. }
  26242. },
  26243. feral: {
  26244. height: math.unit(2.5, "meters"),
  26245. weight: math.unit(2000, "kg"),
  26246. name: "Feral",
  26247. image: {
  26248. source: "./media/characters/vidar/feral.svg",
  26249. extra: 2790 / 1765,
  26250. bottom: 6 / 2796
  26251. }
  26252. },
  26253. },
  26254. [
  26255. {
  26256. name: "Normal",
  26257. height: math.unit(2.5, "meters"),
  26258. default: true
  26259. },
  26260. {
  26261. name: "Macro",
  26262. height: math.unit(100, "meters")
  26263. },
  26264. ]
  26265. ))
  26266. characterMakers.push(() => makeCharacter(
  26267. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26268. {
  26269. front: {
  26270. height: math.unit(5 + 9 / 12, "feet"),
  26271. weight: math.unit(120, "lb"),
  26272. name: "Front",
  26273. image: {
  26274. source: "./media/characters/ash/front.svg",
  26275. extra: 2189 / 1961,
  26276. bottom: 5.2 / 2194
  26277. }
  26278. },
  26279. },
  26280. [
  26281. {
  26282. name: "Normal",
  26283. height: math.unit(5 + 9 / 12, "feet"),
  26284. default: true
  26285. },
  26286. ]
  26287. ))
  26288. characterMakers.push(() => makeCharacter(
  26289. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26290. {
  26291. front: {
  26292. height: math.unit(9, "feet"),
  26293. weight: math.unit(10000, "lb"),
  26294. name: "Front",
  26295. image: {
  26296. source: "./media/characters/gygabite/front.svg",
  26297. bottom: 31.7 / 537.8,
  26298. extra: 505 / 370
  26299. }
  26300. },
  26301. },
  26302. [
  26303. {
  26304. name: "Normal",
  26305. height: math.unit(9, "feet"),
  26306. default: true
  26307. },
  26308. ]
  26309. ))
  26310. characterMakers.push(() => makeCharacter(
  26311. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26312. {
  26313. front: {
  26314. height: math.unit(12, "feet"),
  26315. weight: math.unit(35000, "lb"),
  26316. name: "Front",
  26317. image: {
  26318. source: "./media/characters/p0tat0/front.svg",
  26319. extra: 1065 / 921,
  26320. bottom: 55.7 / 1121.25
  26321. }
  26322. },
  26323. },
  26324. [
  26325. {
  26326. name: "Normal",
  26327. height: math.unit(12, "feet"),
  26328. default: true
  26329. },
  26330. ]
  26331. ))
  26332. characterMakers.push(() => makeCharacter(
  26333. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26334. {
  26335. side: {
  26336. height: math.unit(6.5, "feet"),
  26337. weight: math.unit(800, "lb"),
  26338. name: "Side",
  26339. image: {
  26340. source: "./media/characters/dusk/side.svg",
  26341. extra: 615 / 373,
  26342. bottom: 53 / 664
  26343. }
  26344. },
  26345. sitting: {
  26346. height: math.unit(7, "feet"),
  26347. weight: math.unit(800, "lb"),
  26348. name: "Sitting",
  26349. image: {
  26350. source: "./media/characters/dusk/sitting.svg",
  26351. extra: 753 / 425,
  26352. bottom: 33 / 774
  26353. }
  26354. },
  26355. head: {
  26356. height: math.unit(6.1, "feet"),
  26357. name: "Head",
  26358. image: {
  26359. source: "./media/characters/dusk/head.svg"
  26360. }
  26361. },
  26362. },
  26363. [
  26364. {
  26365. name: "Normal",
  26366. height: math.unit(7, "feet"),
  26367. default: true
  26368. },
  26369. ]
  26370. ))
  26371. characterMakers.push(() => makeCharacter(
  26372. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26373. {
  26374. front: {
  26375. height: math.unit(15, "feet"),
  26376. weight: math.unit(7000, "lb"),
  26377. name: "Front",
  26378. image: {
  26379. source: "./media/characters/jay-direwolf/front.svg",
  26380. extra: 1810 / 1732,
  26381. bottom: 66 / 1892
  26382. }
  26383. },
  26384. },
  26385. [
  26386. {
  26387. name: "Normal",
  26388. height: math.unit(15, "feet"),
  26389. default: true
  26390. },
  26391. ]
  26392. ))
  26393. characterMakers.push(() => makeCharacter(
  26394. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26395. {
  26396. front: {
  26397. height: math.unit(4 + 9 / 12, "feet"),
  26398. weight: math.unit(130, "lb"),
  26399. name: "Front",
  26400. image: {
  26401. source: "./media/characters/anchovie/front.svg",
  26402. extra: 382 / 350,
  26403. bottom: 25 / 409
  26404. }
  26405. },
  26406. back: {
  26407. height: math.unit(4 + 9 / 12, "feet"),
  26408. weight: math.unit(130, "lb"),
  26409. name: "Back",
  26410. image: {
  26411. source: "./media/characters/anchovie/back.svg",
  26412. extra: 385 / 352,
  26413. bottom: 16.6 / 402
  26414. }
  26415. },
  26416. frontDressed: {
  26417. height: math.unit(4 + 9 / 12, "feet"),
  26418. weight: math.unit(130, "lb"),
  26419. name: "Front (Dressed)",
  26420. image: {
  26421. source: "./media/characters/anchovie/front-dressed.svg",
  26422. extra: 382 / 350,
  26423. bottom: 25 / 409
  26424. }
  26425. },
  26426. backDressed: {
  26427. height: math.unit(4 + 9 / 12, "feet"),
  26428. weight: math.unit(130, "lb"),
  26429. name: "Back (Dressed)",
  26430. image: {
  26431. source: "./media/characters/anchovie/back-dressed.svg",
  26432. extra: 385 / 352,
  26433. bottom: 16.6 / 402
  26434. }
  26435. },
  26436. },
  26437. [
  26438. {
  26439. name: "Micro",
  26440. height: math.unit(6.4, "inches")
  26441. },
  26442. {
  26443. name: "Normal",
  26444. height: math.unit(4 + 9 / 12, "feet"),
  26445. default: true
  26446. },
  26447. ]
  26448. ))
  26449. characterMakers.push(() => makeCharacter(
  26450. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26451. {
  26452. front: {
  26453. height: math.unit(2, "meters"),
  26454. weight: math.unit(180, "lb"),
  26455. name: "Front",
  26456. image: {
  26457. source: "./media/characters/acidrenamon/front.svg",
  26458. extra: 987 / 890,
  26459. bottom: 22.8 / 1009
  26460. }
  26461. },
  26462. back: {
  26463. height: math.unit(2, "meters"),
  26464. weight: math.unit(180, "lb"),
  26465. name: "Back",
  26466. image: {
  26467. source: "./media/characters/acidrenamon/back.svg",
  26468. extra: 983 / 891,
  26469. bottom: 8.4 / 992
  26470. }
  26471. },
  26472. head: {
  26473. height: math.unit(1.92, "feet"),
  26474. name: "Head",
  26475. image: {
  26476. source: "./media/characters/acidrenamon/head.svg"
  26477. }
  26478. },
  26479. rump: {
  26480. height: math.unit(1.72, "feet"),
  26481. name: "Rump",
  26482. image: {
  26483. source: "./media/characters/acidrenamon/rump.svg"
  26484. }
  26485. },
  26486. tail: {
  26487. height: math.unit(4.2, "feet"),
  26488. name: "Tail",
  26489. image: {
  26490. source: "./media/characters/acidrenamon/tail.svg"
  26491. }
  26492. },
  26493. },
  26494. [
  26495. {
  26496. name: "Normal",
  26497. height: math.unit(2, "meters"),
  26498. default: true
  26499. },
  26500. {
  26501. name: "Minimacro",
  26502. height: math.unit(7, "meters")
  26503. },
  26504. {
  26505. name: "Macro",
  26506. height: math.unit(200, "meters")
  26507. },
  26508. {
  26509. name: "Gigamacro",
  26510. height: math.unit(0.2, "earths")
  26511. },
  26512. ]
  26513. ))
  26514. characterMakers.push(() => makeCharacter(
  26515. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26516. {
  26517. front: {
  26518. height: math.unit(6, "feet"),
  26519. weight: math.unit(150, "lb"),
  26520. name: "Front",
  26521. image: {
  26522. source: "./media/characters/kenzie-lee/front.svg",
  26523. extra: 1525 / 1465,
  26524. bottom: 45 / 1570
  26525. }
  26526. },
  26527. side: {
  26528. height: math.unit(6, "feet"),
  26529. weight: math.unit(150, "lb"),
  26530. name: "Side",
  26531. image: {
  26532. source: "./media/characters/kenzie-lee/side.svg",
  26533. extra: 5505 / 5383,
  26534. bottom: 60 / 5573
  26535. }
  26536. },
  26537. },
  26538. [
  26539. {
  26540. name: "Normal",
  26541. height: math.unit(152, "feet"),
  26542. default: true
  26543. },
  26544. {
  26545. name: "Megamacro",
  26546. height: math.unit(7, "miles")
  26547. },
  26548. {
  26549. name: "Gigamacro",
  26550. height: math.unit(8000, "miles")
  26551. },
  26552. ]
  26553. ))
  26554. characterMakers.push(() => makeCharacter(
  26555. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26556. {
  26557. side: {
  26558. height: math.unit(6, "feet"),
  26559. weight: math.unit(150, "lb"),
  26560. name: "Side",
  26561. image: {
  26562. source: "./media/characters/withers/side.svg",
  26563. extra: 1830 / 1728,
  26564. bottom: 96 / 1927
  26565. }
  26566. },
  26567. front: {
  26568. height: math.unit(6, "feet"),
  26569. weight: math.unit(150, "lb"),
  26570. name: "Front",
  26571. image: {
  26572. source: "./media/characters/withers/front.svg",
  26573. extra: 1514 / 1438,
  26574. bottom: 118 / 1632
  26575. }
  26576. },
  26577. },
  26578. [
  26579. {
  26580. name: "Macro",
  26581. height: math.unit(168, "feet"),
  26582. default: true
  26583. },
  26584. {
  26585. name: "Megamacro",
  26586. height: math.unit(15, "miles")
  26587. }
  26588. ]
  26589. ))
  26590. characterMakers.push(() => makeCharacter(
  26591. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26592. {
  26593. front: {
  26594. height: math.unit(6 + 7 / 12, "feet"),
  26595. weight: math.unit(250, "lb"),
  26596. name: "Front",
  26597. image: {
  26598. source: "./media/characters/nemoskii/front.svg",
  26599. extra: 2270 / 1734,
  26600. bottom: 86 / 2354
  26601. }
  26602. },
  26603. back: {
  26604. height: math.unit(6 + 7 / 12, "feet"),
  26605. weight: math.unit(250, "lb"),
  26606. name: "Back",
  26607. image: {
  26608. source: "./media/characters/nemoskii/back.svg",
  26609. extra: 1845 / 1788,
  26610. bottom: 10.5 / 1852
  26611. }
  26612. },
  26613. head: {
  26614. height: math.unit(1.31, "feet"),
  26615. name: "Head",
  26616. image: {
  26617. source: "./media/characters/nemoskii/head.svg"
  26618. }
  26619. },
  26620. },
  26621. [
  26622. {
  26623. name: "Normal",
  26624. height: math.unit(6 + 7 / 12, "feet"),
  26625. default: true
  26626. },
  26627. ]
  26628. ))
  26629. characterMakers.push(() => makeCharacter(
  26630. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26631. {
  26632. front: {
  26633. height: math.unit(1, "mile"),
  26634. weight: math.unit(265261.9, "lb"),
  26635. name: "Front",
  26636. image: {
  26637. source: "./media/characters/shui/front.svg",
  26638. extra: 1633 / 1564,
  26639. bottom: 91.5 / 1726
  26640. }
  26641. },
  26642. },
  26643. [
  26644. {
  26645. name: "Macro",
  26646. height: math.unit(1, "mile"),
  26647. default: true
  26648. },
  26649. ]
  26650. ))
  26651. characterMakers.push(() => makeCharacter(
  26652. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26653. {
  26654. front: {
  26655. height: math.unit(12 + 6 / 12, "feet"),
  26656. weight: math.unit(1342, "lb"),
  26657. name: "Front",
  26658. image: {
  26659. source: "./media/characters/arokh-takakura/front.svg",
  26660. extra: 1089 / 1043,
  26661. bottom: 77.4 / 1176.7
  26662. }
  26663. },
  26664. back: {
  26665. height: math.unit(12 + 6 / 12, "feet"),
  26666. weight: math.unit(1342, "lb"),
  26667. name: "Back",
  26668. image: {
  26669. source: "./media/characters/arokh-takakura/back.svg",
  26670. extra: 1046 / 1019,
  26671. bottom: 102 / 1150
  26672. }
  26673. },
  26674. },
  26675. [
  26676. {
  26677. name: "Big",
  26678. height: math.unit(12 + 6 / 12, "feet"),
  26679. default: true
  26680. },
  26681. ]
  26682. ))
  26683. characterMakers.push(() => makeCharacter(
  26684. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26685. {
  26686. front: {
  26687. height: math.unit(5 + 6 / 12, "feet"),
  26688. weight: math.unit(150, "lb"),
  26689. name: "Front",
  26690. image: {
  26691. source: "./media/characters/theo/front.svg",
  26692. extra: 1184 / 1131,
  26693. bottom: 7.4 / 1191
  26694. }
  26695. },
  26696. },
  26697. [
  26698. {
  26699. name: "Micro",
  26700. height: math.unit(5, "inches")
  26701. },
  26702. {
  26703. name: "Normal",
  26704. height: math.unit(5 + 6 / 12, "feet"),
  26705. default: true
  26706. },
  26707. ]
  26708. ))
  26709. characterMakers.push(() => makeCharacter(
  26710. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26711. {
  26712. front: {
  26713. height: math.unit(5 + 9 / 12, "feet"),
  26714. weight: math.unit(130, "lb"),
  26715. name: "Front",
  26716. image: {
  26717. source: "./media/characters/cecelia-swift/front.svg",
  26718. extra: 502 / 484,
  26719. bottom: 23 / 523
  26720. }
  26721. },
  26722. back: {
  26723. height: math.unit(5 + 9 / 12, "feet"),
  26724. weight: math.unit(130, "lb"),
  26725. name: "Back",
  26726. image: {
  26727. source: "./media/characters/cecelia-swift/back.svg",
  26728. extra: 499 / 485,
  26729. bottom: 12 / 511
  26730. }
  26731. },
  26732. head: {
  26733. height: math.unit(0.90, "feet"),
  26734. name: "Head",
  26735. image: {
  26736. source: "./media/characters/cecelia-swift/head.svg"
  26737. }
  26738. },
  26739. rump: {
  26740. height: math.unit(1.75, "feet"),
  26741. name: "Rump",
  26742. image: {
  26743. source: "./media/characters/cecelia-swift/rump.svg"
  26744. }
  26745. },
  26746. },
  26747. [
  26748. {
  26749. name: "Normal",
  26750. height: math.unit(5 + 9 / 12, "feet"),
  26751. default: true
  26752. },
  26753. {
  26754. name: "Big",
  26755. height: math.unit(50, "feet")
  26756. },
  26757. {
  26758. name: "Macro",
  26759. height: math.unit(100, "feet")
  26760. },
  26761. {
  26762. name: "Macro+",
  26763. height: math.unit(500, "feet")
  26764. },
  26765. {
  26766. name: "Macro++",
  26767. height: math.unit(1000, "feet")
  26768. },
  26769. ]
  26770. ))
  26771. characterMakers.push(() => makeCharacter(
  26772. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26773. {
  26774. front: {
  26775. height: math.unit(6, "feet"),
  26776. weight: math.unit(150, "lb"),
  26777. name: "Front",
  26778. image: {
  26779. source: "./media/characters/kaunan/front.svg",
  26780. extra: 2890 / 2523,
  26781. bottom: 49 / 2939
  26782. }
  26783. },
  26784. },
  26785. [
  26786. {
  26787. name: "Macro",
  26788. height: math.unit(150, "feet"),
  26789. default: true
  26790. },
  26791. ]
  26792. ))
  26793. characterMakers.push(() => makeCharacter(
  26794. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26795. {
  26796. front: {
  26797. height: math.unit(175, "cm"),
  26798. weight: math.unit(60, "kg"),
  26799. name: "Front",
  26800. image: {
  26801. source: "./media/characters/fei/front.svg",
  26802. extra: 2581 / 2400,
  26803. bottom: 82.2 / 2663
  26804. }
  26805. },
  26806. },
  26807. [
  26808. {
  26809. name: "Mortal",
  26810. height: math.unit(175, "cm")
  26811. },
  26812. {
  26813. name: "Normal",
  26814. height: math.unit(3500, "m"),
  26815. default: true
  26816. },
  26817. {
  26818. name: "Stroll",
  26819. height: math.unit(17.5, "km")
  26820. },
  26821. {
  26822. name: "Showoff",
  26823. height: math.unit(175, "km")
  26824. },
  26825. ]
  26826. ))
  26827. characterMakers.push(() => makeCharacter(
  26828. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26829. {
  26830. front: {
  26831. height: math.unit(7, "feet"),
  26832. weight: math.unit(1000, "kg"),
  26833. name: "Front",
  26834. image: {
  26835. source: "./media/characters/edrax/front.svg",
  26836. extra: 2838 / 2550,
  26837. bottom: 130 / 2968
  26838. }
  26839. },
  26840. },
  26841. [
  26842. {
  26843. name: "Small",
  26844. height: math.unit(7, "feet")
  26845. },
  26846. {
  26847. name: "Normal",
  26848. height: math.unit(1500, "meters")
  26849. },
  26850. {
  26851. name: "Mega",
  26852. height: math.unit(12000000, "km"),
  26853. default: true
  26854. },
  26855. {
  26856. name: "Megamacro",
  26857. height: math.unit(10600000, "lightyears")
  26858. },
  26859. {
  26860. name: "Hypermacro",
  26861. height: math.unit(256, "yottameters")
  26862. },
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26867. {
  26868. front: {
  26869. height: math.unit(10, "feet"),
  26870. weight: math.unit(750, "lb"),
  26871. name: "Front",
  26872. image: {
  26873. source: "./media/characters/clove/front.svg",
  26874. extra: 2031 / 1860,
  26875. bottom: 47.8 / 2080
  26876. }
  26877. },
  26878. back: {
  26879. height: math.unit(10, "feet"),
  26880. weight: math.unit(750, "lb"),
  26881. name: "Back",
  26882. image: {
  26883. source: "./media/characters/clove/back.svg",
  26884. extra: 2025 / 1859,
  26885. bottom: 46 / 2071
  26886. }
  26887. },
  26888. },
  26889. [
  26890. {
  26891. name: "Normal",
  26892. height: math.unit(10, "feet")
  26893. },
  26894. ]
  26895. ))
  26896. characterMakers.push(() => makeCharacter(
  26897. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26898. {
  26899. front: {
  26900. height: math.unit(4, "feet"),
  26901. weight: math.unit(50, "lb"),
  26902. name: "Front",
  26903. image: {
  26904. source: "./media/characters/alex-rabbit/front.svg",
  26905. extra: 507 / 458,
  26906. bottom: 18.5 / 527
  26907. }
  26908. },
  26909. back: {
  26910. height: math.unit(4, "feet"),
  26911. weight: math.unit(50, "lb"),
  26912. name: "Back",
  26913. image: {
  26914. source: "./media/characters/alex-rabbit/back.svg",
  26915. extra: 502 / 460,
  26916. bottom: 18.9 / 521
  26917. }
  26918. },
  26919. },
  26920. [
  26921. {
  26922. name: "Normal",
  26923. height: math.unit(4, "feet"),
  26924. default: true
  26925. },
  26926. ]
  26927. ))
  26928. characterMakers.push(() => makeCharacter(
  26929. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26930. {
  26931. front: {
  26932. height: math.unit(1 + 3 / 12, "feet"),
  26933. weight: math.unit(80, "lb"),
  26934. name: "Front",
  26935. image: {
  26936. source: "./media/characters/zander-rose/front.svg",
  26937. extra: 916 / 797,
  26938. bottom: 17 / 933
  26939. }
  26940. },
  26941. back: {
  26942. height: math.unit(1 + 3 / 12, "feet"),
  26943. weight: math.unit(80, "lb"),
  26944. name: "Back",
  26945. image: {
  26946. source: "./media/characters/zander-rose/back.svg",
  26947. extra: 903 / 779,
  26948. bottom: 31 / 934
  26949. }
  26950. },
  26951. },
  26952. [
  26953. {
  26954. name: "Normal",
  26955. height: math.unit(1 + 3 / 12, "feet"),
  26956. default: true
  26957. },
  26958. ]
  26959. ))
  26960. characterMakers.push(() => makeCharacter(
  26961. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26962. {
  26963. anthro: {
  26964. height: math.unit(6, "feet"),
  26965. weight: math.unit(150, "lb"),
  26966. name: "Anthro",
  26967. image: {
  26968. source: "./media/characters/razz/anthro.svg",
  26969. extra: 1437 / 1343,
  26970. bottom: 48 / 1485
  26971. }
  26972. },
  26973. feral: {
  26974. height: math.unit(6, "feet"),
  26975. weight: math.unit(150, "lb"),
  26976. name: "Feral",
  26977. image: {
  26978. source: "./media/characters/razz/feral.svg",
  26979. extra: 2569 / 1385,
  26980. bottom: 95 / 2664
  26981. }
  26982. },
  26983. },
  26984. [
  26985. {
  26986. name: "Normal",
  26987. height: math.unit(6, "feet"),
  26988. default: true
  26989. },
  26990. ]
  26991. ))
  26992. characterMakers.push(() => makeCharacter(
  26993. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  26994. {
  26995. front: {
  26996. height: math.unit(9 + 4 / 12, "feet"),
  26997. weight: math.unit(500, "lb"),
  26998. name: "Front",
  26999. image: {
  27000. source: "./media/characters/morrigan/front.svg",
  27001. extra: 2707 / 2579,
  27002. bottom: 156 / 2863
  27003. }
  27004. },
  27005. },
  27006. [
  27007. {
  27008. name: "Normal",
  27009. height: math.unit(9 + 4 / 12, "feet"),
  27010. default: true
  27011. },
  27012. ]
  27013. ))
  27014. characterMakers.push(() => makeCharacter(
  27015. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27016. {
  27017. front: {
  27018. height: math.unit(5, "stories"),
  27019. weight: math.unit(4000, "lb"),
  27020. name: "Front",
  27021. image: {
  27022. source: "./media/characters/jenene/front.svg",
  27023. extra: 1780 / 1710,
  27024. bottom: 57 / 1837
  27025. }
  27026. },
  27027. },
  27028. [
  27029. {
  27030. name: "Normal",
  27031. height: math.unit(5, "stories"),
  27032. default: true
  27033. },
  27034. ]
  27035. ))
  27036. characterMakers.push(() => makeCharacter(
  27037. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27038. {
  27039. front: {
  27040. height: math.unit(6, "feet"),
  27041. weight: math.unit(150, "lb"),
  27042. name: "Front",
  27043. image: {
  27044. source: "./media/characters/vix-archaser/front.svg",
  27045. extra: 2767 / 2562,
  27046. bottom: 36 / 2803
  27047. }
  27048. },
  27049. },
  27050. [
  27051. {
  27052. name: "Micro",
  27053. height: math.unit(1, "foot")
  27054. },
  27055. {
  27056. name: "Normal",
  27057. height: math.unit(6 + 5 / 12, "feet")
  27058. },
  27059. {
  27060. name: "Minimacro",
  27061. height: math.unit(500, "feet")
  27062. },
  27063. {
  27064. name: "Macro",
  27065. height: math.unit(4, "miles")
  27066. },
  27067. {
  27068. name: "Megamacro",
  27069. height: math.unit(250, "miles"),
  27070. default: true
  27071. },
  27072. {
  27073. name: "Gigamacro",
  27074. height: math.unit(1, "universe")
  27075. },
  27076. {
  27077. name: "Endgame",
  27078. height: math.unit(100, "multiverses")
  27079. }
  27080. ]
  27081. ))
  27082. characterMakers.push(() => makeCharacter(
  27083. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27084. {
  27085. taurSfw: {
  27086. height: math.unit(10, "meters"),
  27087. weight: math.unit(17500, "kg"),
  27088. name: "Taur",
  27089. image: {
  27090. source: "./media/characters/faey/taur-sfw.svg",
  27091. extra: 1200 / 968,
  27092. bottom: 41 / 1241
  27093. }
  27094. },
  27095. chestmaw: {
  27096. height: math.unit(2.01, "meters"),
  27097. name: "Chestmaw",
  27098. image: {
  27099. source: "./media/characters/faey/chestmaw.svg"
  27100. }
  27101. },
  27102. foot: {
  27103. height: math.unit(2.43, "meters"),
  27104. name: "Foot",
  27105. image: {
  27106. source: "./media/characters/faey/foot.svg"
  27107. }
  27108. },
  27109. jaws: {
  27110. height: math.unit(1.66, "meters"),
  27111. name: "Jaws",
  27112. image: {
  27113. source: "./media/characters/faey/jaws.svg"
  27114. }
  27115. },
  27116. tongues: {
  27117. height: math.unit(2.01, "meters"),
  27118. name: "Tongues",
  27119. image: {
  27120. source: "./media/characters/faey/tongues.svg"
  27121. }
  27122. },
  27123. },
  27124. [
  27125. {
  27126. name: "Small",
  27127. height: math.unit(10, "meters"),
  27128. default: true
  27129. },
  27130. {
  27131. name: "Big",
  27132. height: math.unit(500000, "km")
  27133. },
  27134. ]
  27135. ))
  27136. characterMakers.push(() => makeCharacter(
  27137. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27138. {
  27139. front: {
  27140. height: math.unit(7, "feet"),
  27141. weight: math.unit(275, "lb"),
  27142. name: "Front",
  27143. image: {
  27144. source: "./media/characters/roku/front.svg",
  27145. extra: 903 / 878,
  27146. bottom: 37 / 940
  27147. }
  27148. },
  27149. },
  27150. [
  27151. {
  27152. name: "Normal",
  27153. height: math.unit(7, "feet"),
  27154. default: true
  27155. },
  27156. {
  27157. name: "Macro",
  27158. height: math.unit(500, "feet")
  27159. },
  27160. {
  27161. name: "Megamacro",
  27162. height: math.unit(200, "miles")
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(6 + 2 / 12, "feet"),
  27171. weight: math.unit(150, "lb"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/lira/front.svg",
  27175. extra: 1727 / 1605,
  27176. bottom: 26 / 1753
  27177. }
  27178. },
  27179. back: {
  27180. height: math.unit(6 + 2 / 12, "feet"),
  27181. weight: math.unit(150, "lb"),
  27182. name: "Back",
  27183. image: {
  27184. source: "./media/characters/lira/back.svg",
  27185. extra: 1713 / 159,
  27186. bottom: 20 / 1733
  27187. }
  27188. },
  27189. hand: {
  27190. height: math.unit(0.75, "feet"),
  27191. name: "Hand",
  27192. image: {
  27193. source: "./media/characters/lira/hand.svg"
  27194. }
  27195. },
  27196. maw: {
  27197. height: math.unit(0.65, "feet"),
  27198. name: "Maw",
  27199. image: {
  27200. source: "./media/characters/lira/maw.svg"
  27201. }
  27202. },
  27203. pawDigi: {
  27204. height: math.unit(1.6, "feet"),
  27205. name: "Paw Digi",
  27206. image: {
  27207. source: "./media/characters/lira/paw-digi.svg"
  27208. }
  27209. },
  27210. pawPlanti: {
  27211. height: math.unit(1.4, "feet"),
  27212. name: "Paw Planti",
  27213. image: {
  27214. source: "./media/characters/lira/paw-planti.svg"
  27215. }
  27216. },
  27217. },
  27218. [
  27219. {
  27220. name: "Normal",
  27221. height: math.unit(6 + 2 / 12, "feet"),
  27222. default: true
  27223. },
  27224. {
  27225. name: "Macro",
  27226. height: math.unit(100, "feet")
  27227. },
  27228. {
  27229. name: "Macro²",
  27230. height: math.unit(1600, "feet")
  27231. },
  27232. {
  27233. name: "Planetary",
  27234. height: math.unit(20, "earths")
  27235. },
  27236. ]
  27237. ))
  27238. characterMakers.push(() => makeCharacter(
  27239. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27240. {
  27241. front: {
  27242. height: math.unit(6, "feet"),
  27243. weight: math.unit(150, "lb"),
  27244. name: "Front",
  27245. image: {
  27246. source: "./media/characters/hadjet/front.svg",
  27247. extra: 1480 / 1346,
  27248. bottom: 26 / 1506
  27249. }
  27250. },
  27251. frontNsfw: {
  27252. height: math.unit(6, "feet"),
  27253. weight: math.unit(150, "lb"),
  27254. name: "Front (NSFW)",
  27255. image: {
  27256. source: "./media/characters/hadjet/front-nsfw.svg",
  27257. extra: 1440 / 1358,
  27258. bottom: 52 / 1492
  27259. }
  27260. },
  27261. },
  27262. [
  27263. {
  27264. name: "Macro",
  27265. height: math.unit(10, "stories"),
  27266. default: true
  27267. },
  27268. {
  27269. name: "Megamacro",
  27270. height: math.unit(1.5, "miles")
  27271. },
  27272. {
  27273. name: "Megamacro+",
  27274. height: math.unit(5, "miles")
  27275. },
  27276. ]
  27277. ))
  27278. characterMakers.push(() => makeCharacter(
  27279. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27280. {
  27281. side: {
  27282. height: math.unit(106, "feet"),
  27283. weight: math.unit(500, "tonnes"),
  27284. name: "Side",
  27285. image: {
  27286. source: "./media/characters/kodran/side.svg",
  27287. extra: 553 / 480,
  27288. bottom: 33 / 586
  27289. }
  27290. },
  27291. front: {
  27292. height: math.unit(132, "feet"),
  27293. weight: math.unit(500, "tonnes"),
  27294. name: "Front",
  27295. image: {
  27296. source: "./media/characters/kodran/front.svg",
  27297. extra: 667 / 643,
  27298. bottom: 42 / 709
  27299. }
  27300. },
  27301. flying: {
  27302. height: math.unit(350, "feet"),
  27303. weight: math.unit(500, "tonnes"),
  27304. name: "Flying",
  27305. image: {
  27306. source: "./media/characters/kodran/flying.svg"
  27307. }
  27308. },
  27309. foot: {
  27310. height: math.unit(33, "feet"),
  27311. name: "Foot",
  27312. image: {
  27313. source: "./media/characters/kodran/foot.svg"
  27314. }
  27315. },
  27316. footFront: {
  27317. height: math.unit(19, "feet"),
  27318. name: "Foot (Front)",
  27319. image: {
  27320. source: "./media/characters/kodran/foot-front.svg",
  27321. extra: 261 / 261,
  27322. bottom: 91 / 352
  27323. }
  27324. },
  27325. headFront: {
  27326. height: math.unit(53, "feet"),
  27327. name: "Head (Front)",
  27328. image: {
  27329. source: "./media/characters/kodran/head-front.svg"
  27330. }
  27331. },
  27332. headSide: {
  27333. height: math.unit(65, "feet"),
  27334. name: "Head (Side)",
  27335. image: {
  27336. source: "./media/characters/kodran/head-side.svg"
  27337. }
  27338. },
  27339. throat: {
  27340. height: math.unit(79, "feet"),
  27341. name: "Throat",
  27342. image: {
  27343. source: "./media/characters/kodran/throat.svg"
  27344. }
  27345. },
  27346. },
  27347. [
  27348. {
  27349. name: "Large",
  27350. height: math.unit(106, "feet"),
  27351. default: true
  27352. },
  27353. ]
  27354. ))
  27355. characterMakers.push(() => makeCharacter(
  27356. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27357. {
  27358. side: {
  27359. height: math.unit(11, "feet"),
  27360. weight: math.unit(150, "lb"),
  27361. name: "Side",
  27362. image: {
  27363. source: "./media/characters/pyxaron/side.svg",
  27364. extra: 305 / 195,
  27365. bottom: 17 / 322
  27366. }
  27367. },
  27368. },
  27369. [
  27370. {
  27371. name: "Normal",
  27372. height: math.unit(11, "feet")
  27373. },
  27374. ]
  27375. ))
  27376. characterMakers.push(() => makeCharacter(
  27377. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27378. {
  27379. front: {
  27380. height: math.unit(6, "feet"),
  27381. weight: math.unit(150, "lb"),
  27382. name: "Front",
  27383. image: {
  27384. source: "./media/characters/meep/front.svg",
  27385. extra: 88 / 80,
  27386. bottom: 6 / 94
  27387. }
  27388. },
  27389. },
  27390. [
  27391. {
  27392. name: "Fun Sized",
  27393. height: math.unit(2, "inches"),
  27394. default: true
  27395. },
  27396. {
  27397. name: "Friend Sized",
  27398. height: math.unit(8, "inches")
  27399. },
  27400. ]
  27401. ))
  27402. characterMakers.push(() => makeCharacter(
  27403. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27404. {
  27405. front: {
  27406. height: math.unit(15, "feet"),
  27407. weight: math.unit(2500, "lb"),
  27408. name: "Front",
  27409. image: {
  27410. source: "./media/characters/holly-rabbit/front.svg",
  27411. extra: 1433 / 1233,
  27412. bottom: 125 / 1558
  27413. }
  27414. },
  27415. dick: {
  27416. height: math.unit(4.6, "feet"),
  27417. name: "Dick",
  27418. image: {
  27419. source: "./media/characters/holly-rabbit/dick.svg"
  27420. }
  27421. },
  27422. },
  27423. [
  27424. {
  27425. name: "Normal",
  27426. height: math.unit(15, "feet"),
  27427. default: true
  27428. },
  27429. {
  27430. name: "Macro",
  27431. height: math.unit(250, "feet")
  27432. },
  27433. {
  27434. name: "Macro+",
  27435. height: math.unit(2500, "feet")
  27436. },
  27437. ]
  27438. ))
  27439. characterMakers.push(() => makeCharacter(
  27440. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27441. {
  27442. front: {
  27443. height: math.unit(3.02, "meters"),
  27444. weight: math.unit(500, "kg"),
  27445. name: "Front",
  27446. image: {
  27447. source: "./media/characters/drena/front.svg",
  27448. extra: 282 / 243,
  27449. bottom: 8 / 290
  27450. }
  27451. },
  27452. side: {
  27453. height: math.unit(3.02, "meters"),
  27454. weight: math.unit(500, "kg"),
  27455. name: "Side",
  27456. image: {
  27457. source: "./media/characters/drena/side.svg",
  27458. extra: 280 / 245,
  27459. bottom: 10 / 290
  27460. }
  27461. },
  27462. back: {
  27463. height: math.unit(3.02, "meters"),
  27464. weight: math.unit(500, "kg"),
  27465. name: "Back",
  27466. image: {
  27467. source: "./media/characters/drena/back.svg",
  27468. extra: 278 / 243,
  27469. bottom: 2 / 280
  27470. }
  27471. },
  27472. foot: {
  27473. height: math.unit(0.75, "meters"),
  27474. name: "Foot",
  27475. image: {
  27476. source: "./media/characters/drena/foot.svg"
  27477. }
  27478. },
  27479. maw: {
  27480. height: math.unit(0.82, "meters"),
  27481. name: "Maw",
  27482. image: {
  27483. source: "./media/characters/drena/maw.svg"
  27484. }
  27485. },
  27486. rump: {
  27487. height: math.unit(0.93, "meters"),
  27488. name: "Rump",
  27489. image: {
  27490. source: "./media/characters/drena/rump.svg"
  27491. }
  27492. },
  27493. },
  27494. [
  27495. {
  27496. name: "Normal",
  27497. height: math.unit(3.02, "meters"),
  27498. default: true
  27499. },
  27500. ]
  27501. ))
  27502. characterMakers.push(() => makeCharacter(
  27503. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27504. {
  27505. front: {
  27506. height: math.unit(6 + 4 / 12, "feet"),
  27507. weight: math.unit(250, "lb"),
  27508. name: "Front",
  27509. image: {
  27510. source: "./media/characters/remmyzilla/front.svg",
  27511. extra: 4033 / 3588,
  27512. bottom: 123 / 4156
  27513. }
  27514. },
  27515. back: {
  27516. height: math.unit(6 + 4 / 12, "feet"),
  27517. weight: math.unit(250, "lb"),
  27518. name: "Back",
  27519. image: {
  27520. source: "./media/characters/remmyzilla/back.svg",
  27521. extra: 2687 / 2555,
  27522. bottom: 48 / 2735
  27523. }
  27524. },
  27525. frontFancy: {
  27526. height: math.unit(6 + 4 / 12, "feet"),
  27527. weight: math.unit(250, "lb"),
  27528. name: "Front (Fancy)",
  27529. image: {
  27530. source: "./media/characters/remmyzilla/front-fancy.svg",
  27531. extra: 4119 / 3419,
  27532. bottom: 237 / 4356
  27533. }
  27534. },
  27535. paw: {
  27536. height: math.unit(1.73, "feet"),
  27537. name: "Paw",
  27538. image: {
  27539. source: "./media/characters/remmyzilla/paw.svg"
  27540. }
  27541. },
  27542. maw: {
  27543. height: math.unit(1.73, "feet"),
  27544. name: "Maw",
  27545. image: {
  27546. source: "./media/characters/remmyzilla/maw.svg"
  27547. }
  27548. },
  27549. },
  27550. [
  27551. {
  27552. name: "Normal",
  27553. height: math.unit(6 + 4 / 12, "feet")
  27554. },
  27555. {
  27556. name: "Minimacro",
  27557. height: math.unit(12 + 8 / 12, "feet")
  27558. },
  27559. {
  27560. name: "Normal",
  27561. height: math.unit(640, "feet"),
  27562. default: true
  27563. },
  27564. {
  27565. name: "Megamacro",
  27566. height: math.unit(6400, "feet")
  27567. },
  27568. {
  27569. name: "Gigamacro",
  27570. height: math.unit(64000, "miles")
  27571. },
  27572. ]
  27573. ))
  27574. characterMakers.push(() => makeCharacter(
  27575. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27576. {
  27577. front: {
  27578. height: math.unit(2.5, "meters"),
  27579. weight: math.unit(300, "lb"),
  27580. name: "Front",
  27581. image: {
  27582. source: "./media/characters/lawrence/front.svg",
  27583. extra: 357 / 335,
  27584. bottom: 30 / 387
  27585. }
  27586. },
  27587. back: {
  27588. height: math.unit(2.5, "meters"),
  27589. weight: math.unit(300, "lb"),
  27590. name: "Back",
  27591. image: {
  27592. source: "./media/characters/lawrence/back.svg",
  27593. extra: 357 / 338,
  27594. bottom: 16 / 373
  27595. }
  27596. },
  27597. head: {
  27598. height: math.unit(0.9, "meter"),
  27599. name: "Head",
  27600. image: {
  27601. source: "./media/characters/lawrence/head.svg"
  27602. }
  27603. },
  27604. maw: {
  27605. height: math.unit(0.7, "meter"),
  27606. name: "Maw",
  27607. image: {
  27608. source: "./media/characters/lawrence/maw.svg"
  27609. }
  27610. },
  27611. footBottom: {
  27612. height: math.unit(0.5, "meter"),
  27613. name: "Foot (Bottom)",
  27614. image: {
  27615. source: "./media/characters/lawrence/foot-bottom.svg"
  27616. }
  27617. },
  27618. footTop: {
  27619. height: math.unit(0.5, "meter"),
  27620. name: "Foot (Top)",
  27621. image: {
  27622. source: "./media/characters/lawrence/foot-top.svg"
  27623. }
  27624. },
  27625. },
  27626. [
  27627. {
  27628. name: "Normal",
  27629. height: math.unit(2.5, "meters"),
  27630. default: true
  27631. },
  27632. {
  27633. name: "Macro",
  27634. height: math.unit(95, "meters")
  27635. },
  27636. {
  27637. name: "Megamacro",
  27638. height: math.unit(150, "km")
  27639. },
  27640. ]
  27641. ))
  27642. characterMakers.push(() => makeCharacter(
  27643. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27644. {
  27645. front: {
  27646. height: math.unit(4.2, "meters"),
  27647. name: "Front",
  27648. image: {
  27649. source: "./media/characters/sydney/front.svg",
  27650. extra: 1323 / 1277,
  27651. bottom: 111 / 1434
  27652. }
  27653. },
  27654. },
  27655. [
  27656. {
  27657. name: "Normal",
  27658. height: math.unit(4.2, "meters")
  27659. },
  27660. ]
  27661. ))
  27662. characterMakers.push(() => makeCharacter(
  27663. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27664. {
  27665. back: {
  27666. height: math.unit(201, "feet"),
  27667. name: "Back",
  27668. image: {
  27669. source: "./media/characters/jessica/back.svg",
  27670. extra: 273 / 259,
  27671. bottom: 7 / 280
  27672. }
  27673. },
  27674. },
  27675. [
  27676. {
  27677. name: "Normal",
  27678. height: math.unit(201, "feet"),
  27679. default: true
  27680. },
  27681. {
  27682. name: "Megamacro",
  27683. height: math.unit(8, "miles")
  27684. },
  27685. ]
  27686. ))
  27687. characterMakers.push(() => makeCharacter(
  27688. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27689. {
  27690. side: {
  27691. height: math.unit(320, "cm"),
  27692. name: "Side",
  27693. image: {
  27694. source: "./media/characters/victoria/side.svg",
  27695. extra: 778 / 346,
  27696. bottom: 56 / 834
  27697. }
  27698. },
  27699. maw: {
  27700. height: math.unit(5.9, "feet"),
  27701. name: "Maw",
  27702. image: {
  27703. source: "./media/characters/victoria/maw.svg"
  27704. }
  27705. },
  27706. },
  27707. [
  27708. {
  27709. name: "Normal",
  27710. height: math.unit(320, "cm"),
  27711. default: true
  27712. },
  27713. ]
  27714. ))
  27715. characterMakers.push(() => makeCharacter(
  27716. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27717. {
  27718. front: {
  27719. height: math.unit(5 + 6 / 12, "feet"),
  27720. name: "Front",
  27721. image: {
  27722. source: "./media/characters/cat/front.svg",
  27723. extra: 1374 / 1257,
  27724. bottom: 59 / 1433
  27725. }
  27726. },
  27727. back: {
  27728. height: math.unit(5 + 6 / 12, "feet"),
  27729. name: "Back",
  27730. image: {
  27731. source: "./media/characters/cat/back.svg",
  27732. extra: 1337 / 1226,
  27733. bottom: 34 / 1371
  27734. }
  27735. },
  27736. taur: {
  27737. height: math.unit(7, "feet"),
  27738. name: "Taur",
  27739. image: {
  27740. source: "./media/characters/cat/taur.svg",
  27741. extra: 1345 / 1231,
  27742. bottom: 66 / 1411
  27743. }
  27744. },
  27745. lucario: {
  27746. height: math.unit(4, "feet"),
  27747. name: "Lucario",
  27748. image: {
  27749. source: "./media/characters/cat/lucario.svg",
  27750. extra: 1470 / 1318,
  27751. bottom: 65 / 1535
  27752. }
  27753. },
  27754. megaLucario: {
  27755. height: math.unit(4, "feet"),
  27756. name: "Mega Lucario",
  27757. image: {
  27758. source: "./media/characters/cat/mega-lucario.svg",
  27759. extra: 1515 / 1319,
  27760. bottom: 63 / 1578
  27761. }
  27762. },
  27763. nickit: {
  27764. height: math.unit(2, "feet"),
  27765. name: "Nickit",
  27766. image: {
  27767. source: "./media/characters/cat/nickit.svg",
  27768. extra: 1980 / 1585,
  27769. bottom: 102 / 2082
  27770. }
  27771. },
  27772. lopunnyFront: {
  27773. height: math.unit(5, "feet"),
  27774. name: "Lopunny (Front)",
  27775. image: {
  27776. source: "./media/characters/cat/lopunny-front.svg",
  27777. extra: 1782 / 1469,
  27778. bottom: 38 / 1820
  27779. }
  27780. },
  27781. lopunnyBack: {
  27782. height: math.unit(5, "feet"),
  27783. name: "Lopunny (Back)",
  27784. image: {
  27785. source: "./media/characters/cat/lopunny-back.svg",
  27786. extra: 1660 / 1490,
  27787. bottom: 25 / 1685
  27788. }
  27789. },
  27790. },
  27791. [
  27792. {
  27793. name: "Really small",
  27794. height: math.unit(1, "nm")
  27795. },
  27796. {
  27797. name: "Micro",
  27798. height: math.unit(5, "inches")
  27799. },
  27800. {
  27801. name: "Normal",
  27802. height: math.unit(5 + 6 / 12, "feet"),
  27803. default: true
  27804. },
  27805. {
  27806. name: "Macro",
  27807. height: math.unit(50, "feet")
  27808. },
  27809. {
  27810. name: "Macro+",
  27811. height: math.unit(150, "feet")
  27812. },
  27813. {
  27814. name: "Megamacro",
  27815. height: math.unit(100, "miles")
  27816. },
  27817. ]
  27818. ))
  27819. characterMakers.push(() => makeCharacter(
  27820. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27821. {
  27822. front: {
  27823. height: math.unit(63.4, "meters"),
  27824. weight: math.unit(3.28349e+6, "kilograms"),
  27825. name: "Front",
  27826. image: {
  27827. source: "./media/characters/kirina-violet/front.svg",
  27828. extra: 2812/2725,
  27829. bottom: 0/2812
  27830. }
  27831. },
  27832. back: {
  27833. height: math.unit(63.4, "meters"),
  27834. weight: math.unit(3.28349e+6, "kilograms"),
  27835. name: "Back",
  27836. image: {
  27837. source: "./media/characters/kirina-violet/back.svg",
  27838. extra: 2812/2725,
  27839. bottom: 0/2812
  27840. }
  27841. },
  27842. mouth: {
  27843. height: math.unit(4.35, "meters"),
  27844. name: "Mouth",
  27845. image: {
  27846. source: "./media/characters/kirina-violet/mouth.svg"
  27847. }
  27848. },
  27849. paw: {
  27850. height: math.unit(5.6, "meters"),
  27851. name: "Paw",
  27852. image: {
  27853. source: "./media/characters/kirina-violet/paw.svg"
  27854. }
  27855. },
  27856. tail: {
  27857. height: math.unit(18, "meters"),
  27858. name: "Tail",
  27859. image: {
  27860. source: "./media/characters/kirina-violet/tail.svg"
  27861. }
  27862. },
  27863. },
  27864. [
  27865. {
  27866. name: "Macro",
  27867. height: math.unit(63.4, "meters"),
  27868. default: true
  27869. },
  27870. ]
  27871. ))
  27872. characterMakers.push(() => makeCharacter(
  27873. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  27874. {
  27875. front: {
  27876. height: math.unit(60, "feet"),
  27877. name: "Front",
  27878. image: {
  27879. source: "./media/characters/cat-gigachu/front.svg",
  27880. extra: 1024/780,
  27881. bottom: 23/1047
  27882. }
  27883. },
  27884. back: {
  27885. height: math.unit(60, "feet"),
  27886. name: "Back",
  27887. image: {
  27888. source: "./media/characters/cat-gigachu/back.svg",
  27889. extra: 1024/780,
  27890. bottom: 23/1047
  27891. }
  27892. },
  27893. },
  27894. [
  27895. {
  27896. name: "Dynamax",
  27897. height: math.unit(60, "feet"),
  27898. default: true
  27899. },
  27900. ]
  27901. ))
  27902. characterMakers.push(() => makeCharacter(
  27903. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  27904. {
  27905. front: {
  27906. height: math.unit(6, "feet"),
  27907. weight: math.unit(150, "lb"),
  27908. name: "Front",
  27909. image: {
  27910. source: "./media/characters/sfaiyan/front.svg",
  27911. extra: 999/978,
  27912. bottom: 5/1004
  27913. }
  27914. },
  27915. },
  27916. [
  27917. {
  27918. name: "Normal",
  27919. height: math.unit(1.82, "meters")
  27920. },
  27921. {
  27922. name: "Giant",
  27923. height: math.unit(2.27, "km"),
  27924. default: true
  27925. },
  27926. ]
  27927. ))
  27928. characterMakers.push(() => makeCharacter(
  27929. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  27930. {
  27931. front: {
  27932. height: math.unit(179, "cm"),
  27933. weight: math.unit(100, "kg"),
  27934. name: "Front",
  27935. image: {
  27936. source: "./media/characters/raunehkeli/front.svg",
  27937. extra: 1934/1926,
  27938. bottom: 0/1934
  27939. }
  27940. },
  27941. },
  27942. [
  27943. {
  27944. name: "Normal",
  27945. height: math.unit(179, "cm")
  27946. },
  27947. {
  27948. name: "Maximum",
  27949. height: math.unit(575, "meters"),
  27950. default: true
  27951. },
  27952. ]
  27953. ))
  27954. characterMakers.push(() => makeCharacter(
  27955. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  27956. {
  27957. front: {
  27958. height: math.unit(6, "feet"),
  27959. weight: math.unit(150, "lb"),
  27960. name: "Front",
  27961. image: {
  27962. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  27963. extra: 2625/2518,
  27964. bottom: 60/2685
  27965. }
  27966. },
  27967. },
  27968. [
  27969. {
  27970. name: "Normal",
  27971. height: math.unit(6 + 2/12, "feet"),
  27972. default: true
  27973. },
  27974. {
  27975. name: "Macro",
  27976. height: math.unit(1180, "feet")
  27977. },
  27978. ]
  27979. ))
  27980. characterMakers.push(() => makeCharacter(
  27981. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  27982. {
  27983. front: {
  27984. height: math.unit(5 + 6/12, "feet"),
  27985. weight: math.unit(108, "lb"),
  27986. name: "Front",
  27987. image: {
  27988. source: "./media/characters/lilith-zott/front.svg",
  27989. extra: 2510/2238,
  27990. bottom: 100/2610
  27991. }
  27992. },
  27993. frontDressed: {
  27994. height: math.unit(5 + 6/12, "feet"),
  27995. weight: math.unit(108, "lb"),
  27996. name: "Front (Dressed)",
  27997. image: {
  27998. source: "./media/characters/lilith-zott/front-dressed.svg",
  27999. extra: 2510/2238,
  28000. bottom: 100/2610
  28001. }
  28002. },
  28003. },
  28004. [
  28005. {
  28006. name: "Normal",
  28007. height: math.unit(5 + 6/12, "feet")
  28008. },
  28009. {
  28010. name: "Macro",
  28011. height: math.unit(200, "feet"),
  28012. default: true
  28013. },
  28014. {
  28015. name: "Macro+",
  28016. height: math.unit(1030, "feet")
  28017. },
  28018. ]
  28019. ))
  28020. characterMakers.push(() => makeCharacter(
  28021. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28022. {
  28023. front: {
  28024. height: math.unit(6, "feet"),
  28025. weight: math.unit(150, "lb"),
  28026. name: "Front",
  28027. image: {
  28028. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28029. extra: 2567/2435,
  28030. bottom: 39/2606
  28031. }
  28032. },
  28033. frontSuper: {
  28034. height: math.unit(6, "feet"),
  28035. name: "Front (Super)",
  28036. image: {
  28037. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28038. extra: 2567/2435,
  28039. bottom: 39/2606
  28040. }
  28041. },
  28042. },
  28043. [
  28044. {
  28045. name: "Normal",
  28046. height: math.unit(5 + 10/12, "feet")
  28047. },
  28048. {
  28049. name: "Macro",
  28050. height: math.unit(220, "feet"),
  28051. default: true
  28052. },
  28053. {
  28054. name: "Macro+",
  28055. height: math.unit(1100, "feet")
  28056. },
  28057. ]
  28058. ))
  28059. characterMakers.push(() => makeCharacter(
  28060. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28061. {
  28062. front: {
  28063. height: math.unit(100, "miles"),
  28064. name: "Front",
  28065. image: {
  28066. source: "./media/characters/sona/front.svg",
  28067. extra: 2433/2201,
  28068. bottom: 53/2486
  28069. }
  28070. },
  28071. foot: {
  28072. height: math.unit(16.1, "miles"),
  28073. name: "Foot",
  28074. image: {
  28075. source: "./media/characters/sona/foot.svg"
  28076. }
  28077. },
  28078. },
  28079. [
  28080. {
  28081. name: "Macro",
  28082. height: math.unit(100, "miles"),
  28083. default: true
  28084. },
  28085. ]
  28086. ))
  28087. characterMakers.push(() => makeCharacter(
  28088. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28089. {
  28090. front: {
  28091. height: math.unit(6, "feet"),
  28092. weight: math.unit(150, "lb"),
  28093. name: "Front",
  28094. image: {
  28095. source: "./media/characters/bailey/front.svg",
  28096. extra: 1778/1724,
  28097. bottom: 30/1808
  28098. }
  28099. },
  28100. },
  28101. [
  28102. {
  28103. name: "Micro",
  28104. height: math.unit(4, "inches")
  28105. },
  28106. {
  28107. name: "Normal",
  28108. height: math.unit(5 + 5/12, "feet"),
  28109. default: true
  28110. },
  28111. {
  28112. name: "Macro",
  28113. height: math.unit(250, "feet")
  28114. },
  28115. {
  28116. name: "Megamacro",
  28117. height: math.unit(100, "miles")
  28118. },
  28119. ]
  28120. ))
  28121. characterMakers.push(() => makeCharacter(
  28122. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28123. {
  28124. front: {
  28125. height: math.unit(5 + 2/12, "feet"),
  28126. weight: math.unit(120, "lb"),
  28127. name: "Front",
  28128. image: {
  28129. source: "./media/characters/snaps/front.svg",
  28130. extra: 2370/2177,
  28131. bottom: 48/2418
  28132. }
  28133. },
  28134. back: {
  28135. height: math.unit(5 + 2/12, "feet"),
  28136. weight: math.unit(120, "lb"),
  28137. name: "Back",
  28138. image: {
  28139. source: "./media/characters/snaps/back.svg",
  28140. extra: 2408/2258,
  28141. bottom: 15/2423
  28142. }
  28143. },
  28144. },
  28145. [
  28146. {
  28147. name: "Micro",
  28148. height: math.unit(9, "inches")
  28149. },
  28150. {
  28151. name: "Normal",
  28152. height: math.unit(5 + 2/12, "feet"),
  28153. default: true
  28154. },
  28155. {
  28156. name: "Mini Macro",
  28157. height: math.unit(10, "feet")
  28158. },
  28159. ]
  28160. ))
  28161. characterMakers.push(() => makeCharacter(
  28162. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28163. {
  28164. front: {
  28165. height: math.unit(1.8, "meters"),
  28166. weight: math.unit(85, "kg"),
  28167. name: "Front",
  28168. image: {
  28169. source: "./media/characters/azteck/front.svg",
  28170. extra: 2815/2625,
  28171. bottom: 89/2904
  28172. }
  28173. },
  28174. back: {
  28175. height: math.unit(1.8, "meters"),
  28176. weight: math.unit(85, "kg"),
  28177. name: "Back",
  28178. image: {
  28179. source: "./media/characters/azteck/back.svg",
  28180. extra: 2856/2648,
  28181. bottom: 85/2941
  28182. }
  28183. },
  28184. frontDressed: {
  28185. height: math.unit(1.8, "meters"),
  28186. weight: math.unit(85, "kg"),
  28187. name: "Front (Dressed)",
  28188. image: {
  28189. source: "./media/characters/azteck/front-dressed.svg",
  28190. extra: 2147/2003,
  28191. bottom: 68/2215
  28192. }
  28193. },
  28194. head: {
  28195. height: math.unit(0.47, "meters"),
  28196. weight: math.unit(85, "kg"),
  28197. name: "Head",
  28198. image: {
  28199. source: "./media/characters/azteck/head.svg"
  28200. }
  28201. },
  28202. },
  28203. [
  28204. {
  28205. name: "Bite sized",
  28206. height: math.unit(16, "cm")
  28207. },
  28208. {
  28209. name: "Normal",
  28210. height: math.unit(1.8, "meters"),
  28211. default: true
  28212. },
  28213. ]
  28214. ))
  28215. characterMakers.push(() => makeCharacter(
  28216. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28217. {
  28218. front: {
  28219. height: math.unit(6, "feet"),
  28220. weight: math.unit(150, "lb"),
  28221. name: "Front",
  28222. image: {
  28223. source: "./media/characters/pidge/front.svg",
  28224. extra: 620/588,
  28225. bottom: 9/629
  28226. }
  28227. },
  28228. back: {
  28229. height: math.unit(6, "feet"),
  28230. weight: math.unit(150, "lb"),
  28231. name: "Back",
  28232. image: {
  28233. source: "./media/characters/pidge/back.svg",
  28234. extra: 620/588,
  28235. bottom: 9/629
  28236. }
  28237. },
  28238. },
  28239. [
  28240. {
  28241. name: "Macro",
  28242. height: math.unit(1, "mile"),
  28243. default: true
  28244. },
  28245. ]
  28246. ))
  28247. characterMakers.push(() => makeCharacter(
  28248. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28249. {
  28250. front: {
  28251. height: math.unit(6, "feet"),
  28252. weight: math.unit(150, "lb"),
  28253. name: "Front",
  28254. image: {
  28255. source: "./media/characters/en/front.svg",
  28256. extra: 1697/1563,
  28257. bottom: 103/1800
  28258. }
  28259. },
  28260. back: {
  28261. height: math.unit(6, "feet"),
  28262. weight: math.unit(150, "lb"),
  28263. name: "Back",
  28264. image: {
  28265. source: "./media/characters/en/back.svg",
  28266. extra: 1700/1570,
  28267. bottom: 51/1751
  28268. }
  28269. },
  28270. frontDressed: {
  28271. height: math.unit(6, "feet"),
  28272. weight: math.unit(150, "lb"),
  28273. name: "Front (Dressed)",
  28274. image: {
  28275. source: "./media/characters/en/front-dressed.svg",
  28276. extra: 1697/1563,
  28277. bottom: 103/1800
  28278. }
  28279. },
  28280. backDressed: {
  28281. height: math.unit(6, "feet"),
  28282. weight: math.unit(150, "lb"),
  28283. name: "Back (Dressed)",
  28284. image: {
  28285. source: "./media/characters/en/back-dressed.svg",
  28286. extra: 1700/1570,
  28287. bottom: 51/1751
  28288. }
  28289. },
  28290. },
  28291. [
  28292. {
  28293. name: "Macro",
  28294. height: math.unit(210, "feet"),
  28295. default: true
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28301. {
  28302. front: {
  28303. height: math.unit(6, "feet"),
  28304. weight: math.unit(150, "lb"),
  28305. name: "Front",
  28306. image: {
  28307. source: "./media/characters/haze-orris/front.svg",
  28308. extra: 3975/3525,
  28309. bottom: 137/4112
  28310. }
  28311. },
  28312. },
  28313. [
  28314. {
  28315. name: "Micro",
  28316. height: math.unit(150, "mm"),
  28317. default: true
  28318. },
  28319. ]
  28320. ))
  28321. characterMakers.push(() => makeCharacter(
  28322. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28323. {
  28324. front: {
  28325. height: math.unit(6, "feet"),
  28326. weight: math.unit(150, "lb"),
  28327. name: "Front",
  28328. image: {
  28329. source: "./media/characters/casselene-yaro/front.svg",
  28330. extra: 4721/4541,
  28331. bottom: 82/4803
  28332. }
  28333. },
  28334. back: {
  28335. height: math.unit(6, "feet"),
  28336. weight: math.unit(150, "lb"),
  28337. name: "Back",
  28338. image: {
  28339. source: "./media/characters/casselene-yaro/back.svg",
  28340. extra: 4569/4377,
  28341. bottom: 69/4638
  28342. }
  28343. },
  28344. frontDressed: {
  28345. height: math.unit(6, "feet"),
  28346. weight: math.unit(150, "lb"),
  28347. name: "Front-dressed",
  28348. image: {
  28349. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28350. extra: 4721/4541,
  28351. bottom: 82/4803
  28352. }
  28353. },
  28354. },
  28355. [
  28356. {
  28357. name: "Macro",
  28358. height: math.unit(190, "feet")
  28359. },
  28360. ]
  28361. ))
  28362. characterMakers.push(() => makeCharacter(
  28363. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28364. {
  28365. front: {
  28366. height: math.unit(6, "feet"),
  28367. weight: math.unit(150, "lb"),
  28368. name: "Front",
  28369. image: {
  28370. source: "./media/characters/myra-rue-delore/front.svg",
  28371. extra: 1340/1308,
  28372. bottom: 67/1407
  28373. }
  28374. },
  28375. back: {
  28376. height: math.unit(6, "feet"),
  28377. weight: math.unit(150, "lb"),
  28378. name: "Back",
  28379. image: {
  28380. source: "./media/characters/myra-rue-delore/back.svg",
  28381. extra: 1341/1310,
  28382. bottom: 40/1381
  28383. }
  28384. },
  28385. frontDressed: {
  28386. height: math.unit(6, "feet"),
  28387. weight: math.unit(150, "lb"),
  28388. name: "Front (Dressed)",
  28389. image: {
  28390. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28391. extra: 1340/1308,
  28392. bottom: 67/1407
  28393. }
  28394. },
  28395. },
  28396. [
  28397. {
  28398. name: "Macro",
  28399. height: math.unit(150, "feet")
  28400. },
  28401. ]
  28402. ))
  28403. characterMakers.push(() => makeCharacter(
  28404. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28405. {
  28406. front: {
  28407. height: math.unit(10, "feet"),
  28408. weight: math.unit(15015, "lb"),
  28409. name: "Front",
  28410. image: {
  28411. source: "./media/characters/fem!plat/front.svg",
  28412. extra: 2799/2604,
  28413. bottom: 149/2948
  28414. }
  28415. },
  28416. },
  28417. [
  28418. {
  28419. name: "Normal",
  28420. height: math.unit(10, "feet"),
  28421. default: true
  28422. },
  28423. {
  28424. name: "Macro",
  28425. height: math.unit(100, "feet")
  28426. },
  28427. {
  28428. name: "Megamacro",
  28429. height: math.unit(1000, "feet")
  28430. },
  28431. ]
  28432. ))
  28433. characterMakers.push(() => makeCharacter(
  28434. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28435. {
  28436. front: {
  28437. height: math.unit(15 + 5/12, "feet"),
  28438. weight: math.unit(4600, "lb"),
  28439. name: "Front",
  28440. image: {
  28441. source: "./media/characters/neapolitan-ananassa/front.svg",
  28442. extra: 2903/2736,
  28443. bottom: 0/2903
  28444. }
  28445. },
  28446. side: {
  28447. height: math.unit(15 + 5/12, "feet"),
  28448. weight: math.unit(4600, "lb"),
  28449. name: "Side",
  28450. image: {
  28451. source: "./media/characters/neapolitan-ananassa/side.svg",
  28452. extra: 2925/2719,
  28453. bottom: 0/2925
  28454. }
  28455. },
  28456. back: {
  28457. height: math.unit(15 + 5/12, "feet"),
  28458. weight: math.unit(4600, "lb"),
  28459. name: "Back",
  28460. image: {
  28461. source: "./media/characters/neapolitan-ananassa/back.svg",
  28462. extra: 2903/2736,
  28463. bottom: 0/2903
  28464. }
  28465. },
  28466. },
  28467. [
  28468. {
  28469. name: "Normal",
  28470. height: math.unit(15 + 5/12, "feet"),
  28471. default: true
  28472. },
  28473. {
  28474. name: "Post-Millenium",
  28475. height: math.unit(35 + 5/12, "feet")
  28476. },
  28477. {
  28478. name: "Post-Era",
  28479. height: math.unit(450 + 5/12, "feet")
  28480. },
  28481. ]
  28482. ))
  28483. characterMakers.push(() => makeCharacter(
  28484. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28485. {
  28486. front: {
  28487. height: math.unit(300, "meters"),
  28488. weight: math.unit(125000, "tonnes"),
  28489. name: "Front",
  28490. image: {
  28491. source: "./media/characters/pazuzu/front.svg",
  28492. extra: 877/794,
  28493. bottom: 47/924
  28494. }
  28495. },
  28496. },
  28497. [
  28498. {
  28499. name: "Macro",
  28500. height: math.unit(300, "meters"),
  28501. default: true
  28502. },
  28503. ]
  28504. ))
  28505. characterMakers.push(() => makeCharacter(
  28506. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28507. {
  28508. side: {
  28509. height: math.unit(10 + 7/12, "feet"),
  28510. weight: math.unit(2.5, "tons"),
  28511. name: "Side",
  28512. image: {
  28513. source: "./media/characters/aasha/side.svg",
  28514. extra: 1345/1245,
  28515. bottom: 111/1456
  28516. }
  28517. },
  28518. back: {
  28519. height: math.unit(10 + 7/12, "feet"),
  28520. weight: math.unit(2.5, "tons"),
  28521. name: "Back",
  28522. image: {
  28523. source: "./media/characters/aasha/back.svg",
  28524. extra: 1133/1057,
  28525. bottom: 257/1390
  28526. }
  28527. },
  28528. },
  28529. [
  28530. {
  28531. name: "Normal",
  28532. height: math.unit(10 + 7/12, "feet"),
  28533. default: true
  28534. },
  28535. ]
  28536. ))
  28537. characterMakers.push(() => makeCharacter(
  28538. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28539. {
  28540. front: {
  28541. height: math.unit(6 + 3/12, "feet"),
  28542. name: "Front",
  28543. image: {
  28544. source: "./media/characters/nevan/front.svg",
  28545. extra: 704/704,
  28546. bottom: 28/732
  28547. }
  28548. },
  28549. back: {
  28550. height: math.unit(6 + 3/12, "feet"),
  28551. name: "Back",
  28552. image: {
  28553. source: "./media/characters/nevan/back.svg",
  28554. extra: 714/714,
  28555. bottom: 21/735
  28556. }
  28557. },
  28558. frontFlaccid: {
  28559. height: math.unit(6 + 3/12, "feet"),
  28560. name: "Front (Flaccid)",
  28561. image: {
  28562. source: "./media/characters/nevan/front-flaccid.svg",
  28563. extra: 704/704,
  28564. bottom: 28/732
  28565. }
  28566. },
  28567. frontErect: {
  28568. height: math.unit(6 + 3/12, "feet"),
  28569. name: "Front (Erect)",
  28570. image: {
  28571. source: "./media/characters/nevan/front-erect.svg",
  28572. extra: 704/704,
  28573. bottom: 28/732
  28574. }
  28575. },
  28576. backFlaccid: {
  28577. height: math.unit(6 + 3/12, "feet"),
  28578. name: "Back (Flaccid)",
  28579. image: {
  28580. source: "./media/characters/nevan/back-flaccid.svg",
  28581. extra: 714/714,
  28582. bottom: 21/735
  28583. }
  28584. },
  28585. },
  28586. [
  28587. {
  28588. name: "Normal",
  28589. height: math.unit(6 + 3/12, "feet"),
  28590. default: true
  28591. },
  28592. ]
  28593. ))
  28594. //characters
  28595. function makeCharacters() {
  28596. const results = [];
  28597. characterMakers.forEach(character => {
  28598. results.push(character());
  28599. });
  28600. return results;
  28601. }