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

31215 строки
783 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon", "candy"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. "ant": {
  1380. name: "Ant",
  1381. parents: ["insect"]
  1382. },
  1383. "frog": {
  1384. name: "Frog",
  1385. parents: ["amphibian"]
  1386. },
  1387. "amphibian": {
  1388. name: "Amphibian",
  1389. parents: ["animal"]
  1390. },
  1391. "pangolin": {
  1392. name: "Pangolin",
  1393. parents: ["mammal"]
  1394. },
  1395. "uragi'viidorn": {
  1396. name: "Uragi'viidorn",
  1397. parents: ["avian", "bear"]
  1398. },
  1399. "gryphdelphais": {
  1400. name: "Gryphdelphais",
  1401. parents: ["dolphin", "gryphon"]
  1402. },
  1403. "plush": {
  1404. name: "Plush",
  1405. parents: ["construct"]
  1406. },
  1407. "draiger": {
  1408. name: "Draiger",
  1409. parents: ["dragon","tiger"]
  1410. },
  1411. }
  1412. //species
  1413. function getSpeciesInfo(speciesList) {
  1414. let result = new Set();
  1415. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1416. result.add(entry)
  1417. });
  1418. return Array.from(result);
  1419. };
  1420. function getSpeciesInfoHelper(species) {
  1421. if (!speciesData[species]) {
  1422. console.warn(species + " doesn't exist");
  1423. return [];
  1424. }
  1425. if (speciesData[species].parents) {
  1426. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1427. } else {
  1428. return [species];
  1429. }
  1430. }
  1431. characterMakers.push(() => makeCharacter(
  1432. {
  1433. name: "Fen",
  1434. species: ["crux"],
  1435. description: {
  1436. title: "Bio",
  1437. text: "Very furry. Sheds on everything."
  1438. },
  1439. tags: [
  1440. "anthro",
  1441. "goo"
  1442. ]
  1443. },
  1444. {
  1445. back: {
  1446. height: math.unit(2.2428, "meter"),
  1447. weight: math.unit(124.738, "kg"),
  1448. name: "Back",
  1449. image: {
  1450. source: "./media/characters/fen/back.svg",
  1451. extra: 2024 / 1867,
  1452. bottom: 13 / 2037
  1453. },
  1454. info: {
  1455. description: {
  1456. mode: "append",
  1457. text: "\n\nHe is not currently looking at you."
  1458. }
  1459. }
  1460. },
  1461. full: {
  1462. height: math.unit(1.34, "meter"),
  1463. weight: math.unit(225, "kg"),
  1464. name: "Full",
  1465. image: {
  1466. source: "./media/characters/fen/full.svg"
  1467. },
  1468. info: {
  1469. description: {
  1470. mode: "append",
  1471. text: "\n\nMunch."
  1472. }
  1473. }
  1474. },
  1475. kneeling: {
  1476. height: math.unit(5.4, "feet"),
  1477. weight: math.unit(124.738, "kg"),
  1478. name: "Kneeling",
  1479. image: {
  1480. source: "./media/characters/fen/kneeling.svg",
  1481. extra: 563 / 507
  1482. }
  1483. },
  1484. goo: {
  1485. height: math.unit(2.8, "feet"),
  1486. weight: math.unit(125, "kg"),
  1487. capacity: math.unit(1, "people"),
  1488. name: "Goo",
  1489. image: {
  1490. source: "./media/characters/fen/goo.svg",
  1491. bottom: 116 / 613
  1492. }
  1493. },
  1494. lounging: {
  1495. height: math.unit(6.5, "feet"),
  1496. weight: math.unit(125, "kg"),
  1497. name: "Lounging",
  1498. image: {
  1499. source: "./media/characters/fen/lounging.svg"
  1500. }
  1501. },
  1502. },
  1503. [
  1504. {
  1505. name: "Normal",
  1506. height: math.unit(2.2428, "meter")
  1507. },
  1508. {
  1509. name: "Big",
  1510. height: math.unit(12, "feet")
  1511. },
  1512. {
  1513. name: "Minimacro",
  1514. height: math.unit(40, "feet"),
  1515. default: true,
  1516. info: {
  1517. description: {
  1518. mode: "append",
  1519. text: "\n\nTOO DAMN BIG"
  1520. }
  1521. }
  1522. },
  1523. {
  1524. name: "Macro",
  1525. height: math.unit(100, "feet"),
  1526. info: {
  1527. description: {
  1528. mode: "append",
  1529. text: "\n\nTOO DAMN BIG"
  1530. }
  1531. }
  1532. },
  1533. {
  1534. name: "Macro+",
  1535. height: math.unit(300, "feet")
  1536. },
  1537. {
  1538. name: "Megamacro",
  1539. height: math.unit(2, "miles")
  1540. }
  1541. ]
  1542. ))
  1543. characterMakers.push(() => makeCharacter(
  1544. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1545. {
  1546. front: {
  1547. height: math.unit(183, "cm"),
  1548. weight: math.unit(80, "kg"),
  1549. name: "Front",
  1550. image: {
  1551. source: "./media/characters/sofia-fluttertail/front.svg",
  1552. bottom: 0.01,
  1553. extra: 2154 / 2081
  1554. }
  1555. },
  1556. frontAlt: {
  1557. height: math.unit(183, "cm"),
  1558. weight: math.unit(80, "kg"),
  1559. name: "Front (alt)",
  1560. image: {
  1561. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1562. }
  1563. },
  1564. back: {
  1565. height: math.unit(183, "cm"),
  1566. weight: math.unit(80, "kg"),
  1567. name: "Back",
  1568. image: {
  1569. source: "./media/characters/sofia-fluttertail/back.svg"
  1570. }
  1571. },
  1572. kneeling: {
  1573. height: math.unit(125, "cm"),
  1574. weight: math.unit(80, "kg"),
  1575. name: "Kneeling",
  1576. image: {
  1577. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1578. extra: 1033 / 977,
  1579. bottom: 23.7 / 1057
  1580. }
  1581. },
  1582. maw: {
  1583. height: math.unit(183 / 5, "cm"),
  1584. name: "Maw",
  1585. image: {
  1586. source: "./media/characters/sofia-fluttertail/maw.svg"
  1587. }
  1588. },
  1589. mawcloseup: {
  1590. height: math.unit(183 / 5 * 0.41, "cm"),
  1591. name: "Maw (Closeup)",
  1592. image: {
  1593. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1594. }
  1595. },
  1596. paws: {
  1597. height: math.unit(1.17, "feet"),
  1598. name: "Paws",
  1599. image: {
  1600. source: "./media/characters/sofia-fluttertail/paws.svg",
  1601. extra: 851 / 851,
  1602. bottom: 17 / 868
  1603. }
  1604. },
  1605. },
  1606. [
  1607. {
  1608. name: "Normal",
  1609. height: math.unit(1.83, "meter")
  1610. },
  1611. {
  1612. name: "Size Thief",
  1613. height: math.unit(18, "feet")
  1614. },
  1615. {
  1616. name: "50 Foot Collie",
  1617. height: math.unit(50, "feet")
  1618. },
  1619. {
  1620. name: "Macro",
  1621. height: math.unit(96, "feet"),
  1622. default: true
  1623. },
  1624. {
  1625. name: "Megamerger",
  1626. height: math.unit(650, "feet")
  1627. },
  1628. ]
  1629. ))
  1630. characterMakers.push(() => makeCharacter(
  1631. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1632. {
  1633. front: {
  1634. height: math.unit(7, "feet"),
  1635. weight: math.unit(100, "kg"),
  1636. name: "Front",
  1637. image: {
  1638. source: "./media/characters/march/front.svg",
  1639. extra: 1,
  1640. bottom: 0.015
  1641. }
  1642. },
  1643. foot: {
  1644. height: math.unit(0.9, "feet"),
  1645. name: "Foot",
  1646. image: {
  1647. source: "./media/characters/march/foot.svg"
  1648. }
  1649. },
  1650. },
  1651. [
  1652. {
  1653. name: "Normal",
  1654. height: math.unit(7.9, "feet")
  1655. },
  1656. {
  1657. name: "Macro",
  1658. height: math.unit(220, "meters")
  1659. },
  1660. {
  1661. name: "Megamacro",
  1662. height: math.unit(2.98, "km"),
  1663. default: true
  1664. },
  1665. {
  1666. name: "Gigamacro",
  1667. height: math.unit(15963, "km")
  1668. },
  1669. {
  1670. name: "Teramacro",
  1671. height: math.unit(2980000000, "km")
  1672. },
  1673. {
  1674. name: "Examacro",
  1675. height: math.unit(250, "parsecs")
  1676. },
  1677. ]
  1678. ))
  1679. characterMakers.push(() => makeCharacter(
  1680. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1681. {
  1682. front: {
  1683. height: math.unit(6, "feet"),
  1684. weight: math.unit(60, "kg"),
  1685. name: "Front",
  1686. image: {
  1687. source: "./media/characters/noir/front.svg",
  1688. extra: 1,
  1689. bottom: 0.032
  1690. }
  1691. },
  1692. },
  1693. [
  1694. {
  1695. name: "Normal",
  1696. height: math.unit(6.6, "feet")
  1697. },
  1698. {
  1699. name: "Macro",
  1700. height: math.unit(500, "feet")
  1701. },
  1702. {
  1703. name: "Megamacro",
  1704. height: math.unit(2.5, "km"),
  1705. default: true
  1706. },
  1707. {
  1708. name: "Gigamacro",
  1709. height: math.unit(22500, "km")
  1710. },
  1711. {
  1712. name: "Teramacro",
  1713. height: math.unit(2500000000, "km")
  1714. },
  1715. {
  1716. name: "Examacro",
  1717. height: math.unit(200, "parsecs")
  1718. },
  1719. ]
  1720. ))
  1721. characterMakers.push(() => makeCharacter(
  1722. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1723. {
  1724. front: {
  1725. height: math.unit(7, "feet"),
  1726. weight: math.unit(100, "kg"),
  1727. name: "Front",
  1728. image: {
  1729. source: "./media/characters/okuri/front.svg",
  1730. extra: 1,
  1731. bottom: 0.037
  1732. }
  1733. },
  1734. back: {
  1735. height: math.unit(7, "feet"),
  1736. weight: math.unit(100, "kg"),
  1737. name: "Back",
  1738. image: {
  1739. source: "./media/characters/okuri/back.svg",
  1740. extra: 1,
  1741. bottom: 0.007
  1742. }
  1743. },
  1744. },
  1745. [
  1746. {
  1747. name: "Megamacro",
  1748. height: math.unit(100, "miles"),
  1749. default: true
  1750. },
  1751. ]
  1752. ))
  1753. characterMakers.push(() => makeCharacter(
  1754. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1755. {
  1756. front: {
  1757. height: math.unit(7, "feet"),
  1758. weight: math.unit(100, "kg"),
  1759. name: "Front",
  1760. image: {
  1761. source: "./media/characters/manny/front.svg",
  1762. extra: 1,
  1763. bottom: 0.06
  1764. }
  1765. },
  1766. back: {
  1767. height: math.unit(7, "feet"),
  1768. weight: math.unit(100, "kg"),
  1769. name: "Back",
  1770. image: {
  1771. source: "./media/characters/manny/back.svg",
  1772. extra: 1,
  1773. bottom: 0.014
  1774. }
  1775. },
  1776. },
  1777. [
  1778. {
  1779. name: "Normal",
  1780. height: math.unit(7, "feet"),
  1781. },
  1782. {
  1783. name: "Macro",
  1784. height: math.unit(78, "feet"),
  1785. default: true
  1786. },
  1787. {
  1788. name: "Macro+",
  1789. height: math.unit(300, "meters")
  1790. },
  1791. {
  1792. name: "Macro++",
  1793. height: math.unit(2400, "meters")
  1794. },
  1795. {
  1796. name: "Megamacro",
  1797. height: math.unit(5167, "meters")
  1798. },
  1799. {
  1800. name: "Gigamacro",
  1801. height: math.unit(41769, "miles")
  1802. },
  1803. ]
  1804. ))
  1805. characterMakers.push(() => makeCharacter(
  1806. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1807. {
  1808. front: {
  1809. height: math.unit(7, "feet"),
  1810. weight: math.unit(100, "kg"),
  1811. name: "Front",
  1812. image: {
  1813. source: "./media/characters/adake/front-1.svg"
  1814. }
  1815. },
  1816. frontAlt: {
  1817. height: math.unit(7, "feet"),
  1818. weight: math.unit(100, "kg"),
  1819. name: "Front (Alt)",
  1820. image: {
  1821. source: "./media/characters/adake/front-2.svg",
  1822. extra: 1,
  1823. bottom: 0.01
  1824. }
  1825. },
  1826. back: {
  1827. height: math.unit(7, "feet"),
  1828. weight: math.unit(100, "kg"),
  1829. name: "Back",
  1830. image: {
  1831. source: "./media/characters/adake/back.svg",
  1832. }
  1833. },
  1834. kneel: {
  1835. height: math.unit(5.385, "feet"),
  1836. weight: math.unit(100, "kg"),
  1837. name: "Kneeling",
  1838. image: {
  1839. source: "./media/characters/adake/kneel.svg",
  1840. bottom: 0.052
  1841. }
  1842. },
  1843. },
  1844. [
  1845. {
  1846. name: "Normal",
  1847. height: math.unit(7, "feet"),
  1848. },
  1849. {
  1850. name: "Macro",
  1851. height: math.unit(78, "feet"),
  1852. default: true
  1853. },
  1854. {
  1855. name: "Macro+",
  1856. height: math.unit(300, "meters")
  1857. },
  1858. {
  1859. name: "Macro++",
  1860. height: math.unit(2400, "meters")
  1861. },
  1862. {
  1863. name: "Megamacro",
  1864. height: math.unit(5167, "meters")
  1865. },
  1866. {
  1867. name: "Gigamacro",
  1868. height: math.unit(41769, "miles")
  1869. },
  1870. ]
  1871. ))
  1872. characterMakers.push(() => makeCharacter(
  1873. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1874. {
  1875. front: {
  1876. height: math.unit(1.65, "meters"),
  1877. weight: math.unit(50, "kg"),
  1878. name: "Front",
  1879. image: {
  1880. source: "./media/characters/elijah/front.svg",
  1881. extra: 858 / 830,
  1882. bottom: 95.5 / 953.8559
  1883. }
  1884. },
  1885. back: {
  1886. height: math.unit(1.65, "meters"),
  1887. weight: math.unit(50, "kg"),
  1888. name: "Back",
  1889. image: {
  1890. source: "./media/characters/elijah/back.svg",
  1891. extra: 895 / 850,
  1892. bottom: 5.3 / 897.956
  1893. }
  1894. },
  1895. frontNsfw: {
  1896. height: math.unit(1.65, "meters"),
  1897. weight: math.unit(50, "kg"),
  1898. name: "Front (NSFW)",
  1899. image: {
  1900. source: "./media/characters/elijah/front-nsfw.svg",
  1901. extra: 858 / 830,
  1902. bottom: 95.5 / 953.8559
  1903. }
  1904. },
  1905. backNsfw: {
  1906. height: math.unit(1.65, "meters"),
  1907. weight: math.unit(50, "kg"),
  1908. name: "Back (NSFW)",
  1909. image: {
  1910. source: "./media/characters/elijah/back-nsfw.svg",
  1911. extra: 895 / 850,
  1912. bottom: 5.3 / 897.956
  1913. }
  1914. },
  1915. dick: {
  1916. height: math.unit(1, "feet"),
  1917. name: "Dick",
  1918. image: {
  1919. source: "./media/characters/elijah/dick.svg"
  1920. }
  1921. },
  1922. beakOpen: {
  1923. height: math.unit(1.25, "feet"),
  1924. name: "Beak (Open)",
  1925. image: {
  1926. source: "./media/characters/elijah/beak-open.svg"
  1927. }
  1928. },
  1929. beakShut: {
  1930. height: math.unit(1.25, "feet"),
  1931. name: "Beak (Shut)",
  1932. image: {
  1933. source: "./media/characters/elijah/beak-shut.svg"
  1934. }
  1935. },
  1936. footFlexing: {
  1937. height: math.unit(1.61, "feet"),
  1938. name: "Foot (Flexing)",
  1939. image: {
  1940. source: "./media/characters/elijah/foot-flexing.svg"
  1941. }
  1942. },
  1943. footStepping: {
  1944. height: math.unit(1.44, "feet"),
  1945. name: "Foot (Stepping)",
  1946. image: {
  1947. source: "./media/characters/elijah/foot-stepping.svg"
  1948. }
  1949. },
  1950. plantigradeLeg: {
  1951. height: math.unit(2.34, "feet"),
  1952. name: "Plantigrade Leg",
  1953. image: {
  1954. source: "./media/characters/elijah/plantigrade-leg.svg"
  1955. }
  1956. },
  1957. plantigradeFootLeft: {
  1958. height: math.unit(0.9, "feet"),
  1959. name: "Plantigrade Foot (Left)",
  1960. image: {
  1961. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1962. }
  1963. },
  1964. plantigradeFootRight: {
  1965. height: math.unit(0.9, "feet"),
  1966. name: "Plantigrade Foot (Right)",
  1967. image: {
  1968. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1969. }
  1970. },
  1971. },
  1972. [
  1973. {
  1974. name: "Normal",
  1975. height: math.unit(1.65, "meters")
  1976. },
  1977. {
  1978. name: "Macro",
  1979. height: math.unit(55, "meters"),
  1980. default: true
  1981. },
  1982. {
  1983. name: "Macro+",
  1984. height: math.unit(105, "meters")
  1985. },
  1986. ]
  1987. ))
  1988. characterMakers.push(() => makeCharacter(
  1989. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1990. {
  1991. front: {
  1992. height: math.unit(11, "feet"),
  1993. weight: math.unit(80, "kg"),
  1994. name: "Front",
  1995. image: {
  1996. source: "./media/characters/rai/front.svg",
  1997. extra: 1,
  1998. bottom: 0.03
  1999. }
  2000. },
  2001. side: {
  2002. height: math.unit(11, "feet"),
  2003. weight: math.unit(80, "kg"),
  2004. name: "Side",
  2005. image: {
  2006. source: "./media/characters/rai/side.svg"
  2007. }
  2008. },
  2009. back: {
  2010. height: math.unit(11, "feet"),
  2011. weight: math.unit(80, "lb"),
  2012. name: "Back",
  2013. image: {
  2014. source: "./media/characters/rai/back.svg",
  2015. extra: 1,
  2016. bottom: 0.01
  2017. }
  2018. },
  2019. feral: {
  2020. height: math.unit(11, "feet"),
  2021. weight: math.unit(800, "lb"),
  2022. name: "Feral",
  2023. image: {
  2024. source: "./media/characters/rai/feral.svg",
  2025. extra: 1050 / 659,
  2026. bottom: 0.07
  2027. }
  2028. },
  2029. dragon: {
  2030. height: math.unit(23, "feet"),
  2031. weight: math.unit(50000, "lb"),
  2032. name: "Dragon",
  2033. image: {
  2034. source: "./media/characters/rai/dragon.svg",
  2035. extra: 2498 / 2030,
  2036. bottom: 85.2 / 2584
  2037. }
  2038. },
  2039. maw: {
  2040. height: math.unit(6 / 3.81416, "feet"),
  2041. name: "Maw",
  2042. image: {
  2043. source: "./media/characters/rai/maw.svg"
  2044. }
  2045. },
  2046. },
  2047. [
  2048. {
  2049. name: "Normal",
  2050. height: math.unit(11, "feet")
  2051. },
  2052. {
  2053. name: "Macro",
  2054. height: math.unit(302, "feet"),
  2055. default: true
  2056. },
  2057. ]
  2058. ))
  2059. characterMakers.push(() => makeCharacter(
  2060. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2061. {
  2062. frontDressed: {
  2063. height: math.unit(216, "feet"),
  2064. weight: math.unit(7000000, "lb"),
  2065. name: "Front (Dressed)",
  2066. image: {
  2067. source: "./media/characters/jazzy/front-dressed.svg",
  2068. extra: 2738 / 2651,
  2069. bottom: 41.8 / 2786
  2070. }
  2071. },
  2072. backDressed: {
  2073. height: math.unit(216, "feet"),
  2074. weight: math.unit(7000000, "lb"),
  2075. name: "Back (Dressed)",
  2076. image: {
  2077. source: "./media/characters/jazzy/back-dressed.svg",
  2078. extra: 2775 / 2673,
  2079. bottom: 36.8 / 2817
  2080. }
  2081. },
  2082. front: {
  2083. height: math.unit(216, "feet"),
  2084. weight: math.unit(7000000, "lb"),
  2085. name: "Front",
  2086. image: {
  2087. source: "./media/characters/jazzy/front.svg",
  2088. extra: 2738 / 2651,
  2089. bottom: 41.8 / 2786
  2090. }
  2091. },
  2092. back: {
  2093. height: math.unit(216, "feet"),
  2094. weight: math.unit(7000000, "lb"),
  2095. name: "Back",
  2096. image: {
  2097. source: "./media/characters/jazzy/back.svg",
  2098. extra: 2775 / 2673,
  2099. bottom: 36.8 / 2817
  2100. }
  2101. },
  2102. maw: {
  2103. height: math.unit(20, "feet"),
  2104. name: "Maw",
  2105. image: {
  2106. source: "./media/characters/jazzy/maw.svg"
  2107. }
  2108. },
  2109. paws: {
  2110. height: math.unit(27.5, "feet"),
  2111. name: "Paws",
  2112. image: {
  2113. source: "./media/characters/jazzy/paws.svg"
  2114. }
  2115. },
  2116. eye: {
  2117. height: math.unit(4.4, "feet"),
  2118. name: "Eye",
  2119. image: {
  2120. source: "./media/characters/jazzy/eye.svg"
  2121. }
  2122. },
  2123. droneOffense: {
  2124. height: math.unit(9.5, "inches"),
  2125. name: "Drone (Offense)",
  2126. image: {
  2127. source: "./media/characters/jazzy/drone-offense.svg"
  2128. }
  2129. },
  2130. droneRecon: {
  2131. height: math.unit(9.5, "inches"),
  2132. name: "Drone (Recon)",
  2133. image: {
  2134. source: "./media/characters/jazzy/drone-recon.svg"
  2135. }
  2136. },
  2137. droneDefense: {
  2138. height: math.unit(9.5, "inches"),
  2139. name: "Drone (Defense)",
  2140. image: {
  2141. source: "./media/characters/jazzy/drone-defense.svg"
  2142. }
  2143. },
  2144. },
  2145. [
  2146. {
  2147. name: "Macro",
  2148. height: math.unit(216, "feet"),
  2149. default: true
  2150. },
  2151. ]
  2152. ))
  2153. characterMakers.push(() => makeCharacter(
  2154. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2155. {
  2156. front: {
  2157. height: math.unit(7, "feet"),
  2158. weight: math.unit(80, "kg"),
  2159. name: "Front",
  2160. image: {
  2161. source: "./media/characters/flamm/front.svg",
  2162. extra: 1794 / 1677,
  2163. bottom: 31.7 / 1828.5
  2164. }
  2165. },
  2166. },
  2167. [
  2168. {
  2169. name: "Normal",
  2170. height: math.unit(9.5, "feet")
  2171. },
  2172. {
  2173. name: "Macro",
  2174. height: math.unit(200, "feet"),
  2175. default: true
  2176. },
  2177. ]
  2178. ))
  2179. characterMakers.push(() => makeCharacter(
  2180. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2181. {
  2182. front: {
  2183. height: math.unit(7, "feet"),
  2184. weight: math.unit(80, "kg"),
  2185. name: "Front",
  2186. image: {
  2187. source: "./media/characters/zephiro/front.svg",
  2188. extra: 2309 / 2162,
  2189. bottom: 0.069
  2190. }
  2191. },
  2192. side: {
  2193. height: math.unit(7, "feet"),
  2194. weight: math.unit(80, "kg"),
  2195. name: "Side",
  2196. image: {
  2197. source: "./media/characters/zephiro/side.svg",
  2198. extra: 2403 / 2279,
  2199. bottom: 0.015
  2200. }
  2201. },
  2202. back: {
  2203. height: math.unit(7, "feet"),
  2204. weight: math.unit(80, "kg"),
  2205. name: "Back",
  2206. image: {
  2207. source: "./media/characters/zephiro/back.svg",
  2208. extra: 2373 / 2244,
  2209. bottom: 0.013
  2210. }
  2211. },
  2212. },
  2213. [
  2214. {
  2215. name: "Micro",
  2216. height: math.unit(3, "inches")
  2217. },
  2218. {
  2219. name: "Normal",
  2220. height: math.unit(5 + 3 / 12, "feet"),
  2221. default: true
  2222. },
  2223. {
  2224. name: "Macro",
  2225. height: math.unit(118, "feet")
  2226. },
  2227. ]
  2228. ))
  2229. characterMakers.push(() => makeCharacter(
  2230. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2231. {
  2232. front: {
  2233. height: math.unit(5, "feet"),
  2234. weight: math.unit(90, "kg"),
  2235. name: "Front",
  2236. image: {
  2237. source: "./media/characters/fory/front.svg",
  2238. extra: 2862 / 2674,
  2239. bottom: 180 / 3043.8
  2240. }
  2241. },
  2242. back: {
  2243. height: math.unit(5, "feet"),
  2244. weight: math.unit(90, "kg"),
  2245. name: "Back",
  2246. image: {
  2247. source: "./media/characters/fory/back.svg",
  2248. extra: 2962 / 2791,
  2249. bottom: 106 / 3071.8
  2250. }
  2251. },
  2252. foot: {
  2253. height: math.unit(2.14, "feet"),
  2254. name: "Foot",
  2255. image: {
  2256. source: "./media/characters/fory/foot.svg"
  2257. }
  2258. },
  2259. },
  2260. [
  2261. {
  2262. name: "Normal",
  2263. height: math.unit(5, "feet")
  2264. },
  2265. {
  2266. name: "Macro",
  2267. height: math.unit(50, "feet"),
  2268. default: true
  2269. },
  2270. {
  2271. name: "Megamacro",
  2272. height: math.unit(10, "miles")
  2273. },
  2274. {
  2275. name: "Gigamacro",
  2276. height: math.unit(5, "earths")
  2277. },
  2278. ]
  2279. ))
  2280. characterMakers.push(() => makeCharacter(
  2281. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2282. {
  2283. front: {
  2284. height: math.unit(7, "feet"),
  2285. weight: math.unit(90, "kg"),
  2286. name: "Front",
  2287. image: {
  2288. source: "./media/characters/kurrikage/front.svg",
  2289. extra: 1,
  2290. bottom: 0.035
  2291. }
  2292. },
  2293. back: {
  2294. height: math.unit(7, "feet"),
  2295. weight: math.unit(90, "lb"),
  2296. name: "Back",
  2297. image: {
  2298. source: "./media/characters/kurrikage/back.svg"
  2299. }
  2300. },
  2301. paw: {
  2302. height: math.unit(1.5, "feet"),
  2303. name: "Paw",
  2304. image: {
  2305. source: "./media/characters/kurrikage/paw.svg"
  2306. }
  2307. },
  2308. staff: {
  2309. height: math.unit(6.7, "feet"),
  2310. name: "Staff",
  2311. image: {
  2312. source: "./media/characters/kurrikage/staff.svg"
  2313. }
  2314. },
  2315. peek: {
  2316. height: math.unit(1.05, "feet"),
  2317. name: "Peeking",
  2318. image: {
  2319. source: "./media/characters/kurrikage/peek.svg",
  2320. bottom: 0.08
  2321. }
  2322. },
  2323. },
  2324. [
  2325. {
  2326. name: "Normal",
  2327. height: math.unit(12, "feet"),
  2328. default: true
  2329. },
  2330. {
  2331. name: "Big",
  2332. height: math.unit(20, "feet")
  2333. },
  2334. {
  2335. name: "Macro",
  2336. height: math.unit(500, "feet")
  2337. },
  2338. {
  2339. name: "Megamacro",
  2340. height: math.unit(20, "miles")
  2341. },
  2342. ]
  2343. ))
  2344. characterMakers.push(() => makeCharacter(
  2345. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2346. {
  2347. front: {
  2348. height: math.unit(6, "feet"),
  2349. weight: math.unit(75, "kg"),
  2350. name: "Front",
  2351. image: {
  2352. source: "./media/characters/shingo/front.svg",
  2353. extra: 3511 / 3338,
  2354. bottom: 0.005
  2355. }
  2356. },
  2357. paw: {
  2358. height: math.unit(1, "feet"),
  2359. name: "Paw",
  2360. image: {
  2361. source: "./media/characters/shingo/paw.svg"
  2362. }
  2363. },
  2364. },
  2365. [
  2366. {
  2367. name: "Micro",
  2368. height: math.unit(4, "inches")
  2369. },
  2370. {
  2371. name: "Normal",
  2372. height: math.unit(6, "feet"),
  2373. default: true
  2374. },
  2375. {
  2376. name: "Macro",
  2377. height: math.unit(108, "feet")
  2378. }
  2379. ]
  2380. ))
  2381. characterMakers.push(() => makeCharacter(
  2382. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2383. {
  2384. side: {
  2385. height: math.unit(6, "feet"),
  2386. weight: math.unit(75, "kg"),
  2387. name: "Side",
  2388. image: {
  2389. source: "./media/characters/aigey/side.svg"
  2390. }
  2391. },
  2392. },
  2393. [
  2394. {
  2395. name: "Macro",
  2396. height: math.unit(200, "feet"),
  2397. default: true
  2398. },
  2399. {
  2400. name: "Megamacro",
  2401. height: math.unit(100, "miles")
  2402. },
  2403. ]
  2404. )
  2405. )
  2406. characterMakers.push(() => makeCharacter(
  2407. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2408. {
  2409. front: {
  2410. height: math.unit(5 + 5 / 12, "feet"),
  2411. weight: math.unit(75, "kg"),
  2412. name: "Front",
  2413. image: {
  2414. source: "./media/characters/natasha/front.svg",
  2415. extra: 859 / 824,
  2416. bottom: 23 / 879.6
  2417. }
  2418. },
  2419. frontNsfw: {
  2420. height: math.unit(5 + 5 / 12, "feet"),
  2421. weight: math.unit(75, "kg"),
  2422. name: "Front (NSFW)",
  2423. image: {
  2424. source: "./media/characters/natasha/front-nsfw.svg",
  2425. extra: 859 / 824,
  2426. bottom: 23 / 879.6
  2427. }
  2428. },
  2429. frontErect: {
  2430. height: math.unit(5 + 5 / 12, "feet"),
  2431. weight: math.unit(75, "kg"),
  2432. name: "Front (Erect)",
  2433. image: {
  2434. source: "./media/characters/natasha/front-erect.svg",
  2435. extra: 859 / 824,
  2436. bottom: 23 / 879.6
  2437. }
  2438. },
  2439. back: {
  2440. height: math.unit(5 + 5 / 12, "feet"),
  2441. weight: math.unit(75, "kg"),
  2442. name: "Back",
  2443. image: {
  2444. source: "./media/characters/natasha/back.svg",
  2445. extra: 887.9 / 852.6,
  2446. bottom: 9.7 / 896.4
  2447. }
  2448. },
  2449. backAlt: {
  2450. height: math.unit(5 + 5 / 12, "feet"),
  2451. weight: math.unit(75, "kg"),
  2452. name: "Back (Alt)",
  2453. image: {
  2454. source: "./media/characters/natasha/back-alt.svg",
  2455. extra: 1236.7 / 1192,
  2456. bottom: 22.3 / 1258.2
  2457. }
  2458. },
  2459. dick: {
  2460. height: math.unit(1.772, "feet"),
  2461. name: "Dick",
  2462. image: {
  2463. source: "./media/characters/natasha/dick.svg"
  2464. }
  2465. },
  2466. paw: {
  2467. height: math.unit(0.250, "meters"),
  2468. name: "Paw",
  2469. image: {
  2470. source: "./media/characters/natasha/paw.svg"
  2471. }
  2472. },
  2473. },
  2474. [
  2475. {
  2476. name: "Normal",
  2477. height: math.unit(5 + 5 / 12, "feet")
  2478. },
  2479. {
  2480. name: "Large",
  2481. height: math.unit(12, "feet")
  2482. },
  2483. {
  2484. name: "Macro",
  2485. height: math.unit(100, "feet"),
  2486. default: true
  2487. },
  2488. {
  2489. name: "Macro+",
  2490. height: math.unit(260, "feet")
  2491. },
  2492. {
  2493. name: "Macro++",
  2494. height: math.unit(1, "mile")
  2495. },
  2496. ]
  2497. ))
  2498. characterMakers.push(() => makeCharacter(
  2499. { name: "Malik", species: ["hyena"], 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/malik/front.svg"
  2507. }
  2508. },
  2509. side: {
  2510. height: math.unit(6, "feet"),
  2511. weight: math.unit(75, "kg"),
  2512. name: "Side",
  2513. image: {
  2514. source: "./media/characters/malik/side.svg",
  2515. extra: 1.1539
  2516. }
  2517. },
  2518. back: {
  2519. height: math.unit(6, "feet"),
  2520. weight: math.unit(75, "kg"),
  2521. name: "Back",
  2522. image: {
  2523. source: "./media/characters/malik/back.svg"
  2524. }
  2525. },
  2526. },
  2527. [
  2528. {
  2529. name: "Macro",
  2530. height: math.unit(156, "feet"),
  2531. default: true
  2532. },
  2533. {
  2534. name: "Macro+",
  2535. height: math.unit(1188, "feet")
  2536. },
  2537. ]
  2538. ))
  2539. characterMakers.push(() => makeCharacter(
  2540. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2541. {
  2542. front: {
  2543. height: math.unit(6, "feet"),
  2544. weight: math.unit(75, "kg"),
  2545. name: "Front",
  2546. image: {
  2547. source: "./media/characters/sefer/front.svg",
  2548. extra: 848 / 659,
  2549. bottom: 28.3 / 876.442
  2550. }
  2551. },
  2552. back: {
  2553. height: math.unit(6, "feet"),
  2554. weight: math.unit(75, "kg"),
  2555. name: "Back",
  2556. image: {
  2557. source: "./media/characters/sefer/back.svg",
  2558. extra: 864 / 695,
  2559. bottom: 10 / 871
  2560. }
  2561. },
  2562. frontDressed: {
  2563. height: math.unit(6, "feet"),
  2564. weight: math.unit(75, "kg"),
  2565. name: "Front (Dressed)",
  2566. image: {
  2567. source: "./media/characters/sefer/front-dressed.svg",
  2568. extra: 839 / 653,
  2569. bottom: 37.6 / 878
  2570. }
  2571. },
  2572. },
  2573. [
  2574. {
  2575. name: "Normal",
  2576. height: math.unit(6, "feet"),
  2577. default: true
  2578. },
  2579. ]
  2580. ))
  2581. characterMakers.push(() => makeCharacter(
  2582. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2583. {
  2584. body: {
  2585. height: math.unit(2.2428, "meter"),
  2586. weight: math.unit(124.738, "kg"),
  2587. name: "Body",
  2588. image: {
  2589. extra: 1225 / 1050,
  2590. source: "./media/characters/north/front.svg"
  2591. }
  2592. }
  2593. },
  2594. [
  2595. {
  2596. name: "Micro",
  2597. height: math.unit(4, "inches")
  2598. },
  2599. {
  2600. name: "Macro",
  2601. height: math.unit(63, "meters")
  2602. },
  2603. {
  2604. name: "Megamacro",
  2605. height: math.unit(101, "miles"),
  2606. default: true
  2607. }
  2608. ]
  2609. ))
  2610. characterMakers.push(() => makeCharacter(
  2611. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2612. {
  2613. angled: {
  2614. height: math.unit(4, "meter"),
  2615. weight: math.unit(150, "kg"),
  2616. name: "Angled",
  2617. image: {
  2618. source: "./media/characters/talan/angled-sfw.svg",
  2619. bottom: 29 / 3734
  2620. }
  2621. },
  2622. angledNsfw: {
  2623. height: math.unit(4, "meter"),
  2624. weight: math.unit(150, "kg"),
  2625. name: "Angled (NSFW)",
  2626. image: {
  2627. source: "./media/characters/talan/angled-nsfw.svg",
  2628. bottom: 29 / 3734
  2629. }
  2630. },
  2631. frontNsfw: {
  2632. height: math.unit(4, "meter"),
  2633. weight: math.unit(150, "kg"),
  2634. name: "Front (NSFW)",
  2635. image: {
  2636. source: "./media/characters/talan/front-nsfw.svg",
  2637. bottom: 29 / 3734
  2638. }
  2639. },
  2640. sideNsfw: {
  2641. height: math.unit(4, "meter"),
  2642. weight: math.unit(150, "kg"),
  2643. name: "Side (NSFW)",
  2644. image: {
  2645. source: "./media/characters/talan/side-nsfw.svg",
  2646. bottom: 29 / 3734
  2647. }
  2648. },
  2649. back: {
  2650. height: math.unit(4, "meter"),
  2651. weight: math.unit(150, "kg"),
  2652. name: "Back",
  2653. image: {
  2654. source: "./media/characters/talan/back.svg"
  2655. }
  2656. },
  2657. dickBottom: {
  2658. height: math.unit(0.621, "meter"),
  2659. name: "Dick (Bottom)",
  2660. image: {
  2661. source: "./media/characters/talan/dick-bottom.svg"
  2662. }
  2663. },
  2664. dickTop: {
  2665. height: math.unit(0.621, "meter"),
  2666. name: "Dick (Top)",
  2667. image: {
  2668. source: "./media/characters/talan/dick-top.svg"
  2669. }
  2670. },
  2671. dickSide: {
  2672. height: math.unit(0.305, "meter"),
  2673. name: "Dick (Side)",
  2674. image: {
  2675. source: "./media/characters/talan/dick-side.svg"
  2676. }
  2677. },
  2678. dickFront: {
  2679. height: math.unit(0.305, "meter"),
  2680. name: "Dick (Front)",
  2681. image: {
  2682. source: "./media/characters/talan/dick-front.svg"
  2683. }
  2684. },
  2685. },
  2686. [
  2687. {
  2688. name: "Normal",
  2689. height: math.unit(4, "meters")
  2690. },
  2691. {
  2692. name: "Macro",
  2693. height: math.unit(100, "meters")
  2694. },
  2695. {
  2696. name: "Megamacro",
  2697. height: math.unit(2, "miles"),
  2698. default: true
  2699. },
  2700. {
  2701. name: "Gigamacro",
  2702. height: math.unit(5000, "miles")
  2703. },
  2704. {
  2705. name: "Teramacro",
  2706. height: math.unit(100, "parsecs")
  2707. }
  2708. ]
  2709. ))
  2710. characterMakers.push(() => makeCharacter(
  2711. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2712. {
  2713. front: {
  2714. height: math.unit(2, "meter"),
  2715. weight: math.unit(90, "kg"),
  2716. name: "Front",
  2717. image: {
  2718. source: "./media/characters/gael'rathus/front.svg"
  2719. }
  2720. },
  2721. frontAlt: {
  2722. height: math.unit(2, "meter"),
  2723. weight: math.unit(90, "kg"),
  2724. name: "Front (alt)",
  2725. image: {
  2726. source: "./media/characters/gael'rathus/front-alt.svg"
  2727. }
  2728. },
  2729. frontAlt2: {
  2730. height: math.unit(2, "meter"),
  2731. weight: math.unit(90, "kg"),
  2732. name: "Front (alt 2)",
  2733. image: {
  2734. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2735. }
  2736. }
  2737. },
  2738. [
  2739. {
  2740. name: "Normal",
  2741. height: math.unit(9, "feet"),
  2742. default: true
  2743. },
  2744. {
  2745. name: "Large",
  2746. height: math.unit(25, "feet")
  2747. },
  2748. {
  2749. name: "Macro",
  2750. height: math.unit(0.25, "miles")
  2751. },
  2752. {
  2753. name: "Megamacro",
  2754. height: math.unit(10, "miles")
  2755. }
  2756. ]
  2757. ))
  2758. characterMakers.push(() => makeCharacter(
  2759. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2760. {
  2761. side: {
  2762. height: math.unit(2, "meter"),
  2763. weight: math.unit(140, "kg"),
  2764. name: "Side",
  2765. image: {
  2766. source: "./media/characters/sosha/side.svg",
  2767. bottom: 0.042
  2768. }
  2769. },
  2770. },
  2771. [
  2772. {
  2773. name: "Normal",
  2774. height: math.unit(12, "feet"),
  2775. default: true
  2776. }
  2777. ]
  2778. ))
  2779. characterMakers.push(() => makeCharacter(
  2780. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2781. {
  2782. side: {
  2783. height: math.unit(5 + 5 / 12, "feet"),
  2784. weight: math.unit(170, "kg"),
  2785. name: "Side",
  2786. image: {
  2787. source: "./media/characters/runnola/side.svg",
  2788. extra: 741 / 448,
  2789. bottom: 0.05
  2790. }
  2791. },
  2792. },
  2793. [
  2794. {
  2795. name: "Small",
  2796. height: math.unit(3, "feet")
  2797. },
  2798. {
  2799. name: "Normal",
  2800. height: math.unit(5 + 5 / 12, "feet"),
  2801. default: true
  2802. },
  2803. {
  2804. name: "Big",
  2805. height: math.unit(10, "feet")
  2806. },
  2807. ]
  2808. ))
  2809. characterMakers.push(() => makeCharacter(
  2810. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2811. {
  2812. front: {
  2813. height: math.unit(2, "meter"),
  2814. weight: math.unit(50, "kg"),
  2815. name: "Front",
  2816. image: {
  2817. source: "./media/characters/kurribird/front.svg",
  2818. bottom: 0.015
  2819. }
  2820. },
  2821. frontAlt: {
  2822. height: math.unit(1.5, "meter"),
  2823. weight: math.unit(50, "kg"),
  2824. name: "Front (Alt)",
  2825. image: {
  2826. source: "./media/characters/kurribird/front-alt.svg",
  2827. extra: 1.45
  2828. }
  2829. },
  2830. },
  2831. [
  2832. {
  2833. name: "Normal",
  2834. height: math.unit(7, "feet")
  2835. },
  2836. {
  2837. name: "Big",
  2838. height: math.unit(12, "feet"),
  2839. default: true
  2840. },
  2841. {
  2842. name: "Macro",
  2843. height: math.unit(1500, "feet")
  2844. },
  2845. {
  2846. name: "Megamacro",
  2847. height: math.unit(2, "miles")
  2848. }
  2849. ]
  2850. ))
  2851. characterMakers.push(() => makeCharacter(
  2852. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2853. {
  2854. front: {
  2855. height: math.unit(2, "meter"),
  2856. weight: math.unit(80, "kg"),
  2857. name: "Front",
  2858. image: {
  2859. source: "./media/characters/elbial/front.svg",
  2860. extra: 1643 / 1556,
  2861. bottom: 60.2 / 1696
  2862. }
  2863. },
  2864. side: {
  2865. height: math.unit(2, "meter"),
  2866. weight: math.unit(80, "kg"),
  2867. name: "Side",
  2868. image: {
  2869. source: "./media/characters/elbial/side.svg",
  2870. extra: 1630 / 1565,
  2871. bottom: 71.5 / 1697
  2872. }
  2873. },
  2874. back: {
  2875. height: math.unit(2, "meter"),
  2876. weight: math.unit(80, "kg"),
  2877. name: "Back",
  2878. image: {
  2879. source: "./media/characters/elbial/back.svg",
  2880. extra: 1668 / 1595,
  2881. bottom: 5.6 / 1672
  2882. }
  2883. },
  2884. frontDressed: {
  2885. height: math.unit(2, "meter"),
  2886. weight: math.unit(80, "kg"),
  2887. name: "Front (Dressed)",
  2888. image: {
  2889. source: "./media/characters/elbial/front-dressed.svg",
  2890. extra: 1653 / 1584,
  2891. bottom: 57 / 1708
  2892. }
  2893. },
  2894. genitals: {
  2895. height: math.unit(2 / 3.367, "meter"),
  2896. name: "Genitals",
  2897. image: {
  2898. source: "./media/characters/elbial/genitals.svg"
  2899. }
  2900. },
  2901. },
  2902. [
  2903. {
  2904. name: "Large",
  2905. height: math.unit(100, "feet")
  2906. },
  2907. {
  2908. name: "Macro",
  2909. height: math.unit(500, "feet"),
  2910. default: true
  2911. },
  2912. {
  2913. name: "Megamacro",
  2914. height: math.unit(10, "miles")
  2915. },
  2916. {
  2917. name: "Gigamacro",
  2918. height: math.unit(25000, "miles")
  2919. },
  2920. {
  2921. name: "Full-Size",
  2922. height: math.unit(8000000, "gigaparsecs")
  2923. }
  2924. ]
  2925. ))
  2926. characterMakers.push(() => makeCharacter(
  2927. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2928. {
  2929. front: {
  2930. height: math.unit(2, "meter"),
  2931. weight: math.unit(60, "kg"),
  2932. name: "Front",
  2933. image: {
  2934. source: "./media/characters/noah/front.svg"
  2935. }
  2936. },
  2937. talons: {
  2938. height: math.unit(0.315, "meter"),
  2939. name: "Talons",
  2940. image: {
  2941. source: "./media/characters/noah/talons.svg"
  2942. }
  2943. }
  2944. },
  2945. [
  2946. {
  2947. name: "Large",
  2948. height: math.unit(50, "feet")
  2949. },
  2950. {
  2951. name: "Macro",
  2952. height: math.unit(750, "feet"),
  2953. default: true
  2954. },
  2955. {
  2956. name: "Megamacro",
  2957. height: math.unit(50, "miles")
  2958. },
  2959. {
  2960. name: "Gigamacro",
  2961. height: math.unit(100000, "miles")
  2962. },
  2963. {
  2964. name: "Full-Size",
  2965. height: math.unit(3000000000, "miles")
  2966. }
  2967. ]
  2968. ))
  2969. characterMakers.push(() => makeCharacter(
  2970. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2971. {
  2972. front: {
  2973. height: math.unit(2, "meter"),
  2974. weight: math.unit(80, "kg"),
  2975. name: "Front",
  2976. image: {
  2977. source: "./media/characters/natalya/front.svg"
  2978. }
  2979. },
  2980. back: {
  2981. height: math.unit(2, "meter"),
  2982. weight: math.unit(80, "kg"),
  2983. name: "Back",
  2984. image: {
  2985. source: "./media/characters/natalya/back.svg"
  2986. }
  2987. }
  2988. },
  2989. [
  2990. {
  2991. name: "Normal",
  2992. height: math.unit(150, "feet"),
  2993. default: true
  2994. },
  2995. {
  2996. name: "Megamacro",
  2997. height: math.unit(5, "miles")
  2998. },
  2999. {
  3000. name: "Full-Size",
  3001. height: math.unit(600, "kiloparsecs")
  3002. }
  3003. ]
  3004. ))
  3005. characterMakers.push(() => makeCharacter(
  3006. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3007. {
  3008. front: {
  3009. height: math.unit(2, "meter"),
  3010. weight: math.unit(50, "kg"),
  3011. name: "Front",
  3012. image: {
  3013. source: "./media/characters/erestrebah/front.svg",
  3014. extra: 208 / 193,
  3015. bottom: 0.055
  3016. }
  3017. },
  3018. back: {
  3019. height: math.unit(2, "meter"),
  3020. weight: math.unit(50, "kg"),
  3021. name: "Back",
  3022. image: {
  3023. source: "./media/characters/erestrebah/back.svg",
  3024. extra: 1.3
  3025. }
  3026. }
  3027. },
  3028. [
  3029. {
  3030. name: "Normal",
  3031. height: math.unit(10, "feet")
  3032. },
  3033. {
  3034. name: "Large",
  3035. height: math.unit(50, "feet"),
  3036. default: true
  3037. },
  3038. {
  3039. name: "Macro",
  3040. height: math.unit(300, "feet")
  3041. },
  3042. {
  3043. name: "Macro+",
  3044. height: math.unit(750, "feet")
  3045. },
  3046. {
  3047. name: "Megamacro",
  3048. height: math.unit(3, "miles")
  3049. }
  3050. ]
  3051. ))
  3052. characterMakers.push(() => makeCharacter(
  3053. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3054. {
  3055. front: {
  3056. height: math.unit(2, "meter"),
  3057. weight: math.unit(80, "kg"),
  3058. name: "Front",
  3059. image: {
  3060. source: "./media/characters/jennifer/front.svg",
  3061. bottom: 0.11,
  3062. extra: 1.16
  3063. }
  3064. },
  3065. frontAlt: {
  3066. height: math.unit(2, "meter"),
  3067. weight: math.unit(80, "kg"),
  3068. name: "Front (Alt)",
  3069. image: {
  3070. source: "./media/characters/jennifer/front-alt.svg"
  3071. }
  3072. }
  3073. },
  3074. [
  3075. {
  3076. name: "Canon Height",
  3077. height: math.unit(120, "feet"),
  3078. default: true
  3079. },
  3080. {
  3081. name: "Macro+",
  3082. height: math.unit(300, "feet")
  3083. },
  3084. {
  3085. name: "Megamacro",
  3086. height: math.unit(20000, "feet")
  3087. }
  3088. ]
  3089. ))
  3090. characterMakers.push(() => makeCharacter(
  3091. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3092. {
  3093. front: {
  3094. height: math.unit(2, "meter"),
  3095. weight: math.unit(50, "kg"),
  3096. name: "Front",
  3097. image: {
  3098. source: "./media/characters/kalista/front.svg",
  3099. extra: 1947 / 1700,
  3100. bottom: 76.6 / 1412.98
  3101. }
  3102. },
  3103. back: {
  3104. height: math.unit(2, "meter"),
  3105. weight: math.unit(50, "kg"),
  3106. name: "Back",
  3107. image: {
  3108. source: "./media/characters/kalista/back.svg",
  3109. extra: 1366 / 1156,
  3110. bottom: 33.9 / 1362.78
  3111. }
  3112. }
  3113. },
  3114. [
  3115. {
  3116. name: "Uncomfortably Small",
  3117. height: math.unit(10, "feet")
  3118. },
  3119. {
  3120. name: "Small",
  3121. height: math.unit(30, "feet")
  3122. },
  3123. {
  3124. name: "Macro",
  3125. height: math.unit(100, "feet"),
  3126. default: true
  3127. },
  3128. {
  3129. name: "Macro+",
  3130. height: math.unit(2000, "feet")
  3131. },
  3132. {
  3133. name: "True Form",
  3134. height: math.unit(8924, "miles")
  3135. }
  3136. ]
  3137. ))
  3138. characterMakers.push(() => makeCharacter(
  3139. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3140. {
  3141. front: {
  3142. height: math.unit(2, "meter"),
  3143. weight: math.unit(120, "kg"),
  3144. name: "Front",
  3145. image: {
  3146. source: "./media/characters/ggv/front.svg"
  3147. }
  3148. },
  3149. side: {
  3150. height: math.unit(2, "meter"),
  3151. weight: math.unit(120, "kg"),
  3152. name: "Side",
  3153. image: {
  3154. source: "./media/characters/ggv/side.svg"
  3155. }
  3156. }
  3157. },
  3158. [
  3159. {
  3160. name: "Extremely Puny",
  3161. height: math.unit(9 + 5 / 12, "feet")
  3162. },
  3163. {
  3164. name: "Horribly Small",
  3165. height: math.unit(47.7, "miles"),
  3166. default: true
  3167. },
  3168. {
  3169. name: "Reasonably Sized",
  3170. height: math.unit(25000, "parsecs")
  3171. },
  3172. {
  3173. name: "Slightly Uncompressed",
  3174. height: math.unit(7.77e31, "parsecs")
  3175. },
  3176. {
  3177. name: "Omniversal",
  3178. height: math.unit(1e300, "meters")
  3179. },
  3180. ]
  3181. ))
  3182. characterMakers.push(() => makeCharacter(
  3183. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3184. {
  3185. front: {
  3186. height: math.unit(2, "meter"),
  3187. weight: math.unit(75, "lb"),
  3188. name: "Front",
  3189. image: {
  3190. source: "./media/characters/napalm/front.svg"
  3191. }
  3192. },
  3193. back: {
  3194. height: math.unit(2, "meter"),
  3195. weight: math.unit(75, "lb"),
  3196. name: "Back",
  3197. image: {
  3198. source: "./media/characters/napalm/back.svg"
  3199. }
  3200. }
  3201. },
  3202. [
  3203. {
  3204. name: "Standard",
  3205. height: math.unit(55, "feet"),
  3206. default: true
  3207. }
  3208. ]
  3209. ))
  3210. characterMakers.push(() => makeCharacter(
  3211. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3212. {
  3213. front: {
  3214. height: math.unit(7 + 5 / 6, "feet"),
  3215. weight: math.unit(325, "lb"),
  3216. name: "Front",
  3217. image: {
  3218. source: "./media/characters/asana/front.svg",
  3219. extra: 1133 / 1060,
  3220. bottom: 15.2 / 1148.6
  3221. }
  3222. },
  3223. back: {
  3224. height: math.unit(7 + 5 / 6, "feet"),
  3225. weight: math.unit(325, "lb"),
  3226. name: "Back",
  3227. image: {
  3228. source: "./media/characters/asana/back.svg",
  3229. extra: 1114 / 1043,
  3230. bottom: 5 / 1120
  3231. }
  3232. },
  3233. dressedDark: {
  3234. height: math.unit(7 + 5 / 6, "feet"),
  3235. weight: math.unit(325, "lb"),
  3236. name: "Dressed (Dark)",
  3237. image: {
  3238. source: "./media/characters/asana/dressed-dark.svg",
  3239. extra: 1133 / 1060,
  3240. bottom: 15.2 / 1148.6
  3241. }
  3242. },
  3243. dressedLight: {
  3244. height: math.unit(7 + 5 / 6, "feet"),
  3245. weight: math.unit(325, "lb"),
  3246. name: "Dressed (Light)",
  3247. image: {
  3248. source: "./media/characters/asana/dressed-light.svg",
  3249. extra: 1133 / 1060,
  3250. bottom: 15.2 / 1148.6
  3251. }
  3252. },
  3253. },
  3254. [
  3255. {
  3256. name: "Standard",
  3257. height: math.unit(7 + 5 / 6, "feet"),
  3258. default: true
  3259. },
  3260. {
  3261. name: "Large",
  3262. height: math.unit(10, "meters")
  3263. },
  3264. {
  3265. name: "Macro",
  3266. height: math.unit(2500, "meters")
  3267. },
  3268. {
  3269. name: "Megamacro",
  3270. height: math.unit(5e6, "meters")
  3271. },
  3272. {
  3273. name: "Examacro",
  3274. height: math.unit(5e12, "lightyears")
  3275. },
  3276. {
  3277. name: "Max Size",
  3278. height: math.unit(1e31, "lightyears")
  3279. }
  3280. ]
  3281. ))
  3282. characterMakers.push(() => makeCharacter(
  3283. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3284. {
  3285. front: {
  3286. height: math.unit(2, "meter"),
  3287. weight: math.unit(60, "kg"),
  3288. name: "Front",
  3289. image: {
  3290. source: "./media/characters/ebony/front.svg",
  3291. bottom: 0.03,
  3292. extra: 1045 / 810 + 0.03
  3293. }
  3294. },
  3295. side: {
  3296. height: math.unit(2, "meter"),
  3297. weight: math.unit(60, "kg"),
  3298. name: "Side",
  3299. image: {
  3300. source: "./media/characters/ebony/side.svg",
  3301. bottom: 0.03,
  3302. extra: 1045 / 810 + 0.03
  3303. }
  3304. },
  3305. back: {
  3306. height: math.unit(2, "meter"),
  3307. weight: math.unit(60, "kg"),
  3308. name: "Back",
  3309. image: {
  3310. source: "./media/characters/ebony/back.svg",
  3311. bottom: 0.01,
  3312. extra: 1045 / 810 + 0.01
  3313. }
  3314. },
  3315. },
  3316. [
  3317. // TODO check why I did this lol
  3318. {
  3319. name: "Standard",
  3320. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3321. default: true
  3322. },
  3323. {
  3324. name: "Macro",
  3325. height: math.unit(200, "feet")
  3326. },
  3327. {
  3328. name: "Gigamacro",
  3329. height: math.unit(13000, "km")
  3330. }
  3331. ]
  3332. ))
  3333. characterMakers.push(() => makeCharacter(
  3334. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3335. {
  3336. front: {
  3337. height: math.unit(6, "feet"),
  3338. weight: math.unit(175, "lb"),
  3339. name: "Front",
  3340. image: {
  3341. source: "./media/characters/mountain/front.svg",
  3342. extra: 972 / 955,
  3343. bottom: 64 / 1036.6
  3344. }
  3345. },
  3346. back: {
  3347. height: math.unit(6, "feet"),
  3348. weight: math.unit(175, "lb"),
  3349. name: "Back",
  3350. image: {
  3351. source: "./media/characters/mountain/back.svg",
  3352. extra: 970 / 950,
  3353. bottom: 28.25 / 999
  3354. }
  3355. },
  3356. },
  3357. [
  3358. {
  3359. name: "Large",
  3360. height: math.unit(20, "meters")
  3361. },
  3362. {
  3363. name: "Macro",
  3364. height: math.unit(300, "meters")
  3365. },
  3366. {
  3367. name: "Gigamacro",
  3368. height: math.unit(10000, "km"),
  3369. default: true
  3370. },
  3371. {
  3372. name: "Examacro",
  3373. height: math.unit(10e9, "lightyears")
  3374. }
  3375. ]
  3376. ))
  3377. characterMakers.push(() => makeCharacter(
  3378. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3379. {
  3380. front: {
  3381. height: math.unit(8, "feet"),
  3382. weight: math.unit(500, "lb"),
  3383. name: "Front",
  3384. image: {
  3385. source: "./media/characters/rick/front.svg"
  3386. }
  3387. }
  3388. },
  3389. [
  3390. {
  3391. name: "Normal",
  3392. height: math.unit(8, "feet"),
  3393. default: true
  3394. },
  3395. {
  3396. name: "Macro",
  3397. height: math.unit(5, "km")
  3398. }
  3399. ]
  3400. ))
  3401. characterMakers.push(() => makeCharacter(
  3402. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3403. {
  3404. front: {
  3405. height: math.unit(8, "feet"),
  3406. weight: math.unit(120, "lb"),
  3407. name: "Front",
  3408. image: {
  3409. source: "./media/characters/ona/front.svg"
  3410. }
  3411. },
  3412. frontAlt: {
  3413. height: math.unit(8, "feet"),
  3414. weight: math.unit(120, "lb"),
  3415. name: "Front (Alt)",
  3416. image: {
  3417. source: "./media/characters/ona/front-alt.svg"
  3418. }
  3419. },
  3420. back: {
  3421. height: math.unit(8, "feet"),
  3422. weight: math.unit(120, "lb"),
  3423. name: "Back",
  3424. image: {
  3425. source: "./media/characters/ona/back.svg"
  3426. }
  3427. },
  3428. foot: {
  3429. height: math.unit(1.1, "feet"),
  3430. name: "Foot",
  3431. image: {
  3432. source: "./media/characters/ona/foot.svg"
  3433. }
  3434. }
  3435. },
  3436. [
  3437. {
  3438. name: "Megamacro",
  3439. height: math.unit(70, "km"),
  3440. default: true
  3441. },
  3442. {
  3443. name: "Gigamacro",
  3444. height: math.unit(681818, "miles")
  3445. },
  3446. {
  3447. name: "Examacro",
  3448. height: math.unit(3800000, "lightyears")
  3449. },
  3450. ]
  3451. ))
  3452. characterMakers.push(() => makeCharacter(
  3453. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3454. {
  3455. front: {
  3456. height: math.unit(12, "feet"),
  3457. weight: math.unit(3000, "lb"),
  3458. name: "Front",
  3459. image: {
  3460. source: "./media/characters/mech/front.svg",
  3461. extra: 2900 / 2770,
  3462. bottom: 110 / 3010
  3463. }
  3464. },
  3465. back: {
  3466. height: math.unit(12, "feet"),
  3467. weight: math.unit(3000, "lb"),
  3468. name: "Back",
  3469. image: {
  3470. source: "./media/characters/mech/back.svg",
  3471. extra: 3011 / 2890,
  3472. bottom: 94 / 3105
  3473. }
  3474. },
  3475. maw: {
  3476. height: math.unit(3.07, "feet"),
  3477. name: "Maw",
  3478. image: {
  3479. source: "./media/characters/mech/maw.svg"
  3480. }
  3481. },
  3482. head: {
  3483. height: math.unit(2.82, "feet"),
  3484. name: "Head",
  3485. image: {
  3486. source: "./media/characters/mech/head.svg"
  3487. }
  3488. },
  3489. dick: {
  3490. height: math.unit(1.43, "feet"),
  3491. name: "Dick",
  3492. image: {
  3493. source: "./media/characters/mech/dick.svg"
  3494. }
  3495. },
  3496. },
  3497. [
  3498. {
  3499. name: "Normal",
  3500. height: math.unit(12, "feet")
  3501. },
  3502. {
  3503. name: "Macro",
  3504. height: math.unit(300, "feet"),
  3505. default: true
  3506. },
  3507. {
  3508. name: "Macro+",
  3509. height: math.unit(1500, "feet")
  3510. },
  3511. ]
  3512. ))
  3513. characterMakers.push(() => makeCharacter(
  3514. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3515. {
  3516. front: {
  3517. height: math.unit(1.3, "meter"),
  3518. weight: math.unit(30, "kg"),
  3519. name: "Front",
  3520. image: {
  3521. source: "./media/characters/gregory/front.svg",
  3522. }
  3523. }
  3524. },
  3525. [
  3526. {
  3527. name: "Normal",
  3528. height: math.unit(1.3, "meter"),
  3529. default: true
  3530. },
  3531. {
  3532. name: "Macro",
  3533. height: math.unit(20, "meter")
  3534. }
  3535. ]
  3536. ))
  3537. characterMakers.push(() => makeCharacter(
  3538. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3539. {
  3540. front: {
  3541. height: math.unit(2.8, "meter"),
  3542. weight: math.unit(200, "kg"),
  3543. name: "Front",
  3544. image: {
  3545. source: "./media/characters/elory/front.svg",
  3546. }
  3547. }
  3548. },
  3549. [
  3550. {
  3551. name: "Normal",
  3552. height: math.unit(2.8, "meter"),
  3553. default: true
  3554. },
  3555. {
  3556. name: "Macro",
  3557. height: math.unit(38, "meter")
  3558. }
  3559. ]
  3560. ))
  3561. characterMakers.push(() => makeCharacter(
  3562. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3563. {
  3564. front: {
  3565. height: math.unit(470, "feet"),
  3566. weight: math.unit(924, "tons"),
  3567. name: "Front",
  3568. image: {
  3569. source: "./media/characters/angelpatamon/front.svg",
  3570. }
  3571. }
  3572. },
  3573. [
  3574. {
  3575. name: "Normal",
  3576. height: math.unit(470, "feet"),
  3577. default: true
  3578. },
  3579. {
  3580. name: "Deity Size I",
  3581. height: math.unit(28651.2, "km")
  3582. },
  3583. {
  3584. name: "Deity Size II",
  3585. height: math.unit(171907.2, "km")
  3586. }
  3587. ]
  3588. ))
  3589. characterMakers.push(() => makeCharacter(
  3590. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3591. {
  3592. side: {
  3593. height: math.unit(7.2, "meter"),
  3594. weight: math.unit(8.2, "tons"),
  3595. name: "Side",
  3596. image: {
  3597. source: "./media/characters/cryae/side.svg",
  3598. extra: 3500 / 1500
  3599. }
  3600. }
  3601. },
  3602. [
  3603. {
  3604. name: "Normal",
  3605. height: math.unit(7.2, "meter"),
  3606. default: true
  3607. }
  3608. ]
  3609. ))
  3610. characterMakers.push(() => makeCharacter(
  3611. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3612. {
  3613. front: {
  3614. height: math.unit(6, "feet"),
  3615. weight: math.unit(175, "lb"),
  3616. name: "Front",
  3617. image: {
  3618. source: "./media/characters/xera/front.svg",
  3619. extra: 2377 / 1972,
  3620. bottom: 75.5 / 2452
  3621. }
  3622. },
  3623. side: {
  3624. height: math.unit(6, "feet"),
  3625. weight: math.unit(175, "lb"),
  3626. name: "Side",
  3627. image: {
  3628. source: "./media/characters/xera/side.svg",
  3629. extra: 2345 / 2019,
  3630. bottom: 39.7 / 2384
  3631. }
  3632. },
  3633. back: {
  3634. height: math.unit(6, "feet"),
  3635. weight: math.unit(175, "lb"),
  3636. name: "Back",
  3637. image: {
  3638. source: "./media/characters/xera/back.svg",
  3639. extra: 2095 / 1984,
  3640. bottom: 67 / 2166
  3641. }
  3642. },
  3643. },
  3644. [
  3645. {
  3646. name: "Small",
  3647. height: math.unit(10, "feet")
  3648. },
  3649. {
  3650. name: "Macro",
  3651. height: math.unit(500, "meters"),
  3652. default: true
  3653. },
  3654. {
  3655. name: "Macro+",
  3656. height: math.unit(10, "km")
  3657. },
  3658. {
  3659. name: "Gigamacro",
  3660. height: math.unit(25000, "km")
  3661. },
  3662. {
  3663. name: "Teramacro",
  3664. height: math.unit(3e6, "km")
  3665. }
  3666. ]
  3667. ))
  3668. characterMakers.push(() => makeCharacter(
  3669. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3670. {
  3671. front: {
  3672. height: math.unit(6, "feet"),
  3673. weight: math.unit(175, "lb"),
  3674. name: "Front",
  3675. image: {
  3676. source: "./media/characters/nebula/front.svg",
  3677. extra: 2566 / 2362,
  3678. bottom: 81 / 2644
  3679. }
  3680. }
  3681. },
  3682. [
  3683. {
  3684. name: "Small",
  3685. height: math.unit(4.5, "meters")
  3686. },
  3687. {
  3688. name: "Macro",
  3689. height: math.unit(1500, "meters"),
  3690. default: true
  3691. },
  3692. {
  3693. name: "Megamacro",
  3694. height: math.unit(150, "km")
  3695. },
  3696. {
  3697. name: "Gigamacro",
  3698. height: math.unit(27000, "km")
  3699. }
  3700. ]
  3701. ))
  3702. characterMakers.push(() => makeCharacter(
  3703. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3704. {
  3705. front: {
  3706. height: math.unit(6, "feet"),
  3707. weight: math.unit(225, "lb"),
  3708. name: "Front",
  3709. image: {
  3710. source: "./media/characters/abysgar/front.svg"
  3711. }
  3712. }
  3713. },
  3714. [
  3715. {
  3716. name: "Small",
  3717. height: math.unit(4.5, "meters")
  3718. },
  3719. {
  3720. name: "Macro",
  3721. height: math.unit(1250, "meters"),
  3722. default: true
  3723. },
  3724. {
  3725. name: "Megamacro",
  3726. height: math.unit(125, "km")
  3727. },
  3728. {
  3729. name: "Gigamacro",
  3730. height: math.unit(26000, "km")
  3731. }
  3732. ]
  3733. ))
  3734. characterMakers.push(() => makeCharacter(
  3735. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3736. {
  3737. front: {
  3738. height: math.unit(6, "feet"),
  3739. weight: math.unit(180, "lb"),
  3740. name: "Front",
  3741. image: {
  3742. source: "./media/characters/yakuz/front.svg"
  3743. }
  3744. }
  3745. },
  3746. [
  3747. {
  3748. name: "Small",
  3749. height: math.unit(5, "meters")
  3750. },
  3751. {
  3752. name: "Macro",
  3753. height: math.unit(1500, "meters"),
  3754. default: true
  3755. },
  3756. {
  3757. name: "Megamacro",
  3758. height: math.unit(200, "km")
  3759. },
  3760. {
  3761. name: "Gigamacro",
  3762. height: math.unit(100000, "km")
  3763. }
  3764. ]
  3765. ))
  3766. characterMakers.push(() => makeCharacter(
  3767. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3768. {
  3769. front: {
  3770. height: math.unit(6, "feet"),
  3771. weight: math.unit(175, "lb"),
  3772. name: "Front",
  3773. image: {
  3774. source: "./media/characters/mirova/front.svg",
  3775. extra: 3334 / 3071,
  3776. bottom: 42 / 3375.6
  3777. }
  3778. }
  3779. },
  3780. [
  3781. {
  3782. name: "Small",
  3783. height: math.unit(5, "meters")
  3784. },
  3785. {
  3786. name: "Macro",
  3787. height: math.unit(900, "meters"),
  3788. default: true
  3789. },
  3790. {
  3791. name: "Megamacro",
  3792. height: math.unit(135, "km")
  3793. },
  3794. {
  3795. name: "Gigamacro",
  3796. height: math.unit(20000, "km")
  3797. }
  3798. ]
  3799. ))
  3800. characterMakers.push(() => makeCharacter(
  3801. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3802. {
  3803. side: {
  3804. height: math.unit(28.35, "feet"),
  3805. weight: math.unit(99.75, "tons"),
  3806. name: "Side",
  3807. image: {
  3808. source: "./media/characters/asana-mech/side.svg",
  3809. extra: 923 / 699,
  3810. bottom: 50 / 975
  3811. }
  3812. },
  3813. chaingun: {
  3814. height: math.unit(7, "feet"),
  3815. weight: math.unit(2400, "lb"),
  3816. name: "Chaingun",
  3817. image: {
  3818. source: "./media/characters/asana-mech/chaingun.svg"
  3819. }
  3820. },
  3821. laser: {
  3822. height: math.unit(7.12, "feet"),
  3823. weight: math.unit(2000, "lb"),
  3824. name: "Laser",
  3825. image: {
  3826. source: "./media/characters/asana-mech/laser.svg"
  3827. }
  3828. },
  3829. },
  3830. [
  3831. {
  3832. name: "Normal",
  3833. height: math.unit(28.35, "feet"),
  3834. default: true
  3835. },
  3836. {
  3837. name: "Macro",
  3838. height: math.unit(2500, "feet")
  3839. },
  3840. {
  3841. name: "Megamacro",
  3842. height: math.unit(25, "miles")
  3843. },
  3844. {
  3845. name: "Examacro",
  3846. height: math.unit(6e8, "lightyears")
  3847. },
  3848. ]
  3849. ))
  3850. characterMakers.push(() => makeCharacter(
  3851. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3852. {
  3853. front: {
  3854. height: math.unit(5, "meters"),
  3855. weight: math.unit(1000, "kg"),
  3856. name: "Front",
  3857. image: {
  3858. source: "./media/characters/asche/front.svg",
  3859. extra: 1258 / 1190,
  3860. bottom: 47 / 1305
  3861. }
  3862. },
  3863. frontUnderwear: {
  3864. height: math.unit(5, "meters"),
  3865. weight: math.unit(1000, "kg"),
  3866. name: "Front (Underwear)",
  3867. image: {
  3868. source: "./media/characters/asche/front-underwear.svg",
  3869. extra: 1258 / 1190,
  3870. bottom: 47 / 1305
  3871. }
  3872. },
  3873. frontDressed: {
  3874. height: math.unit(5, "meters"),
  3875. weight: math.unit(1000, "kg"),
  3876. name: "Front (Dressed)",
  3877. image: {
  3878. source: "./media/characters/asche/front-dressed.svg",
  3879. extra: 1258 / 1190,
  3880. bottom: 47 / 1305
  3881. }
  3882. },
  3883. frontArmor: {
  3884. height: math.unit(5, "meters"),
  3885. weight: math.unit(1000, "kg"),
  3886. name: "Front (Armored)",
  3887. image: {
  3888. source: "./media/characters/asche/front-armored.svg",
  3889. extra: 1374 / 1308,
  3890. bottom: 23 / 1397
  3891. }
  3892. },
  3893. mp724: {
  3894. height: math.unit(0.96, "meters"),
  3895. weight: math.unit(38, "kg"),
  3896. name: "H&K MP724",
  3897. image: {
  3898. source: "./media/characters/asche/h&k-mp724.svg"
  3899. }
  3900. },
  3901. side: {
  3902. height: math.unit(5, "meters"),
  3903. weight: math.unit(1000, "kg"),
  3904. name: "Side",
  3905. image: {
  3906. source: "./media/characters/asche/side.svg",
  3907. extra: 1717 / 1609,
  3908. bottom: 0.005
  3909. }
  3910. },
  3911. back: {
  3912. height: math.unit(5, "meters"),
  3913. weight: math.unit(1000, "kg"),
  3914. name: "Back",
  3915. image: {
  3916. source: "./media/characters/asche/back.svg",
  3917. extra: 1570 / 1501
  3918. }
  3919. },
  3920. },
  3921. [
  3922. {
  3923. name: "DEFCON 5",
  3924. height: math.unit(5, "meters")
  3925. },
  3926. {
  3927. name: "DEFCON 4",
  3928. height: math.unit(500, "meters"),
  3929. default: true
  3930. },
  3931. {
  3932. name: "DEFCON 3",
  3933. height: math.unit(5, "km")
  3934. },
  3935. {
  3936. name: "DEFCON 2",
  3937. height: math.unit(500, "km")
  3938. },
  3939. {
  3940. name: "DEFCON 1",
  3941. height: math.unit(500000, "km")
  3942. },
  3943. {
  3944. name: "DEFCON 0",
  3945. height: math.unit(3, "gigaparsecs")
  3946. },
  3947. ]
  3948. ))
  3949. characterMakers.push(() => makeCharacter(
  3950. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3951. {
  3952. front: {
  3953. height: math.unit(2, "meters"),
  3954. weight: math.unit(76, "kg"),
  3955. name: "Front",
  3956. image: {
  3957. source: "./media/characters/gale/front.svg"
  3958. }
  3959. },
  3960. frontAlt1: {
  3961. height: math.unit(2, "meters"),
  3962. weight: math.unit(76, "kg"),
  3963. name: "Front (Alt 1)",
  3964. image: {
  3965. source: "./media/characters/gale/front-alt-1.svg"
  3966. }
  3967. },
  3968. frontAlt2: {
  3969. height: math.unit(2, "meters"),
  3970. weight: math.unit(76, "kg"),
  3971. name: "Front (Alt 2)",
  3972. image: {
  3973. source: "./media/characters/gale/front-alt-2.svg"
  3974. }
  3975. },
  3976. },
  3977. [
  3978. {
  3979. name: "Normal",
  3980. height: math.unit(7, "feet")
  3981. },
  3982. {
  3983. name: "Macro",
  3984. height: math.unit(150, "feet"),
  3985. default: true
  3986. },
  3987. {
  3988. name: "Macro+",
  3989. height: math.unit(300, "feet")
  3990. },
  3991. ]
  3992. ))
  3993. characterMakers.push(() => makeCharacter(
  3994. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3995. {
  3996. front: {
  3997. height: math.unit(2, "meters"),
  3998. weight: math.unit(76, "kg"),
  3999. name: "Front",
  4000. image: {
  4001. source: "./media/characters/draylen/front.svg"
  4002. }
  4003. }
  4004. },
  4005. [
  4006. {
  4007. name: "Macro",
  4008. height: math.unit(150, "feet"),
  4009. default: true
  4010. }
  4011. ]
  4012. ))
  4013. characterMakers.push(() => makeCharacter(
  4014. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4015. {
  4016. front: {
  4017. height: math.unit(7 + 9 / 12, "feet"),
  4018. weight: math.unit(379, "lbs"),
  4019. name: "Front",
  4020. image: {
  4021. source: "./media/characters/chez/front.svg"
  4022. }
  4023. },
  4024. side: {
  4025. height: math.unit(7 + 9 / 12, "feet"),
  4026. weight: math.unit(379, "lbs"),
  4027. name: "Side",
  4028. image: {
  4029. source: "./media/characters/chez/side.svg"
  4030. }
  4031. }
  4032. },
  4033. [
  4034. {
  4035. name: "Normal",
  4036. height: math.unit(7 + 9 / 12, "feet"),
  4037. default: true
  4038. },
  4039. {
  4040. name: "God King",
  4041. height: math.unit(9750000, "meters")
  4042. }
  4043. ]
  4044. ))
  4045. characterMakers.push(() => makeCharacter(
  4046. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4047. {
  4048. front: {
  4049. height: math.unit(6, "feet"),
  4050. weight: math.unit(275, "lbs"),
  4051. name: "Front",
  4052. image: {
  4053. source: "./media/characters/kaylum/front.svg",
  4054. bottom: 0.01,
  4055. extra: 1166 / 1031
  4056. }
  4057. },
  4058. frontWingless: {
  4059. height: math.unit(6, "feet"),
  4060. weight: math.unit(275, "lbs"),
  4061. name: "Front (Wingless)",
  4062. image: {
  4063. source: "./media/characters/kaylum/front-wingless.svg",
  4064. bottom: 0.01,
  4065. extra: 1117 / 1031
  4066. }
  4067. }
  4068. },
  4069. [
  4070. {
  4071. name: "Normal",
  4072. height: math.unit(3.05, "meters")
  4073. },
  4074. {
  4075. name: "Master",
  4076. height: math.unit(5.5, "meters")
  4077. },
  4078. {
  4079. name: "Rampage",
  4080. height: math.unit(19, "meters")
  4081. },
  4082. {
  4083. name: "Macro Lite",
  4084. height: math.unit(37, "meters")
  4085. },
  4086. {
  4087. name: "Hyper Predator",
  4088. height: math.unit(61, "meters")
  4089. },
  4090. {
  4091. name: "Macro",
  4092. height: math.unit(138, "meters"),
  4093. default: true
  4094. }
  4095. ]
  4096. ))
  4097. characterMakers.push(() => makeCharacter(
  4098. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4099. {
  4100. front: {
  4101. height: math.unit(6, "feet"),
  4102. weight: math.unit(150, "lbs"),
  4103. name: "Front",
  4104. image: {
  4105. source: "./media/characters/geta/front.svg"
  4106. }
  4107. }
  4108. },
  4109. [
  4110. {
  4111. name: "Micro",
  4112. height: math.unit(3, "inches"),
  4113. default: true
  4114. },
  4115. {
  4116. name: "Normal",
  4117. height: math.unit(5 + 5 / 12, "feet")
  4118. }
  4119. ]
  4120. ))
  4121. characterMakers.push(() => makeCharacter(
  4122. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4123. {
  4124. front: {
  4125. height: math.unit(6, "feet"),
  4126. weight: math.unit(300, "lbs"),
  4127. name: "Front",
  4128. image: {
  4129. source: "./media/characters/tyrnn/front.svg"
  4130. }
  4131. }
  4132. },
  4133. [
  4134. {
  4135. name: "Main Height",
  4136. height: math.unit(355, "feet"),
  4137. default: true
  4138. },
  4139. {
  4140. name: "Fave. Height",
  4141. height: math.unit(2400, "feet")
  4142. }
  4143. ]
  4144. ))
  4145. characterMakers.push(() => makeCharacter(
  4146. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4147. {
  4148. front: {
  4149. height: math.unit(6, "feet"),
  4150. weight: math.unit(300, "lbs"),
  4151. name: "Front",
  4152. image: {
  4153. source: "./media/characters/appledectomy/front.svg"
  4154. }
  4155. }
  4156. },
  4157. [
  4158. {
  4159. name: "Macro",
  4160. height: math.unit(2500, "feet")
  4161. },
  4162. {
  4163. name: "Megamacro",
  4164. height: math.unit(50, "miles"),
  4165. default: true
  4166. },
  4167. {
  4168. name: "Gigamacro",
  4169. height: math.unit(5000, "miles")
  4170. },
  4171. {
  4172. name: "Teramacro",
  4173. height: math.unit(250000, "miles")
  4174. },
  4175. ]
  4176. ))
  4177. characterMakers.push(() => makeCharacter(
  4178. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4179. {
  4180. front: {
  4181. height: math.unit(6, "feet"),
  4182. weight: math.unit(200, "lbs"),
  4183. name: "Front",
  4184. image: {
  4185. source: "./media/characters/vulpes/front.svg",
  4186. extra: 573 / 543,
  4187. bottom: 0.033
  4188. }
  4189. },
  4190. side: {
  4191. height: math.unit(6, "feet"),
  4192. weight: math.unit(200, "lbs"),
  4193. name: "Side",
  4194. image: {
  4195. source: "./media/characters/vulpes/side.svg",
  4196. extra: 577 / 549,
  4197. bottom: 11 / 588
  4198. }
  4199. },
  4200. back: {
  4201. height: math.unit(6, "feet"),
  4202. weight: math.unit(200, "lbs"),
  4203. name: "Back",
  4204. image: {
  4205. source: "./media/characters/vulpes/back.svg",
  4206. extra: 573 / 549,
  4207. bottom: 20 / 593
  4208. }
  4209. },
  4210. feet: {
  4211. height: math.unit(1.276, "feet"),
  4212. name: "Feet",
  4213. image: {
  4214. source: "./media/characters/vulpes/feet.svg"
  4215. }
  4216. },
  4217. maw: {
  4218. height: math.unit(1.18, "feet"),
  4219. name: "Maw",
  4220. image: {
  4221. source: "./media/characters/vulpes/maw.svg"
  4222. }
  4223. },
  4224. },
  4225. [
  4226. {
  4227. name: "Micro",
  4228. height: math.unit(2, "inches")
  4229. },
  4230. {
  4231. name: "Normal",
  4232. height: math.unit(6.3, "feet")
  4233. },
  4234. {
  4235. name: "Macro",
  4236. height: math.unit(850, "feet")
  4237. },
  4238. {
  4239. name: "Megamacro",
  4240. height: math.unit(7500, "feet"),
  4241. default: true
  4242. },
  4243. {
  4244. name: "Gigamacro",
  4245. height: math.unit(570000, "miles")
  4246. }
  4247. ]
  4248. ))
  4249. characterMakers.push(() => makeCharacter(
  4250. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4251. {
  4252. front: {
  4253. height: math.unit(6, "feet"),
  4254. weight: math.unit(210, "lbs"),
  4255. name: "Front",
  4256. image: {
  4257. source: "./media/characters/rain-fallen/front.svg"
  4258. }
  4259. },
  4260. side: {
  4261. height: math.unit(6, "feet"),
  4262. weight: math.unit(210, "lbs"),
  4263. name: "Side",
  4264. image: {
  4265. source: "./media/characters/rain-fallen/side.svg"
  4266. }
  4267. },
  4268. back: {
  4269. height: math.unit(6, "feet"),
  4270. weight: math.unit(210, "lbs"),
  4271. name: "Back",
  4272. image: {
  4273. source: "./media/characters/rain-fallen/back.svg"
  4274. }
  4275. },
  4276. feral: {
  4277. height: math.unit(9, "feet"),
  4278. weight: math.unit(700, "lbs"),
  4279. name: "Feral",
  4280. image: {
  4281. source: "./media/characters/rain-fallen/feral.svg"
  4282. }
  4283. },
  4284. },
  4285. [
  4286. {
  4287. name: "Normal",
  4288. height: math.unit(5, "meter")
  4289. },
  4290. {
  4291. name: "Macro",
  4292. height: math.unit(150, "meter"),
  4293. default: true
  4294. },
  4295. {
  4296. name: "Megamacro",
  4297. height: math.unit(278e6, "meter")
  4298. },
  4299. {
  4300. name: "Gigamacro",
  4301. height: math.unit(2e9, "meter")
  4302. },
  4303. {
  4304. name: "Teramacro",
  4305. height: math.unit(8e12, "meter")
  4306. },
  4307. {
  4308. name: "Devourer",
  4309. height: math.unit(14, "zettameters")
  4310. },
  4311. {
  4312. name: "Scarlet King",
  4313. height: math.unit(18, "yottameters")
  4314. },
  4315. {
  4316. name: "Void",
  4317. height: math.unit(6.66e66, "yottameters")
  4318. }
  4319. ]
  4320. ))
  4321. characterMakers.push(() => makeCharacter(
  4322. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4323. {
  4324. standing: {
  4325. height: math.unit(6, "feet"),
  4326. weight: math.unit(180, "lbs"),
  4327. name: "Standing",
  4328. image: {
  4329. source: "./media/characters/zaakira/standing.svg"
  4330. }
  4331. },
  4332. laying: {
  4333. height: math.unit(3, "feet"),
  4334. weight: math.unit(180, "lbs"),
  4335. name: "Laying",
  4336. image: {
  4337. source: "./media/characters/zaakira/laying.svg"
  4338. }
  4339. },
  4340. },
  4341. [
  4342. {
  4343. name: "Normal",
  4344. height: math.unit(12, "feet")
  4345. },
  4346. {
  4347. name: "Macro",
  4348. height: math.unit(279, "feet"),
  4349. default: true
  4350. }
  4351. ]
  4352. ))
  4353. characterMakers.push(() => makeCharacter(
  4354. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4355. {
  4356. femSfw: {
  4357. height: math.unit(8, "feet"),
  4358. weight: math.unit(350, "lb"),
  4359. name: "Fem",
  4360. image: {
  4361. source: "./media/characters/sigvald/fem-sfw.svg",
  4362. extra: 182 / 164,
  4363. bottom: 8.7 / 190.5
  4364. }
  4365. },
  4366. femNsfw: {
  4367. height: math.unit(8, "feet"),
  4368. weight: math.unit(350, "lb"),
  4369. name: "Fem (NSFW)",
  4370. image: {
  4371. source: "./media/characters/sigvald/fem-nsfw.svg",
  4372. extra: 182 / 164,
  4373. bottom: 8.7 / 190.5
  4374. }
  4375. },
  4376. maleNsfw: {
  4377. height: math.unit(8, "feet"),
  4378. weight: math.unit(350, "lb"),
  4379. name: "Male (NSFW)",
  4380. image: {
  4381. source: "./media/characters/sigvald/male-nsfw.svg",
  4382. extra: 182 / 164,
  4383. bottom: 8.7 / 190.5
  4384. }
  4385. },
  4386. hermNsfw: {
  4387. height: math.unit(8, "feet"),
  4388. weight: math.unit(350, "lb"),
  4389. name: "Herm (NSFW)",
  4390. image: {
  4391. source: "./media/characters/sigvald/herm-nsfw.svg",
  4392. extra: 182 / 164,
  4393. bottom: 8.7 / 190.5
  4394. }
  4395. },
  4396. dick: {
  4397. height: math.unit(2.36, "feet"),
  4398. name: "Dick",
  4399. image: {
  4400. source: "./media/characters/sigvald/dick.svg"
  4401. }
  4402. },
  4403. eye: {
  4404. height: math.unit(0.31, "feet"),
  4405. name: "Eye",
  4406. image: {
  4407. source: "./media/characters/sigvald/eye.svg"
  4408. }
  4409. },
  4410. mouth: {
  4411. height: math.unit(0.92, "feet"),
  4412. name: "Mouth",
  4413. image: {
  4414. source: "./media/characters/sigvald/mouth.svg"
  4415. }
  4416. },
  4417. paws: {
  4418. height: math.unit(2.2, "feet"),
  4419. name: "Paws",
  4420. image: {
  4421. source: "./media/characters/sigvald/paws.svg"
  4422. }
  4423. }
  4424. },
  4425. [
  4426. {
  4427. name: "Normal",
  4428. height: math.unit(8, "feet")
  4429. },
  4430. {
  4431. name: "Large",
  4432. height: math.unit(12, "feet")
  4433. },
  4434. {
  4435. name: "Larger",
  4436. height: math.unit(20, "feet")
  4437. },
  4438. {
  4439. name: "Macro",
  4440. height: math.unit(150, "feet")
  4441. },
  4442. {
  4443. name: "Macro+",
  4444. height: math.unit(200, "feet"),
  4445. default: true
  4446. },
  4447. ]
  4448. ))
  4449. characterMakers.push(() => makeCharacter(
  4450. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4451. {
  4452. side: {
  4453. height: math.unit(12, "feet"),
  4454. weight: math.unit(2000, "kg"),
  4455. name: "Side",
  4456. image: {
  4457. source: "./media/characters/scott/side.svg",
  4458. extra: 754 / 724,
  4459. bottom: 0.069
  4460. }
  4461. },
  4462. upright: {
  4463. height: math.unit(12, "feet"),
  4464. weight: math.unit(2000, "kg"),
  4465. name: "Upright",
  4466. image: {
  4467. source: "./media/characters/scott/upright.svg",
  4468. extra: 3881 / 3722,
  4469. bottom: 0.05
  4470. }
  4471. },
  4472. },
  4473. [
  4474. {
  4475. name: "Normal",
  4476. height: math.unit(12, "feet"),
  4477. default: true
  4478. },
  4479. ]
  4480. ))
  4481. characterMakers.push(() => makeCharacter(
  4482. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4483. {
  4484. side: {
  4485. height: math.unit(8, "meters"),
  4486. weight: math.unit(84755, "lbs"),
  4487. name: "Side",
  4488. image: {
  4489. source: "./media/characters/tobias/side.svg",
  4490. extra: 1474 / 1096,
  4491. bottom: 38.9 / 1513.1235
  4492. }
  4493. },
  4494. },
  4495. [
  4496. {
  4497. name: "Normal",
  4498. height: math.unit(8, "meters"),
  4499. default: true
  4500. },
  4501. ]
  4502. ))
  4503. characterMakers.push(() => makeCharacter(
  4504. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4505. {
  4506. front: {
  4507. height: math.unit(5.5, "feet"),
  4508. weight: math.unit(400, "lbs"),
  4509. name: "Front",
  4510. image: {
  4511. source: "./media/characters/kieran/front.svg",
  4512. extra: 2694 / 2364,
  4513. bottom: 217 / 2908
  4514. }
  4515. },
  4516. side: {
  4517. height: math.unit(5.5, "feet"),
  4518. weight: math.unit(400, "lbs"),
  4519. name: "Side",
  4520. image: {
  4521. source: "./media/characters/kieran/side.svg",
  4522. extra: 875 / 777,
  4523. bottom: 84.6 / 959
  4524. }
  4525. },
  4526. },
  4527. [
  4528. {
  4529. name: "Normal",
  4530. height: math.unit(5.5, "feet"),
  4531. default: true
  4532. },
  4533. ]
  4534. ))
  4535. characterMakers.push(() => makeCharacter(
  4536. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4537. {
  4538. side: {
  4539. height: math.unit(2, "meters"),
  4540. weight: math.unit(70, "kg"),
  4541. name: "Side",
  4542. image: {
  4543. source: "./media/characters/sanya/side.svg",
  4544. bottom: 0.02,
  4545. extra: 1.02
  4546. }
  4547. },
  4548. },
  4549. [
  4550. {
  4551. name: "Small",
  4552. height: math.unit(2, "meters")
  4553. },
  4554. {
  4555. name: "Normal",
  4556. height: math.unit(3, "meters")
  4557. },
  4558. {
  4559. name: "Macro",
  4560. height: math.unit(16, "meters"),
  4561. default: true
  4562. },
  4563. ]
  4564. ))
  4565. characterMakers.push(() => makeCharacter(
  4566. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4567. {
  4568. front: {
  4569. height: math.unit(2, "meters"),
  4570. weight: math.unit(120, "kg"),
  4571. name: "Front",
  4572. image: {
  4573. source: "./media/characters/miranda/front.svg",
  4574. extra: 195 / 185,
  4575. bottom: 10.9 / 206.5
  4576. }
  4577. },
  4578. back: {
  4579. height: math.unit(2, "meters"),
  4580. weight: math.unit(120, "kg"),
  4581. name: "Back",
  4582. image: {
  4583. source: "./media/characters/miranda/back.svg",
  4584. extra: 201 / 193,
  4585. bottom: 2.3 / 203.7
  4586. }
  4587. },
  4588. },
  4589. [
  4590. {
  4591. name: "Normal",
  4592. height: math.unit(10, "feet"),
  4593. default: true
  4594. }
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "James", species: ["deer"], tags: ["anthro"] },
  4599. {
  4600. side: {
  4601. height: math.unit(2, "meters"),
  4602. weight: math.unit(100, "kg"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/james/front.svg",
  4606. extra: 10 / 8.5
  4607. }
  4608. },
  4609. },
  4610. [
  4611. {
  4612. name: "Normal",
  4613. height: math.unit(8.5, "feet"),
  4614. default: true
  4615. }
  4616. ]
  4617. ))
  4618. characterMakers.push(() => makeCharacter(
  4619. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4620. {
  4621. side: {
  4622. height: math.unit(9.5, "feet"),
  4623. weight: math.unit(2500, "lbs"),
  4624. name: "Side",
  4625. image: {
  4626. source: "./media/characters/heather/side.svg"
  4627. }
  4628. },
  4629. },
  4630. [
  4631. {
  4632. name: "Normal",
  4633. height: math.unit(9.5, "feet"),
  4634. default: true
  4635. }
  4636. ]
  4637. ))
  4638. characterMakers.push(() => makeCharacter(
  4639. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4640. {
  4641. side: {
  4642. height: math.unit(6.5, "feet"),
  4643. weight: math.unit(400, "lbs"),
  4644. name: "Side",
  4645. image: {
  4646. source: "./media/characters/lukas/side.svg",
  4647. extra: 7.25 / 6.5
  4648. }
  4649. },
  4650. },
  4651. [
  4652. {
  4653. name: "Normal",
  4654. height: math.unit(6.5, "feet"),
  4655. default: true
  4656. }
  4657. ]
  4658. ))
  4659. characterMakers.push(() => makeCharacter(
  4660. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4661. {
  4662. side: {
  4663. height: math.unit(5, "feet"),
  4664. weight: math.unit(3000, "lbs"),
  4665. name: "Side",
  4666. image: {
  4667. source: "./media/characters/louise/side.svg"
  4668. }
  4669. },
  4670. },
  4671. [
  4672. {
  4673. name: "Normal",
  4674. height: math.unit(5, "feet"),
  4675. default: true
  4676. }
  4677. ]
  4678. ))
  4679. characterMakers.push(() => makeCharacter(
  4680. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4681. {
  4682. side: {
  4683. height: math.unit(6, "feet"),
  4684. weight: math.unit(150, "lbs"),
  4685. name: "Side",
  4686. image: {
  4687. source: "./media/characters/ramona/side.svg"
  4688. }
  4689. },
  4690. },
  4691. [
  4692. {
  4693. name: "Normal",
  4694. height: math.unit(5.3, "meters"),
  4695. default: true
  4696. },
  4697. {
  4698. name: "Macro",
  4699. height: math.unit(20, "stories")
  4700. },
  4701. {
  4702. name: "Macro+",
  4703. height: math.unit(50, "stories")
  4704. },
  4705. ]
  4706. ))
  4707. characterMakers.push(() => makeCharacter(
  4708. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4709. {
  4710. standing: {
  4711. height: math.unit(5.75, "feet"),
  4712. weight: math.unit(160, "lbs"),
  4713. name: "Standing",
  4714. image: {
  4715. source: "./media/characters/deerpuff/standing.svg",
  4716. extra: 682 / 624
  4717. }
  4718. },
  4719. sitting: {
  4720. height: math.unit(5.75 / 1.79, "feet"),
  4721. weight: math.unit(160, "lbs"),
  4722. name: "Sitting",
  4723. image: {
  4724. source: "./media/characters/deerpuff/sitting.svg",
  4725. bottom: 44 / 400,
  4726. extra: 1
  4727. }
  4728. },
  4729. taurLaying: {
  4730. height: math.unit(6, "feet"),
  4731. weight: math.unit(400, "lbs"),
  4732. name: "Taur (Laying)",
  4733. image: {
  4734. source: "./media/characters/deerpuff/taur-laying.svg"
  4735. }
  4736. },
  4737. },
  4738. [
  4739. {
  4740. name: "Puffball",
  4741. height: math.unit(6, "inches")
  4742. },
  4743. {
  4744. name: "Normalpuff",
  4745. height: math.unit(5.75, "feet")
  4746. },
  4747. {
  4748. name: "Macropuff",
  4749. height: math.unit(1500, "feet"),
  4750. default: true
  4751. },
  4752. {
  4753. name: "Megapuff",
  4754. height: math.unit(500, "miles")
  4755. },
  4756. {
  4757. name: "Gigapuff",
  4758. height: math.unit(250000, "miles")
  4759. },
  4760. {
  4761. name: "Omegapuff",
  4762. height: math.unit(1000, "lightyears")
  4763. },
  4764. ]
  4765. ))
  4766. characterMakers.push(() => makeCharacter(
  4767. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4768. {
  4769. stomping: {
  4770. height: math.unit(6, "feet"),
  4771. weight: math.unit(170, "lbs"),
  4772. name: "Stomping",
  4773. image: {
  4774. source: "./media/characters/vivian/stomping.svg"
  4775. }
  4776. },
  4777. sitting: {
  4778. height: math.unit(6 / 1.75, "feet"),
  4779. weight: math.unit(170, "lbs"),
  4780. name: "Sitting",
  4781. image: {
  4782. source: "./media/characters/vivian/sitting.svg",
  4783. bottom: 1 / 6.4,
  4784. extra: 1,
  4785. }
  4786. },
  4787. },
  4788. [
  4789. {
  4790. name: "Normal",
  4791. height: math.unit(7, "feet"),
  4792. default: true
  4793. },
  4794. {
  4795. name: "Macro",
  4796. height: math.unit(10, "stories")
  4797. },
  4798. {
  4799. name: "Macro+",
  4800. height: math.unit(30, "stories")
  4801. },
  4802. {
  4803. name: "Megamacro",
  4804. height: math.unit(10, "miles")
  4805. },
  4806. {
  4807. name: "Megamacro+",
  4808. height: math.unit(2750000, "meters")
  4809. },
  4810. ]
  4811. ))
  4812. characterMakers.push(() => makeCharacter(
  4813. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4814. {
  4815. front: {
  4816. height: math.unit(6, "feet"),
  4817. weight: math.unit(160, "lbs"),
  4818. name: "Front",
  4819. image: {
  4820. source: "./media/characters/prince/front.svg",
  4821. extra: 3400 / 3000
  4822. }
  4823. },
  4824. jumping: {
  4825. height: math.unit(6, "feet"),
  4826. weight: math.unit(160, "lbs"),
  4827. name: "Jumping",
  4828. image: {
  4829. source: "./media/characters/prince/jump.svg",
  4830. extra: 2555 / 2134
  4831. }
  4832. },
  4833. },
  4834. [
  4835. {
  4836. name: "Normal",
  4837. height: math.unit(7.75, "feet"),
  4838. default: true
  4839. },
  4840. {
  4841. name: "Not cute",
  4842. height: math.unit(17, "feet")
  4843. },
  4844. {
  4845. name: "I said NOT",
  4846. height: math.unit(91, "feet")
  4847. },
  4848. {
  4849. name: "Please stop",
  4850. height: math.unit(560, "feet")
  4851. },
  4852. {
  4853. name: "What have you done",
  4854. height: math.unit(2200, "feet")
  4855. },
  4856. {
  4857. name: "Deer God",
  4858. height: math.unit(3.6, "miles")
  4859. },
  4860. ]
  4861. ))
  4862. characterMakers.push(() => makeCharacter(
  4863. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4864. {
  4865. standing: {
  4866. height: math.unit(6, "feet"),
  4867. weight: math.unit(300, "lbs"),
  4868. name: "Standing",
  4869. image: {
  4870. source: "./media/characters/psymon/standing.svg",
  4871. extra: 1888 / 1810,
  4872. bottom: 0.05
  4873. }
  4874. },
  4875. slithering: {
  4876. height: math.unit(6, "feet"),
  4877. weight: math.unit(300, "lbs"),
  4878. name: "Slithering",
  4879. image: {
  4880. source: "./media/characters/psymon/slithering.svg",
  4881. extra: 1330 / 1224
  4882. }
  4883. },
  4884. slitheringAlt: {
  4885. height: math.unit(6, "feet"),
  4886. weight: math.unit(300, "lbs"),
  4887. name: "Slithering (Alt)",
  4888. image: {
  4889. source: "./media/characters/psymon/slithering-alt.svg",
  4890. extra: 1330 / 1224
  4891. }
  4892. },
  4893. },
  4894. [
  4895. {
  4896. name: "Normal",
  4897. height: math.unit(11.25, "feet"),
  4898. default: true
  4899. },
  4900. {
  4901. name: "Large",
  4902. height: math.unit(27, "feet")
  4903. },
  4904. {
  4905. name: "Giant",
  4906. height: math.unit(87, "feet")
  4907. },
  4908. {
  4909. name: "Macro",
  4910. height: math.unit(365, "feet")
  4911. },
  4912. {
  4913. name: "Megamacro",
  4914. height: math.unit(3, "miles")
  4915. },
  4916. {
  4917. name: "World Serpent",
  4918. height: math.unit(8000, "miles")
  4919. },
  4920. ]
  4921. ))
  4922. characterMakers.push(() => makeCharacter(
  4923. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4924. {
  4925. front: {
  4926. height: math.unit(6, "feet"),
  4927. weight: math.unit(180, "lbs"),
  4928. name: "Front",
  4929. image: {
  4930. source: "./media/characters/daimos/front.svg",
  4931. extra: 4160 / 3897,
  4932. bottom: 0.021
  4933. }
  4934. }
  4935. },
  4936. [
  4937. {
  4938. name: "Normal",
  4939. height: math.unit(8, "feet"),
  4940. default: true
  4941. },
  4942. {
  4943. name: "Big Dog",
  4944. height: math.unit(22, "feet")
  4945. },
  4946. {
  4947. name: "Macro",
  4948. height: math.unit(127, "feet")
  4949. },
  4950. {
  4951. name: "Megamacro",
  4952. height: math.unit(3600, "feet")
  4953. },
  4954. ]
  4955. ))
  4956. characterMakers.push(() => makeCharacter(
  4957. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4958. {
  4959. side: {
  4960. height: math.unit(6, "feet"),
  4961. weight: math.unit(180, "lbs"),
  4962. name: "Side",
  4963. image: {
  4964. source: "./media/characters/blake/side.svg",
  4965. extra: 1212 / 1120,
  4966. bottom: 0.05
  4967. }
  4968. },
  4969. crouched: {
  4970. height: math.unit(6 * 0.57, "feet"),
  4971. weight: math.unit(180, "lbs"),
  4972. name: "Crouched",
  4973. image: {
  4974. source: "./media/characters/blake/crouched.svg",
  4975. extra: 840 / 587,
  4976. bottom: 0.04
  4977. }
  4978. },
  4979. bent: {
  4980. height: math.unit(6 * 0.75, "feet"),
  4981. weight: math.unit(180, "lbs"),
  4982. name: "Bent",
  4983. image: {
  4984. source: "./media/characters/blake/bent.svg",
  4985. extra: 592 / 544,
  4986. bottom: 0.035
  4987. }
  4988. },
  4989. },
  4990. [
  4991. {
  4992. name: "Normal",
  4993. height: math.unit(8 + 1 / 6, "feet"),
  4994. default: true
  4995. },
  4996. {
  4997. name: "Big Backside",
  4998. height: math.unit(37, "feet")
  4999. },
  5000. {
  5001. name: "Subway Shredder",
  5002. height: math.unit(72, "feet")
  5003. },
  5004. {
  5005. name: "City Carver",
  5006. height: math.unit(1675, "feet")
  5007. },
  5008. {
  5009. name: "Tectonic Tweaker",
  5010. height: math.unit(2300, "miles")
  5011. },
  5012. ]
  5013. ))
  5014. characterMakers.push(() => makeCharacter(
  5015. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5016. {
  5017. front: {
  5018. height: math.unit(6, "feet"),
  5019. weight: math.unit(180, "lbs"),
  5020. name: "Front",
  5021. image: {
  5022. source: "./media/characters/guisetto/front.svg",
  5023. extra: 856 / 817,
  5024. bottom: 0.06
  5025. }
  5026. },
  5027. airborne: {
  5028. height: math.unit(6, "feet"),
  5029. weight: math.unit(180, "lbs"),
  5030. name: "Airborne",
  5031. image: {
  5032. source: "./media/characters/guisetto/airborne.svg",
  5033. extra: 584 / 525
  5034. }
  5035. },
  5036. },
  5037. [
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(10 + 11 / 12, "feet"),
  5041. default: true
  5042. },
  5043. {
  5044. name: "Large",
  5045. height: math.unit(35, "feet")
  5046. },
  5047. {
  5048. name: "Macro",
  5049. height: math.unit(475, "feet")
  5050. },
  5051. ]
  5052. ))
  5053. characterMakers.push(() => makeCharacter(
  5054. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5055. {
  5056. front: {
  5057. height: math.unit(6, "feet"),
  5058. weight: math.unit(180, "lbs"),
  5059. name: "Front",
  5060. image: {
  5061. source: "./media/characters/luxor/front.svg",
  5062. extra: 2940 / 2152
  5063. }
  5064. },
  5065. back: {
  5066. height: math.unit(6, "feet"),
  5067. weight: math.unit(180, "lbs"),
  5068. name: "Back",
  5069. image: {
  5070. source: "./media/characters/luxor/back.svg",
  5071. extra: 1083 / 960
  5072. }
  5073. },
  5074. },
  5075. [
  5076. {
  5077. name: "Normal",
  5078. height: math.unit(5 + 5 / 6, "feet"),
  5079. default: true
  5080. },
  5081. {
  5082. name: "Lamp",
  5083. height: math.unit(50, "feet")
  5084. },
  5085. {
  5086. name: "Lämp",
  5087. height: math.unit(300, "feet")
  5088. },
  5089. {
  5090. name: "The sun is a lamp",
  5091. height: math.unit(250000, "miles")
  5092. },
  5093. ]
  5094. ))
  5095. characterMakers.push(() => makeCharacter(
  5096. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5097. {
  5098. front: {
  5099. height: math.unit(6, "feet"),
  5100. weight: math.unit(50, "lbs"),
  5101. name: "Front",
  5102. image: {
  5103. source: "./media/characters/huoyan/front.svg"
  5104. }
  5105. },
  5106. side: {
  5107. height: math.unit(6, "feet"),
  5108. weight: math.unit(180, "lbs"),
  5109. name: "Side",
  5110. image: {
  5111. source: "./media/characters/huoyan/side.svg"
  5112. }
  5113. },
  5114. },
  5115. [
  5116. {
  5117. name: "Chef",
  5118. height: math.unit(9, "feet")
  5119. },
  5120. {
  5121. name: "Normal",
  5122. height: math.unit(65, "feet"),
  5123. default: true
  5124. },
  5125. {
  5126. name: "Macro",
  5127. height: math.unit(780, "feet")
  5128. },
  5129. {
  5130. name: "Flaming Mountain",
  5131. height: math.unit(4.8, "miles")
  5132. },
  5133. {
  5134. name: "Celestial",
  5135. height: math.unit(765000, "miles")
  5136. },
  5137. ]
  5138. ))
  5139. characterMakers.push(() => makeCharacter(
  5140. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5141. {
  5142. front: {
  5143. height: math.unit(5 + 3 / 4, "feet"),
  5144. weight: math.unit(120, "lbs"),
  5145. name: "Front",
  5146. image: {
  5147. source: "./media/characters/tails/front.svg"
  5148. }
  5149. }
  5150. },
  5151. [
  5152. {
  5153. name: "Normal",
  5154. height: math.unit(5 + 3 / 4, "feet"),
  5155. default: true
  5156. }
  5157. ]
  5158. ))
  5159. characterMakers.push(() => makeCharacter(
  5160. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5161. {
  5162. front: {
  5163. height: math.unit(4, "feet"),
  5164. weight: math.unit(50, "lbs"),
  5165. name: "Front",
  5166. image: {
  5167. source: "./media/characters/rainy/front.svg"
  5168. }
  5169. }
  5170. },
  5171. [
  5172. {
  5173. name: "Macro",
  5174. height: math.unit(800, "feet"),
  5175. default: true
  5176. }
  5177. ]
  5178. ))
  5179. characterMakers.push(() => makeCharacter(
  5180. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5181. {
  5182. front: {
  5183. height: math.unit(6, "feet"),
  5184. weight: math.unit(150, "lbs"),
  5185. name: "Front",
  5186. image: {
  5187. source: "./media/characters/rainier/front.svg"
  5188. }
  5189. }
  5190. },
  5191. [
  5192. {
  5193. name: "Micro",
  5194. height: math.unit(2, "mm"),
  5195. default: true
  5196. }
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5201. {
  5202. front: {
  5203. height: math.unit(6, "feet"),
  5204. weight: math.unit(180, "lbs"),
  5205. name: "Front",
  5206. image: {
  5207. source: "./media/characters/andy/front.svg"
  5208. }
  5209. }
  5210. },
  5211. [
  5212. {
  5213. name: "Normal",
  5214. height: math.unit(8, "feet"),
  5215. default: true
  5216. },
  5217. {
  5218. name: "Macro",
  5219. height: math.unit(1000, "feet")
  5220. },
  5221. {
  5222. name: "Megamacro",
  5223. height: math.unit(5, "miles")
  5224. },
  5225. {
  5226. name: "Gigamacro",
  5227. height: math.unit(5000, "miles")
  5228. },
  5229. ]
  5230. ))
  5231. characterMakers.push(() => makeCharacter(
  5232. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5233. {
  5234. front: {
  5235. height: math.unit(6, "feet"),
  5236. weight: math.unit(210, "lbs"),
  5237. name: "Front",
  5238. image: {
  5239. source: "./media/characters/cimmaron/front-sfw.svg",
  5240. extra: 701 / 676,
  5241. bottom: 0.046
  5242. }
  5243. },
  5244. back: {
  5245. height: math.unit(6, "feet"),
  5246. weight: math.unit(210, "lbs"),
  5247. name: "Back",
  5248. image: {
  5249. source: "./media/characters/cimmaron/back-sfw.svg",
  5250. extra: 701 / 676,
  5251. bottom: 0.046
  5252. }
  5253. },
  5254. frontNsfw: {
  5255. height: math.unit(6, "feet"),
  5256. weight: math.unit(210, "lbs"),
  5257. name: "Front (NSFW)",
  5258. image: {
  5259. source: "./media/characters/cimmaron/front-nsfw.svg",
  5260. extra: 701 / 676,
  5261. bottom: 0.046
  5262. }
  5263. },
  5264. backNsfw: {
  5265. height: math.unit(6, "feet"),
  5266. weight: math.unit(210, "lbs"),
  5267. name: "Back (NSFW)",
  5268. image: {
  5269. source: "./media/characters/cimmaron/back-nsfw.svg",
  5270. extra: 701 / 676,
  5271. bottom: 0.046
  5272. }
  5273. },
  5274. dick: {
  5275. height: math.unit(1.714, "feet"),
  5276. name: "Dick",
  5277. image: {
  5278. source: "./media/characters/cimmaron/dick.svg"
  5279. }
  5280. },
  5281. },
  5282. [
  5283. {
  5284. name: "Normal",
  5285. height: math.unit(6, "feet"),
  5286. default: true
  5287. },
  5288. {
  5289. name: "Macro Mayor",
  5290. height: math.unit(350, "meters")
  5291. },
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5296. {
  5297. front: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(200, "lbs"),
  5300. name: "Front",
  5301. image: {
  5302. source: "./media/characters/akari/front.svg",
  5303. extra: 962 / 901,
  5304. bottom: 0.04
  5305. }
  5306. }
  5307. },
  5308. [
  5309. {
  5310. name: "Micro",
  5311. height: math.unit(5, "inches"),
  5312. default: true
  5313. },
  5314. {
  5315. name: "Normal",
  5316. height: math.unit(7, "feet")
  5317. },
  5318. ]
  5319. ))
  5320. characterMakers.push(() => makeCharacter(
  5321. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5322. {
  5323. front: {
  5324. height: math.unit(6, "feet"),
  5325. weight: math.unit(140, "lbs"),
  5326. name: "Front",
  5327. image: {
  5328. source: "./media/characters/cynosura/front.svg",
  5329. extra: 896 / 847
  5330. }
  5331. },
  5332. back: {
  5333. height: math.unit(6, "feet"),
  5334. weight: math.unit(140, "lbs"),
  5335. name: "Back",
  5336. image: {
  5337. source: "./media/characters/cynosura/back.svg",
  5338. extra: 1365 / 1250
  5339. }
  5340. },
  5341. },
  5342. [
  5343. {
  5344. name: "Micro",
  5345. height: math.unit(4, "inches")
  5346. },
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(5.75, "feet"),
  5350. default: true
  5351. },
  5352. {
  5353. name: "Tall",
  5354. height: math.unit(10, "feet")
  5355. },
  5356. {
  5357. name: "Big",
  5358. height: math.unit(20, "feet")
  5359. },
  5360. {
  5361. name: "Macro",
  5362. height: math.unit(50, "feet")
  5363. },
  5364. ]
  5365. ))
  5366. characterMakers.push(() => makeCharacter(
  5367. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5368. {
  5369. front: {
  5370. height: math.unit(6, "feet"),
  5371. weight: math.unit(170, "lbs"),
  5372. name: "Front",
  5373. image: {
  5374. source: "./media/characters/gin/front.svg",
  5375. extra: 1.053,
  5376. bottom: 0.025
  5377. }
  5378. },
  5379. foot: {
  5380. height: math.unit(6 / 4.25, "feet"),
  5381. name: "Foot",
  5382. image: {
  5383. source: "./media/characters/gin/foot.svg"
  5384. }
  5385. },
  5386. sole: {
  5387. height: math.unit(6 / 4.40, "feet"),
  5388. name: "Sole",
  5389. image: {
  5390. source: "./media/characters/gin/sole.svg"
  5391. }
  5392. },
  5393. },
  5394. [
  5395. {
  5396. name: "Normal",
  5397. height: math.unit(13 + 2 / 12, "feet")
  5398. },
  5399. {
  5400. name: "Macro",
  5401. height: math.unit(1500, "feet")
  5402. },
  5403. {
  5404. name: "Megamacro",
  5405. height: math.unit(200, "miles"),
  5406. default: true
  5407. },
  5408. {
  5409. name: "Gigamacro",
  5410. height: math.unit(500, "megameters")
  5411. },
  5412. {
  5413. name: "Teramacro",
  5414. height: math.unit(15, "lightyears")
  5415. }
  5416. ]
  5417. ))
  5418. characterMakers.push(() => makeCharacter(
  5419. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5420. {
  5421. front: {
  5422. height: math.unit(6 + 1 / 6, "feet"),
  5423. weight: math.unit(178, "lbs"),
  5424. name: "Front",
  5425. image: {
  5426. source: "./media/characters/guy/front.svg"
  5427. }
  5428. }
  5429. },
  5430. [
  5431. {
  5432. name: "Normal",
  5433. height: math.unit(6 + 1 / 6, "feet"),
  5434. default: true
  5435. },
  5436. {
  5437. name: "Large",
  5438. height: math.unit(25 + 7 / 12, "feet")
  5439. },
  5440. {
  5441. name: "Macro",
  5442. height: math.unit(60 + 9 / 12, "feet")
  5443. },
  5444. {
  5445. name: "Macro+",
  5446. height: math.unit(246, "feet")
  5447. },
  5448. {
  5449. name: "Macro++",
  5450. height: math.unit(878, "feet")
  5451. }
  5452. ]
  5453. ))
  5454. characterMakers.push(() => makeCharacter(
  5455. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5456. {
  5457. front: {
  5458. height: math.unit(9, "feet"),
  5459. weight: math.unit(800, "lbs"),
  5460. name: "Front",
  5461. image: {
  5462. source: "./media/characters/tiberius/front.svg",
  5463. extra: 2295 / 2071
  5464. }
  5465. },
  5466. back: {
  5467. height: math.unit(9, "feet"),
  5468. weight: math.unit(800, "lbs"),
  5469. name: "Back",
  5470. image: {
  5471. source: "./media/characters/tiberius/back.svg",
  5472. extra: 2373 / 2160
  5473. }
  5474. },
  5475. },
  5476. [
  5477. {
  5478. name: "Normal",
  5479. height: math.unit(9, "feet"),
  5480. default: true
  5481. }
  5482. ]
  5483. ))
  5484. characterMakers.push(() => makeCharacter(
  5485. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5486. {
  5487. front: {
  5488. height: math.unit(6, "feet"),
  5489. weight: math.unit(600, "lbs"),
  5490. name: "Front",
  5491. image: {
  5492. source: "./media/characters/surgo/front.svg",
  5493. extra: 3591 / 2227
  5494. }
  5495. },
  5496. back: {
  5497. height: math.unit(6, "feet"),
  5498. weight: math.unit(600, "lbs"),
  5499. name: "Back",
  5500. image: {
  5501. source: "./media/characters/surgo/back.svg",
  5502. extra: 3557 / 2228
  5503. }
  5504. },
  5505. laying: {
  5506. height: math.unit(6 * 0.85, "feet"),
  5507. weight: math.unit(600, "lbs"),
  5508. name: "Laying",
  5509. image: {
  5510. source: "./media/characters/surgo/laying.svg"
  5511. }
  5512. },
  5513. },
  5514. [
  5515. {
  5516. name: "Normal",
  5517. height: math.unit(6, "feet"),
  5518. default: true
  5519. }
  5520. ]
  5521. ))
  5522. characterMakers.push(() => makeCharacter(
  5523. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5524. {
  5525. side: {
  5526. height: math.unit(6, "feet"),
  5527. weight: math.unit(150, "lbs"),
  5528. name: "Side",
  5529. image: {
  5530. source: "./media/characters/cibus/side.svg",
  5531. extra: 800 / 400
  5532. }
  5533. },
  5534. },
  5535. [
  5536. {
  5537. name: "Normal",
  5538. height: math.unit(6, "feet"),
  5539. default: true
  5540. }
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5545. {
  5546. front: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(240, "lbs"),
  5549. name: "Front",
  5550. image: {
  5551. source: "./media/characters/nibbles/front.svg"
  5552. }
  5553. },
  5554. side: {
  5555. height: math.unit(6, "feet"),
  5556. weight: math.unit(240, "lbs"),
  5557. name: "Side",
  5558. image: {
  5559. source: "./media/characters/nibbles/side.svg"
  5560. }
  5561. },
  5562. },
  5563. [
  5564. {
  5565. name: "Normal",
  5566. height: math.unit(9, "feet"),
  5567. default: true
  5568. }
  5569. ]
  5570. ))
  5571. characterMakers.push(() => makeCharacter(
  5572. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5573. {
  5574. side: {
  5575. height: math.unit(5 + 1 / 6, "feet"),
  5576. weight: math.unit(130, "lbs"),
  5577. name: "Side",
  5578. image: {
  5579. source: "./media/characters/rikky/side.svg",
  5580. extra: 851 / 801
  5581. }
  5582. },
  5583. },
  5584. [
  5585. {
  5586. name: "Normal",
  5587. height: math.unit(5 + 1 / 6, "feet")
  5588. },
  5589. {
  5590. name: "Macro",
  5591. height: math.unit(152, "feet"),
  5592. default: true
  5593. },
  5594. {
  5595. name: "Megamacro",
  5596. height: math.unit(7, "miles")
  5597. }
  5598. ]
  5599. ))
  5600. characterMakers.push(() => makeCharacter(
  5601. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5602. {
  5603. side: {
  5604. height: math.unit(370, "cm"),
  5605. weight: math.unit(350, "lbs"),
  5606. name: "Side",
  5607. image: {
  5608. source: "./media/characters/malfressa/side.svg"
  5609. }
  5610. },
  5611. walking: {
  5612. height: math.unit(370, "cm"),
  5613. weight: math.unit(350, "lbs"),
  5614. name: "Walking",
  5615. image: {
  5616. source: "./media/characters/malfressa/walking.svg"
  5617. }
  5618. },
  5619. feral: {
  5620. height: math.unit(2500, "cm"),
  5621. weight: math.unit(100000, "lbs"),
  5622. name: "Feral",
  5623. image: {
  5624. source: "./media/characters/malfressa/feral.svg",
  5625. extra: 2108 / 837,
  5626. bottom: 0.02
  5627. }
  5628. },
  5629. },
  5630. [
  5631. {
  5632. name: "Normal",
  5633. height: math.unit(370, "cm")
  5634. },
  5635. {
  5636. name: "Macro",
  5637. height: math.unit(300, "meters"),
  5638. default: true
  5639. }
  5640. ]
  5641. ))
  5642. characterMakers.push(() => makeCharacter(
  5643. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5644. {
  5645. front: {
  5646. height: math.unit(6, "feet"),
  5647. weight: math.unit(60, "kg"),
  5648. name: "Front",
  5649. image: {
  5650. source: "./media/characters/jaro/front.svg"
  5651. }
  5652. },
  5653. back: {
  5654. height: math.unit(6, "feet"),
  5655. weight: math.unit(60, "kg"),
  5656. name: "Back",
  5657. image: {
  5658. source: "./media/characters/jaro/back.svg"
  5659. }
  5660. },
  5661. },
  5662. [
  5663. {
  5664. name: "Micro",
  5665. height: math.unit(7, "inches")
  5666. },
  5667. {
  5668. name: "Normal",
  5669. height: math.unit(5.5, "feet"),
  5670. default: true
  5671. },
  5672. {
  5673. name: "Minimacro",
  5674. height: math.unit(20, "feet")
  5675. },
  5676. {
  5677. name: "Macro",
  5678. height: math.unit(200, "meters")
  5679. }
  5680. ]
  5681. ))
  5682. characterMakers.push(() => makeCharacter(
  5683. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5684. {
  5685. front: {
  5686. height: math.unit(6, "feet"),
  5687. weight: math.unit(195, "lb"),
  5688. name: "Front",
  5689. image: {
  5690. source: "./media/characters/rogue/front.svg"
  5691. }
  5692. },
  5693. },
  5694. [
  5695. {
  5696. name: "Macro",
  5697. height: math.unit(90, "feet"),
  5698. default: true
  5699. },
  5700. ]
  5701. ))
  5702. characterMakers.push(() => makeCharacter(
  5703. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5704. {
  5705. front: {
  5706. height: math.unit(5 + 8 / 12, "feet"),
  5707. weight: math.unit(140, "lb"),
  5708. name: "Front",
  5709. image: {
  5710. source: "./media/characters/piper/front.svg",
  5711. extra: 3928 / 3681
  5712. }
  5713. },
  5714. },
  5715. [
  5716. {
  5717. name: "Micro",
  5718. height: math.unit(2, "inches")
  5719. },
  5720. {
  5721. name: "Normal",
  5722. height: math.unit(5 + 8 / 12, "feet")
  5723. },
  5724. {
  5725. name: "Macro",
  5726. height: math.unit(250, "feet"),
  5727. default: true
  5728. },
  5729. {
  5730. name: "Megamacro",
  5731. height: math.unit(7, "miles")
  5732. },
  5733. ]
  5734. ))
  5735. characterMakers.push(() => makeCharacter(
  5736. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5737. {
  5738. front: {
  5739. height: math.unit(6, "feet"),
  5740. weight: math.unit(220, "lb"),
  5741. name: "Front",
  5742. image: {
  5743. source: "./media/characters/gemini/front.svg"
  5744. }
  5745. },
  5746. back: {
  5747. height: math.unit(6, "feet"),
  5748. weight: math.unit(220, "lb"),
  5749. name: "Back",
  5750. image: {
  5751. source: "./media/characters/gemini/back.svg"
  5752. }
  5753. },
  5754. kneeling: {
  5755. height: math.unit(6 / 1.5, "feet"),
  5756. weight: math.unit(220, "lb"),
  5757. name: "Kneeling",
  5758. image: {
  5759. source: "./media/characters/gemini/kneeling.svg",
  5760. bottom: 0.02
  5761. }
  5762. },
  5763. },
  5764. [
  5765. {
  5766. name: "Macro",
  5767. height: math.unit(300, "meters"),
  5768. default: true
  5769. },
  5770. {
  5771. name: "Megamacro",
  5772. height: math.unit(6900, "meters")
  5773. },
  5774. ]
  5775. ))
  5776. characterMakers.push(() => makeCharacter(
  5777. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5778. {
  5779. anthro: {
  5780. height: math.unit(2.35, "meters"),
  5781. weight: math.unit(73, "kg"),
  5782. name: "Anthro",
  5783. image: {
  5784. source: "./media/characters/alicia/anthro.svg",
  5785. extra: 2571 / 2385,
  5786. bottom: 75 / 2648
  5787. }
  5788. },
  5789. paw: {
  5790. height: math.unit(1.32, "feet"),
  5791. name: "Paw",
  5792. image: {
  5793. source: "./media/characters/alicia/paw.svg"
  5794. }
  5795. },
  5796. feral: {
  5797. height: math.unit(1.69, "meters"),
  5798. weight: math.unit(73, "kg"),
  5799. name: "Feral",
  5800. image: {
  5801. source: "./media/characters/alicia/feral.svg",
  5802. extra: 2123 / 1715,
  5803. bottom: 222 / 2349
  5804. }
  5805. },
  5806. },
  5807. [
  5808. {
  5809. name: "Normal",
  5810. height: math.unit(2.35, "meters")
  5811. },
  5812. {
  5813. name: "Macro",
  5814. height: math.unit(60, "meters"),
  5815. default: true
  5816. },
  5817. {
  5818. name: "Megamacro",
  5819. height: math.unit(10000, "kilometers")
  5820. },
  5821. ]
  5822. ))
  5823. characterMakers.push(() => makeCharacter(
  5824. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5825. {
  5826. front: {
  5827. height: math.unit(7, "feet"),
  5828. weight: math.unit(250, "lbs"),
  5829. name: "Front",
  5830. image: {
  5831. source: "./media/characters/archy/front.svg"
  5832. }
  5833. }
  5834. },
  5835. [
  5836. {
  5837. name: "Micro",
  5838. height: math.unit(1, "inch")
  5839. },
  5840. {
  5841. name: "Shorty",
  5842. height: math.unit(5, "feet")
  5843. },
  5844. {
  5845. name: "Normal",
  5846. height: math.unit(7, "feet")
  5847. },
  5848. {
  5849. name: "Macro",
  5850. height: math.unit(600, "meters"),
  5851. default: true
  5852. },
  5853. {
  5854. name: "Megamacro",
  5855. height: math.unit(1, "mile")
  5856. },
  5857. ]
  5858. ))
  5859. characterMakers.push(() => makeCharacter(
  5860. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5861. {
  5862. front: {
  5863. height: math.unit(1.65, "meters"),
  5864. weight: math.unit(74, "kg"),
  5865. name: "Front",
  5866. image: {
  5867. source: "./media/characters/berri/front.svg",
  5868. extra: 857 / 837,
  5869. bottom: 18 / 877
  5870. }
  5871. },
  5872. bum: {
  5873. height: math.unit(1.46, "feet"),
  5874. name: "Bum",
  5875. image: {
  5876. source: "./media/characters/berri/bum.svg"
  5877. }
  5878. },
  5879. mouth: {
  5880. height: math.unit(0.44, "feet"),
  5881. name: "Mouth",
  5882. image: {
  5883. source: "./media/characters/berri/mouth.svg"
  5884. }
  5885. },
  5886. paw: {
  5887. height: math.unit(0.826, "feet"),
  5888. name: "Paw",
  5889. image: {
  5890. source: "./media/characters/berri/paw.svg"
  5891. }
  5892. },
  5893. },
  5894. [
  5895. {
  5896. name: "Normal",
  5897. height: math.unit(1.65, "meters")
  5898. },
  5899. {
  5900. name: "Macro",
  5901. height: math.unit(60, "m"),
  5902. default: true
  5903. },
  5904. {
  5905. name: "Megamacro",
  5906. height: math.unit(9.213, "km")
  5907. },
  5908. {
  5909. name: "Planet Eater",
  5910. height: math.unit(489, "megameters")
  5911. },
  5912. {
  5913. name: "Teramacro",
  5914. height: math.unit(2471635000000, "meters")
  5915. },
  5916. {
  5917. name: "Examacro",
  5918. height: math.unit(8.0624e+26, "meters")
  5919. }
  5920. ]
  5921. ))
  5922. characterMakers.push(() => makeCharacter(
  5923. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5924. {
  5925. front: {
  5926. height: math.unit(1.72, "meters"),
  5927. weight: math.unit(68, "kg"),
  5928. name: "Front",
  5929. image: {
  5930. source: "./media/characters/lexi/front.svg"
  5931. }
  5932. }
  5933. },
  5934. [
  5935. {
  5936. name: "Very Smol",
  5937. height: math.unit(10, "mm")
  5938. },
  5939. {
  5940. name: "Micro",
  5941. height: math.unit(6.8, "cm"),
  5942. default: true
  5943. },
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(1.72, "m")
  5947. }
  5948. ]
  5949. ))
  5950. characterMakers.push(() => makeCharacter(
  5951. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5952. {
  5953. front: {
  5954. height: math.unit(1.69, "meters"),
  5955. weight: math.unit(68, "kg"),
  5956. name: "Front",
  5957. image: {
  5958. source: "./media/characters/martin/front.svg",
  5959. extra: 596 / 581
  5960. }
  5961. }
  5962. },
  5963. [
  5964. {
  5965. name: "Micro",
  5966. height: math.unit(6.85, "cm"),
  5967. default: true
  5968. },
  5969. {
  5970. name: "Normal",
  5971. height: math.unit(1.69, "m")
  5972. }
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5977. {
  5978. front: {
  5979. height: math.unit(1.69, "meters"),
  5980. weight: math.unit(68, "kg"),
  5981. name: "Front",
  5982. image: {
  5983. source: "./media/characters/juno/front.svg"
  5984. }
  5985. }
  5986. },
  5987. [
  5988. {
  5989. name: "Micro",
  5990. height: math.unit(7, "cm")
  5991. },
  5992. {
  5993. name: "Normal",
  5994. height: math.unit(1.89, "m")
  5995. },
  5996. {
  5997. name: "Macro",
  5998. height: math.unit(353, "meters"),
  5999. default: true
  6000. }
  6001. ]
  6002. ))
  6003. characterMakers.push(() => makeCharacter(
  6004. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6005. {
  6006. front: {
  6007. height: math.unit(1.93, "meters"),
  6008. weight: math.unit(83, "kg"),
  6009. name: "Front",
  6010. image: {
  6011. source: "./media/characters/samantha/front.svg"
  6012. }
  6013. },
  6014. frontClothed: {
  6015. height: math.unit(1.93, "meters"),
  6016. weight: math.unit(83, "kg"),
  6017. name: "Front (Clothed)",
  6018. image: {
  6019. source: "./media/characters/samantha/front-clothed.svg"
  6020. }
  6021. },
  6022. back: {
  6023. height: math.unit(1.93, "meters"),
  6024. weight: math.unit(83, "kg"),
  6025. name: "Back",
  6026. image: {
  6027. source: "./media/characters/samantha/back.svg"
  6028. }
  6029. },
  6030. },
  6031. [
  6032. {
  6033. name: "Normal",
  6034. height: math.unit(1.93, "m")
  6035. },
  6036. {
  6037. name: "Macro",
  6038. height: math.unit(74, "meters"),
  6039. default: true
  6040. },
  6041. {
  6042. name: "Macro+",
  6043. height: math.unit(223, "meters"),
  6044. },
  6045. {
  6046. name: "Megamacro",
  6047. height: math.unit(8381, "meters"),
  6048. },
  6049. {
  6050. name: "Megamacro+",
  6051. height: math.unit(12000, "kilometers")
  6052. },
  6053. ]
  6054. ))
  6055. characterMakers.push(() => makeCharacter(
  6056. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6057. {
  6058. front: {
  6059. height: math.unit(1.92, "meters"),
  6060. weight: math.unit(80, "kg"),
  6061. name: "Front",
  6062. image: {
  6063. source: "./media/characters/dr-clay/front.svg"
  6064. }
  6065. },
  6066. frontClothed: {
  6067. height: math.unit(1.92, "meters"),
  6068. weight: math.unit(80, "kg"),
  6069. name: "Front (Clothed)",
  6070. image: {
  6071. source: "./media/characters/dr-clay/front-clothed.svg"
  6072. }
  6073. }
  6074. },
  6075. [
  6076. {
  6077. name: "Normal",
  6078. height: math.unit(1.92, "m")
  6079. },
  6080. {
  6081. name: "Macro",
  6082. height: math.unit(214, "meters"),
  6083. default: true
  6084. },
  6085. {
  6086. name: "Macro+",
  6087. height: math.unit(12.237, "meters"),
  6088. },
  6089. {
  6090. name: "Megamacro",
  6091. height: math.unit(557, "megameters"),
  6092. },
  6093. {
  6094. name: "Unimaginable",
  6095. height: math.unit(120e9, "lightyears")
  6096. },
  6097. ]
  6098. ))
  6099. characterMakers.push(() => makeCharacter(
  6100. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6101. {
  6102. front: {
  6103. height: math.unit(2, "meters"),
  6104. weight: math.unit(80, "kg"),
  6105. name: "Front",
  6106. image: {
  6107. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6108. }
  6109. }
  6110. },
  6111. [
  6112. {
  6113. name: "Teramacro",
  6114. height: math.unit(500000, "lightyears"),
  6115. default: true
  6116. },
  6117. ]
  6118. ))
  6119. characterMakers.push(() => makeCharacter(
  6120. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6121. {
  6122. front: {
  6123. height: math.unit(2, "meters"),
  6124. weight: math.unit(150, "kg"),
  6125. name: "Front",
  6126. image: {
  6127. source: "./media/characters/vemus/front.svg",
  6128. extra: 2384 / 2084,
  6129. bottom: 0.0123
  6130. }
  6131. }
  6132. },
  6133. [
  6134. {
  6135. name: "Normal",
  6136. height: math.unit(3.75, "meters"),
  6137. default: true
  6138. },
  6139. {
  6140. name: "Big",
  6141. height: math.unit(8, "meters")
  6142. },
  6143. {
  6144. name: "Macro",
  6145. height: math.unit(100, "meters")
  6146. },
  6147. {
  6148. name: "Macro+",
  6149. height: math.unit(1500, "meters")
  6150. },
  6151. {
  6152. name: "Stellar",
  6153. height: math.unit(14e8, "meters")
  6154. },
  6155. ]
  6156. ))
  6157. characterMakers.push(() => makeCharacter(
  6158. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6159. {
  6160. front: {
  6161. height: math.unit(2, "meters"),
  6162. weight: math.unit(70, "kg"),
  6163. name: "Front",
  6164. image: {
  6165. source: "./media/characters/beherit/front.svg",
  6166. extra: 1408 / 1242
  6167. }
  6168. }
  6169. },
  6170. [
  6171. {
  6172. name: "Normal",
  6173. height: math.unit(6, "feet")
  6174. },
  6175. {
  6176. name: "Lorg",
  6177. height: math.unit(25, "feet"),
  6178. default: true
  6179. },
  6180. {
  6181. name: "Lorger",
  6182. height: math.unit(75, "feet")
  6183. },
  6184. {
  6185. name: "Macro",
  6186. height: math.unit(200, "meters")
  6187. },
  6188. ]
  6189. ))
  6190. characterMakers.push(() => makeCharacter(
  6191. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6192. {
  6193. front: {
  6194. height: math.unit(2, "meters"),
  6195. weight: math.unit(150, "kg"),
  6196. name: "Front",
  6197. image: {
  6198. source: "./media/characters/everett/front.svg",
  6199. extra: 2038 / 1737,
  6200. bottom: 0.03
  6201. }
  6202. },
  6203. paw: {
  6204. height: math.unit(2 / 3.6, "meters"),
  6205. name: "Paw",
  6206. image: {
  6207. source: "./media/characters/everett/paw.svg"
  6208. }
  6209. },
  6210. },
  6211. [
  6212. {
  6213. name: "Normal",
  6214. height: math.unit(15, "feet"),
  6215. default: true
  6216. },
  6217. {
  6218. name: "Lorg",
  6219. height: math.unit(70, "feet"),
  6220. default: true
  6221. },
  6222. {
  6223. name: "Lorger",
  6224. height: math.unit(250, "feet")
  6225. },
  6226. {
  6227. name: "Macro",
  6228. height: math.unit(500, "meters")
  6229. },
  6230. ]
  6231. ))
  6232. characterMakers.push(() => makeCharacter(
  6233. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6234. {
  6235. front: {
  6236. height: math.unit(2, "meters"),
  6237. weight: math.unit(86, "kg"),
  6238. name: "Front",
  6239. image: {
  6240. source: "./media/characters/rose/front.svg",
  6241. extra: 350/335,
  6242. bottom: 10/360
  6243. }
  6244. },
  6245. frontAlt: {
  6246. height: math.unit(1.6, "meters"),
  6247. weight: math.unit(86, "kg"),
  6248. name: "Front (Alt)",
  6249. image: {
  6250. source: "./media/characters/rose/front-alt.svg",
  6251. extra: 299/283,
  6252. bottom: 3/302
  6253. }
  6254. },
  6255. plush: {
  6256. height: math.unit(2, "meters"),
  6257. weight: math.unit(86/3, "kg"),
  6258. name: "Plush",
  6259. image: {
  6260. source: "./media/characters/rose/plush.svg",
  6261. extra: 361/337,
  6262. bottom: 11/372
  6263. }
  6264. },
  6265. },
  6266. [
  6267. {
  6268. name: "Mini-Micro",
  6269. height: math.unit(1, "cm")
  6270. },
  6271. {
  6272. name: "Micro",
  6273. height: math.unit(3.5, "inches"),
  6274. default: true
  6275. },
  6276. {
  6277. name: "Normal",
  6278. height: math.unit(6 + 1 / 6, "feet")
  6279. },
  6280. {
  6281. name: "Mini-Macro",
  6282. height: math.unit(9 + 10 / 12, "feet")
  6283. },
  6284. ]
  6285. ))
  6286. characterMakers.push(() => makeCharacter(
  6287. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6288. {
  6289. front: {
  6290. height: math.unit(2, "meters"),
  6291. weight: math.unit(350, "lbs"),
  6292. name: "Front",
  6293. image: {
  6294. source: "./media/characters/regal/front.svg"
  6295. }
  6296. },
  6297. back: {
  6298. height: math.unit(2, "meters"),
  6299. weight: math.unit(350, "lbs"),
  6300. name: "Back",
  6301. image: {
  6302. source: "./media/characters/regal/back.svg"
  6303. }
  6304. },
  6305. },
  6306. [
  6307. {
  6308. name: "Macro",
  6309. height: math.unit(350, "feet"),
  6310. default: true
  6311. }
  6312. ]
  6313. ))
  6314. characterMakers.push(() => makeCharacter(
  6315. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6316. {
  6317. front: {
  6318. height: math.unit(4 + 11 / 12, "feet"),
  6319. weight: math.unit(100, "lbs"),
  6320. name: "Front",
  6321. image: {
  6322. source: "./media/characters/opal/front.svg"
  6323. }
  6324. },
  6325. frontAlt: {
  6326. height: math.unit(4 + 11 / 12, "feet"),
  6327. weight: math.unit(100, "lbs"),
  6328. name: "Front (Alt)",
  6329. image: {
  6330. source: "./media/characters/opal/front-alt.svg"
  6331. }
  6332. },
  6333. },
  6334. [
  6335. {
  6336. name: "Small",
  6337. height: math.unit(4 + 11 / 12, "feet")
  6338. },
  6339. {
  6340. name: "Normal",
  6341. height: math.unit(20, "feet"),
  6342. default: true
  6343. },
  6344. {
  6345. name: "Macro",
  6346. height: math.unit(120, "feet")
  6347. },
  6348. {
  6349. name: "Megamacro",
  6350. height: math.unit(80, "miles")
  6351. },
  6352. {
  6353. name: "True Size",
  6354. height: math.unit(100000, "lightyears")
  6355. },
  6356. ]
  6357. ))
  6358. characterMakers.push(() => makeCharacter(
  6359. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6360. {
  6361. front: {
  6362. height: math.unit(6, "feet"),
  6363. weight: math.unit(200, "lbs"),
  6364. name: "Front",
  6365. image: {
  6366. source: "./media/characters/vector-wuff/front.svg"
  6367. }
  6368. }
  6369. },
  6370. [
  6371. {
  6372. name: "Normal",
  6373. height: math.unit(2.8, "meters")
  6374. },
  6375. {
  6376. name: "Macro",
  6377. height: math.unit(450, "meters"),
  6378. default: true
  6379. },
  6380. {
  6381. name: "Megamacro",
  6382. height: math.unit(15, "kilometers")
  6383. }
  6384. ]
  6385. ))
  6386. characterMakers.push(() => makeCharacter(
  6387. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6388. {
  6389. front: {
  6390. height: math.unit(6, "feet"),
  6391. weight: math.unit(256, "lbs"),
  6392. name: "Front",
  6393. image: {
  6394. source: "./media/characters/dannik/front.svg"
  6395. }
  6396. }
  6397. },
  6398. [
  6399. {
  6400. name: "Macro",
  6401. height: math.unit(69.57, "meters"),
  6402. default: true
  6403. },
  6404. ]
  6405. ))
  6406. characterMakers.push(() => makeCharacter(
  6407. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6408. {
  6409. front: {
  6410. height: math.unit(6, "feet"),
  6411. weight: math.unit(120, "lbs"),
  6412. name: "Front",
  6413. image: {
  6414. source: "./media/characters/azura-saharah/front.svg"
  6415. }
  6416. },
  6417. back: {
  6418. height: math.unit(6, "feet"),
  6419. weight: math.unit(120, "lbs"),
  6420. name: "Back",
  6421. image: {
  6422. source: "./media/characters/azura-saharah/back.svg"
  6423. }
  6424. },
  6425. },
  6426. [
  6427. {
  6428. name: "Macro",
  6429. height: math.unit(100, "feet"),
  6430. default: true
  6431. },
  6432. ]
  6433. ))
  6434. characterMakers.push(() => makeCharacter(
  6435. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6436. {
  6437. side: {
  6438. height: math.unit(5 + 4 / 12, "feet"),
  6439. weight: math.unit(163, "lbs"),
  6440. name: "Side",
  6441. image: {
  6442. source: "./media/characters/kennedy/side.svg"
  6443. }
  6444. }
  6445. },
  6446. [
  6447. {
  6448. name: "Standard Doggo",
  6449. height: math.unit(5 + 4 / 12, "feet")
  6450. },
  6451. {
  6452. name: "Big Doggo",
  6453. height: math.unit(25 + 3 / 12, "feet"),
  6454. default: true
  6455. },
  6456. ]
  6457. ))
  6458. characterMakers.push(() => makeCharacter(
  6459. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6460. {
  6461. front: {
  6462. height: math.unit(6, "feet"),
  6463. weight: math.unit(90, "lbs"),
  6464. name: "Front",
  6465. image: {
  6466. source: "./media/characters/odi-lunar/front.svg"
  6467. }
  6468. }
  6469. },
  6470. [
  6471. {
  6472. name: "Micro",
  6473. height: math.unit(3, "inches"),
  6474. default: true
  6475. },
  6476. {
  6477. name: "Normal",
  6478. height: math.unit(5.5, "feet")
  6479. }
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6484. {
  6485. back: {
  6486. height: math.unit(6, "feet"),
  6487. weight: math.unit(220, "lbs"),
  6488. name: "Back",
  6489. image: {
  6490. source: "./media/characters/mandake/back.svg"
  6491. }
  6492. }
  6493. },
  6494. [
  6495. {
  6496. name: "Normal",
  6497. height: math.unit(7, "feet"),
  6498. default: true
  6499. },
  6500. {
  6501. name: "Macro",
  6502. height: math.unit(78, "feet")
  6503. },
  6504. {
  6505. name: "Macro+",
  6506. height: math.unit(300, "meters")
  6507. },
  6508. {
  6509. name: "Macro++",
  6510. height: math.unit(2400, "feet")
  6511. },
  6512. {
  6513. name: "Megamacro",
  6514. height: math.unit(5167, "meters")
  6515. },
  6516. {
  6517. name: "Gigamacro",
  6518. height: math.unit(41769, "miles")
  6519. },
  6520. ]
  6521. ))
  6522. characterMakers.push(() => makeCharacter(
  6523. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6524. {
  6525. front: {
  6526. height: math.unit(6, "feet"),
  6527. weight: math.unit(120, "lbs"),
  6528. name: "Front",
  6529. image: {
  6530. source: "./media/characters/yozey/front.svg"
  6531. }
  6532. },
  6533. frontAlt: {
  6534. height: math.unit(6, "feet"),
  6535. weight: math.unit(120, "lbs"),
  6536. name: "Front (Alt)",
  6537. image: {
  6538. source: "./media/characters/yozey/front-alt.svg"
  6539. }
  6540. },
  6541. side: {
  6542. height: math.unit(6, "feet"),
  6543. weight: math.unit(120, "lbs"),
  6544. name: "Side",
  6545. image: {
  6546. source: "./media/characters/yozey/side.svg"
  6547. }
  6548. },
  6549. },
  6550. [
  6551. {
  6552. name: "Micro",
  6553. height: math.unit(3, "inches"),
  6554. default: true
  6555. },
  6556. {
  6557. name: "Normal",
  6558. height: math.unit(6, "feet")
  6559. }
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(103, "lbs"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/valeska-voss/front.svg"
  6571. }
  6572. }
  6573. },
  6574. [
  6575. {
  6576. name: "Mini-Sized Sub",
  6577. height: math.unit(3.1, "inches")
  6578. },
  6579. {
  6580. name: "Mid-Sized Sub",
  6581. height: math.unit(6.2, "inches")
  6582. },
  6583. {
  6584. name: "Full-Sized Sub",
  6585. height: math.unit(9.3, "inches")
  6586. },
  6587. {
  6588. name: "Normal",
  6589. height: math.unit(5 + 2 / 12, "foot"),
  6590. default: true
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6596. {
  6597. front: {
  6598. height: math.unit(6, "feet"),
  6599. weight: math.unit(160, "lbs"),
  6600. name: "Front",
  6601. image: {
  6602. source: "./media/characters/gene-zeta/front.svg",
  6603. extra: 3006 / 2826,
  6604. bottom: 182 / 3188
  6605. }
  6606. }
  6607. },
  6608. [
  6609. {
  6610. name: "Micro",
  6611. height: math.unit(6, "inches")
  6612. },
  6613. {
  6614. name: "Normal",
  6615. height: math.unit(5 + 11 / 12, "foot"),
  6616. default: true
  6617. },
  6618. {
  6619. name: "Macro",
  6620. height: math.unit(140, "feet")
  6621. },
  6622. {
  6623. name: "Supercharged",
  6624. height: math.unit(2500, "feet")
  6625. },
  6626. ]
  6627. ))
  6628. characterMakers.push(() => makeCharacter(
  6629. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6630. {
  6631. front: {
  6632. height: math.unit(6, "feet"),
  6633. weight: math.unit(350, "lbs"),
  6634. name: "Front",
  6635. image: {
  6636. source: "./media/characters/razinox/front.svg",
  6637. extra: 1686 / 1548,
  6638. bottom: 28.2 / 1868
  6639. }
  6640. },
  6641. back: {
  6642. height: math.unit(6, "feet"),
  6643. weight: math.unit(350, "lbs"),
  6644. name: "Back",
  6645. image: {
  6646. source: "./media/characters/razinox/back.svg",
  6647. extra: 1660 / 1590,
  6648. bottom: 15 / 1665
  6649. }
  6650. },
  6651. },
  6652. [
  6653. {
  6654. name: "Normal",
  6655. height: math.unit(10 + 8 / 12, "foot")
  6656. },
  6657. {
  6658. name: "Minimacro",
  6659. height: math.unit(15, "foot")
  6660. },
  6661. {
  6662. name: "Macro",
  6663. height: math.unit(60, "foot"),
  6664. default: true
  6665. },
  6666. {
  6667. name: "Megamacro",
  6668. height: math.unit(5, "miles")
  6669. },
  6670. {
  6671. name: "Gigamacro",
  6672. height: math.unit(6000, "miles")
  6673. },
  6674. ]
  6675. ))
  6676. characterMakers.push(() => makeCharacter(
  6677. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6678. {
  6679. front: {
  6680. height: math.unit(6, "feet"),
  6681. weight: math.unit(150, "lbs"),
  6682. name: "Front",
  6683. image: {
  6684. source: "./media/characters/cobalt/front.svg"
  6685. }
  6686. }
  6687. },
  6688. [
  6689. {
  6690. name: "Normal",
  6691. height: math.unit(8 + 1 / 12, "foot")
  6692. },
  6693. {
  6694. name: "Macro",
  6695. height: math.unit(111, "foot"),
  6696. default: true
  6697. },
  6698. {
  6699. name: "Supracosmic",
  6700. height: math.unit(1e42, "feet")
  6701. },
  6702. ]
  6703. ))
  6704. characterMakers.push(() => makeCharacter(
  6705. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6706. {
  6707. front: {
  6708. height: math.unit(6, "feet"),
  6709. weight: math.unit(140, "lbs"),
  6710. name: "Front",
  6711. image: {
  6712. source: "./media/characters/amanda/front.svg"
  6713. }
  6714. }
  6715. },
  6716. [
  6717. {
  6718. name: "Micro",
  6719. height: math.unit(5, "inches"),
  6720. default: true
  6721. },
  6722. ]
  6723. ))
  6724. characterMakers.push(() => makeCharacter(
  6725. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6726. {
  6727. front: {
  6728. height: math.unit(2.75, "meters"),
  6729. weight: math.unit(1200, "lb"),
  6730. name: "Front",
  6731. image: {
  6732. source: "./media/characters/teal/front.svg",
  6733. extra: 2463 / 2320,
  6734. bottom: 166 / 2629
  6735. }
  6736. },
  6737. back: {
  6738. height: math.unit(2.75, "meters"),
  6739. weight: math.unit(1200, "lb"),
  6740. name: "Back",
  6741. image: {
  6742. source: "./media/characters/teal/back.svg",
  6743. extra: 2580 / 2489,
  6744. bottom: 151 / 2731
  6745. }
  6746. },
  6747. sitting: {
  6748. height: math.unit(1.9, "meters"),
  6749. weight: math.unit(1200, "lb"),
  6750. name: "Sitting",
  6751. image: {
  6752. source: "./media/characters/teal/sitting.svg",
  6753. extra: 623 / 590,
  6754. bottom: 121 / 744
  6755. }
  6756. },
  6757. standing: {
  6758. height: math.unit(2.75, "meters"),
  6759. weight: math.unit(1200, "lb"),
  6760. name: "Standing",
  6761. image: {
  6762. source: "./media/characters/teal/standing.svg",
  6763. extra: 923 / 893,
  6764. bottom: 60 / 983
  6765. }
  6766. },
  6767. stretching: {
  6768. height: math.unit(3.65, "meters"),
  6769. weight: math.unit(1200, "lb"),
  6770. name: "Stretching",
  6771. image: {
  6772. source: "./media/characters/teal/stretching.svg",
  6773. extra: 1276 / 1244,
  6774. bottom: 0 / 1276
  6775. }
  6776. },
  6777. legged: {
  6778. height: math.unit(1.3, "meters"),
  6779. weight: math.unit(100, "lb"),
  6780. name: "Legged",
  6781. image: {
  6782. source: "./media/characters/teal/legged.svg",
  6783. extra: 462 / 437,
  6784. bottom: 24 / 486
  6785. }
  6786. },
  6787. naga: {
  6788. height: math.unit(5.4, "meters"),
  6789. weight: math.unit(4000, "lb"),
  6790. name: "Naga",
  6791. image: {
  6792. source: "./media/characters/teal/naga.svg",
  6793. extra: 1902 / 1858,
  6794. bottom: 0 / 1902
  6795. }
  6796. },
  6797. hand: {
  6798. height: math.unit(0.52, "meters"),
  6799. name: "Hand",
  6800. image: {
  6801. source: "./media/characters/teal/hand.svg"
  6802. }
  6803. },
  6804. maw: {
  6805. height: math.unit(0.43, "meters"),
  6806. name: "Maw",
  6807. image: {
  6808. source: "./media/characters/teal/maw.svg"
  6809. }
  6810. },
  6811. slit: {
  6812. height: math.unit(0.25, "meters"),
  6813. name: "Slit",
  6814. image: {
  6815. source: "./media/characters/teal/slit.svg"
  6816. }
  6817. },
  6818. },
  6819. [
  6820. {
  6821. name: "Normal",
  6822. height: math.unit(2.75, "meters"),
  6823. default: true
  6824. },
  6825. {
  6826. name: "Macro",
  6827. height: math.unit(300, "feet")
  6828. },
  6829. {
  6830. name: "Macro+",
  6831. height: math.unit(2000, "feet")
  6832. },
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6837. {
  6838. frontCat: {
  6839. height: math.unit(6, "feet"),
  6840. weight: math.unit(180, "lbs"),
  6841. name: "Front (Cat)",
  6842. image: {
  6843. source: "./media/characters/ravin-amulet/front-cat.svg"
  6844. }
  6845. },
  6846. frontCatAlt: {
  6847. height: math.unit(6, "feet"),
  6848. weight: math.unit(180, "lbs"),
  6849. name: "Front (Alt, Cat)",
  6850. image: {
  6851. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6852. }
  6853. },
  6854. frontWerewolf: {
  6855. height: math.unit(6 * 1.2, "feet"),
  6856. weight: math.unit(225, "lbs"),
  6857. name: "Front (Werewolf)",
  6858. image: {
  6859. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6860. }
  6861. },
  6862. backWerewolf: {
  6863. height: math.unit(6 * 1.2, "feet"),
  6864. weight: math.unit(225, "lbs"),
  6865. name: "Back (Werewolf)",
  6866. image: {
  6867. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6868. }
  6869. },
  6870. },
  6871. [
  6872. {
  6873. name: "Nano",
  6874. height: math.unit(1, "micrometer")
  6875. },
  6876. {
  6877. name: "Micro",
  6878. height: math.unit(1, "inch")
  6879. },
  6880. {
  6881. name: "Normal",
  6882. height: math.unit(6, "feet"),
  6883. default: true
  6884. },
  6885. {
  6886. name: "Macro",
  6887. height: math.unit(60, "feet")
  6888. }
  6889. ]
  6890. ))
  6891. characterMakers.push(() => makeCharacter(
  6892. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6893. {
  6894. front: {
  6895. height: math.unit(6, "feet"),
  6896. weight: math.unit(165, "lbs"),
  6897. name: "Front",
  6898. image: {
  6899. source: "./media/characters/fluoresce/front.svg"
  6900. }
  6901. }
  6902. },
  6903. [
  6904. {
  6905. name: "Micro",
  6906. height: math.unit(6, "cm")
  6907. },
  6908. {
  6909. name: "Normal",
  6910. height: math.unit(5 + 7 / 12, "feet"),
  6911. default: true
  6912. },
  6913. {
  6914. name: "Macro",
  6915. height: math.unit(56, "feet")
  6916. },
  6917. {
  6918. name: "Megamacro",
  6919. height: math.unit(1.9, "miles")
  6920. },
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6925. {
  6926. front: {
  6927. height: math.unit(9 + 6 / 12, "feet"),
  6928. weight: math.unit(523, "lbs"),
  6929. name: "Side",
  6930. image: {
  6931. source: "./media/characters/aurora/side.svg"
  6932. }
  6933. }
  6934. },
  6935. [
  6936. {
  6937. name: "Normal",
  6938. height: math.unit(9 + 6 / 12, "feet")
  6939. },
  6940. {
  6941. name: "Macro",
  6942. height: math.unit(96, "feet"),
  6943. default: true
  6944. },
  6945. {
  6946. name: "Macro+",
  6947. height: math.unit(243, "feet")
  6948. },
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6953. {
  6954. front: {
  6955. height: math.unit(194, "cm"),
  6956. weight: math.unit(90, "kg"),
  6957. name: "Front",
  6958. image: {
  6959. source: "./media/characters/ranek/front.svg"
  6960. }
  6961. },
  6962. side: {
  6963. height: math.unit(194, "cm"),
  6964. weight: math.unit(90, "kg"),
  6965. name: "Side",
  6966. image: {
  6967. source: "./media/characters/ranek/side.svg"
  6968. }
  6969. },
  6970. back: {
  6971. height: math.unit(194, "cm"),
  6972. weight: math.unit(90, "kg"),
  6973. name: "Back",
  6974. image: {
  6975. source: "./media/characters/ranek/back.svg"
  6976. }
  6977. },
  6978. feral: {
  6979. height: math.unit(30, "cm"),
  6980. weight: math.unit(1.6, "lbs"),
  6981. name: "Feral",
  6982. image: {
  6983. source: "./media/characters/ranek/feral.svg"
  6984. }
  6985. },
  6986. },
  6987. [
  6988. {
  6989. name: "Normal",
  6990. height: math.unit(194, "cm"),
  6991. default: true
  6992. },
  6993. {
  6994. name: "Macro",
  6995. height: math.unit(100, "meters")
  6996. },
  6997. ]
  6998. ))
  6999. characterMakers.push(() => makeCharacter(
  7000. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7001. {
  7002. front: {
  7003. height: math.unit(5 + 6 / 12, "feet"),
  7004. weight: math.unit(153, "lbs"),
  7005. name: "Front",
  7006. image: {
  7007. source: "./media/characters/andrew-cooper/front.svg"
  7008. }
  7009. },
  7010. },
  7011. [
  7012. {
  7013. name: "Nano",
  7014. height: math.unit(1, "mm")
  7015. },
  7016. {
  7017. name: "Micro",
  7018. height: math.unit(2, "inches")
  7019. },
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(5 + 6 / 12, "feet"),
  7023. default: true
  7024. }
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(180, "lbs"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/akane-sato/front.svg",
  7036. extra: 1219 / 1140
  7037. }
  7038. },
  7039. back: {
  7040. height: math.unit(6, "feet"),
  7041. weight: math.unit(180, "lbs"),
  7042. name: "Back",
  7043. image: {
  7044. source: "./media/characters/akane-sato/back.svg",
  7045. extra: 1219 / 1170
  7046. }
  7047. },
  7048. },
  7049. [
  7050. {
  7051. name: "Normal",
  7052. height: math.unit(2.5, "meters")
  7053. },
  7054. {
  7055. name: "Macro",
  7056. height: math.unit(250, "meters"),
  7057. default: true
  7058. },
  7059. {
  7060. name: "Megamacro",
  7061. height: math.unit(25, "km")
  7062. },
  7063. ]
  7064. ))
  7065. characterMakers.push(() => makeCharacter(
  7066. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7067. {
  7068. front: {
  7069. height: math.unit(6, "feet"),
  7070. weight: math.unit(65, "kg"),
  7071. name: "Front",
  7072. image: {
  7073. source: "./media/characters/rook/front.svg",
  7074. extra: 960 / 950
  7075. }
  7076. }
  7077. },
  7078. [
  7079. {
  7080. name: "Normal",
  7081. height: math.unit(8.8, "feet")
  7082. },
  7083. {
  7084. name: "Macro",
  7085. height: math.unit(88, "feet"),
  7086. default: true
  7087. },
  7088. {
  7089. name: "Megamacro",
  7090. height: math.unit(8, "miles")
  7091. },
  7092. ]
  7093. ))
  7094. characterMakers.push(() => makeCharacter(
  7095. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7096. {
  7097. front: {
  7098. height: math.unit(12 + 2 / 12, "feet"),
  7099. weight: math.unit(808, "lbs"),
  7100. name: "Front",
  7101. image: {
  7102. source: "./media/characters/prodigy/front.svg"
  7103. }
  7104. }
  7105. },
  7106. [
  7107. {
  7108. name: "Normal",
  7109. height: math.unit(12 + 2 / 12, "feet"),
  7110. default: true
  7111. },
  7112. {
  7113. name: "Macro",
  7114. height: math.unit(143, "feet")
  7115. },
  7116. {
  7117. name: "Macro+",
  7118. height: math.unit(400, "feet")
  7119. },
  7120. ]
  7121. ))
  7122. characterMakers.push(() => makeCharacter(
  7123. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7124. {
  7125. front: {
  7126. height: math.unit(6, "feet"),
  7127. weight: math.unit(225, "lbs"),
  7128. name: "Front",
  7129. image: {
  7130. source: "./media/characters/daniel/front.svg"
  7131. }
  7132. },
  7133. leaning: {
  7134. height: math.unit(6, "feet"),
  7135. weight: math.unit(225, "lbs"),
  7136. name: "Leaning",
  7137. image: {
  7138. source: "./media/characters/daniel/leaning.svg"
  7139. }
  7140. },
  7141. },
  7142. [
  7143. {
  7144. name: "Macro",
  7145. height: math.unit(1000, "feet"),
  7146. default: true
  7147. },
  7148. ]
  7149. ))
  7150. characterMakers.push(() => makeCharacter(
  7151. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7152. {
  7153. front: {
  7154. height: math.unit(6, "feet"),
  7155. weight: math.unit(88, "lbs"),
  7156. name: "Front",
  7157. image: {
  7158. source: "./media/characters/chiros/front.svg",
  7159. extra: 306 / 226
  7160. }
  7161. },
  7162. side: {
  7163. height: math.unit(6, "feet"),
  7164. weight: math.unit(88, "lbs"),
  7165. name: "Side",
  7166. image: {
  7167. source: "./media/characters/chiros/side.svg",
  7168. extra: 306 / 226
  7169. }
  7170. },
  7171. },
  7172. [
  7173. {
  7174. name: "Normal",
  7175. height: math.unit(6, "cm"),
  7176. default: true
  7177. },
  7178. ]
  7179. ))
  7180. characterMakers.push(() => makeCharacter(
  7181. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7182. {
  7183. front: {
  7184. height: math.unit(6, "feet"),
  7185. weight: math.unit(100, "lbs"),
  7186. name: "Front",
  7187. image: {
  7188. source: "./media/characters/selka/front.svg",
  7189. extra: 947 / 887
  7190. }
  7191. }
  7192. },
  7193. [
  7194. {
  7195. name: "Normal",
  7196. height: math.unit(5, "cm"),
  7197. default: true
  7198. },
  7199. ]
  7200. ))
  7201. characterMakers.push(() => makeCharacter(
  7202. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7203. {
  7204. front: {
  7205. height: math.unit(8 + 3 / 12, "feet"),
  7206. weight: math.unit(424, "lbs"),
  7207. name: "Front",
  7208. image: {
  7209. source: "./media/characters/verin/front.svg",
  7210. extra: 1845 / 1550
  7211. }
  7212. },
  7213. frontArmored: {
  7214. height: math.unit(8 + 3 / 12, "feet"),
  7215. weight: math.unit(424, "lbs"),
  7216. name: "Front (Armored)",
  7217. image: {
  7218. source: "./media/characters/verin/front-armor.svg",
  7219. extra: 1845 / 1550,
  7220. bottom: 0.01
  7221. }
  7222. },
  7223. back: {
  7224. height: math.unit(8 + 3 / 12, "feet"),
  7225. weight: math.unit(424, "lbs"),
  7226. name: "Back",
  7227. image: {
  7228. source: "./media/characters/verin/back.svg",
  7229. bottom: 0.1,
  7230. extra: 1
  7231. }
  7232. },
  7233. foot: {
  7234. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7235. name: "Foot",
  7236. image: {
  7237. source: "./media/characters/verin/foot.svg"
  7238. }
  7239. },
  7240. },
  7241. [
  7242. {
  7243. name: "Normal",
  7244. height: math.unit(8 + 3 / 12, "feet")
  7245. },
  7246. {
  7247. name: "Minimacro",
  7248. height: math.unit(21, "feet"),
  7249. default: true
  7250. },
  7251. {
  7252. name: "Macro",
  7253. height: math.unit(626, "feet")
  7254. },
  7255. ]
  7256. ))
  7257. characterMakers.push(() => makeCharacter(
  7258. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7259. {
  7260. front: {
  7261. height: math.unit(2.718, "meters"),
  7262. weight: math.unit(150, "lbs"),
  7263. name: "Front",
  7264. image: {
  7265. source: "./media/characters/sovrim-terraquian/front.svg"
  7266. }
  7267. },
  7268. back: {
  7269. height: math.unit(2.718, "meters"),
  7270. weight: math.unit(150, "lbs"),
  7271. name: "Back",
  7272. image: {
  7273. source: "./media/characters/sovrim-terraquian/back.svg"
  7274. }
  7275. }
  7276. },
  7277. [
  7278. {
  7279. name: "Micro",
  7280. height: math.unit(2, "inches")
  7281. },
  7282. {
  7283. name: "Small",
  7284. height: math.unit(1, "meter")
  7285. },
  7286. {
  7287. name: "Normal",
  7288. height: math.unit(Math.E, "meters"),
  7289. default: true
  7290. },
  7291. {
  7292. name: "Macro",
  7293. height: math.unit(20, "meters")
  7294. },
  7295. {
  7296. name: "Macro+",
  7297. height: math.unit(400, "meters")
  7298. },
  7299. ]
  7300. ))
  7301. characterMakers.push(() => makeCharacter(
  7302. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7303. {
  7304. front: {
  7305. height: math.unit(7, "feet"),
  7306. weight: math.unit(489, "lbs"),
  7307. name: "Front",
  7308. image: {
  7309. source: "./media/characters/reece-silvermane/front.svg",
  7310. bottom: 0.02,
  7311. extra: 1
  7312. }
  7313. },
  7314. },
  7315. [
  7316. {
  7317. name: "Macro",
  7318. height: math.unit(1.5, "miles"),
  7319. default: true
  7320. },
  7321. ]
  7322. ))
  7323. characterMakers.push(() => makeCharacter(
  7324. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7325. {
  7326. front: {
  7327. height: math.unit(6, "feet"),
  7328. weight: math.unit(78, "kg"),
  7329. name: "Front",
  7330. image: {
  7331. source: "./media/characters/kane/front.svg",
  7332. extra: 978 / 899
  7333. }
  7334. },
  7335. },
  7336. [
  7337. {
  7338. name: "Normal",
  7339. height: math.unit(2.1, "m"),
  7340. },
  7341. {
  7342. name: "Macro",
  7343. height: math.unit(1, "km"),
  7344. default: true
  7345. },
  7346. ]
  7347. ))
  7348. characterMakers.push(() => makeCharacter(
  7349. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7350. {
  7351. front: {
  7352. height: math.unit(6, "feet"),
  7353. weight: math.unit(200, "kg"),
  7354. name: "Front",
  7355. image: {
  7356. source: "./media/characters/tegon/front.svg",
  7357. bottom: 0.01,
  7358. extra: 1
  7359. }
  7360. },
  7361. },
  7362. [
  7363. {
  7364. name: "Micro",
  7365. height: math.unit(1, "inch")
  7366. },
  7367. {
  7368. name: "Normal",
  7369. height: math.unit(6 + 3 / 12, "feet"),
  7370. default: true
  7371. },
  7372. {
  7373. name: "Macro",
  7374. height: math.unit(300, "feet")
  7375. },
  7376. {
  7377. name: "Megamacro",
  7378. height: math.unit(69, "miles")
  7379. },
  7380. ]
  7381. ))
  7382. characterMakers.push(() => makeCharacter(
  7383. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7384. {
  7385. side: {
  7386. height: math.unit(6, "feet"),
  7387. weight: math.unit(2304, "lbs"),
  7388. name: "Side",
  7389. image: {
  7390. source: "./media/characters/arcturax/side.svg",
  7391. extra: 790 / 376,
  7392. bottom: 0.01
  7393. }
  7394. },
  7395. },
  7396. [
  7397. {
  7398. name: "Micro",
  7399. height: math.unit(2, "inch")
  7400. },
  7401. {
  7402. name: "Normal",
  7403. height: math.unit(6, "feet")
  7404. },
  7405. {
  7406. name: "Macro",
  7407. height: math.unit(39, "feet"),
  7408. default: true
  7409. },
  7410. {
  7411. name: "Megamacro",
  7412. height: math.unit(7, "miles")
  7413. },
  7414. ]
  7415. ))
  7416. characterMakers.push(() => makeCharacter(
  7417. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7418. {
  7419. front: {
  7420. height: math.unit(6, "feet"),
  7421. weight: math.unit(50, "lbs"),
  7422. name: "Front",
  7423. image: {
  7424. source: "./media/characters/sentri/front.svg",
  7425. extra: 1750 / 1570,
  7426. bottom: 0.025
  7427. }
  7428. },
  7429. frontAlt: {
  7430. height: math.unit(6, "feet"),
  7431. weight: math.unit(50, "lbs"),
  7432. name: "Front (Alt)",
  7433. image: {
  7434. source: "./media/characters/sentri/front-alt.svg",
  7435. extra: 1750 / 1570,
  7436. bottom: 0.025
  7437. }
  7438. },
  7439. },
  7440. [
  7441. {
  7442. name: "Normal",
  7443. height: math.unit(15, "feet"),
  7444. default: true
  7445. },
  7446. {
  7447. name: "Macro",
  7448. height: math.unit(2500, "feet")
  7449. }
  7450. ]
  7451. ))
  7452. characterMakers.push(() => makeCharacter(
  7453. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7454. {
  7455. front: {
  7456. height: math.unit(5 + 8 / 12, "feet"),
  7457. weight: math.unit(130, "lbs"),
  7458. name: "Front",
  7459. image: {
  7460. source: "./media/characters/corvin/front.svg",
  7461. extra: 1803 / 1629
  7462. }
  7463. },
  7464. frontShirt: {
  7465. height: math.unit(5 + 8 / 12, "feet"),
  7466. weight: math.unit(130, "lbs"),
  7467. name: "Front (Shirt)",
  7468. image: {
  7469. source: "./media/characters/corvin/front-shirt.svg",
  7470. extra: 1803 / 1629
  7471. }
  7472. },
  7473. frontPoncho: {
  7474. height: math.unit(5 + 8 / 12, "feet"),
  7475. weight: math.unit(130, "lbs"),
  7476. name: "Front (Poncho)",
  7477. image: {
  7478. source: "./media/characters/corvin/front-poncho.svg",
  7479. extra: 1803 / 1629
  7480. }
  7481. },
  7482. side: {
  7483. height: math.unit(5 + 8 / 12, "feet"),
  7484. weight: math.unit(130, "lbs"),
  7485. name: "Side",
  7486. image: {
  7487. source: "./media/characters/corvin/side.svg",
  7488. extra: 1012 / 945
  7489. }
  7490. },
  7491. back: {
  7492. height: math.unit(5 + 8 / 12, "feet"),
  7493. weight: math.unit(130, "lbs"),
  7494. name: "Back",
  7495. image: {
  7496. source: "./media/characters/corvin/back.svg",
  7497. extra: 1803 / 1629
  7498. }
  7499. },
  7500. },
  7501. [
  7502. {
  7503. name: "Micro",
  7504. height: math.unit(3, "inches")
  7505. },
  7506. {
  7507. name: "Normal",
  7508. height: math.unit(5 + 8 / 12, "feet")
  7509. },
  7510. {
  7511. name: "Macro",
  7512. height: math.unit(300, "feet"),
  7513. default: true
  7514. },
  7515. {
  7516. name: "Megamacro",
  7517. height: math.unit(500, "miles")
  7518. }
  7519. ]
  7520. ))
  7521. characterMakers.push(() => makeCharacter(
  7522. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7523. {
  7524. front: {
  7525. height: math.unit(6, "feet"),
  7526. weight: math.unit(135, "lbs"),
  7527. name: "Front",
  7528. image: {
  7529. source: "./media/characters/q/front.svg",
  7530. extra: 854 / 752,
  7531. bottom: 0.005
  7532. }
  7533. },
  7534. back: {
  7535. height: math.unit(6, "feet"),
  7536. weight: math.unit(130, "lbs"),
  7537. name: "Back",
  7538. image: {
  7539. source: "./media/characters/q/back.svg",
  7540. extra: 854 / 752
  7541. }
  7542. },
  7543. },
  7544. [
  7545. {
  7546. name: "Macro",
  7547. height: math.unit(90, "feet"),
  7548. default: true
  7549. },
  7550. {
  7551. name: "Extra Macro",
  7552. height: math.unit(300, "feet"),
  7553. },
  7554. {
  7555. name: "BIG WALF",
  7556. height: math.unit(750, "feet"),
  7557. },
  7558. ]
  7559. ))
  7560. characterMakers.push(() => makeCharacter(
  7561. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7562. {
  7563. front: {
  7564. height: math.unit(6, "feet"),
  7565. weight: math.unit(150, "lbs"),
  7566. name: "Front",
  7567. image: {
  7568. source: "./media/characters/carley/front.svg",
  7569. extra: 3927 / 3540,
  7570. bottom: 29.2 / 735
  7571. }
  7572. }
  7573. },
  7574. [
  7575. {
  7576. name: "Normal",
  7577. height: math.unit(6 + 3 / 12, "feet")
  7578. },
  7579. {
  7580. name: "Macro",
  7581. height: math.unit(185, "feet"),
  7582. default: true
  7583. },
  7584. {
  7585. name: "Megamacro",
  7586. height: math.unit(8, "miles"),
  7587. },
  7588. ]
  7589. ))
  7590. characterMakers.push(() => makeCharacter(
  7591. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7592. {
  7593. front: {
  7594. height: math.unit(3, "feet"),
  7595. weight: math.unit(28, "lbs"),
  7596. name: "Front",
  7597. image: {
  7598. source: "./media/characters/citrine/front.svg"
  7599. }
  7600. }
  7601. },
  7602. [
  7603. {
  7604. name: "Normal",
  7605. height: math.unit(3, "feet"),
  7606. default: true
  7607. }
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7612. {
  7613. front: {
  7614. height: math.unit(14, "feet"),
  7615. weight: math.unit(1450, "kg"),
  7616. capacity: math.unit(15, "people"),
  7617. name: "Front",
  7618. image: {
  7619. source: "./media/characters/aura-starwind/front.svg",
  7620. extra: 1455 / 1335
  7621. }
  7622. },
  7623. side: {
  7624. height: math.unit(14, "feet"),
  7625. weight: math.unit(1450, "kg"),
  7626. capacity: math.unit(15, "people"),
  7627. name: "Side",
  7628. image: {
  7629. source: "./media/characters/aura-starwind/side.svg",
  7630. extra: 1654 / 1497
  7631. }
  7632. },
  7633. taur: {
  7634. height: math.unit(18, "feet"),
  7635. weight: math.unit(5500, "kg"),
  7636. capacity: math.unit(50, "people"),
  7637. name: "Taur",
  7638. image: {
  7639. source: "./media/characters/aura-starwind/taur.svg",
  7640. extra: 1760 / 1650
  7641. }
  7642. },
  7643. feral: {
  7644. height: math.unit(46, "feet"),
  7645. weight: math.unit(25000, "kg"),
  7646. capacity: math.unit(120, "people"),
  7647. name: "Feral",
  7648. image: {
  7649. source: "./media/characters/aura-starwind/feral.svg"
  7650. }
  7651. },
  7652. },
  7653. [
  7654. {
  7655. name: "Normal",
  7656. height: math.unit(14, "feet"),
  7657. default: true
  7658. },
  7659. {
  7660. name: "Macro",
  7661. height: math.unit(50, "meters")
  7662. },
  7663. {
  7664. name: "Megamacro",
  7665. height: math.unit(5000, "meters")
  7666. },
  7667. {
  7668. name: "Gigamacro",
  7669. height: math.unit(100000, "kilometers")
  7670. },
  7671. ]
  7672. ))
  7673. characterMakers.push(() => makeCharacter(
  7674. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7675. {
  7676. front: {
  7677. height: math.unit(2 + 7 / 12, "feet"),
  7678. weight: math.unit(32, "lbs"),
  7679. name: "Front",
  7680. image: {
  7681. source: "./media/characters/rivet/front.svg",
  7682. extra: 1716 / 1658,
  7683. bottom: 0.03
  7684. }
  7685. },
  7686. foot: {
  7687. height: math.unit(0.551, "feet"),
  7688. name: "Rivet's Foot",
  7689. image: {
  7690. source: "./media/characters/rivet/foot.svg"
  7691. },
  7692. rename: true
  7693. }
  7694. },
  7695. [
  7696. {
  7697. name: "Micro",
  7698. height: math.unit(1.5, "inches"),
  7699. },
  7700. {
  7701. name: "Normal",
  7702. height: math.unit(2 + 7 / 12, "feet"),
  7703. default: true
  7704. },
  7705. {
  7706. name: "Macro",
  7707. height: math.unit(85, "feet")
  7708. },
  7709. {
  7710. name: "Megamacro",
  7711. height: math.unit(2.2, "km")
  7712. }
  7713. ]
  7714. ))
  7715. characterMakers.push(() => makeCharacter(
  7716. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7717. {
  7718. front: {
  7719. height: math.unit(5 + 9 / 12, "feet"),
  7720. weight: math.unit(150, "lbs"),
  7721. name: "Front",
  7722. image: {
  7723. source: "./media/characters/coffee/front.svg",
  7724. extra: 3666 / 3032,
  7725. bottom: 0.04
  7726. }
  7727. },
  7728. foot: {
  7729. height: math.unit(1.29, "feet"),
  7730. name: "Foot",
  7731. image: {
  7732. source: "./media/characters/coffee/foot.svg"
  7733. }
  7734. },
  7735. },
  7736. [
  7737. {
  7738. name: "Micro",
  7739. height: math.unit(2, "inches"),
  7740. },
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(5 + 9 / 12, "feet"),
  7744. default: true
  7745. },
  7746. {
  7747. name: "Macro",
  7748. height: math.unit(800, "feet")
  7749. },
  7750. {
  7751. name: "Megamacro",
  7752. height: math.unit(25, "miles")
  7753. }
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(6, "feet"),
  7761. weight: math.unit(200, "lbs"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/chari-gal/front.svg",
  7765. extra: 1568 / 1385,
  7766. bottom: 0.047
  7767. }
  7768. },
  7769. gigantamax: {
  7770. height: math.unit(6 * 16, "feet"),
  7771. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7772. name: "Gigantamax",
  7773. image: {
  7774. source: "./media/characters/chari-gal/gigantamax.svg",
  7775. extra: 1124 / 888,
  7776. bottom: 0.03
  7777. }
  7778. },
  7779. },
  7780. [
  7781. {
  7782. name: "Normal",
  7783. height: math.unit(5 + 7 / 12, "feet")
  7784. },
  7785. {
  7786. name: "Macro",
  7787. height: math.unit(200, "feet"),
  7788. default: true
  7789. }
  7790. ]
  7791. ))
  7792. characterMakers.push(() => makeCharacter(
  7793. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7794. {
  7795. front: {
  7796. height: math.unit(6, "feet"),
  7797. weight: math.unit(150, "lbs"),
  7798. name: "Front",
  7799. image: {
  7800. source: "./media/characters/nova/front.svg",
  7801. extra: 5000 / 4722,
  7802. bottom: 0.02
  7803. }
  7804. }
  7805. },
  7806. [
  7807. {
  7808. name: "Micro-",
  7809. height: math.unit(0.8, "inches")
  7810. },
  7811. {
  7812. name: "Micro",
  7813. height: math.unit(2, "inches"),
  7814. default: true
  7815. },
  7816. ]
  7817. ))
  7818. characterMakers.push(() => makeCharacter(
  7819. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7820. {
  7821. front: {
  7822. height: math.unit(3 + 1 / 12, "feet"),
  7823. weight: math.unit(21.7, "lbs"),
  7824. name: "Front",
  7825. image: {
  7826. source: "./media/characters/argent/front.svg",
  7827. extra: 1471 / 1331,
  7828. bottom: 100.8 / 1575.5
  7829. }
  7830. }
  7831. },
  7832. [
  7833. {
  7834. name: "Micro",
  7835. height: math.unit(2, "inches")
  7836. },
  7837. {
  7838. name: "Normal",
  7839. height: math.unit(3 + 1 / 12, "feet"),
  7840. default: true
  7841. },
  7842. {
  7843. name: "Macro",
  7844. height: math.unit(120, "feet")
  7845. },
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7850. {
  7851. lamp: {
  7852. height: math.unit(7 * 1559 / 989, "feet"),
  7853. name: "Magic Lamp",
  7854. image: {
  7855. source: "./media/characters/mira-al-cul/lamp.svg",
  7856. extra: 1617 / 1559
  7857. }
  7858. },
  7859. front: {
  7860. height: math.unit(7, "feet"),
  7861. name: "Front",
  7862. image: {
  7863. source: "./media/characters/mira-al-cul/front.svg",
  7864. extra: 1044 / 990
  7865. }
  7866. },
  7867. },
  7868. [
  7869. {
  7870. name: "Heavily Restricted",
  7871. height: math.unit(7 * 1559 / 989, "feet")
  7872. },
  7873. {
  7874. name: "Freshly Freed",
  7875. height: math.unit(50 * 1559 / 989, "feet")
  7876. },
  7877. {
  7878. name: "World Encompassing",
  7879. height: math.unit(10000 * 1559 / 989, "miles")
  7880. },
  7881. {
  7882. name: "Galactic",
  7883. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7884. },
  7885. {
  7886. name: "Palmed Universe",
  7887. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7888. default: true
  7889. },
  7890. {
  7891. name: "Multiversal Matriarch",
  7892. height: math.unit(8.87e10, "yottameters")
  7893. },
  7894. {
  7895. name: "Void Mother",
  7896. height: math.unit(3.14e110, "yottaparsecs")
  7897. },
  7898. {
  7899. name: "Toying with Transcendence",
  7900. height: math.unit(1e307, "meters")
  7901. },
  7902. ]
  7903. ))
  7904. characterMakers.push(() => makeCharacter(
  7905. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7906. {
  7907. front: {
  7908. height: math.unit(17 + 1 / 12, "feet"),
  7909. weight: math.unit(476.2 * 5, "lbs"),
  7910. name: "Front",
  7911. image: {
  7912. source: "./media/characters/kuro-shi-uchū/front.svg",
  7913. extra: 2329 / 1835,
  7914. bottom: 0.02
  7915. }
  7916. },
  7917. },
  7918. [
  7919. {
  7920. name: "Micro",
  7921. height: math.unit(2, "inches")
  7922. },
  7923. {
  7924. name: "Normal",
  7925. height: math.unit(12, "meters")
  7926. },
  7927. {
  7928. name: "Planetary",
  7929. height: math.unit(0.00929, "AU"),
  7930. default: true
  7931. },
  7932. {
  7933. name: "Universal",
  7934. height: math.unit(20, "gigaparsecs")
  7935. },
  7936. ]
  7937. ))
  7938. characterMakers.push(() => makeCharacter(
  7939. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7940. {
  7941. front: {
  7942. height: math.unit(5 + 2 / 12, "feet"),
  7943. weight: math.unit(120, "lbs"),
  7944. name: "Front",
  7945. image: {
  7946. source: "./media/characters/katherine/front.svg",
  7947. extra: 2075 / 1969
  7948. }
  7949. },
  7950. dress: {
  7951. height: math.unit(5 + 2 / 12, "feet"),
  7952. weight: math.unit(120, "lbs"),
  7953. name: "Dress",
  7954. image: {
  7955. source: "./media/characters/katherine/dress.svg",
  7956. extra: 2258 / 2064
  7957. }
  7958. },
  7959. },
  7960. [
  7961. {
  7962. name: "Micro",
  7963. height: math.unit(1, "inches"),
  7964. default: true
  7965. },
  7966. {
  7967. name: "Normal",
  7968. height: math.unit(5 + 2 / 12, "feet")
  7969. },
  7970. {
  7971. name: "Macro",
  7972. height: math.unit(100, "meters")
  7973. },
  7974. {
  7975. name: "Megamacro",
  7976. height: math.unit(80, "miles")
  7977. },
  7978. ]
  7979. ))
  7980. characterMakers.push(() => makeCharacter(
  7981. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7982. {
  7983. front: {
  7984. height: math.unit(7 + 8 / 12, "feet"),
  7985. weight: math.unit(250, "lbs"),
  7986. name: "Front",
  7987. image: {
  7988. source: "./media/characters/yevis/front.svg",
  7989. extra: 1938 / 1755
  7990. }
  7991. }
  7992. },
  7993. [
  7994. {
  7995. name: "Mortal",
  7996. height: math.unit(7 + 8 / 12, "feet")
  7997. },
  7998. {
  7999. name: "Battle",
  8000. height: math.unit(25 + 11 / 12, "feet")
  8001. },
  8002. {
  8003. name: "Wrath",
  8004. height: math.unit(1654 + 11 / 12, "feet")
  8005. },
  8006. {
  8007. name: "Planet Destroyer",
  8008. height: math.unit(12000, "miles")
  8009. },
  8010. {
  8011. name: "Galaxy Conqueror",
  8012. height: math.unit(1.45, "zettameters"),
  8013. default: true
  8014. },
  8015. {
  8016. name: "Universal War",
  8017. height: math.unit(184, "gigaparsecs")
  8018. },
  8019. {
  8020. name: "Eternity War",
  8021. height: math.unit(1.98e55, "yottaparsecs")
  8022. },
  8023. ]
  8024. ))
  8025. characterMakers.push(() => makeCharacter(
  8026. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8027. {
  8028. front: {
  8029. height: math.unit(5 + 8 / 12, "feet"),
  8030. weight: math.unit(63, "kg"),
  8031. name: "Front",
  8032. image: {
  8033. source: "./media/characters/xavier/front.svg",
  8034. extra: 944 / 883
  8035. }
  8036. },
  8037. frontStretch: {
  8038. height: math.unit(5 + 8 / 12, "feet"),
  8039. weight: math.unit(63, "kg"),
  8040. name: "Stretching",
  8041. image: {
  8042. source: "./media/characters/xavier/front-stretch.svg",
  8043. extra: 962 / 820
  8044. }
  8045. },
  8046. },
  8047. [
  8048. {
  8049. name: "Normal",
  8050. height: math.unit(5 + 8 / 12, "feet")
  8051. },
  8052. {
  8053. name: "Macro",
  8054. height: math.unit(100, "meters"),
  8055. default: true
  8056. },
  8057. {
  8058. name: "McLargeHuge",
  8059. height: math.unit(10, "miles")
  8060. },
  8061. ]
  8062. ))
  8063. characterMakers.push(() => makeCharacter(
  8064. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8065. {
  8066. front: {
  8067. height: math.unit(5 + 5 / 12, "feet"),
  8068. weight: math.unit(150, "lb"),
  8069. name: "Front",
  8070. image: {
  8071. source: "./media/characters/joshii/front.svg",
  8072. extra: 765 / 653,
  8073. bottom: 51 / 816
  8074. }
  8075. },
  8076. foot: {
  8077. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8078. name: "Foot",
  8079. image: {
  8080. source: "./media/characters/joshii/foot.svg"
  8081. }
  8082. },
  8083. },
  8084. [
  8085. {
  8086. name: "Micro",
  8087. height: math.unit(2, "inches"),
  8088. default: true
  8089. },
  8090. {
  8091. name: "Normal",
  8092. height: math.unit(5 + 5 / 12, "feet")
  8093. },
  8094. {
  8095. name: "Macro",
  8096. height: math.unit(785, "feet")
  8097. },
  8098. {
  8099. name: "Megamacro",
  8100. height: math.unit(24.5, "miles")
  8101. },
  8102. ]
  8103. ))
  8104. characterMakers.push(() => makeCharacter(
  8105. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8106. {
  8107. front: {
  8108. height: math.unit(6, "feet"),
  8109. weight: math.unit(150, "lb"),
  8110. name: "Front",
  8111. image: {
  8112. source: "./media/characters/goddess-elizabeth/front.svg",
  8113. extra: 1800 / 1525,
  8114. bottom: 0.005
  8115. }
  8116. },
  8117. foot: {
  8118. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8119. name: "Foot",
  8120. image: {
  8121. source: "./media/characters/goddess-elizabeth/foot.svg"
  8122. }
  8123. },
  8124. mouth: {
  8125. height: math.unit(6, "feet"),
  8126. name: "Mouth",
  8127. image: {
  8128. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8129. }
  8130. },
  8131. },
  8132. [
  8133. {
  8134. name: "Micro",
  8135. height: math.unit(12, "feet")
  8136. },
  8137. {
  8138. name: "Normal",
  8139. height: math.unit(80, "miles"),
  8140. default: true
  8141. },
  8142. {
  8143. name: "Macro",
  8144. height: math.unit(15000, "parsecs")
  8145. },
  8146. ]
  8147. ))
  8148. characterMakers.push(() => makeCharacter(
  8149. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8150. {
  8151. front: {
  8152. height: math.unit(5 + 9 / 12, "feet"),
  8153. weight: math.unit(144, "lb"),
  8154. name: "Front",
  8155. image: {
  8156. source: "./media/characters/kara/front.svg"
  8157. }
  8158. },
  8159. feet: {
  8160. height: math.unit(6 / 6.765, "feet"),
  8161. name: "Kara's Feet",
  8162. rename: true,
  8163. image: {
  8164. source: "./media/characters/kara/feet.svg"
  8165. }
  8166. },
  8167. },
  8168. [
  8169. {
  8170. name: "Normal",
  8171. height: math.unit(5 + 9 / 12, "feet")
  8172. },
  8173. {
  8174. name: "Macro",
  8175. height: math.unit(174, "feet"),
  8176. default: true
  8177. },
  8178. ]
  8179. ))
  8180. characterMakers.push(() => makeCharacter(
  8181. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8182. {
  8183. front: {
  8184. height: math.unit(18, "feet"),
  8185. weight: math.unit(4050, "lb"),
  8186. name: "Front",
  8187. image: {
  8188. source: "./media/characters/tyrone/front.svg",
  8189. extra: 2405 / 2270,
  8190. bottom: 182 / 2587
  8191. }
  8192. },
  8193. },
  8194. [
  8195. {
  8196. name: "Normal",
  8197. height: math.unit(18, "feet"),
  8198. default: true
  8199. },
  8200. {
  8201. name: "Macro",
  8202. height: math.unit(300, "feet")
  8203. },
  8204. {
  8205. name: "Megamacro",
  8206. height: math.unit(15, "km")
  8207. },
  8208. {
  8209. name: "Gigamacro",
  8210. height: math.unit(500, "km")
  8211. },
  8212. {
  8213. name: "Teramacro",
  8214. height: math.unit(0.5, "gigameters")
  8215. },
  8216. {
  8217. name: "Omnimacro",
  8218. height: math.unit(1e252, "yottauniverse")
  8219. },
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8224. {
  8225. front: {
  8226. height: math.unit(7 + 8 / 12, "feet"),
  8227. weight: math.unit(120, "lb"),
  8228. name: "Front",
  8229. image: {
  8230. source: "./media/characters/danny/front.svg",
  8231. extra: 1490 / 1350
  8232. }
  8233. },
  8234. back: {
  8235. height: math.unit(7 + 8 / 12, "feet"),
  8236. weight: math.unit(120, "lb"),
  8237. name: "Back",
  8238. image: {
  8239. source: "./media/characters/danny/back.svg",
  8240. extra: 1490 / 1350
  8241. }
  8242. },
  8243. },
  8244. [
  8245. {
  8246. name: "Normal",
  8247. height: math.unit(7 + 8 / 12, "feet"),
  8248. default: true
  8249. },
  8250. ]
  8251. ))
  8252. characterMakers.push(() => makeCharacter(
  8253. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8254. {
  8255. front: {
  8256. height: math.unit(3.5, "inches"),
  8257. weight: math.unit(19, "grams"),
  8258. name: "Front",
  8259. image: {
  8260. source: "./media/characters/mallow/front.svg",
  8261. extra: 471 / 431
  8262. }
  8263. },
  8264. back: {
  8265. height: math.unit(3.5, "inches"),
  8266. weight: math.unit(19, "grams"),
  8267. name: "Back",
  8268. image: {
  8269. source: "./media/characters/mallow/back.svg",
  8270. extra: 471 / 431
  8271. }
  8272. },
  8273. },
  8274. [
  8275. {
  8276. name: "Normal",
  8277. height: math.unit(3.5, "inches"),
  8278. default: true
  8279. },
  8280. ]
  8281. ))
  8282. characterMakers.push(() => makeCharacter(
  8283. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8284. {
  8285. front: {
  8286. height: math.unit(9, "feet"),
  8287. weight: math.unit(230, "kg"),
  8288. name: "Front",
  8289. image: {
  8290. source: "./media/characters/starry-aqua/front.svg"
  8291. }
  8292. },
  8293. back: {
  8294. height: math.unit(9, "feet"),
  8295. weight: math.unit(230, "kg"),
  8296. name: "Back",
  8297. image: {
  8298. source: "./media/characters/starry-aqua/back.svg"
  8299. }
  8300. },
  8301. hand: {
  8302. height: math.unit(9 * 0.1168, "feet"),
  8303. name: "Hand",
  8304. image: {
  8305. source: "./media/characters/starry-aqua/hand.svg"
  8306. }
  8307. },
  8308. foot: {
  8309. height: math.unit(9 * 0.18, "feet"),
  8310. name: "Foot",
  8311. image: {
  8312. source: "./media/characters/starry-aqua/foot.svg"
  8313. }
  8314. }
  8315. },
  8316. [
  8317. {
  8318. name: "Micro",
  8319. height: math.unit(3, "inches")
  8320. },
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(9, "feet")
  8324. },
  8325. {
  8326. name: "Macro",
  8327. height: math.unit(300, "feet"),
  8328. default: true
  8329. },
  8330. {
  8331. name: "Megamacro",
  8332. height: math.unit(3200, "feet")
  8333. }
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(6, "feet"),
  8341. weight: math.unit(230, "lb"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/luka/front.svg",
  8345. extra: 1,
  8346. bottom: 0.025
  8347. }
  8348. },
  8349. },
  8350. [
  8351. {
  8352. name: "Normal",
  8353. height: math.unit(12 + 8 / 12, "feet"),
  8354. default: true
  8355. },
  8356. {
  8357. name: "Minimacro",
  8358. height: math.unit(20, "feet")
  8359. },
  8360. {
  8361. name: "Macro",
  8362. height: math.unit(250, "feet")
  8363. },
  8364. {
  8365. name: "Megamacro",
  8366. height: math.unit(5, "miles")
  8367. },
  8368. {
  8369. name: "Gigamacro",
  8370. height: math.unit(8000, "miles")
  8371. },
  8372. ]
  8373. ))
  8374. characterMakers.push(() => makeCharacter(
  8375. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8376. {
  8377. front: {
  8378. height: math.unit(6, "feet"),
  8379. weight: math.unit(150, "lb"),
  8380. name: "Front",
  8381. image: {
  8382. source: "./media/characters/natalie-nightring/front.svg",
  8383. extra: 1,
  8384. bottom: 0.06
  8385. }
  8386. },
  8387. },
  8388. [
  8389. {
  8390. name: "Uh Oh",
  8391. height: math.unit(0.1, "mm")
  8392. },
  8393. {
  8394. name: "Small",
  8395. height: math.unit(3, "inches")
  8396. },
  8397. {
  8398. name: "Human Scale",
  8399. height: math.unit(6, "feet")
  8400. },
  8401. {
  8402. name: "Librarian",
  8403. height: math.unit(50, "feet"),
  8404. default: true
  8405. },
  8406. {
  8407. name: "Immense",
  8408. height: math.unit(200, "miles")
  8409. },
  8410. ]
  8411. ))
  8412. characterMakers.push(() => makeCharacter(
  8413. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8414. {
  8415. front: {
  8416. height: math.unit(6, "feet"),
  8417. weight: math.unit(180, "lbs"),
  8418. name: "Front",
  8419. image: {
  8420. source: "./media/characters/danni-rosie/front.svg",
  8421. extra: 1260 / 1128,
  8422. bottom: 0.022
  8423. }
  8424. },
  8425. },
  8426. [
  8427. {
  8428. name: "Micro",
  8429. height: math.unit(2, "inches"),
  8430. default: true
  8431. },
  8432. ]
  8433. ))
  8434. characterMakers.push(() => makeCharacter(
  8435. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8436. {
  8437. front: {
  8438. height: math.unit(5 + 9 / 12, "feet"),
  8439. weight: math.unit(220, "lb"),
  8440. name: "Front",
  8441. image: {
  8442. source: "./media/characters/samantha-kruse/front.svg",
  8443. extra: (985 / 935),
  8444. bottom: 0.03
  8445. }
  8446. },
  8447. frontUndressed: {
  8448. height: math.unit(5 + 9 / 12, "feet"),
  8449. weight: math.unit(220, "lb"),
  8450. name: "Front (Undressed)",
  8451. image: {
  8452. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8453. extra: (973 / 923),
  8454. bottom: 0.025
  8455. }
  8456. },
  8457. fat: {
  8458. height: math.unit(5 + 9 / 12, "feet"),
  8459. weight: math.unit(900, "lb"),
  8460. name: "Front (Fat)",
  8461. image: {
  8462. source: "./media/characters/samantha-kruse/fat.svg",
  8463. extra: 2688 / 2561
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Normal",
  8470. height: math.unit(5 + 9 / 12, "feet"),
  8471. default: true
  8472. }
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8477. {
  8478. back: {
  8479. height: math.unit(5 + 4 / 12, "feet"),
  8480. weight: math.unit(4963, "lb"),
  8481. name: "Back",
  8482. image: {
  8483. source: "./media/characters/amelia-rosie/back.svg",
  8484. extra: 1113 / 963,
  8485. bottom: 0.01
  8486. }
  8487. },
  8488. },
  8489. [
  8490. {
  8491. name: "Level 0",
  8492. height: math.unit(5 + 4 / 12, "feet")
  8493. },
  8494. {
  8495. name: "Level 1",
  8496. height: math.unit(164597, "feet"),
  8497. default: true
  8498. },
  8499. {
  8500. name: "Level 2",
  8501. height: math.unit(956243, "miles")
  8502. },
  8503. {
  8504. name: "Level 3",
  8505. height: math.unit(29421709423, "miles")
  8506. },
  8507. {
  8508. name: "Level 4",
  8509. height: math.unit(154, "lightyears")
  8510. },
  8511. {
  8512. name: "Level 5",
  8513. height: math.unit(4738272, "lightyears")
  8514. },
  8515. {
  8516. name: "Level 6",
  8517. height: math.unit(145787152896, "lightyears")
  8518. },
  8519. ]
  8520. ))
  8521. characterMakers.push(() => makeCharacter(
  8522. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8523. {
  8524. front: {
  8525. height: math.unit(5 + 11 / 12, "feet"),
  8526. weight: math.unit(65, "kg"),
  8527. name: "Front",
  8528. image: {
  8529. source: "./media/characters/rook-kitara/front.svg",
  8530. extra: 1347 / 1274,
  8531. bottom: 0.005
  8532. }
  8533. },
  8534. },
  8535. [
  8536. {
  8537. name: "Totally Unfair",
  8538. height: math.unit(1.8, "mm")
  8539. },
  8540. {
  8541. name: "Lap Rookie",
  8542. height: math.unit(1.4, "feet")
  8543. },
  8544. {
  8545. name: "Normal",
  8546. height: math.unit(5 + 11 / 12, "feet"),
  8547. default: true
  8548. },
  8549. {
  8550. name: "How Did This Happen",
  8551. height: math.unit(80, "miles")
  8552. }
  8553. ]
  8554. ))
  8555. characterMakers.push(() => makeCharacter(
  8556. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8557. {
  8558. front: {
  8559. height: math.unit(7, "feet"),
  8560. weight: math.unit(300, "lb"),
  8561. name: "Front",
  8562. image: {
  8563. source: "./media/characters/pisces/front.svg",
  8564. extra: 2255 / 2115,
  8565. bottom: 0.03
  8566. }
  8567. },
  8568. back: {
  8569. height: math.unit(7, "feet"),
  8570. weight: math.unit(300, "lb"),
  8571. name: "Back",
  8572. image: {
  8573. source: "./media/characters/pisces/back.svg",
  8574. extra: 2146 / 2055,
  8575. bottom: 0.04
  8576. }
  8577. },
  8578. },
  8579. [
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(7, "feet"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "Swimming Pool",
  8587. height: math.unit(12.2, "meters")
  8588. },
  8589. {
  8590. name: "Olympic Swimming Pool",
  8591. height: math.unit(56.3, "meters")
  8592. },
  8593. {
  8594. name: "Lake Superior",
  8595. height: math.unit(93900, "meters")
  8596. },
  8597. {
  8598. name: "Mediterranean Sea",
  8599. height: math.unit(644457, "meters")
  8600. },
  8601. {
  8602. name: "World's Oceans",
  8603. height: math.unit(4567491, "meters")
  8604. },
  8605. ]
  8606. ))
  8607. characterMakers.push(() => makeCharacter(
  8608. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8609. {
  8610. front: {
  8611. height: math.unit(2.3, "meters"),
  8612. weight: math.unit(120, "kg"),
  8613. name: "Front",
  8614. image: {
  8615. source: "./media/characters/zelas/front.svg"
  8616. }
  8617. },
  8618. side: {
  8619. height: math.unit(2.3, "meters"),
  8620. weight: math.unit(120, "kg"),
  8621. name: "Side",
  8622. image: {
  8623. source: "./media/characters/zelas/side.svg"
  8624. }
  8625. },
  8626. back: {
  8627. height: math.unit(2.3, "meters"),
  8628. weight: math.unit(120, "kg"),
  8629. name: "Back",
  8630. image: {
  8631. source: "./media/characters/zelas/back.svg"
  8632. }
  8633. },
  8634. foot: {
  8635. height: math.unit(1.116, "feet"),
  8636. name: "Foot",
  8637. image: {
  8638. source: "./media/characters/zelas/foot.svg"
  8639. }
  8640. },
  8641. },
  8642. [
  8643. {
  8644. name: "Normal",
  8645. height: math.unit(2.3, "meters")
  8646. },
  8647. {
  8648. name: "Macro",
  8649. height: math.unit(30, "meters"),
  8650. default: true
  8651. },
  8652. ]
  8653. ))
  8654. characterMakers.push(() => makeCharacter(
  8655. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8656. {
  8657. front: {
  8658. height: math.unit(1, "inch"),
  8659. weight: math.unit(0.21, "grams"),
  8660. name: "Front",
  8661. image: {
  8662. source: "./media/characters/talbot/front.svg",
  8663. extra: 594 / 544
  8664. }
  8665. },
  8666. },
  8667. [
  8668. {
  8669. name: "Micro",
  8670. height: math.unit(1, "inch"),
  8671. default: true
  8672. },
  8673. ]
  8674. ))
  8675. characterMakers.push(() => makeCharacter(
  8676. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8677. {
  8678. front: {
  8679. height: math.unit(3 + 3 / 12, "feet"),
  8680. weight: math.unit(51.8, "lb"),
  8681. name: "Front",
  8682. image: {
  8683. source: "./media/characters/fliss/front.svg",
  8684. extra: 840 / 640
  8685. }
  8686. },
  8687. },
  8688. [
  8689. {
  8690. name: "Teeny Tiny",
  8691. height: math.unit(1, "mm")
  8692. },
  8693. {
  8694. name: "Small",
  8695. height: math.unit(1, "inch"),
  8696. default: true
  8697. },
  8698. {
  8699. name: "Standard Sylveon",
  8700. height: math.unit(3 + 3 / 12, "feet")
  8701. },
  8702. {
  8703. name: "Large Nuisance",
  8704. height: math.unit(33, "feet")
  8705. },
  8706. {
  8707. name: "City Filler",
  8708. height: math.unit(3000, "feet")
  8709. },
  8710. {
  8711. name: "New Horizon",
  8712. height: math.unit(6000, "miles")
  8713. },
  8714. ]
  8715. ))
  8716. characterMakers.push(() => makeCharacter(
  8717. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8718. {
  8719. front: {
  8720. height: math.unit(5, "cm"),
  8721. weight: math.unit(1.94, "g"),
  8722. name: "Front",
  8723. image: {
  8724. source: "./media/characters/fleta/front.svg",
  8725. extra: 835 / 803
  8726. }
  8727. },
  8728. back: {
  8729. height: math.unit(5, "cm"),
  8730. weight: math.unit(1.94, "g"),
  8731. name: "Back",
  8732. image: {
  8733. source: "./media/characters/fleta/back.svg",
  8734. extra: 835 / 803
  8735. }
  8736. },
  8737. },
  8738. [
  8739. {
  8740. name: "Micro",
  8741. height: math.unit(5, "cm"),
  8742. default: true
  8743. },
  8744. ]
  8745. ))
  8746. characterMakers.push(() => makeCharacter(
  8747. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8748. {
  8749. front: {
  8750. height: math.unit(6, "feet"),
  8751. weight: math.unit(225, "lb"),
  8752. name: "Front",
  8753. image: {
  8754. source: "./media/characters/dominic/front.svg",
  8755. extra: 1770 / 1620,
  8756. bottom: 0.025
  8757. }
  8758. },
  8759. back: {
  8760. height: math.unit(6, "feet"),
  8761. weight: math.unit(225, "lb"),
  8762. name: "Back",
  8763. image: {
  8764. source: "./media/characters/dominic/back.svg",
  8765. extra: 1745 / 1620,
  8766. bottom: 0.065
  8767. }
  8768. },
  8769. },
  8770. [
  8771. {
  8772. name: "Nano",
  8773. height: math.unit(0.1, "mm")
  8774. },
  8775. {
  8776. name: "Micro-",
  8777. height: math.unit(1, "mm")
  8778. },
  8779. {
  8780. name: "Micro",
  8781. height: math.unit(4, "inches")
  8782. },
  8783. {
  8784. name: "Normal",
  8785. height: math.unit(6 + 4 / 12, "feet"),
  8786. default: true
  8787. },
  8788. {
  8789. name: "Macro",
  8790. height: math.unit(115, "feet")
  8791. },
  8792. {
  8793. name: "Macro+",
  8794. height: math.unit(955, "feet")
  8795. },
  8796. {
  8797. name: "Megamacro",
  8798. height: math.unit(8990, "feet")
  8799. },
  8800. {
  8801. name: "Gigmacro",
  8802. height: math.unit(9310, "miles")
  8803. },
  8804. {
  8805. name: "Teramacro",
  8806. height: math.unit(1567005010, "miles")
  8807. },
  8808. {
  8809. name: "Examacro",
  8810. height: math.unit(1425, "parsecs")
  8811. },
  8812. ]
  8813. ))
  8814. characterMakers.push(() => makeCharacter(
  8815. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8816. {
  8817. front: {
  8818. height: math.unit(400, "feet"),
  8819. weight: math.unit(44444444, "lb"),
  8820. name: "Front",
  8821. image: {
  8822. source: "./media/characters/major-colonel/front.svg"
  8823. }
  8824. },
  8825. back: {
  8826. height: math.unit(400, "feet"),
  8827. weight: math.unit(44444444, "lb"),
  8828. name: "Back",
  8829. image: {
  8830. source: "./media/characters/major-colonel/back.svg"
  8831. }
  8832. },
  8833. },
  8834. [
  8835. {
  8836. name: "Macro",
  8837. height: math.unit(400, "feet"),
  8838. default: true
  8839. },
  8840. ]
  8841. ))
  8842. characterMakers.push(() => makeCharacter(
  8843. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8844. {
  8845. catFront: {
  8846. height: math.unit(6, "feet"),
  8847. weight: math.unit(120, "lb"),
  8848. name: "Front (Cat Side)",
  8849. image: {
  8850. source: "./media/characters/axel-lycan/cat-front.svg",
  8851. extra: 430 / 402,
  8852. bottom: 43 / 472.35
  8853. }
  8854. },
  8855. catBack: {
  8856. height: math.unit(6, "feet"),
  8857. weight: math.unit(120, "lb"),
  8858. name: "Back (Cat Side)",
  8859. image: {
  8860. source: "./media/characters/axel-lycan/cat-back.svg",
  8861. extra: 447 / 419,
  8862. bottom: 23.3 / 469
  8863. }
  8864. },
  8865. wolfFront: {
  8866. height: math.unit(6, "feet"),
  8867. weight: math.unit(120, "lb"),
  8868. name: "Front (Wolf Side)",
  8869. image: {
  8870. source: "./media/characters/axel-lycan/wolf-front.svg",
  8871. extra: 485 / 456,
  8872. bottom: 19 / 504
  8873. }
  8874. },
  8875. wolfBack: {
  8876. height: math.unit(6, "feet"),
  8877. weight: math.unit(120, "lb"),
  8878. name: "Back (Wolf Side)",
  8879. image: {
  8880. source: "./media/characters/axel-lycan/wolf-back.svg",
  8881. extra: 475 / 438,
  8882. bottom: 39.2 / 514
  8883. }
  8884. },
  8885. },
  8886. [
  8887. {
  8888. name: "Macro",
  8889. height: math.unit(1, "km"),
  8890. default: true
  8891. },
  8892. ]
  8893. ))
  8894. characterMakers.push(() => makeCharacter(
  8895. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8896. {
  8897. front: {
  8898. height: math.unit(5 + 9 / 12, "feet"),
  8899. weight: math.unit(175, "lb"),
  8900. name: "Front",
  8901. image: {
  8902. source: "./media/characters/vanrel-hyena/front.svg",
  8903. extra: 1086 / 1010,
  8904. bottom: 0.04
  8905. }
  8906. },
  8907. },
  8908. [
  8909. {
  8910. name: "Normal",
  8911. height: math.unit(5 + 9 / 12, "feet"),
  8912. default: true
  8913. },
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8918. {
  8919. front: {
  8920. height: math.unit(6, "feet"),
  8921. weight: math.unit(103, "lb"),
  8922. name: "Front",
  8923. image: {
  8924. source: "./media/characters/abbott-absol/front.svg",
  8925. extra: 2010 / 1842
  8926. }
  8927. },
  8928. },
  8929. [
  8930. {
  8931. name: "Megamicro",
  8932. height: math.unit(0.1, "mm")
  8933. },
  8934. {
  8935. name: "Micro",
  8936. height: math.unit(1, "inch")
  8937. },
  8938. {
  8939. name: "Normal",
  8940. height: math.unit(6, "feet"),
  8941. default: true
  8942. },
  8943. ]
  8944. ))
  8945. characterMakers.push(() => makeCharacter(
  8946. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8947. {
  8948. front: {
  8949. height: math.unit(6, "feet"),
  8950. weight: math.unit(264, "lb"),
  8951. name: "Front",
  8952. image: {
  8953. source: "./media/characters/hector/front.svg",
  8954. extra: 2280 / 2130,
  8955. bottom: 0.07
  8956. }
  8957. },
  8958. },
  8959. [
  8960. {
  8961. name: "Normal",
  8962. height: math.unit(12.25, "foot"),
  8963. default: true
  8964. },
  8965. {
  8966. name: "Macro",
  8967. height: math.unit(160, "feet")
  8968. },
  8969. ]
  8970. ))
  8971. characterMakers.push(() => makeCharacter(
  8972. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8973. {
  8974. front: {
  8975. height: math.unit(6, "feet"),
  8976. weight: math.unit(150, "lb"),
  8977. name: "Front",
  8978. image: {
  8979. source: "./media/characters/sal/front.svg",
  8980. extra: 1846 / 1699,
  8981. bottom: 0.04
  8982. }
  8983. },
  8984. },
  8985. [
  8986. {
  8987. name: "Megamacro",
  8988. height: math.unit(10, "miles"),
  8989. default: true
  8990. },
  8991. ]
  8992. ))
  8993. characterMakers.push(() => makeCharacter(
  8994. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8995. {
  8996. front: {
  8997. height: math.unit(3, "meters"),
  8998. weight: math.unit(450, "kg"),
  8999. name: "front",
  9000. image: {
  9001. source: "./media/characters/ranger/front.svg",
  9002. extra: 2401 / 2243,
  9003. bottom: 0.05
  9004. }
  9005. },
  9006. },
  9007. [
  9008. {
  9009. name: "Normal",
  9010. height: math.unit(3, "meters"),
  9011. default: true
  9012. },
  9013. ]
  9014. ))
  9015. characterMakers.push(() => makeCharacter(
  9016. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9017. {
  9018. front: {
  9019. height: math.unit(14, "feet"),
  9020. weight: math.unit(800, "kg"),
  9021. name: "Front",
  9022. image: {
  9023. source: "./media/characters/theresa/front.svg",
  9024. extra: 3575 / 3346,
  9025. bottom: 0.03
  9026. }
  9027. },
  9028. },
  9029. [
  9030. {
  9031. name: "Normal",
  9032. height: math.unit(14, "feet"),
  9033. default: true
  9034. },
  9035. ]
  9036. ))
  9037. characterMakers.push(() => makeCharacter(
  9038. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9039. {
  9040. front: {
  9041. height: math.unit(6, "feet"),
  9042. weight: math.unit(3, "kg"),
  9043. name: "Front",
  9044. image: {
  9045. source: "./media/characters/ine/front.svg",
  9046. extra: 678 / 539,
  9047. bottom: 0.023
  9048. }
  9049. },
  9050. },
  9051. [
  9052. {
  9053. name: "Normal",
  9054. height: math.unit(2.265, "feet"),
  9055. default: true
  9056. },
  9057. ]
  9058. ))
  9059. characterMakers.push(() => makeCharacter(
  9060. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9061. {
  9062. front: {
  9063. height: math.unit(5, "feet"),
  9064. weight: math.unit(30, "kg"),
  9065. name: "Front",
  9066. image: {
  9067. source: "./media/characters/vial/front.svg",
  9068. extra: 1365 / 1277,
  9069. bottom: 0.04
  9070. }
  9071. },
  9072. },
  9073. [
  9074. {
  9075. name: "Normal",
  9076. height: math.unit(5, "feet"),
  9077. default: true
  9078. },
  9079. ]
  9080. ))
  9081. characterMakers.push(() => makeCharacter(
  9082. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9083. {
  9084. side: {
  9085. height: math.unit(3.4, "meters"),
  9086. weight: math.unit(1000, "lb"),
  9087. name: "Side",
  9088. image: {
  9089. source: "./media/characters/rovoska/side.svg",
  9090. extra: 4403 / 1515
  9091. }
  9092. },
  9093. },
  9094. [
  9095. {
  9096. name: "Normal",
  9097. height: math.unit(3.4, "meters"),
  9098. default: true
  9099. },
  9100. ]
  9101. ))
  9102. characterMakers.push(() => makeCharacter(
  9103. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9104. {
  9105. front: {
  9106. height: math.unit(8, "feet"),
  9107. weight: math.unit(315, "lb"),
  9108. name: "Front",
  9109. image: {
  9110. source: "./media/characters/gunner-rotthbauer/front.svg"
  9111. }
  9112. },
  9113. back: {
  9114. height: math.unit(8, "feet"),
  9115. weight: math.unit(315, "lb"),
  9116. name: "Back",
  9117. image: {
  9118. source: "./media/characters/gunner-rotthbauer/back.svg"
  9119. }
  9120. },
  9121. },
  9122. [
  9123. {
  9124. name: "Micro",
  9125. height: math.unit(3.5, "inches")
  9126. },
  9127. {
  9128. name: "Normal",
  9129. height: math.unit(8, "feet"),
  9130. default: true
  9131. },
  9132. {
  9133. name: "Macro",
  9134. height: math.unit(250, "feet")
  9135. },
  9136. {
  9137. name: "Megamacro",
  9138. height: math.unit(1, "AU")
  9139. },
  9140. ]
  9141. ))
  9142. characterMakers.push(() => makeCharacter(
  9143. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9144. {
  9145. front: {
  9146. height: math.unit(5 + 5 / 12, "feet"),
  9147. weight: math.unit(140, "lb"),
  9148. name: "Front",
  9149. image: {
  9150. source: "./media/characters/allatia/front.svg",
  9151. extra: 1227 / 1180,
  9152. bottom: 0.027
  9153. }
  9154. },
  9155. },
  9156. [
  9157. {
  9158. name: "Normal",
  9159. height: math.unit(5 + 5 / 12, "feet")
  9160. },
  9161. {
  9162. name: "Macro",
  9163. height: math.unit(250, "feet"),
  9164. default: true
  9165. },
  9166. {
  9167. name: "Megamacro",
  9168. height: math.unit(8, "miles")
  9169. }
  9170. ]
  9171. ))
  9172. characterMakers.push(() => makeCharacter(
  9173. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9174. {
  9175. front: {
  9176. height: math.unit(6, "feet"),
  9177. weight: math.unit(120, "lb"),
  9178. name: "Front",
  9179. image: {
  9180. source: "./media/characters/tene/front.svg",
  9181. extra: 1728 / 1578,
  9182. bottom: 0.022
  9183. }
  9184. },
  9185. stomping: {
  9186. height: math.unit(2.025, "meters"),
  9187. weight: math.unit(120, "lb"),
  9188. name: "Stomping",
  9189. image: {
  9190. source: "./media/characters/tene/stomping.svg",
  9191. extra: 938 / 873,
  9192. bottom: 0.01
  9193. }
  9194. },
  9195. sitting: {
  9196. height: math.unit(1, "meter"),
  9197. weight: math.unit(120, "lb"),
  9198. name: "Sitting",
  9199. image: {
  9200. source: "./media/characters/tene/sitting.svg",
  9201. extra: 437 / 415,
  9202. bottom: 0.1
  9203. }
  9204. },
  9205. feral: {
  9206. height: math.unit(3.9, "feet"),
  9207. weight: math.unit(250, "lb"),
  9208. name: "Feral",
  9209. image: {
  9210. source: "./media/characters/tene/feral.svg",
  9211. extra: 717 / 458,
  9212. bottom: 0.179
  9213. }
  9214. },
  9215. },
  9216. [
  9217. {
  9218. name: "Normal",
  9219. height: math.unit(6, "feet")
  9220. },
  9221. {
  9222. name: "Macro",
  9223. height: math.unit(300, "feet"),
  9224. default: true
  9225. },
  9226. {
  9227. name: "Megamacro",
  9228. height: math.unit(5, "miles")
  9229. },
  9230. ]
  9231. ))
  9232. characterMakers.push(() => makeCharacter(
  9233. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9234. {
  9235. side: {
  9236. height: math.unit(6, "feet"),
  9237. name: "Side",
  9238. image: {
  9239. source: "./media/characters/evander/side.svg",
  9240. extra: 877 / 477
  9241. }
  9242. },
  9243. },
  9244. [
  9245. {
  9246. name: "Normal",
  9247. height: math.unit(0.83, "meters"),
  9248. default: true
  9249. },
  9250. ]
  9251. ))
  9252. characterMakers.push(() => makeCharacter(
  9253. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9254. {
  9255. front: {
  9256. height: math.unit(12, "feet"),
  9257. weight: math.unit(1000, "lb"),
  9258. name: "Front",
  9259. image: {
  9260. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9261. extra: 1762 / 1611
  9262. }
  9263. },
  9264. back: {
  9265. height: math.unit(12, "feet"),
  9266. weight: math.unit(1000, "lb"),
  9267. name: "Back",
  9268. image: {
  9269. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9270. extra: 1762 / 1611
  9271. }
  9272. },
  9273. },
  9274. [
  9275. {
  9276. name: "Normal",
  9277. height: math.unit(12, "feet"),
  9278. default: true
  9279. },
  9280. {
  9281. name: "Kaiju",
  9282. height: math.unit(150, "feet")
  9283. },
  9284. ]
  9285. ))
  9286. characterMakers.push(() => makeCharacter(
  9287. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9288. {
  9289. front: {
  9290. height: math.unit(6, "feet"),
  9291. weight: math.unit(150, "lb"),
  9292. name: "Front",
  9293. image: {
  9294. source: "./media/characters/zero-alurus/front.svg"
  9295. }
  9296. },
  9297. back: {
  9298. height: math.unit(6, "feet"),
  9299. weight: math.unit(150, "lb"),
  9300. name: "Back",
  9301. image: {
  9302. source: "./media/characters/zero-alurus/back.svg"
  9303. }
  9304. },
  9305. },
  9306. [
  9307. {
  9308. name: "Normal",
  9309. height: math.unit(5 + 10 / 12, "feet")
  9310. },
  9311. {
  9312. name: "Macro",
  9313. height: math.unit(60, "feet"),
  9314. default: true
  9315. },
  9316. {
  9317. name: "Macro+",
  9318. height: math.unit(450, "feet")
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9324. {
  9325. front: {
  9326. height: math.unit(6, "feet"),
  9327. weight: math.unit(200, "lb"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/mega-shi/front.svg",
  9331. extra: 1279 / 1250,
  9332. bottom: 0.02
  9333. }
  9334. },
  9335. back: {
  9336. height: math.unit(6, "feet"),
  9337. weight: math.unit(200, "lb"),
  9338. name: "Back",
  9339. image: {
  9340. source: "./media/characters/mega-shi/back.svg",
  9341. extra: 1279 / 1250,
  9342. bottom: 0.02
  9343. }
  9344. },
  9345. },
  9346. [
  9347. {
  9348. name: "Micro",
  9349. height: math.unit(16 + 6 / 12, "feet")
  9350. },
  9351. {
  9352. name: "Third Dimension",
  9353. height: math.unit(40, "meters")
  9354. },
  9355. {
  9356. name: "Normal",
  9357. height: math.unit(660, "feet"),
  9358. default: true
  9359. },
  9360. {
  9361. name: "Megamacro",
  9362. height: math.unit(10, "miles")
  9363. },
  9364. {
  9365. name: "Planetary Launch",
  9366. height: math.unit(500, "miles")
  9367. },
  9368. {
  9369. name: "Interstellar",
  9370. height: math.unit(1e9, "miles")
  9371. },
  9372. {
  9373. name: "Leaving the Universe",
  9374. height: math.unit(1, "gigaparsec")
  9375. },
  9376. {
  9377. name: "Travelling Universes",
  9378. height: math.unit(30e15, "parsecs")
  9379. },
  9380. ]
  9381. ))
  9382. characterMakers.push(() => makeCharacter(
  9383. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9384. {
  9385. front: {
  9386. height: math.unit(6, "feet"),
  9387. weight: math.unit(150, "lb"),
  9388. name: "Front",
  9389. image: {
  9390. source: "./media/characters/odyssey/front.svg",
  9391. extra: 1782 / 1582,
  9392. bottom: 0.01
  9393. }
  9394. },
  9395. side: {
  9396. height: math.unit(5.7, "feet"),
  9397. weight: math.unit(140, "lb"),
  9398. name: "Side",
  9399. image: {
  9400. source: "./media/characters/odyssey/side.svg",
  9401. extra: 6462 / 5700
  9402. }
  9403. },
  9404. },
  9405. [
  9406. {
  9407. name: "Normal",
  9408. height: math.unit(5 + 4 / 12, "feet")
  9409. },
  9410. {
  9411. name: "Macro",
  9412. height: math.unit(1, "km")
  9413. },
  9414. {
  9415. name: "Megamacro",
  9416. height: math.unit(3000, "km")
  9417. },
  9418. {
  9419. name: "Gigamacro",
  9420. height: math.unit(1, "AU"),
  9421. default: true
  9422. },
  9423. {
  9424. name: "Omniversal",
  9425. height: math.unit(100e14, "lightyears")
  9426. },
  9427. ]
  9428. ))
  9429. characterMakers.push(() => makeCharacter(
  9430. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9431. {
  9432. front: {
  9433. height: math.unit(6, "feet"),
  9434. weight: math.unit(300, "lb"),
  9435. name: "Front",
  9436. image: {
  9437. source: "./media/characters/mekuto/front.svg",
  9438. extra: 921 / 832,
  9439. bottom: 0.03
  9440. }
  9441. },
  9442. hand: {
  9443. height: math.unit(6 / 10.24, "feet"),
  9444. name: "Hand",
  9445. image: {
  9446. source: "./media/characters/mekuto/hand.svg"
  9447. }
  9448. },
  9449. foot: {
  9450. height: math.unit(6 / 5.05, "feet"),
  9451. name: "Foot",
  9452. image: {
  9453. source: "./media/characters/mekuto/foot.svg"
  9454. }
  9455. },
  9456. },
  9457. [
  9458. {
  9459. name: "Minimicro",
  9460. height: math.unit(0.2, "inches")
  9461. },
  9462. {
  9463. name: "Micro",
  9464. height: math.unit(1.5, "inches")
  9465. },
  9466. {
  9467. name: "Normal",
  9468. height: math.unit(5 + 11 / 12, "feet"),
  9469. default: true
  9470. },
  9471. {
  9472. name: "Minimacro",
  9473. height: math.unit(17 + 9 / 12, "feet")
  9474. },
  9475. {
  9476. name: "Macro",
  9477. height: math.unit(177.5, "feet")
  9478. },
  9479. {
  9480. name: "Megamacro",
  9481. height: math.unit(152, "miles")
  9482. },
  9483. ]
  9484. ))
  9485. characterMakers.push(() => makeCharacter(
  9486. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9487. {
  9488. front: {
  9489. height: math.unit(6.5, "inches"),
  9490. weight: math.unit(13, "oz"),
  9491. name: "Front",
  9492. image: {
  9493. source: "./media/characters/dafydd-tomos/front.svg",
  9494. extra: 2990 / 2603,
  9495. bottom: 0.03
  9496. }
  9497. },
  9498. },
  9499. [
  9500. {
  9501. name: "Micro",
  9502. height: math.unit(6.5, "inches"),
  9503. default: true
  9504. },
  9505. ]
  9506. ))
  9507. characterMakers.push(() => makeCharacter(
  9508. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9509. {
  9510. front: {
  9511. height: math.unit(6, "feet"),
  9512. weight: math.unit(150, "lb"),
  9513. name: "Front",
  9514. image: {
  9515. source: "./media/characters/splinter/front.svg",
  9516. extra: 2990 / 2882,
  9517. bottom: 0.04
  9518. }
  9519. },
  9520. back: {
  9521. height: math.unit(6, "feet"),
  9522. weight: math.unit(150, "lb"),
  9523. name: "Back",
  9524. image: {
  9525. source: "./media/characters/splinter/back.svg",
  9526. extra: 2990 / 2882,
  9527. bottom: 0.04
  9528. }
  9529. },
  9530. },
  9531. [
  9532. {
  9533. name: "Normal",
  9534. height: math.unit(6, "feet")
  9535. },
  9536. {
  9537. name: "Macro",
  9538. height: math.unit(230, "meters"),
  9539. default: true
  9540. },
  9541. ]
  9542. ))
  9543. characterMakers.push(() => makeCharacter(
  9544. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9545. {
  9546. front: {
  9547. height: math.unit(4 + 10 / 12, "feet"),
  9548. weight: math.unit(480, "lb"),
  9549. name: "Front",
  9550. image: {
  9551. source: "./media/characters/snow-gabumon/front.svg",
  9552. extra: 1140 / 963,
  9553. bottom: 0.058
  9554. }
  9555. },
  9556. back: {
  9557. height: math.unit(4 + 10 / 12, "feet"),
  9558. weight: math.unit(480, "lb"),
  9559. name: "Back",
  9560. image: {
  9561. source: "./media/characters/snow-gabumon/back.svg",
  9562. extra: 1115 / 962,
  9563. bottom: 0.041
  9564. }
  9565. },
  9566. frontUndresed: {
  9567. height: math.unit(4 + 10 / 12, "feet"),
  9568. weight: math.unit(480, "lb"),
  9569. name: "Front (Undressed)",
  9570. image: {
  9571. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9572. extra: 1061 / 960,
  9573. bottom: 0.045
  9574. }
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Micro",
  9580. height: math.unit(1, "inch")
  9581. },
  9582. {
  9583. name: "Normal",
  9584. height: math.unit(4 + 10 / 12, "feet"),
  9585. default: true
  9586. },
  9587. {
  9588. name: "Macro",
  9589. height: math.unit(200, "feet")
  9590. },
  9591. {
  9592. name: "Megamacro",
  9593. height: math.unit(120, "miles")
  9594. },
  9595. {
  9596. name: "Gigamacro",
  9597. height: math.unit(9800, "miles")
  9598. },
  9599. ]
  9600. ))
  9601. characterMakers.push(() => makeCharacter(
  9602. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9603. {
  9604. front: {
  9605. height: math.unit(1.7, "meters"),
  9606. weight: math.unit(140, "lb"),
  9607. name: "Front",
  9608. image: {
  9609. source: "./media/characters/moody/front.svg",
  9610. extra: 3226 / 3007,
  9611. bottom: 0.087
  9612. }
  9613. },
  9614. },
  9615. [
  9616. {
  9617. name: "Micro",
  9618. height: math.unit(1, "mm")
  9619. },
  9620. {
  9621. name: "Normal",
  9622. height: math.unit(1.7, "meters"),
  9623. default: true
  9624. },
  9625. {
  9626. name: "Macro",
  9627. height: math.unit(80, "meters")
  9628. },
  9629. {
  9630. name: "Macro+",
  9631. height: math.unit(500, "meters")
  9632. },
  9633. ]
  9634. ))
  9635. characterMakers.push(() => makeCharacter(
  9636. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9637. {
  9638. front: {
  9639. height: math.unit(6, "feet"),
  9640. weight: math.unit(150, "lb"),
  9641. name: "Front",
  9642. image: {
  9643. source: "./media/characters/zyas/front.svg",
  9644. extra: 1180 / 1120,
  9645. bottom: 0.045
  9646. }
  9647. },
  9648. },
  9649. [
  9650. {
  9651. name: "Normal",
  9652. height: math.unit(10, "feet"),
  9653. default: true
  9654. },
  9655. {
  9656. name: "Macro",
  9657. height: math.unit(500, "feet")
  9658. },
  9659. {
  9660. name: "Megamacro",
  9661. height: math.unit(5, "miles")
  9662. },
  9663. {
  9664. name: "Teramacro",
  9665. height: math.unit(150000, "miles")
  9666. },
  9667. ]
  9668. ))
  9669. characterMakers.push(() => makeCharacter(
  9670. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9671. {
  9672. front: {
  9673. height: math.unit(6, "feet"),
  9674. weight: math.unit(150, "lb"),
  9675. name: "Front",
  9676. image: {
  9677. source: "./media/characters/cuon/front.svg",
  9678. extra: 1390 / 1320,
  9679. bottom: 0.008
  9680. }
  9681. },
  9682. },
  9683. [
  9684. {
  9685. name: "Micro",
  9686. height: math.unit(3, "inches")
  9687. },
  9688. {
  9689. name: "Normal",
  9690. height: math.unit(18 + 9 / 12, "feet"),
  9691. default: true
  9692. },
  9693. {
  9694. name: "Macro",
  9695. height: math.unit(360, "feet")
  9696. },
  9697. {
  9698. name: "Megamacro",
  9699. height: math.unit(360, "miles")
  9700. },
  9701. ]
  9702. ))
  9703. characterMakers.push(() => makeCharacter(
  9704. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9705. {
  9706. front: {
  9707. height: math.unit(2.4, "meters"),
  9708. weight: math.unit(70, "kg"),
  9709. name: "Front",
  9710. image: {
  9711. source: "./media/characters/nyanuxk/front.svg",
  9712. extra: 1172 / 1084,
  9713. bottom: 0.065
  9714. }
  9715. },
  9716. side: {
  9717. height: math.unit(2.4, "meters"),
  9718. weight: math.unit(70, "kg"),
  9719. name: "Side",
  9720. image: {
  9721. source: "./media/characters/nyanuxk/side.svg",
  9722. extra: 1190 / 1132,
  9723. bottom: 0.007
  9724. }
  9725. },
  9726. back: {
  9727. height: math.unit(2.4, "meters"),
  9728. weight: math.unit(70, "kg"),
  9729. name: "Back",
  9730. image: {
  9731. source: "./media/characters/nyanuxk/back.svg",
  9732. extra: 1200 / 1141,
  9733. bottom: 0.015
  9734. }
  9735. },
  9736. foot: {
  9737. height: math.unit(0.52, "meters"),
  9738. name: "Foot",
  9739. image: {
  9740. source: "./media/characters/nyanuxk/foot.svg"
  9741. }
  9742. },
  9743. },
  9744. [
  9745. {
  9746. name: "Micro",
  9747. height: math.unit(2, "cm")
  9748. },
  9749. {
  9750. name: "Normal",
  9751. height: math.unit(2.4, "meters"),
  9752. default: true
  9753. },
  9754. {
  9755. name: "Smaller Macro",
  9756. height: math.unit(120, "meters")
  9757. },
  9758. {
  9759. name: "Bigger Macro",
  9760. height: math.unit(1.2, "km")
  9761. },
  9762. {
  9763. name: "Megamacro",
  9764. height: math.unit(15, "kilometers")
  9765. },
  9766. {
  9767. name: "Gigamacro",
  9768. height: math.unit(2000, "km")
  9769. },
  9770. {
  9771. name: "Teramacro",
  9772. height: math.unit(500000, "km")
  9773. },
  9774. ]
  9775. ))
  9776. characterMakers.push(() => makeCharacter(
  9777. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9778. {
  9779. side: {
  9780. height: math.unit(6, "feet"),
  9781. name: "Side",
  9782. image: {
  9783. source: "./media/characters/ailbhe/side.svg",
  9784. extra: 757 / 464,
  9785. bottom: 0.041
  9786. }
  9787. },
  9788. },
  9789. [
  9790. {
  9791. name: "Normal",
  9792. height: math.unit(1.07, "meters"),
  9793. default: true
  9794. },
  9795. ]
  9796. ))
  9797. characterMakers.push(() => makeCharacter(
  9798. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9799. {
  9800. front: {
  9801. height: math.unit(6, "feet"),
  9802. weight: math.unit(120, "kg"),
  9803. name: "Front",
  9804. image: {
  9805. source: "./media/characters/zevulfius/front.svg",
  9806. extra: 965 / 903
  9807. }
  9808. },
  9809. side: {
  9810. height: math.unit(6, "feet"),
  9811. weight: math.unit(120, "kg"),
  9812. name: "Side",
  9813. image: {
  9814. source: "./media/characters/zevulfius/side.svg",
  9815. extra: 939 / 900
  9816. }
  9817. },
  9818. back: {
  9819. height: math.unit(6, "feet"),
  9820. weight: math.unit(120, "kg"),
  9821. name: "Back",
  9822. image: {
  9823. source: "./media/characters/zevulfius/back.svg",
  9824. extra: 918 / 854,
  9825. bottom: 0.005
  9826. }
  9827. },
  9828. foot: {
  9829. height: math.unit(6 / 3.72, "feet"),
  9830. name: "Foot",
  9831. image: {
  9832. source: "./media/characters/zevulfius/foot.svg"
  9833. }
  9834. },
  9835. },
  9836. [
  9837. {
  9838. name: "Macro",
  9839. height: math.unit(750, "meters")
  9840. },
  9841. {
  9842. name: "Megamacro",
  9843. height: math.unit(20, "km"),
  9844. default: true
  9845. },
  9846. {
  9847. name: "Gigamacro",
  9848. height: math.unit(2000, "km")
  9849. },
  9850. {
  9851. name: "Teramacro",
  9852. height: math.unit(250000, "km")
  9853. },
  9854. ]
  9855. ))
  9856. characterMakers.push(() => makeCharacter(
  9857. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9858. {
  9859. front: {
  9860. height: math.unit(100, "feet"),
  9861. weight: math.unit(350, "kg"),
  9862. name: "Front",
  9863. image: {
  9864. source: "./media/characters/rikes/front.svg",
  9865. extra: 1565 / 1483,
  9866. bottom: 0.017
  9867. }
  9868. },
  9869. },
  9870. [
  9871. {
  9872. name: "Macro",
  9873. height: math.unit(100, "feet"),
  9874. default: true
  9875. },
  9876. ]
  9877. ))
  9878. characterMakers.push(() => makeCharacter(
  9879. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9880. {
  9881. anthro: {
  9882. height: math.unit(8, "feet"),
  9883. weight: math.unit(120, "kg"),
  9884. name: "Anthro",
  9885. image: {
  9886. source: "./media/characters/adam-silver-mane/anthro.svg",
  9887. extra: 5743 / 5339,
  9888. bottom: 0.07
  9889. }
  9890. },
  9891. taur: {
  9892. height: math.unit(16, "feet"),
  9893. weight: math.unit(1500, "kg"),
  9894. name: "Taur",
  9895. image: {
  9896. source: "./media/characters/adam-silver-mane/taur.svg",
  9897. extra: 1713 / 1571,
  9898. bottom: 0.01
  9899. }
  9900. },
  9901. },
  9902. [
  9903. {
  9904. name: "Normal",
  9905. height: math.unit(8, "feet")
  9906. },
  9907. {
  9908. name: "Minimacro",
  9909. height: math.unit(80, "feet")
  9910. },
  9911. {
  9912. name: "Macro",
  9913. height: math.unit(800, "feet"),
  9914. default: true
  9915. },
  9916. {
  9917. name: "Megamacro",
  9918. height: math.unit(8000, "feet")
  9919. },
  9920. {
  9921. name: "Gigamacro",
  9922. height: math.unit(800, "miles")
  9923. },
  9924. {
  9925. name: "Teramacro",
  9926. height: math.unit(80000, "miles")
  9927. },
  9928. {
  9929. name: "Celestial",
  9930. height: math.unit(8e6, "miles")
  9931. },
  9932. {
  9933. name: "Star Dragon",
  9934. height: math.unit(800000, "parsecs")
  9935. },
  9936. {
  9937. name: "Godly",
  9938. height: math.unit(800, "teraparsecs")
  9939. },
  9940. ]
  9941. ))
  9942. characterMakers.push(() => makeCharacter(
  9943. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9944. {
  9945. front: {
  9946. height: math.unit(6, "feet"),
  9947. weight: math.unit(150, "lb"),
  9948. name: "Front",
  9949. image: {
  9950. source: "./media/characters/ky'owin/front.svg",
  9951. extra: 3888 / 3068,
  9952. bottom: 0.015
  9953. }
  9954. },
  9955. },
  9956. [
  9957. {
  9958. name: "Normal",
  9959. height: math.unit(6 + 8 / 12, "feet")
  9960. },
  9961. {
  9962. name: "Large",
  9963. height: math.unit(68, "feet")
  9964. },
  9965. {
  9966. name: "Macro",
  9967. height: math.unit(132, "feet")
  9968. },
  9969. {
  9970. name: "Macro+",
  9971. height: math.unit(340, "feet")
  9972. },
  9973. {
  9974. name: "Macro++",
  9975. height: math.unit(680, "feet"),
  9976. default: true
  9977. },
  9978. {
  9979. name: "Megamacro",
  9980. height: math.unit(1, "mile")
  9981. },
  9982. {
  9983. name: "Megamacro+",
  9984. height: math.unit(10, "miles")
  9985. },
  9986. ]
  9987. ))
  9988. characterMakers.push(() => makeCharacter(
  9989. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9990. {
  9991. front: {
  9992. height: math.unit(4, "feet"),
  9993. weight: math.unit(50, "lb"),
  9994. name: "Front",
  9995. image: {
  9996. source: "./media/characters/mal/front.svg",
  9997. extra: 785 / 724,
  9998. bottom: 0.07
  9999. }
  10000. },
  10001. },
  10002. [
  10003. {
  10004. name: "Micro",
  10005. height: math.unit(4, "inches")
  10006. },
  10007. {
  10008. name: "Normal",
  10009. height: math.unit(4, "feet"),
  10010. default: true
  10011. },
  10012. {
  10013. name: "Macro",
  10014. height: math.unit(200, "feet")
  10015. },
  10016. ]
  10017. ))
  10018. characterMakers.push(() => makeCharacter(
  10019. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10020. {
  10021. front: {
  10022. height: math.unit(6, "feet"),
  10023. weight: math.unit(150, "lb"),
  10024. name: "Front",
  10025. image: {
  10026. source: "./media/characters/jordan-deware/front.svg",
  10027. extra: 1191 / 1012
  10028. }
  10029. },
  10030. },
  10031. [
  10032. {
  10033. name: "Nano",
  10034. height: math.unit(0.01, "mm")
  10035. },
  10036. {
  10037. name: "Minimicro",
  10038. height: math.unit(1, "mm")
  10039. },
  10040. {
  10041. name: "Micro",
  10042. height: math.unit(0.5, "inches")
  10043. },
  10044. {
  10045. name: "Normal",
  10046. height: math.unit(4, "feet"),
  10047. default: true
  10048. },
  10049. {
  10050. name: "Minimacro",
  10051. height: math.unit(40, "meters")
  10052. },
  10053. {
  10054. name: "Small Macro",
  10055. height: math.unit(400, "meters")
  10056. },
  10057. {
  10058. name: "Macro",
  10059. height: math.unit(4, "miles")
  10060. },
  10061. {
  10062. name: "Megamacro",
  10063. height: math.unit(40, "miles")
  10064. },
  10065. {
  10066. name: "Megamacro+",
  10067. height: math.unit(400, "miles")
  10068. },
  10069. {
  10070. name: "Gigamacro",
  10071. height: math.unit(400000, "miles")
  10072. },
  10073. ]
  10074. ))
  10075. characterMakers.push(() => makeCharacter(
  10076. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10077. {
  10078. side: {
  10079. height: math.unit(6, "feet"),
  10080. weight: math.unit(150, "lb"),
  10081. name: "Side",
  10082. image: {
  10083. source: "./media/characters/kimiko/side.svg",
  10084. extra: 600 / 358
  10085. }
  10086. },
  10087. },
  10088. [
  10089. {
  10090. name: "Normal",
  10091. height: math.unit(15, "feet"),
  10092. default: true
  10093. },
  10094. {
  10095. name: "Macro",
  10096. height: math.unit(220, "feet")
  10097. },
  10098. {
  10099. name: "Macro+",
  10100. height: math.unit(1450, "feet")
  10101. },
  10102. {
  10103. name: "Megamacro",
  10104. height: math.unit(11500, "feet")
  10105. },
  10106. {
  10107. name: "Gigamacro",
  10108. height: math.unit(9500, "miles")
  10109. },
  10110. {
  10111. name: "Teramacro",
  10112. height: math.unit(2208005005, "miles")
  10113. },
  10114. {
  10115. name: "Examacro",
  10116. height: math.unit(2750, "parsecs")
  10117. },
  10118. {
  10119. name: "Zettamacro",
  10120. height: math.unit(101500, "parsecs")
  10121. },
  10122. ]
  10123. ))
  10124. characterMakers.push(() => makeCharacter(
  10125. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10126. {
  10127. front: {
  10128. height: math.unit(6, "feet"),
  10129. weight: math.unit(70, "kg"),
  10130. name: "Front",
  10131. image: {
  10132. source: "./media/characters/andrew-sleepy/front.svg"
  10133. }
  10134. },
  10135. side: {
  10136. height: math.unit(6, "feet"),
  10137. weight: math.unit(70, "kg"),
  10138. name: "Side",
  10139. image: {
  10140. source: "./media/characters/andrew-sleepy/side.svg"
  10141. }
  10142. },
  10143. },
  10144. [
  10145. {
  10146. name: "Micro",
  10147. height: math.unit(1, "mm"),
  10148. default: true
  10149. },
  10150. ]
  10151. ))
  10152. characterMakers.push(() => makeCharacter(
  10153. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10154. {
  10155. front: {
  10156. height: math.unit(6, "feet"),
  10157. weight: math.unit(150, "lb"),
  10158. name: "Front",
  10159. image: {
  10160. source: "./media/characters/judio/front.svg",
  10161. extra: 1258 / 1110
  10162. }
  10163. },
  10164. },
  10165. [
  10166. {
  10167. name: "Normal",
  10168. height: math.unit(5 + 6 / 12, "feet")
  10169. },
  10170. {
  10171. name: "Macro",
  10172. height: math.unit(1000, "feet"),
  10173. default: true
  10174. },
  10175. {
  10176. name: "Megamacro",
  10177. height: math.unit(10, "miles")
  10178. },
  10179. ]
  10180. ))
  10181. characterMakers.push(() => makeCharacter(
  10182. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10183. {
  10184. front: {
  10185. height: math.unit(6, "feet"),
  10186. weight: math.unit(68, "kg"),
  10187. name: "Front",
  10188. image: {
  10189. source: "./media/characters/nomaxice/front.svg",
  10190. extra: 1498 / 1073,
  10191. bottom: 0.075
  10192. }
  10193. },
  10194. foot: {
  10195. height: math.unit(1.1, "feet"),
  10196. name: "Foot",
  10197. image: {
  10198. source: "./media/characters/nomaxice/foot.svg"
  10199. }
  10200. },
  10201. },
  10202. [
  10203. {
  10204. name: "Micro",
  10205. height: math.unit(8, "cm")
  10206. },
  10207. {
  10208. name: "Norm",
  10209. height: math.unit(1.82, "m")
  10210. },
  10211. {
  10212. name: "Norm+",
  10213. height: math.unit(8.8, "feet")
  10214. },
  10215. {
  10216. name: "Big",
  10217. height: math.unit(8, "meters"),
  10218. default: true
  10219. },
  10220. {
  10221. name: "Macro",
  10222. height: math.unit(18, "meters")
  10223. },
  10224. {
  10225. name: "Macro+",
  10226. height: math.unit(88, "meters")
  10227. },
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10232. {
  10233. front: {
  10234. height: math.unit(12, "feet"),
  10235. weight: math.unit(1.5, "tons"),
  10236. name: "Front",
  10237. image: {
  10238. source: "./media/characters/dydros/front.svg",
  10239. extra: 863 / 800,
  10240. bottom: 0.015
  10241. }
  10242. },
  10243. back: {
  10244. height: math.unit(12, "feet"),
  10245. weight: math.unit(1.5, "tons"),
  10246. name: "Back",
  10247. image: {
  10248. source: "./media/characters/dydros/back.svg",
  10249. extra: 900 / 843,
  10250. bottom: 0.005
  10251. }
  10252. },
  10253. },
  10254. [
  10255. {
  10256. name: "Normal",
  10257. height: math.unit(12, "feet"),
  10258. default: true
  10259. },
  10260. ]
  10261. ))
  10262. characterMakers.push(() => makeCharacter(
  10263. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10264. {
  10265. front: {
  10266. height: math.unit(6, "feet"),
  10267. weight: math.unit(100, "kg"),
  10268. name: "Front",
  10269. image: {
  10270. source: "./media/characters/riggi/front.svg",
  10271. extra: 5787 / 5303
  10272. }
  10273. },
  10274. hyper: {
  10275. height: math.unit(6 * 5 / 3, "feet"),
  10276. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10277. name: "Hyper",
  10278. image: {
  10279. source: "./media/characters/riggi/hyper.svg",
  10280. extra: 3595 / 3485
  10281. }
  10282. },
  10283. },
  10284. [
  10285. {
  10286. name: "Small Macro",
  10287. height: math.unit(50, "feet")
  10288. },
  10289. {
  10290. name: "Default",
  10291. height: math.unit(200, "feet"),
  10292. default: true
  10293. },
  10294. {
  10295. name: "Loom",
  10296. height: math.unit(10000, "feet")
  10297. },
  10298. {
  10299. name: "Cruising Altitude",
  10300. height: math.unit(30000, "feet")
  10301. },
  10302. {
  10303. name: "Megamacro",
  10304. height: math.unit(100, "miles")
  10305. },
  10306. {
  10307. name: "Continent Sized",
  10308. height: math.unit(2800, "miles")
  10309. },
  10310. {
  10311. name: "Earth Sized",
  10312. height: math.unit(8000, "miles")
  10313. },
  10314. ]
  10315. ))
  10316. characterMakers.push(() => makeCharacter(
  10317. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10318. {
  10319. front: {
  10320. height: math.unit(6, "feet"),
  10321. weight: math.unit(250, "lb"),
  10322. name: "Front",
  10323. image: {
  10324. source: "./media/characters/alexi/front.svg",
  10325. extra: 3483 / 3291,
  10326. bottom: 0.04
  10327. }
  10328. },
  10329. back: {
  10330. height: math.unit(6, "feet"),
  10331. weight: math.unit(250, "lb"),
  10332. name: "Back",
  10333. image: {
  10334. source: "./media/characters/alexi/back.svg",
  10335. extra: 3533 / 3356,
  10336. bottom: 0.021
  10337. }
  10338. },
  10339. frontTransforming: {
  10340. height: math.unit(8.58, "feet"),
  10341. weight: math.unit(1300, "lb"),
  10342. name: "Transforming",
  10343. image: {
  10344. source: "./media/characters/alexi/front-transforming.svg",
  10345. extra: 437 / 409,
  10346. bottom: 19 / 458.66
  10347. }
  10348. },
  10349. frontTransformed: {
  10350. height: math.unit(12.5, "feet"),
  10351. weight: math.unit(4000, "lb"),
  10352. name: "Transformed",
  10353. image: {
  10354. source: "./media/characters/alexi/front-transformed.svg",
  10355. extra: 639 / 614,
  10356. bottom: 30.55 / 671
  10357. }
  10358. },
  10359. },
  10360. [
  10361. {
  10362. name: "Normal",
  10363. height: math.unit(14, "feet"),
  10364. default: true
  10365. },
  10366. {
  10367. name: "Minimacro",
  10368. height: math.unit(30, "meters")
  10369. },
  10370. {
  10371. name: "Macro",
  10372. height: math.unit(500, "meters")
  10373. },
  10374. {
  10375. name: "Megamacro",
  10376. height: math.unit(9000, "km")
  10377. },
  10378. {
  10379. name: "Teramacro",
  10380. height: math.unit(384000, "km")
  10381. },
  10382. ]
  10383. ))
  10384. characterMakers.push(() => makeCharacter(
  10385. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10386. {
  10387. front: {
  10388. height: math.unit(6, "feet"),
  10389. weight: math.unit(150, "lb"),
  10390. name: "Front",
  10391. image: {
  10392. source: "./media/characters/kayroo/front.svg",
  10393. extra: 1153 / 1038,
  10394. bottom: 0.06
  10395. }
  10396. },
  10397. foot: {
  10398. height: math.unit(6, "feet"),
  10399. weight: math.unit(150, "lb"),
  10400. name: "Foot",
  10401. image: {
  10402. source: "./media/characters/kayroo/foot.svg"
  10403. }
  10404. },
  10405. },
  10406. [
  10407. {
  10408. name: "Normal",
  10409. height: math.unit(8, "feet"),
  10410. default: true
  10411. },
  10412. {
  10413. name: "Minimacro",
  10414. height: math.unit(250, "feet")
  10415. },
  10416. {
  10417. name: "Macro",
  10418. height: math.unit(2800, "feet")
  10419. },
  10420. {
  10421. name: "Megamacro",
  10422. height: math.unit(5200, "feet")
  10423. },
  10424. {
  10425. name: "Gigamacro",
  10426. height: math.unit(27000, "feet")
  10427. },
  10428. {
  10429. name: "Omega",
  10430. height: math.unit(45000, "feet")
  10431. },
  10432. ]
  10433. ))
  10434. characterMakers.push(() => makeCharacter(
  10435. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10436. {
  10437. front: {
  10438. height: math.unit(18, "feet"),
  10439. weight: math.unit(5800, "lb"),
  10440. name: "Front",
  10441. image: {
  10442. source: "./media/characters/rhys/front.svg",
  10443. extra: 3386 / 3090,
  10444. bottom: 0.07
  10445. }
  10446. },
  10447. },
  10448. [
  10449. {
  10450. name: "Normal",
  10451. height: math.unit(18, "feet"),
  10452. default: true
  10453. },
  10454. {
  10455. name: "Working Size",
  10456. height: math.unit(200, "feet")
  10457. },
  10458. {
  10459. name: "Demolition Size",
  10460. height: math.unit(2000, "feet")
  10461. },
  10462. {
  10463. name: "Maximum Licensed Size",
  10464. height: math.unit(5, "miles")
  10465. },
  10466. {
  10467. name: "Maximum Observed Size",
  10468. height: math.unit(10, "yottameters")
  10469. },
  10470. ]
  10471. ))
  10472. characterMakers.push(() => makeCharacter(
  10473. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10474. {
  10475. front: {
  10476. height: math.unit(6, "feet"),
  10477. weight: math.unit(250, "lb"),
  10478. name: "Front",
  10479. image: {
  10480. source: "./media/characters/toto/front.svg",
  10481. extra: 527 / 479,
  10482. bottom: 0.05
  10483. }
  10484. },
  10485. },
  10486. [
  10487. {
  10488. name: "Micro",
  10489. height: math.unit(3, "feet")
  10490. },
  10491. {
  10492. name: "Normal",
  10493. height: math.unit(10, "feet")
  10494. },
  10495. {
  10496. name: "Macro",
  10497. height: math.unit(150, "feet"),
  10498. default: true
  10499. },
  10500. {
  10501. name: "Megamacro",
  10502. height: math.unit(1200, "feet")
  10503. },
  10504. ]
  10505. ))
  10506. characterMakers.push(() => makeCharacter(
  10507. { name: "King", species: ["lion"], tags: ["anthro"] },
  10508. {
  10509. back: {
  10510. height: math.unit(6, "feet"),
  10511. weight: math.unit(150, "lb"),
  10512. name: "Back",
  10513. image: {
  10514. source: "./media/characters/king/back.svg"
  10515. }
  10516. },
  10517. },
  10518. [
  10519. {
  10520. name: "Micro",
  10521. height: math.unit(2, "inches")
  10522. },
  10523. {
  10524. name: "Normal",
  10525. height: math.unit(8, "feet")
  10526. },
  10527. {
  10528. name: "Macro",
  10529. height: math.unit(200, "feet"),
  10530. default: true
  10531. },
  10532. {
  10533. name: "Megamacro",
  10534. height: math.unit(50, "miles")
  10535. },
  10536. ]
  10537. ))
  10538. characterMakers.push(() => makeCharacter(
  10539. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10540. {
  10541. anthro: {
  10542. height: math.unit(6 + 5 / 12, "feet"),
  10543. weight: math.unit(280, "lb"),
  10544. name: "Anthro",
  10545. image: {
  10546. source: "./media/characters/cordite/anthro.svg",
  10547. extra: 1986 / 1905,
  10548. bottom: 0.025
  10549. }
  10550. },
  10551. feral: {
  10552. height: math.unit(2, "feet"),
  10553. weight: math.unit(90, "lb"),
  10554. name: "Feral",
  10555. image: {
  10556. source: "./media/characters/cordite/feral.svg",
  10557. extra: 1260 / 755,
  10558. bottom: 0.05
  10559. }
  10560. },
  10561. },
  10562. [
  10563. {
  10564. name: "Normal",
  10565. height: math.unit(6 + 5 / 12, "feet"),
  10566. default: true
  10567. },
  10568. ]
  10569. ))
  10570. characterMakers.push(() => makeCharacter(
  10571. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10572. {
  10573. front: {
  10574. height: math.unit(6, "feet"),
  10575. weight: math.unit(150, "lb"),
  10576. name: "Front",
  10577. image: {
  10578. source: "./media/characters/pianostrong/front.svg",
  10579. extra: 6577 / 6254,
  10580. bottom: 0.02
  10581. }
  10582. },
  10583. side: {
  10584. height: math.unit(6, "feet"),
  10585. weight: math.unit(150, "lb"),
  10586. name: "Side",
  10587. image: {
  10588. source: "./media/characters/pianostrong/side.svg",
  10589. extra: 6106 / 5730
  10590. }
  10591. },
  10592. back: {
  10593. height: math.unit(6, "feet"),
  10594. weight: math.unit(150, "lb"),
  10595. name: "Back",
  10596. image: {
  10597. source: "./media/characters/pianostrong/back.svg",
  10598. extra: 6085 / 5733,
  10599. bottom: 0.01
  10600. }
  10601. },
  10602. },
  10603. [
  10604. {
  10605. name: "Macro",
  10606. height: math.unit(100, "feet")
  10607. },
  10608. {
  10609. name: "Macro+",
  10610. height: math.unit(300, "feet"),
  10611. default: true
  10612. },
  10613. {
  10614. name: "Macro++",
  10615. height: math.unit(1000, "feet")
  10616. },
  10617. ]
  10618. ))
  10619. characterMakers.push(() => makeCharacter(
  10620. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10621. {
  10622. front: {
  10623. height: math.unit(6, "feet"),
  10624. weight: math.unit(150, "lb"),
  10625. name: "Front",
  10626. image: {
  10627. source: "./media/characters/kona/front.svg",
  10628. extra: 2960 / 2629,
  10629. bottom: 0.005
  10630. }
  10631. },
  10632. },
  10633. [
  10634. {
  10635. name: "Normal",
  10636. height: math.unit(11 + 8 / 12, "feet")
  10637. },
  10638. {
  10639. name: "Macro",
  10640. height: math.unit(850, "feet"),
  10641. default: true
  10642. },
  10643. {
  10644. name: "Macro+",
  10645. height: math.unit(1.5, "km"),
  10646. default: true
  10647. },
  10648. {
  10649. name: "Megamacro",
  10650. height: math.unit(80, "miles")
  10651. },
  10652. {
  10653. name: "Gigamacro",
  10654. height: math.unit(3500, "miles")
  10655. },
  10656. ]
  10657. ))
  10658. characterMakers.push(() => makeCharacter(
  10659. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10660. {
  10661. side: {
  10662. height: math.unit(1.9, "meters"),
  10663. weight: math.unit(326, "kg"),
  10664. name: "Side",
  10665. image: {
  10666. source: "./media/characters/levi/side.svg",
  10667. extra: 1704 / 1334,
  10668. bottom: 0.02
  10669. }
  10670. },
  10671. },
  10672. [
  10673. {
  10674. name: "Normal",
  10675. height: math.unit(1.9, "meters"),
  10676. default: true
  10677. },
  10678. {
  10679. name: "Macro",
  10680. height: math.unit(20, "meters")
  10681. },
  10682. {
  10683. name: "Macro+",
  10684. height: math.unit(200, "meters")
  10685. },
  10686. {
  10687. name: "Megamacro",
  10688. height: math.unit(2, "km")
  10689. },
  10690. {
  10691. name: "Megamacro+",
  10692. height: math.unit(20, "km")
  10693. },
  10694. {
  10695. name: "Gigamacro",
  10696. height: math.unit(2500, "km")
  10697. },
  10698. {
  10699. name: "Gigamacro+",
  10700. height: math.unit(120000, "km")
  10701. },
  10702. {
  10703. name: "Teramacro",
  10704. height: math.unit(7.77e6, "km")
  10705. },
  10706. ]
  10707. ))
  10708. characterMakers.push(() => makeCharacter(
  10709. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10710. {
  10711. front: {
  10712. height: math.unit(6 + 4 / 12, "feet"),
  10713. weight: math.unit(188, "lb"),
  10714. name: "Front",
  10715. image: {
  10716. source: "./media/characters/bmc/front.svg",
  10717. extra: 1067 / 1022,
  10718. bottom: 0.047
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Human-sized",
  10725. height: math.unit(6 + 4 / 12, "feet")
  10726. },
  10727. {
  10728. name: "Small",
  10729. height: math.unit(250, "feet")
  10730. },
  10731. {
  10732. name: "Normal",
  10733. height: math.unit(1250, "feet"),
  10734. default: true
  10735. },
  10736. {
  10737. name: "Good Day",
  10738. height: math.unit(88, "miles")
  10739. },
  10740. {
  10741. name: "Largest Measured Size",
  10742. height: math.unit(11.2e6, "lightyears")
  10743. },
  10744. ]
  10745. ))
  10746. characterMakers.push(() => makeCharacter(
  10747. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10748. {
  10749. front: {
  10750. height: math.unit(20, "feet"),
  10751. weight: math.unit(2016, "kg"),
  10752. name: "Front",
  10753. image: {
  10754. source: "./media/characters/sven-the-kaiju/front.svg",
  10755. extra: 1479 / 1449,
  10756. bottom: 0.05
  10757. }
  10758. },
  10759. },
  10760. [
  10761. {
  10762. name: "Fairy",
  10763. height: math.unit(6, "inches")
  10764. },
  10765. {
  10766. name: "Normal",
  10767. height: math.unit(20, "feet"),
  10768. default: true
  10769. },
  10770. {
  10771. name: "Rampage",
  10772. height: math.unit(200, "feet")
  10773. },
  10774. {
  10775. name: "Archfey Forest Guardian",
  10776. height: math.unit(1, "mile")
  10777. },
  10778. ]
  10779. ))
  10780. characterMakers.push(() => makeCharacter(
  10781. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10782. {
  10783. front: {
  10784. height: math.unit(4, "meters"),
  10785. weight: math.unit(2, "tons"),
  10786. name: "Front",
  10787. image: {
  10788. source: "./media/characters/marik/front.svg",
  10789. extra: 1057 / 1003,
  10790. bottom: 0.08
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Normal",
  10797. height: math.unit(4, "meters"),
  10798. default: true
  10799. },
  10800. {
  10801. name: "Macro",
  10802. height: math.unit(20, "meters")
  10803. },
  10804. {
  10805. name: "Megamacro",
  10806. height: math.unit(50, "km")
  10807. },
  10808. {
  10809. name: "Gigamacro",
  10810. height: math.unit(100, "km")
  10811. },
  10812. {
  10813. name: "Alpha Macro",
  10814. height: math.unit(7.88e7, "yottameters")
  10815. },
  10816. ]
  10817. ))
  10818. characterMakers.push(() => makeCharacter(
  10819. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10820. {
  10821. front: {
  10822. height: math.unit(6, "feet"),
  10823. weight: math.unit(110, "lb"),
  10824. name: "Front",
  10825. image: {
  10826. source: "./media/characters/mel/front.svg",
  10827. extra: 736 / 617,
  10828. bottom: 0.017
  10829. }
  10830. },
  10831. },
  10832. [
  10833. {
  10834. name: "Pico",
  10835. height: math.unit(3, "pm")
  10836. },
  10837. {
  10838. name: "Nano",
  10839. height: math.unit(3, "nm")
  10840. },
  10841. {
  10842. name: "Micro",
  10843. height: math.unit(0.3, "mm"),
  10844. default: true
  10845. },
  10846. {
  10847. name: "Micro+",
  10848. height: math.unit(3, "mm")
  10849. },
  10850. {
  10851. name: "Normal",
  10852. height: math.unit(5 + 10.5 / 12, "feet")
  10853. },
  10854. ]
  10855. ))
  10856. characterMakers.push(() => makeCharacter(
  10857. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10858. {
  10859. kaiju: {
  10860. height: math.unit(1.75, "meters"),
  10861. weight: math.unit(55, "kg"),
  10862. name: "Kaiju",
  10863. image: {
  10864. source: "./media/characters/lykonous/kaiju.svg",
  10865. extra: 1055 / 946,
  10866. bottom: 0.135
  10867. }
  10868. },
  10869. },
  10870. [
  10871. {
  10872. name: "Normal",
  10873. height: math.unit(2.5, "meters"),
  10874. default: true
  10875. },
  10876. {
  10877. name: "Kaiju Dragon",
  10878. height: math.unit(60, "meters")
  10879. },
  10880. {
  10881. name: "Mega Kaiju",
  10882. height: math.unit(120, "km")
  10883. },
  10884. {
  10885. name: "Giga Kaiju",
  10886. height: math.unit(200, "megameters")
  10887. },
  10888. {
  10889. name: "Terra Kaiju",
  10890. height: math.unit(400, "gigameters")
  10891. },
  10892. {
  10893. name: "Kaiju Dragon God",
  10894. height: math.unit(13000, "exaparsecs")
  10895. },
  10896. ]
  10897. ))
  10898. characterMakers.push(() => makeCharacter(
  10899. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10900. {
  10901. front: {
  10902. height: math.unit(6, "feet"),
  10903. weight: math.unit(150, "lb"),
  10904. name: "Front",
  10905. image: {
  10906. source: "./media/characters/blü/front.svg",
  10907. extra: 1883 / 1564,
  10908. bottom: 0.031
  10909. }
  10910. },
  10911. },
  10912. [
  10913. {
  10914. name: "Normal",
  10915. height: math.unit(13, "feet"),
  10916. default: true
  10917. },
  10918. {
  10919. name: "Big Boi",
  10920. height: math.unit(150, "meters")
  10921. },
  10922. {
  10923. name: "Mini Stomper",
  10924. height: math.unit(300, "meters")
  10925. },
  10926. {
  10927. name: "Macro",
  10928. height: math.unit(1000, "meters")
  10929. },
  10930. {
  10931. name: "Megamacro",
  10932. height: math.unit(11000, "meters")
  10933. },
  10934. {
  10935. name: "Gigamacro",
  10936. height: math.unit(11000, "km")
  10937. },
  10938. {
  10939. name: "Teramacro",
  10940. height: math.unit(420000, "km")
  10941. },
  10942. {
  10943. name: "Examacro",
  10944. height: math.unit(120, "parsecs")
  10945. },
  10946. {
  10947. name: "God Tho",
  10948. height: math.unit(98000000000, "parsecs")
  10949. },
  10950. ]
  10951. ))
  10952. characterMakers.push(() => makeCharacter(
  10953. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10954. {
  10955. taurFront: {
  10956. height: math.unit(6, "feet"),
  10957. weight: math.unit(200, "lb"),
  10958. name: "Taur (Front)",
  10959. image: {
  10960. source: "./media/characters/scales/taur-front.svg",
  10961. extra: 1,
  10962. bottom: 0.05
  10963. }
  10964. },
  10965. taurBack: {
  10966. height: math.unit(6, "feet"),
  10967. weight: math.unit(200, "lb"),
  10968. name: "Taur (Back)",
  10969. image: {
  10970. source: "./media/characters/scales/taur-back.svg",
  10971. extra: 1,
  10972. bottom: 0.08
  10973. }
  10974. },
  10975. anthro: {
  10976. height: math.unit(6 * 7 / 12, "feet"),
  10977. weight: math.unit(100, "lb"),
  10978. name: "Anthro",
  10979. image: {
  10980. source: "./media/characters/scales/anthro.svg",
  10981. extra: 1,
  10982. bottom: 0.06
  10983. }
  10984. },
  10985. },
  10986. [
  10987. {
  10988. name: "Normal",
  10989. height: math.unit(12, "feet"),
  10990. default: true
  10991. },
  10992. ]
  10993. ))
  10994. characterMakers.push(() => makeCharacter(
  10995. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10996. {
  10997. front: {
  10998. height: math.unit(6, "feet"),
  10999. weight: math.unit(150, "lb"),
  11000. name: "Front",
  11001. image: {
  11002. source: "./media/characters/koragos/front.svg",
  11003. extra: 841 / 794,
  11004. bottom: 0.035
  11005. }
  11006. },
  11007. back: {
  11008. height: math.unit(6, "feet"),
  11009. weight: math.unit(150, "lb"),
  11010. name: "Back",
  11011. image: {
  11012. source: "./media/characters/koragos/back.svg",
  11013. extra: 841 / 810,
  11014. bottom: 0.022
  11015. }
  11016. },
  11017. },
  11018. [
  11019. {
  11020. name: "Normal",
  11021. height: math.unit(6 + 11 / 12, "feet"),
  11022. default: true
  11023. },
  11024. {
  11025. name: "Macro",
  11026. height: math.unit(490, "feet")
  11027. },
  11028. {
  11029. name: "Megamacro",
  11030. height: math.unit(10, "miles")
  11031. },
  11032. {
  11033. name: "Gigamacro",
  11034. height: math.unit(50, "miles")
  11035. },
  11036. ]
  11037. ))
  11038. characterMakers.push(() => makeCharacter(
  11039. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11040. {
  11041. front: {
  11042. height: math.unit(6, "feet"),
  11043. weight: math.unit(250, "lb"),
  11044. name: "Front",
  11045. image: {
  11046. source: "./media/characters/xylrem/front.svg",
  11047. extra: 3323 / 3050,
  11048. bottom: 0.065
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Micro",
  11055. height: math.unit(4, "feet")
  11056. },
  11057. {
  11058. name: "Normal",
  11059. height: math.unit(16, "feet"),
  11060. default: true
  11061. },
  11062. {
  11063. name: "Macro",
  11064. height: math.unit(2720, "feet")
  11065. },
  11066. {
  11067. name: "Megamacro",
  11068. height: math.unit(25000, "miles")
  11069. },
  11070. ]
  11071. ))
  11072. characterMakers.push(() => makeCharacter(
  11073. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11074. {
  11075. front: {
  11076. height: math.unit(8, "feet"),
  11077. weight: math.unit(250, "kg"),
  11078. name: "Front",
  11079. image: {
  11080. source: "./media/characters/ikideru/front.svg",
  11081. extra: 930 / 870,
  11082. bottom: 0.087
  11083. }
  11084. },
  11085. back: {
  11086. height: math.unit(8, "feet"),
  11087. weight: math.unit(250, "kg"),
  11088. name: "Back",
  11089. image: {
  11090. source: "./media/characters/ikideru/back.svg",
  11091. extra: 919 / 852,
  11092. bottom: 0.055
  11093. }
  11094. },
  11095. },
  11096. [
  11097. {
  11098. name: "Rare",
  11099. height: math.unit(8, "feet"),
  11100. default: true
  11101. },
  11102. {
  11103. name: "Playful Loom",
  11104. height: math.unit(80, "feet")
  11105. },
  11106. {
  11107. name: "City Leaner",
  11108. height: math.unit(230, "feet")
  11109. },
  11110. {
  11111. name: "Megamacro",
  11112. height: math.unit(2500, "feet")
  11113. },
  11114. {
  11115. name: "Gigamacro",
  11116. height: math.unit(26400, "feet")
  11117. },
  11118. {
  11119. name: "Tectonic Shifter",
  11120. height: math.unit(1.7, "megameters")
  11121. },
  11122. {
  11123. name: "Planet Carer",
  11124. height: math.unit(21, "megameters")
  11125. },
  11126. {
  11127. name: "God",
  11128. height: math.unit(11157.22, "parsecs")
  11129. },
  11130. ]
  11131. ))
  11132. characterMakers.push(() => makeCharacter(
  11133. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11134. {
  11135. front: {
  11136. height: math.unit(6, "feet"),
  11137. weight: math.unit(120, "lb"),
  11138. name: "Front",
  11139. image: {
  11140. source: "./media/characters/neo/front.svg"
  11141. }
  11142. },
  11143. },
  11144. [
  11145. {
  11146. name: "Micro",
  11147. height: math.unit(2, "inches"),
  11148. default: true
  11149. },
  11150. {
  11151. name: "Human Size",
  11152. height: math.unit(5 + 8 / 12, "feet")
  11153. },
  11154. ]
  11155. ))
  11156. characterMakers.push(() => makeCharacter(
  11157. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11158. {
  11159. front: {
  11160. height: math.unit(13 + 10 / 12, "feet"),
  11161. weight: math.unit(5320, "lb"),
  11162. name: "Front",
  11163. image: {
  11164. source: "./media/characters/chauncey-chantz/front.svg",
  11165. extra: 1587 / 1435,
  11166. bottom: 0.02
  11167. }
  11168. },
  11169. },
  11170. [
  11171. {
  11172. name: "Normal",
  11173. height: math.unit(13 + 10 / 12, "feet"),
  11174. default: true
  11175. },
  11176. {
  11177. name: "Macro",
  11178. height: math.unit(45, "feet")
  11179. },
  11180. {
  11181. name: "Megamacro",
  11182. height: math.unit(250, "miles")
  11183. },
  11184. {
  11185. name: "Planetary",
  11186. height: math.unit(10000, "miles")
  11187. },
  11188. {
  11189. name: "Galactic",
  11190. height: math.unit(40000, "parsecs")
  11191. },
  11192. {
  11193. name: "Universal",
  11194. height: math.unit(1, "yottameter")
  11195. },
  11196. ]
  11197. ))
  11198. characterMakers.push(() => makeCharacter(
  11199. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11200. {
  11201. front: {
  11202. height: math.unit(6, "feet"),
  11203. weight: math.unit(150, "lb"),
  11204. name: "Front",
  11205. image: {
  11206. source: "./media/characters/epifox/front.svg",
  11207. extra: 1,
  11208. bottom: 0.075
  11209. }
  11210. },
  11211. },
  11212. [
  11213. {
  11214. name: "Micro",
  11215. height: math.unit(6, "inches")
  11216. },
  11217. {
  11218. name: "Normal",
  11219. height: math.unit(12, "feet"),
  11220. default: true
  11221. },
  11222. {
  11223. name: "Macro",
  11224. height: math.unit(3810, "feet")
  11225. },
  11226. {
  11227. name: "Megamacro",
  11228. height: math.unit(500, "miles")
  11229. },
  11230. ]
  11231. ))
  11232. characterMakers.push(() => makeCharacter(
  11233. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11234. {
  11235. front: {
  11236. height: math.unit(1.8796, "m"),
  11237. weight: math.unit(230, "lb"),
  11238. name: "Front",
  11239. image: {
  11240. source: "./media/characters/colin-t/front.svg",
  11241. extra: 1272 / 1193,
  11242. bottom: 0.07
  11243. }
  11244. },
  11245. },
  11246. [
  11247. {
  11248. name: "Micro",
  11249. height: math.unit(0.571, "meters")
  11250. },
  11251. {
  11252. name: "Normal",
  11253. height: math.unit(1.8796, "meters"),
  11254. default: true
  11255. },
  11256. {
  11257. name: "Tall",
  11258. height: math.unit(4, "meters")
  11259. },
  11260. {
  11261. name: "Macro",
  11262. height: math.unit(67.241, "meters")
  11263. },
  11264. {
  11265. name: "Megamacro",
  11266. height: math.unit(371.856, "meters")
  11267. },
  11268. {
  11269. name: "Planetary",
  11270. height: math.unit(12631.5689, "km")
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11276. {
  11277. front: {
  11278. height: math.unit(1.85, "meters"),
  11279. weight: math.unit(80, "kg"),
  11280. name: "Front",
  11281. image: {
  11282. source: "./media/characters/matvei/front.svg",
  11283. extra: 614 / 594,
  11284. bottom: 0.01
  11285. }
  11286. },
  11287. },
  11288. [
  11289. {
  11290. name: "Normal",
  11291. height: math.unit(1.85, "meters"),
  11292. default: true
  11293. },
  11294. ]
  11295. ))
  11296. characterMakers.push(() => makeCharacter(
  11297. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11298. {
  11299. front: {
  11300. height: math.unit(5 + 9 / 12, "feet"),
  11301. weight: math.unit(70, "lb"),
  11302. name: "Front",
  11303. image: {
  11304. source: "./media/characters/quincy/front.svg",
  11305. extra: 3041 / 2751
  11306. }
  11307. },
  11308. back: {
  11309. height: math.unit(5 + 9 / 12, "feet"),
  11310. weight: math.unit(70, "lb"),
  11311. name: "Back",
  11312. image: {
  11313. source: "./media/characters/quincy/back.svg",
  11314. extra: 3041 / 2751
  11315. }
  11316. },
  11317. flying: {
  11318. height: math.unit(5 + 4 / 12, "feet"),
  11319. weight: math.unit(70, "lb"),
  11320. name: "Flying",
  11321. image: {
  11322. source: "./media/characters/quincy/flying.svg",
  11323. extra: 1044 / 930
  11324. }
  11325. },
  11326. },
  11327. [
  11328. {
  11329. name: "Micro",
  11330. height: math.unit(3, "cm")
  11331. },
  11332. {
  11333. name: "Normal",
  11334. height: math.unit(5 + 9 / 12, "feet")
  11335. },
  11336. {
  11337. name: "Macro",
  11338. height: math.unit(200, "meters"),
  11339. default: true
  11340. },
  11341. {
  11342. name: "Megamacro",
  11343. height: math.unit(1000, "meters")
  11344. },
  11345. ]
  11346. ))
  11347. characterMakers.push(() => makeCharacter(
  11348. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11349. {
  11350. front: {
  11351. height: math.unit(4 + 7 / 12, "feet"),
  11352. weight: math.unit(50, "lb"),
  11353. name: "Front",
  11354. image: {
  11355. source: "./media/characters/vanrel/front.svg",
  11356. extra: 1,
  11357. bottom: 0.02
  11358. }
  11359. },
  11360. frontAlt: {
  11361. height: math.unit(4 + 7 / 12, "feet"),
  11362. weight: math.unit(50, "lb"),
  11363. name: "Front-alt",
  11364. image: {
  11365. source: "./media/characters/vanrel/front-alt.svg",
  11366. extra: 1,
  11367. bottom: 15 / 1511
  11368. }
  11369. },
  11370. elemental: {
  11371. height: math.unit(3, "feet"),
  11372. weight: math.unit(50, "lb"),
  11373. name: "Elemental",
  11374. image: {
  11375. source: "./media/characters/vanrel/elemental.svg",
  11376. extra: 192.3 / 162.8,
  11377. bottom: 1.79 / 194.17
  11378. }
  11379. },
  11380. side: {
  11381. height: math.unit(4 + 7 / 12, "feet"),
  11382. weight: math.unit(50, "lb"),
  11383. name: "Side",
  11384. image: {
  11385. source: "./media/characters/vanrel/side.svg",
  11386. extra: 1,
  11387. bottom: 0.025
  11388. }
  11389. },
  11390. tome: {
  11391. height: math.unit(1.35, "feet"),
  11392. weight: math.unit(10, "lb"),
  11393. name: "Vanrel's Tome",
  11394. rename: true,
  11395. image: {
  11396. source: "./media/characters/vanrel/tome.svg"
  11397. }
  11398. },
  11399. beans: {
  11400. height: math.unit(0.89, "feet"),
  11401. name: "Beans",
  11402. image: {
  11403. source: "./media/characters/vanrel/beans.svg"
  11404. }
  11405. },
  11406. },
  11407. [
  11408. {
  11409. name: "Normal",
  11410. height: math.unit(4 + 7 / 12, "feet"),
  11411. default: true
  11412. },
  11413. ]
  11414. ))
  11415. characterMakers.push(() => makeCharacter(
  11416. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11417. {
  11418. front: {
  11419. height: math.unit(7 + 5 / 12, "feet"),
  11420. weight: math.unit(150, "lb"),
  11421. name: "Front",
  11422. image: {
  11423. source: "./media/characters/kuiper-vanrel/front.svg",
  11424. extra: 1118 / 1068,
  11425. bottom: 0.09
  11426. }
  11427. },
  11428. foot: {
  11429. height: math.unit(0.55, "meters"),
  11430. name: "Foot",
  11431. image: {
  11432. source: "./media/characters/kuiper-vanrel/foot.svg",
  11433. }
  11434. },
  11435. battle: {
  11436. height: math.unit(6.824, "feet"),
  11437. weight: math.unit(150, "lb"),
  11438. name: "Battle",
  11439. image: {
  11440. source: "./media/characters/kuiper-vanrel/battle.svg",
  11441. extra: 1466 / 1327,
  11442. bottom: 29 / 1492.5
  11443. }
  11444. },
  11445. battleAlt: {
  11446. height: math.unit(6.824, "feet"),
  11447. weight: math.unit(150, "lb"),
  11448. name: "Battle (Alt)",
  11449. image: {
  11450. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11451. extra: 2081 / 1965,
  11452. bottom: 40 / 2121
  11453. }
  11454. },
  11455. },
  11456. [
  11457. {
  11458. name: "Normal",
  11459. height: math.unit(7 + 5 / 12, "feet"),
  11460. default: true
  11461. },
  11462. ]
  11463. ))
  11464. characterMakers.push(() => makeCharacter(
  11465. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11466. {
  11467. front: {
  11468. height: math.unit(8 + 5 / 12, "feet"),
  11469. weight: math.unit(150, "lb"),
  11470. name: "Front",
  11471. image: {
  11472. source: "./media/characters/keset-vanrel/front.svg",
  11473. extra: 1150 / 1084,
  11474. bottom: 0.05
  11475. }
  11476. },
  11477. hand: {
  11478. height: math.unit(0.6, "meters"),
  11479. name: "Hand",
  11480. image: {
  11481. source: "./media/characters/keset-vanrel/hand.svg"
  11482. }
  11483. },
  11484. foot: {
  11485. height: math.unit(0.94978, "meters"),
  11486. name: "Foot",
  11487. image: {
  11488. source: "./media/characters/keset-vanrel/foot.svg"
  11489. }
  11490. },
  11491. battle: {
  11492. height: math.unit(7.408, "feet"),
  11493. weight: math.unit(150, "lb"),
  11494. name: "Battle",
  11495. image: {
  11496. source: "./media/characters/keset-vanrel/battle.svg",
  11497. extra: 1890 / 1386,
  11498. bottom: 73.28 / 1970
  11499. }
  11500. },
  11501. },
  11502. [
  11503. {
  11504. name: "Normal",
  11505. height: math.unit(8 + 5 / 12, "feet"),
  11506. default: true
  11507. },
  11508. ]
  11509. ))
  11510. characterMakers.push(() => makeCharacter(
  11511. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11512. {
  11513. front: {
  11514. height: math.unit(6, "feet"),
  11515. weight: math.unit(150, "lb"),
  11516. name: "Front",
  11517. image: {
  11518. source: "./media/characters/neos/front.svg",
  11519. extra: 1696 / 992,
  11520. bottom: 0.14
  11521. }
  11522. },
  11523. },
  11524. [
  11525. {
  11526. name: "Normal",
  11527. height: math.unit(54, "cm"),
  11528. default: true
  11529. },
  11530. {
  11531. name: "Macro",
  11532. height: math.unit(100, "m")
  11533. },
  11534. {
  11535. name: "Megamacro",
  11536. height: math.unit(10, "km")
  11537. },
  11538. {
  11539. name: "Megamacro+",
  11540. height: math.unit(100, "km")
  11541. },
  11542. {
  11543. name: "Gigamacro",
  11544. height: math.unit(100, "Mm")
  11545. },
  11546. {
  11547. name: "Teramacro",
  11548. height: math.unit(100, "Gm")
  11549. },
  11550. {
  11551. name: "Examacro",
  11552. height: math.unit(100, "Em")
  11553. },
  11554. {
  11555. name: "Godly",
  11556. height: math.unit(10000, "Ym")
  11557. },
  11558. {
  11559. name: "Beyond Godly",
  11560. height: math.unit(25, "multiverses")
  11561. },
  11562. ]
  11563. ))
  11564. characterMakers.push(() => makeCharacter(
  11565. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11566. {
  11567. feminine: {
  11568. height: math.unit(5, "feet"),
  11569. weight: math.unit(100, "lb"),
  11570. name: "Feminine",
  11571. image: {
  11572. source: "./media/characters/sammy-mouse/feminine.svg",
  11573. extra: 2526 / 2425,
  11574. bottom: 0.123
  11575. }
  11576. },
  11577. masculine: {
  11578. height: math.unit(5, "feet"),
  11579. weight: math.unit(100, "lb"),
  11580. name: "Masculine",
  11581. image: {
  11582. source: "./media/characters/sammy-mouse/masculine.svg",
  11583. extra: 2526 / 2425,
  11584. bottom: 0.123
  11585. }
  11586. },
  11587. },
  11588. [
  11589. {
  11590. name: "Micro",
  11591. height: math.unit(5, "inches")
  11592. },
  11593. {
  11594. name: "Normal",
  11595. height: math.unit(5, "feet"),
  11596. default: true
  11597. },
  11598. {
  11599. name: "Macro",
  11600. height: math.unit(60, "feet")
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11606. {
  11607. front: {
  11608. height: math.unit(4, "feet"),
  11609. weight: math.unit(50, "lb"),
  11610. name: "Front",
  11611. image: {
  11612. source: "./media/characters/kole/front.svg",
  11613. extra: 1423 / 1303,
  11614. bottom: 0.025
  11615. }
  11616. },
  11617. back: {
  11618. height: math.unit(4, "feet"),
  11619. weight: math.unit(50, "lb"),
  11620. name: "Back",
  11621. image: {
  11622. source: "./media/characters/kole/back.svg",
  11623. extra: 1426 / 1280,
  11624. bottom: 0.02
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Normal",
  11631. height: math.unit(4, "feet"),
  11632. default: true
  11633. },
  11634. ]
  11635. ))
  11636. characterMakers.push(() => makeCharacter(
  11637. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11638. {
  11639. front: {
  11640. height: math.unit(2 + 6 / 12, "feet"),
  11641. weight: math.unit(20, "lb"),
  11642. name: "Front",
  11643. image: {
  11644. source: "./media/characters/rufran/front.svg",
  11645. extra: 2041 / 1839,
  11646. bottom: 0.055
  11647. }
  11648. },
  11649. back: {
  11650. height: math.unit(2 + 6 / 12, "feet"),
  11651. weight: math.unit(20, "lb"),
  11652. name: "Back",
  11653. image: {
  11654. source: "./media/characters/rufran/back.svg",
  11655. extra: 2054 / 1839,
  11656. bottom: 0.01
  11657. }
  11658. },
  11659. hand: {
  11660. height: math.unit(0.2166, "meters"),
  11661. name: "Hand",
  11662. image: {
  11663. source: "./media/characters/rufran/hand.svg"
  11664. }
  11665. },
  11666. foot: {
  11667. height: math.unit(0.185, "meters"),
  11668. name: "Foot",
  11669. image: {
  11670. source: "./media/characters/rufran/foot.svg"
  11671. }
  11672. },
  11673. },
  11674. [
  11675. {
  11676. name: "Micro",
  11677. height: math.unit(1, "inch")
  11678. },
  11679. {
  11680. name: "Normal",
  11681. height: math.unit(2 + 6 / 12, "feet"),
  11682. default: true
  11683. },
  11684. {
  11685. name: "Big",
  11686. height: math.unit(60, "feet")
  11687. },
  11688. {
  11689. name: "Macro",
  11690. height: math.unit(325, "feet")
  11691. },
  11692. ]
  11693. ))
  11694. characterMakers.push(() => makeCharacter(
  11695. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11696. {
  11697. front: {
  11698. height: math.unit(0.3, "meters"),
  11699. weight: math.unit(3.5, "kg"),
  11700. name: "Front",
  11701. image: {
  11702. source: "./media/characters/chip/front.svg",
  11703. extra: 748 / 674
  11704. }
  11705. },
  11706. },
  11707. [
  11708. {
  11709. name: "Micro",
  11710. height: math.unit(1, "inch"),
  11711. default: true
  11712. },
  11713. ]
  11714. ))
  11715. characterMakers.push(() => makeCharacter(
  11716. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11717. {
  11718. side: {
  11719. height: math.unit(2.3, "meters"),
  11720. weight: math.unit(3500, "lb"),
  11721. name: "Side",
  11722. image: {
  11723. source: "./media/characters/torvid/side.svg",
  11724. extra: 1972 / 722,
  11725. bottom: 0.035
  11726. }
  11727. },
  11728. },
  11729. [
  11730. {
  11731. name: "Normal",
  11732. height: math.unit(2.3, "meters"),
  11733. default: true
  11734. },
  11735. ]
  11736. ))
  11737. characterMakers.push(() => makeCharacter(
  11738. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11739. {
  11740. front: {
  11741. height: math.unit(2, "meters"),
  11742. weight: math.unit(150.5, "kg"),
  11743. name: "Front",
  11744. image: {
  11745. source: "./media/characters/susan/front.svg",
  11746. extra: 693 / 635,
  11747. bottom: 0.05
  11748. }
  11749. },
  11750. },
  11751. [
  11752. {
  11753. name: "Megamacro",
  11754. height: math.unit(505, "miles"),
  11755. default: true
  11756. },
  11757. ]
  11758. ))
  11759. characterMakers.push(() => makeCharacter(
  11760. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11761. {
  11762. front: {
  11763. height: math.unit(6, "feet"),
  11764. weight: math.unit(150, "lb"),
  11765. name: "Front",
  11766. image: {
  11767. source: "./media/characters/raindrops/front.svg",
  11768. extra: 2655 / 2461,
  11769. bottom: 49 / 2705
  11770. }
  11771. },
  11772. back: {
  11773. height: math.unit(6, "feet"),
  11774. weight: math.unit(150, "lb"),
  11775. name: "Back",
  11776. image: {
  11777. source: "./media/characters/raindrops/back.svg",
  11778. extra: 2574 / 2400,
  11779. bottom: 65 / 2634
  11780. }
  11781. },
  11782. },
  11783. [
  11784. {
  11785. name: "Micro",
  11786. height: math.unit(6, "inches")
  11787. },
  11788. {
  11789. name: "Normal",
  11790. height: math.unit(6 + 2 / 12, "feet")
  11791. },
  11792. {
  11793. name: "Macro",
  11794. height: math.unit(131, "feet"),
  11795. default: true
  11796. },
  11797. {
  11798. name: "Megamacro",
  11799. height: math.unit(15, "miles")
  11800. },
  11801. {
  11802. name: "Gigamacro",
  11803. height: math.unit(4000, "miles")
  11804. },
  11805. {
  11806. name: "Teramacro",
  11807. height: math.unit(315000, "miles")
  11808. },
  11809. ]
  11810. ))
  11811. characterMakers.push(() => makeCharacter(
  11812. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11813. {
  11814. front: {
  11815. height: math.unit(2.794, "meters"),
  11816. weight: math.unit(325, "kg"),
  11817. name: "Front",
  11818. image: {
  11819. source: "./media/characters/tezwa/front.svg",
  11820. extra: 2083 / 1906,
  11821. bottom: 0.031
  11822. }
  11823. },
  11824. foot: {
  11825. height: math.unit(0.687, "meters"),
  11826. name: "Foot",
  11827. image: {
  11828. source: "./media/characters/tezwa/foot.svg"
  11829. }
  11830. },
  11831. },
  11832. [
  11833. {
  11834. name: "Normal",
  11835. height: math.unit(9 + 2 / 12, "feet"),
  11836. default: true
  11837. },
  11838. ]
  11839. ))
  11840. characterMakers.push(() => makeCharacter(
  11841. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11842. {
  11843. front: {
  11844. height: math.unit(58, "feet"),
  11845. weight: math.unit(89000, "lb"),
  11846. name: "Front",
  11847. image: {
  11848. source: "./media/characters/typhus/front.svg",
  11849. extra: 816 / 800,
  11850. bottom: 0.065
  11851. }
  11852. },
  11853. },
  11854. [
  11855. {
  11856. name: "Macro",
  11857. height: math.unit(58, "feet"),
  11858. default: true
  11859. },
  11860. ]
  11861. ))
  11862. characterMakers.push(() => makeCharacter(
  11863. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11864. {
  11865. front: {
  11866. height: math.unit(12, "feet"),
  11867. weight: math.unit(6, "tonnes"),
  11868. name: "Front",
  11869. image: {
  11870. source: "./media/characters/lyra-von-wulf/front.svg",
  11871. extra: 1,
  11872. bottom: 0.10
  11873. }
  11874. },
  11875. frontMecha: {
  11876. height: math.unit(12, "feet"),
  11877. weight: math.unit(12, "tonnes"),
  11878. name: "Front (Mecha)",
  11879. image: {
  11880. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11881. extra: 1,
  11882. bottom: 0.042
  11883. }
  11884. },
  11885. maw: {
  11886. height: math.unit(2.2, "feet"),
  11887. name: "Maw",
  11888. image: {
  11889. source: "./media/characters/lyra-von-wulf/maw.svg"
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(12, "feet"),
  11897. default: true
  11898. },
  11899. {
  11900. name: "Classic",
  11901. height: math.unit(50, "feet")
  11902. },
  11903. {
  11904. name: "Macro",
  11905. height: math.unit(500, "feet")
  11906. },
  11907. {
  11908. name: "Megamacro",
  11909. height: math.unit(1, "mile")
  11910. },
  11911. {
  11912. name: "Gigamacro",
  11913. height: math.unit(400, "miles")
  11914. },
  11915. {
  11916. name: "Teramacro",
  11917. height: math.unit(22000, "miles")
  11918. },
  11919. {
  11920. name: "Solarmacro",
  11921. height: math.unit(8600000, "miles")
  11922. },
  11923. {
  11924. name: "Galactic",
  11925. height: math.unit(1057000, "lightyears")
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11931. {
  11932. front: {
  11933. height: math.unit(6 + 10 / 12, "feet"),
  11934. weight: math.unit(150, "lb"),
  11935. name: "Front",
  11936. image: {
  11937. source: "./media/characters/dixon/front.svg",
  11938. extra: 3361 / 3209,
  11939. bottom: 0.01
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Normal",
  11946. height: math.unit(6 + 10 / 12, "feet"),
  11947. default: true
  11948. },
  11949. {
  11950. name: "Big",
  11951. height: math.unit(12, "meters")
  11952. },
  11953. {
  11954. name: "Macro",
  11955. height: math.unit(500, "meters")
  11956. },
  11957. {
  11958. name: "Megamacro",
  11959. height: math.unit(2, "km")
  11960. },
  11961. ]
  11962. ))
  11963. characterMakers.push(() => makeCharacter(
  11964. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11965. {
  11966. front: {
  11967. height: math.unit(185, "cm"),
  11968. weight: math.unit(68, "kg"),
  11969. name: "Front",
  11970. image: {
  11971. source: "./media/characters/kauko/front.svg",
  11972. extra: 1455 / 1421,
  11973. bottom: 0.03
  11974. }
  11975. },
  11976. back: {
  11977. height: math.unit(185, "cm"),
  11978. weight: math.unit(68, "kg"),
  11979. name: "Back",
  11980. image: {
  11981. source: "./media/characters/kauko/back.svg",
  11982. extra: 1455 / 1421,
  11983. bottom: 0.004
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Normal",
  11990. height: math.unit(185, "cm"),
  11991. default: true
  11992. },
  11993. ]
  11994. ))
  11995. characterMakers.push(() => makeCharacter(
  11996. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11997. {
  11998. front: {
  11999. height: math.unit(6, "feet"),
  12000. weight: math.unit(150, "kg"),
  12001. name: "Front",
  12002. image: {
  12003. source: "./media/characters/varg/front.svg",
  12004. extra: 1108 / 1018,
  12005. bottom: 0.0375
  12006. }
  12007. },
  12008. },
  12009. [
  12010. {
  12011. name: "Normal",
  12012. height: math.unit(5, "meters")
  12013. },
  12014. {
  12015. name: "Macro",
  12016. height: math.unit(200, "meters")
  12017. },
  12018. {
  12019. name: "Megamacro",
  12020. height: math.unit(20, "kilometers")
  12021. },
  12022. {
  12023. name: "True Size",
  12024. height: math.unit(211, "km"),
  12025. default: true
  12026. },
  12027. {
  12028. name: "Gigamacro",
  12029. height: math.unit(1000, "km")
  12030. },
  12031. {
  12032. name: "Gigamacro+",
  12033. height: math.unit(8000, "km")
  12034. },
  12035. {
  12036. name: "Teramacro",
  12037. height: math.unit(1000000, "km")
  12038. },
  12039. ]
  12040. ))
  12041. characterMakers.push(() => makeCharacter(
  12042. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12043. {
  12044. front: {
  12045. height: math.unit(7 + 7 / 12, "feet"),
  12046. weight: math.unit(267, "lb"),
  12047. name: "Front",
  12048. image: {
  12049. source: "./media/characters/dayza/front.svg",
  12050. extra: 1262 / 1200,
  12051. bottom: 0.035
  12052. }
  12053. },
  12054. side: {
  12055. height: math.unit(7 + 7 / 12, "feet"),
  12056. weight: math.unit(267, "lb"),
  12057. name: "Side",
  12058. image: {
  12059. source: "./media/characters/dayza/side.svg",
  12060. extra: 1295 / 1245,
  12061. bottom: 0.05
  12062. }
  12063. },
  12064. back: {
  12065. height: math.unit(7 + 7 / 12, "feet"),
  12066. weight: math.unit(267, "lb"),
  12067. name: "Back",
  12068. image: {
  12069. source: "./media/characters/dayza/back.svg",
  12070. extra: 1241 / 1170
  12071. }
  12072. },
  12073. },
  12074. [
  12075. {
  12076. name: "Normal",
  12077. height: math.unit(7 + 7 / 12, "feet"),
  12078. default: true
  12079. },
  12080. {
  12081. name: "Macro",
  12082. height: math.unit(155, "feet")
  12083. },
  12084. ]
  12085. ))
  12086. characterMakers.push(() => makeCharacter(
  12087. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12088. {
  12089. front: {
  12090. height: math.unit(6 + 5 / 12, "feet"),
  12091. weight: math.unit(160, "lb"),
  12092. name: "Front",
  12093. image: {
  12094. source: "./media/characters/xanthos/front.svg",
  12095. extra: 1,
  12096. bottom: 0.04
  12097. }
  12098. },
  12099. back: {
  12100. height: math.unit(6 + 5 / 12, "feet"),
  12101. weight: math.unit(160, "lb"),
  12102. name: "Back",
  12103. image: {
  12104. source: "./media/characters/xanthos/back.svg",
  12105. extra: 1,
  12106. bottom: 0.03
  12107. }
  12108. },
  12109. hand: {
  12110. height: math.unit(0.928, "feet"),
  12111. name: "Hand",
  12112. image: {
  12113. source: "./media/characters/xanthos/hand.svg"
  12114. }
  12115. },
  12116. foot: {
  12117. height: math.unit(1.286, "feet"),
  12118. name: "Foot",
  12119. image: {
  12120. source: "./media/characters/xanthos/foot.svg"
  12121. }
  12122. },
  12123. },
  12124. [
  12125. {
  12126. name: "Normal",
  12127. height: math.unit(6 + 5 / 12, "feet"),
  12128. default: true
  12129. },
  12130. {
  12131. name: "Normal+",
  12132. height: math.unit(6, "meters")
  12133. },
  12134. {
  12135. name: "Macro",
  12136. height: math.unit(40, "feet")
  12137. },
  12138. {
  12139. name: "Macro+",
  12140. height: math.unit(200, "meters")
  12141. },
  12142. {
  12143. name: "Megamacro",
  12144. height: math.unit(20, "km")
  12145. },
  12146. {
  12147. name: "Megamacro+",
  12148. height: math.unit(100, "km")
  12149. },
  12150. ]
  12151. ))
  12152. characterMakers.push(() => makeCharacter(
  12153. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12154. {
  12155. front: {
  12156. height: math.unit(6 + 3 / 12, "feet"),
  12157. weight: math.unit(215, "lb"),
  12158. name: "Front",
  12159. image: {
  12160. source: "./media/characters/grynn/front.svg",
  12161. extra: 4627 / 4209,
  12162. bottom: 0.047
  12163. }
  12164. },
  12165. },
  12166. [
  12167. {
  12168. name: "Micro",
  12169. height: math.unit(6, "inches")
  12170. },
  12171. {
  12172. name: "Normal",
  12173. height: math.unit(6 + 3 / 12, "feet"),
  12174. default: true
  12175. },
  12176. {
  12177. name: "Big",
  12178. height: math.unit(104, "feet")
  12179. },
  12180. {
  12181. name: "Macro",
  12182. height: math.unit(944, "feet")
  12183. },
  12184. {
  12185. name: "Macro+",
  12186. height: math.unit(9480, "feet")
  12187. },
  12188. {
  12189. name: "Megamacro",
  12190. height: math.unit(78752, "feet")
  12191. },
  12192. {
  12193. name: "Megamacro+",
  12194. height: math.unit(630128, "feet")
  12195. },
  12196. {
  12197. name: "Megamacro++",
  12198. height: math.unit(3150695, "feet")
  12199. },
  12200. ]
  12201. ))
  12202. characterMakers.push(() => makeCharacter(
  12203. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12204. {
  12205. front: {
  12206. height: math.unit(7 + 5 / 12, "feet"),
  12207. weight: math.unit(450, "lb"),
  12208. name: "Front",
  12209. image: {
  12210. source: "./media/characters/mocha-aura/front.svg",
  12211. extra: 1907 / 1817,
  12212. bottom: 0.04
  12213. }
  12214. },
  12215. back: {
  12216. height: math.unit(7 + 5 / 12, "feet"),
  12217. weight: math.unit(450, "lb"),
  12218. name: "Back",
  12219. image: {
  12220. source: "./media/characters/mocha-aura/back.svg",
  12221. extra: 1900 / 1825,
  12222. bottom: 0.045
  12223. }
  12224. },
  12225. },
  12226. [
  12227. {
  12228. name: "Nano",
  12229. height: math.unit(1, "nm")
  12230. },
  12231. {
  12232. name: "Megamicro",
  12233. height: math.unit(1, "mm")
  12234. },
  12235. {
  12236. name: "Micro",
  12237. height: math.unit(3, "inches")
  12238. },
  12239. {
  12240. name: "Normal",
  12241. height: math.unit(7 + 5 / 12, "feet"),
  12242. default: true
  12243. },
  12244. {
  12245. name: "Macro",
  12246. height: math.unit(30, "feet")
  12247. },
  12248. {
  12249. name: "Megamacro",
  12250. height: math.unit(3500, "feet")
  12251. },
  12252. {
  12253. name: "Teramacro",
  12254. height: math.unit(500000, "miles")
  12255. },
  12256. {
  12257. name: "Petamacro",
  12258. height: math.unit(50000000000000000, "parsecs")
  12259. },
  12260. ]
  12261. ))
  12262. characterMakers.push(() => makeCharacter(
  12263. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12264. {
  12265. front: {
  12266. height: math.unit(6, "feet"),
  12267. weight: math.unit(150, "lb"),
  12268. name: "Front",
  12269. image: {
  12270. source: "./media/characters/ilisha-devya/front.svg",
  12271. extra: 1,
  12272. bottom: 0.175
  12273. }
  12274. },
  12275. back: {
  12276. height: math.unit(6, "feet"),
  12277. weight: math.unit(150, "lb"),
  12278. name: "Back",
  12279. image: {
  12280. source: "./media/characters/ilisha-devya/back.svg",
  12281. extra: 1,
  12282. bottom: 0.015
  12283. }
  12284. },
  12285. },
  12286. [
  12287. {
  12288. name: "Macro",
  12289. height: math.unit(500, "feet"),
  12290. default: true
  12291. },
  12292. {
  12293. name: "Megamacro",
  12294. height: math.unit(10, "miles")
  12295. },
  12296. {
  12297. name: "Gigamacro",
  12298. height: math.unit(100000, "miles")
  12299. },
  12300. {
  12301. name: "Examacro",
  12302. height: math.unit(1e9, "lightyears")
  12303. },
  12304. {
  12305. name: "Omniversal",
  12306. height: math.unit(1e33, "lightyears")
  12307. },
  12308. {
  12309. name: "Beyond Infinite",
  12310. height: math.unit(1e100, "lightyears")
  12311. },
  12312. ]
  12313. ))
  12314. characterMakers.push(() => makeCharacter(
  12315. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12316. {
  12317. Side: {
  12318. height: math.unit(6, "feet"),
  12319. weight: math.unit(150, "lb"),
  12320. name: "Side",
  12321. image: {
  12322. source: "./media/characters/mira/side.svg",
  12323. extra: 900 / 799,
  12324. bottom: 0.02
  12325. }
  12326. },
  12327. },
  12328. [
  12329. {
  12330. name: "Human Size",
  12331. height: math.unit(6, "feet")
  12332. },
  12333. {
  12334. name: "Macro",
  12335. height: math.unit(100, "feet"),
  12336. default: true
  12337. },
  12338. {
  12339. name: "Megamacro",
  12340. height: math.unit(10, "miles")
  12341. },
  12342. {
  12343. name: "Gigamacro",
  12344. height: math.unit(25000, "miles")
  12345. },
  12346. {
  12347. name: "Teramacro",
  12348. height: math.unit(300, "AU")
  12349. },
  12350. {
  12351. name: "Full Size",
  12352. height: math.unit(4.5e10, "lightyears")
  12353. },
  12354. ]
  12355. ))
  12356. characterMakers.push(() => makeCharacter(
  12357. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12358. {
  12359. front: {
  12360. height: math.unit(6, "feet"),
  12361. weight: math.unit(150, "lb"),
  12362. name: "Front",
  12363. image: {
  12364. source: "./media/characters/holly/front.svg",
  12365. extra: 639 / 606
  12366. }
  12367. },
  12368. back: {
  12369. height: math.unit(6, "feet"),
  12370. weight: math.unit(150, "lb"),
  12371. name: "Back",
  12372. image: {
  12373. source: "./media/characters/holly/back.svg",
  12374. extra: 623 / 598
  12375. }
  12376. },
  12377. frontWorking: {
  12378. height: math.unit(6, "feet"),
  12379. weight: math.unit(150, "lb"),
  12380. name: "Front (Working)",
  12381. image: {
  12382. source: "./media/characters/holly/front-working.svg",
  12383. extra: 607 / 577,
  12384. bottom: 0.048
  12385. }
  12386. },
  12387. },
  12388. [
  12389. {
  12390. name: "Normal",
  12391. height: math.unit(12 + 3 / 12, "feet"),
  12392. default: true
  12393. },
  12394. ]
  12395. ))
  12396. characterMakers.push(() => makeCharacter(
  12397. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12398. {
  12399. front: {
  12400. height: math.unit(6, "feet"),
  12401. weight: math.unit(150, "lb"),
  12402. name: "Front",
  12403. image: {
  12404. source: "./media/characters/porter/front.svg",
  12405. extra: 1,
  12406. bottom: 0.01
  12407. }
  12408. },
  12409. frontRobes: {
  12410. height: math.unit(6, "feet"),
  12411. weight: math.unit(150, "lb"),
  12412. name: "Front (Robes)",
  12413. image: {
  12414. source: "./media/characters/porter/front-robes.svg",
  12415. extra: 1.01,
  12416. bottom: 0.01
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Normal",
  12423. height: math.unit(11 + 9 / 12, "feet"),
  12424. default: true
  12425. },
  12426. ]
  12427. ))
  12428. characterMakers.push(() => makeCharacter(
  12429. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12430. {
  12431. legendary: {
  12432. height: math.unit(6, "feet"),
  12433. weight: math.unit(150, "lb"),
  12434. name: "Legendary",
  12435. image: {
  12436. source: "./media/characters/lucy/legendary.svg",
  12437. extra: 1355 / 1100,
  12438. bottom: 0.045
  12439. }
  12440. },
  12441. },
  12442. [
  12443. {
  12444. name: "Legendary",
  12445. height: math.unit(86882 * 2, "miles"),
  12446. default: true
  12447. },
  12448. ]
  12449. ))
  12450. characterMakers.push(() => makeCharacter(
  12451. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12452. {
  12453. front: {
  12454. height: math.unit(6, "feet"),
  12455. weight: math.unit(150, "lb"),
  12456. name: "Front",
  12457. image: {
  12458. source: "./media/characters/drusilla/front.svg",
  12459. extra: 678 / 635,
  12460. bottom: 0.03
  12461. }
  12462. },
  12463. back: {
  12464. height: math.unit(6, "feet"),
  12465. weight: math.unit(150, "lb"),
  12466. name: "Back",
  12467. image: {
  12468. source: "./media/characters/drusilla/back.svg",
  12469. extra: 678 / 635,
  12470. bottom: 0.005
  12471. }
  12472. },
  12473. },
  12474. [
  12475. {
  12476. name: "Macro",
  12477. height: math.unit(100, "feet")
  12478. },
  12479. {
  12480. name: "Canon Height",
  12481. height: math.unit(2000, "feet"),
  12482. default: true
  12483. },
  12484. ]
  12485. ))
  12486. characterMakers.push(() => makeCharacter(
  12487. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12488. {
  12489. front: {
  12490. height: math.unit(6, "feet"),
  12491. weight: math.unit(180, "lb"),
  12492. name: "Front",
  12493. image: {
  12494. source: "./media/characters/renard-thatch/front.svg",
  12495. extra: 2411 / 2275,
  12496. bottom: 0.01
  12497. }
  12498. },
  12499. frontPosing: {
  12500. height: math.unit(6, "feet"),
  12501. weight: math.unit(180, "lb"),
  12502. name: "Front (Posing)",
  12503. image: {
  12504. source: "./media/characters/renard-thatch/front-posing.svg",
  12505. extra: 2381 / 2261,
  12506. bottom: 0.01
  12507. }
  12508. },
  12509. back: {
  12510. height: math.unit(6, "feet"),
  12511. weight: math.unit(180, "lb"),
  12512. name: "Back",
  12513. image: {
  12514. source: "./media/characters/renard-thatch/back.svg",
  12515. extra: 2428 / 2288
  12516. }
  12517. },
  12518. },
  12519. [
  12520. {
  12521. name: "Micro",
  12522. height: math.unit(3, "inches")
  12523. },
  12524. {
  12525. name: "Default",
  12526. height: math.unit(6, "feet"),
  12527. default: true
  12528. },
  12529. {
  12530. name: "Macro",
  12531. height: math.unit(75, "feet")
  12532. },
  12533. ]
  12534. ))
  12535. characterMakers.push(() => makeCharacter(
  12536. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12537. {
  12538. front: {
  12539. height: math.unit(1450, "feet"),
  12540. weight: math.unit(1.21e6, "tons"),
  12541. name: "Front",
  12542. image: {
  12543. source: "./media/characters/sekvra/front.svg",
  12544. extra: 1,
  12545. bottom: 0.03
  12546. }
  12547. },
  12548. frontClothed: {
  12549. height: math.unit(1450, "feet"),
  12550. weight: math.unit(1.21e6, "tons"),
  12551. name: "Front (Clothed)",
  12552. image: {
  12553. source: "./media/characters/sekvra/front-clothed.svg",
  12554. extra: 1,
  12555. bottom: 0.03
  12556. }
  12557. },
  12558. side: {
  12559. height: math.unit(1450, "feet"),
  12560. weight: math.unit(1.21e6, "tons"),
  12561. name: "Side",
  12562. image: {
  12563. source: "./media/characters/sekvra/side.svg",
  12564. extra: 1,
  12565. bottom: 0.025
  12566. }
  12567. },
  12568. back: {
  12569. height: math.unit(1450, "feet"),
  12570. weight: math.unit(1.21e6, "tons"),
  12571. name: "Back",
  12572. image: {
  12573. source: "./media/characters/sekvra/back.svg",
  12574. extra: 1,
  12575. bottom: 0.005
  12576. }
  12577. },
  12578. },
  12579. [
  12580. {
  12581. name: "Macro",
  12582. height: math.unit(1450, "feet"),
  12583. default: true
  12584. },
  12585. {
  12586. name: "Megamacro",
  12587. height: math.unit(15000, "feet")
  12588. },
  12589. ]
  12590. ))
  12591. characterMakers.push(() => makeCharacter(
  12592. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12593. {
  12594. front: {
  12595. height: math.unit(6, "feet"),
  12596. weight: math.unit(150, "lb"),
  12597. name: "Front",
  12598. image: {
  12599. source: "./media/characters/carmine/front.svg",
  12600. extra: 1,
  12601. bottom: 0.035
  12602. }
  12603. },
  12604. frontArmor: {
  12605. height: math.unit(6, "feet"),
  12606. weight: math.unit(150, "lb"),
  12607. name: "Front (Armor)",
  12608. image: {
  12609. source: "./media/characters/carmine/front-armor.svg",
  12610. extra: 1,
  12611. bottom: 0.035
  12612. }
  12613. },
  12614. },
  12615. [
  12616. {
  12617. name: "Large",
  12618. height: math.unit(1, "mile")
  12619. },
  12620. {
  12621. name: "Huge",
  12622. height: math.unit(40, "miles"),
  12623. default: true
  12624. },
  12625. {
  12626. name: "Colossal",
  12627. height: math.unit(2500, "miles")
  12628. },
  12629. ]
  12630. ))
  12631. characterMakers.push(() => makeCharacter(
  12632. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12633. {
  12634. front: {
  12635. height: math.unit(6, "feet"),
  12636. weight: math.unit(150, "lb"),
  12637. name: "Front",
  12638. image: {
  12639. source: "./media/characters/elyssia/front.svg",
  12640. extra: 2201 / 2035,
  12641. bottom: 0.05
  12642. }
  12643. },
  12644. frontClothed: {
  12645. height: math.unit(6, "feet"),
  12646. weight: math.unit(150, "lb"),
  12647. name: "Front (Clothed)",
  12648. image: {
  12649. source: "./media/characters/elyssia/front-clothed.svg",
  12650. extra: 2201 / 2035,
  12651. bottom: 0.05
  12652. }
  12653. },
  12654. back: {
  12655. height: math.unit(6, "feet"),
  12656. weight: math.unit(150, "lb"),
  12657. name: "Back",
  12658. image: {
  12659. source: "./media/characters/elyssia/back.svg",
  12660. extra: 2201 / 2035,
  12661. bottom: 0.013
  12662. }
  12663. },
  12664. },
  12665. [
  12666. {
  12667. name: "Smaller",
  12668. height: math.unit(150, "feet")
  12669. },
  12670. {
  12671. name: "Standard",
  12672. height: math.unit(1400, "feet"),
  12673. default: true
  12674. },
  12675. {
  12676. name: "Distracted",
  12677. height: math.unit(15000, "feet")
  12678. },
  12679. ]
  12680. ))
  12681. characterMakers.push(() => makeCharacter(
  12682. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12683. {
  12684. front: {
  12685. height: math.unit(7 + 4 / 12, "feet"),
  12686. weight: math.unit(500, "lb"),
  12687. name: "Front",
  12688. image: {
  12689. source: "./media/characters/geno-maxwell/front.svg",
  12690. extra: 2207 / 2040,
  12691. bottom: 0.015
  12692. }
  12693. },
  12694. },
  12695. [
  12696. {
  12697. name: "Micro",
  12698. height: math.unit(3, "inches")
  12699. },
  12700. {
  12701. name: "Normal",
  12702. height: math.unit(7 + 4 / 12, "feet"),
  12703. default: true
  12704. },
  12705. {
  12706. name: "Macro",
  12707. height: math.unit(220, "feet")
  12708. },
  12709. {
  12710. name: "Megamacro",
  12711. height: math.unit(11, "miles")
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12717. {
  12718. front: {
  12719. height: math.unit(7 + 4 / 12, "feet"),
  12720. weight: math.unit(500, "lb"),
  12721. name: "Front",
  12722. image: {
  12723. source: "./media/characters/regena-maxwell/front.svg",
  12724. extra: 3115 / 2770,
  12725. bottom: 0.02
  12726. }
  12727. },
  12728. },
  12729. [
  12730. {
  12731. name: "Normal",
  12732. height: math.unit(7 + 4 / 12, "feet"),
  12733. default: true
  12734. },
  12735. {
  12736. name: "Macro",
  12737. height: math.unit(220, "feet")
  12738. },
  12739. {
  12740. name: "Megamacro",
  12741. height: math.unit(11, "miles")
  12742. },
  12743. ]
  12744. ))
  12745. characterMakers.push(() => makeCharacter(
  12746. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12747. {
  12748. front: {
  12749. height: math.unit(6, "feet"),
  12750. weight: math.unit(150, "lb"),
  12751. name: "Front",
  12752. image: {
  12753. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12754. extra: 860 / 690,
  12755. bottom: 0.03
  12756. }
  12757. },
  12758. },
  12759. [
  12760. {
  12761. name: "Normal",
  12762. height: math.unit(1.7, "meters"),
  12763. default: true
  12764. },
  12765. ]
  12766. ))
  12767. characterMakers.push(() => makeCharacter(
  12768. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12769. {
  12770. front: {
  12771. height: math.unit(6, "feet"),
  12772. weight: math.unit(150, "lb"),
  12773. name: "Front",
  12774. image: {
  12775. source: "./media/characters/quilly/front.svg",
  12776. extra: 890 / 776
  12777. }
  12778. },
  12779. },
  12780. [
  12781. {
  12782. name: "Gigamacro",
  12783. height: math.unit(404090, "miles"),
  12784. default: true
  12785. },
  12786. ]
  12787. ))
  12788. characterMakers.push(() => makeCharacter(
  12789. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12790. {
  12791. front: {
  12792. height: math.unit(7 + 8 / 12, "feet"),
  12793. weight: math.unit(350, "lb"),
  12794. name: "Front",
  12795. image: {
  12796. source: "./media/characters/tempest/front.svg",
  12797. extra: 1175 / 1086,
  12798. bottom: 0.02
  12799. }
  12800. },
  12801. },
  12802. [
  12803. {
  12804. name: "Normal",
  12805. height: math.unit(7 + 8 / 12, "feet"),
  12806. default: true
  12807. },
  12808. ]
  12809. ))
  12810. characterMakers.push(() => makeCharacter(
  12811. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12812. {
  12813. side: {
  12814. height: math.unit(4 + 5 / 12, "feet"),
  12815. weight: math.unit(80, "lb"),
  12816. name: "Side",
  12817. image: {
  12818. source: "./media/characters/rodger/side.svg",
  12819. extra: 1235 / 1118
  12820. }
  12821. },
  12822. },
  12823. [
  12824. {
  12825. name: "Micro",
  12826. height: math.unit(1, "inch")
  12827. },
  12828. {
  12829. name: "Normal",
  12830. height: math.unit(4 + 5 / 12, "feet"),
  12831. default: true
  12832. },
  12833. {
  12834. name: "Macro",
  12835. height: math.unit(120, "feet")
  12836. },
  12837. ]
  12838. ))
  12839. characterMakers.push(() => makeCharacter(
  12840. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12841. {
  12842. front: {
  12843. height: math.unit(6, "feet"),
  12844. weight: math.unit(150, "lb"),
  12845. name: "Front",
  12846. image: {
  12847. source: "./media/characters/danyel/front.svg",
  12848. extra: 1185 / 1123,
  12849. bottom: 0.05
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Shrunken",
  12856. height: math.unit(0.5, "mm")
  12857. },
  12858. {
  12859. name: "Micro",
  12860. height: math.unit(1, "mm"),
  12861. default: true
  12862. },
  12863. {
  12864. name: "Upsized",
  12865. height: math.unit(5 + 5 / 12, "feet")
  12866. },
  12867. ]
  12868. ))
  12869. characterMakers.push(() => makeCharacter(
  12870. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12871. {
  12872. front: {
  12873. height: math.unit(5 + 6 / 12, "feet"),
  12874. weight: math.unit(200, "lb"),
  12875. name: "Front",
  12876. image: {
  12877. source: "./media/characters/vivian-bijoux/front.svg",
  12878. extra: 1,
  12879. bottom: 0.072
  12880. }
  12881. },
  12882. },
  12883. [
  12884. {
  12885. name: "Normal",
  12886. height: math.unit(5 + 6 / 12, "feet"),
  12887. default: true
  12888. },
  12889. {
  12890. name: "Bad Dream",
  12891. height: math.unit(500, "feet")
  12892. },
  12893. {
  12894. name: "Nightmare",
  12895. height: math.unit(500, "miles")
  12896. },
  12897. ]
  12898. ))
  12899. characterMakers.push(() => makeCharacter(
  12900. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12901. {
  12902. front: {
  12903. height: math.unit(6 + 1 / 12, "feet"),
  12904. weight: math.unit(260, "lb"),
  12905. name: "Front",
  12906. image: {
  12907. source: "./media/characters/zeta/front.svg",
  12908. extra: 1968 / 1889,
  12909. bottom: 0.06
  12910. }
  12911. },
  12912. back: {
  12913. height: math.unit(6 + 1 / 12, "feet"),
  12914. weight: math.unit(260, "lb"),
  12915. name: "Back",
  12916. image: {
  12917. source: "./media/characters/zeta/back.svg",
  12918. extra: 1944 / 1858,
  12919. bottom: 0.03
  12920. }
  12921. },
  12922. hand: {
  12923. height: math.unit(1.112, "feet"),
  12924. name: "Hand",
  12925. image: {
  12926. source: "./media/characters/zeta/hand.svg"
  12927. }
  12928. },
  12929. foot: {
  12930. height: math.unit(1.48, "feet"),
  12931. name: "Foot",
  12932. image: {
  12933. source: "./media/characters/zeta/foot.svg"
  12934. }
  12935. },
  12936. },
  12937. [
  12938. {
  12939. name: "Micro",
  12940. height: math.unit(6, "inches")
  12941. },
  12942. {
  12943. name: "Normal",
  12944. height: math.unit(6 + 1 / 12, "feet"),
  12945. default: true
  12946. },
  12947. {
  12948. name: "Macro",
  12949. height: math.unit(20, "feet")
  12950. },
  12951. ]
  12952. ))
  12953. characterMakers.push(() => makeCharacter(
  12954. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12955. {
  12956. front: {
  12957. height: math.unit(6, "feet"),
  12958. weight: math.unit(150, "lb"),
  12959. name: "Front",
  12960. image: {
  12961. source: "./media/characters/jamie-larsen/front.svg",
  12962. extra: 962 / 933,
  12963. bottom: 0.02
  12964. }
  12965. },
  12966. back: {
  12967. height: math.unit(6, "feet"),
  12968. weight: math.unit(150, "lb"),
  12969. name: "Back",
  12970. image: {
  12971. source: "./media/characters/jamie-larsen/back.svg",
  12972. extra: 997 / 946
  12973. }
  12974. },
  12975. },
  12976. [
  12977. {
  12978. name: "Macro",
  12979. height: math.unit(28 + 7 / 12, "feet"),
  12980. default: true
  12981. },
  12982. {
  12983. name: "Macro+",
  12984. height: math.unit(180, "feet")
  12985. },
  12986. {
  12987. name: "Megamacro",
  12988. height: math.unit(10, "miles")
  12989. },
  12990. {
  12991. name: "Gigamacro",
  12992. height: math.unit(200000, "miles")
  12993. },
  12994. ]
  12995. ))
  12996. characterMakers.push(() => makeCharacter(
  12997. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12998. {
  12999. front: {
  13000. height: math.unit(6, "feet"),
  13001. weight: math.unit(120, "lb"),
  13002. name: "Front",
  13003. image: {
  13004. source: "./media/characters/vance/front.svg",
  13005. extra: 1980 / 1890,
  13006. bottom: 0.09
  13007. }
  13008. },
  13009. back: {
  13010. height: math.unit(6, "feet"),
  13011. weight: math.unit(120, "lb"),
  13012. name: "Back",
  13013. image: {
  13014. source: "./media/characters/vance/back.svg",
  13015. extra: 2081 / 1994,
  13016. bottom: 0.014
  13017. }
  13018. },
  13019. hand: {
  13020. height: math.unit(0.88, "feet"),
  13021. name: "Hand",
  13022. image: {
  13023. source: "./media/characters/vance/hand.svg"
  13024. }
  13025. },
  13026. foot: {
  13027. height: math.unit(0.64, "feet"),
  13028. name: "Foot",
  13029. image: {
  13030. source: "./media/characters/vance/foot.svg"
  13031. }
  13032. },
  13033. },
  13034. [
  13035. {
  13036. name: "Small",
  13037. height: math.unit(90, "feet"),
  13038. default: true
  13039. },
  13040. {
  13041. name: "Macro",
  13042. height: math.unit(100, "meters")
  13043. },
  13044. {
  13045. name: "Megamacro",
  13046. height: math.unit(15, "miles")
  13047. },
  13048. ]
  13049. ))
  13050. characterMakers.push(() => makeCharacter(
  13051. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13052. {
  13053. front: {
  13054. height: math.unit(6, "feet"),
  13055. weight: math.unit(180, "lb"),
  13056. name: "Front",
  13057. image: {
  13058. source: "./media/characters/xochitl/front.svg",
  13059. extra: 2297 / 2261,
  13060. bottom: 0.065
  13061. }
  13062. },
  13063. back: {
  13064. height: math.unit(6, "feet"),
  13065. weight: math.unit(180, "lb"),
  13066. name: "Back",
  13067. image: {
  13068. source: "./media/characters/xochitl/back.svg",
  13069. extra: 2386 / 2354,
  13070. bottom: 0.01
  13071. }
  13072. },
  13073. foot: {
  13074. height: math.unit(6 / 5 * 1.15, "feet"),
  13075. weight: math.unit(150, "lb"),
  13076. name: "Foot",
  13077. image: {
  13078. source: "./media/characters/xochitl/foot.svg"
  13079. }
  13080. },
  13081. },
  13082. [
  13083. {
  13084. name: "Macro",
  13085. height: math.unit(80, "feet")
  13086. },
  13087. {
  13088. name: "Macro+",
  13089. height: math.unit(400, "feet"),
  13090. default: true
  13091. },
  13092. {
  13093. name: "Gigamacro",
  13094. height: math.unit(80000, "miles")
  13095. },
  13096. {
  13097. name: "Gigamacro+",
  13098. height: math.unit(400000, "miles")
  13099. },
  13100. {
  13101. name: "Teramacro",
  13102. height: math.unit(300, "AU")
  13103. },
  13104. ]
  13105. ))
  13106. characterMakers.push(() => makeCharacter(
  13107. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13108. {
  13109. front: {
  13110. height: math.unit(6, "feet"),
  13111. weight: math.unit(150, "lb"),
  13112. name: "Front",
  13113. image: {
  13114. source: "./media/characters/vincent/front.svg",
  13115. extra: 1130 / 1080,
  13116. bottom: 0.055
  13117. }
  13118. },
  13119. beak: {
  13120. height: math.unit(6 * 0.1, "feet"),
  13121. name: "Beak",
  13122. image: {
  13123. source: "./media/characters/vincent/beak.svg"
  13124. }
  13125. },
  13126. hand: {
  13127. height: math.unit(6 * 0.85, "feet"),
  13128. weight: math.unit(150, "lb"),
  13129. name: "Hand",
  13130. image: {
  13131. source: "./media/characters/vincent/hand.svg"
  13132. }
  13133. },
  13134. foot: {
  13135. height: math.unit(6 * 0.19, "feet"),
  13136. weight: math.unit(150, "lb"),
  13137. name: "Foot",
  13138. image: {
  13139. source: "./media/characters/vincent/foot.svg"
  13140. }
  13141. },
  13142. },
  13143. [
  13144. {
  13145. name: "Base",
  13146. height: math.unit(6 + 5 / 12, "feet"),
  13147. default: true
  13148. },
  13149. {
  13150. name: "Macro",
  13151. height: math.unit(300, "feet")
  13152. },
  13153. {
  13154. name: "Megamacro",
  13155. height: math.unit(2, "miles")
  13156. },
  13157. {
  13158. name: "Gigamacro",
  13159. height: math.unit(1000, "miles")
  13160. },
  13161. ]
  13162. ))
  13163. characterMakers.push(() => makeCharacter(
  13164. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13165. {
  13166. front: {
  13167. height: math.unit(6 + 2 / 12, "feet"),
  13168. weight: math.unit(265, "lb"),
  13169. name: "Front",
  13170. image: {
  13171. source: "./media/characters/jay/front.svg",
  13172. extra: 1510 / 1430,
  13173. bottom: 0.042
  13174. }
  13175. },
  13176. back: {
  13177. height: math.unit(6 + 2 / 12, "feet"),
  13178. weight: math.unit(265, "lb"),
  13179. name: "Back",
  13180. image: {
  13181. source: "./media/characters/jay/back.svg",
  13182. extra: 1510 / 1430,
  13183. bottom: 0.025
  13184. }
  13185. },
  13186. clothed: {
  13187. height: math.unit(6 + 2 / 12, "feet"),
  13188. weight: math.unit(265, "lb"),
  13189. name: "Front (Clothed)",
  13190. image: {
  13191. source: "./media/characters/jay/clothed.svg",
  13192. extra: 744 / 699,
  13193. bottom: 0.043
  13194. }
  13195. },
  13196. head: {
  13197. height: math.unit(1.772, "feet"),
  13198. name: "Head",
  13199. image: {
  13200. source: "./media/characters/jay/head.svg"
  13201. }
  13202. },
  13203. sizeRay: {
  13204. height: math.unit(1.331, "feet"),
  13205. name: "Size Ray",
  13206. image: {
  13207. source: "./media/characters/jay/size-ray.svg"
  13208. }
  13209. },
  13210. },
  13211. [
  13212. {
  13213. name: "Micro",
  13214. height: math.unit(1, "inch")
  13215. },
  13216. {
  13217. name: "Normal",
  13218. height: math.unit(6 + 2 / 12, "feet"),
  13219. default: true
  13220. },
  13221. {
  13222. name: "Macro",
  13223. height: math.unit(1, "mile")
  13224. },
  13225. {
  13226. name: "Megamacro",
  13227. height: math.unit(100, "miles")
  13228. },
  13229. ]
  13230. ))
  13231. characterMakers.push(() => makeCharacter(
  13232. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13233. {
  13234. front: {
  13235. height: math.unit(2, "meters"),
  13236. weight: math.unit(500, "kg"),
  13237. name: "Front",
  13238. image: {
  13239. source: "./media/characters/coatl/front.svg",
  13240. extra: 3948 / 3500,
  13241. bottom: 0.082
  13242. }
  13243. },
  13244. },
  13245. [
  13246. {
  13247. name: "Normal",
  13248. height: math.unit(4, "meters")
  13249. },
  13250. {
  13251. name: "Macro",
  13252. height: math.unit(100, "meters"),
  13253. default: true
  13254. },
  13255. {
  13256. name: "Macro+",
  13257. height: math.unit(300, "meters")
  13258. },
  13259. {
  13260. name: "Megamacro",
  13261. height: math.unit(3, "gigameters")
  13262. },
  13263. {
  13264. name: "Megamacro+",
  13265. height: math.unit(300, "terameters")
  13266. },
  13267. {
  13268. name: "Megamacro++",
  13269. height: math.unit(3, "lightyears")
  13270. },
  13271. ]
  13272. ))
  13273. characterMakers.push(() => makeCharacter(
  13274. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13275. {
  13276. front: {
  13277. height: math.unit(6, "feet"),
  13278. weight: math.unit(50, "kg"),
  13279. name: "front",
  13280. image: {
  13281. source: "./media/characters/shiroryu/front.svg",
  13282. extra: 1990 / 1935
  13283. }
  13284. },
  13285. },
  13286. [
  13287. {
  13288. name: "Mortal Mingling",
  13289. height: math.unit(3, "meters")
  13290. },
  13291. {
  13292. name: "Kaiju-ish",
  13293. height: math.unit(250, "meters")
  13294. },
  13295. {
  13296. name: "Somewhat Godly",
  13297. height: math.unit(400, "km"),
  13298. default: true
  13299. },
  13300. {
  13301. name: "Planetary",
  13302. height: math.unit(300, "megameters")
  13303. },
  13304. {
  13305. name: "Galaxy-dwarfing",
  13306. height: math.unit(450, "kiloparsecs")
  13307. },
  13308. {
  13309. name: "Universe Eater",
  13310. height: math.unit(150, "gigaparsecs")
  13311. },
  13312. {
  13313. name: "Almost Immeasurable",
  13314. height: math.unit(1.3e266, "yottaparsecs")
  13315. },
  13316. ]
  13317. ))
  13318. characterMakers.push(() => makeCharacter(
  13319. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13320. {
  13321. front: {
  13322. height: math.unit(6, "feet"),
  13323. weight: math.unit(150, "lb"),
  13324. name: "Front",
  13325. image: {
  13326. source: "./media/characters/umeko/front.svg",
  13327. extra: 1,
  13328. bottom: 0.019
  13329. }
  13330. },
  13331. frontArmored: {
  13332. height: math.unit(6, "feet"),
  13333. weight: math.unit(150, "lb"),
  13334. name: "Front (Armored)",
  13335. image: {
  13336. source: "./media/characters/umeko/front-armored.svg",
  13337. extra: 1,
  13338. bottom: 0.021
  13339. }
  13340. },
  13341. },
  13342. [
  13343. {
  13344. name: "Macro",
  13345. height: math.unit(220, "feet"),
  13346. default: true
  13347. },
  13348. {
  13349. name: "Guardian Dragon",
  13350. height: math.unit(50, "miles")
  13351. },
  13352. {
  13353. name: "Cosmic",
  13354. height: math.unit(800000, "miles")
  13355. },
  13356. ]
  13357. ))
  13358. characterMakers.push(() => makeCharacter(
  13359. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13360. {
  13361. front: {
  13362. height: math.unit(6, "feet"),
  13363. weight: math.unit(150, "lb"),
  13364. name: "Front",
  13365. image: {
  13366. source: "./media/characters/cassidy/front.svg",
  13367. extra: 1,
  13368. bottom: 0.043
  13369. }
  13370. },
  13371. },
  13372. [
  13373. {
  13374. name: "Canon Height",
  13375. height: math.unit(120, "feet"),
  13376. default: true
  13377. },
  13378. {
  13379. name: "Macro+",
  13380. height: math.unit(400, "feet")
  13381. },
  13382. {
  13383. name: "Macro++",
  13384. height: math.unit(4000, "feet")
  13385. },
  13386. {
  13387. name: "Megamacro",
  13388. height: math.unit(3, "miles")
  13389. },
  13390. ]
  13391. ))
  13392. characterMakers.push(() => makeCharacter(
  13393. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13394. {
  13395. front: {
  13396. height: math.unit(6, "feet"),
  13397. weight: math.unit(150, "lb"),
  13398. name: "Front",
  13399. image: {
  13400. source: "./media/characters/isaac/front.svg",
  13401. extra: 896 / 815,
  13402. bottom: 0.11
  13403. }
  13404. },
  13405. },
  13406. [
  13407. {
  13408. name: "Human Size",
  13409. height: math.unit(8, "feet"),
  13410. default: true
  13411. },
  13412. {
  13413. name: "Macro",
  13414. height: math.unit(400, "feet")
  13415. },
  13416. {
  13417. name: "Megamacro",
  13418. height: math.unit(50, "miles")
  13419. },
  13420. {
  13421. name: "Canon Height",
  13422. height: math.unit(200, "AU")
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(6, "feet"),
  13431. weight: math.unit(72, "kg"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/sleekit/front.svg",
  13435. extra: 4693 / 4487,
  13436. bottom: 0.012
  13437. }
  13438. },
  13439. },
  13440. [
  13441. {
  13442. name: "Minimum Height",
  13443. height: math.unit(10, "meters")
  13444. },
  13445. {
  13446. name: "Smaller",
  13447. height: math.unit(25, "meters")
  13448. },
  13449. {
  13450. name: "Larger",
  13451. height: math.unit(38, "meters"),
  13452. default: true
  13453. },
  13454. {
  13455. name: "Maximum height",
  13456. height: math.unit(100, "meters")
  13457. },
  13458. ]
  13459. ))
  13460. characterMakers.push(() => makeCharacter(
  13461. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13462. {
  13463. front: {
  13464. height: math.unit(6, "feet"),
  13465. weight: math.unit(150, "lb"),
  13466. name: "Front",
  13467. image: {
  13468. source: "./media/characters/nillia/front.svg",
  13469. extra: 2195 / 2037,
  13470. bottom: 0.005
  13471. }
  13472. },
  13473. back: {
  13474. height: math.unit(6, "feet"),
  13475. weight: math.unit(150, "lb"),
  13476. name: "Back",
  13477. image: {
  13478. source: "./media/characters/nillia/back.svg",
  13479. extra: 2195 / 2037,
  13480. bottom: 0.005
  13481. }
  13482. },
  13483. },
  13484. [
  13485. {
  13486. name: "Canon Height",
  13487. height: math.unit(489, "feet"),
  13488. default: true
  13489. }
  13490. ]
  13491. ))
  13492. characterMakers.push(() => makeCharacter(
  13493. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13494. {
  13495. front: {
  13496. height: math.unit(6, "feet"),
  13497. weight: math.unit(150, "lb"),
  13498. name: "Front",
  13499. image: {
  13500. source: "./media/characters/mesmyriza/front.svg",
  13501. extra: 2067 / 1784,
  13502. bottom: 0.035
  13503. }
  13504. },
  13505. foot: {
  13506. height: math.unit(6 / (250 / 35), "feet"),
  13507. name: "Foot",
  13508. image: {
  13509. source: "./media/characters/mesmyriza/foot.svg"
  13510. }
  13511. },
  13512. },
  13513. [
  13514. {
  13515. name: "Macro",
  13516. height: math.unit(457, "meters"),
  13517. default: true
  13518. },
  13519. {
  13520. name: "Megamacro",
  13521. height: math.unit(8, "megameters")
  13522. },
  13523. ]
  13524. ))
  13525. characterMakers.push(() => makeCharacter(
  13526. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13527. {
  13528. front: {
  13529. height: math.unit(6, "feet"),
  13530. weight: math.unit(250, "lb"),
  13531. name: "Front",
  13532. image: {
  13533. source: "./media/characters/saudade/front.svg",
  13534. extra: 1172 / 1139,
  13535. bottom: 0.035
  13536. }
  13537. },
  13538. },
  13539. [
  13540. {
  13541. name: "Micro",
  13542. height: math.unit(3, "inches")
  13543. },
  13544. {
  13545. name: "Normal",
  13546. height: math.unit(6, "feet"),
  13547. default: true
  13548. },
  13549. {
  13550. name: "Macro",
  13551. height: math.unit(50, "feet")
  13552. },
  13553. {
  13554. name: "Megamacro",
  13555. height: math.unit(2800, "feet")
  13556. },
  13557. ]
  13558. ))
  13559. characterMakers.push(() => makeCharacter(
  13560. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13561. {
  13562. front: {
  13563. height: math.unit(5 + 4 / 12, "feet"),
  13564. weight: math.unit(100, "lb"),
  13565. name: "Front",
  13566. image: {
  13567. source: "./media/characters/keireer/front.svg",
  13568. extra: 716 / 666,
  13569. bottom: 0.05
  13570. }
  13571. },
  13572. },
  13573. [
  13574. {
  13575. name: "Normal",
  13576. height: math.unit(5 + 4 / 12, "feet"),
  13577. default: true
  13578. },
  13579. ]
  13580. ))
  13581. characterMakers.push(() => makeCharacter(
  13582. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13583. {
  13584. front: {
  13585. height: math.unit(6, "feet"),
  13586. weight: math.unit(90, "kg"),
  13587. name: "Front",
  13588. image: {
  13589. source: "./media/characters/mirja/front.svg",
  13590. extra: 1789 / 1683,
  13591. bottom: 0.05
  13592. }
  13593. },
  13594. frontDressed: {
  13595. height: math.unit(6, "feet"),
  13596. weight: math.unit(90, "lb"),
  13597. name: "Front (Dressed)",
  13598. image: {
  13599. source: "./media/characters/mirja/front-dressed.svg",
  13600. extra: 1789 / 1683,
  13601. bottom: 0.05
  13602. }
  13603. },
  13604. back: {
  13605. height: math.unit(6, "feet"),
  13606. weight: math.unit(90, "lb"),
  13607. name: "Back",
  13608. image: {
  13609. source: "./media/characters/mirja/back.svg",
  13610. extra: 953 / 917,
  13611. bottom: 0.017
  13612. }
  13613. },
  13614. },
  13615. [
  13616. {
  13617. name: "\"Incognito\"",
  13618. height: math.unit(3, "meters")
  13619. },
  13620. {
  13621. name: "Strolling Size",
  13622. height: math.unit(15, "km")
  13623. },
  13624. {
  13625. name: "Larger Strolling Size",
  13626. height: math.unit(400, "km")
  13627. },
  13628. {
  13629. name: "Preferred Size",
  13630. height: math.unit(5000, "km")
  13631. },
  13632. {
  13633. name: "True Size",
  13634. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13635. default: true
  13636. },
  13637. ]
  13638. ))
  13639. characterMakers.push(() => makeCharacter(
  13640. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13641. {
  13642. front: {
  13643. height: math.unit(15, "feet"),
  13644. weight: math.unit(880, "kg"),
  13645. name: "Front",
  13646. image: {
  13647. source: "./media/characters/nightraver/front.svg",
  13648. extra: 2444 / 2160,
  13649. bottom: 0.027
  13650. }
  13651. },
  13652. back: {
  13653. height: math.unit(15, "feet"),
  13654. weight: math.unit(880, "kg"),
  13655. name: "Back",
  13656. image: {
  13657. source: "./media/characters/nightraver/back.svg",
  13658. extra: 2309 / 2180,
  13659. bottom: 0.005
  13660. }
  13661. },
  13662. sole: {
  13663. height: math.unit(2.878, "feet"),
  13664. name: "Sole",
  13665. image: {
  13666. source: "./media/characters/nightraver/sole.svg"
  13667. }
  13668. },
  13669. foot: {
  13670. height: math.unit(2.285, "feet"),
  13671. name: "Foot",
  13672. image: {
  13673. source: "./media/characters/nightraver/foot.svg"
  13674. }
  13675. },
  13676. maw: {
  13677. height: math.unit(2.67, "feet"),
  13678. name: "Maw",
  13679. image: {
  13680. source: "./media/characters/nightraver/maw.svg"
  13681. }
  13682. },
  13683. },
  13684. [
  13685. {
  13686. name: "Micro",
  13687. height: math.unit(1, "cm")
  13688. },
  13689. {
  13690. name: "Normal",
  13691. height: math.unit(15, "feet"),
  13692. default: true
  13693. },
  13694. {
  13695. name: "Macro",
  13696. height: math.unit(300, "feet")
  13697. },
  13698. {
  13699. name: "Megamacro",
  13700. height: math.unit(300, "miles")
  13701. },
  13702. {
  13703. name: "Gigamacro",
  13704. height: math.unit(10000, "miles")
  13705. },
  13706. ]
  13707. ))
  13708. characterMakers.push(() => makeCharacter(
  13709. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13710. {
  13711. side: {
  13712. height: math.unit(2, "inches"),
  13713. weight: math.unit(5, "grams"),
  13714. name: "Side",
  13715. image: {
  13716. source: "./media/characters/arc/side.svg"
  13717. }
  13718. },
  13719. },
  13720. [
  13721. {
  13722. name: "Micro",
  13723. height: math.unit(2, "inches"),
  13724. default: true
  13725. },
  13726. ]
  13727. ))
  13728. characterMakers.push(() => makeCharacter(
  13729. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13730. {
  13731. front: {
  13732. height: math.unit(1.1938, "meters"),
  13733. weight: math.unit(54, "kg"),
  13734. name: "Front",
  13735. image: {
  13736. source: "./media/characters/nebula-shahar/front.svg",
  13737. extra: 1642 / 1436,
  13738. bottom: 0.06
  13739. }
  13740. },
  13741. },
  13742. [
  13743. {
  13744. name: "Megamicro",
  13745. height: math.unit(0.3, "mm")
  13746. },
  13747. {
  13748. name: "Micro",
  13749. height: math.unit(3, "cm")
  13750. },
  13751. {
  13752. name: "Normal",
  13753. height: math.unit(138, "cm"),
  13754. default: true
  13755. },
  13756. {
  13757. name: "Macro",
  13758. height: math.unit(30, "m")
  13759. },
  13760. ]
  13761. ))
  13762. characterMakers.push(() => makeCharacter(
  13763. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13764. {
  13765. front: {
  13766. height: math.unit(5.24, "feet"),
  13767. weight: math.unit(150, "lb"),
  13768. name: "Front",
  13769. image: {
  13770. source: "./media/characters/shayla/front.svg",
  13771. extra: 1512 / 1414,
  13772. bottom: 0.01
  13773. }
  13774. },
  13775. back: {
  13776. height: math.unit(5.24, "feet"),
  13777. weight: math.unit(150, "lb"),
  13778. name: "Back",
  13779. image: {
  13780. source: "./media/characters/shayla/back.svg",
  13781. extra: 1512 / 1414
  13782. }
  13783. },
  13784. hand: {
  13785. height: math.unit(0.7781496062992126, "feet"),
  13786. name: "Hand",
  13787. image: {
  13788. source: "./media/characters/shayla/hand.svg"
  13789. }
  13790. },
  13791. foot: {
  13792. height: math.unit(1.4206036745406823, "feet"),
  13793. name: "Foot",
  13794. image: {
  13795. source: "./media/characters/shayla/foot.svg"
  13796. }
  13797. },
  13798. },
  13799. [
  13800. {
  13801. name: "Micro",
  13802. height: math.unit(0.32, "feet")
  13803. },
  13804. {
  13805. name: "Normal",
  13806. height: math.unit(5.24, "feet"),
  13807. default: true
  13808. },
  13809. {
  13810. name: "Macro",
  13811. height: math.unit(492.12, "feet")
  13812. },
  13813. {
  13814. name: "Megamacro",
  13815. height: math.unit(186.41, "miles")
  13816. },
  13817. ]
  13818. ))
  13819. characterMakers.push(() => makeCharacter(
  13820. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13821. {
  13822. front: {
  13823. height: math.unit(2.2, "m"),
  13824. weight: math.unit(120, "kg"),
  13825. name: "Front",
  13826. image: {
  13827. source: "./media/characters/pia-jr/front.svg",
  13828. extra: 1000 / 970,
  13829. bottom: 0.035
  13830. }
  13831. },
  13832. hand: {
  13833. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13834. name: "Hand",
  13835. image: {
  13836. source: "./media/characters/pia-jr/hand.svg"
  13837. }
  13838. },
  13839. paw: {
  13840. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13841. name: "Paw",
  13842. image: {
  13843. source: "./media/characters/pia-jr/paw.svg"
  13844. }
  13845. },
  13846. },
  13847. [
  13848. {
  13849. name: "Micro",
  13850. height: math.unit(1.2, "cm")
  13851. },
  13852. {
  13853. name: "Normal",
  13854. height: math.unit(2.2, "m"),
  13855. default: true
  13856. },
  13857. {
  13858. name: "Macro",
  13859. height: math.unit(180, "m")
  13860. },
  13861. {
  13862. name: "Megamacro",
  13863. height: math.unit(420, "km")
  13864. },
  13865. ]
  13866. ))
  13867. characterMakers.push(() => makeCharacter(
  13868. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13869. {
  13870. front: {
  13871. height: math.unit(2, "m"),
  13872. weight: math.unit(115, "kg"),
  13873. name: "Front",
  13874. image: {
  13875. source: "./media/characters/pia-sr/front.svg",
  13876. extra: 760 / 730,
  13877. bottom: 0.015
  13878. }
  13879. },
  13880. back: {
  13881. height: math.unit(2, "m"),
  13882. weight: math.unit(115, "kg"),
  13883. name: "Back",
  13884. image: {
  13885. source: "./media/characters/pia-sr/back.svg",
  13886. extra: 760 / 730,
  13887. bottom: 0.01
  13888. }
  13889. },
  13890. hand: {
  13891. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13892. name: "Hand",
  13893. image: {
  13894. source: "./media/characters/pia-sr/hand.svg"
  13895. }
  13896. },
  13897. foot: {
  13898. height: math.unit(1.83, "feet"),
  13899. name: "Foot",
  13900. image: {
  13901. source: "./media/characters/pia-sr/foot.svg"
  13902. }
  13903. },
  13904. },
  13905. [
  13906. {
  13907. name: "Micro",
  13908. height: math.unit(88, "mm")
  13909. },
  13910. {
  13911. name: "Normal",
  13912. height: math.unit(2, "m"),
  13913. default: true
  13914. },
  13915. {
  13916. name: "Macro",
  13917. height: math.unit(200, "m")
  13918. },
  13919. {
  13920. name: "Megamacro",
  13921. height: math.unit(420, "km")
  13922. },
  13923. ]
  13924. ))
  13925. characterMakers.push(() => makeCharacter(
  13926. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13927. {
  13928. front: {
  13929. height: math.unit(8 + 2 / 12, "feet"),
  13930. weight: math.unit(300, "lb"),
  13931. name: "Front",
  13932. image: {
  13933. source: "./media/characters/kibibyte/front.svg",
  13934. extra: 2221 / 2098,
  13935. bottom: 0.04
  13936. }
  13937. },
  13938. },
  13939. [
  13940. {
  13941. name: "Normal",
  13942. height: math.unit(8 + 2 / 12, "feet"),
  13943. default: true
  13944. },
  13945. {
  13946. name: "Socialable Macro",
  13947. height: math.unit(50, "feet")
  13948. },
  13949. {
  13950. name: "Macro",
  13951. height: math.unit(300, "feet")
  13952. },
  13953. {
  13954. name: "Megamacro",
  13955. height: math.unit(500, "miles")
  13956. },
  13957. ]
  13958. ))
  13959. characterMakers.push(() => makeCharacter(
  13960. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13961. {
  13962. front: {
  13963. height: math.unit(6, "feet"),
  13964. weight: math.unit(150, "lb"),
  13965. name: "Front",
  13966. image: {
  13967. source: "./media/characters/felix/front.svg",
  13968. extra: 762 / 722,
  13969. bottom: 0.02
  13970. }
  13971. },
  13972. frontClothed: {
  13973. height: math.unit(6, "feet"),
  13974. weight: math.unit(150, "lb"),
  13975. name: "Front (Clothed)",
  13976. image: {
  13977. source: "./media/characters/felix/front-clothed.svg",
  13978. extra: 762 / 722,
  13979. bottom: 0.02
  13980. }
  13981. },
  13982. },
  13983. [
  13984. {
  13985. name: "Normal",
  13986. height: math.unit(6 + 8 / 12, "feet"),
  13987. default: true
  13988. },
  13989. {
  13990. name: "Macro",
  13991. height: math.unit(2600, "feet")
  13992. },
  13993. {
  13994. name: "Megamacro",
  13995. height: math.unit(450, "miles")
  13996. },
  13997. ]
  13998. ))
  13999. characterMakers.push(() => makeCharacter(
  14000. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14001. {
  14002. front: {
  14003. height: math.unit(6 + 1 / 12, "feet"),
  14004. weight: math.unit(250, "lb"),
  14005. name: "Front",
  14006. image: {
  14007. source: "./media/characters/tobo/front.svg",
  14008. extra: 608 / 586,
  14009. bottom: 0.023
  14010. }
  14011. },
  14012. back: {
  14013. height: math.unit(6 + 1 / 12, "feet"),
  14014. weight: math.unit(250, "lb"),
  14015. name: "Back",
  14016. image: {
  14017. source: "./media/characters/tobo/back.svg",
  14018. extra: 608 / 586
  14019. }
  14020. },
  14021. },
  14022. [
  14023. {
  14024. name: "Nano",
  14025. height: math.unit(2, "nm")
  14026. },
  14027. {
  14028. name: "Megamicro",
  14029. height: math.unit(0.1, "mm")
  14030. },
  14031. {
  14032. name: "Micro",
  14033. height: math.unit(1, "inch"),
  14034. default: true
  14035. },
  14036. {
  14037. name: "Human-sized",
  14038. height: math.unit(6 + 1 / 12, "feet")
  14039. },
  14040. {
  14041. name: "Macro",
  14042. height: math.unit(250, "feet")
  14043. },
  14044. {
  14045. name: "Megamacro",
  14046. height: math.unit(75, "miles")
  14047. },
  14048. {
  14049. name: "Texas-sized",
  14050. height: math.unit(750, "miles")
  14051. },
  14052. {
  14053. name: "Teramacro",
  14054. height: math.unit(50000, "miles")
  14055. },
  14056. ]
  14057. ))
  14058. characterMakers.push(() => makeCharacter(
  14059. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14060. {
  14061. front: {
  14062. height: math.unit(6, "feet"),
  14063. weight: math.unit(269, "lb"),
  14064. name: "Front",
  14065. image: {
  14066. source: "./media/characters/danny-kapowsky/front.svg",
  14067. extra: 766 / 736,
  14068. bottom: 0.044
  14069. }
  14070. },
  14071. back: {
  14072. height: math.unit(6, "feet"),
  14073. weight: math.unit(269, "lb"),
  14074. name: "Back",
  14075. image: {
  14076. source: "./media/characters/danny-kapowsky/back.svg",
  14077. extra: 797 / 760,
  14078. bottom: 0.025
  14079. }
  14080. },
  14081. },
  14082. [
  14083. {
  14084. name: "Macro",
  14085. height: math.unit(150, "feet"),
  14086. default: true
  14087. },
  14088. {
  14089. name: "Macro+",
  14090. height: math.unit(200, "feet")
  14091. },
  14092. {
  14093. name: "Macro++",
  14094. height: math.unit(300, "feet")
  14095. },
  14096. {
  14097. name: "Macro+++",
  14098. height: math.unit(400, "feet")
  14099. },
  14100. ]
  14101. ))
  14102. characterMakers.push(() => makeCharacter(
  14103. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14104. {
  14105. side: {
  14106. height: math.unit(6, "feet"),
  14107. weight: math.unit(170, "lb"),
  14108. name: "Side",
  14109. image: {
  14110. source: "./media/characters/finn/side.svg",
  14111. extra: 1953 / 1807,
  14112. bottom: 0.057
  14113. }
  14114. },
  14115. },
  14116. [
  14117. {
  14118. name: "Megamacro",
  14119. height: math.unit(14445, "feet"),
  14120. default: true
  14121. },
  14122. ]
  14123. ))
  14124. characterMakers.push(() => makeCharacter(
  14125. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14126. {
  14127. front: {
  14128. height: math.unit(5 + 6 / 12, "feet"),
  14129. weight: math.unit(125, "lb"),
  14130. name: "Front",
  14131. image: {
  14132. source: "./media/characters/roy/front.svg",
  14133. extra: 1,
  14134. bottom: 0.11
  14135. }
  14136. },
  14137. },
  14138. [
  14139. {
  14140. name: "Micro",
  14141. height: math.unit(3, "inches"),
  14142. default: true
  14143. },
  14144. {
  14145. name: "Normal",
  14146. height: math.unit(5 + 6 / 12, "feet")
  14147. },
  14148. {
  14149. name: "Lesser Macro",
  14150. height: math.unit(60, "feet")
  14151. },
  14152. {
  14153. name: "Greater Macro",
  14154. height: math.unit(120, "feet")
  14155. },
  14156. ]
  14157. ))
  14158. characterMakers.push(() => makeCharacter(
  14159. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14160. {
  14161. front: {
  14162. height: math.unit(6, "feet"),
  14163. weight: math.unit(100, "lb"),
  14164. name: "Front",
  14165. image: {
  14166. source: "./media/characters/aevsivs/front.svg",
  14167. extra: 1,
  14168. bottom: 0.03
  14169. }
  14170. },
  14171. back: {
  14172. height: math.unit(6, "feet"),
  14173. weight: math.unit(100, "lb"),
  14174. name: "Back",
  14175. image: {
  14176. source: "./media/characters/aevsivs/back.svg"
  14177. }
  14178. },
  14179. },
  14180. [
  14181. {
  14182. name: "Micro",
  14183. height: math.unit(2, "inches"),
  14184. default: true
  14185. },
  14186. {
  14187. name: "Normal",
  14188. height: math.unit(5, "feet")
  14189. },
  14190. ]
  14191. ))
  14192. characterMakers.push(() => makeCharacter(
  14193. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14194. {
  14195. front: {
  14196. height: math.unit(5 + 7 / 12, "feet"),
  14197. weight: math.unit(159, "lb"),
  14198. name: "Front",
  14199. image: {
  14200. source: "./media/characters/hildegard/front.svg",
  14201. extra: 289 / 269,
  14202. bottom: 7.63 / 297.8
  14203. }
  14204. },
  14205. back: {
  14206. height: math.unit(5 + 7 / 12, "feet"),
  14207. weight: math.unit(159, "lb"),
  14208. name: "Back",
  14209. image: {
  14210. source: "./media/characters/hildegard/back.svg",
  14211. extra: 280 / 260,
  14212. bottom: 2.3 / 282
  14213. }
  14214. },
  14215. },
  14216. [
  14217. {
  14218. name: "Normal",
  14219. height: math.unit(5 + 7 / 12, "feet"),
  14220. default: true
  14221. },
  14222. ]
  14223. ))
  14224. characterMakers.push(() => makeCharacter(
  14225. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14226. {
  14227. bernard: {
  14228. height: math.unit(2 + 7 / 12, "feet"),
  14229. weight: math.unit(66, "lb"),
  14230. name: "Bernard",
  14231. rename: true,
  14232. image: {
  14233. source: "./media/characters/bernard-wilder/bernard.svg",
  14234. extra: 192 / 128,
  14235. bottom: 0.05
  14236. }
  14237. },
  14238. wilder: {
  14239. height: math.unit(5 + 8 / 12, "feet"),
  14240. weight: math.unit(143, "lb"),
  14241. name: "Wilder",
  14242. rename: true,
  14243. image: {
  14244. source: "./media/characters/bernard-wilder/wilder.svg",
  14245. extra: 361 / 312,
  14246. bottom: 0.02
  14247. }
  14248. },
  14249. },
  14250. [
  14251. {
  14252. name: "Normal",
  14253. height: math.unit(2 + 7 / 12, "feet"),
  14254. default: true
  14255. },
  14256. ]
  14257. ))
  14258. characterMakers.push(() => makeCharacter(
  14259. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14260. {
  14261. anthro: {
  14262. height: math.unit(6 + 1 / 12, "feet"),
  14263. weight: math.unit(155, "lb"),
  14264. name: "Anthro",
  14265. image: {
  14266. source: "./media/characters/hearth/anthro.svg",
  14267. extra: 260 / 250,
  14268. bottom: 0.02
  14269. }
  14270. },
  14271. feral: {
  14272. height: math.unit(3.78, "feet"),
  14273. weight: math.unit(35, "kg"),
  14274. name: "Feral",
  14275. image: {
  14276. source: "./media/characters/hearth/feral.svg",
  14277. extra: 153 / 135,
  14278. bottom: 0.03
  14279. }
  14280. },
  14281. },
  14282. [
  14283. {
  14284. name: "Normal",
  14285. height: math.unit(6 + 1 / 12, "feet"),
  14286. default: true
  14287. },
  14288. ]
  14289. ))
  14290. characterMakers.push(() => makeCharacter(
  14291. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14292. {
  14293. front: {
  14294. height: math.unit(6, "feet"),
  14295. weight: math.unit(182, "lb"),
  14296. name: "Front",
  14297. image: {
  14298. source: "./media/characters/ingrid/front.svg",
  14299. extra: 294 / 268,
  14300. bottom: 0.027
  14301. }
  14302. },
  14303. },
  14304. [
  14305. {
  14306. name: "Normal",
  14307. height: math.unit(6, "feet"),
  14308. default: true
  14309. },
  14310. ]
  14311. ))
  14312. characterMakers.push(() => makeCharacter(
  14313. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14314. {
  14315. eevee: {
  14316. height: math.unit(2 + 10 / 12, "feet"),
  14317. weight: math.unit(86, "lb"),
  14318. name: "Malgam",
  14319. image: {
  14320. source: "./media/characters/malgam/eevee.svg",
  14321. extra: 218 / 180,
  14322. bottom: 0.2
  14323. }
  14324. },
  14325. sylveon: {
  14326. height: math.unit(4, "feet"),
  14327. weight: math.unit(101, "lb"),
  14328. name: "Future Malgam",
  14329. rename: true,
  14330. image: {
  14331. source: "./media/characters/malgam/sylveon.svg",
  14332. extra: 371 / 325,
  14333. bottom: 0.015
  14334. }
  14335. },
  14336. gigantamax: {
  14337. height: math.unit(50, "feet"),
  14338. name: "Gigantamax Malgam",
  14339. rename: true,
  14340. image: {
  14341. source: "./media/characters/malgam/gigantamax.svg"
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Normal",
  14348. height: math.unit(2 + 10 / 12, "feet"),
  14349. default: true
  14350. },
  14351. ]
  14352. ))
  14353. characterMakers.push(() => makeCharacter(
  14354. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14355. {
  14356. front: {
  14357. height: math.unit(5 + 11 / 12, "feet"),
  14358. weight: math.unit(188, "lb"),
  14359. name: "Front",
  14360. image: {
  14361. source: "./media/characters/fleur/front.svg",
  14362. extra: 309 / 283,
  14363. bottom: 0.007
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Normal",
  14370. height: math.unit(5 + 11 / 12, "feet"),
  14371. default: true
  14372. },
  14373. ]
  14374. ))
  14375. characterMakers.push(() => makeCharacter(
  14376. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14377. {
  14378. front: {
  14379. height: math.unit(5 + 4 / 12, "feet"),
  14380. weight: math.unit(122, "lb"),
  14381. name: "Front",
  14382. image: {
  14383. source: "./media/characters/jude/front.svg",
  14384. extra: 288 / 273,
  14385. bottom: 0.03
  14386. }
  14387. },
  14388. },
  14389. [
  14390. {
  14391. name: "Normal",
  14392. height: math.unit(5 + 4 / 12, "feet"),
  14393. default: true
  14394. },
  14395. ]
  14396. ))
  14397. characterMakers.push(() => makeCharacter(
  14398. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14399. {
  14400. front: {
  14401. height: math.unit(5 + 11 / 12, "feet"),
  14402. weight: math.unit(190, "lb"),
  14403. name: "Front",
  14404. image: {
  14405. source: "./media/characters/seara/front.svg",
  14406. extra: 1,
  14407. bottom: 0.05
  14408. }
  14409. },
  14410. },
  14411. [
  14412. {
  14413. name: "Normal",
  14414. height: math.unit(5 + 11 / 12, "feet"),
  14415. default: true
  14416. },
  14417. ]
  14418. ))
  14419. characterMakers.push(() => makeCharacter(
  14420. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14421. {
  14422. front: {
  14423. height: math.unit(16 + 5 / 12, "feet"),
  14424. weight: math.unit(524, "lb"),
  14425. name: "Front",
  14426. image: {
  14427. source: "./media/characters/caspian/front.svg",
  14428. extra: 1,
  14429. bottom: 0.04
  14430. }
  14431. },
  14432. },
  14433. [
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(16 + 5 / 12, "feet"),
  14437. default: true
  14438. },
  14439. ]
  14440. ))
  14441. characterMakers.push(() => makeCharacter(
  14442. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14443. {
  14444. front: {
  14445. height: math.unit(5 + 7 / 12, "feet"),
  14446. weight: math.unit(170, "lb"),
  14447. name: "Front",
  14448. image: {
  14449. source: "./media/characters/mika/front.svg",
  14450. extra: 1,
  14451. bottom: 0.016
  14452. }
  14453. },
  14454. },
  14455. [
  14456. {
  14457. name: "Normal",
  14458. height: math.unit(5 + 7 / 12, "feet"),
  14459. default: true
  14460. },
  14461. ]
  14462. ))
  14463. characterMakers.push(() => makeCharacter(
  14464. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14465. {
  14466. front: {
  14467. height: math.unit(6 + 2 / 12, "feet"),
  14468. weight: math.unit(268, "lb"),
  14469. name: "Front",
  14470. image: {
  14471. source: "./media/characters/sol/front.svg",
  14472. extra: 247 / 231,
  14473. bottom: 0.05
  14474. }
  14475. },
  14476. },
  14477. [
  14478. {
  14479. name: "Normal",
  14480. height: math.unit(6 + 2 / 12, "feet"),
  14481. default: true
  14482. },
  14483. ]
  14484. ))
  14485. characterMakers.push(() => makeCharacter(
  14486. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14487. {
  14488. buizel: {
  14489. height: math.unit(2 + 5 / 12, "feet"),
  14490. weight: math.unit(87, "lb"),
  14491. name: "Buizel",
  14492. image: {
  14493. source: "./media/characters/umiko/buizel.svg",
  14494. extra: 172 / 157,
  14495. bottom: 0.01
  14496. }
  14497. },
  14498. floatzel: {
  14499. height: math.unit(5 + 9 / 12, "feet"),
  14500. weight: math.unit(250, "lb"),
  14501. name: "Floatzel",
  14502. image: {
  14503. source: "./media/characters/umiko/floatzel.svg",
  14504. extra: 262 / 248
  14505. }
  14506. },
  14507. },
  14508. [
  14509. {
  14510. name: "Normal",
  14511. height: math.unit(2 + 5 / 12, "feet"),
  14512. default: true
  14513. },
  14514. ]
  14515. ))
  14516. characterMakers.push(() => makeCharacter(
  14517. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14518. {
  14519. front: {
  14520. height: math.unit(6 + 2 / 12, "feet"),
  14521. weight: math.unit(146, "lb"),
  14522. name: "Front",
  14523. image: {
  14524. source: "./media/characters/iliac/front.svg",
  14525. extra: 389 / 365,
  14526. bottom: 0.035
  14527. }
  14528. },
  14529. },
  14530. [
  14531. {
  14532. name: "Normal",
  14533. height: math.unit(6 + 2 / 12, "feet"),
  14534. default: true
  14535. },
  14536. ]
  14537. ))
  14538. characterMakers.push(() => makeCharacter(
  14539. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14540. {
  14541. front: {
  14542. height: math.unit(6, "feet"),
  14543. weight: math.unit(170, "lb"),
  14544. name: "Front",
  14545. image: {
  14546. source: "./media/characters/topaz/front.svg",
  14547. extra: 317 / 303,
  14548. bottom: 0.055
  14549. }
  14550. },
  14551. },
  14552. [
  14553. {
  14554. name: "Normal",
  14555. height: math.unit(6, "feet"),
  14556. default: true
  14557. },
  14558. ]
  14559. ))
  14560. characterMakers.push(() => makeCharacter(
  14561. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14562. {
  14563. front: {
  14564. height: math.unit(5 + 11 / 12, "feet"),
  14565. weight: math.unit(144, "lb"),
  14566. name: "Front",
  14567. image: {
  14568. source: "./media/characters/gabriel/front.svg",
  14569. extra: 285 / 262,
  14570. bottom: 0.004
  14571. }
  14572. },
  14573. },
  14574. [
  14575. {
  14576. name: "Normal",
  14577. height: math.unit(5 + 11 / 12, "feet"),
  14578. default: true
  14579. },
  14580. ]
  14581. ))
  14582. characterMakers.push(() => makeCharacter(
  14583. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14584. {
  14585. side: {
  14586. height: math.unit(6 + 5 / 12, "feet"),
  14587. weight: math.unit(300, "lb"),
  14588. name: "Side",
  14589. image: {
  14590. source: "./media/characters/tempest-suicune/side.svg",
  14591. extra: 195 / 154,
  14592. bottom: 0.04
  14593. }
  14594. },
  14595. },
  14596. [
  14597. {
  14598. name: "Normal",
  14599. height: math.unit(6 + 5 / 12, "feet"),
  14600. default: true
  14601. },
  14602. ]
  14603. ))
  14604. characterMakers.push(() => makeCharacter(
  14605. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14606. {
  14607. front: {
  14608. height: math.unit(7 + 2 / 12, "feet"),
  14609. weight: math.unit(322, "lb"),
  14610. name: "Front",
  14611. image: {
  14612. source: "./media/characters/vulcan/front.svg",
  14613. extra: 154 / 147,
  14614. bottom: 0.04
  14615. }
  14616. },
  14617. },
  14618. [
  14619. {
  14620. name: "Normal",
  14621. height: math.unit(7 + 2 / 12, "feet"),
  14622. default: true
  14623. },
  14624. ]
  14625. ))
  14626. characterMakers.push(() => makeCharacter(
  14627. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14628. {
  14629. front: {
  14630. height: math.unit(5 + 10 / 12, "feet"),
  14631. weight: math.unit(264, "lb"),
  14632. name: "Front",
  14633. image: {
  14634. source: "./media/characters/gault/front.svg",
  14635. extra: 161 / 140,
  14636. bottom: 0.028
  14637. }
  14638. },
  14639. },
  14640. [
  14641. {
  14642. name: "Normal",
  14643. height: math.unit(5 + 10 / 12, "feet"),
  14644. default: true
  14645. },
  14646. ]
  14647. ))
  14648. characterMakers.push(() => makeCharacter(
  14649. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14650. {
  14651. front: {
  14652. height: math.unit(6, "feet"),
  14653. weight: math.unit(150, "lb"),
  14654. name: "Front",
  14655. image: {
  14656. source: "./media/characters/shard/front.svg",
  14657. extra: 273 / 238,
  14658. bottom: 0.02
  14659. }
  14660. },
  14661. },
  14662. [
  14663. {
  14664. name: "Normal",
  14665. height: math.unit(3 + 6 / 12, "feet"),
  14666. default: true
  14667. },
  14668. ]
  14669. ))
  14670. characterMakers.push(() => makeCharacter(
  14671. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14672. {
  14673. front: {
  14674. height: math.unit(5 + 11 / 12, "feet"),
  14675. weight: math.unit(146, "lb"),
  14676. name: "Front",
  14677. image: {
  14678. source: "./media/characters/ashe/front.svg",
  14679. extra: 400 / 373,
  14680. bottom: 0.01
  14681. }
  14682. },
  14683. },
  14684. [
  14685. {
  14686. name: "Normal",
  14687. height: math.unit(5 + 11 / 12, "feet"),
  14688. default: true
  14689. },
  14690. ]
  14691. ))
  14692. characterMakers.push(() => makeCharacter(
  14693. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14694. {
  14695. front: {
  14696. height: math.unit(5 + 5 / 12, "feet"),
  14697. weight: math.unit(135, "lb"),
  14698. name: "Front",
  14699. image: {
  14700. source: "./media/characters/beatrix/front.svg",
  14701. extra: 392 / 379,
  14702. bottom: 0.01
  14703. }
  14704. },
  14705. },
  14706. [
  14707. {
  14708. name: "Normal",
  14709. height: math.unit(6, "feet"),
  14710. default: true
  14711. },
  14712. ]
  14713. ))
  14714. characterMakers.push(() => makeCharacter(
  14715. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14716. {
  14717. front: {
  14718. height: math.unit(6, "feet"),
  14719. weight: math.unit(150, "lb"),
  14720. name: "Front",
  14721. image: {
  14722. source: "./media/characters/ignatius/front.svg",
  14723. extra: 245 / 222,
  14724. bottom: 0.01
  14725. }
  14726. },
  14727. },
  14728. [
  14729. {
  14730. name: "Normal",
  14731. height: math.unit(5 + 5 / 12, "feet"),
  14732. default: true
  14733. },
  14734. ]
  14735. ))
  14736. characterMakers.push(() => makeCharacter(
  14737. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14738. {
  14739. front: {
  14740. height: math.unit(6 + 2 / 12, "feet"),
  14741. weight: math.unit(138, "lb"),
  14742. name: "Front",
  14743. image: {
  14744. source: "./media/characters/mei-li/front.svg",
  14745. extra: 237 / 229,
  14746. bottom: 0.03
  14747. }
  14748. },
  14749. },
  14750. [
  14751. {
  14752. name: "Normal",
  14753. height: math.unit(6 + 2 / 12, "feet"),
  14754. default: true
  14755. },
  14756. ]
  14757. ))
  14758. characterMakers.push(() => makeCharacter(
  14759. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14760. {
  14761. front: {
  14762. height: math.unit(2 + 4 / 12, "feet"),
  14763. weight: math.unit(62, "lb"),
  14764. name: "Front",
  14765. image: {
  14766. source: "./media/characters/puru/front.svg",
  14767. extra: 206 / 149,
  14768. bottom: 0.06
  14769. }
  14770. },
  14771. },
  14772. [
  14773. {
  14774. name: "Normal",
  14775. height: math.unit(2 + 4 / 12, "feet"),
  14776. default: true
  14777. },
  14778. ]
  14779. ))
  14780. characterMakers.push(() => makeCharacter(
  14781. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14782. {
  14783. taur: {
  14784. height: math.unit(11, "feet"),
  14785. weight: math.unit(500, "lb"),
  14786. name: "Taur",
  14787. image: {
  14788. source: "./media/characters/kee/taur.svg",
  14789. extra: 1,
  14790. bottom: 0.04
  14791. }
  14792. },
  14793. },
  14794. [
  14795. {
  14796. name: "Normal",
  14797. height: math.unit(11, "feet"),
  14798. default: true
  14799. },
  14800. ]
  14801. ))
  14802. characterMakers.push(() => makeCharacter(
  14803. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14804. {
  14805. anthro: {
  14806. height: math.unit(7, "feet"),
  14807. weight: math.unit(190, "lb"),
  14808. name: "Anthro",
  14809. image: {
  14810. source: "./media/characters/cobalt-dracha/anthro.svg",
  14811. extra: 231 / 225,
  14812. bottom: 0.04
  14813. }
  14814. },
  14815. feral: {
  14816. height: math.unit(9 + 7 / 12, "feet"),
  14817. weight: math.unit(294, "lb"),
  14818. name: "Feral",
  14819. image: {
  14820. source: "./media/characters/cobalt-dracha/feral.svg",
  14821. extra: 692 / 633,
  14822. bottom: 0.05
  14823. }
  14824. },
  14825. },
  14826. [
  14827. {
  14828. name: "Normal",
  14829. height: math.unit(7, "feet"),
  14830. default: true
  14831. },
  14832. ]
  14833. ))
  14834. characterMakers.push(() => makeCharacter(
  14835. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14836. {
  14837. fallen: {
  14838. height: math.unit(11 + 8 / 12, "feet"),
  14839. weight: math.unit(485, "lb"),
  14840. name: "Java (Fallen)",
  14841. rename: true,
  14842. image: {
  14843. source: "./media/characters/java/fallen.svg",
  14844. extra: 226 / 208,
  14845. bottom: 0.005
  14846. }
  14847. },
  14848. godkin: {
  14849. height: math.unit(10 + 6 / 12, "feet"),
  14850. weight: math.unit(328, "lb"),
  14851. name: "Java (Godkin)",
  14852. rename: true,
  14853. image: {
  14854. source: "./media/characters/java/godkin.svg",
  14855. extra: 270 / 262,
  14856. bottom: 0.02
  14857. }
  14858. },
  14859. },
  14860. [
  14861. {
  14862. name: "Normal",
  14863. height: math.unit(11 + 8 / 12, "feet"),
  14864. default: true
  14865. },
  14866. ]
  14867. ))
  14868. characterMakers.push(() => makeCharacter(
  14869. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14870. {
  14871. front: {
  14872. height: math.unit(7 + 8 / 12, "feet"),
  14873. weight: math.unit(320, "lb"),
  14874. name: "Front",
  14875. image: {
  14876. source: "./media/characters/skoll/front.svg",
  14877. extra: 232 / 220,
  14878. bottom: 0.02
  14879. }
  14880. },
  14881. },
  14882. [
  14883. {
  14884. name: "Normal",
  14885. height: math.unit(7 + 8 / 12, "feet"),
  14886. default: true
  14887. },
  14888. ]
  14889. ))
  14890. characterMakers.push(() => makeCharacter(
  14891. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14892. {
  14893. front: {
  14894. height: math.unit(5 + 9 / 12, "feet"),
  14895. weight: math.unit(170, "lb"),
  14896. name: "Front",
  14897. image: {
  14898. source: "./media/characters/purna/front.svg",
  14899. extra: 239 / 229,
  14900. bottom: 0.01
  14901. }
  14902. },
  14903. },
  14904. [
  14905. {
  14906. name: "Normal",
  14907. height: math.unit(5 + 9 / 12, "feet"),
  14908. default: true
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(5 + 9 / 12, "feet"),
  14917. weight: math.unit(142, "lb"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/kuva/front.svg",
  14921. extra: 281 / 271,
  14922. bottom: 0.006
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Normal",
  14929. height: math.unit(5 + 9 / 12, "feet"),
  14930. default: true
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14936. {
  14937. anthro: {
  14938. height: math.unit(9 + 2 / 12, "feet"),
  14939. weight: math.unit(270, "lb"),
  14940. name: "Anthro",
  14941. image: {
  14942. source: "./media/characters/embra/anthro.svg",
  14943. extra: 200 / 187,
  14944. bottom: 0.02
  14945. }
  14946. },
  14947. feral: {
  14948. height: math.unit(18 + 8 / 12, "feet"),
  14949. weight: math.unit(576, "lb"),
  14950. name: "Feral",
  14951. image: {
  14952. source: "./media/characters/embra/feral.svg",
  14953. extra: 152 / 137,
  14954. bottom: 0.037
  14955. }
  14956. },
  14957. },
  14958. [
  14959. {
  14960. name: "Normal",
  14961. height: math.unit(9 + 2 / 12, "feet"),
  14962. default: true
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14968. {
  14969. anthro: {
  14970. height: math.unit(10 + 9 / 12, "feet"),
  14971. weight: math.unit(224, "lb"),
  14972. name: "Anthro",
  14973. image: {
  14974. source: "./media/characters/grottos/anthro.svg",
  14975. extra: 350 / 332,
  14976. bottom: 0.045
  14977. }
  14978. },
  14979. feral: {
  14980. height: math.unit(20 + 7 / 12, "feet"),
  14981. weight: math.unit(629, "lb"),
  14982. name: "Feral",
  14983. image: {
  14984. source: "./media/characters/grottos/feral.svg",
  14985. extra: 207 / 190,
  14986. bottom: 0.05
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Normal",
  14993. height: math.unit(10 + 9 / 12, "feet"),
  14994. default: true
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15000. {
  15001. anthro: {
  15002. height: math.unit(9 + 6 / 12, "feet"),
  15003. weight: math.unit(298, "lb"),
  15004. name: "Anthro",
  15005. image: {
  15006. source: "./media/characters/frifna/anthro.svg",
  15007. extra: 282 / 269,
  15008. bottom: 0.015
  15009. }
  15010. },
  15011. feral: {
  15012. height: math.unit(16 + 2 / 12, "feet"),
  15013. weight: math.unit(624, "lb"),
  15014. name: "Feral",
  15015. image: {
  15016. source: "./media/characters/frifna/feral.svg"
  15017. }
  15018. },
  15019. },
  15020. [
  15021. {
  15022. name: "Normal",
  15023. height: math.unit(9 + 6 / 12, "feet"),
  15024. default: true
  15025. },
  15026. ]
  15027. ))
  15028. characterMakers.push(() => makeCharacter(
  15029. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15030. {
  15031. front: {
  15032. height: math.unit(6 + 2 / 12, "feet"),
  15033. weight: math.unit(168, "lb"),
  15034. name: "Front",
  15035. image: {
  15036. source: "./media/characters/elise/front.svg",
  15037. extra: 276 / 271
  15038. }
  15039. },
  15040. },
  15041. [
  15042. {
  15043. name: "Normal",
  15044. height: math.unit(6 + 2 / 12, "feet"),
  15045. default: true
  15046. },
  15047. ]
  15048. ))
  15049. characterMakers.push(() => makeCharacter(
  15050. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15051. {
  15052. front: {
  15053. height: math.unit(5 + 10 / 12, "feet"),
  15054. weight: math.unit(210, "lb"),
  15055. name: "Front",
  15056. image: {
  15057. source: "./media/characters/glade/front.svg",
  15058. extra: 258 / 247,
  15059. bottom: 0.008
  15060. }
  15061. },
  15062. },
  15063. [
  15064. {
  15065. name: "Normal",
  15066. height: math.unit(5 + 10 / 12, "feet"),
  15067. default: true
  15068. },
  15069. ]
  15070. ))
  15071. characterMakers.push(() => makeCharacter(
  15072. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15073. {
  15074. front: {
  15075. height: math.unit(5 + 10 / 12, "feet"),
  15076. weight: math.unit(129, "lb"),
  15077. name: "Front",
  15078. image: {
  15079. source: "./media/characters/rina/front.svg",
  15080. extra: 266 / 255,
  15081. bottom: 0.005
  15082. }
  15083. },
  15084. },
  15085. [
  15086. {
  15087. name: "Normal",
  15088. height: math.unit(5 + 10 / 12, "feet"),
  15089. default: true
  15090. },
  15091. ]
  15092. ))
  15093. characterMakers.push(() => makeCharacter(
  15094. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15095. {
  15096. front: {
  15097. height: math.unit(6 + 1 / 12, "feet"),
  15098. weight: math.unit(192, "lb"),
  15099. name: "Front",
  15100. image: {
  15101. source: "./media/characters/veronica/front.svg",
  15102. extra: 319 / 309,
  15103. bottom: 0.005
  15104. }
  15105. },
  15106. },
  15107. [
  15108. {
  15109. name: "Normal",
  15110. height: math.unit(6 + 1 / 12, "feet"),
  15111. default: true
  15112. },
  15113. ]
  15114. ))
  15115. characterMakers.push(() => makeCharacter(
  15116. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15117. {
  15118. front: {
  15119. height: math.unit(9 + 3 / 12, "feet"),
  15120. weight: math.unit(1100, "lb"),
  15121. name: "Front",
  15122. image: {
  15123. source: "./media/characters/braxton/front.svg",
  15124. extra: 1057 / 984,
  15125. bottom: 0.05
  15126. }
  15127. },
  15128. },
  15129. [
  15130. {
  15131. name: "Normal",
  15132. height: math.unit(9 + 3 / 12, "feet")
  15133. },
  15134. {
  15135. name: "Giant",
  15136. height: math.unit(300, "feet"),
  15137. default: true
  15138. },
  15139. {
  15140. name: "Macro",
  15141. height: math.unit(700, "feet")
  15142. },
  15143. {
  15144. name: "Megamacro",
  15145. height: math.unit(6000, "feet")
  15146. },
  15147. ]
  15148. ))
  15149. characterMakers.push(() => makeCharacter(
  15150. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15151. {
  15152. front: {
  15153. height: math.unit(6 + 7 / 12, "feet"),
  15154. weight: math.unit(150, "lb"),
  15155. name: "Front",
  15156. image: {
  15157. source: "./media/characters/blue-feyonics/front.svg",
  15158. extra: 1403 / 1306,
  15159. bottom: 0.047
  15160. }
  15161. },
  15162. },
  15163. [
  15164. {
  15165. name: "Normal",
  15166. height: math.unit(6 + 7 / 12, "feet"),
  15167. default: true
  15168. },
  15169. ]
  15170. ))
  15171. characterMakers.push(() => makeCharacter(
  15172. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15173. {
  15174. front: {
  15175. height: math.unit(1.8, "meters"),
  15176. weight: math.unit(60, "kg"),
  15177. name: "Front",
  15178. image: {
  15179. source: "./media/characters/maxwell/front.svg",
  15180. extra: 2060 / 1873
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Micro",
  15187. height: math.unit(1, "mm")
  15188. },
  15189. {
  15190. name: "Normal",
  15191. height: math.unit(1.8, "meter"),
  15192. default: true
  15193. },
  15194. {
  15195. name: "Macro",
  15196. height: math.unit(30, "meters")
  15197. },
  15198. {
  15199. name: "Megamacro",
  15200. height: math.unit(10, "km")
  15201. },
  15202. ]
  15203. ))
  15204. characterMakers.push(() => makeCharacter(
  15205. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15206. {
  15207. front: {
  15208. height: math.unit(6, "feet"),
  15209. weight: math.unit(150, "lb"),
  15210. name: "Front",
  15211. image: {
  15212. source: "./media/characters/jack/front.svg",
  15213. extra: 1754 / 1640,
  15214. bottom: 0.01
  15215. }
  15216. },
  15217. },
  15218. [
  15219. {
  15220. name: "Normal",
  15221. height: math.unit(80000, "feet"),
  15222. default: true
  15223. },
  15224. {
  15225. name: "Max size",
  15226. height: math.unit(10, "lightyears")
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15232. {
  15233. upright: {
  15234. height: math.unit(7, "feet"),
  15235. weight: math.unit(170, "lb"),
  15236. name: "Upright",
  15237. image: {
  15238. source: "./media/characters/cafat/upright.svg",
  15239. bottom: 0.01
  15240. }
  15241. },
  15242. uprightFull: {
  15243. height: math.unit(7, "feet"),
  15244. weight: math.unit(170, "lb"),
  15245. name: "Upright (Full)",
  15246. image: {
  15247. source: "./media/characters/cafat/upright-full.svg",
  15248. bottom: 0.01
  15249. }
  15250. },
  15251. side: {
  15252. height: math.unit(5, "feet"),
  15253. weight: math.unit(150, "lb"),
  15254. name: "Side",
  15255. image: {
  15256. source: "./media/characters/cafat/side.svg"
  15257. }
  15258. },
  15259. },
  15260. [
  15261. {
  15262. name: "Small",
  15263. height: math.unit(7, "feet"),
  15264. default: true
  15265. },
  15266. {
  15267. name: "Large",
  15268. height: math.unit(15.5, "feet")
  15269. },
  15270. ]
  15271. ))
  15272. characterMakers.push(() => makeCharacter(
  15273. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15274. {
  15275. front: {
  15276. height: math.unit(6, "feet"),
  15277. weight: math.unit(150, "lb"),
  15278. name: "Front",
  15279. image: {
  15280. source: "./media/characters/verin-raharra/front.svg",
  15281. extra: 5019 / 4835,
  15282. bottom: 0.023
  15283. }
  15284. },
  15285. },
  15286. [
  15287. {
  15288. name: "Normal",
  15289. height: math.unit(7 + 5 / 12, "feet"),
  15290. default: true
  15291. },
  15292. {
  15293. name: "Upsized",
  15294. height: math.unit(20, "feet")
  15295. },
  15296. ]
  15297. ))
  15298. characterMakers.push(() => makeCharacter(
  15299. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15300. {
  15301. front: {
  15302. height: math.unit(7, "feet"),
  15303. weight: math.unit(230, "lb"),
  15304. name: "Front",
  15305. image: {
  15306. source: "./media/characters/nakata/front.svg",
  15307. extra: 1.005,
  15308. bottom: 0.01
  15309. }
  15310. },
  15311. },
  15312. [
  15313. {
  15314. name: "Normal",
  15315. height: math.unit(7, "feet"),
  15316. default: true
  15317. },
  15318. {
  15319. name: "Big",
  15320. height: math.unit(14, "feet")
  15321. },
  15322. {
  15323. name: "Macro",
  15324. height: math.unit(400, "feet")
  15325. },
  15326. ]
  15327. ))
  15328. characterMakers.push(() => makeCharacter(
  15329. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15330. {
  15331. front: {
  15332. height: math.unit(4.91, "feet"),
  15333. weight: math.unit(100, "lb"),
  15334. name: "Front",
  15335. image: {
  15336. source: "./media/characters/lily/front.svg",
  15337. extra: 1585 / 1415,
  15338. bottom: 0.02
  15339. }
  15340. },
  15341. },
  15342. [
  15343. {
  15344. name: "Normal",
  15345. height: math.unit(4.91, "feet"),
  15346. default: true
  15347. },
  15348. ]
  15349. ))
  15350. characterMakers.push(() => makeCharacter(
  15351. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15352. {
  15353. laying: {
  15354. height: math.unit(4 + 4 / 12, "feet"),
  15355. weight: math.unit(600, "lb"),
  15356. name: "Laying",
  15357. image: {
  15358. source: "./media/characters/sheila/laying.svg",
  15359. extra: 1333 / 1265,
  15360. bottom: 0.16
  15361. }
  15362. },
  15363. },
  15364. [
  15365. {
  15366. name: "Normal",
  15367. height: math.unit(4 + 4 / 12, "feet"),
  15368. default: true
  15369. },
  15370. ]
  15371. ))
  15372. characterMakers.push(() => makeCharacter(
  15373. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15374. {
  15375. front: {
  15376. height: math.unit(6, "feet"),
  15377. weight: math.unit(190, "lb"),
  15378. name: "Front",
  15379. image: {
  15380. source: "./media/characters/sax/front.svg",
  15381. extra: 1187 / 973,
  15382. bottom: 0.042
  15383. }
  15384. },
  15385. },
  15386. [
  15387. {
  15388. name: "Micro",
  15389. height: math.unit(4, "inches"),
  15390. default: true
  15391. },
  15392. ]
  15393. ))
  15394. characterMakers.push(() => makeCharacter(
  15395. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15396. {
  15397. front: {
  15398. height: math.unit(6, "feet"),
  15399. weight: math.unit(150, "lb"),
  15400. name: "Front",
  15401. image: {
  15402. source: "./media/characters/pandora/front.svg",
  15403. extra: 2720 / 2556,
  15404. bottom: 0.015
  15405. }
  15406. },
  15407. back: {
  15408. height: math.unit(6, "feet"),
  15409. weight: math.unit(150, "lb"),
  15410. name: "Back",
  15411. image: {
  15412. source: "./media/characters/pandora/back.svg",
  15413. extra: 2720 / 2556,
  15414. bottom: 0.01
  15415. }
  15416. },
  15417. beans: {
  15418. height: math.unit(6 / 8, "feet"),
  15419. name: "Beans",
  15420. image: {
  15421. source: "./media/characters/pandora/beans.svg"
  15422. }
  15423. },
  15424. skirt: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(150, "lb"),
  15427. name: "Skirt",
  15428. image: {
  15429. source: "./media/characters/pandora/skirt.svg",
  15430. extra: 1622 / 1525,
  15431. bottom: 0.015
  15432. }
  15433. },
  15434. hoodie: {
  15435. height: math.unit(6, "feet"),
  15436. weight: math.unit(150, "lb"),
  15437. name: "Hoodie",
  15438. image: {
  15439. source: "./media/characters/pandora/hoodie.svg",
  15440. extra: 1622 / 1525,
  15441. bottom: 0.015
  15442. }
  15443. },
  15444. casual: {
  15445. height: math.unit(6, "feet"),
  15446. weight: math.unit(150, "lb"),
  15447. name: "Casual",
  15448. image: {
  15449. source: "./media/characters/pandora/casual.svg",
  15450. extra: 1622 / 1525,
  15451. bottom: 0.015
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "Normal",
  15458. height: math.unit(6, "feet")
  15459. },
  15460. {
  15461. name: "Big Steppy",
  15462. height: math.unit(1, "km"),
  15463. default: true
  15464. },
  15465. ]
  15466. ))
  15467. characterMakers.push(() => makeCharacter(
  15468. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15469. {
  15470. side: {
  15471. height: math.unit(10, "feet"),
  15472. weight: math.unit(800, "kg"),
  15473. name: "Side",
  15474. image: {
  15475. source: "./media/characters/venio-darcony/side.svg",
  15476. extra: 1373 / 1003,
  15477. bottom: 0.037
  15478. }
  15479. },
  15480. front: {
  15481. height: math.unit(19, "feet"),
  15482. weight: math.unit(800, "kg"),
  15483. name: "Front",
  15484. image: {
  15485. source: "./media/characters/venio-darcony/front.svg"
  15486. }
  15487. },
  15488. back: {
  15489. height: math.unit(19, "feet"),
  15490. weight: math.unit(800, "kg"),
  15491. name: "Back",
  15492. image: {
  15493. source: "./media/characters/venio-darcony/back.svg"
  15494. }
  15495. },
  15496. sideNsfw: {
  15497. height: math.unit(10, "feet"),
  15498. weight: math.unit(800, "kg"),
  15499. name: "Side (NSFW)",
  15500. image: {
  15501. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15502. extra: 1373 / 1003,
  15503. bottom: 0.037
  15504. }
  15505. },
  15506. frontNsfw: {
  15507. height: math.unit(19, "feet"),
  15508. weight: math.unit(800, "kg"),
  15509. name: "Front (NSFW)",
  15510. image: {
  15511. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15512. }
  15513. },
  15514. backNsfw: {
  15515. height: math.unit(19, "feet"),
  15516. weight: math.unit(800, "kg"),
  15517. name: "Back (NSFW)",
  15518. image: {
  15519. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15520. }
  15521. },
  15522. sideArmored: {
  15523. height: math.unit(10, "feet"),
  15524. weight: math.unit(800, "kg"),
  15525. name: "Side (Armored)",
  15526. image: {
  15527. source: "./media/characters/venio-darcony/side-armored.svg",
  15528. extra: 1373 / 1003,
  15529. bottom: 0.037
  15530. }
  15531. },
  15532. frontArmored: {
  15533. height: math.unit(19, "feet"),
  15534. weight: math.unit(900, "kg"),
  15535. name: "Front (Armored)",
  15536. image: {
  15537. source: "./media/characters/venio-darcony/front-armored.svg"
  15538. }
  15539. },
  15540. backArmored: {
  15541. height: math.unit(19, "feet"),
  15542. weight: math.unit(900, "kg"),
  15543. name: "Back (Armored)",
  15544. image: {
  15545. source: "./media/characters/venio-darcony/back-armored.svg"
  15546. }
  15547. },
  15548. sword: {
  15549. height: math.unit(10, "feet"),
  15550. weight: math.unit(50, "lb"),
  15551. name: "Sword",
  15552. image: {
  15553. source: "./media/characters/venio-darcony/sword.svg"
  15554. }
  15555. },
  15556. },
  15557. [
  15558. {
  15559. name: "Normal",
  15560. height: math.unit(10, "feet")
  15561. },
  15562. {
  15563. name: "Macro",
  15564. height: math.unit(130, "feet"),
  15565. default: true
  15566. },
  15567. {
  15568. name: "Macro+",
  15569. height: math.unit(240, "feet")
  15570. },
  15571. ]
  15572. ))
  15573. characterMakers.push(() => makeCharacter(
  15574. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15575. {
  15576. front: {
  15577. height: math.unit(6, "feet"),
  15578. weight: math.unit(150, "lb"),
  15579. name: "Front",
  15580. image: {
  15581. source: "./media/characters/veski/front.svg",
  15582. extra: 1299 / 1225,
  15583. bottom: 0.04
  15584. }
  15585. },
  15586. back: {
  15587. height: math.unit(6, "feet"),
  15588. weight: math.unit(150, "lb"),
  15589. name: "Back",
  15590. image: {
  15591. source: "./media/characters/veski/back.svg",
  15592. extra: 1299 / 1225,
  15593. bottom: 0.008
  15594. }
  15595. },
  15596. maw: {
  15597. height: math.unit(1.5 * 1.21, "feet"),
  15598. name: "Maw",
  15599. image: {
  15600. source: "./media/characters/veski/maw.svg"
  15601. }
  15602. },
  15603. },
  15604. [
  15605. {
  15606. name: "Macro",
  15607. height: math.unit(2, "km"),
  15608. default: true
  15609. },
  15610. ]
  15611. ))
  15612. characterMakers.push(() => makeCharacter(
  15613. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15614. {
  15615. front: {
  15616. height: math.unit(5 + 7 / 12, "feet"),
  15617. name: "Front",
  15618. image: {
  15619. source: "./media/characters/isabelle/front.svg",
  15620. extra: 2130 / 1976,
  15621. bottom: 0.05
  15622. }
  15623. },
  15624. },
  15625. [
  15626. {
  15627. name: "Supermicro",
  15628. height: math.unit(10, "micrometers")
  15629. },
  15630. {
  15631. name: "Micro",
  15632. height: math.unit(1, "inch")
  15633. },
  15634. {
  15635. name: "Tiny",
  15636. height: math.unit(5, "inches")
  15637. },
  15638. {
  15639. name: "Standard",
  15640. height: math.unit(5 + 7 / 12, "inches")
  15641. },
  15642. {
  15643. name: "Macro",
  15644. height: math.unit(80, "meters"),
  15645. default: true
  15646. },
  15647. {
  15648. name: "Megamacro",
  15649. height: math.unit(250, "meters")
  15650. },
  15651. {
  15652. name: "Gigamacro",
  15653. height: math.unit(5, "km")
  15654. },
  15655. {
  15656. name: "Cosmic",
  15657. height: math.unit(2.5e6, "miles")
  15658. },
  15659. ]
  15660. ))
  15661. characterMakers.push(() => makeCharacter(
  15662. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15663. {
  15664. front: {
  15665. height: math.unit(6, "feet"),
  15666. weight: math.unit(150, "lb"),
  15667. name: "Front",
  15668. image: {
  15669. source: "./media/characters/hanzo/front.svg",
  15670. extra: 374 / 344,
  15671. bottom: 0.02
  15672. }
  15673. },
  15674. },
  15675. [
  15676. {
  15677. name: "Normal",
  15678. height: math.unit(8, "feet"),
  15679. default: true
  15680. },
  15681. ]
  15682. ))
  15683. characterMakers.push(() => makeCharacter(
  15684. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15685. {
  15686. front: {
  15687. height: math.unit(7, "feet"),
  15688. weight: math.unit(130, "lb"),
  15689. name: "Front",
  15690. image: {
  15691. source: "./media/characters/anna/front.svg",
  15692. extra: 169 / 145,
  15693. bottom: 0.06
  15694. }
  15695. },
  15696. full: {
  15697. height: math.unit(4.96, "feet"),
  15698. weight: math.unit(220, "lb"),
  15699. name: "Full",
  15700. image: {
  15701. source: "./media/characters/anna/full.svg",
  15702. extra: 138 / 114,
  15703. bottom: 0.15
  15704. }
  15705. },
  15706. tongue: {
  15707. height: math.unit(2.53, "feet"),
  15708. name: "Tongue",
  15709. image: {
  15710. source: "./media/characters/anna/tongue.svg"
  15711. }
  15712. },
  15713. },
  15714. [
  15715. {
  15716. name: "Normal",
  15717. height: math.unit(7, "feet"),
  15718. default: true
  15719. },
  15720. ]
  15721. ))
  15722. characterMakers.push(() => makeCharacter(
  15723. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15724. {
  15725. front: {
  15726. height: math.unit(7, "feet"),
  15727. weight: math.unit(150, "lb"),
  15728. name: "Front",
  15729. image: {
  15730. source: "./media/characters/ian-corvid/front.svg",
  15731. extra: 150 / 142,
  15732. bottom: 0.02
  15733. }
  15734. },
  15735. back: {
  15736. height: math.unit(7, "feet"),
  15737. weight: math.unit(150, "lb"),
  15738. name: "Back",
  15739. image: {
  15740. source: "./media/characters/ian-corvid/back.svg",
  15741. extra: 150 / 143,
  15742. bottom: 0.01
  15743. }
  15744. },
  15745. stomping: {
  15746. height: math.unit(7, "feet"),
  15747. weight: math.unit(150, "lb"),
  15748. name: "Stomping",
  15749. image: {
  15750. source: "./media/characters/ian-corvid/stomping.svg",
  15751. extra: 76 / 72
  15752. }
  15753. },
  15754. sitting: {
  15755. height: math.unit(7 / 1.8, "feet"),
  15756. weight: math.unit(150, "lb"),
  15757. name: "Sitting",
  15758. image: {
  15759. source: "./media/characters/ian-corvid/sitting.svg",
  15760. extra: 1400 / 1269,
  15761. bottom: 0.15
  15762. }
  15763. },
  15764. },
  15765. [
  15766. {
  15767. name: "Tiny Microw",
  15768. height: math.unit(1, "inch")
  15769. },
  15770. {
  15771. name: "Microw",
  15772. height: math.unit(6, "inches")
  15773. },
  15774. {
  15775. name: "Crow",
  15776. height: math.unit(7 + 1 / 12, "feet"),
  15777. default: true
  15778. },
  15779. {
  15780. name: "Macrow",
  15781. height: math.unit(176, "feet")
  15782. },
  15783. ]
  15784. ))
  15785. characterMakers.push(() => makeCharacter(
  15786. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15787. {
  15788. front: {
  15789. height: math.unit(5 + 7 / 12, "feet"),
  15790. weight: math.unit(147, "lb"),
  15791. name: "Front",
  15792. image: {
  15793. source: "./media/characters/natalie-kellon/front.svg",
  15794. extra: 1214 / 1141,
  15795. bottom: 0.02
  15796. }
  15797. },
  15798. },
  15799. [
  15800. {
  15801. name: "Micro",
  15802. height: math.unit(1 / 16, "inch")
  15803. },
  15804. {
  15805. name: "Tiny",
  15806. height: math.unit(4, "inches")
  15807. },
  15808. {
  15809. name: "Normal",
  15810. height: math.unit(5 + 7 / 12, "feet"),
  15811. default: true
  15812. },
  15813. {
  15814. name: "Amazon",
  15815. height: math.unit(12, "feet")
  15816. },
  15817. {
  15818. name: "Giantess",
  15819. height: math.unit(160, "meters")
  15820. },
  15821. {
  15822. name: "Titaness",
  15823. height: math.unit(800, "meters")
  15824. },
  15825. ]
  15826. ))
  15827. characterMakers.push(() => makeCharacter(
  15828. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15829. {
  15830. front: {
  15831. height: math.unit(6, "feet"),
  15832. weight: math.unit(150, "lb"),
  15833. name: "Front",
  15834. image: {
  15835. source: "./media/characters/alluria/front.svg",
  15836. extra: 806 / 738,
  15837. bottom: 0.01
  15838. }
  15839. },
  15840. side: {
  15841. height: math.unit(6, "feet"),
  15842. weight: math.unit(150, "lb"),
  15843. name: "Side",
  15844. image: {
  15845. source: "./media/characters/alluria/side.svg",
  15846. extra: 800 / 750,
  15847. }
  15848. },
  15849. back: {
  15850. height: math.unit(6, "feet"),
  15851. weight: math.unit(150, "lb"),
  15852. name: "Back",
  15853. image: {
  15854. source: "./media/characters/alluria/back.svg",
  15855. extra: 806 / 738,
  15856. }
  15857. },
  15858. frontMaid: {
  15859. height: math.unit(6, "feet"),
  15860. weight: math.unit(150, "lb"),
  15861. name: "Front (Maid)",
  15862. image: {
  15863. source: "./media/characters/alluria/front-maid.svg",
  15864. extra: 806 / 738,
  15865. bottom: 0.01
  15866. }
  15867. },
  15868. sideMaid: {
  15869. height: math.unit(6, "feet"),
  15870. weight: math.unit(150, "lb"),
  15871. name: "Side (Maid)",
  15872. image: {
  15873. source: "./media/characters/alluria/side-maid.svg",
  15874. extra: 800 / 750,
  15875. bottom: 0.005
  15876. }
  15877. },
  15878. backMaid: {
  15879. height: math.unit(6, "feet"),
  15880. weight: math.unit(150, "lb"),
  15881. name: "Back (Maid)",
  15882. image: {
  15883. source: "./media/characters/alluria/back-maid.svg",
  15884. extra: 806 / 738,
  15885. }
  15886. },
  15887. },
  15888. [
  15889. {
  15890. name: "Micro",
  15891. height: math.unit(6, "inches"),
  15892. default: true
  15893. },
  15894. ]
  15895. ))
  15896. characterMakers.push(() => makeCharacter(
  15897. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15898. {
  15899. front: {
  15900. height: math.unit(6, "feet"),
  15901. weight: math.unit(150, "lb"),
  15902. name: "Front",
  15903. image: {
  15904. source: "./media/characters/kyle/front.svg",
  15905. extra: 1069 / 962,
  15906. bottom: 77.228 / 1727.45
  15907. }
  15908. },
  15909. },
  15910. [
  15911. {
  15912. name: "Macro",
  15913. height: math.unit(150, "feet"),
  15914. default: true
  15915. },
  15916. ]
  15917. ))
  15918. characterMakers.push(() => makeCharacter(
  15919. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15920. {
  15921. front: {
  15922. height: math.unit(6, "feet"),
  15923. weight: math.unit(300, "lb"),
  15924. name: "Front",
  15925. image: {
  15926. source: "./media/characters/duncan/front.svg",
  15927. extra: 1650 / 1482,
  15928. bottom: 0.05
  15929. }
  15930. },
  15931. },
  15932. [
  15933. {
  15934. name: "Macro",
  15935. height: math.unit(100, "feet"),
  15936. default: true
  15937. },
  15938. ]
  15939. ))
  15940. characterMakers.push(() => makeCharacter(
  15941. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15942. {
  15943. front: {
  15944. height: math.unit(5 + 4 / 12, "feet"),
  15945. weight: math.unit(220, "lb"),
  15946. name: "Front",
  15947. image: {
  15948. source: "./media/characters/memory/front.svg",
  15949. extra: 3641 / 3545,
  15950. bottom: 0.03
  15951. }
  15952. },
  15953. back: {
  15954. height: math.unit(5 + 4 / 12, "feet"),
  15955. weight: math.unit(220, "lb"),
  15956. name: "Back",
  15957. image: {
  15958. source: "./media/characters/memory/back.svg",
  15959. extra: 3641 / 3545,
  15960. bottom: 0.025
  15961. }
  15962. },
  15963. frontSkirt: {
  15964. height: math.unit(5 + 4 / 12, "feet"),
  15965. weight: math.unit(220, "lb"),
  15966. name: "Front (Skirt)",
  15967. image: {
  15968. source: "./media/characters/memory/front-skirt.svg",
  15969. extra: 3641 / 3545,
  15970. bottom: 0.03
  15971. }
  15972. },
  15973. frontDress: {
  15974. height: math.unit(5 + 4 / 12, "feet"),
  15975. weight: math.unit(220, "lb"),
  15976. name: "Front (Dress)",
  15977. image: {
  15978. source: "./media/characters/memory/front-dress.svg",
  15979. extra: 3641 / 3545,
  15980. bottom: 0.03
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Micro",
  15987. height: math.unit(6, "inches"),
  15988. default: true
  15989. },
  15990. {
  15991. name: "Normal",
  15992. height: math.unit(5 + 4 / 12, "feet")
  15993. },
  15994. ]
  15995. ))
  15996. characterMakers.push(() => makeCharacter(
  15997. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15998. {
  15999. front: {
  16000. height: math.unit(4 + 11 / 12, "feet"),
  16001. weight: math.unit(100, "lb"),
  16002. name: "Front",
  16003. image: {
  16004. source: "./media/characters/luno/front.svg",
  16005. extra: 1535 / 1487,
  16006. bottom: 0.03
  16007. }
  16008. },
  16009. },
  16010. [
  16011. {
  16012. name: "Micro",
  16013. height: math.unit(3, "inches")
  16014. },
  16015. {
  16016. name: "Normal",
  16017. height: math.unit(4 + 11 / 12, "feet"),
  16018. default: true
  16019. },
  16020. {
  16021. name: "Macro",
  16022. height: math.unit(300, "feet")
  16023. },
  16024. {
  16025. name: "Megamacro",
  16026. height: math.unit(700, "miles")
  16027. },
  16028. ]
  16029. ))
  16030. characterMakers.push(() => makeCharacter(
  16031. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16032. {
  16033. front: {
  16034. height: math.unit(6 + 2 / 12, "feet"),
  16035. weight: math.unit(170, "lb"),
  16036. name: "Front",
  16037. image: {
  16038. source: "./media/characters/jamesy/front.svg",
  16039. extra: 440 / 382,
  16040. bottom: 0.005
  16041. }
  16042. },
  16043. },
  16044. [
  16045. {
  16046. name: "Micro",
  16047. height: math.unit(3, "inches")
  16048. },
  16049. {
  16050. name: "Normal",
  16051. height: math.unit(6 + 2 / 12, "feet"),
  16052. default: true
  16053. },
  16054. {
  16055. name: "Macro",
  16056. height: math.unit(300, "feet")
  16057. },
  16058. {
  16059. name: "Megamacro",
  16060. height: math.unit(700, "miles")
  16061. },
  16062. ]
  16063. ))
  16064. characterMakers.push(() => makeCharacter(
  16065. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16066. {
  16067. front: {
  16068. height: math.unit(6, "feet"),
  16069. weight: math.unit(160, "lb"),
  16070. name: "Front",
  16071. image: {
  16072. source: "./media/characters/mark/front.svg",
  16073. extra: 3300 / 3100,
  16074. bottom: 136.42 / 3440.47
  16075. }
  16076. },
  16077. },
  16078. [
  16079. {
  16080. name: "Macro",
  16081. height: math.unit(120, "meters")
  16082. },
  16083. {
  16084. name: "Bigger Macro",
  16085. height: math.unit(350, "meters")
  16086. },
  16087. {
  16088. name: "Megamacro",
  16089. height: math.unit(8, "km"),
  16090. default: true
  16091. },
  16092. {
  16093. name: "Continental",
  16094. height: math.unit(4550, "km")
  16095. },
  16096. {
  16097. name: "Planetary",
  16098. height: math.unit(65000, "km")
  16099. },
  16100. ]
  16101. ))
  16102. characterMakers.push(() => makeCharacter(
  16103. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16104. {
  16105. front: {
  16106. height: math.unit(6, "feet"),
  16107. weight: math.unit(400, "lb"),
  16108. name: "Front",
  16109. image: {
  16110. source: "./media/characters/mac/front.svg",
  16111. extra: 1048 / 987.7,
  16112. bottom: 60 / 1107.6,
  16113. }
  16114. },
  16115. },
  16116. [
  16117. {
  16118. name: "Macro",
  16119. height: math.unit(500, "feet"),
  16120. default: true
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16126. {
  16127. front: {
  16128. height: math.unit(5 + 2 / 12, "feet"),
  16129. weight: math.unit(190, "lb"),
  16130. name: "Front",
  16131. image: {
  16132. source: "./media/characters/bari/front.svg",
  16133. extra: 3156 / 2880,
  16134. bottom: 0.03
  16135. }
  16136. },
  16137. back: {
  16138. height: math.unit(5 + 2 / 12, "feet"),
  16139. weight: math.unit(190, "lb"),
  16140. name: "Back",
  16141. image: {
  16142. source: "./media/characters/bari/back.svg",
  16143. extra: 3260 / 2834,
  16144. bottom: 0.025
  16145. }
  16146. },
  16147. frontPlush: {
  16148. height: math.unit(5 + 2 / 12, "feet"),
  16149. weight: math.unit(190, "lb"),
  16150. name: "Front (Plush)",
  16151. image: {
  16152. source: "./media/characters/bari/front-plush.svg",
  16153. extra: 1112 / 1061,
  16154. bottom: 0.002
  16155. }
  16156. },
  16157. },
  16158. [
  16159. {
  16160. name: "Micro",
  16161. height: math.unit(3, "inches")
  16162. },
  16163. {
  16164. name: "Normal",
  16165. height: math.unit(5 + 2 / 12, "feet"),
  16166. default: true
  16167. },
  16168. {
  16169. name: "Macro",
  16170. height: math.unit(20, "feet")
  16171. },
  16172. ]
  16173. ))
  16174. characterMakers.push(() => makeCharacter(
  16175. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16176. {
  16177. front: {
  16178. height: math.unit(6 + 1 / 12, "feet"),
  16179. weight: math.unit(275, "lb"),
  16180. name: "Front",
  16181. image: {
  16182. source: "./media/characters/hunter-misha-raven/front.svg"
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Mortal",
  16189. height: math.unit(6 + 1 / 12, "feet")
  16190. },
  16191. {
  16192. name: "Divine",
  16193. height: math.unit(1.12134e34, "parsecs"),
  16194. default: true
  16195. },
  16196. ]
  16197. ))
  16198. characterMakers.push(() => makeCharacter(
  16199. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16200. {
  16201. front: {
  16202. height: math.unit(6 + 3 / 12, "feet"),
  16203. weight: math.unit(220, "lb"),
  16204. name: "Front",
  16205. image: {
  16206. source: "./media/characters/max-calore/front.svg",
  16207. extra: 1700 / 1648,
  16208. bottom: 0.01
  16209. }
  16210. },
  16211. back: {
  16212. height: math.unit(6 + 3 / 12, "feet"),
  16213. weight: math.unit(220, "lb"),
  16214. name: "Back",
  16215. image: {
  16216. source: "./media/characters/max-calore/back.svg",
  16217. extra: 1700 / 1648,
  16218. bottom: 0.01
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Normal",
  16225. height: math.unit(6 + 3 / 12, "feet"),
  16226. default: true
  16227. },
  16228. ]
  16229. ))
  16230. characterMakers.push(() => makeCharacter(
  16231. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16232. {
  16233. side: {
  16234. height: math.unit(2 + 8 / 12, "feet"),
  16235. weight: math.unit(99, "lb"),
  16236. name: "Side",
  16237. image: {
  16238. source: "./media/characters/aspen/side.svg",
  16239. extra: 152 / 138,
  16240. bottom: 0.032
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Normal",
  16247. height: math.unit(2 + 8 / 12, "feet"),
  16248. default: true
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16254. {
  16255. side: {
  16256. height: math.unit(3 + 2 / 12, "feet"),
  16257. weight: math.unit(224, "lb"),
  16258. name: "Side",
  16259. image: {
  16260. source: "./media/characters/sheila-feral-wolf/side.svg",
  16261. extra: 179 / 166,
  16262. bottom: 0.03
  16263. }
  16264. },
  16265. },
  16266. [
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(3 + 2 / 12, "feet"),
  16270. default: true
  16271. },
  16272. ]
  16273. ))
  16274. characterMakers.push(() => makeCharacter(
  16275. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16276. {
  16277. side: {
  16278. height: math.unit(1 + 9 / 12, "feet"),
  16279. weight: math.unit(38, "lb"),
  16280. name: "Side",
  16281. image: {
  16282. source: "./media/characters/michelle/side.svg",
  16283. extra: 147 / 136.7,
  16284. bottom: 0.03
  16285. }
  16286. },
  16287. },
  16288. [
  16289. {
  16290. name: "Normal",
  16291. height: math.unit(1 + 9 / 12, "feet"),
  16292. default: true
  16293. },
  16294. ]
  16295. ))
  16296. characterMakers.push(() => makeCharacter(
  16297. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16298. {
  16299. front: {
  16300. height: math.unit(1 + 1 / 12, "feet"),
  16301. weight: math.unit(18, "lb"),
  16302. name: "Front",
  16303. image: {
  16304. source: "./media/characters/nino/front.svg"
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Normal",
  16311. height: math.unit(1 + 1 / 12, "feet"),
  16312. default: true
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16318. {
  16319. front: {
  16320. height: math.unit(1, "feet"),
  16321. weight: math.unit(16, "lb"),
  16322. name: "Front",
  16323. image: {
  16324. source: "./media/characters/viola/front.svg"
  16325. }
  16326. },
  16327. },
  16328. [
  16329. {
  16330. name: "Normal",
  16331. height: math.unit(1, "feet"),
  16332. default: true
  16333. },
  16334. ]
  16335. ))
  16336. characterMakers.push(() => makeCharacter(
  16337. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16338. {
  16339. front: {
  16340. height: math.unit(6 + 5 / 12, "feet"),
  16341. weight: math.unit(580, "lb"),
  16342. name: "Front",
  16343. image: {
  16344. source: "./media/characters/atlas/front.svg",
  16345. extra: 298.5 / 290,
  16346. bottom: 0.015
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Normal",
  16353. height: math.unit(6 + 5 / 12, "feet"),
  16354. default: true
  16355. },
  16356. ]
  16357. ))
  16358. characterMakers.push(() => makeCharacter(
  16359. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16360. {
  16361. side: {
  16362. height: math.unit(1 + 10 / 12, "feet"),
  16363. weight: math.unit(25, "lb"),
  16364. name: "Side",
  16365. image: {
  16366. source: "./media/characters/davy/side.svg",
  16367. extra: 200 / 170,
  16368. bottom: 0.01
  16369. }
  16370. },
  16371. },
  16372. [
  16373. {
  16374. name: "Normal",
  16375. height: math.unit(1 + 10 / 12, "feet"),
  16376. default: true
  16377. },
  16378. ]
  16379. ))
  16380. characterMakers.push(() => makeCharacter(
  16381. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16382. {
  16383. side: {
  16384. height: math.unit(4 + 8 / 12, "feet"),
  16385. weight: math.unit(166, "lb"),
  16386. name: "Side",
  16387. image: {
  16388. source: "./media/characters/fiona/side.svg",
  16389. extra: 232 / 220,
  16390. bottom: 0.03
  16391. }
  16392. },
  16393. },
  16394. [
  16395. {
  16396. name: "Normal",
  16397. height: math.unit(4 + 8 / 12, "feet"),
  16398. default: true
  16399. },
  16400. ]
  16401. ))
  16402. characterMakers.push(() => makeCharacter(
  16403. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16404. {
  16405. front: {
  16406. height: math.unit(2, "feet"),
  16407. weight: math.unit(62, "lb"),
  16408. name: "Front",
  16409. image: {
  16410. source: "./media/characters/lyla/front.svg",
  16411. bottom: 0.1
  16412. }
  16413. },
  16414. },
  16415. [
  16416. {
  16417. name: "Normal",
  16418. height: math.unit(2, "feet"),
  16419. default: true
  16420. },
  16421. ]
  16422. ))
  16423. characterMakers.push(() => makeCharacter(
  16424. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16425. {
  16426. side: {
  16427. height: math.unit(1.8, "feet"),
  16428. weight: math.unit(44, "lb"),
  16429. name: "Side",
  16430. image: {
  16431. source: "./media/characters/perseus/side.svg",
  16432. bottom: 0.21
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Normal",
  16439. height: math.unit(1.8, "feet"),
  16440. default: true
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16446. {
  16447. side: {
  16448. height: math.unit(4 + 2 / 12, "feet"),
  16449. weight: math.unit(20, "lb"),
  16450. name: "Side",
  16451. image: {
  16452. source: "./media/characters/remus/side.svg"
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Normal",
  16459. height: math.unit(4 + 2 / 12, "feet"),
  16460. default: true
  16461. },
  16462. ]
  16463. ))
  16464. characterMakers.push(() => makeCharacter(
  16465. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16466. {
  16467. front: {
  16468. height: math.unit(4 + 11 / 12, "feet"),
  16469. weight: math.unit(114, "lb"),
  16470. name: "Front",
  16471. image: {
  16472. source: "./media/characters/raf/front.svg",
  16473. bottom: 20.5 / 1863
  16474. }
  16475. },
  16476. side: {
  16477. height: math.unit(4 + 11 / 12, "feet"),
  16478. weight: math.unit(114, "lb"),
  16479. name: "Side",
  16480. image: {
  16481. source: "./media/characters/raf/side.svg",
  16482. bottom: 22 / 1822
  16483. }
  16484. },
  16485. },
  16486. [
  16487. {
  16488. name: "Micro",
  16489. height: math.unit(2, "inches")
  16490. },
  16491. {
  16492. name: "Normal",
  16493. height: math.unit(4 + 11 / 12, "feet"),
  16494. default: true
  16495. },
  16496. {
  16497. name: "Macro",
  16498. height: math.unit(70, "feet")
  16499. },
  16500. ]
  16501. ))
  16502. characterMakers.push(() => makeCharacter(
  16503. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16504. {
  16505. front: {
  16506. height: math.unit(1.5, "meters"),
  16507. weight: math.unit(68, "kg"),
  16508. name: "Front",
  16509. image: {
  16510. source: "./media/characters/liam-einarr/front.svg",
  16511. extra: 2822 / 2666
  16512. }
  16513. },
  16514. back: {
  16515. height: math.unit(1.5, "meters"),
  16516. weight: math.unit(68, "kg"),
  16517. name: "Back",
  16518. image: {
  16519. source: "./media/characters/liam-einarr/back.svg",
  16520. extra: 2822 / 2666,
  16521. bottom: 0.015
  16522. }
  16523. },
  16524. },
  16525. [
  16526. {
  16527. name: "Normal",
  16528. height: math.unit(1.5, "meters"),
  16529. default: true
  16530. },
  16531. {
  16532. name: "Macro",
  16533. height: math.unit(150, "meters")
  16534. },
  16535. {
  16536. name: "Megamacro",
  16537. height: math.unit(35, "km")
  16538. },
  16539. ]
  16540. ))
  16541. characterMakers.push(() => makeCharacter(
  16542. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16543. {
  16544. front: {
  16545. height: math.unit(6, "feet"),
  16546. weight: math.unit(75, "kg"),
  16547. name: "Front",
  16548. image: {
  16549. source: "./media/characters/linda/front.svg",
  16550. extra: 930 / 874,
  16551. bottom: 0.004
  16552. }
  16553. },
  16554. },
  16555. [
  16556. {
  16557. name: "Normal",
  16558. height: math.unit(6, "feet"),
  16559. default: true
  16560. },
  16561. ]
  16562. ))
  16563. characterMakers.push(() => makeCharacter(
  16564. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16565. {
  16566. front: {
  16567. height: math.unit(6 + 8 / 12, "feet"),
  16568. weight: math.unit(220, "lb"),
  16569. name: "Front",
  16570. image: {
  16571. source: "./media/characters/caylex/front.svg",
  16572. extra: 821 / 772,
  16573. bottom: 0.07
  16574. }
  16575. },
  16576. back: {
  16577. height: math.unit(6 + 8 / 12, "feet"),
  16578. weight: math.unit(220, "lb"),
  16579. name: "Back",
  16580. image: {
  16581. source: "./media/characters/caylex/back.svg",
  16582. extra: 821 / 772,
  16583. bottom: 0.022
  16584. }
  16585. },
  16586. hand: {
  16587. height: math.unit(1.25, "feet"),
  16588. name: "Hand",
  16589. image: {
  16590. source: "./media/characters/caylex/hand.svg"
  16591. }
  16592. },
  16593. foot: {
  16594. height: math.unit(1.6, "feet"),
  16595. name: "Foot",
  16596. image: {
  16597. source: "./media/characters/caylex/foot.svg"
  16598. }
  16599. },
  16600. armored: {
  16601. height: math.unit(6 + 8 / 12, "feet"),
  16602. weight: math.unit(250, "lb"),
  16603. name: "Armored",
  16604. image: {
  16605. source: "./media/characters/caylex/armored.svg",
  16606. extra: 1420 / 1310,
  16607. bottom: 0.045
  16608. }
  16609. },
  16610. },
  16611. [
  16612. {
  16613. name: "Normal",
  16614. height: math.unit(6 + 8 / 12, "feet"),
  16615. default: true
  16616. },
  16617. {
  16618. name: "Normal+",
  16619. height: math.unit(12, "feet")
  16620. },
  16621. ]
  16622. ))
  16623. characterMakers.push(() => makeCharacter(
  16624. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16625. {
  16626. front: {
  16627. height: math.unit(7 + 6 / 12, "feet"),
  16628. weight: math.unit(288, "lb"),
  16629. name: "Front",
  16630. image: {
  16631. source: "./media/characters/alana/front.svg",
  16632. extra: 679 / 653,
  16633. bottom: 22.5 / 701
  16634. }
  16635. },
  16636. },
  16637. [
  16638. {
  16639. name: "Normal",
  16640. height: math.unit(7 + 6 / 12, "feet")
  16641. },
  16642. {
  16643. name: "Large",
  16644. height: math.unit(50, "feet")
  16645. },
  16646. {
  16647. name: "Macro",
  16648. height: math.unit(100, "feet"),
  16649. default: true
  16650. },
  16651. {
  16652. name: "Macro+",
  16653. height: math.unit(200, "feet")
  16654. },
  16655. ]
  16656. ))
  16657. characterMakers.push(() => makeCharacter(
  16658. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16659. {
  16660. front: {
  16661. height: math.unit(6 + 1 / 12, "feet"),
  16662. weight: math.unit(210, "lb"),
  16663. name: "Front",
  16664. image: {
  16665. source: "./media/characters/hasani/front.svg",
  16666. extra: 244 / 232,
  16667. bottom: 0.01
  16668. }
  16669. },
  16670. back: {
  16671. height: math.unit(6 + 1 / 12, "feet"),
  16672. weight: math.unit(210, "lb"),
  16673. name: "Back",
  16674. image: {
  16675. source: "./media/characters/hasani/back.svg",
  16676. extra: 244 / 232,
  16677. bottom: 0.01
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Normal",
  16684. height: math.unit(6 + 1 / 12, "feet")
  16685. },
  16686. {
  16687. name: "Macro",
  16688. height: math.unit(175, "feet"),
  16689. default: true
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16695. {
  16696. front: {
  16697. height: math.unit(1.82, "meters"),
  16698. weight: math.unit(140, "lb"),
  16699. name: "Front",
  16700. image: {
  16701. source: "./media/characters/nita/front.svg",
  16702. extra: 2473 / 2363,
  16703. bottom: 0.01
  16704. }
  16705. },
  16706. },
  16707. [
  16708. {
  16709. name: "Normal",
  16710. height: math.unit(1.82, "m")
  16711. },
  16712. {
  16713. name: "Macro",
  16714. height: math.unit(300, "m")
  16715. },
  16716. {
  16717. name: "Mistake Canon",
  16718. height: math.unit(0.5, "miles"),
  16719. default: true
  16720. },
  16721. {
  16722. name: "Big Mistake",
  16723. height: math.unit(13, "miles")
  16724. },
  16725. {
  16726. name: "Playing God",
  16727. height: math.unit(2450, "miles")
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16733. {
  16734. front: {
  16735. height: math.unit(4, "feet"),
  16736. weight: math.unit(120, "lb"),
  16737. name: "Front",
  16738. image: {
  16739. source: "./media/characters/shiriko/front.svg",
  16740. extra: 195 / 188
  16741. }
  16742. },
  16743. },
  16744. [
  16745. {
  16746. name: "Normal",
  16747. height: math.unit(4, "feet"),
  16748. default: true
  16749. },
  16750. ]
  16751. ))
  16752. characterMakers.push(() => makeCharacter(
  16753. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16754. {
  16755. front: {
  16756. height: math.unit(6, "feet"),
  16757. name: "front",
  16758. image: {
  16759. source: "./media/characters/deja/front.svg",
  16760. extra: 926 / 840,
  16761. bottom: 0.07
  16762. }
  16763. },
  16764. },
  16765. [
  16766. {
  16767. name: "Planck Length",
  16768. height: math.unit(1.6e-35, "meters")
  16769. },
  16770. {
  16771. name: "Normal",
  16772. height: math.unit(30.48, "meters"),
  16773. default: true
  16774. },
  16775. {
  16776. name: "Universal",
  16777. height: math.unit(8.8e26, "meters")
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16783. {
  16784. side: {
  16785. height: math.unit(8, "feet"),
  16786. weight: math.unit(6300, "lb"),
  16787. name: "Side",
  16788. image: {
  16789. source: "./media/characters/anima/side.svg",
  16790. bottom: 0.035
  16791. }
  16792. },
  16793. },
  16794. [
  16795. {
  16796. name: "Normal",
  16797. height: math.unit(8, "feet"),
  16798. default: true
  16799. },
  16800. ]
  16801. ))
  16802. characterMakers.push(() => makeCharacter(
  16803. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16804. {
  16805. front: {
  16806. height: math.unit(8, "feet"),
  16807. weight: math.unit(350, "lb"),
  16808. name: "Front",
  16809. image: {
  16810. source: "./media/characters/bianca/front.svg",
  16811. extra: 234 / 225,
  16812. bottom: 0.03
  16813. }
  16814. },
  16815. },
  16816. [
  16817. {
  16818. name: "Normal",
  16819. height: math.unit(8, "feet"),
  16820. default: true
  16821. },
  16822. ]
  16823. ))
  16824. characterMakers.push(() => makeCharacter(
  16825. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16826. {
  16827. front: {
  16828. height: math.unit(6, "feet"),
  16829. weight: math.unit(150, "lb"),
  16830. name: "Front",
  16831. image: {
  16832. source: "./media/characters/adinia/front.svg",
  16833. extra: 1845 / 1672,
  16834. bottom: 0.02
  16835. }
  16836. },
  16837. back: {
  16838. height: math.unit(6, "feet"),
  16839. weight: math.unit(150, "lb"),
  16840. name: "Back",
  16841. image: {
  16842. source: "./media/characters/adinia/back.svg",
  16843. extra: 1845 / 1672,
  16844. bottom: 0.002
  16845. }
  16846. },
  16847. },
  16848. [
  16849. {
  16850. name: "Normal",
  16851. height: math.unit(11 + 5 / 12, "feet"),
  16852. default: true
  16853. },
  16854. ]
  16855. ))
  16856. characterMakers.push(() => makeCharacter(
  16857. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16858. {
  16859. front: {
  16860. height: math.unit(3, "meters"),
  16861. weight: math.unit(200, "kg"),
  16862. name: "Front",
  16863. image: {
  16864. source: "./media/characters/lykasa/front.svg",
  16865. extra: 1076 / 976,
  16866. bottom: 0.06
  16867. }
  16868. },
  16869. },
  16870. [
  16871. {
  16872. name: "Normal",
  16873. height: math.unit(3, "meters")
  16874. },
  16875. {
  16876. name: "Kaiju",
  16877. height: math.unit(120, "meters"),
  16878. default: true
  16879. },
  16880. {
  16881. name: "Mega Kaiju",
  16882. height: math.unit(240, "km")
  16883. },
  16884. {
  16885. name: "Giga Kaiju",
  16886. height: math.unit(400, "megameters")
  16887. },
  16888. {
  16889. name: "Tera Kaiju",
  16890. height: math.unit(800, "gigameters")
  16891. },
  16892. {
  16893. name: "Kaiju Dragon Goddess",
  16894. height: math.unit(26, "zettaparsecs")
  16895. },
  16896. ]
  16897. ))
  16898. characterMakers.push(() => makeCharacter(
  16899. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16900. {
  16901. side: {
  16902. height: math.unit(283 / 124 * 6, "feet"),
  16903. weight: math.unit(35000, "lb"),
  16904. name: "Side",
  16905. image: {
  16906. source: "./media/characters/malfaren/side.svg",
  16907. extra: 2500 / 1010,
  16908. bottom: 0.01
  16909. }
  16910. },
  16911. front: {
  16912. height: math.unit(22.36, "feet"),
  16913. weight: math.unit(35000, "lb"),
  16914. name: "Front",
  16915. image: {
  16916. source: "./media/characters/malfaren/front.svg",
  16917. extra: 1631 / 1476,
  16918. bottom: 0.01
  16919. }
  16920. },
  16921. maw: {
  16922. height: math.unit(6.9, "feet"),
  16923. name: "Maw",
  16924. image: {
  16925. source: "./media/characters/malfaren/maw.svg"
  16926. }
  16927. },
  16928. },
  16929. [
  16930. {
  16931. name: "Big",
  16932. height: math.unit(283 / 162 * 6, "feet"),
  16933. },
  16934. {
  16935. name: "Bigger",
  16936. height: math.unit(283 / 124 * 6, "feet")
  16937. },
  16938. {
  16939. name: "Massive",
  16940. height: math.unit(283 / 92 * 6, "feet"),
  16941. default: true
  16942. },
  16943. {
  16944. name: "👀💦",
  16945. height: math.unit(283 / 73 * 6, "feet"),
  16946. },
  16947. ]
  16948. ))
  16949. characterMakers.push(() => makeCharacter(
  16950. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16951. {
  16952. front: {
  16953. height: math.unit(1.7, "m"),
  16954. weight: math.unit(70, "kg"),
  16955. name: "Front",
  16956. image: {
  16957. source: "./media/characters/kernel/front.svg",
  16958. extra: 222 / 210,
  16959. bottom: 0.007
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Nano",
  16966. height: math.unit(17, "micrometers")
  16967. },
  16968. {
  16969. name: "Micro",
  16970. height: math.unit(1.7, "mm")
  16971. },
  16972. {
  16973. name: "Small",
  16974. height: math.unit(1.7, "cm")
  16975. },
  16976. {
  16977. name: "Normal",
  16978. height: math.unit(1.7, "m"),
  16979. default: true
  16980. },
  16981. ]
  16982. ))
  16983. characterMakers.push(() => makeCharacter(
  16984. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16985. {
  16986. front: {
  16987. height: math.unit(1.75, "meters"),
  16988. weight: math.unit(65, "kg"),
  16989. name: "Front",
  16990. image: {
  16991. source: "./media/characters/jayne-folest/front.svg",
  16992. extra: 2115 / 2007,
  16993. bottom: 0.02
  16994. }
  16995. },
  16996. back: {
  16997. height: math.unit(1.75, "meters"),
  16998. weight: math.unit(65, "kg"),
  16999. name: "Back",
  17000. image: {
  17001. source: "./media/characters/jayne-folest/back.svg",
  17002. extra: 2115 / 2007,
  17003. bottom: 0.005
  17004. }
  17005. },
  17006. frontClothed: {
  17007. height: math.unit(1.75, "meters"),
  17008. weight: math.unit(65, "kg"),
  17009. name: "Front (Clothed)",
  17010. image: {
  17011. source: "./media/characters/jayne-folest/front-clothed.svg",
  17012. extra: 2115 / 2007,
  17013. bottom: 0.035
  17014. }
  17015. },
  17016. hand: {
  17017. height: math.unit(1 / 1.260, "feet"),
  17018. name: "Hand",
  17019. image: {
  17020. source: "./media/characters/jayne-folest/hand.svg"
  17021. }
  17022. },
  17023. foot: {
  17024. height: math.unit(1 / 0.918, "feet"),
  17025. name: "Foot",
  17026. image: {
  17027. source: "./media/characters/jayne-folest/foot.svg"
  17028. }
  17029. },
  17030. },
  17031. [
  17032. {
  17033. name: "Micro",
  17034. height: math.unit(4, "cm")
  17035. },
  17036. {
  17037. name: "Normal",
  17038. height: math.unit(1.75, "meters")
  17039. },
  17040. {
  17041. name: "Macro",
  17042. height: math.unit(47.5, "meters"),
  17043. default: true
  17044. },
  17045. ]
  17046. ))
  17047. characterMakers.push(() => makeCharacter(
  17048. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17049. {
  17050. front: {
  17051. height: math.unit(180, "cm"),
  17052. weight: math.unit(70, "kg"),
  17053. name: "Front",
  17054. image: {
  17055. source: "./media/characters/algier/front.svg",
  17056. extra: 596 / 572,
  17057. bottom: 0.04
  17058. }
  17059. },
  17060. back: {
  17061. height: math.unit(180, "cm"),
  17062. weight: math.unit(70, "kg"),
  17063. name: "Back",
  17064. image: {
  17065. source: "./media/characters/algier/back.svg",
  17066. extra: 596 / 572,
  17067. bottom: 0.025
  17068. }
  17069. },
  17070. frontdressed: {
  17071. height: math.unit(180, "cm"),
  17072. weight: math.unit(150, "kg"),
  17073. name: "Front-dressed",
  17074. image: {
  17075. source: "./media/characters/algier/front-dressed.svg",
  17076. extra: 596 / 572,
  17077. bottom: 0.038
  17078. }
  17079. },
  17080. },
  17081. [
  17082. {
  17083. name: "Micro",
  17084. height: math.unit(5, "cm")
  17085. },
  17086. {
  17087. name: "Normal",
  17088. height: math.unit(180, "cm"),
  17089. default: true
  17090. },
  17091. {
  17092. name: "Macro",
  17093. height: math.unit(64, "m")
  17094. },
  17095. ]
  17096. ))
  17097. characterMakers.push(() => makeCharacter(
  17098. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17099. {
  17100. upright: {
  17101. height: math.unit(7, "feet"),
  17102. weight: math.unit(300, "lb"),
  17103. name: "Upright",
  17104. image: {
  17105. source: "./media/characters/pretzel/upright.svg",
  17106. extra: 534 / 522,
  17107. bottom: 0.065
  17108. }
  17109. },
  17110. sprawling: {
  17111. height: math.unit(3.75, "feet"),
  17112. weight: math.unit(300, "lb"),
  17113. name: "Sprawling",
  17114. image: {
  17115. source: "./media/characters/pretzel/sprawling.svg",
  17116. extra: 314 / 281,
  17117. bottom: 0.1
  17118. }
  17119. },
  17120. tongue: {
  17121. height: math.unit(2, "feet"),
  17122. name: "Tongue",
  17123. image: {
  17124. source: "./media/characters/pretzel/tongue.svg"
  17125. }
  17126. },
  17127. },
  17128. [
  17129. {
  17130. name: "Normal",
  17131. height: math.unit(7, "feet"),
  17132. default: true
  17133. },
  17134. {
  17135. name: "Oversized",
  17136. height: math.unit(15, "feet")
  17137. },
  17138. {
  17139. name: "Huge",
  17140. height: math.unit(30, "feet")
  17141. },
  17142. {
  17143. name: "Macro",
  17144. height: math.unit(250, "feet")
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17150. {
  17151. sideFront: {
  17152. height: math.unit(5 + 2 / 12, "feet"),
  17153. weight: math.unit(120, "lb"),
  17154. name: "Front Side",
  17155. image: {
  17156. source: "./media/characters/roxi/side-front.svg",
  17157. extra: 2924 / 2717,
  17158. bottom: 0.08
  17159. }
  17160. },
  17161. sideBack: {
  17162. height: math.unit(5 + 2 / 12, "feet"),
  17163. weight: math.unit(120, "lb"),
  17164. name: "Back Side",
  17165. image: {
  17166. source: "./media/characters/roxi/side-back.svg",
  17167. extra: 2904 / 2693,
  17168. bottom: 0.06
  17169. }
  17170. },
  17171. front: {
  17172. height: math.unit(5 + 2 / 12, "feet"),
  17173. weight: math.unit(120, "lb"),
  17174. name: "Front",
  17175. image: {
  17176. source: "./media/characters/roxi/front.svg",
  17177. extra: 2028 / 1907,
  17178. bottom: 0.01
  17179. }
  17180. },
  17181. frontAlt: {
  17182. height: math.unit(5 + 2 / 12, "feet"),
  17183. weight: math.unit(120, "lb"),
  17184. name: "Front (Alt)",
  17185. image: {
  17186. source: "./media/characters/roxi/front-alt.svg",
  17187. extra: 1828 / 1798,
  17188. bottom: 0.01
  17189. }
  17190. },
  17191. sitting: {
  17192. height: math.unit(2.8, "feet"),
  17193. weight: math.unit(120, "lb"),
  17194. name: "Sitting",
  17195. image: {
  17196. source: "./media/characters/roxi/sitting.svg",
  17197. extra: 2660 / 2462,
  17198. bottom: 0.1
  17199. }
  17200. },
  17201. },
  17202. [
  17203. {
  17204. name: "Normal",
  17205. height: math.unit(5 + 2 / 12, "feet"),
  17206. default: true
  17207. },
  17208. ]
  17209. ))
  17210. characterMakers.push(() => makeCharacter(
  17211. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17212. {
  17213. side: {
  17214. height: math.unit(55, "feet"),
  17215. weight: math.unit(153, "tons"),
  17216. name: "Side",
  17217. image: {
  17218. source: "./media/characters/shadow/side.svg",
  17219. extra: 701 / 628,
  17220. bottom: 0.02
  17221. }
  17222. },
  17223. flying: {
  17224. height: math.unit(145, "feet"),
  17225. weight: math.unit(153, "tons"),
  17226. name: "Flying",
  17227. image: {
  17228. source: "./media/characters/shadow/flying.svg"
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(55, "feet"),
  17236. default: true
  17237. },
  17238. ]
  17239. ))
  17240. characterMakers.push(() => makeCharacter(
  17241. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17242. {
  17243. front: {
  17244. height: math.unit(6, "feet"),
  17245. weight: math.unit(200, "lb"),
  17246. name: "Front",
  17247. image: {
  17248. source: "./media/characters/marcie/front.svg",
  17249. extra: 960 / 876,
  17250. bottom: 58 / 1017.87
  17251. }
  17252. },
  17253. },
  17254. [
  17255. {
  17256. name: "Macro",
  17257. height: math.unit(1, "mile"),
  17258. default: true
  17259. },
  17260. ]
  17261. ))
  17262. characterMakers.push(() => makeCharacter(
  17263. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17264. {
  17265. front: {
  17266. height: math.unit(7, "feet"),
  17267. weight: math.unit(200, "lb"),
  17268. name: "Front",
  17269. image: {
  17270. source: "./media/characters/kachina/front.svg",
  17271. extra: 1290.68 / 1119,
  17272. bottom: 36.5 / 1327.18
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(7, "feet"),
  17280. default: true
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17286. {
  17287. looking: {
  17288. height: math.unit(2, "meters"),
  17289. weight: math.unit(300, "kg"),
  17290. name: "Looking",
  17291. image: {
  17292. source: "./media/characters/kash/looking.svg",
  17293. extra: 474 / 344,
  17294. bottom: 0.03
  17295. }
  17296. },
  17297. side: {
  17298. height: math.unit(2, "meters"),
  17299. weight: math.unit(300, "kg"),
  17300. name: "Side",
  17301. image: {
  17302. source: "./media/characters/kash/side.svg",
  17303. extra: 302 / 251,
  17304. bottom: 0.03
  17305. }
  17306. },
  17307. front: {
  17308. height: math.unit(2, "meters"),
  17309. weight: math.unit(300, "kg"),
  17310. name: "Front",
  17311. image: {
  17312. source: "./media/characters/kash/front.svg",
  17313. extra: 495 / 360,
  17314. bottom: 0.015
  17315. }
  17316. },
  17317. },
  17318. [
  17319. {
  17320. name: "Normal",
  17321. height: math.unit(2, "meters"),
  17322. default: true
  17323. },
  17324. {
  17325. name: "Big",
  17326. height: math.unit(3, "meters")
  17327. },
  17328. {
  17329. name: "Large",
  17330. height: math.unit(5, "meters")
  17331. },
  17332. ]
  17333. ))
  17334. characterMakers.push(() => makeCharacter(
  17335. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17336. {
  17337. feeding: {
  17338. height: math.unit(6.7, "feet"),
  17339. weight: math.unit(350, "lb"),
  17340. name: "Feeding",
  17341. image: {
  17342. source: "./media/characters/lalim/feeding.svg",
  17343. }
  17344. },
  17345. },
  17346. [
  17347. {
  17348. name: "Normal",
  17349. height: math.unit(6.7, "feet"),
  17350. default: true
  17351. },
  17352. ]
  17353. ))
  17354. characterMakers.push(() => makeCharacter(
  17355. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17356. {
  17357. front: {
  17358. height: math.unit(9.5, "feet"),
  17359. weight: math.unit(600, "lb"),
  17360. name: "Front",
  17361. image: {
  17362. source: "./media/characters/de'vout/front.svg",
  17363. extra: 1443 / 1328,
  17364. bottom: 0.025
  17365. }
  17366. },
  17367. back: {
  17368. height: math.unit(9.5, "feet"),
  17369. weight: math.unit(600, "lb"),
  17370. name: "Back",
  17371. image: {
  17372. source: "./media/characters/de'vout/back.svg",
  17373. extra: 1443 / 1328
  17374. }
  17375. },
  17376. frontDressed: {
  17377. height: math.unit(9.5, "feet"),
  17378. weight: math.unit(600, "lb"),
  17379. name: "Front (Dressed",
  17380. image: {
  17381. source: "./media/characters/de'vout/front-dressed.svg",
  17382. extra: 1443 / 1328,
  17383. bottom: 0.025
  17384. }
  17385. },
  17386. backDressed: {
  17387. height: math.unit(9.5, "feet"),
  17388. weight: math.unit(600, "lb"),
  17389. name: "Back (Dressed",
  17390. image: {
  17391. source: "./media/characters/de'vout/back-dressed.svg",
  17392. extra: 1443 / 1328
  17393. }
  17394. },
  17395. },
  17396. [
  17397. {
  17398. name: "Normal",
  17399. height: math.unit(9.5, "feet"),
  17400. default: true
  17401. },
  17402. ]
  17403. ))
  17404. characterMakers.push(() => makeCharacter(
  17405. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17406. {
  17407. front: {
  17408. height: math.unit(8, "feet"),
  17409. weight: math.unit(225, "lb"),
  17410. name: "Front",
  17411. image: {
  17412. source: "./media/characters/talana/front.svg",
  17413. extra: 1410 / 1300,
  17414. bottom: 0.015
  17415. }
  17416. },
  17417. frontDressed: {
  17418. height: math.unit(8, "feet"),
  17419. weight: math.unit(225, "lb"),
  17420. name: "Front (Dressed",
  17421. image: {
  17422. source: "./media/characters/talana/front-dressed.svg",
  17423. extra: 1410 / 1300,
  17424. bottom: 0.015
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(8, "feet"),
  17432. default: true
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17438. {
  17439. side: {
  17440. height: math.unit(7.2, "feet"),
  17441. weight: math.unit(150, "lb"),
  17442. name: "Side",
  17443. image: {
  17444. source: "./media/characters/xeauvok/side.svg",
  17445. extra: 1975 / 1523,
  17446. bottom: 0.07
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(7.2, "feet"),
  17454. default: true
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17460. {
  17461. side: {
  17462. height: math.unit(10, "feet"),
  17463. weight: math.unit(900, "kg"),
  17464. name: "Side",
  17465. image: {
  17466. source: "./media/characters/zara/side.svg",
  17467. extra: 504 / 498
  17468. }
  17469. },
  17470. },
  17471. [
  17472. {
  17473. name: "Normal",
  17474. height: math.unit(10, "feet"),
  17475. default: true
  17476. },
  17477. ]
  17478. ))
  17479. characterMakers.push(() => makeCharacter(
  17480. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17481. {
  17482. side: {
  17483. height: math.unit(6, "feet"),
  17484. weight: math.unit(150, "lb"),
  17485. name: "Side",
  17486. image: {
  17487. source: "./media/characters/richard-dragon/side.svg",
  17488. extra: 845 / 340,
  17489. bottom: 0.017
  17490. }
  17491. },
  17492. maw: {
  17493. height: math.unit(2.97, "feet"),
  17494. name: "Maw",
  17495. image: {
  17496. source: "./media/characters/richard-dragon/maw.svg"
  17497. }
  17498. },
  17499. },
  17500. [
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17505. {
  17506. front: {
  17507. height: math.unit(4, "feet"),
  17508. weight: math.unit(100, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/richard-smeargle/front.svg",
  17512. extra: 2952 / 2820,
  17513. bottom: 0.028
  17514. }
  17515. },
  17516. },
  17517. [
  17518. {
  17519. name: "Normal",
  17520. height: math.unit(4, "feet"),
  17521. default: true
  17522. },
  17523. {
  17524. name: "Dynamax",
  17525. height: math.unit(20, "meters")
  17526. },
  17527. ]
  17528. ))
  17529. characterMakers.push(() => makeCharacter(
  17530. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17531. {
  17532. front: {
  17533. height: math.unit(6, "feet"),
  17534. weight: math.unit(110, "lb"),
  17535. name: "Front",
  17536. image: {
  17537. source: "./media/characters/klay/front.svg",
  17538. extra: 962 / 883,
  17539. bottom: 0.04
  17540. }
  17541. },
  17542. back: {
  17543. height: math.unit(6, "feet"),
  17544. weight: math.unit(110, "lb"),
  17545. name: "Back",
  17546. image: {
  17547. source: "./media/characters/klay/back.svg",
  17548. extra: 962 / 883
  17549. }
  17550. },
  17551. beans: {
  17552. height: math.unit(1.15, "feet"),
  17553. name: "Beans",
  17554. image: {
  17555. source: "./media/characters/klay/beans.svg"
  17556. }
  17557. },
  17558. },
  17559. [
  17560. {
  17561. name: "Micro",
  17562. height: math.unit(6, "inches")
  17563. },
  17564. {
  17565. name: "Mini",
  17566. height: math.unit(3, "feet")
  17567. },
  17568. {
  17569. name: "Normal",
  17570. height: math.unit(6, "feet"),
  17571. default: true
  17572. },
  17573. {
  17574. name: "Big",
  17575. height: math.unit(25, "feet")
  17576. },
  17577. {
  17578. name: "Macro",
  17579. height: math.unit(100, "feet")
  17580. },
  17581. {
  17582. name: "Megamacro",
  17583. height: math.unit(400, "feet")
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17589. {
  17590. front: {
  17591. height: math.unit(6, "feet"),
  17592. weight: math.unit(160, "lb"),
  17593. name: "Front",
  17594. image: {
  17595. source: "./media/characters/marcus/front.svg",
  17596. extra: 734 / 676,
  17597. bottom: 0.03
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Little",
  17604. height: math.unit(6, "feet")
  17605. },
  17606. {
  17607. name: "Normal",
  17608. height: math.unit(110, "feet"),
  17609. default: true
  17610. },
  17611. {
  17612. name: "Macro",
  17613. height: math.unit(250, "feet")
  17614. },
  17615. {
  17616. name: "Megamacro",
  17617. height: math.unit(1000, "feet")
  17618. },
  17619. ]
  17620. ))
  17621. characterMakers.push(() => makeCharacter(
  17622. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17623. {
  17624. front: {
  17625. height: math.unit(7, "feet"),
  17626. weight: math.unit(275, "lb"),
  17627. name: "Front",
  17628. image: {
  17629. source: "./media/characters/claude-delroute/front.svg",
  17630. extra: 230 / 214,
  17631. bottom: 0.007
  17632. }
  17633. },
  17634. side: {
  17635. height: math.unit(7, "feet"),
  17636. weight: math.unit(275, "lb"),
  17637. name: "Side",
  17638. image: {
  17639. source: "./media/characters/claude-delroute/side.svg",
  17640. extra: 222 / 214,
  17641. bottom: 0.01
  17642. }
  17643. },
  17644. back: {
  17645. height: math.unit(7, "feet"),
  17646. weight: math.unit(275, "lb"),
  17647. name: "Back",
  17648. image: {
  17649. source: "./media/characters/claude-delroute/back.svg",
  17650. extra: 230 / 214,
  17651. bottom: 0.015
  17652. }
  17653. },
  17654. maw: {
  17655. height: math.unit(0.6407, "meters"),
  17656. name: "Maw",
  17657. image: {
  17658. source: "./media/characters/claude-delroute/maw.svg"
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(7, "feet"),
  17666. default: true
  17667. },
  17668. {
  17669. name: "Lorge",
  17670. height: math.unit(20, "feet")
  17671. },
  17672. ]
  17673. ))
  17674. characterMakers.push(() => makeCharacter(
  17675. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17676. {
  17677. front: {
  17678. height: math.unit(8 + 4 / 12, "feet"),
  17679. weight: math.unit(600, "lb"),
  17680. name: "Front",
  17681. image: {
  17682. source: "./media/characters/dragonien/front.svg",
  17683. extra: 100 / 94,
  17684. bottom: 3.3 / 103.3445
  17685. }
  17686. },
  17687. back: {
  17688. height: math.unit(8 + 4 / 12, "feet"),
  17689. weight: math.unit(600, "lb"),
  17690. name: "Back",
  17691. image: {
  17692. source: "./media/characters/dragonien/back.svg",
  17693. extra: 776 / 746,
  17694. bottom: 6.4 / 782.0616
  17695. }
  17696. },
  17697. foot: {
  17698. height: math.unit(1.54, "feet"),
  17699. name: "Foot",
  17700. image: {
  17701. source: "./media/characters/dragonien/foot.svg",
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Normal",
  17708. height: math.unit(8 + 4 / 12, "feet"),
  17709. default: true
  17710. },
  17711. {
  17712. name: "Macro",
  17713. height: math.unit(200, "feet")
  17714. },
  17715. {
  17716. name: "Megamacro",
  17717. height: math.unit(1, "mile")
  17718. },
  17719. {
  17720. name: "Gigamacro",
  17721. height: math.unit(1000, "miles")
  17722. },
  17723. ]
  17724. ))
  17725. characterMakers.push(() => makeCharacter(
  17726. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17727. {
  17728. front: {
  17729. height: math.unit(5 + 2 / 12, "feet"),
  17730. weight: math.unit(110, "lb"),
  17731. name: "Front",
  17732. image: {
  17733. source: "./media/characters/desta/front.svg",
  17734. extra: 767 / 726,
  17735. bottom: 11.7 / 779
  17736. }
  17737. },
  17738. back: {
  17739. height: math.unit(5 + 2 / 12, "feet"),
  17740. weight: math.unit(110, "lb"),
  17741. name: "Back",
  17742. image: {
  17743. source: "./media/characters/desta/back.svg",
  17744. extra: 777 / 728,
  17745. bottom: 6 / 784
  17746. }
  17747. },
  17748. frontAlt: {
  17749. height: math.unit(5 + 2 / 12, "feet"),
  17750. weight: math.unit(110, "lb"),
  17751. name: "Front",
  17752. image: {
  17753. source: "./media/characters/desta/front-alt.svg",
  17754. extra: 1482 / 1417
  17755. }
  17756. },
  17757. side: {
  17758. height: math.unit(5 + 2 / 12, "feet"),
  17759. weight: math.unit(110, "lb"),
  17760. name: "Side",
  17761. image: {
  17762. source: "./media/characters/desta/side.svg",
  17763. extra: 2579 / 2491,
  17764. bottom: 0.053
  17765. }
  17766. },
  17767. },
  17768. [
  17769. {
  17770. name: "Micro",
  17771. height: math.unit(6, "inches")
  17772. },
  17773. {
  17774. name: "Normal",
  17775. height: math.unit(5 + 2 / 12, "feet"),
  17776. default: true
  17777. },
  17778. {
  17779. name: "Macro",
  17780. height: math.unit(62, "feet")
  17781. },
  17782. {
  17783. name: "Megamacro",
  17784. height: math.unit(1800, "feet")
  17785. },
  17786. ]
  17787. ))
  17788. characterMakers.push(() => makeCharacter(
  17789. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17790. {
  17791. front: {
  17792. height: math.unit(10, "feet"),
  17793. weight: math.unit(700, "lb"),
  17794. name: "Front",
  17795. image: {
  17796. source: "./media/characters/storm-alystar/front.svg",
  17797. extra: 2112 / 1898,
  17798. bottom: 0.034
  17799. }
  17800. },
  17801. },
  17802. [
  17803. {
  17804. name: "Micro",
  17805. height: math.unit(3.5, "inches")
  17806. },
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(10, "feet"),
  17810. default: true
  17811. },
  17812. {
  17813. name: "Macro",
  17814. height: math.unit(400, "feet")
  17815. },
  17816. {
  17817. name: "Deific",
  17818. height: math.unit(60, "miles")
  17819. },
  17820. ]
  17821. ))
  17822. characterMakers.push(() => makeCharacter(
  17823. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17824. {
  17825. front: {
  17826. height: math.unit(2.35, "meters"),
  17827. weight: math.unit(119, "kg"),
  17828. name: "Front",
  17829. image: {
  17830. source: "./media/characters/ilia/front.svg",
  17831. extra: 1285 / 1255,
  17832. bottom: 0.06
  17833. }
  17834. },
  17835. },
  17836. [
  17837. {
  17838. name: "Normal",
  17839. height: math.unit(2.35, "meters")
  17840. },
  17841. {
  17842. name: "Macro",
  17843. height: math.unit(140, "meters"),
  17844. default: true
  17845. },
  17846. {
  17847. name: "Megamacro",
  17848. height: math.unit(100, "miles")
  17849. },
  17850. ]
  17851. ))
  17852. characterMakers.push(() => makeCharacter(
  17853. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17854. {
  17855. front: {
  17856. height: math.unit(6 + 5 / 12, "feet"),
  17857. weight: math.unit(190, "lb"),
  17858. name: "Front",
  17859. image: {
  17860. source: "./media/characters/kingdead/front.svg",
  17861. extra: 1228 / 1177
  17862. }
  17863. },
  17864. },
  17865. [
  17866. {
  17867. name: "Micro",
  17868. height: math.unit(7, "inches")
  17869. },
  17870. {
  17871. name: "Normal",
  17872. height: math.unit(6 + 5 / 12, "feet")
  17873. },
  17874. {
  17875. name: "Macro",
  17876. height: math.unit(150, "feet"),
  17877. default: true
  17878. },
  17879. {
  17880. name: "Megamacro",
  17881. height: math.unit(200, "miles")
  17882. },
  17883. ]
  17884. ))
  17885. characterMakers.push(() => makeCharacter(
  17886. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17887. {
  17888. front: {
  17889. height: math.unit(8, "feet"),
  17890. weight: math.unit(600, "lb"),
  17891. name: "Front",
  17892. image: {
  17893. source: "./media/characters/kyrehx/front.svg",
  17894. extra: 1195 / 1095,
  17895. bottom: 0.034
  17896. }
  17897. },
  17898. },
  17899. [
  17900. {
  17901. name: "Micro",
  17902. height: math.unit(2, "inches")
  17903. },
  17904. {
  17905. name: "Normal",
  17906. height: math.unit(8, "feet"),
  17907. default: true
  17908. },
  17909. {
  17910. name: "Macro",
  17911. height: math.unit(255, "feet")
  17912. },
  17913. ]
  17914. ))
  17915. characterMakers.push(() => makeCharacter(
  17916. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17917. {
  17918. front: {
  17919. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17920. weight: math.unit(184, "lb"),
  17921. name: "Front",
  17922. image: {
  17923. source: "./media/characters/xang/front.svg",
  17924. extra: 845 / 755
  17925. }
  17926. },
  17927. },
  17928. [
  17929. {
  17930. name: "Normal",
  17931. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17932. default: true
  17933. },
  17934. {
  17935. name: "Macro",
  17936. height: math.unit(0.935 * 146, "feet")
  17937. },
  17938. {
  17939. name: "Megamacro",
  17940. height: math.unit(0.935 * 3, "miles")
  17941. },
  17942. ]
  17943. ))
  17944. characterMakers.push(() => makeCharacter(
  17945. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17946. {
  17947. frontDressed: {
  17948. height: math.unit(5 + 7 / 12, "feet"),
  17949. weight: math.unit(140, "lb"),
  17950. name: "Front (Dressed)",
  17951. image: {
  17952. source: "./media/characters/doc-weardno/front-dressed.svg",
  17953. extra: 263 / 234
  17954. }
  17955. },
  17956. backDressed: {
  17957. height: math.unit(5 + 7 / 12, "feet"),
  17958. weight: math.unit(140, "lb"),
  17959. name: "Back (Dressed)",
  17960. image: {
  17961. source: "./media/characters/doc-weardno/back-dressed.svg",
  17962. extra: 266 / 238
  17963. }
  17964. },
  17965. front: {
  17966. height: math.unit(5 + 7 / 12, "feet"),
  17967. weight: math.unit(140, "lb"),
  17968. name: "Front",
  17969. image: {
  17970. source: "./media/characters/doc-weardno/front.svg",
  17971. extra: 254 / 233
  17972. }
  17973. },
  17974. },
  17975. [
  17976. {
  17977. name: "Micro",
  17978. height: math.unit(3, "inches")
  17979. },
  17980. {
  17981. name: "Normal",
  17982. height: math.unit(5 + 7 / 12, "feet"),
  17983. default: true
  17984. },
  17985. {
  17986. name: "Macro",
  17987. height: math.unit(25, "feet")
  17988. },
  17989. {
  17990. name: "Megamacro",
  17991. height: math.unit(2, "miles")
  17992. },
  17993. ]
  17994. ))
  17995. characterMakers.push(() => makeCharacter(
  17996. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17997. {
  17998. front: {
  17999. height: math.unit(6 + 2 / 12, "feet"),
  18000. weight: math.unit(153, "lb"),
  18001. name: "Front",
  18002. image: {
  18003. source: "./media/characters/seth-whilst/front.svg",
  18004. bottom: 0.07
  18005. }
  18006. },
  18007. },
  18008. [
  18009. {
  18010. name: "Micro",
  18011. height: math.unit(5, "inches")
  18012. },
  18013. {
  18014. name: "Normal",
  18015. height: math.unit(6 + 2 / 12, "feet"),
  18016. default: true
  18017. },
  18018. ]
  18019. ))
  18020. characterMakers.push(() => makeCharacter(
  18021. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18022. {
  18023. front: {
  18024. height: math.unit(3, "inches"),
  18025. weight: math.unit(8, "grams"),
  18026. name: "Front",
  18027. image: {
  18028. source: "./media/characters/pocket-jabari/front.svg",
  18029. extra: 1024 / 974,
  18030. bottom: 0.039
  18031. }
  18032. },
  18033. },
  18034. [
  18035. {
  18036. name: "Minimicro",
  18037. height: math.unit(8, "mm")
  18038. },
  18039. {
  18040. name: "Micro",
  18041. height: math.unit(3, "inches"),
  18042. default: true
  18043. },
  18044. {
  18045. name: "Normal",
  18046. height: math.unit(3, "feet")
  18047. },
  18048. ]
  18049. ))
  18050. characterMakers.push(() => makeCharacter(
  18051. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18052. {
  18053. front: {
  18054. height: math.unit(15, "feet"),
  18055. weight: math.unit(3280, "lb"),
  18056. name: "Front",
  18057. image: {
  18058. source: "./media/characters/sapphy/front.svg",
  18059. extra: 671 / 577,
  18060. bottom: 0.085
  18061. }
  18062. },
  18063. back: {
  18064. height: math.unit(15, "feet"),
  18065. weight: math.unit(3280, "lb"),
  18066. name: "Back",
  18067. image: {
  18068. source: "./media/characters/sapphy/back.svg",
  18069. extra: 631 / 607,
  18070. bottom: 0.045
  18071. }
  18072. },
  18073. },
  18074. [
  18075. {
  18076. name: "Normal",
  18077. height: math.unit(15, "feet")
  18078. },
  18079. {
  18080. name: "Casual Macro",
  18081. height: math.unit(120, "feet")
  18082. },
  18083. {
  18084. name: "Macro",
  18085. height: math.unit(2150, "feet"),
  18086. default: true
  18087. },
  18088. {
  18089. name: "Megamacro",
  18090. height: math.unit(8, "miles")
  18091. },
  18092. {
  18093. name: "Galaxy Mom",
  18094. height: math.unit(6, "megalightyears")
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(6, "feet"),
  18103. weight: math.unit(170, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/kiro/front.svg",
  18107. extra: 1064 / 1012,
  18108. bottom: 0.052
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Micro",
  18115. height: math.unit(6, "inches")
  18116. },
  18117. {
  18118. name: "Normal",
  18119. height: math.unit(6, "feet"),
  18120. default: true
  18121. },
  18122. {
  18123. name: "Macro",
  18124. height: math.unit(72, "feet")
  18125. },
  18126. ]
  18127. ))
  18128. characterMakers.push(() => makeCharacter(
  18129. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18130. {
  18131. front: {
  18132. height: math.unit(5 + 9 / 12, "feet"),
  18133. weight: math.unit(175, "lb"),
  18134. name: "Front",
  18135. image: {
  18136. source: "./media/characters/irishfox/front.svg",
  18137. extra: 1912 / 1680,
  18138. bottom: 0.02
  18139. }
  18140. },
  18141. },
  18142. [
  18143. {
  18144. name: "Nano",
  18145. height: math.unit(1, "mm")
  18146. },
  18147. {
  18148. name: "Micro",
  18149. height: math.unit(2, "inches")
  18150. },
  18151. {
  18152. name: "Normal",
  18153. height: math.unit(5 + 9 / 12, "feet"),
  18154. default: true
  18155. },
  18156. {
  18157. name: "Macro",
  18158. height: math.unit(45, "feet")
  18159. },
  18160. ]
  18161. ))
  18162. characterMakers.push(() => makeCharacter(
  18163. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18164. {
  18165. front: {
  18166. height: math.unit(6 + 1 / 12, "feet"),
  18167. weight: math.unit(150, "lb"),
  18168. name: "Front",
  18169. image: {
  18170. source: "./media/characters/aronai-sieyes/front.svg",
  18171. extra: 1556 / 1480,
  18172. bottom: 0.015
  18173. }
  18174. },
  18175. side: {
  18176. height: math.unit(6 + 1 / 12, "feet"),
  18177. weight: math.unit(150, "lb"),
  18178. name: "Side",
  18179. image: {
  18180. source: "./media/characters/aronai-sieyes/side.svg",
  18181. extra: 1433 / 1390,
  18182. bottom: 0.0393
  18183. }
  18184. },
  18185. back: {
  18186. height: math.unit(6 + 1 / 12, "feet"),
  18187. weight: math.unit(150, "lb"),
  18188. name: "Back",
  18189. image: {
  18190. source: "./media/characters/aronai-sieyes/back.svg",
  18191. extra: 1544 / 1494,
  18192. bottom: 0.02
  18193. }
  18194. },
  18195. frontClothed: {
  18196. height: math.unit(6 + 1 / 12, "feet"),
  18197. weight: math.unit(150, "lb"),
  18198. name: "Front (Clothed)",
  18199. image: {
  18200. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18201. extra: 1582 / 1527
  18202. }
  18203. },
  18204. feral: {
  18205. height: math.unit(18, "feet"),
  18206. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18207. name: "Feral",
  18208. image: {
  18209. source: "./media/characters/aronai-sieyes/feral.svg",
  18210. extra: 1530 / 1240,
  18211. bottom: 0.035
  18212. }
  18213. },
  18214. },
  18215. [
  18216. {
  18217. name: "Micro",
  18218. height: math.unit(2, "inches")
  18219. },
  18220. {
  18221. name: "Normal",
  18222. height: math.unit(6 + 1 / 12, "feet"),
  18223. default: true
  18224. }
  18225. ]
  18226. ))
  18227. characterMakers.push(() => makeCharacter(
  18228. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18229. {
  18230. front: {
  18231. height: math.unit(12, "feet"),
  18232. weight: math.unit(410, "kg"),
  18233. name: "Front",
  18234. image: {
  18235. source: "./media/characters/xuna/front.svg",
  18236. extra: 2184 / 1980
  18237. }
  18238. },
  18239. side: {
  18240. height: math.unit(12, "feet"),
  18241. weight: math.unit(410, "kg"),
  18242. name: "Side",
  18243. image: {
  18244. source: "./media/characters/xuna/side.svg",
  18245. extra: 2184 / 1980
  18246. }
  18247. },
  18248. back: {
  18249. height: math.unit(12, "feet"),
  18250. weight: math.unit(410, "kg"),
  18251. name: "Back",
  18252. image: {
  18253. source: "./media/characters/xuna/back.svg",
  18254. extra: 2184 / 1980
  18255. }
  18256. },
  18257. },
  18258. [
  18259. {
  18260. name: "Nano glow",
  18261. height: math.unit(10, "nm")
  18262. },
  18263. {
  18264. name: "Micro floof",
  18265. height: math.unit(0.3, "m")
  18266. },
  18267. {
  18268. name: "Huggable softy boi",
  18269. height: math.unit(3.6576, "m"),
  18270. default: true
  18271. },
  18272. {
  18273. name: "Admirable floof",
  18274. height: math.unit(80, "meters")
  18275. },
  18276. {
  18277. name: "Gentle macro",
  18278. height: math.unit(300, "meters")
  18279. },
  18280. {
  18281. name: "Very careful floof",
  18282. height: math.unit(3200, "meters")
  18283. },
  18284. {
  18285. name: "The mega floof",
  18286. height: math.unit(36000, "meters")
  18287. },
  18288. {
  18289. name: "Giga-fur-Wicker",
  18290. height: math.unit(4800000, "meters")
  18291. },
  18292. {
  18293. name: "Licky world",
  18294. height: math.unit(20000000, "meters")
  18295. },
  18296. {
  18297. name: "Floofy cyan sun",
  18298. height: math.unit(1500000000, "meters")
  18299. },
  18300. {
  18301. name: "Milky Wicker",
  18302. height: math.unit(1000000000000000000000, "meters")
  18303. },
  18304. {
  18305. name: "The observing Wicker",
  18306. height: math.unit(999999999999999999999999999, "meters")
  18307. },
  18308. ]
  18309. ))
  18310. characterMakers.push(() => makeCharacter(
  18311. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18312. {
  18313. front: {
  18314. height: math.unit(5 + 9 / 12, "feet"),
  18315. weight: math.unit(150, "lb"),
  18316. name: "Front",
  18317. image: {
  18318. source: "./media/characters/arokha-sieyes/front.svg",
  18319. extra: 1425 / 1284,
  18320. bottom: 0.05
  18321. }
  18322. },
  18323. },
  18324. [
  18325. {
  18326. name: "Normal",
  18327. height: math.unit(5 + 9 / 12, "feet")
  18328. },
  18329. {
  18330. name: "Macro",
  18331. height: math.unit(30, "meters"),
  18332. default: true
  18333. },
  18334. ]
  18335. ))
  18336. characterMakers.push(() => makeCharacter(
  18337. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18338. {
  18339. front: {
  18340. height: math.unit(6, "feet"),
  18341. weight: math.unit(180, "lb"),
  18342. name: "Front",
  18343. image: {
  18344. source: "./media/characters/arokh-sieyes/front.svg",
  18345. extra: 1830 / 1769,
  18346. bottom: 0.01
  18347. }
  18348. },
  18349. },
  18350. [
  18351. {
  18352. name: "Normal",
  18353. height: math.unit(6, "feet")
  18354. },
  18355. {
  18356. name: "Macro",
  18357. height: math.unit(30, "meters"),
  18358. default: true
  18359. },
  18360. ]
  18361. ))
  18362. characterMakers.push(() => makeCharacter(
  18363. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18364. {
  18365. side: {
  18366. height: math.unit(13 + 1 / 12, "feet"),
  18367. weight: math.unit(8.5, "tonnes"),
  18368. name: "Side",
  18369. image: {
  18370. source: "./media/characters/goldeneye/side.svg",
  18371. extra: 1182 / 778,
  18372. bottom: 0.067
  18373. }
  18374. },
  18375. paw: {
  18376. height: math.unit(3.4, "feet"),
  18377. name: "Paw",
  18378. image: {
  18379. source: "./media/characters/goldeneye/paw.svg"
  18380. }
  18381. },
  18382. },
  18383. [
  18384. {
  18385. name: "Normal",
  18386. height: math.unit(13 + 1 / 12, "feet"),
  18387. default: true
  18388. },
  18389. ]
  18390. ))
  18391. characterMakers.push(() => makeCharacter(
  18392. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18393. {
  18394. front: {
  18395. height: math.unit(6 + 1 / 12, "feet"),
  18396. weight: math.unit(210, "lb"),
  18397. name: "Front",
  18398. image: {
  18399. source: "./media/characters/leonardo-lycheborne/front.svg",
  18400. extra: 390 / 365,
  18401. bottom: 0.032
  18402. }
  18403. },
  18404. side: {
  18405. height: math.unit(6 + 1 / 12, "feet"),
  18406. weight: math.unit(210, "lb"),
  18407. name: "Side",
  18408. image: {
  18409. source: "./media/characters/leonardo-lycheborne/side.svg",
  18410. extra: 390 / 365,
  18411. bottom: 0.005
  18412. }
  18413. },
  18414. back: {
  18415. height: math.unit(6 + 1 / 12, "feet"),
  18416. weight: math.unit(210, "lb"),
  18417. name: "Back",
  18418. image: {
  18419. source: "./media/characters/leonardo-lycheborne/back.svg",
  18420. extra: 392 / 366,
  18421. bottom: 0.01
  18422. }
  18423. },
  18424. hand: {
  18425. height: math.unit(1.08, "feet"),
  18426. name: "Hand",
  18427. image: {
  18428. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18429. }
  18430. },
  18431. foot: {
  18432. height: math.unit(1.32, "feet"),
  18433. name: "Foot",
  18434. image: {
  18435. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18436. }
  18437. },
  18438. were: {
  18439. height: math.unit(20, "feet"),
  18440. weight: math.unit(7800, "lb"),
  18441. name: "Were",
  18442. image: {
  18443. source: "./media/characters/leonardo-lycheborne/were.svg",
  18444. extra: 308 / 294,
  18445. bottom: 0.048
  18446. }
  18447. },
  18448. feral: {
  18449. height: math.unit(7.5, "feet"),
  18450. weight: math.unit(600, "lb"),
  18451. name: "Feral",
  18452. image: {
  18453. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18454. extra: 210 / 186,
  18455. bottom: 0.108
  18456. }
  18457. },
  18458. taur: {
  18459. height: math.unit(11, "feet"),
  18460. weight: math.unit(3300, "lb"),
  18461. name: "Taur",
  18462. image: {
  18463. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18464. extra: 320 / 303,
  18465. bottom: 0.025
  18466. }
  18467. },
  18468. barghest: {
  18469. height: math.unit(11, "feet"),
  18470. weight: math.unit(1300, "lb"),
  18471. name: "Barghest",
  18472. image: {
  18473. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18474. extra: 323 / 302,
  18475. bottom: 0.027
  18476. }
  18477. },
  18478. dick: {
  18479. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18480. name: "Dick",
  18481. image: {
  18482. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18483. }
  18484. },
  18485. dickWere: {
  18486. height: math.unit((20) / 3.8, "feet"),
  18487. name: "Dick (Were)",
  18488. image: {
  18489. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18490. }
  18491. },
  18492. },
  18493. [
  18494. {
  18495. name: "Normal",
  18496. height: math.unit(6 + 1 / 12, "feet"),
  18497. default: true
  18498. },
  18499. ]
  18500. ))
  18501. characterMakers.push(() => makeCharacter(
  18502. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18503. {
  18504. front: {
  18505. height: math.unit(10, "feet"),
  18506. weight: math.unit(350, "lb"),
  18507. name: "Front",
  18508. image: {
  18509. source: "./media/characters/jet/front.svg",
  18510. extra: 2050 / 1980,
  18511. bottom: 0.013
  18512. }
  18513. },
  18514. back: {
  18515. height: math.unit(10, "feet"),
  18516. weight: math.unit(350, "lb"),
  18517. name: "Back",
  18518. image: {
  18519. source: "./media/characters/jet/back.svg",
  18520. extra: 2050 / 1980,
  18521. bottom: 0.013
  18522. }
  18523. },
  18524. },
  18525. [
  18526. {
  18527. name: "Micro",
  18528. height: math.unit(6, "inches")
  18529. },
  18530. {
  18531. name: "Normal",
  18532. height: math.unit(10, "feet"),
  18533. default: true
  18534. },
  18535. {
  18536. name: "Macro",
  18537. height: math.unit(100, "feet")
  18538. },
  18539. ]
  18540. ))
  18541. characterMakers.push(() => makeCharacter(
  18542. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18543. {
  18544. front: {
  18545. height: math.unit(15, "feet"),
  18546. weight: math.unit(2800, "lb"),
  18547. name: "Front",
  18548. image: {
  18549. source: "./media/characters/tanarath/front.svg",
  18550. extra: 2392 / 2220,
  18551. bottom: 0.03
  18552. }
  18553. },
  18554. back: {
  18555. height: math.unit(15, "feet"),
  18556. weight: math.unit(2800, "lb"),
  18557. name: "Back",
  18558. image: {
  18559. source: "./media/characters/tanarath/back.svg",
  18560. extra: 2392 / 2220,
  18561. bottom: 0.03
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Normal",
  18568. height: math.unit(15, "feet"),
  18569. default: true
  18570. },
  18571. ]
  18572. ))
  18573. characterMakers.push(() => makeCharacter(
  18574. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18575. {
  18576. front: {
  18577. height: math.unit(7 + 1 / 12, "feet"),
  18578. weight: math.unit(175, "lb"),
  18579. name: "Front",
  18580. image: {
  18581. source: "./media/characters/patty-cattybatty/front.svg",
  18582. extra: 908 / 874,
  18583. bottom: 0.025
  18584. }
  18585. },
  18586. },
  18587. [
  18588. {
  18589. name: "Micro",
  18590. height: math.unit(1, "inch")
  18591. },
  18592. {
  18593. name: "Normal",
  18594. height: math.unit(7 + 1 / 12, "feet")
  18595. },
  18596. {
  18597. name: "Mini Macro",
  18598. height: math.unit(155, "feet")
  18599. },
  18600. {
  18601. name: "Macro",
  18602. height: math.unit(1077, "feet")
  18603. },
  18604. {
  18605. name: "Mega Macro",
  18606. height: math.unit(47650, "feet"),
  18607. default: true
  18608. },
  18609. {
  18610. name: "Giga Macro",
  18611. height: math.unit(440, "miles")
  18612. },
  18613. {
  18614. name: "Tera Macro",
  18615. height: math.unit(8700, "miles")
  18616. },
  18617. {
  18618. name: "Planetary Macro",
  18619. height: math.unit(32700, "miles")
  18620. },
  18621. {
  18622. name: "Solar Macro",
  18623. height: math.unit(550000, "miles")
  18624. },
  18625. {
  18626. name: "Celestial Macro",
  18627. height: math.unit(2.5, "AU")
  18628. },
  18629. ]
  18630. ))
  18631. characterMakers.push(() => makeCharacter(
  18632. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18633. {
  18634. front: {
  18635. height: math.unit(4 + 5 / 12, "feet"),
  18636. weight: math.unit(90, "lb"),
  18637. name: "Front",
  18638. image: {
  18639. source: "./media/characters/cappu/front.svg",
  18640. extra: 1247 / 1152,
  18641. bottom: 0.012
  18642. }
  18643. },
  18644. },
  18645. [
  18646. {
  18647. name: "Normal",
  18648. height: math.unit(4 + 5 / 12, "feet"),
  18649. default: true
  18650. },
  18651. ]
  18652. ))
  18653. characterMakers.push(() => makeCharacter(
  18654. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18655. {
  18656. frontDressed: {
  18657. height: math.unit(70, "cm"),
  18658. weight: math.unit(6, "kg"),
  18659. name: "Front (Dressed)",
  18660. image: {
  18661. source: "./media/characters/sebi/front-dressed.svg",
  18662. extra: 713.5 / 686.5,
  18663. bottom: 0.003
  18664. }
  18665. },
  18666. front: {
  18667. height: math.unit(70, "cm"),
  18668. weight: math.unit(5, "kg"),
  18669. name: "Front",
  18670. image: {
  18671. source: "./media/characters/sebi/front.svg",
  18672. extra: 713.5 / 686.5,
  18673. bottom: 0.003
  18674. }
  18675. }
  18676. },
  18677. [
  18678. {
  18679. name: "Normal",
  18680. height: math.unit(70, "cm"),
  18681. default: true
  18682. },
  18683. {
  18684. name: "Macro",
  18685. height: math.unit(8, "meters")
  18686. },
  18687. ]
  18688. ))
  18689. characterMakers.push(() => makeCharacter(
  18690. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18691. {
  18692. front: {
  18693. height: math.unit(6, "feet"),
  18694. weight: math.unit(150, "lb"),
  18695. name: "Front",
  18696. image: {
  18697. source: "./media/characters/typhek/front.svg",
  18698. extra: 1948 / 1929,
  18699. bottom: 0.025
  18700. }
  18701. },
  18702. side: {
  18703. height: math.unit(6, "feet"),
  18704. weight: math.unit(150, "lb"),
  18705. name: "Side",
  18706. image: {
  18707. source: "./media/characters/typhek/side.svg",
  18708. extra: 2034 / 2010,
  18709. bottom: 0.003
  18710. }
  18711. },
  18712. back: {
  18713. height: math.unit(6, "feet"),
  18714. weight: math.unit(150, "lb"),
  18715. name: "Back",
  18716. image: {
  18717. source: "./media/characters/typhek/back.svg",
  18718. extra: 2005 / 1978,
  18719. bottom: 0.004
  18720. }
  18721. },
  18722. palm: {
  18723. height: math.unit(1.2, "feet"),
  18724. name: "Palm",
  18725. image: {
  18726. source: "./media/characters/typhek/palm.svg"
  18727. }
  18728. },
  18729. fist: {
  18730. height: math.unit(1.1, "feet"),
  18731. name: "Fist",
  18732. image: {
  18733. source: "./media/characters/typhek/fist.svg"
  18734. }
  18735. },
  18736. foot: {
  18737. height: math.unit(1.57, "feet"),
  18738. name: "Foot",
  18739. image: {
  18740. source: "./media/characters/typhek/foot.svg"
  18741. }
  18742. },
  18743. sole: {
  18744. height: math.unit(2.05, "feet"),
  18745. name: "Sole",
  18746. image: {
  18747. source: "./media/characters/typhek/sole.svg"
  18748. }
  18749. },
  18750. },
  18751. [
  18752. {
  18753. name: "Macro",
  18754. height: math.unit(40, "stories"),
  18755. default: true
  18756. },
  18757. {
  18758. name: "Megamacro",
  18759. height: math.unit(1, "mile")
  18760. },
  18761. {
  18762. name: "Gigamacro",
  18763. height: math.unit(4000, "solarradii")
  18764. },
  18765. {
  18766. name: "Universal",
  18767. height: math.unit(1.1, "universes")
  18768. }
  18769. ]
  18770. ))
  18771. characterMakers.push(() => makeCharacter(
  18772. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18773. {
  18774. side: {
  18775. height: math.unit(5 + 7 / 12, "feet"),
  18776. weight: math.unit(150, "lb"),
  18777. name: "Side",
  18778. image: {
  18779. source: "./media/characters/kassy/side.svg",
  18780. extra: 1280 / 1225,
  18781. bottom: 0.002
  18782. }
  18783. },
  18784. front: {
  18785. height: math.unit(5 + 7 / 12, "feet"),
  18786. weight: math.unit(150, "lb"),
  18787. name: "Front",
  18788. image: {
  18789. source: "./media/characters/kassy/front.svg",
  18790. extra: 1280 / 1225,
  18791. bottom: 0.025
  18792. }
  18793. },
  18794. back: {
  18795. height: math.unit(5 + 7 / 12, "feet"),
  18796. weight: math.unit(150, "lb"),
  18797. name: "Back",
  18798. image: {
  18799. source: "./media/characters/kassy/back.svg",
  18800. extra: 1280 / 1225,
  18801. bottom: 0.002
  18802. }
  18803. },
  18804. foot: {
  18805. height: math.unit(1.266, "feet"),
  18806. name: "Foot",
  18807. image: {
  18808. source: "./media/characters/kassy/foot.svg"
  18809. }
  18810. },
  18811. },
  18812. [
  18813. {
  18814. name: "Normal",
  18815. height: math.unit(5 + 7 / 12, "feet")
  18816. },
  18817. {
  18818. name: "Macro",
  18819. height: math.unit(137, "feet"),
  18820. default: true
  18821. },
  18822. {
  18823. name: "Megamacro",
  18824. height: math.unit(1, "mile")
  18825. },
  18826. ]
  18827. ))
  18828. characterMakers.push(() => makeCharacter(
  18829. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18830. {
  18831. front: {
  18832. height: math.unit(6 + 1 / 12, "feet"),
  18833. weight: math.unit(200, "lb"),
  18834. name: "Front",
  18835. image: {
  18836. source: "./media/characters/neil/front.svg",
  18837. extra: 1326 / 1250,
  18838. bottom: 0.023
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(6 + 1 / 12, "feet"),
  18846. default: true
  18847. },
  18848. {
  18849. name: "Macro",
  18850. height: math.unit(200, "feet")
  18851. },
  18852. ]
  18853. ))
  18854. characterMakers.push(() => makeCharacter(
  18855. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18856. {
  18857. front: {
  18858. height: math.unit(5 + 9 / 12, "feet"),
  18859. weight: math.unit(190, "lb"),
  18860. name: "Front",
  18861. image: {
  18862. source: "./media/characters/atticus/front.svg",
  18863. extra: 2934 / 2785,
  18864. bottom: 0.025
  18865. }
  18866. },
  18867. },
  18868. [
  18869. {
  18870. name: "Normal",
  18871. height: math.unit(5 + 9 / 12, "feet"),
  18872. default: true
  18873. },
  18874. {
  18875. name: "Macro",
  18876. height: math.unit(180, "feet")
  18877. },
  18878. ]
  18879. ))
  18880. characterMakers.push(() => makeCharacter(
  18881. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18882. {
  18883. side: {
  18884. height: math.unit(9, "feet"),
  18885. weight: math.unit(650, "lb"),
  18886. name: "Side",
  18887. image: {
  18888. source: "./media/characters/milo/side.svg",
  18889. extra: 2644 / 2310,
  18890. bottom: 0.032
  18891. }
  18892. },
  18893. },
  18894. [
  18895. {
  18896. name: "Normal",
  18897. height: math.unit(9, "feet"),
  18898. default: true
  18899. },
  18900. {
  18901. name: "Macro",
  18902. height: math.unit(300, "feet")
  18903. },
  18904. ]
  18905. ))
  18906. characterMakers.push(() => makeCharacter(
  18907. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18908. {
  18909. side: {
  18910. height: math.unit(8, "meters"),
  18911. weight: math.unit(90000, "kg"),
  18912. name: "Side",
  18913. image: {
  18914. source: "./media/characters/ijzer/side.svg",
  18915. extra: 2756 / 1600,
  18916. bottom: 0.01
  18917. }
  18918. },
  18919. },
  18920. [
  18921. {
  18922. name: "Small",
  18923. height: math.unit(3, "meters")
  18924. },
  18925. {
  18926. name: "Normal",
  18927. height: math.unit(8, "meters"),
  18928. default: true
  18929. },
  18930. {
  18931. name: "Normal+",
  18932. height: math.unit(10, "meters")
  18933. },
  18934. {
  18935. name: "Bigger",
  18936. height: math.unit(24, "meters")
  18937. },
  18938. {
  18939. name: "Huge",
  18940. height: math.unit(80, "meters")
  18941. },
  18942. ]
  18943. ))
  18944. characterMakers.push(() => makeCharacter(
  18945. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18946. {
  18947. front: {
  18948. height: math.unit(6 + 2 / 12, "feet"),
  18949. weight: math.unit(153, "lb"),
  18950. name: "Front",
  18951. image: {
  18952. source: "./media/characters/luca-cervicum/front.svg",
  18953. extra: 370 / 327,
  18954. bottom: 0.015
  18955. }
  18956. },
  18957. back: {
  18958. height: math.unit(6 + 2 / 12, "feet"),
  18959. weight: math.unit(153, "lb"),
  18960. name: "Back",
  18961. image: {
  18962. source: "./media/characters/luca-cervicum/back.svg",
  18963. extra: 367 / 333,
  18964. bottom: 0.005
  18965. }
  18966. },
  18967. frontGear: {
  18968. height: math.unit(6 + 2 / 12, "feet"),
  18969. weight: math.unit(173, "lb"),
  18970. name: "Front (Gear)",
  18971. image: {
  18972. source: "./media/characters/luca-cervicum/front-gear.svg",
  18973. extra: 377 / 333,
  18974. bottom: 0.006
  18975. }
  18976. },
  18977. },
  18978. [
  18979. {
  18980. name: "Normal",
  18981. height: math.unit(6 + 2 / 12, "feet"),
  18982. default: true
  18983. },
  18984. ]
  18985. ))
  18986. characterMakers.push(() => makeCharacter(
  18987. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18988. {
  18989. front: {
  18990. height: math.unit(6 + 1 / 12, "feet"),
  18991. weight: math.unit(304, "lb"),
  18992. name: "Front",
  18993. image: {
  18994. source: "./media/characters/oliver/front.svg",
  18995. extra: 157 / 143,
  18996. bottom: 0.08
  18997. }
  18998. },
  18999. },
  19000. [
  19001. {
  19002. name: "Normal",
  19003. height: math.unit(6 + 1 / 12, "feet"),
  19004. default: true
  19005. },
  19006. ]
  19007. ))
  19008. characterMakers.push(() => makeCharacter(
  19009. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19010. {
  19011. front: {
  19012. height: math.unit(5 + 7 / 12, "feet"),
  19013. weight: math.unit(140, "lb"),
  19014. name: "Front",
  19015. image: {
  19016. source: "./media/characters/shane/front.svg",
  19017. extra: 304 / 289,
  19018. bottom: 0.005
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(5 + 7 / 12, "feet"),
  19026. default: true
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19032. {
  19033. front: {
  19034. height: math.unit(5 + 9 / 12, "feet"),
  19035. weight: math.unit(178, "lb"),
  19036. name: "Front",
  19037. image: {
  19038. source: "./media/characters/shin/front.svg",
  19039. extra: 159 / 151,
  19040. bottom: 0.015
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Normal",
  19047. height: math.unit(5 + 9 / 12, "feet"),
  19048. default: true
  19049. },
  19050. ]
  19051. ))
  19052. characterMakers.push(() => makeCharacter(
  19053. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19054. {
  19055. front: {
  19056. height: math.unit(5 + 10 / 12, "feet"),
  19057. weight: math.unit(168, "lb"),
  19058. name: "Front",
  19059. image: {
  19060. source: "./media/characters/xerxes/front.svg",
  19061. extra: 282 / 260,
  19062. bottom: 0.045
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(5 + 10 / 12, "feet"),
  19070. default: true
  19071. },
  19072. ]
  19073. ))
  19074. characterMakers.push(() => makeCharacter(
  19075. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19076. {
  19077. front: {
  19078. height: math.unit(6 + 7 / 12, "feet"),
  19079. weight: math.unit(208, "lb"),
  19080. name: "Front",
  19081. image: {
  19082. source: "./media/characters/chaska/front.svg",
  19083. extra: 332 / 319,
  19084. bottom: 0.015
  19085. }
  19086. },
  19087. },
  19088. [
  19089. {
  19090. name: "Normal",
  19091. height: math.unit(6 + 7 / 12, "feet"),
  19092. default: true
  19093. },
  19094. ]
  19095. ))
  19096. characterMakers.push(() => makeCharacter(
  19097. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19098. {
  19099. front: {
  19100. height: math.unit(5 + 8 / 12, "feet"),
  19101. weight: math.unit(208, "lb"),
  19102. name: "Front",
  19103. image: {
  19104. source: "./media/characters/enuk/front.svg",
  19105. extra: 437 / 406,
  19106. bottom: 0.02
  19107. }
  19108. },
  19109. },
  19110. [
  19111. {
  19112. name: "Normal",
  19113. height: math.unit(5 + 8 / 12, "feet"),
  19114. default: true
  19115. },
  19116. ]
  19117. ))
  19118. characterMakers.push(() => makeCharacter(
  19119. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19120. {
  19121. front: {
  19122. height: math.unit(5 + 10 / 12, "feet"),
  19123. weight: math.unit(252, "lb"),
  19124. name: "Front",
  19125. image: {
  19126. source: "./media/characters/bruun/front.svg",
  19127. extra: 197 / 187,
  19128. bottom: 0.012
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Normal",
  19135. height: math.unit(5 + 10 / 12, "feet"),
  19136. default: true
  19137. },
  19138. ]
  19139. ))
  19140. characterMakers.push(() => makeCharacter(
  19141. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19142. {
  19143. front: {
  19144. height: math.unit(6 + 10 / 12, "feet"),
  19145. weight: math.unit(255, "lb"),
  19146. name: "Front",
  19147. image: {
  19148. source: "./media/characters/alexeev/front.svg",
  19149. extra: 213 / 200,
  19150. bottom: 0.05
  19151. }
  19152. },
  19153. },
  19154. [
  19155. {
  19156. name: "Normal",
  19157. height: math.unit(6 + 10 / 12, "feet"),
  19158. default: true
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19164. {
  19165. front: {
  19166. height: math.unit(2 + 8 / 12, "feet"),
  19167. weight: math.unit(22, "lb"),
  19168. name: "Front",
  19169. image: {
  19170. source: "./media/characters/evelyn/front.svg",
  19171. extra: 208 / 180
  19172. }
  19173. },
  19174. },
  19175. [
  19176. {
  19177. name: "Normal",
  19178. height: math.unit(2 + 8 / 12, "feet"),
  19179. default: true
  19180. },
  19181. ]
  19182. ))
  19183. characterMakers.push(() => makeCharacter(
  19184. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19185. {
  19186. front: {
  19187. height: math.unit(5 + 9 / 12, "feet"),
  19188. weight: math.unit(139, "lb"),
  19189. name: "Front",
  19190. image: {
  19191. source: "./media/characters/inca/front.svg",
  19192. extra: 294 / 291,
  19193. bottom: 0.03
  19194. }
  19195. },
  19196. },
  19197. [
  19198. {
  19199. name: "Normal",
  19200. height: math.unit(5 + 9 / 12, "feet"),
  19201. default: true
  19202. },
  19203. ]
  19204. ))
  19205. characterMakers.push(() => makeCharacter(
  19206. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19207. {
  19208. front: {
  19209. height: math.unit(5 + 1 / 12, "feet"),
  19210. weight: math.unit(84, "lb"),
  19211. name: "Front",
  19212. image: {
  19213. source: "./media/characters/magdalene/front.svg",
  19214. extra: 293 / 273
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(5 + 1 / 12, "feet"),
  19222. default: true
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19228. {
  19229. front: {
  19230. height: math.unit(6 + 3 / 12, "feet"),
  19231. weight: math.unit(185, "lb"),
  19232. name: "Front",
  19233. image: {
  19234. source: "./media/characters/mera/front.svg",
  19235. extra: 291 / 277,
  19236. bottom: 0.03
  19237. }
  19238. },
  19239. },
  19240. [
  19241. {
  19242. name: "Normal",
  19243. height: math.unit(6 + 3 / 12, "feet"),
  19244. default: true
  19245. },
  19246. ]
  19247. ))
  19248. characterMakers.push(() => makeCharacter(
  19249. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19250. {
  19251. front: {
  19252. height: math.unit(6 + 7 / 12, "feet"),
  19253. weight: math.unit(160, "lb"),
  19254. name: "Front",
  19255. image: {
  19256. source: "./media/characters/ceres/front.svg",
  19257. extra: 1023 / 950,
  19258. bottom: 0.027
  19259. }
  19260. },
  19261. back: {
  19262. height: math.unit(6 + 7 / 12, "feet"),
  19263. weight: math.unit(160, "lb"),
  19264. name: "Back",
  19265. image: {
  19266. source: "./media/characters/ceres/back.svg",
  19267. extra: 1023 / 950
  19268. }
  19269. },
  19270. },
  19271. [
  19272. {
  19273. name: "Normal",
  19274. height: math.unit(6 + 7 / 12, "feet"),
  19275. default: true
  19276. },
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19281. {
  19282. front: {
  19283. height: math.unit(5 + 10 / 12, "feet"),
  19284. weight: math.unit(150, "lb"),
  19285. name: "Front",
  19286. image: {
  19287. source: "./media/characters/kris/front.svg",
  19288. extra: 885 / 803,
  19289. bottom: 0.03
  19290. }
  19291. },
  19292. },
  19293. [
  19294. {
  19295. name: "Normal",
  19296. height: math.unit(5 + 10 / 12, "feet"),
  19297. default: true
  19298. },
  19299. ]
  19300. ))
  19301. characterMakers.push(() => makeCharacter(
  19302. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19303. {
  19304. front: {
  19305. height: math.unit(7, "feet"),
  19306. weight: math.unit(120, "kg"),
  19307. name: "Front",
  19308. image: {
  19309. source: "./media/characters/taluthus/front.svg",
  19310. extra: 903 / 833,
  19311. bottom: 0.015
  19312. }
  19313. },
  19314. },
  19315. [
  19316. {
  19317. name: "Normal",
  19318. height: math.unit(7, "feet"),
  19319. default: true
  19320. },
  19321. {
  19322. name: "Macro",
  19323. height: math.unit(300, "feet")
  19324. },
  19325. ]
  19326. ))
  19327. characterMakers.push(() => makeCharacter(
  19328. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19329. {
  19330. front: {
  19331. height: math.unit(5 + 9 / 12, "feet"),
  19332. weight: math.unit(145, "lb"),
  19333. name: "Front",
  19334. image: {
  19335. source: "./media/characters/dawn/front.svg",
  19336. extra: 2094 / 2016,
  19337. bottom: 0.025
  19338. }
  19339. },
  19340. back: {
  19341. height: math.unit(5 + 9 / 12, "feet"),
  19342. weight: math.unit(160, "lb"),
  19343. name: "Back",
  19344. image: {
  19345. source: "./media/characters/dawn/back.svg",
  19346. extra: 2112 / 2080,
  19347. bottom: 0.005
  19348. }
  19349. },
  19350. },
  19351. [
  19352. {
  19353. name: "Normal",
  19354. height: math.unit(6 + 7 / 12, "feet"),
  19355. default: true
  19356. },
  19357. ]
  19358. ))
  19359. characterMakers.push(() => makeCharacter(
  19360. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19361. {
  19362. anthro: {
  19363. height: math.unit(8 + 3 / 12, "feet"),
  19364. weight: math.unit(450, "lb"),
  19365. name: "Anthro",
  19366. image: {
  19367. source: "./media/characters/arador/anthro.svg",
  19368. extra: 1835 / 1718,
  19369. bottom: 0.025
  19370. }
  19371. },
  19372. feral: {
  19373. height: math.unit(4, "feet"),
  19374. weight: math.unit(200, "lb"),
  19375. name: "Feral",
  19376. image: {
  19377. source: "./media/characters/arador/feral.svg",
  19378. extra: 1683 / 1514,
  19379. bottom: 0.07
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Normal",
  19386. height: math.unit(8 + 3 / 12, "feet")
  19387. },
  19388. {
  19389. name: "Macro",
  19390. height: math.unit(82.5, "feet"),
  19391. default: true
  19392. },
  19393. ]
  19394. ))
  19395. characterMakers.push(() => makeCharacter(
  19396. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19397. {
  19398. front: {
  19399. height: math.unit(5 + 10 / 12, "feet"),
  19400. weight: math.unit(125, "lb"),
  19401. name: "Front",
  19402. image: {
  19403. source: "./media/characters/dharsi/front.svg",
  19404. extra: 716 / 630,
  19405. bottom: 0.035
  19406. }
  19407. },
  19408. },
  19409. [
  19410. {
  19411. name: "Nano",
  19412. height: math.unit(100, "nm")
  19413. },
  19414. {
  19415. name: "Micro",
  19416. height: math.unit(2, "inches")
  19417. },
  19418. {
  19419. name: "Normal",
  19420. height: math.unit(5 + 10 / 12, "feet"),
  19421. default: true
  19422. },
  19423. {
  19424. name: "Macro",
  19425. height: math.unit(1000, "feet")
  19426. },
  19427. {
  19428. name: "Megamacro",
  19429. height: math.unit(10, "miles")
  19430. },
  19431. {
  19432. name: "Gigamacro",
  19433. height: math.unit(3000, "miles")
  19434. },
  19435. {
  19436. name: "Teramacro",
  19437. height: math.unit(500000, "miles")
  19438. },
  19439. {
  19440. name: "Teramacro+",
  19441. height: math.unit(30, "galaxies")
  19442. },
  19443. ]
  19444. ))
  19445. characterMakers.push(() => makeCharacter(
  19446. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19447. {
  19448. front: {
  19449. height: math.unit(6, "feet"),
  19450. weight: math.unit(150, "lb"),
  19451. name: "Front",
  19452. image: {
  19453. source: "./media/characters/deathy/front.svg",
  19454. extra: 1552 / 1463,
  19455. bottom: 0.025
  19456. }
  19457. },
  19458. side: {
  19459. height: math.unit(6, "feet"),
  19460. weight: math.unit(150, "lb"),
  19461. name: "Side",
  19462. image: {
  19463. source: "./media/characters/deathy/side.svg",
  19464. extra: 1604 / 1455,
  19465. bottom: 0.025
  19466. }
  19467. },
  19468. back: {
  19469. height: math.unit(6, "feet"),
  19470. weight: math.unit(150, "lb"),
  19471. name: "Back",
  19472. image: {
  19473. source: "./media/characters/deathy/back.svg",
  19474. extra: 1580 / 1463,
  19475. bottom: 0.005
  19476. }
  19477. },
  19478. },
  19479. [
  19480. {
  19481. name: "Micro",
  19482. height: math.unit(5, "millimeters")
  19483. },
  19484. {
  19485. name: "Normal",
  19486. height: math.unit(6 + 5 / 12, "feet"),
  19487. default: true
  19488. },
  19489. ]
  19490. ))
  19491. characterMakers.push(() => makeCharacter(
  19492. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19493. {
  19494. front: {
  19495. height: math.unit(16, "feet"),
  19496. weight: math.unit(4000, "lb"),
  19497. name: "Front",
  19498. image: {
  19499. source: "./media/characters/juniper/front.svg",
  19500. bottom: 0.04
  19501. }
  19502. },
  19503. },
  19504. [
  19505. {
  19506. name: "Normal",
  19507. height: math.unit(16, "feet"),
  19508. default: true
  19509. },
  19510. ]
  19511. ))
  19512. characterMakers.push(() => makeCharacter(
  19513. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19514. {
  19515. front: {
  19516. height: math.unit(6, "feet"),
  19517. weight: math.unit(150, "lb"),
  19518. name: "Front",
  19519. image: {
  19520. source: "./media/characters/hipster/front.svg",
  19521. extra: 1312 / 1209,
  19522. bottom: 0.025
  19523. }
  19524. },
  19525. back: {
  19526. height: math.unit(6, "feet"),
  19527. weight: math.unit(150, "lb"),
  19528. name: "Back",
  19529. image: {
  19530. source: "./media/characters/hipster/back.svg",
  19531. extra: 1281 / 1196,
  19532. bottom: 0.01
  19533. }
  19534. },
  19535. },
  19536. [
  19537. {
  19538. name: "Micro",
  19539. height: math.unit(1, "mm")
  19540. },
  19541. {
  19542. name: "Normal",
  19543. height: math.unit(4, "inches"),
  19544. default: true
  19545. },
  19546. {
  19547. name: "Macro",
  19548. height: math.unit(500, "feet")
  19549. },
  19550. {
  19551. name: "Megamacro",
  19552. height: math.unit(1000, "miles")
  19553. },
  19554. ]
  19555. ))
  19556. characterMakers.push(() => makeCharacter(
  19557. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19558. {
  19559. front: {
  19560. height: math.unit(6, "feet"),
  19561. weight: math.unit(150, "lb"),
  19562. name: "Front",
  19563. image: {
  19564. source: "./media/characters/tendirmuldr/front.svg",
  19565. extra: 1878 / 1772,
  19566. bottom: 0.015
  19567. }
  19568. },
  19569. },
  19570. [
  19571. {
  19572. name: "Megamacro",
  19573. height: math.unit(1500, "miles"),
  19574. default: true
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19580. {
  19581. front: {
  19582. height: math.unit(14, "feet"),
  19583. weight: math.unit(12000, "lb"),
  19584. name: "Front",
  19585. image: {
  19586. source: "./media/characters/mort/front.svg",
  19587. extra: 365 / 318,
  19588. bottom: 0.01
  19589. }
  19590. },
  19591. side: {
  19592. height: math.unit(14, "feet"),
  19593. weight: math.unit(12000, "lb"),
  19594. name: "Side",
  19595. image: {
  19596. source: "./media/characters/mort/side.svg",
  19597. extra: 365 / 318,
  19598. bottom: 0.052
  19599. },
  19600. default: true
  19601. },
  19602. back: {
  19603. height: math.unit(14, "feet"),
  19604. weight: math.unit(12000, "lb"),
  19605. name: "Back",
  19606. image: {
  19607. source: "./media/characters/mort/back.svg",
  19608. extra: 371 / 332,
  19609. bottom: 0.18
  19610. }
  19611. },
  19612. },
  19613. [
  19614. {
  19615. name: "Normal",
  19616. height: math.unit(14, "feet"),
  19617. default: true
  19618. },
  19619. ]
  19620. ))
  19621. characterMakers.push(() => makeCharacter(
  19622. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19623. {
  19624. front: {
  19625. height: math.unit(8, "feet"),
  19626. weight: math.unit(1, "ton"),
  19627. name: "Front",
  19628. image: {
  19629. source: "./media/characters/lycoa/front.svg",
  19630. extra: 1875 / 1789,
  19631. bottom: 0.022
  19632. }
  19633. },
  19634. back: {
  19635. height: math.unit(8, "feet"),
  19636. weight: math.unit(1, "ton"),
  19637. name: "Back",
  19638. image: {
  19639. source: "./media/characters/lycoa/back.svg",
  19640. extra: 1835 / 1781,
  19641. bottom: 0.03
  19642. }
  19643. },
  19644. head: {
  19645. height: math.unit(2.1, "feet"),
  19646. name: "Head",
  19647. image: {
  19648. source: "./media/characters/lycoa/head.svg"
  19649. }
  19650. },
  19651. tailmaw: {
  19652. height: math.unit(1.9, "feet"),
  19653. name: "Tailmaw",
  19654. image: {
  19655. source: "./media/characters/lycoa/tailmaw.svg"
  19656. }
  19657. },
  19658. tentacles: {
  19659. height: math.unit(2.1, "feet"),
  19660. name: "Tentacles",
  19661. image: {
  19662. source: "./media/characters/lycoa/tentacles.svg"
  19663. }
  19664. },
  19665. dick: {
  19666. height: math.unit(1.73, "feet"),
  19667. name: "Dick",
  19668. image: {
  19669. source: "./media/characters/lycoa/dick.svg"
  19670. }
  19671. },
  19672. },
  19673. [
  19674. {
  19675. name: "Normal",
  19676. height: math.unit(8, "feet"),
  19677. default: true
  19678. },
  19679. {
  19680. name: "Macro",
  19681. height: math.unit(30, "feet")
  19682. },
  19683. ]
  19684. ))
  19685. characterMakers.push(() => makeCharacter(
  19686. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19687. {
  19688. front: {
  19689. height: math.unit(4 + 2 / 12, "feet"),
  19690. weight: math.unit(70, "lb"),
  19691. name: "Front",
  19692. image: {
  19693. source: "./media/characters/naldara/front.svg",
  19694. extra: 841 / 720,
  19695. bottom: 0.04
  19696. }
  19697. },
  19698. naga: {
  19699. height: math.unit(23, "feet"),
  19700. weight: math.unit(15000, "kg"),
  19701. name: "Naga",
  19702. image: {
  19703. source: "./media/characters/naldara/naga.svg",
  19704. extra: 3290 / 2959,
  19705. bottom: 124 / 3432
  19706. }
  19707. },
  19708. },
  19709. [
  19710. {
  19711. name: "Normal",
  19712. height: math.unit(4 + 2 / 12, "feet"),
  19713. default: true
  19714. },
  19715. ]
  19716. ))
  19717. characterMakers.push(() => makeCharacter(
  19718. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19719. {
  19720. front: {
  19721. height: math.unit(13 + 7 / 12, "feet"),
  19722. weight: math.unit(1500, "lb"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/briar/front.svg",
  19726. extra: 626 / 596,
  19727. bottom: 0.08
  19728. }
  19729. },
  19730. },
  19731. [
  19732. {
  19733. name: "Normal",
  19734. height: math.unit(13 + 7 / 12, "feet"),
  19735. default: true
  19736. },
  19737. ]
  19738. ))
  19739. characterMakers.push(() => makeCharacter(
  19740. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19741. {
  19742. side: {
  19743. height: math.unit(10, "feet"),
  19744. weight: math.unit(500, "lb"),
  19745. name: "Side",
  19746. image: {
  19747. source: "./media/characters/vanguard/side.svg",
  19748. extra: 502 / 425,
  19749. bottom: 0.087
  19750. }
  19751. },
  19752. },
  19753. [
  19754. {
  19755. name: "Normal",
  19756. height: math.unit(10, "feet"),
  19757. default: true
  19758. },
  19759. ]
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19763. {
  19764. front: {
  19765. height: math.unit(7.5, "feet"),
  19766. weight: math.unit(2, "lb"),
  19767. name: "Front",
  19768. image: {
  19769. source: "./media/characters/artemis/front.svg",
  19770. extra: 1192 / 1075,
  19771. bottom: 0.07
  19772. }
  19773. },
  19774. frontNsfw: {
  19775. height: math.unit(7.5, "feet"),
  19776. weight: math.unit(2, "lb"),
  19777. name: "Front (NSFW)",
  19778. image: {
  19779. source: "./media/characters/artemis/front-nsfw.svg",
  19780. extra: 1192 / 1075,
  19781. bottom: 0.07
  19782. }
  19783. },
  19784. frontNsfwer: {
  19785. height: math.unit(7.5, "feet"),
  19786. weight: math.unit(2, "lb"),
  19787. name: "Front (NSFW-er)",
  19788. image: {
  19789. source: "./media/characters/artemis/front-nsfwer.svg",
  19790. extra: 1192 / 1075,
  19791. bottom: 0.07
  19792. }
  19793. },
  19794. side: {
  19795. height: math.unit(7.5, "feet"),
  19796. weight: math.unit(2, "lb"),
  19797. name: "Side",
  19798. image: {
  19799. source: "./media/characters/artemis/side.svg",
  19800. extra: 1192 / 1075,
  19801. bottom: 0.07
  19802. }
  19803. },
  19804. sideNsfw: {
  19805. height: math.unit(7.5, "feet"),
  19806. weight: math.unit(2, "lb"),
  19807. name: "Side (NSFW)",
  19808. image: {
  19809. source: "./media/characters/artemis/side-nsfw.svg",
  19810. extra: 1192 / 1075,
  19811. bottom: 0.07
  19812. }
  19813. },
  19814. sideNsfwer: {
  19815. height: math.unit(7.5, "feet"),
  19816. weight: math.unit(2, "lb"),
  19817. name: "Side (NSFW-er)",
  19818. image: {
  19819. source: "./media/characters/artemis/side-nsfwer.svg",
  19820. extra: 1192 / 1075,
  19821. bottom: 0.07
  19822. }
  19823. },
  19824. maw: {
  19825. height: math.unit(1.1, "feet"),
  19826. name: "Maw",
  19827. image: {
  19828. source: "./media/characters/artemis/maw.svg"
  19829. }
  19830. },
  19831. stomach: {
  19832. height: math.unit(0.95, "feet"),
  19833. name: "Stomach",
  19834. image: {
  19835. source: "./media/characters/artemis/stomach.svg"
  19836. }
  19837. },
  19838. dickCanine: {
  19839. height: math.unit(1, "feet"),
  19840. name: "Dick (Canine)",
  19841. image: {
  19842. source: "./media/characters/artemis/dick-canine.svg"
  19843. }
  19844. },
  19845. dickEquine: {
  19846. height: math.unit(0.85, "feet"),
  19847. name: "Dick (Equine)",
  19848. image: {
  19849. source: "./media/characters/artemis/dick-equine.svg"
  19850. }
  19851. },
  19852. dickExotic: {
  19853. height: math.unit(0.85, "feet"),
  19854. name: "Dick (Exotic)",
  19855. image: {
  19856. source: "./media/characters/artemis/dick-exotic.svg"
  19857. }
  19858. },
  19859. },
  19860. [
  19861. {
  19862. name: "Normal",
  19863. height: math.unit(7.5, "feet"),
  19864. default: true
  19865. },
  19866. {
  19867. name: "Enlarged",
  19868. height: math.unit(12, "feet")
  19869. },
  19870. ]
  19871. ))
  19872. characterMakers.push(() => makeCharacter(
  19873. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19874. {
  19875. front: {
  19876. height: math.unit(5 + 3 / 12, "feet"),
  19877. weight: math.unit(160, "lb"),
  19878. name: "Front",
  19879. image: {
  19880. source: "./media/characters/kira/front.svg",
  19881. extra: 906 / 786,
  19882. bottom: 0.01
  19883. }
  19884. },
  19885. back: {
  19886. height: math.unit(5 + 3 / 12, "feet"),
  19887. weight: math.unit(160, "lb"),
  19888. name: "Back",
  19889. image: {
  19890. source: "./media/characters/kira/back.svg",
  19891. extra: 882 / 757,
  19892. bottom: 0.005
  19893. }
  19894. },
  19895. frontDressed: {
  19896. height: math.unit(5 + 3 / 12, "feet"),
  19897. weight: math.unit(160, "lb"),
  19898. name: "Front (Dressed)",
  19899. image: {
  19900. source: "./media/characters/kira/front-dressed.svg",
  19901. extra: 906 / 786,
  19902. bottom: 0.01
  19903. }
  19904. },
  19905. beans: {
  19906. height: math.unit(0.92, "feet"),
  19907. name: "Beans",
  19908. image: {
  19909. source: "./media/characters/kira/beans.svg"
  19910. }
  19911. },
  19912. },
  19913. [
  19914. {
  19915. name: "Normal",
  19916. height: math.unit(5 + 3 / 12, "feet"),
  19917. default: true
  19918. },
  19919. ]
  19920. ))
  19921. characterMakers.push(() => makeCharacter(
  19922. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19923. {
  19924. front: {
  19925. height: math.unit(5 + 4 / 12, "feet"),
  19926. weight: math.unit(145, "lb"),
  19927. name: "Front",
  19928. image: {
  19929. source: "./media/characters/scramble/front.svg",
  19930. extra: 763 / 727,
  19931. bottom: 0.05
  19932. }
  19933. },
  19934. back: {
  19935. height: math.unit(5 + 4 / 12, "feet"),
  19936. weight: math.unit(145, "lb"),
  19937. name: "Back",
  19938. image: {
  19939. source: "./media/characters/scramble/back.svg",
  19940. extra: 826 / 737,
  19941. bottom: 0.002
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(5 + 4 / 12, "feet"),
  19949. default: true
  19950. },
  19951. ]
  19952. ))
  19953. characterMakers.push(() => makeCharacter(
  19954. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19955. {
  19956. side: {
  19957. height: math.unit(6 + 2 / 12, "feet"),
  19958. weight: math.unit(190, "lb"),
  19959. name: "Side",
  19960. image: {
  19961. source: "./media/characters/biscuit/side.svg",
  19962. extra: 858 / 791,
  19963. bottom: 0.044
  19964. }
  19965. },
  19966. },
  19967. [
  19968. {
  19969. name: "Normal",
  19970. height: math.unit(6 + 2 / 12, "feet"),
  19971. default: true
  19972. },
  19973. ]
  19974. ))
  19975. characterMakers.push(() => makeCharacter(
  19976. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19977. {
  19978. front: {
  19979. height: math.unit(5 + 2 / 12, "feet"),
  19980. weight: math.unit(120, "lb"),
  19981. name: "Front",
  19982. image: {
  19983. source: "./media/characters/poffin/front.svg",
  19984. extra: 786 / 680,
  19985. bottom: 0.005
  19986. }
  19987. },
  19988. },
  19989. [
  19990. {
  19991. name: "Normal",
  19992. height: math.unit(5 + 2 / 12, "feet"),
  19993. default: true
  19994. },
  19995. ]
  19996. ))
  19997. characterMakers.push(() => makeCharacter(
  19998. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19999. {
  20000. front: {
  20001. height: math.unit(6 + 3 / 12, "feet"),
  20002. weight: math.unit(519, "lb"),
  20003. name: "Front",
  20004. image: {
  20005. source: "./media/characters/dhari/front.svg",
  20006. extra: 1048 / 946,
  20007. bottom: 0.015
  20008. }
  20009. },
  20010. back: {
  20011. height: math.unit(6 + 3 / 12, "feet"),
  20012. weight: math.unit(519, "lb"),
  20013. name: "Back",
  20014. image: {
  20015. source: "./media/characters/dhari/back.svg",
  20016. extra: 1048 / 931,
  20017. bottom: 0.005
  20018. }
  20019. },
  20020. frontDressed: {
  20021. height: math.unit(6 + 3 / 12, "feet"),
  20022. weight: math.unit(519, "lb"),
  20023. name: "Front (Dressed)",
  20024. image: {
  20025. source: "./media/characters/dhari/front-dressed.svg",
  20026. extra: 1713 / 1546,
  20027. bottom: 0.02
  20028. }
  20029. },
  20030. backDressed: {
  20031. height: math.unit(6 + 3 / 12, "feet"),
  20032. weight: math.unit(519, "lb"),
  20033. name: "Back (Dressed)",
  20034. image: {
  20035. source: "./media/characters/dhari/back-dressed.svg",
  20036. extra: 1699 / 1537,
  20037. bottom: 0.01
  20038. }
  20039. },
  20040. maw: {
  20041. height: math.unit(0.95, "feet"),
  20042. name: "Maw",
  20043. image: {
  20044. source: "./media/characters/dhari/maw.svg"
  20045. }
  20046. },
  20047. wereFront: {
  20048. height: math.unit(12 + 8 / 12, "feet"),
  20049. weight: math.unit(4000, "lb"),
  20050. name: "Front (Were)",
  20051. image: {
  20052. source: "./media/characters/dhari/were-front.svg",
  20053. extra: 1065 / 969,
  20054. bottom: 0.015
  20055. }
  20056. },
  20057. wereBack: {
  20058. height: math.unit(12 + 8 / 12, "feet"),
  20059. weight: math.unit(4000, "lb"),
  20060. name: "Back (Were)",
  20061. image: {
  20062. source: "./media/characters/dhari/were-back.svg",
  20063. extra: 1065 / 969,
  20064. bottom: 0.012
  20065. }
  20066. },
  20067. wereMaw: {
  20068. height: math.unit(0.625, "meters"),
  20069. name: "Maw (Were)",
  20070. image: {
  20071. source: "./media/characters/dhari/were-maw.svg"
  20072. }
  20073. },
  20074. },
  20075. [
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(6 + 3 / 12, "feet"),
  20079. default: true
  20080. },
  20081. ]
  20082. ))
  20083. characterMakers.push(() => makeCharacter(
  20084. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20085. {
  20086. anthro: {
  20087. height: math.unit(5 + 7 / 12, "feet"),
  20088. weight: math.unit(175, "lb"),
  20089. name: "Anthro",
  20090. image: {
  20091. source: "./media/characters/rena-dyne/anthro.svg",
  20092. extra: 1849 / 1785,
  20093. bottom: 0.005
  20094. }
  20095. },
  20096. taur: {
  20097. height: math.unit(15 + 6 / 12, "feet"),
  20098. weight: math.unit(8000, "lb"),
  20099. name: "Taur",
  20100. image: {
  20101. source: "./media/characters/rena-dyne/taur.svg",
  20102. extra: 2315 / 2234,
  20103. bottom: 0.033
  20104. }
  20105. },
  20106. },
  20107. [
  20108. {
  20109. name: "Normal",
  20110. height: math.unit(5 + 7 / 12, "feet"),
  20111. default: true
  20112. },
  20113. ]
  20114. ))
  20115. characterMakers.push(() => makeCharacter(
  20116. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20117. {
  20118. front: {
  20119. height: math.unit(8, "feet"),
  20120. weight: math.unit(600, "lb"),
  20121. name: "Front",
  20122. image: {
  20123. source: "./media/characters/weremeep/front.svg",
  20124. extra: 967 / 862,
  20125. bottom: 0.01
  20126. }
  20127. },
  20128. },
  20129. [
  20130. {
  20131. name: "Normal",
  20132. height: math.unit(8, "feet"),
  20133. default: true
  20134. },
  20135. {
  20136. name: "Lorg",
  20137. height: math.unit(12, "feet")
  20138. },
  20139. {
  20140. name: "Oh Lawd She Comin'",
  20141. height: math.unit(20, "feet")
  20142. },
  20143. ]
  20144. ))
  20145. characterMakers.push(() => makeCharacter(
  20146. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20147. {
  20148. front: {
  20149. height: math.unit(4, "feet"),
  20150. weight: math.unit(90, "lb"),
  20151. name: "Front",
  20152. image: {
  20153. source: "./media/characters/reza/front.svg",
  20154. extra: 1183 / 1111,
  20155. bottom: 0.017
  20156. }
  20157. },
  20158. back: {
  20159. height: math.unit(4, "feet"),
  20160. weight: math.unit(90, "lb"),
  20161. name: "Back",
  20162. image: {
  20163. source: "./media/characters/reza/back.svg",
  20164. extra: 1183 / 1111,
  20165. bottom: 0.01
  20166. }
  20167. },
  20168. drake: {
  20169. height: math.unit(30, "feet"),
  20170. weight: math.unit(246960, "lb"),
  20171. name: "Drake",
  20172. image: {
  20173. source: "./media/characters/reza/drake.svg",
  20174. extra: 2350 / 2024,
  20175. bottom: 60.7 / 2403
  20176. }
  20177. },
  20178. },
  20179. [
  20180. {
  20181. name: "Normal",
  20182. height: math.unit(4, "feet"),
  20183. default: true
  20184. },
  20185. ]
  20186. ))
  20187. characterMakers.push(() => makeCharacter(
  20188. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20189. {
  20190. side: {
  20191. height: math.unit(15, "feet"),
  20192. weight: math.unit(14, "tons"),
  20193. name: "Side",
  20194. image: {
  20195. source: "./media/characters/athea/side.svg",
  20196. extra: 960 / 540,
  20197. bottom: 0.003
  20198. }
  20199. },
  20200. sitting: {
  20201. height: math.unit(6 * 2.85, "feet"),
  20202. weight: math.unit(14, "tons"),
  20203. name: "Sitting",
  20204. image: {
  20205. source: "./media/characters/athea/sitting.svg",
  20206. extra: 621 / 581,
  20207. bottom: 0.075
  20208. }
  20209. },
  20210. maw: {
  20211. height: math.unit(7.59498031496063, "feet"),
  20212. name: "Maw",
  20213. image: {
  20214. source: "./media/characters/athea/maw.svg"
  20215. }
  20216. },
  20217. },
  20218. [
  20219. {
  20220. name: "Lap Cat",
  20221. height: math.unit(2.5, "feet")
  20222. },
  20223. {
  20224. name: "Minimacro",
  20225. height: math.unit(15, "feet"),
  20226. default: true
  20227. },
  20228. {
  20229. name: "Macro",
  20230. height: math.unit(120, "feet")
  20231. },
  20232. {
  20233. name: "Macro+",
  20234. height: math.unit(640, "feet")
  20235. },
  20236. {
  20237. name: "Colossus",
  20238. height: math.unit(2.2, "miles")
  20239. },
  20240. ]
  20241. ))
  20242. characterMakers.push(() => makeCharacter(
  20243. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20244. {
  20245. front: {
  20246. height: math.unit(8 + 8 / 12, "feet"),
  20247. weight: math.unit(130, "kg"),
  20248. name: "Front",
  20249. image: {
  20250. source: "./media/characters/seroko/front.svg",
  20251. extra: 1385 / 1280,
  20252. bottom: 0.025
  20253. }
  20254. },
  20255. back: {
  20256. height: math.unit(8 + 8 / 12, "feet"),
  20257. weight: math.unit(130, "kg"),
  20258. name: "Back",
  20259. image: {
  20260. source: "./media/characters/seroko/back.svg",
  20261. extra: 1369 / 1238,
  20262. bottom: 0.018
  20263. }
  20264. },
  20265. frontDressed: {
  20266. height: math.unit(8 + 8 / 12, "feet"),
  20267. weight: math.unit(130, "kg"),
  20268. name: "Front (Dressed)",
  20269. image: {
  20270. source: "./media/characters/seroko/front-dressed.svg",
  20271. extra: 1366 / 1275,
  20272. bottom: 0.03
  20273. }
  20274. },
  20275. },
  20276. [
  20277. {
  20278. name: "Normal",
  20279. height: math.unit(8 + 8 / 12, "feet"),
  20280. default: true
  20281. },
  20282. ]
  20283. ))
  20284. characterMakers.push(() => makeCharacter(
  20285. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20286. {
  20287. front: {
  20288. height: math.unit(5.5, "feet"),
  20289. weight: math.unit(160, "lb"),
  20290. name: "Front",
  20291. image: {
  20292. source: "./media/characters/quatzi/front.svg",
  20293. extra: 2346 / 2242,
  20294. bottom: 0.015
  20295. }
  20296. },
  20297. },
  20298. [
  20299. {
  20300. name: "Normal",
  20301. height: math.unit(5.5, "feet"),
  20302. default: true
  20303. },
  20304. {
  20305. name: "Big",
  20306. height: math.unit(7.7, "feet")
  20307. },
  20308. ]
  20309. ))
  20310. characterMakers.push(() => makeCharacter(
  20311. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20312. {
  20313. front: {
  20314. height: math.unit(5 + 11 / 12, "feet"),
  20315. weight: math.unit(180, "lb"),
  20316. name: "Front",
  20317. image: {
  20318. source: "./media/characters/sen/front.svg",
  20319. extra: 1321 / 1254,
  20320. bottom: 0.015
  20321. }
  20322. },
  20323. side: {
  20324. height: math.unit(5 + 11 / 12, "feet"),
  20325. weight: math.unit(180, "lb"),
  20326. name: "Side",
  20327. image: {
  20328. source: "./media/characters/sen/side.svg",
  20329. extra: 1321 / 1254,
  20330. bottom: 0.007
  20331. }
  20332. },
  20333. back: {
  20334. height: math.unit(5 + 11 / 12, "feet"),
  20335. weight: math.unit(180, "lb"),
  20336. name: "Back",
  20337. image: {
  20338. source: "./media/characters/sen/back.svg",
  20339. extra: 1321 / 1254
  20340. }
  20341. },
  20342. },
  20343. [
  20344. {
  20345. name: "Normal",
  20346. height: math.unit(5 + 11 / 12, "feet"),
  20347. default: true
  20348. },
  20349. ]
  20350. ))
  20351. characterMakers.push(() => makeCharacter(
  20352. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20353. {
  20354. front: {
  20355. height: math.unit(166.6, "cm"),
  20356. weight: math.unit(66.6, "kg"),
  20357. name: "Front",
  20358. image: {
  20359. source: "./media/characters/fruity/front.svg",
  20360. extra: 1510 / 1386,
  20361. bottom: 0.04
  20362. }
  20363. },
  20364. back: {
  20365. height: math.unit(166.6, "cm"),
  20366. weight: math.unit(66.6, "lb"),
  20367. name: "Back",
  20368. image: {
  20369. source: "./media/characters/fruity/back.svg",
  20370. extra: 1563 / 1435,
  20371. bottom: 0.005
  20372. }
  20373. },
  20374. },
  20375. [
  20376. {
  20377. name: "Normal",
  20378. height: math.unit(166.6, "cm"),
  20379. default: true
  20380. },
  20381. {
  20382. name: "Demonic",
  20383. height: math.unit(166.6, "feet")
  20384. },
  20385. ]
  20386. ))
  20387. characterMakers.push(() => makeCharacter(
  20388. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20389. {
  20390. side: {
  20391. height: math.unit(10, "feet"),
  20392. weight: math.unit(500, "lb"),
  20393. name: "Side",
  20394. image: {
  20395. source: "./media/characters/zost/side.svg",
  20396. extra: 966 / 880,
  20397. bottom: 0.075
  20398. }
  20399. },
  20400. mawFront: {
  20401. height: math.unit(1.08, "meters"),
  20402. name: "Maw (Front)",
  20403. image: {
  20404. source: "./media/characters/zost/maw-front.svg"
  20405. }
  20406. },
  20407. mawSide: {
  20408. height: math.unit(2.66, "feet"),
  20409. name: "Maw (Side)",
  20410. image: {
  20411. source: "./media/characters/zost/maw-side.svg"
  20412. }
  20413. },
  20414. },
  20415. [
  20416. {
  20417. name: "Normal",
  20418. height: math.unit(10, "feet"),
  20419. default: true
  20420. },
  20421. ]
  20422. ))
  20423. characterMakers.push(() => makeCharacter(
  20424. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20425. {
  20426. front: {
  20427. height: math.unit(5 + 4 / 12, "feet"),
  20428. weight: math.unit(120, "lb"),
  20429. name: "Front",
  20430. image: {
  20431. source: "./media/characters/luci/front.svg",
  20432. extra: 1985 / 1884,
  20433. bottom: 0.04
  20434. }
  20435. },
  20436. back: {
  20437. height: math.unit(5 + 4 / 12, "feet"),
  20438. weight: math.unit(120, "lb"),
  20439. name: "Back",
  20440. image: {
  20441. source: "./media/characters/luci/back.svg",
  20442. extra: 1892 / 1791,
  20443. bottom: 0.002
  20444. }
  20445. },
  20446. },
  20447. [
  20448. {
  20449. name: "Normal",
  20450. height: math.unit(5 + 4 / 12, "feet"),
  20451. default: true
  20452. },
  20453. ]
  20454. ))
  20455. characterMakers.push(() => makeCharacter(
  20456. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20457. {
  20458. front: {
  20459. height: math.unit(1500, "feet"),
  20460. weight: math.unit(3.8e6, "tons"),
  20461. name: "Front",
  20462. image: {
  20463. source: "./media/characters/2th/front.svg",
  20464. extra: 3489 / 3350,
  20465. bottom: 0.1
  20466. }
  20467. },
  20468. foot: {
  20469. height: math.unit(461, "feet"),
  20470. name: "Foot",
  20471. image: {
  20472. source: "./media/characters/2th/foot.svg"
  20473. }
  20474. },
  20475. },
  20476. [
  20477. {
  20478. name: "\"Micro\"",
  20479. height: math.unit(15 + 7 / 12, "feet")
  20480. },
  20481. {
  20482. name: "Normal",
  20483. height: math.unit(1500, "feet"),
  20484. default: true
  20485. },
  20486. {
  20487. name: "Macro",
  20488. height: math.unit(5000, "feet")
  20489. },
  20490. {
  20491. name: "Megamacro",
  20492. height: math.unit(15, "miles")
  20493. },
  20494. {
  20495. name: "Gigamacro",
  20496. height: math.unit(4000, "miles")
  20497. },
  20498. {
  20499. name: "Galactic",
  20500. height: math.unit(50, "AU")
  20501. },
  20502. ]
  20503. ))
  20504. characterMakers.push(() => makeCharacter(
  20505. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20506. {
  20507. front: {
  20508. height: math.unit(5 + 6 / 12, "feet"),
  20509. weight: math.unit(220, "lb"),
  20510. name: "Front",
  20511. image: {
  20512. source: "./media/characters/amethyst/front.svg",
  20513. extra: 2078 / 2040,
  20514. bottom: 0.045
  20515. }
  20516. },
  20517. back: {
  20518. height: math.unit(5 + 6 / 12, "feet"),
  20519. weight: math.unit(220, "lb"),
  20520. name: "Back",
  20521. image: {
  20522. source: "./media/characters/amethyst/back.svg",
  20523. extra: 2021 / 1989,
  20524. bottom: 0.02
  20525. }
  20526. },
  20527. },
  20528. [
  20529. {
  20530. name: "Normal",
  20531. height: math.unit(5 + 6 / 12, "feet"),
  20532. default: true
  20533. },
  20534. ]
  20535. ))
  20536. characterMakers.push(() => makeCharacter(
  20537. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20538. {
  20539. front: {
  20540. height: math.unit(4 + 11 / 12, "feet"),
  20541. weight: math.unit(120, "lb"),
  20542. name: "Front",
  20543. image: {
  20544. source: "./media/characters/yumi-akiyama/front.svg",
  20545. extra: 1327 / 1235,
  20546. bottom: 0.02
  20547. }
  20548. },
  20549. back: {
  20550. height: math.unit(4 + 11 / 12, "feet"),
  20551. weight: math.unit(120, "lb"),
  20552. name: "Back",
  20553. image: {
  20554. source: "./media/characters/yumi-akiyama/back.svg",
  20555. extra: 1287 / 1245,
  20556. bottom: 0.002
  20557. }
  20558. },
  20559. },
  20560. [
  20561. {
  20562. name: "Galactic",
  20563. height: math.unit(50, "galaxies"),
  20564. default: true
  20565. },
  20566. {
  20567. name: "Universal",
  20568. height: math.unit(100, "universes")
  20569. },
  20570. ]
  20571. ))
  20572. characterMakers.push(() => makeCharacter(
  20573. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20574. {
  20575. front: {
  20576. height: math.unit(8, "feet"),
  20577. weight: math.unit(500, "lb"),
  20578. name: "Front",
  20579. image: {
  20580. source: "./media/characters/rifter-yrmori/front.svg",
  20581. extra: 1180 / 1125,
  20582. bottom: 0.02
  20583. }
  20584. },
  20585. back: {
  20586. height: math.unit(8, "feet"),
  20587. weight: math.unit(500, "lb"),
  20588. name: "Back",
  20589. image: {
  20590. source: "./media/characters/rifter-yrmori/back.svg",
  20591. extra: 1190 / 1145,
  20592. bottom: 0.001
  20593. }
  20594. },
  20595. wings: {
  20596. height: math.unit(7.75, "feet"),
  20597. weight: math.unit(500, "lb"),
  20598. name: "Wings",
  20599. image: {
  20600. source: "./media/characters/rifter-yrmori/wings.svg",
  20601. extra: 1357 / 1285
  20602. }
  20603. },
  20604. maw: {
  20605. height: math.unit(0.8, "feet"),
  20606. name: "Maw",
  20607. image: {
  20608. source: "./media/characters/rifter-yrmori/maw.svg"
  20609. }
  20610. },
  20611. mawfront: {
  20612. height: math.unit(1.45, "feet"),
  20613. name: "Maw (Front)",
  20614. image: {
  20615. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20616. }
  20617. },
  20618. },
  20619. [
  20620. {
  20621. name: "Normal",
  20622. height: math.unit(8, "feet"),
  20623. default: true
  20624. },
  20625. {
  20626. name: "Macro",
  20627. height: math.unit(42, "meters")
  20628. },
  20629. ]
  20630. ))
  20631. characterMakers.push(() => makeCharacter(
  20632. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20633. {
  20634. were: {
  20635. height: math.unit(25 + 6 / 12, "feet"),
  20636. weight: math.unit(10000, "lb"),
  20637. name: "Were",
  20638. image: {
  20639. source: "./media/characters/tahajin/were.svg",
  20640. extra: 801 / 770,
  20641. bottom: 0.042
  20642. }
  20643. },
  20644. aquatic: {
  20645. height: math.unit(6 + 4 / 12, "feet"),
  20646. weight: math.unit(160, "lb"),
  20647. name: "Aquatic",
  20648. image: {
  20649. source: "./media/characters/tahajin/aquatic.svg",
  20650. extra: 572 / 542,
  20651. bottom: 0.04
  20652. }
  20653. },
  20654. chow: {
  20655. height: math.unit(8 + 11 / 12, "feet"),
  20656. weight: math.unit(450, "lb"),
  20657. name: "Chow",
  20658. image: {
  20659. source: "./media/characters/tahajin/chow.svg",
  20660. extra: 660 / 640,
  20661. bottom: 0.015
  20662. }
  20663. },
  20664. demiNaga: {
  20665. height: math.unit(6 + 8 / 12, "feet"),
  20666. weight: math.unit(300, "lb"),
  20667. name: "Demi Naga",
  20668. image: {
  20669. source: "./media/characters/tahajin/demi-naga.svg",
  20670. extra: 643 / 615,
  20671. bottom: 0.1
  20672. }
  20673. },
  20674. data: {
  20675. height: math.unit(5, "inches"),
  20676. weight: math.unit(0.1, "lb"),
  20677. name: "Data",
  20678. image: {
  20679. source: "./media/characters/tahajin/data.svg"
  20680. }
  20681. },
  20682. fluu: {
  20683. height: math.unit(5 + 7 / 12, "feet"),
  20684. weight: math.unit(140, "lb"),
  20685. name: "Fluu",
  20686. image: {
  20687. source: "./media/characters/tahajin/fluu.svg",
  20688. extra: 628 / 592,
  20689. bottom: 0.02
  20690. }
  20691. },
  20692. starWarrior: {
  20693. height: math.unit(4 + 5 / 12, "feet"),
  20694. weight: math.unit(50, "lb"),
  20695. name: "Star Warrior",
  20696. image: {
  20697. source: "./media/characters/tahajin/star-warrior.svg"
  20698. }
  20699. },
  20700. },
  20701. [
  20702. {
  20703. name: "Normal",
  20704. height: math.unit(25 + 6 / 12, "feet"),
  20705. default: true
  20706. },
  20707. ]
  20708. ))
  20709. characterMakers.push(() => makeCharacter(
  20710. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20711. {
  20712. front: {
  20713. height: math.unit(8, "feet"),
  20714. weight: math.unit(350, "lb"),
  20715. name: "Front",
  20716. image: {
  20717. source: "./media/characters/gabira/front.svg",
  20718. extra: 608 / 580,
  20719. bottom: 0.03
  20720. }
  20721. },
  20722. back: {
  20723. height: math.unit(8, "feet"),
  20724. weight: math.unit(350, "lb"),
  20725. name: "Back",
  20726. image: {
  20727. source: "./media/characters/gabira/back.svg",
  20728. extra: 608 / 580,
  20729. bottom: 0.03
  20730. }
  20731. },
  20732. },
  20733. [
  20734. {
  20735. name: "Normal",
  20736. height: math.unit(8, "feet"),
  20737. default: true
  20738. },
  20739. ]
  20740. ))
  20741. characterMakers.push(() => makeCharacter(
  20742. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20743. {
  20744. front: {
  20745. height: math.unit(5 + 3 / 12, "feet"),
  20746. weight: math.unit(137, "lb"),
  20747. name: "Front",
  20748. image: {
  20749. source: "./media/characters/sasha-katraine/front.svg",
  20750. bottom: 0.045
  20751. }
  20752. },
  20753. },
  20754. [
  20755. {
  20756. name: "Micro",
  20757. height: math.unit(5, "inches")
  20758. },
  20759. {
  20760. name: "Normal",
  20761. height: math.unit(5 + 3 / 12, "feet"),
  20762. default: true
  20763. },
  20764. ]
  20765. ))
  20766. characterMakers.push(() => makeCharacter(
  20767. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20768. {
  20769. side: {
  20770. height: math.unit(4, "inches"),
  20771. weight: math.unit(200, "grams"),
  20772. name: "Side",
  20773. image: {
  20774. source: "./media/characters/der/side.svg",
  20775. extra: 719 / 400,
  20776. bottom: 30.6 / 749.9187
  20777. }
  20778. },
  20779. },
  20780. [
  20781. {
  20782. name: "Micro",
  20783. height: math.unit(4, "inches"),
  20784. default: true
  20785. },
  20786. ]
  20787. ))
  20788. characterMakers.push(() => makeCharacter(
  20789. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20790. {
  20791. side: {
  20792. height: math.unit(30, "meters"),
  20793. weight: math.unit(700, "tonnes"),
  20794. name: "Side",
  20795. image: {
  20796. source: "./media/characters/fixerdragon/side.svg",
  20797. extra: (1293.0514 - 116.03) / 1106.86,
  20798. bottom: 116.03 / 1293.0514
  20799. }
  20800. },
  20801. },
  20802. [
  20803. {
  20804. name: "Planck",
  20805. height: math.unit(1.6e-35, "meters")
  20806. },
  20807. {
  20808. name: "Micro",
  20809. height: math.unit(0.4, "meters")
  20810. },
  20811. {
  20812. name: "Normal",
  20813. height: math.unit(30, "meters"),
  20814. default: true
  20815. },
  20816. {
  20817. name: "Megamacro",
  20818. height: math.unit(1.2, "megameters")
  20819. },
  20820. {
  20821. name: "Teramacro",
  20822. height: math.unit(130, "terameters")
  20823. },
  20824. {
  20825. name: "Yottamacro",
  20826. height: math.unit(6200, "yottameters")
  20827. },
  20828. ]
  20829. ));
  20830. characterMakers.push(() => makeCharacter(
  20831. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20832. {
  20833. front: {
  20834. height: math.unit(8, "feet"),
  20835. weight: math.unit(250, "lb"),
  20836. name: "Front",
  20837. image: {
  20838. source: "./media/characters/kite/front.svg",
  20839. extra: 2796 / 2659,
  20840. bottom: 0.002
  20841. }
  20842. },
  20843. },
  20844. [
  20845. {
  20846. name: "Normal",
  20847. height: math.unit(8, "feet"),
  20848. default: true
  20849. },
  20850. {
  20851. name: "Macro",
  20852. height: math.unit(360, "feet")
  20853. },
  20854. {
  20855. name: "Megamacro",
  20856. height: math.unit(1500, "feet")
  20857. },
  20858. ]
  20859. ))
  20860. characterMakers.push(() => makeCharacter(
  20861. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20862. {
  20863. front: {
  20864. height: math.unit(5 + 10 / 12, "feet"),
  20865. weight: math.unit(150, "lb"),
  20866. name: "Front",
  20867. image: {
  20868. source: "./media/characters/poojawa-vynar/front.svg",
  20869. extra: (1506.1547 - 55) / 1356.6,
  20870. bottom: 55 / 1506.1547
  20871. }
  20872. },
  20873. frontTailless: {
  20874. height: math.unit(5 + 10 / 12, "feet"),
  20875. weight: math.unit(150, "lb"),
  20876. name: "Front (Tailless)",
  20877. image: {
  20878. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20879. extra: (1506.1547 - 55) / 1356.6,
  20880. bottom: 55 / 1506.1547
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Normal",
  20887. height: math.unit(5 + 10 / 12, "feet"),
  20888. default: true
  20889. },
  20890. ]
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20894. {
  20895. front: {
  20896. height: math.unit(293, "meters"),
  20897. weight: math.unit(70400, "tons"),
  20898. name: "Front",
  20899. image: {
  20900. source: "./media/characters/violette/front.svg",
  20901. extra: 1227 / 1180,
  20902. bottom: 0.005
  20903. }
  20904. },
  20905. back: {
  20906. height: math.unit(293, "meters"),
  20907. weight: math.unit(70400, "tons"),
  20908. name: "Back",
  20909. image: {
  20910. source: "./media/characters/violette/back.svg",
  20911. extra: 1227 / 1180,
  20912. bottom: 0.005
  20913. }
  20914. },
  20915. },
  20916. [
  20917. {
  20918. name: "Macro",
  20919. height: math.unit(293, "meters"),
  20920. default: true
  20921. },
  20922. ]
  20923. ))
  20924. characterMakers.push(() => makeCharacter(
  20925. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20926. {
  20927. front: {
  20928. height: math.unit(1050, "feet"),
  20929. weight: math.unit(200000, "tons"),
  20930. name: "Front",
  20931. image: {
  20932. source: "./media/characters/alessandra/front.svg",
  20933. extra: 960 / 912,
  20934. bottom: 0.06
  20935. }
  20936. },
  20937. },
  20938. [
  20939. {
  20940. name: "Macro",
  20941. height: math.unit(1050, "feet")
  20942. },
  20943. {
  20944. name: "Macro+",
  20945. height: math.unit(900, "meters"),
  20946. default: true
  20947. },
  20948. ]
  20949. ))
  20950. characterMakers.push(() => makeCharacter(
  20951. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20952. {
  20953. front: {
  20954. height: math.unit(5, "feet"),
  20955. weight: math.unit(187, "lb"),
  20956. name: "Front",
  20957. image: {
  20958. source: "./media/characters/person/front.svg",
  20959. extra: 3087 / 2945,
  20960. bottom: 91 / 3181
  20961. }
  20962. },
  20963. },
  20964. [
  20965. {
  20966. name: "Micro",
  20967. height: math.unit(3, "inches")
  20968. },
  20969. {
  20970. name: "Normal",
  20971. height: math.unit(5, "feet"),
  20972. default: true
  20973. },
  20974. {
  20975. name: "Macro",
  20976. height: math.unit(90, "feet")
  20977. },
  20978. {
  20979. name: "Max Size",
  20980. height: math.unit(280, "feet")
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20986. {
  20987. front: {
  20988. height: math.unit(4.5, "meters"),
  20989. weight: math.unit(3200, "lb"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/ty/front.svg",
  20993. extra: 1038 / 960,
  20994. bottom: 31.156 / 1068
  20995. }
  20996. },
  20997. back: {
  20998. height: math.unit(4.5, "meters"),
  20999. weight: math.unit(3200, "lb"),
  21000. name: "Back",
  21001. image: {
  21002. source: "./media/characters/ty/back.svg",
  21003. extra: 1044 / 966,
  21004. bottom: 7.48 / 1049
  21005. }
  21006. },
  21007. },
  21008. [
  21009. {
  21010. name: "Normal",
  21011. height: math.unit(4.5, "meters"),
  21012. default: true
  21013. },
  21014. ]
  21015. ))
  21016. characterMakers.push(() => makeCharacter(
  21017. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21018. {
  21019. front: {
  21020. height: math.unit(5 + 4 / 12, "feet"),
  21021. weight: math.unit(115, "lb"),
  21022. name: "Front",
  21023. image: {
  21024. source: "./media/characters/rocky/front.svg",
  21025. extra: 1012 / 975,
  21026. bottom: 54 / 1066
  21027. }
  21028. },
  21029. },
  21030. [
  21031. {
  21032. name: "Normal",
  21033. height: math.unit(5 + 4 / 12, "feet"),
  21034. default: true
  21035. },
  21036. ]
  21037. ))
  21038. characterMakers.push(() => makeCharacter(
  21039. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21040. {
  21041. upright: {
  21042. height: math.unit(6, "meters"),
  21043. weight: math.unit(4000, "kg"),
  21044. name: "Upright",
  21045. image: {
  21046. source: "./media/characters/ruin/upright.svg",
  21047. extra: 668 / 661,
  21048. bottom: 42 / 799.8396
  21049. }
  21050. },
  21051. },
  21052. [
  21053. {
  21054. name: "Normal",
  21055. height: math.unit(6, "meters"),
  21056. default: true
  21057. },
  21058. ]
  21059. ))
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21062. {
  21063. front: {
  21064. height: math.unit(5, "feet"),
  21065. weight: math.unit(106, "lb"),
  21066. name: "Front",
  21067. image: {
  21068. source: "./media/characters/robin/front.svg",
  21069. extra: 862 / 799,
  21070. bottom: 42.4 / 914.8856
  21071. }
  21072. },
  21073. },
  21074. [
  21075. {
  21076. name: "Normal",
  21077. height: math.unit(5, "feet"),
  21078. default: true
  21079. },
  21080. ]
  21081. ))
  21082. characterMakers.push(() => makeCharacter(
  21083. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21084. {
  21085. side: {
  21086. height: math.unit(3, "feet"),
  21087. weight: math.unit(225, "lb"),
  21088. name: "Side",
  21089. image: {
  21090. source: "./media/characters/saian/side.svg",
  21091. extra: 566 / 356,
  21092. bottom: 79.7 / 643
  21093. }
  21094. },
  21095. maw: {
  21096. height: math.unit(2.85, "feet"),
  21097. name: "Maw",
  21098. image: {
  21099. source: "./media/characters/saian/maw.svg"
  21100. }
  21101. },
  21102. },
  21103. [
  21104. {
  21105. name: "Normal",
  21106. height: math.unit(3, "feet"),
  21107. default: true
  21108. },
  21109. ]
  21110. ))
  21111. characterMakers.push(() => makeCharacter(
  21112. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21113. {
  21114. side: {
  21115. height: math.unit(8, "feet"),
  21116. weight: math.unit(300, "lb"),
  21117. name: "Side",
  21118. image: {
  21119. source: "./media/characters/equus-silvermane/side.svg",
  21120. extra: 2176 / 2050,
  21121. bottom: 65.7 / 2245
  21122. }
  21123. },
  21124. front: {
  21125. height: math.unit(8, "feet"),
  21126. weight: math.unit(300, "lb"),
  21127. name: "Front",
  21128. image: {
  21129. source: "./media/characters/equus-silvermane/front.svg",
  21130. extra: 4633 / 4400,
  21131. bottom: 71.3 / 4706.915
  21132. }
  21133. },
  21134. sideStepping: {
  21135. height: math.unit(8, "feet"),
  21136. weight: math.unit(300, "lb"),
  21137. name: "Side (Stepping)",
  21138. image: {
  21139. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21140. extra: 1968 / 1860,
  21141. bottom: 16.4 / 1989
  21142. }
  21143. },
  21144. },
  21145. [
  21146. {
  21147. name: "Normal",
  21148. height: math.unit(8, "feet")
  21149. },
  21150. {
  21151. name: "Minimacro",
  21152. height: math.unit(75, "feet"),
  21153. default: true
  21154. },
  21155. {
  21156. name: "Macro",
  21157. height: math.unit(150, "feet")
  21158. },
  21159. {
  21160. name: "Macro+",
  21161. height: math.unit(1000, "feet")
  21162. },
  21163. {
  21164. name: "Megamacro",
  21165. height: math.unit(1, "mile")
  21166. },
  21167. ]
  21168. ))
  21169. characterMakers.push(() => makeCharacter(
  21170. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21171. {
  21172. side: {
  21173. height: math.unit(20, "feet"),
  21174. weight: math.unit(30000, "kg"),
  21175. name: "Side",
  21176. image: {
  21177. source: "./media/characters/windar/side.svg",
  21178. extra: 1491 / 1248,
  21179. bottom: 82.56 / 1568
  21180. }
  21181. },
  21182. },
  21183. [
  21184. {
  21185. name: "Normal",
  21186. height: math.unit(20, "feet"),
  21187. default: true
  21188. },
  21189. ]
  21190. ))
  21191. characterMakers.push(() => makeCharacter(
  21192. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21193. {
  21194. side: {
  21195. height: math.unit(15.66, "feet"),
  21196. weight: math.unit(150, "lb"),
  21197. name: "Side",
  21198. image: {
  21199. source: "./media/characters/melody/side.svg",
  21200. extra: 1097 / 944,
  21201. bottom: 11.8 / 1109
  21202. }
  21203. },
  21204. sideOutfit: {
  21205. height: math.unit(15.66, "feet"),
  21206. weight: math.unit(150, "lb"),
  21207. name: "Side (Outfit)",
  21208. image: {
  21209. source: "./media/characters/melody/side-outfit.svg",
  21210. extra: 1097 / 944,
  21211. bottom: 11.8 / 1109
  21212. }
  21213. },
  21214. },
  21215. [
  21216. {
  21217. name: "Normal",
  21218. height: math.unit(15.66, "feet"),
  21219. default: true
  21220. },
  21221. ]
  21222. ))
  21223. characterMakers.push(() => makeCharacter(
  21224. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21225. {
  21226. front: {
  21227. height: math.unit(8, "feet"),
  21228. weight: math.unit(325, "lb"),
  21229. name: "Front",
  21230. image: {
  21231. source: "./media/characters/windera/front.svg",
  21232. extra: 3180 / 2845,
  21233. bottom: 178 / 3365
  21234. }
  21235. },
  21236. },
  21237. [
  21238. {
  21239. name: "Normal",
  21240. height: math.unit(8, "feet"),
  21241. default: true
  21242. },
  21243. ]
  21244. ))
  21245. characterMakers.push(() => makeCharacter(
  21246. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21247. {
  21248. front: {
  21249. height: math.unit(28.75, "feet"),
  21250. weight: math.unit(2000, "kg"),
  21251. name: "Front",
  21252. image: {
  21253. source: "./media/characters/sonear/front.svg",
  21254. extra: 1041.1 / 964.9,
  21255. bottom: 53.7 / 1096.6
  21256. }
  21257. },
  21258. },
  21259. [
  21260. {
  21261. name: "Normal",
  21262. height: math.unit(28.75, "feet"),
  21263. default: true
  21264. },
  21265. ]
  21266. ))
  21267. characterMakers.push(() => makeCharacter(
  21268. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21269. {
  21270. side: {
  21271. height: math.unit(25.5, "feet"),
  21272. weight: math.unit(23000, "kg"),
  21273. name: "Side",
  21274. image: {
  21275. source: "./media/characters/kanara/side.svg"
  21276. }
  21277. },
  21278. },
  21279. [
  21280. {
  21281. name: "Normal",
  21282. height: math.unit(25.5, "feet"),
  21283. default: true
  21284. },
  21285. ]
  21286. ))
  21287. characterMakers.push(() => makeCharacter(
  21288. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21289. {
  21290. side: {
  21291. height: math.unit(10, "feet"),
  21292. weight: math.unit(1000, "kg"),
  21293. name: "Side",
  21294. image: {
  21295. source: "./media/characters/ereus/side.svg",
  21296. extra: 1157 / 959,
  21297. bottom: 153 / 1312.5
  21298. }
  21299. },
  21300. },
  21301. [
  21302. {
  21303. name: "Normal",
  21304. height: math.unit(10, "feet"),
  21305. default: true
  21306. },
  21307. ]
  21308. ))
  21309. characterMakers.push(() => makeCharacter(
  21310. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21311. {
  21312. side: {
  21313. height: math.unit(4.5, "feet"),
  21314. weight: math.unit(500, "lb"),
  21315. name: "Side",
  21316. image: {
  21317. source: "./media/characters/e-ter/side.svg",
  21318. extra: 1550 / 1248,
  21319. bottom: 146 / 1694
  21320. }
  21321. },
  21322. },
  21323. [
  21324. {
  21325. name: "Normal",
  21326. height: math.unit(4.5, "feet"),
  21327. default: true
  21328. },
  21329. ]
  21330. ))
  21331. characterMakers.push(() => makeCharacter(
  21332. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21333. {
  21334. side: {
  21335. height: math.unit(9.7, "feet"),
  21336. weight: math.unit(4000, "kg"),
  21337. name: "Side",
  21338. image: {
  21339. source: "./media/characters/yamie/side.svg"
  21340. }
  21341. },
  21342. },
  21343. [
  21344. {
  21345. name: "Normal",
  21346. height: math.unit(9.7, "feet"),
  21347. default: true
  21348. },
  21349. ]
  21350. ))
  21351. characterMakers.push(() => makeCharacter(
  21352. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21353. {
  21354. front: {
  21355. height: math.unit(50, "feet"),
  21356. weight: math.unit(50000, "kg"),
  21357. name: "Front",
  21358. image: {
  21359. source: "./media/characters/anders/front.svg",
  21360. extra: 570 / 539,
  21361. bottom: 14.7 / 586.7
  21362. }
  21363. },
  21364. },
  21365. [
  21366. {
  21367. name: "Large",
  21368. height: math.unit(50, "feet")
  21369. },
  21370. {
  21371. name: "Macro",
  21372. height: math.unit(2000, "feet"),
  21373. default: true
  21374. },
  21375. {
  21376. name: "Megamacro",
  21377. height: math.unit(12, "miles")
  21378. },
  21379. ]
  21380. ))
  21381. characterMakers.push(() => makeCharacter(
  21382. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21383. {
  21384. front: {
  21385. height: math.unit(7 + 2 / 12, "feet"),
  21386. weight: math.unit(300, "lb"),
  21387. name: "Front",
  21388. image: {
  21389. source: "./media/characters/reban/front.svg",
  21390. extra: 516 / 487,
  21391. bottom: 42.82 / 558.356
  21392. }
  21393. },
  21394. dick: {
  21395. height: math.unit(7 / 5, "feet"),
  21396. name: "Dick",
  21397. image: {
  21398. source: "./media/characters/reban/dick.svg"
  21399. }
  21400. },
  21401. },
  21402. [
  21403. {
  21404. name: "Natural Height",
  21405. height: math.unit(7 + 2 / 12, "feet")
  21406. },
  21407. {
  21408. name: "Macro",
  21409. height: math.unit(500, "feet"),
  21410. default: true
  21411. },
  21412. {
  21413. name: "Canon Height",
  21414. height: math.unit(50, "AU")
  21415. },
  21416. ]
  21417. ))
  21418. characterMakers.push(() => makeCharacter(
  21419. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21420. {
  21421. front: {
  21422. height: math.unit(6, "feet"),
  21423. weight: math.unit(150, "lb"),
  21424. name: "Front",
  21425. image: {
  21426. source: "./media/characters/terrance-keayes/front.svg",
  21427. extra: 1.005,
  21428. bottom: 151 / 1615
  21429. }
  21430. },
  21431. side: {
  21432. height: math.unit(6, "feet"),
  21433. weight: math.unit(150, "lb"),
  21434. name: "Side",
  21435. image: {
  21436. source: "./media/characters/terrance-keayes/side.svg",
  21437. extra: 1.005,
  21438. bottom: 129.4 / 1544
  21439. }
  21440. },
  21441. back: {
  21442. height: math.unit(6, "feet"),
  21443. weight: math.unit(150, "lb"),
  21444. name: "Back",
  21445. image: {
  21446. source: "./media/characters/terrance-keayes/back.svg",
  21447. extra: 1.005,
  21448. bottom: 58.4 / 1557.3
  21449. }
  21450. },
  21451. dick: {
  21452. height: math.unit(6 * 0.208, "feet"),
  21453. name: "Dick",
  21454. image: {
  21455. source: "./media/characters/terrance-keayes/dick.svg"
  21456. }
  21457. },
  21458. },
  21459. [
  21460. {
  21461. name: "Canon Height",
  21462. height: math.unit(35, "miles"),
  21463. default: true
  21464. },
  21465. ]
  21466. ))
  21467. characterMakers.push(() => makeCharacter(
  21468. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21469. {
  21470. front: {
  21471. height: math.unit(6, "feet"),
  21472. weight: math.unit(150, "lb"),
  21473. name: "Front",
  21474. image: {
  21475. source: "./media/characters/ofelia/front.svg",
  21476. extra: 546 / 541,
  21477. bottom: 39 / 583
  21478. }
  21479. },
  21480. back: {
  21481. height: math.unit(6, "feet"),
  21482. weight: math.unit(150, "lb"),
  21483. name: "Back",
  21484. image: {
  21485. source: "./media/characters/ofelia/back.svg",
  21486. extra: 564 / 559.5,
  21487. bottom: 8.69 / 573.02
  21488. }
  21489. },
  21490. maw: {
  21491. height: math.unit(1, "feet"),
  21492. name: "Maw",
  21493. image: {
  21494. source: "./media/characters/ofelia/maw.svg"
  21495. }
  21496. },
  21497. foot: {
  21498. height: math.unit(1.949, "feet"),
  21499. name: "Foot",
  21500. image: {
  21501. source: "./media/characters/ofelia/foot.svg"
  21502. }
  21503. },
  21504. },
  21505. [
  21506. {
  21507. name: "Canon Height",
  21508. height: math.unit(2000, "miles"),
  21509. default: true
  21510. },
  21511. ]
  21512. ))
  21513. characterMakers.push(() => makeCharacter(
  21514. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21515. {
  21516. front: {
  21517. height: math.unit(6, "feet"),
  21518. weight: math.unit(150, "lb"),
  21519. name: "Front",
  21520. image: {
  21521. source: "./media/characters/samuel/front.svg",
  21522. extra: 265 / 258,
  21523. bottom: 2 / 266.1566
  21524. }
  21525. },
  21526. },
  21527. [
  21528. {
  21529. name: "Macro",
  21530. height: math.unit(100, "feet"),
  21531. default: true
  21532. },
  21533. {
  21534. name: "Full Size",
  21535. height: math.unit(1000, "miles")
  21536. },
  21537. ]
  21538. ))
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21541. {
  21542. front: {
  21543. height: math.unit(6, "feet"),
  21544. weight: math.unit(300, "lb"),
  21545. name: "Front",
  21546. image: {
  21547. source: "./media/characters/beishir-kiel/front.svg",
  21548. extra: 569 / 547,
  21549. bottom: 41.9 / 609
  21550. }
  21551. },
  21552. maw: {
  21553. height: math.unit(6 * 0.202, "feet"),
  21554. name: "Maw",
  21555. image: {
  21556. source: "./media/characters/beishir-kiel/maw.svg"
  21557. }
  21558. },
  21559. },
  21560. [
  21561. {
  21562. name: "Macro",
  21563. height: math.unit(300, "feet"),
  21564. default: true
  21565. },
  21566. ]
  21567. ))
  21568. characterMakers.push(() => makeCharacter(
  21569. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21570. {
  21571. front: {
  21572. height: math.unit(5 + 8 / 12, "feet"),
  21573. weight: math.unit(120, "lb"),
  21574. name: "Front",
  21575. image: {
  21576. source: "./media/characters/logan-grey/front.svg",
  21577. extra: 2539 / 2393,
  21578. bottom: 97.6 / 2636.37
  21579. }
  21580. },
  21581. frontAlt: {
  21582. height: math.unit(5 + 8 / 12, "feet"),
  21583. weight: math.unit(120, "lb"),
  21584. name: "Front (Alt)",
  21585. image: {
  21586. source: "./media/characters/logan-grey/front-alt.svg",
  21587. extra: 958 / 893,
  21588. bottom: 15 / 970.768
  21589. }
  21590. },
  21591. back: {
  21592. height: math.unit(5 + 8 / 12, "feet"),
  21593. weight: math.unit(120, "lb"),
  21594. name: "Back",
  21595. image: {
  21596. source: "./media/characters/logan-grey/back.svg",
  21597. extra: 958 / 893,
  21598. bottom: 2.1881 / 970.9788
  21599. }
  21600. },
  21601. dick: {
  21602. height: math.unit(1.437, "feet"),
  21603. name: "Dick",
  21604. image: {
  21605. source: "./media/characters/logan-grey/dick.svg"
  21606. }
  21607. },
  21608. },
  21609. [
  21610. {
  21611. name: "Normal",
  21612. height: math.unit(5 + 8 / 12, "feet")
  21613. },
  21614. {
  21615. name: "The 500 Foot Femboy",
  21616. height: math.unit(500, "feet"),
  21617. default: true
  21618. },
  21619. {
  21620. name: "Megmacro",
  21621. height: math.unit(20, "miles")
  21622. },
  21623. ]
  21624. ))
  21625. characterMakers.push(() => makeCharacter(
  21626. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21627. {
  21628. front: {
  21629. height: math.unit(8 + 2 / 12, "feet"),
  21630. weight: math.unit(275, "lb"),
  21631. name: "Front",
  21632. image: {
  21633. source: "./media/characters/draganta/front.svg",
  21634. extra: 1177 / 1135,
  21635. bottom: 33.46 / 1212.1
  21636. }
  21637. },
  21638. },
  21639. [
  21640. {
  21641. name: "Normal",
  21642. height: math.unit(8 + 6 / 12, "feet"),
  21643. default: true
  21644. },
  21645. {
  21646. name: "Macro",
  21647. height: math.unit(150, "feet")
  21648. },
  21649. {
  21650. name: "Megamacro",
  21651. height: math.unit(1000, "miles")
  21652. },
  21653. ]
  21654. ))
  21655. characterMakers.push(() => makeCharacter(
  21656. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21657. {
  21658. front: {
  21659. height: math.unit(1.72, "m"),
  21660. weight: math.unit(80, "lb"),
  21661. name: "Front",
  21662. image: {
  21663. source: "./media/characters/voski/front.svg",
  21664. extra: 2076.22 / 2022.4,
  21665. bottom: 102.7 / 2177.3866
  21666. }
  21667. },
  21668. frontNsfw: {
  21669. height: math.unit(1.72, "m"),
  21670. weight: math.unit(80, "lb"),
  21671. name: "Front (NSFW)",
  21672. image: {
  21673. source: "./media/characters/voski/front-nsfw.svg",
  21674. extra: 2076.22 / 2022.4,
  21675. bottom: 102.7 / 2177.3866
  21676. }
  21677. },
  21678. back: {
  21679. height: math.unit(1.72, "m"),
  21680. weight: math.unit(80, "lb"),
  21681. name: "Back",
  21682. image: {
  21683. source: "./media/characters/voski/back.svg",
  21684. extra: 2104 / 2051,
  21685. bottom: 10.45 / 2113.63
  21686. }
  21687. },
  21688. },
  21689. [
  21690. {
  21691. name: "Normal",
  21692. height: math.unit(1.72, "m")
  21693. },
  21694. {
  21695. name: "Macro",
  21696. height: math.unit(55, "m"),
  21697. default: true
  21698. },
  21699. {
  21700. name: "Macro+",
  21701. height: math.unit(300, "m")
  21702. },
  21703. {
  21704. name: "Macro++",
  21705. height: math.unit(700, "m")
  21706. },
  21707. {
  21708. name: "Macro+++",
  21709. height: math.unit(4500, "m")
  21710. },
  21711. {
  21712. name: "Macro++++",
  21713. height: math.unit(45, "km")
  21714. },
  21715. {
  21716. name: "Macro+++++",
  21717. height: math.unit(1220, "km")
  21718. },
  21719. ]
  21720. ))
  21721. characterMakers.push(() => makeCharacter(
  21722. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21723. {
  21724. front: {
  21725. height: math.unit(2.3, "m"),
  21726. weight: math.unit(304, "kg"),
  21727. name: "Front",
  21728. image: {
  21729. source: "./media/characters/icowom-lee/front.svg",
  21730. extra: 985 / 955,
  21731. bottom: 25.4 / 1012
  21732. }
  21733. },
  21734. fronttentacles: {
  21735. height: math.unit(2.3, "m"),
  21736. weight: math.unit(304, "kg"),
  21737. name: "Front-tentacles",
  21738. image: {
  21739. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21740. extra: 985 / 955,
  21741. bottom: 25.4 / 1012
  21742. }
  21743. },
  21744. back: {
  21745. height: math.unit(2.3, "m"),
  21746. weight: math.unit(304, "kg"),
  21747. name: "Back",
  21748. image: {
  21749. source: "./media/characters/icowom-lee/back.svg",
  21750. extra: 975 / 954,
  21751. bottom: 9.5 / 985
  21752. }
  21753. },
  21754. backtentacles: {
  21755. height: math.unit(2.3, "m"),
  21756. weight: math.unit(304, "kg"),
  21757. name: "Back-tentacles",
  21758. image: {
  21759. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21760. extra: 975 / 954,
  21761. bottom: 9.5 / 985
  21762. }
  21763. },
  21764. frontDressed: {
  21765. height: math.unit(2.3, "m"),
  21766. weight: math.unit(304, "kg"),
  21767. name: "Front (Dressed)",
  21768. image: {
  21769. source: "./media/characters/icowom-lee/front-dressed.svg",
  21770. extra: 3076 / 2933,
  21771. bottom: 51.4 / 3125.1889
  21772. }
  21773. },
  21774. rump: {
  21775. height: math.unit(0.776, "meters"),
  21776. name: "Rump",
  21777. image: {
  21778. source: "./media/characters/icowom-lee/rump.svg"
  21779. }
  21780. },
  21781. genitals: {
  21782. height: math.unit(0.78, "meters"),
  21783. name: "Genitals",
  21784. image: {
  21785. source: "./media/characters/icowom-lee/genitals.svg"
  21786. }
  21787. },
  21788. },
  21789. [
  21790. {
  21791. name: "Normal",
  21792. height: math.unit(2.3, "meters"),
  21793. default: true
  21794. },
  21795. {
  21796. name: "Macro",
  21797. height: math.unit(94, "meters"),
  21798. default: true
  21799. },
  21800. ]
  21801. ))
  21802. characterMakers.push(() => makeCharacter(
  21803. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21804. {
  21805. front: {
  21806. height: math.unit(22, "meters"),
  21807. weight: math.unit(21000, "kg"),
  21808. name: "Front",
  21809. image: {
  21810. source: "./media/characters/shock-diamond/front.svg",
  21811. extra: 2204 / 2053,
  21812. bottom: 65 / 2239.47
  21813. }
  21814. },
  21815. frontNude: {
  21816. height: math.unit(22, "meters"),
  21817. weight: math.unit(21000, "kg"),
  21818. name: "Front (Nude)",
  21819. image: {
  21820. source: "./media/characters/shock-diamond/front-nude.svg",
  21821. extra: 2514 / 2285,
  21822. bottom: 13 / 2527.56
  21823. }
  21824. },
  21825. },
  21826. [
  21827. {
  21828. name: "Normal",
  21829. height: math.unit(3, "meters")
  21830. },
  21831. {
  21832. name: "Macro",
  21833. height: math.unit(22, "meters"),
  21834. default: true
  21835. },
  21836. ]
  21837. ))
  21838. characterMakers.push(() => makeCharacter(
  21839. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21840. {
  21841. front: {
  21842. height: math.unit(5 + 4 / 12, "feet"),
  21843. weight: math.unit(120, "lb"),
  21844. name: "Front",
  21845. image: {
  21846. source: "./media/characters/rory/front.svg",
  21847. extra: 589 / 556,
  21848. bottom: 45.7 / 635.76
  21849. }
  21850. },
  21851. frontNude: {
  21852. height: math.unit(5 + 4 / 12, "feet"),
  21853. weight: math.unit(120, "lb"),
  21854. name: "Front (Nude)",
  21855. image: {
  21856. source: "./media/characters/rory/front-nude.svg",
  21857. extra: 589 / 556,
  21858. bottom: 45.7 / 635.76
  21859. }
  21860. },
  21861. side: {
  21862. height: math.unit(5 + 4 / 12, "feet"),
  21863. weight: math.unit(120, "lb"),
  21864. name: "Side",
  21865. image: {
  21866. source: "./media/characters/rory/side.svg",
  21867. extra: 597 / 564,
  21868. bottom: 55 / 653
  21869. }
  21870. },
  21871. back: {
  21872. height: math.unit(5 + 4 / 12, "feet"),
  21873. weight: math.unit(120, "lb"),
  21874. name: "Back",
  21875. image: {
  21876. source: "./media/characters/rory/back.svg",
  21877. extra: 620 / 585,
  21878. bottom: 8.86 / 630.43
  21879. }
  21880. },
  21881. dick: {
  21882. height: math.unit(0.86, "feet"),
  21883. name: "Dick",
  21884. image: {
  21885. source: "./media/characters/rory/dick.svg"
  21886. }
  21887. },
  21888. },
  21889. [
  21890. {
  21891. name: "Normal",
  21892. height: math.unit(5 + 4 / 12, "feet"),
  21893. default: true
  21894. },
  21895. {
  21896. name: "Macro",
  21897. height: math.unit(100, "feet")
  21898. },
  21899. {
  21900. name: "Macro+",
  21901. height: math.unit(140, "feet")
  21902. },
  21903. {
  21904. name: "Macro++",
  21905. height: math.unit(300, "feet")
  21906. },
  21907. ]
  21908. ))
  21909. characterMakers.push(() => makeCharacter(
  21910. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21911. {
  21912. front: {
  21913. height: math.unit(5 + 9 / 12, "feet"),
  21914. weight: math.unit(190, "lb"),
  21915. name: "Front",
  21916. image: {
  21917. source: "./media/characters/sprisk/front.svg",
  21918. extra: 1225 / 1180,
  21919. bottom: 42.7 / 1266.4
  21920. }
  21921. },
  21922. frontNsfw: {
  21923. height: math.unit(5 + 9 / 12, "feet"),
  21924. weight: math.unit(190, "lb"),
  21925. name: "Front (NSFW)",
  21926. image: {
  21927. source: "./media/characters/sprisk/front-nsfw.svg",
  21928. extra: 1225 / 1180,
  21929. bottom: 42.7 / 1266.4
  21930. }
  21931. },
  21932. back: {
  21933. height: math.unit(5 + 9 / 12, "feet"),
  21934. weight: math.unit(190, "lb"),
  21935. name: "Back",
  21936. image: {
  21937. source: "./media/characters/sprisk/back.svg",
  21938. extra: 1247 / 1200,
  21939. bottom: 5.6 / 1253.04
  21940. }
  21941. },
  21942. },
  21943. [
  21944. {
  21945. name: "Tiny",
  21946. height: math.unit(2, "inches")
  21947. },
  21948. {
  21949. name: "Normal",
  21950. height: math.unit(5 + 9 / 12, "feet"),
  21951. default: true
  21952. },
  21953. {
  21954. name: "Mini Macro",
  21955. height: math.unit(18, "feet")
  21956. },
  21957. {
  21958. name: "Macro",
  21959. height: math.unit(100, "feet")
  21960. },
  21961. {
  21962. name: "MACRO",
  21963. height: math.unit(50, "miles")
  21964. },
  21965. {
  21966. name: "M A C R O",
  21967. height: math.unit(300, "miles")
  21968. },
  21969. ]
  21970. ))
  21971. characterMakers.push(() => makeCharacter(
  21972. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21973. {
  21974. side: {
  21975. height: math.unit(15.6, "meters"),
  21976. weight: math.unit(700000, "kg"),
  21977. name: "Side",
  21978. image: {
  21979. source: "./media/characters/bunsen/side.svg",
  21980. extra: 1644 / 358
  21981. }
  21982. },
  21983. foot: {
  21984. height: math.unit(1.611 * 1644 / 358, "meter"),
  21985. name: "Foot",
  21986. image: {
  21987. source: "./media/characters/bunsen/foot.svg"
  21988. }
  21989. },
  21990. },
  21991. [
  21992. {
  21993. name: "Small",
  21994. height: math.unit(10, "feet")
  21995. },
  21996. {
  21997. name: "Normal",
  21998. height: math.unit(15.6, "meters"),
  21999. default: true
  22000. },
  22001. ]
  22002. ))
  22003. characterMakers.push(() => makeCharacter(
  22004. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22005. {
  22006. front: {
  22007. height: math.unit(4 + 11 / 12, "feet"),
  22008. weight: math.unit(140, "lb"),
  22009. name: "Front",
  22010. image: {
  22011. source: "./media/characters/sesh/front.svg",
  22012. extra: 3420 / 3231,
  22013. bottom: 72 / 3949.5
  22014. }
  22015. },
  22016. },
  22017. [
  22018. {
  22019. name: "Normal",
  22020. height: math.unit(4 + 11 / 12, "feet")
  22021. },
  22022. {
  22023. name: "Grown",
  22024. height: math.unit(15, "feet"),
  22025. default: true
  22026. },
  22027. {
  22028. name: "Macro",
  22029. height: math.unit(1500, "feet")
  22030. },
  22031. {
  22032. name: "Megamacro",
  22033. height: math.unit(30, "miles")
  22034. },
  22035. {
  22036. name: "Continental",
  22037. height: math.unit(3000, "miles")
  22038. },
  22039. {
  22040. name: "Gravity Mass",
  22041. height: math.unit(300000, "miles")
  22042. },
  22043. {
  22044. name: "Planet Buster",
  22045. height: math.unit(30000000, "miles")
  22046. },
  22047. {
  22048. name: "Big",
  22049. height: math.unit(3000000000, "miles")
  22050. },
  22051. ]
  22052. ))
  22053. characterMakers.push(() => makeCharacter(
  22054. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22055. {
  22056. front: {
  22057. height: math.unit(9, "feet"),
  22058. weight: math.unit(350, "lb"),
  22059. name: "Front",
  22060. image: {
  22061. source: "./media/characters/pepper/front.svg",
  22062. extra: 1448 / 1312,
  22063. bottom: 9.4 / 1457.88
  22064. }
  22065. },
  22066. back: {
  22067. height: math.unit(9, "feet"),
  22068. weight: math.unit(350, "lb"),
  22069. name: "Back",
  22070. image: {
  22071. source: "./media/characters/pepper/back.svg",
  22072. extra: 1423 / 1300,
  22073. bottom: 4.6 / 1429
  22074. }
  22075. },
  22076. maw: {
  22077. height: math.unit(0.932, "feet"),
  22078. name: "Maw",
  22079. image: {
  22080. source: "./media/characters/pepper/maw.svg"
  22081. }
  22082. },
  22083. },
  22084. [
  22085. {
  22086. name: "Normal",
  22087. height: math.unit(9, "feet"),
  22088. default: true
  22089. },
  22090. ]
  22091. ))
  22092. characterMakers.push(() => makeCharacter(
  22093. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22094. {
  22095. front: {
  22096. height: math.unit(6, "feet"),
  22097. weight: math.unit(150, "lb"),
  22098. name: "Front",
  22099. image: {
  22100. source: "./media/characters/maelstrom/front.svg",
  22101. extra: 2100 / 1883,
  22102. bottom: 94 / 2196.7
  22103. }
  22104. },
  22105. },
  22106. [
  22107. {
  22108. name: "Less Kaiju",
  22109. height: math.unit(200, "feet")
  22110. },
  22111. {
  22112. name: "Kaiju",
  22113. height: math.unit(400, "feet"),
  22114. default: true
  22115. },
  22116. {
  22117. name: "Kaiju-er",
  22118. height: math.unit(600, "feet")
  22119. },
  22120. ]
  22121. ))
  22122. characterMakers.push(() => makeCharacter(
  22123. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22124. {
  22125. front: {
  22126. height: math.unit(6 + 5 / 12, "feet"),
  22127. weight: math.unit(180, "lb"),
  22128. name: "Front",
  22129. image: {
  22130. source: "./media/characters/lexir/front.svg",
  22131. extra: 180 / 172,
  22132. bottom: 12 / 192
  22133. }
  22134. },
  22135. back: {
  22136. height: math.unit(6 + 5 / 12, "feet"),
  22137. weight: math.unit(180, "lb"),
  22138. name: "Back",
  22139. image: {
  22140. source: "./media/characters/lexir/back.svg",
  22141. extra: 183.84 / 175.5,
  22142. bottom: 3.1 / 187
  22143. }
  22144. },
  22145. },
  22146. [
  22147. {
  22148. name: "Very Smal",
  22149. height: math.unit(1, "nm")
  22150. },
  22151. {
  22152. name: "Normal",
  22153. height: math.unit(6 + 5 / 12, "feet"),
  22154. default: true
  22155. },
  22156. {
  22157. name: "Macro",
  22158. height: math.unit(1, "mile")
  22159. },
  22160. {
  22161. name: "Megamacro",
  22162. height: math.unit(50, "miles")
  22163. },
  22164. ]
  22165. ))
  22166. characterMakers.push(() => makeCharacter(
  22167. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22168. {
  22169. front: {
  22170. height: math.unit(1.5, "meters"),
  22171. weight: math.unit(100, "lb"),
  22172. name: "Front",
  22173. image: {
  22174. source: "./media/characters/maksio/front.svg",
  22175. extra: 1549 / 1531,
  22176. bottom: 123.7 / 1674.5429
  22177. }
  22178. },
  22179. back: {
  22180. height: math.unit(1.5, "meters"),
  22181. weight: math.unit(100, "lb"),
  22182. name: "Back",
  22183. image: {
  22184. source: "./media/characters/maksio/back.svg",
  22185. extra: 1541 / 1509,
  22186. bottom: 97 / 1639
  22187. }
  22188. },
  22189. hand: {
  22190. height: math.unit(0.621, "feet"),
  22191. name: "Hand",
  22192. image: {
  22193. source: "./media/characters/maksio/hand.svg"
  22194. }
  22195. },
  22196. foot: {
  22197. height: math.unit(1.611, "feet"),
  22198. name: "Foot",
  22199. image: {
  22200. source: "./media/characters/maksio/foot.svg"
  22201. }
  22202. },
  22203. },
  22204. [
  22205. {
  22206. name: "Shrunken",
  22207. height: math.unit(10, "cm")
  22208. },
  22209. {
  22210. name: "Normal",
  22211. height: math.unit(150, "cm"),
  22212. default: true
  22213. },
  22214. ]
  22215. ))
  22216. characterMakers.push(() => makeCharacter(
  22217. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22218. {
  22219. front: {
  22220. height: math.unit(100, "feet"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/erza-bear/front.svg",
  22224. extra: 2449 / 2390,
  22225. bottom: 46 / 2494
  22226. }
  22227. },
  22228. back: {
  22229. height: math.unit(100, "feet"),
  22230. name: "Back",
  22231. image: {
  22232. source: "./media/characters/erza-bear/back.svg",
  22233. extra: 2489 / 2430,
  22234. bottom: 85.4 / 2480
  22235. }
  22236. },
  22237. tail: {
  22238. height: math.unit(42, "feet"),
  22239. name: "Tail",
  22240. image: {
  22241. source: "./media/characters/erza-bear/tail.svg"
  22242. }
  22243. },
  22244. tongue: {
  22245. height: math.unit(8, "feet"),
  22246. name: "Tongue",
  22247. image: {
  22248. source: "./media/characters/erza-bear/tongue.svg"
  22249. }
  22250. },
  22251. dick: {
  22252. height: math.unit(10.5, "feet"),
  22253. name: "Dick",
  22254. image: {
  22255. source: "./media/characters/erza-bear/dick.svg"
  22256. }
  22257. },
  22258. dickVertical: {
  22259. height: math.unit(16.9, "feet"),
  22260. name: "Dick (Vertical)",
  22261. image: {
  22262. source: "./media/characters/erza-bear/dick-vertical.svg"
  22263. }
  22264. },
  22265. },
  22266. [
  22267. {
  22268. name: "Macro",
  22269. height: math.unit(100, "feet"),
  22270. default: true
  22271. },
  22272. ]
  22273. ))
  22274. characterMakers.push(() => makeCharacter(
  22275. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22276. {
  22277. front: {
  22278. height: math.unit(172, "cm"),
  22279. weight: math.unit(73, "kg"),
  22280. name: "Front",
  22281. image: {
  22282. source: "./media/characters/violet-flor/front.svg",
  22283. extra: 1530 / 1442,
  22284. bottom: 61.9 / 1588.8
  22285. }
  22286. },
  22287. back: {
  22288. height: math.unit(180, "cm"),
  22289. weight: math.unit(73, "kg"),
  22290. name: "Back",
  22291. image: {
  22292. source: "./media/characters/violet-flor/back.svg",
  22293. extra: 1692 / 1630,
  22294. bottom: 20 / 1712
  22295. }
  22296. },
  22297. },
  22298. [
  22299. {
  22300. name: "Normal",
  22301. height: math.unit(172, "cm"),
  22302. default: true
  22303. },
  22304. ]
  22305. ))
  22306. characterMakers.push(() => makeCharacter(
  22307. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22308. {
  22309. front: {
  22310. height: math.unit(6, "feet"),
  22311. weight: math.unit(220, "lb"),
  22312. name: "Front",
  22313. image: {
  22314. source: "./media/characters/lynn-rhea/front.svg",
  22315. extra: 310 / 273
  22316. }
  22317. },
  22318. back: {
  22319. height: math.unit(6, "feet"),
  22320. weight: math.unit(220, "lb"),
  22321. name: "Back",
  22322. image: {
  22323. source: "./media/characters/lynn-rhea/back.svg",
  22324. extra: 310 / 273
  22325. }
  22326. },
  22327. dicks: {
  22328. height: math.unit(0.9, "feet"),
  22329. name: "Dicks",
  22330. image: {
  22331. source: "./media/characters/lynn-rhea/dicks.svg"
  22332. }
  22333. },
  22334. slit: {
  22335. height: math.unit(0.4, "feet"),
  22336. name: "Slit",
  22337. image: {
  22338. source: "./media/characters/lynn-rhea/slit.svg"
  22339. }
  22340. },
  22341. },
  22342. [
  22343. {
  22344. name: "Micro",
  22345. height: math.unit(1, "inch")
  22346. },
  22347. {
  22348. name: "Macro",
  22349. height: math.unit(60, "feet"),
  22350. default: true
  22351. },
  22352. {
  22353. name: "Megamacro",
  22354. height: math.unit(2, "miles")
  22355. },
  22356. {
  22357. name: "Gigamacro",
  22358. height: math.unit(3, "earths")
  22359. },
  22360. {
  22361. name: "Galactic",
  22362. height: math.unit(0.8, "galaxies")
  22363. },
  22364. ]
  22365. ))
  22366. characterMakers.push(() => makeCharacter(
  22367. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22368. {
  22369. front: {
  22370. height: math.unit(1600, "feet"),
  22371. weight: math.unit(85758785169, "kg"),
  22372. name: "Front",
  22373. image: {
  22374. source: "./media/characters/valathos/front.svg",
  22375. extra: 1451 / 1339
  22376. }
  22377. },
  22378. },
  22379. [
  22380. {
  22381. name: "Macro",
  22382. height: math.unit(1600, "feet"),
  22383. default: true
  22384. },
  22385. ]
  22386. ))
  22387. characterMakers.push(() => makeCharacter(
  22388. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22389. {
  22390. front: {
  22391. height: math.unit(7 + 5 / 12, "feet"),
  22392. weight: math.unit(300, "lb"),
  22393. name: "Front",
  22394. image: {
  22395. source: "./media/characters/azula/front.svg",
  22396. extra: 3208 / 2880,
  22397. bottom: 80.2 / 3277
  22398. }
  22399. },
  22400. back: {
  22401. height: math.unit(7 + 5 / 12, "feet"),
  22402. weight: math.unit(300, "lb"),
  22403. name: "Back",
  22404. image: {
  22405. source: "./media/characters/azula/back.svg",
  22406. extra: 3169 / 2822,
  22407. bottom: 150.6 / 3321
  22408. }
  22409. },
  22410. },
  22411. [
  22412. {
  22413. name: "Normal",
  22414. height: math.unit(7 + 5 / 12, "feet"),
  22415. default: true
  22416. },
  22417. {
  22418. name: "Big",
  22419. height: math.unit(20, "feet")
  22420. },
  22421. ]
  22422. ))
  22423. characterMakers.push(() => makeCharacter(
  22424. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22425. {
  22426. front: {
  22427. height: math.unit(5 + 1 / 12, "feet"),
  22428. weight: math.unit(110, "lb"),
  22429. name: "Front",
  22430. image: {
  22431. source: "./media/characters/rupert/front.svg",
  22432. extra: 1549 / 1495,
  22433. bottom: 54.2 / 1604.4
  22434. }
  22435. },
  22436. },
  22437. [
  22438. {
  22439. name: "Normal",
  22440. height: math.unit(5 + 1 / 12, "feet"),
  22441. default: true
  22442. },
  22443. ]
  22444. ))
  22445. characterMakers.push(() => makeCharacter(
  22446. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22447. {
  22448. front: {
  22449. height: math.unit(8 + 4 / 12, "feet"),
  22450. weight: math.unit(350, "lb"),
  22451. name: "Front",
  22452. image: {
  22453. source: "./media/characters/sheera-castellar/front.svg",
  22454. extra: 1957 / 1894,
  22455. bottom: 26.97 / 1975.017
  22456. }
  22457. },
  22458. side: {
  22459. height: math.unit(8 + 4 / 12, "feet"),
  22460. weight: math.unit(350, "lb"),
  22461. name: "Side",
  22462. image: {
  22463. source: "./media/characters/sheera-castellar/side.svg",
  22464. extra: 1957 / 1894
  22465. }
  22466. },
  22467. back: {
  22468. height: math.unit(8 + 4 / 12, "feet"),
  22469. weight: math.unit(350, "lb"),
  22470. name: "Back",
  22471. image: {
  22472. source: "./media/characters/sheera-castellar/back.svg",
  22473. extra: 1957 / 1894
  22474. }
  22475. },
  22476. angled: {
  22477. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22478. weight: math.unit(350, "lb"),
  22479. name: "Angled",
  22480. image: {
  22481. source: "./media/characters/sheera-castellar/angled.svg",
  22482. extra: 1807 / 1707,
  22483. bottom: 68 / 1875
  22484. }
  22485. },
  22486. genitals: {
  22487. height: math.unit(2.2, "feet"),
  22488. name: "Genitals",
  22489. image: {
  22490. source: "./media/characters/sheera-castellar/genitals.svg"
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Normal",
  22497. height: math.unit(8 + 4 / 12, "feet")
  22498. },
  22499. {
  22500. name: "Macro",
  22501. height: math.unit(150, "feet"),
  22502. default: true
  22503. },
  22504. {
  22505. name: "Macro+",
  22506. height: math.unit(800, "feet")
  22507. },
  22508. ]
  22509. ))
  22510. characterMakers.push(() => makeCharacter(
  22511. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22512. {
  22513. front: {
  22514. height: math.unit(6, "feet"),
  22515. weight: math.unit(150, "lb"),
  22516. name: "Front",
  22517. image: {
  22518. source: "./media/characters/jaipur/front.svg",
  22519. extra: 3860 / 3731,
  22520. bottom: 287 / 4140
  22521. }
  22522. },
  22523. back: {
  22524. height: math.unit(6, "feet"),
  22525. weight: math.unit(150, "lb"),
  22526. name: "Back",
  22527. image: {
  22528. source: "./media/characters/jaipur/back.svg",
  22529. extra: 4060 / 3930,
  22530. bottom: 151 / 4200
  22531. }
  22532. },
  22533. },
  22534. [
  22535. {
  22536. name: "Normal",
  22537. height: math.unit(1.85, "meters"),
  22538. default: true
  22539. },
  22540. {
  22541. name: "Macro",
  22542. height: math.unit(150, "meters")
  22543. },
  22544. {
  22545. name: "Macro+",
  22546. height: math.unit(0.5, "miles")
  22547. },
  22548. {
  22549. name: "Macro++",
  22550. height: math.unit(2.5, "miles")
  22551. },
  22552. {
  22553. name: "Macro+++",
  22554. height: math.unit(12, "miles")
  22555. },
  22556. {
  22557. name: "Macro++++",
  22558. height: math.unit(120, "miles")
  22559. },
  22560. {
  22561. name: "Macro+++++",
  22562. height: math.unit(1200, "miles")
  22563. },
  22564. ]
  22565. ))
  22566. characterMakers.push(() => makeCharacter(
  22567. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22568. {
  22569. front: {
  22570. height: math.unit(6, "feet"),
  22571. weight: math.unit(150, "lb"),
  22572. name: "Front",
  22573. image: {
  22574. source: "./media/characters/sheila-wolf/front.svg",
  22575. extra: 1931 / 1808,
  22576. bottom: 29.5 / 1960
  22577. }
  22578. },
  22579. dick: {
  22580. height: math.unit(1.464, "feet"),
  22581. name: "Dick",
  22582. image: {
  22583. source: "./media/characters/sheila-wolf/dick.svg"
  22584. }
  22585. },
  22586. muzzle: {
  22587. height: math.unit(0.513, "feet"),
  22588. name: "Muzzle",
  22589. image: {
  22590. source: "./media/characters/sheila-wolf/muzzle.svg"
  22591. }
  22592. },
  22593. },
  22594. [
  22595. {
  22596. name: "Macro",
  22597. height: math.unit(70, "feet"),
  22598. default: true
  22599. },
  22600. ]
  22601. ))
  22602. characterMakers.push(() => makeCharacter(
  22603. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22604. {
  22605. front: {
  22606. height: math.unit(32, "meters"),
  22607. weight: math.unit(300000, "kg"),
  22608. name: "Front",
  22609. image: {
  22610. source: "./media/characters/almor/front.svg",
  22611. extra: 1408 / 1322,
  22612. bottom: 94.6 / 1506.5
  22613. }
  22614. },
  22615. },
  22616. [
  22617. {
  22618. name: "Macro",
  22619. height: math.unit(32, "meters"),
  22620. default: true
  22621. },
  22622. ]
  22623. ))
  22624. characterMakers.push(() => makeCharacter(
  22625. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22626. {
  22627. front: {
  22628. height: math.unit(7, "feet"),
  22629. weight: math.unit(200, "lb"),
  22630. name: "Front",
  22631. image: {
  22632. source: "./media/characters/silver/front.svg",
  22633. extra: 472.1 / 450.5,
  22634. bottom: 26.5 / 499.424
  22635. }
  22636. },
  22637. },
  22638. [
  22639. {
  22640. name: "Normal",
  22641. height: math.unit(7, "feet"),
  22642. default: true
  22643. },
  22644. {
  22645. name: "Macro",
  22646. height: math.unit(800, "feet")
  22647. },
  22648. {
  22649. name: "Megamacro",
  22650. height: math.unit(250, "miles")
  22651. },
  22652. ]
  22653. ))
  22654. characterMakers.push(() => makeCharacter(
  22655. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22656. {
  22657. front: {
  22658. height: math.unit(6, "feet"),
  22659. weight: math.unit(150, "lb"),
  22660. name: "Front",
  22661. image: {
  22662. source: "./media/characters/pliskin/front.svg",
  22663. extra: 1469 / 1359,
  22664. bottom: 70 / 1540
  22665. }
  22666. },
  22667. },
  22668. [
  22669. {
  22670. name: "Micro",
  22671. height: math.unit(3, "inches")
  22672. },
  22673. {
  22674. name: "Normal",
  22675. height: math.unit(5 + 11 / 12, "feet"),
  22676. default: true
  22677. },
  22678. {
  22679. name: "Macro",
  22680. height: math.unit(120, "feet")
  22681. },
  22682. ]
  22683. ))
  22684. characterMakers.push(() => makeCharacter(
  22685. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22686. {
  22687. front: {
  22688. height: math.unit(6, "feet"),
  22689. weight: math.unit(150, "lb"),
  22690. name: "Front",
  22691. image: {
  22692. source: "./media/characters/sammy/front.svg",
  22693. extra: 1193 / 1089,
  22694. bottom: 30.5 / 1226
  22695. }
  22696. },
  22697. },
  22698. [
  22699. {
  22700. name: "Macro",
  22701. height: math.unit(1700, "feet"),
  22702. default: true
  22703. },
  22704. {
  22705. name: "Examacro",
  22706. height: math.unit(2.5e9, "lightyears")
  22707. },
  22708. ]
  22709. ))
  22710. characterMakers.push(() => makeCharacter(
  22711. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22712. {
  22713. front: {
  22714. height: math.unit(21, "meters"),
  22715. weight: math.unit(12, "tonnes"),
  22716. name: "Front",
  22717. image: {
  22718. source: "./media/characters/kuru/front.svg",
  22719. extra: 4301 / 3785,
  22720. bottom: 371.3 / 4691
  22721. }
  22722. },
  22723. },
  22724. [
  22725. {
  22726. name: "Macro",
  22727. height: math.unit(21, "meters"),
  22728. default: true
  22729. },
  22730. ]
  22731. ))
  22732. characterMakers.push(() => makeCharacter(
  22733. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22734. {
  22735. front: {
  22736. height: math.unit(23, "meters"),
  22737. weight: math.unit(12.2, "tonnes"),
  22738. name: "Front",
  22739. image: {
  22740. source: "./media/characters/rakka/front.svg",
  22741. extra: 4670 / 4169,
  22742. bottom: 301 / 4968.7
  22743. }
  22744. },
  22745. },
  22746. [
  22747. {
  22748. name: "Macro",
  22749. height: math.unit(23, "meters"),
  22750. default: true
  22751. },
  22752. ]
  22753. ))
  22754. characterMakers.push(() => makeCharacter(
  22755. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22756. {
  22757. front: {
  22758. height: math.unit(6, "feet"),
  22759. weight: math.unit(150, "lb"),
  22760. name: "Front",
  22761. image: {
  22762. source: "./media/characters/rhys-feline/front.svg",
  22763. extra: 2488 / 2308,
  22764. bottom: 35.67 / 2519.19
  22765. }
  22766. },
  22767. },
  22768. [
  22769. {
  22770. name: "Really Small",
  22771. height: math.unit(1, "nm")
  22772. },
  22773. {
  22774. name: "Micro",
  22775. height: math.unit(4, "inches")
  22776. },
  22777. {
  22778. name: "Normal",
  22779. height: math.unit(4 + 10 / 12, "feet"),
  22780. default: true
  22781. },
  22782. {
  22783. name: "Macro",
  22784. height: math.unit(100, "feet")
  22785. },
  22786. {
  22787. name: "Megamacto",
  22788. height: math.unit(50, "miles")
  22789. },
  22790. ]
  22791. ))
  22792. characterMakers.push(() => makeCharacter(
  22793. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22794. {
  22795. side: {
  22796. height: math.unit(30, "feet"),
  22797. weight: math.unit(35000, "kg"),
  22798. name: "Side",
  22799. image: {
  22800. source: "./media/characters/alydar/side.svg",
  22801. extra: 234 / 222,
  22802. bottom: 6.5 / 241
  22803. }
  22804. },
  22805. front: {
  22806. height: math.unit(30, "feet"),
  22807. weight: math.unit(35000, "kg"),
  22808. name: "Front",
  22809. image: {
  22810. source: "./media/characters/alydar/front.svg",
  22811. extra: 223.37 / 210.2,
  22812. bottom: 22.3 / 246.76
  22813. }
  22814. },
  22815. top: {
  22816. height: math.unit(64.54, "feet"),
  22817. weight: math.unit(35000, "kg"),
  22818. name: "Top",
  22819. image: {
  22820. source: "./media/characters/alydar/top.svg"
  22821. }
  22822. },
  22823. anthro: {
  22824. height: math.unit(30, "feet"),
  22825. weight: math.unit(9000, "kg"),
  22826. name: "Anthro",
  22827. image: {
  22828. source: "./media/characters/alydar/anthro.svg",
  22829. extra: 432 / 421,
  22830. bottom: 7.18 / 440
  22831. }
  22832. },
  22833. maw: {
  22834. height: math.unit(11.693, "feet"),
  22835. name: "Maw",
  22836. image: {
  22837. source: "./media/characters/alydar/maw.svg"
  22838. }
  22839. },
  22840. head: {
  22841. height: math.unit(11.693, "feet"),
  22842. name: "Head",
  22843. image: {
  22844. source: "./media/characters/alydar/head.svg"
  22845. }
  22846. },
  22847. headAlt: {
  22848. height: math.unit(12.861, "feet"),
  22849. name: "Head (Alt)",
  22850. image: {
  22851. source: "./media/characters/alydar/head-alt.svg"
  22852. }
  22853. },
  22854. wing: {
  22855. height: math.unit(20.712, "feet"),
  22856. name: "Wing",
  22857. image: {
  22858. source: "./media/characters/alydar/wing.svg"
  22859. }
  22860. },
  22861. wingFeather: {
  22862. height: math.unit(9.662, "feet"),
  22863. name: "Wing Feather",
  22864. image: {
  22865. source: "./media/characters/alydar/wing-feather.svg"
  22866. }
  22867. },
  22868. countourFeather: {
  22869. height: math.unit(4.154, "feet"),
  22870. name: "Contour Feather",
  22871. image: {
  22872. source: "./media/characters/alydar/contour-feather.svg"
  22873. }
  22874. },
  22875. },
  22876. [
  22877. {
  22878. name: "Diplomatic",
  22879. height: math.unit(13, "feet"),
  22880. default: true
  22881. },
  22882. {
  22883. name: "Small",
  22884. height: math.unit(30, "feet")
  22885. },
  22886. {
  22887. name: "Normal",
  22888. height: math.unit(95, "feet"),
  22889. default: true
  22890. },
  22891. {
  22892. name: "Large",
  22893. height: math.unit(285, "feet")
  22894. },
  22895. {
  22896. name: "Incomprehensible",
  22897. height: math.unit(450, "megameters")
  22898. },
  22899. ]
  22900. ))
  22901. characterMakers.push(() => makeCharacter(
  22902. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22903. {
  22904. side: {
  22905. height: math.unit(11, "feet"),
  22906. weight: math.unit(1750, "kg"),
  22907. name: "Side",
  22908. image: {
  22909. source: "./media/characters/selicia/side.svg",
  22910. extra: 440 / 396,
  22911. bottom: 24.8 / 465.979
  22912. }
  22913. },
  22914. maw: {
  22915. height: math.unit(4.665, "feet"),
  22916. name: "Maw",
  22917. image: {
  22918. source: "./media/characters/selicia/maw.svg"
  22919. }
  22920. },
  22921. },
  22922. [
  22923. {
  22924. name: "Normal",
  22925. height: math.unit(11, "feet"),
  22926. default: true
  22927. },
  22928. ]
  22929. ))
  22930. characterMakers.push(() => makeCharacter(
  22931. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22932. {
  22933. side: {
  22934. height: math.unit(2 + 6 / 12, "feet"),
  22935. weight: math.unit(30, "lb"),
  22936. name: "Side",
  22937. image: {
  22938. source: "./media/characters/layla/side.svg",
  22939. extra: 244 / 188,
  22940. bottom: 18.2 / 262.1
  22941. }
  22942. },
  22943. back: {
  22944. height: math.unit(2 + 6 / 12, "feet"),
  22945. weight: math.unit(30, "lb"),
  22946. name: "Back",
  22947. image: {
  22948. source: "./media/characters/layla/back.svg",
  22949. extra: 308 / 241.5,
  22950. bottom: 8.9 / 316.8
  22951. }
  22952. },
  22953. cumming: {
  22954. height: math.unit(2 + 6 / 12, "feet"),
  22955. weight: math.unit(30, "lb"),
  22956. name: "Cumming",
  22957. image: {
  22958. source: "./media/characters/layla/cumming.svg",
  22959. extra: 342 / 279,
  22960. bottom: 595 / 938
  22961. }
  22962. },
  22963. dickFlaccid: {
  22964. height: math.unit(2.595, "feet"),
  22965. name: "Flaccid Genitals",
  22966. image: {
  22967. source: "./media/characters/layla/dick-flaccid.svg"
  22968. }
  22969. },
  22970. dickErect: {
  22971. height: math.unit(2.359, "feet"),
  22972. name: "Erect Genitals",
  22973. image: {
  22974. source: "./media/characters/layla/dick-erect.svg"
  22975. }
  22976. },
  22977. },
  22978. [
  22979. {
  22980. name: "Micro",
  22981. height: math.unit(1, "inch")
  22982. },
  22983. {
  22984. name: "Small",
  22985. height: math.unit(1, "foot")
  22986. },
  22987. {
  22988. name: "Normal",
  22989. height: math.unit(2 + 6 / 12, "feet"),
  22990. default: true
  22991. },
  22992. {
  22993. name: "Macro",
  22994. height: math.unit(200, "feet")
  22995. },
  22996. {
  22997. name: "Megamacro",
  22998. height: math.unit(1000, "miles")
  22999. },
  23000. {
  23001. name: "Planetary",
  23002. height: math.unit(8000, "miles")
  23003. },
  23004. {
  23005. name: "True Layla",
  23006. height: math.unit(200000 * 7, "multiverses")
  23007. },
  23008. ]
  23009. ))
  23010. characterMakers.push(() => makeCharacter(
  23011. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23012. {
  23013. back: {
  23014. height: math.unit(10.5, "feet"),
  23015. weight: math.unit(800, "lb"),
  23016. name: "Back",
  23017. image: {
  23018. source: "./media/characters/knox/back.svg",
  23019. extra: 1486 / 1089,
  23020. bottom: 107 / 1601.4
  23021. }
  23022. },
  23023. side: {
  23024. height: math.unit(10.5, "feet"),
  23025. weight: math.unit(800, "lb"),
  23026. name: "Side",
  23027. image: {
  23028. source: "./media/characters/knox/side.svg",
  23029. extra: 244 / 218,
  23030. bottom: 14 / 260
  23031. }
  23032. },
  23033. },
  23034. [
  23035. {
  23036. name: "Compact",
  23037. height: math.unit(10.5, "feet"),
  23038. default: true
  23039. },
  23040. {
  23041. name: "Dynamax",
  23042. height: math.unit(210, "feet")
  23043. },
  23044. {
  23045. name: "Full Macro",
  23046. height: math.unit(850, "feet")
  23047. },
  23048. ]
  23049. ))
  23050. characterMakers.push(() => makeCharacter(
  23051. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23052. {
  23053. front: {
  23054. height: math.unit(6, "feet"),
  23055. weight: math.unit(152, "lb"),
  23056. name: "Front",
  23057. image: {
  23058. source: "./media/characters/shin-pikachu/front.svg",
  23059. extra: 1574 / 1480,
  23060. bottom: 53.3 / 1626
  23061. }
  23062. },
  23063. hand: {
  23064. height: math.unit(1.055, "feet"),
  23065. name: "Hand",
  23066. image: {
  23067. source: "./media/characters/shin-pikachu/hand.svg"
  23068. }
  23069. },
  23070. foot: {
  23071. height: math.unit(1.1, "feet"),
  23072. name: "Foot",
  23073. image: {
  23074. source: "./media/characters/shin-pikachu/foot.svg"
  23075. }
  23076. },
  23077. collar: {
  23078. height: math.unit(0.386, "feet"),
  23079. name: "Collar",
  23080. image: {
  23081. source: "./media/characters/shin-pikachu/collar.svg"
  23082. }
  23083. },
  23084. },
  23085. [
  23086. {
  23087. name: "Smallest",
  23088. height: math.unit(0.5, "inches")
  23089. },
  23090. {
  23091. name: "Micro",
  23092. height: math.unit(6, "inches")
  23093. },
  23094. {
  23095. name: "Normal",
  23096. height: math.unit(6, "feet"),
  23097. default: true
  23098. },
  23099. {
  23100. name: "Macro",
  23101. height: math.unit(150, "feet")
  23102. },
  23103. ]
  23104. ))
  23105. characterMakers.push(() => makeCharacter(
  23106. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23107. {
  23108. front: {
  23109. height: math.unit(28, "feet"),
  23110. weight: math.unit(10500, "lb"),
  23111. name: "Front",
  23112. image: {
  23113. source: "./media/characters/kayda/front.svg",
  23114. extra: 1536 / 1428,
  23115. bottom: 68.7 / 1603
  23116. }
  23117. },
  23118. back: {
  23119. height: math.unit(28, "feet"),
  23120. weight: math.unit(10500, "lb"),
  23121. name: "Back",
  23122. image: {
  23123. source: "./media/characters/kayda/back.svg",
  23124. extra: 1557 / 1464,
  23125. bottom: 39.5 / 1597.49
  23126. }
  23127. },
  23128. dick: {
  23129. height: math.unit(3.858, "feet"),
  23130. name: "Dick",
  23131. image: {
  23132. source: "./media/characters/kayda/dick.svg"
  23133. }
  23134. },
  23135. },
  23136. [
  23137. {
  23138. name: "Macro",
  23139. height: math.unit(28, "feet"),
  23140. default: true
  23141. },
  23142. ]
  23143. ))
  23144. characterMakers.push(() => makeCharacter(
  23145. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23146. {
  23147. front: {
  23148. height: math.unit(10 + 11 / 12, "feet"),
  23149. weight: math.unit(1400, "lb"),
  23150. name: "Front",
  23151. image: {
  23152. source: "./media/characters/brian/front.svg",
  23153. extra: 737 / 692,
  23154. bottom: 55.4 / 785
  23155. }
  23156. },
  23157. },
  23158. [
  23159. {
  23160. name: "Normal",
  23161. height: math.unit(10 + 11 / 12, "feet"),
  23162. default: true
  23163. },
  23164. ]
  23165. ))
  23166. characterMakers.push(() => makeCharacter(
  23167. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23168. {
  23169. front: {
  23170. height: math.unit(5 + 8 / 12, "feet"),
  23171. weight: math.unit(140, "lb"),
  23172. name: "Front",
  23173. image: {
  23174. source: "./media/characters/khemri/front.svg",
  23175. extra: 4780 / 4059,
  23176. bottom: 80.1 / 4859.25
  23177. }
  23178. },
  23179. },
  23180. [
  23181. {
  23182. name: "Micro",
  23183. height: math.unit(6, "inches")
  23184. },
  23185. {
  23186. name: "Normal",
  23187. height: math.unit(5 + 8 / 12, "feet"),
  23188. default: true
  23189. },
  23190. ]
  23191. ))
  23192. characterMakers.push(() => makeCharacter(
  23193. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23194. {
  23195. front: {
  23196. height: math.unit(13, "feet"),
  23197. weight: math.unit(1700, "lb"),
  23198. name: "Front",
  23199. image: {
  23200. source: "./media/characters/felix-braveheart/front.svg",
  23201. extra: 1222 / 1157,
  23202. bottom: 53.2 / 1280
  23203. }
  23204. },
  23205. back: {
  23206. height: math.unit(13, "feet"),
  23207. weight: math.unit(1700, "lb"),
  23208. name: "Back",
  23209. image: {
  23210. source: "./media/characters/felix-braveheart/back.svg",
  23211. extra: 1277 / 1203,
  23212. bottom: 50.2 / 1327
  23213. }
  23214. },
  23215. feral: {
  23216. height: math.unit(6, "feet"),
  23217. weight: math.unit(400, "lb"),
  23218. name: "Feral",
  23219. image: {
  23220. source: "./media/characters/felix-braveheart/feral.svg",
  23221. extra: 682 / 625,
  23222. bottom: 6.9 / 688
  23223. }
  23224. },
  23225. },
  23226. [
  23227. {
  23228. name: "Normal",
  23229. height: math.unit(13, "feet"),
  23230. default: true
  23231. },
  23232. ]
  23233. ))
  23234. characterMakers.push(() => makeCharacter(
  23235. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23236. {
  23237. side: {
  23238. height: math.unit(5 + 11 / 12, "feet"),
  23239. weight: math.unit(1400, "lb"),
  23240. name: "Side",
  23241. image: {
  23242. source: "./media/characters/shadow-blade/side.svg",
  23243. extra: 1726 / 1267,
  23244. bottom: 58.4 / 1785
  23245. }
  23246. },
  23247. },
  23248. [
  23249. {
  23250. name: "Normal",
  23251. height: math.unit(5 + 11 / 12, "feet"),
  23252. default: true
  23253. },
  23254. ]
  23255. ))
  23256. characterMakers.push(() => makeCharacter(
  23257. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23258. {
  23259. front: {
  23260. height: math.unit(1 + 6 / 12, "feet"),
  23261. weight: math.unit(25, "lb"),
  23262. name: "Front",
  23263. image: {
  23264. source: "./media/characters/karla-halldor/front.svg",
  23265. extra: 1459 / 1383,
  23266. bottom: 12 / 1472
  23267. }
  23268. },
  23269. },
  23270. [
  23271. {
  23272. name: "Normal",
  23273. height: math.unit(1 + 6 / 12, "feet"),
  23274. default: true
  23275. },
  23276. ]
  23277. ))
  23278. characterMakers.push(() => makeCharacter(
  23279. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23280. {
  23281. front: {
  23282. height: math.unit(6 + 2 / 12, "feet"),
  23283. weight: math.unit(160, "lb"),
  23284. name: "Front",
  23285. image: {
  23286. source: "./media/characters/ariam/front.svg",
  23287. extra: 714 / 617,
  23288. bottom: 23.4 / 737,
  23289. }
  23290. },
  23291. squatting: {
  23292. height: math.unit(4.1, "feet"),
  23293. weight: math.unit(160, "lb"),
  23294. name: "Squatting",
  23295. image: {
  23296. source: "./media/characters/ariam/squatting.svg",
  23297. extra: 2617 / 2112,
  23298. bottom: 61.2 / 2681,
  23299. }
  23300. },
  23301. },
  23302. [
  23303. {
  23304. name: "Normal",
  23305. height: math.unit(6 + 2 / 12, "feet"),
  23306. default: true
  23307. },
  23308. {
  23309. name: "Normal+",
  23310. height: math.unit(4, "meters")
  23311. },
  23312. {
  23313. name: "Macro",
  23314. height: math.unit(50, "meters")
  23315. },
  23316. {
  23317. name: "Macro+",
  23318. height: math.unit(100, "meters")
  23319. },
  23320. {
  23321. name: "Megamacro",
  23322. height: math.unit(20, "km")
  23323. },
  23324. ]
  23325. ))
  23326. characterMakers.push(() => makeCharacter(
  23327. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23328. {
  23329. front: {
  23330. height: math.unit(1.67, "meters"),
  23331. weight: math.unit(140, "lb"),
  23332. name: "Front",
  23333. image: {
  23334. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23335. extra: 438 / 410,
  23336. bottom: 0.75 / 439
  23337. }
  23338. },
  23339. },
  23340. [
  23341. {
  23342. name: "Shrunken",
  23343. height: math.unit(7.6, "cm")
  23344. },
  23345. {
  23346. name: "Human Scale",
  23347. height: math.unit(1.67, "meters")
  23348. },
  23349. {
  23350. name: "Wolxi Scale",
  23351. height: math.unit(36.7, "meters"),
  23352. default: true
  23353. },
  23354. ]
  23355. ))
  23356. characterMakers.push(() => makeCharacter(
  23357. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23358. {
  23359. front: {
  23360. height: math.unit(1.73, "meters"),
  23361. weight: math.unit(240, "lb"),
  23362. name: "Front",
  23363. image: {
  23364. source: "./media/characters/izue-two-mothers/front.svg",
  23365. extra: 469 / 437,
  23366. bottom: 1.24 / 470.6
  23367. }
  23368. },
  23369. },
  23370. [
  23371. {
  23372. name: "Shrunken",
  23373. height: math.unit(7.86, "cm")
  23374. },
  23375. {
  23376. name: "Human Scale",
  23377. height: math.unit(1.73, "meters")
  23378. },
  23379. {
  23380. name: "Wolxi Scale",
  23381. height: math.unit(38, "meters"),
  23382. default: true
  23383. },
  23384. ]
  23385. ))
  23386. characterMakers.push(() => makeCharacter(
  23387. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23388. {
  23389. front: {
  23390. height: math.unit(1.55, "meters"),
  23391. weight: math.unit(120, "lb"),
  23392. name: "Front",
  23393. image: {
  23394. source: "./media/characters/teeku-love-shack/front.svg",
  23395. extra: 387 / 362,
  23396. bottom: 1.51 / 388
  23397. }
  23398. },
  23399. },
  23400. [
  23401. {
  23402. name: "Shrunken",
  23403. height: math.unit(7, "cm")
  23404. },
  23405. {
  23406. name: "Human Scale",
  23407. height: math.unit(1.55, "meters")
  23408. },
  23409. {
  23410. name: "Wolxi Scale",
  23411. height: math.unit(34.1, "meters"),
  23412. default: true
  23413. },
  23414. ]
  23415. ))
  23416. characterMakers.push(() => makeCharacter(
  23417. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23418. {
  23419. front: {
  23420. height: math.unit(1.83, "meters"),
  23421. weight: math.unit(135, "lb"),
  23422. name: "Front",
  23423. image: {
  23424. source: "./media/characters/dejma-the-red/front.svg",
  23425. extra: 480 / 458,
  23426. bottom: 1.8 / 482
  23427. }
  23428. },
  23429. },
  23430. [
  23431. {
  23432. name: "Shrunken",
  23433. height: math.unit(8.3, "cm")
  23434. },
  23435. {
  23436. name: "Human Scale",
  23437. height: math.unit(1.83, "meters")
  23438. },
  23439. {
  23440. name: "Wolxi Scale",
  23441. height: math.unit(40, "meters"),
  23442. default: true
  23443. },
  23444. ]
  23445. ))
  23446. characterMakers.push(() => makeCharacter(
  23447. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23448. {
  23449. front: {
  23450. height: math.unit(1.78, "meters"),
  23451. weight: math.unit(65, "kg"),
  23452. name: "Front",
  23453. image: {
  23454. source: "./media/characters/aki/front.svg",
  23455. extra: 452 / 415
  23456. }
  23457. },
  23458. frontNsfw: {
  23459. height: math.unit(1.78, "meters"),
  23460. weight: math.unit(65, "kg"),
  23461. name: "Front (NSFW)",
  23462. image: {
  23463. source: "./media/characters/aki/front-nsfw.svg",
  23464. extra: 452 / 415
  23465. }
  23466. },
  23467. back: {
  23468. height: math.unit(1.78, "meters"),
  23469. weight: math.unit(65, "kg"),
  23470. name: "Back",
  23471. image: {
  23472. source: "./media/characters/aki/back.svg",
  23473. extra: 452 / 415
  23474. }
  23475. },
  23476. rump: {
  23477. height: math.unit(2.05, "feet"),
  23478. name: "Rump",
  23479. image: {
  23480. source: "./media/characters/aki/rump.svg"
  23481. }
  23482. },
  23483. dick: {
  23484. height: math.unit(0.95, "feet"),
  23485. name: "Dick",
  23486. image: {
  23487. source: "./media/characters/aki/dick.svg"
  23488. }
  23489. },
  23490. },
  23491. [
  23492. {
  23493. name: "Micro",
  23494. height: math.unit(15, "cm")
  23495. },
  23496. {
  23497. name: "Normal",
  23498. height: math.unit(178, "cm"),
  23499. default: true
  23500. },
  23501. {
  23502. name: "Macro",
  23503. height: math.unit(214, "m")
  23504. },
  23505. {
  23506. name: "Macro+",
  23507. height: math.unit(534, "m")
  23508. },
  23509. ]
  23510. ))
  23511. characterMakers.push(() => makeCharacter(
  23512. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23513. {
  23514. front: {
  23515. height: math.unit(5 + 5 / 12, "feet"),
  23516. weight: math.unit(120, "lb"),
  23517. name: "Front",
  23518. image: {
  23519. source: "./media/characters/ari/front.svg",
  23520. extra: 714.5 / 682,
  23521. bottom: 8 / 722.5
  23522. }
  23523. },
  23524. },
  23525. [
  23526. {
  23527. name: "Normal",
  23528. height: math.unit(5 + 5 / 12, "feet")
  23529. },
  23530. {
  23531. name: "Macro",
  23532. height: math.unit(100, "feet"),
  23533. default: true
  23534. },
  23535. {
  23536. name: "Megamacro",
  23537. height: math.unit(100, "miles")
  23538. },
  23539. {
  23540. name: "Gigamacro",
  23541. height: math.unit(80000, "miles")
  23542. },
  23543. ]
  23544. ))
  23545. characterMakers.push(() => makeCharacter(
  23546. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23547. {
  23548. side: {
  23549. height: math.unit(9, "feet"),
  23550. weight: math.unit(400, "kg"),
  23551. name: "Side",
  23552. image: {
  23553. source: "./media/characters/bolt/side.svg",
  23554. extra: 1126 / 896,
  23555. bottom: 60 / 1187.3,
  23556. }
  23557. },
  23558. },
  23559. [
  23560. {
  23561. name: "Micro",
  23562. height: math.unit(5, "inches")
  23563. },
  23564. {
  23565. name: "Normal",
  23566. height: math.unit(9, "feet"),
  23567. default: true
  23568. },
  23569. {
  23570. name: "Macro",
  23571. height: math.unit(700, "feet")
  23572. },
  23573. {
  23574. name: "Max Size",
  23575. height: math.unit(1.52e22, "yottameters")
  23576. },
  23577. ]
  23578. ))
  23579. characterMakers.push(() => makeCharacter(
  23580. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23581. {
  23582. front: {
  23583. height: math.unit(4.53, "meters"),
  23584. weight: math.unit(3, "tons"),
  23585. name: "Front",
  23586. image: {
  23587. source: "./media/characters/draekon-sylviar/front.svg",
  23588. extra: 1228 / 1068,
  23589. bottom: 41 / 1270
  23590. }
  23591. },
  23592. tail: {
  23593. height: math.unit(1.772, "meter"),
  23594. name: "Tail",
  23595. image: {
  23596. source: "./media/characters/draekon-sylviar/tail.svg"
  23597. }
  23598. },
  23599. head: {
  23600. height: math.unit(1.331, "meter"),
  23601. name: "Head",
  23602. image: {
  23603. source: "./media/characters/draekon-sylviar/head.svg"
  23604. }
  23605. },
  23606. hand: {
  23607. height: math.unit(0.564, "meter"),
  23608. name: "Hand",
  23609. image: {
  23610. source: "./media/characters/draekon-sylviar/hand.svg"
  23611. }
  23612. },
  23613. foot: {
  23614. height: math.unit(0.621, "meter"),
  23615. name: "Foot",
  23616. image: {
  23617. source: "./media/characters/draekon-sylviar/foot.svg",
  23618. bottom: 32 / 324
  23619. }
  23620. },
  23621. dick: {
  23622. height: math.unit(61, "cm"),
  23623. name: "Dick",
  23624. image: {
  23625. source: "./media/characters/draekon-sylviar/dick.svg"
  23626. }
  23627. },
  23628. dickseparated: {
  23629. height: math.unit(61, "cm"),
  23630. name: "Dick-separated",
  23631. image: {
  23632. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23633. }
  23634. },
  23635. },
  23636. [
  23637. {
  23638. name: "Small",
  23639. height: math.unit(4.53 / 2, "meters"),
  23640. default: true
  23641. },
  23642. {
  23643. name: "Normal",
  23644. height: math.unit(4.53, "meters"),
  23645. default: true
  23646. },
  23647. {
  23648. name: "Large",
  23649. height: math.unit(4.53 * 2, "meters"),
  23650. },
  23651. ]
  23652. ))
  23653. characterMakers.push(() => makeCharacter(
  23654. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23655. {
  23656. front: {
  23657. height: math.unit(6 + 2 / 12, "feet"),
  23658. weight: math.unit(180, "lb"),
  23659. name: "Front",
  23660. image: {
  23661. source: "./media/characters/brawler/front.svg",
  23662. extra: 3301 / 3027,
  23663. bottom: 138 / 3439
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Normal",
  23670. height: math.unit(6 + 2 / 12, "feet"),
  23671. default: true
  23672. },
  23673. ]
  23674. ))
  23675. characterMakers.push(() => makeCharacter(
  23676. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23677. {
  23678. front: {
  23679. height: math.unit(11, "feet"),
  23680. weight: math.unit(1000, "lb"),
  23681. name: "Front",
  23682. image: {
  23683. source: "./media/characters/alex/front.svg",
  23684. bottom: 44.5 / 620
  23685. }
  23686. },
  23687. },
  23688. [
  23689. {
  23690. name: "Micro",
  23691. height: math.unit(5, "inches")
  23692. },
  23693. {
  23694. name: "Normal",
  23695. height: math.unit(11, "feet"),
  23696. default: true
  23697. },
  23698. {
  23699. name: "Macro",
  23700. height: math.unit(9.5e9, "feet")
  23701. },
  23702. {
  23703. name: "Max Size",
  23704. height: math.unit(1.4e283, "yottameters")
  23705. },
  23706. ]
  23707. ))
  23708. characterMakers.push(() => makeCharacter(
  23709. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23710. {
  23711. female: {
  23712. height: math.unit(29.9, "m"),
  23713. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23714. name: "Female",
  23715. image: {
  23716. source: "./media/characters/zenari/female.svg",
  23717. extra: 3281.6 / 3217,
  23718. bottom: 72.2 / 3353
  23719. }
  23720. },
  23721. male: {
  23722. height: math.unit(27.7, "m"),
  23723. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23724. name: "Male",
  23725. image: {
  23726. source: "./media/characters/zenari/male.svg",
  23727. extra: 3008 / 2991,
  23728. bottom: 54.6 / 3069
  23729. }
  23730. },
  23731. },
  23732. [
  23733. {
  23734. name: "Macro",
  23735. height: math.unit(29.7, "meters"),
  23736. default: true
  23737. },
  23738. ]
  23739. ))
  23740. characterMakers.push(() => makeCharacter(
  23741. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23742. {
  23743. female: {
  23744. height: math.unit(23.8, "m"),
  23745. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23746. name: "Female",
  23747. image: {
  23748. source: "./media/characters/mactarian/female.svg",
  23749. extra: 2662 / 2569,
  23750. bottom: 73 / 2736
  23751. }
  23752. },
  23753. male: {
  23754. height: math.unit(23.8, "m"),
  23755. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23756. name: "Male",
  23757. image: {
  23758. source: "./media/characters/mactarian/male.svg",
  23759. extra: 2673 / 2600,
  23760. bottom: 76 / 2750
  23761. }
  23762. },
  23763. },
  23764. [
  23765. {
  23766. name: "Macro",
  23767. height: math.unit(23.8, "meters"),
  23768. default: true
  23769. },
  23770. ]
  23771. ))
  23772. characterMakers.push(() => makeCharacter(
  23773. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23774. {
  23775. female: {
  23776. height: math.unit(19.3, "m"),
  23777. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23778. name: "Female",
  23779. image: {
  23780. source: "./media/characters/umok/female.svg",
  23781. extra: 2186 / 2078,
  23782. bottom: 87 / 2277
  23783. }
  23784. },
  23785. male: {
  23786. height: math.unit(19.5, "m"),
  23787. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23788. name: "Male",
  23789. image: {
  23790. source: "./media/characters/umok/male.svg",
  23791. extra: 2233 / 2140,
  23792. bottom: 24.4 / 2258
  23793. }
  23794. },
  23795. },
  23796. [
  23797. {
  23798. name: "Macro",
  23799. height: math.unit(19.3, "meters"),
  23800. default: true
  23801. },
  23802. ]
  23803. ))
  23804. characterMakers.push(() => makeCharacter(
  23805. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23806. {
  23807. female: {
  23808. height: math.unit(26.15, "m"),
  23809. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23810. name: "Female",
  23811. image: {
  23812. source: "./media/characters/joraxian/female.svg",
  23813. extra: 2912 / 2824,
  23814. bottom: 36 / 2956
  23815. }
  23816. },
  23817. male: {
  23818. height: math.unit(25.4, "m"),
  23819. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23820. name: "Male",
  23821. image: {
  23822. source: "./media/characters/joraxian/male.svg",
  23823. extra: 2877 / 2721,
  23824. bottom: 82 / 2967
  23825. }
  23826. },
  23827. },
  23828. [
  23829. {
  23830. name: "Macro",
  23831. height: math.unit(26.15, "meters"),
  23832. default: true
  23833. },
  23834. ]
  23835. ))
  23836. characterMakers.push(() => makeCharacter(
  23837. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23838. {
  23839. female: {
  23840. height: math.unit(21.6, "m"),
  23841. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23842. name: "Female",
  23843. image: {
  23844. source: "./media/characters/sthara/female.svg",
  23845. extra: 2516 / 2347,
  23846. bottom: 21.5 / 2537
  23847. }
  23848. },
  23849. male: {
  23850. height: math.unit(24, "m"),
  23851. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23852. name: "Male",
  23853. image: {
  23854. source: "./media/characters/sthara/male.svg",
  23855. extra: 2732 / 2607,
  23856. bottom: 23 / 2732
  23857. }
  23858. },
  23859. },
  23860. [
  23861. {
  23862. name: "Macro",
  23863. height: math.unit(21.6, "meters"),
  23864. default: true
  23865. },
  23866. ]
  23867. ))
  23868. characterMakers.push(() => makeCharacter(
  23869. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23870. {
  23871. front: {
  23872. height: math.unit(6 + 4 / 12, "feet"),
  23873. weight: math.unit(175, "lb"),
  23874. name: "Front",
  23875. image: {
  23876. source: "./media/characters/luka-bryzant/front.svg",
  23877. extra: 311 / 289,
  23878. bottom: 4 / 315
  23879. }
  23880. },
  23881. back: {
  23882. height: math.unit(6 + 4 / 12, "feet"),
  23883. weight: math.unit(175, "lb"),
  23884. name: "Back",
  23885. image: {
  23886. source: "./media/characters/luka-bryzant/back.svg",
  23887. extra: 311 / 289,
  23888. bottom: 3.8 / 313.7
  23889. }
  23890. },
  23891. },
  23892. [
  23893. {
  23894. name: "Micro",
  23895. height: math.unit(10, "inches")
  23896. },
  23897. {
  23898. name: "Normal",
  23899. height: math.unit(6 + 4 / 12, "feet"),
  23900. default: true
  23901. },
  23902. {
  23903. name: "Large",
  23904. height: math.unit(12, "feet")
  23905. },
  23906. ]
  23907. ))
  23908. characterMakers.push(() => makeCharacter(
  23909. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23910. {
  23911. front: {
  23912. height: math.unit(5 + 7 / 12, "feet"),
  23913. weight: math.unit(185, "lb"),
  23914. name: "Front",
  23915. image: {
  23916. source: "./media/characters/aman-aquila/front.svg",
  23917. extra: 1013 / 976,
  23918. bottom: 45.6 / 1057
  23919. }
  23920. },
  23921. side: {
  23922. height: math.unit(5 + 7 / 12, "feet"),
  23923. weight: math.unit(185, "lb"),
  23924. name: "Side",
  23925. image: {
  23926. source: "./media/characters/aman-aquila/side.svg",
  23927. extra: 1054 / 1011,
  23928. bottom: 15 / 1070
  23929. }
  23930. },
  23931. back: {
  23932. height: math.unit(5 + 7 / 12, "feet"),
  23933. weight: math.unit(185, "lb"),
  23934. name: "Back",
  23935. image: {
  23936. source: "./media/characters/aman-aquila/back.svg",
  23937. extra: 1026 / 970,
  23938. bottom: 12 / 1039
  23939. }
  23940. },
  23941. head: {
  23942. height: math.unit(1.211, "feet"),
  23943. name: "Head",
  23944. image: {
  23945. source: "./media/characters/aman-aquila/head.svg",
  23946. }
  23947. },
  23948. },
  23949. [
  23950. {
  23951. name: "Minimicro",
  23952. height: math.unit(0.057, "inches")
  23953. },
  23954. {
  23955. name: "Micro",
  23956. height: math.unit(7, "inches")
  23957. },
  23958. {
  23959. name: "Mini",
  23960. height: math.unit(3 + 7 / 12, "feet")
  23961. },
  23962. {
  23963. name: "Normal",
  23964. height: math.unit(5 + 7 / 12, "feet"),
  23965. default: true
  23966. },
  23967. {
  23968. name: "Macro",
  23969. height: math.unit(157 + 7 / 12, "feet")
  23970. },
  23971. {
  23972. name: "Megamacro",
  23973. height: math.unit(1557 + 7 / 12, "feet")
  23974. },
  23975. {
  23976. name: "Gigamacro",
  23977. height: math.unit(15557 + 7 / 12, "feet")
  23978. },
  23979. ]
  23980. ))
  23981. characterMakers.push(() => makeCharacter(
  23982. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23983. {
  23984. front: {
  23985. height: math.unit(3 + 2 / 12, "inches"),
  23986. weight: math.unit(0.3, "ounces"),
  23987. name: "Front",
  23988. image: {
  23989. source: "./media/characters/hiphae/front.svg",
  23990. extra: 1931 / 1683,
  23991. bottom: 24 / 1955
  23992. }
  23993. },
  23994. },
  23995. [
  23996. {
  23997. name: "Normal",
  23998. height: math.unit(3 + 1 / 2, "inches"),
  23999. default: true
  24000. },
  24001. ]
  24002. ))
  24003. characterMakers.push(() => makeCharacter(
  24004. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24005. {
  24006. front: {
  24007. height: math.unit(5 + 10 / 12, "feet"),
  24008. weight: math.unit(165, "lb"),
  24009. name: "Front",
  24010. image: {
  24011. source: "./media/characters/nicky/front.svg",
  24012. extra: 3144 / 2886,
  24013. bottom: 45.6 / 3192
  24014. }
  24015. },
  24016. back: {
  24017. height: math.unit(5 + 10 / 12, "feet"),
  24018. weight: math.unit(165, "lb"),
  24019. name: "Back",
  24020. image: {
  24021. source: "./media/characters/nicky/back.svg",
  24022. extra: 3055 / 2804,
  24023. bottom: 28.4 / 3087
  24024. }
  24025. },
  24026. frontclothed: {
  24027. height: math.unit(5 + 10 / 12, "feet"),
  24028. weight: math.unit(165, "lb"),
  24029. name: "Front-clothed",
  24030. image: {
  24031. source: "./media/characters/nicky/front-clothed.svg",
  24032. extra: 3184.9 / 2926.9,
  24033. bottom: 86.5 / 3239.9
  24034. }
  24035. },
  24036. foot: {
  24037. height: math.unit(1.16, "feet"),
  24038. name: "Foot",
  24039. image: {
  24040. source: "./media/characters/nicky/foot.svg"
  24041. }
  24042. },
  24043. feet: {
  24044. height: math.unit(1.34, "feet"),
  24045. name: "Feet",
  24046. image: {
  24047. source: "./media/characters/nicky/feet.svg"
  24048. }
  24049. },
  24050. maw: {
  24051. height: math.unit(0.9, "feet"),
  24052. name: "Maw",
  24053. image: {
  24054. source: "./media/characters/nicky/maw.svg"
  24055. }
  24056. },
  24057. },
  24058. [
  24059. {
  24060. name: "Normal",
  24061. height: math.unit(5 + 10 / 12, "feet"),
  24062. default: true
  24063. },
  24064. {
  24065. name: "Macro",
  24066. height: math.unit(60, "feet")
  24067. },
  24068. {
  24069. name: "Megamacro",
  24070. height: math.unit(1, "mile")
  24071. },
  24072. ]
  24073. ))
  24074. characterMakers.push(() => makeCharacter(
  24075. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24076. {
  24077. side: {
  24078. height: math.unit(10, "feet"),
  24079. weight: math.unit(600, "lb"),
  24080. name: "Side",
  24081. image: {
  24082. source: "./media/characters/blair/side.svg",
  24083. bottom: 16.6 / 475,
  24084. extra: 458 / 431
  24085. }
  24086. },
  24087. },
  24088. [
  24089. {
  24090. name: "Micro",
  24091. height: math.unit(8, "inches")
  24092. },
  24093. {
  24094. name: "Normal",
  24095. height: math.unit(10, "feet"),
  24096. default: true
  24097. },
  24098. {
  24099. name: "Macro",
  24100. height: math.unit(180, "feet")
  24101. },
  24102. ]
  24103. ))
  24104. characterMakers.push(() => makeCharacter(
  24105. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24106. {
  24107. front: {
  24108. height: math.unit(5 + 4 / 12, "feet"),
  24109. weight: math.unit(125, "lb"),
  24110. name: "Front",
  24111. image: {
  24112. source: "./media/characters/fisher/front.svg",
  24113. extra: 444 / 390,
  24114. bottom: 2 / 444.8
  24115. }
  24116. },
  24117. },
  24118. [
  24119. {
  24120. name: "Micro",
  24121. height: math.unit(4, "inches")
  24122. },
  24123. {
  24124. name: "Normal",
  24125. height: math.unit(5 + 4 / 12, "feet"),
  24126. default: true
  24127. },
  24128. {
  24129. name: "Macro",
  24130. height: math.unit(100, "feet")
  24131. },
  24132. ]
  24133. ))
  24134. characterMakers.push(() => makeCharacter(
  24135. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24136. {
  24137. front: {
  24138. height: math.unit(6.71, "feet"),
  24139. weight: math.unit(200, "lb"),
  24140. capacity: math.unit(1000000, "people"),
  24141. name: "Front",
  24142. image: {
  24143. source: "./media/characters/gliss/front.svg",
  24144. extra: 2347 / 2231,
  24145. bottom: 113 / 2462
  24146. }
  24147. },
  24148. hammerspaceSize: {
  24149. height: math.unit(6.71 * 717, "feet"),
  24150. weight: math.unit(200, "lb"),
  24151. capacity: math.unit(1000000, "people"),
  24152. name: "Hammerspace Size",
  24153. image: {
  24154. source: "./media/characters/gliss/front.svg",
  24155. extra: 2347 / 2231,
  24156. bottom: 113 / 2462
  24157. }
  24158. },
  24159. },
  24160. [
  24161. {
  24162. name: "Normal",
  24163. height: math.unit(6.71, "feet"),
  24164. default: true
  24165. },
  24166. ]
  24167. ))
  24168. characterMakers.push(() => makeCharacter(
  24169. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24170. {
  24171. side: {
  24172. height: math.unit(1.44, "m"),
  24173. weight: math.unit(80, "kg"),
  24174. name: "Side",
  24175. image: {
  24176. source: "./media/characters/dune-anderson/side.svg",
  24177. bottom: 49 / 1426
  24178. }
  24179. },
  24180. },
  24181. [
  24182. {
  24183. name: "Wolf-sized",
  24184. height: math.unit(1.44, "meters")
  24185. },
  24186. {
  24187. name: "Normal",
  24188. height: math.unit(5.05, "meters"),
  24189. default: true
  24190. },
  24191. {
  24192. name: "Big",
  24193. height: math.unit(14.4, "meters")
  24194. },
  24195. {
  24196. name: "Huge",
  24197. height: math.unit(144, "meters")
  24198. },
  24199. ]
  24200. ))
  24201. characterMakers.push(() => makeCharacter(
  24202. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24203. {
  24204. front: {
  24205. height: math.unit(7, "feet"),
  24206. weight: math.unit(425, "lb"),
  24207. name: "Front",
  24208. image: {
  24209. source: "./media/characters/hind/front.svg",
  24210. extra: 2091 / 1860,
  24211. bottom: 129 / 2220
  24212. }
  24213. },
  24214. back: {
  24215. height: math.unit(7, "feet"),
  24216. weight: math.unit(425, "lb"),
  24217. name: "Back",
  24218. image: {
  24219. source: "./media/characters/hind/back.svg",
  24220. extra: 2091 / 1860,
  24221. bottom: 24.6 / 2309
  24222. }
  24223. },
  24224. tail: {
  24225. height: math.unit(2.8, "feet"),
  24226. name: "Tail",
  24227. image: {
  24228. source: "./media/characters/hind/tail.svg"
  24229. }
  24230. },
  24231. head: {
  24232. height: math.unit(2.55, "feet"),
  24233. name: "Head",
  24234. image: {
  24235. source: "./media/characters/hind/head.svg"
  24236. }
  24237. },
  24238. },
  24239. [
  24240. {
  24241. name: "XS",
  24242. height: math.unit(0.7, "feet")
  24243. },
  24244. {
  24245. name: "Normal",
  24246. height: math.unit(7, "feet"),
  24247. default: true
  24248. },
  24249. {
  24250. name: "XL",
  24251. height: math.unit(70, "feet")
  24252. },
  24253. ]
  24254. ))
  24255. characterMakers.push(() => makeCharacter(
  24256. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24257. {
  24258. front: {
  24259. height: math.unit(6, "feet"),
  24260. weight: math.unit(150, "lb"),
  24261. name: "Front",
  24262. image: {
  24263. source: "./media/characters/dylan-skaven/front.svg",
  24264. extra: 2318 / 2063,
  24265. bottom: 93.4 / 2410
  24266. }
  24267. },
  24268. },
  24269. [
  24270. {
  24271. name: "Nano",
  24272. height: math.unit(1, "mm")
  24273. },
  24274. {
  24275. name: "Micro",
  24276. height: math.unit(1, "cm")
  24277. },
  24278. {
  24279. name: "Normal",
  24280. height: math.unit(2.1, "meters"),
  24281. default: true
  24282. },
  24283. ]
  24284. ))
  24285. characterMakers.push(() => makeCharacter(
  24286. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24287. {
  24288. front: {
  24289. height: math.unit(7 + 5 / 12, "feet"),
  24290. weight: math.unit(357, "lb"),
  24291. name: "Front",
  24292. image: {
  24293. source: "./media/characters/solex-draconov/front.svg",
  24294. extra: 1993 / 1865,
  24295. bottom: 117 / 2111
  24296. }
  24297. },
  24298. },
  24299. [
  24300. {
  24301. name: "Natural Height",
  24302. height: math.unit(7 + 5 / 12, "feet"),
  24303. default: true
  24304. },
  24305. {
  24306. name: "Macro",
  24307. height: math.unit(350, "feet")
  24308. },
  24309. {
  24310. name: "Macro+",
  24311. height: math.unit(1000, "feet")
  24312. },
  24313. {
  24314. name: "Megamacro",
  24315. height: math.unit(20, "km")
  24316. },
  24317. {
  24318. name: "Megamacro+",
  24319. height: math.unit(1000, "km")
  24320. },
  24321. {
  24322. name: "Gigamacro",
  24323. height: math.unit(2.5, "Gm")
  24324. },
  24325. {
  24326. name: "Teramacro",
  24327. height: math.unit(15, "Tm")
  24328. },
  24329. {
  24330. name: "Galactic",
  24331. height: math.unit(30, "Zm")
  24332. },
  24333. {
  24334. name: "Universal",
  24335. height: math.unit(21000, "Ym")
  24336. },
  24337. {
  24338. name: "Omniversal",
  24339. height: math.unit(9.861e50, "Ym")
  24340. },
  24341. {
  24342. name: "Existential",
  24343. height: math.unit(1e300, "meters")
  24344. },
  24345. ]
  24346. ))
  24347. characterMakers.push(() => makeCharacter(
  24348. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24349. {
  24350. side: {
  24351. height: math.unit(25, "feet"),
  24352. weight: math.unit(90000, "lb"),
  24353. name: "Side",
  24354. image: {
  24355. source: "./media/characters/mandarax/side.svg",
  24356. extra: 614 / 332,
  24357. bottom: 55 / 630
  24358. }
  24359. },
  24360. head: {
  24361. height: math.unit(11.4, "feet"),
  24362. name: "Head",
  24363. image: {
  24364. source: "./media/characters/mandarax/head.svg"
  24365. }
  24366. },
  24367. belly: {
  24368. height: math.unit(33, "feet"),
  24369. name: "Belly",
  24370. capacity: math.unit(500, "people"),
  24371. image: {
  24372. source: "./media/characters/mandarax/belly.svg"
  24373. }
  24374. },
  24375. dick: {
  24376. height: math.unit(8.46, "feet"),
  24377. name: "Dick",
  24378. image: {
  24379. source: "./media/characters/mandarax/dick.svg"
  24380. }
  24381. },
  24382. top: {
  24383. height: math.unit(28, "meters"),
  24384. name: "Top",
  24385. image: {
  24386. source: "./media/characters/mandarax/top.svg"
  24387. }
  24388. },
  24389. },
  24390. [
  24391. {
  24392. name: "Normal",
  24393. height: math.unit(25, "feet"),
  24394. default: true
  24395. },
  24396. ]
  24397. ))
  24398. characterMakers.push(() => makeCharacter(
  24399. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24400. {
  24401. front: {
  24402. height: math.unit(5, "feet"),
  24403. weight: math.unit(90, "lb"),
  24404. name: "Front",
  24405. image: {
  24406. source: "./media/characters/pixil/front.svg",
  24407. extra: 2000 / 1618,
  24408. bottom: 12.3 / 2011
  24409. }
  24410. },
  24411. },
  24412. [
  24413. {
  24414. name: "Normal",
  24415. height: math.unit(5, "feet"),
  24416. default: true
  24417. },
  24418. {
  24419. name: "Megamacro",
  24420. height: math.unit(10, "miles"),
  24421. },
  24422. ]
  24423. ))
  24424. characterMakers.push(() => makeCharacter(
  24425. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24426. {
  24427. front: {
  24428. height: math.unit(7 + 2 / 12, "feet"),
  24429. weight: math.unit(200, "lb"),
  24430. name: "Front",
  24431. image: {
  24432. source: "./media/characters/angel/front.svg",
  24433. extra: 1830 / 1737,
  24434. bottom: 22.6 / 1854,
  24435. }
  24436. },
  24437. },
  24438. [
  24439. {
  24440. name: "Normal",
  24441. height: math.unit(7 + 2 / 12, "feet"),
  24442. default: true
  24443. },
  24444. {
  24445. name: "Macro",
  24446. height: math.unit(1000, "feet")
  24447. },
  24448. {
  24449. name: "Megamacro",
  24450. height: math.unit(2, "miles")
  24451. },
  24452. {
  24453. name: "Gigamacro",
  24454. height: math.unit(20, "earths")
  24455. },
  24456. ]
  24457. ))
  24458. characterMakers.push(() => makeCharacter(
  24459. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24460. {
  24461. front: {
  24462. height: math.unit(5, "feet"),
  24463. weight: math.unit(180, "lb"),
  24464. name: "Front",
  24465. image: {
  24466. source: "./media/characters/mekana/front.svg",
  24467. extra: 1671 / 1605,
  24468. bottom: 3.5 / 1691
  24469. }
  24470. },
  24471. side: {
  24472. height: math.unit(5, "feet"),
  24473. weight: math.unit(180, "lb"),
  24474. name: "Side",
  24475. image: {
  24476. source: "./media/characters/mekana/side.svg",
  24477. extra: 1671 / 1605,
  24478. bottom: 3.5 / 1691
  24479. }
  24480. },
  24481. back: {
  24482. height: math.unit(5, "feet"),
  24483. weight: math.unit(180, "lb"),
  24484. name: "Back",
  24485. image: {
  24486. source: "./media/characters/mekana/back.svg",
  24487. extra: 1671 / 1605,
  24488. bottom: 3.5 / 1691
  24489. }
  24490. },
  24491. },
  24492. [
  24493. {
  24494. name: "Normal",
  24495. height: math.unit(5, "feet"),
  24496. default: true
  24497. },
  24498. ]
  24499. ))
  24500. characterMakers.push(() => makeCharacter(
  24501. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24502. {
  24503. front: {
  24504. height: math.unit(4 + 6 / 12, "feet"),
  24505. weight: math.unit(80, "lb"),
  24506. name: "Front",
  24507. image: {
  24508. source: "./media/characters/pixie/front.svg",
  24509. extra: 1924 / 1825,
  24510. bottom: 22.4 / 1946
  24511. }
  24512. },
  24513. },
  24514. [
  24515. {
  24516. name: "Normal",
  24517. height: math.unit(4 + 6 / 12, "feet"),
  24518. default: true
  24519. },
  24520. {
  24521. name: "Macro",
  24522. height: math.unit(40, "feet")
  24523. },
  24524. ]
  24525. ))
  24526. characterMakers.push(() => makeCharacter(
  24527. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24528. {
  24529. front: {
  24530. height: math.unit(2.1, "meters"),
  24531. weight: math.unit(200, "lb"),
  24532. name: "Front",
  24533. image: {
  24534. source: "./media/characters/the-lascivious/front.svg",
  24535. extra: 1 / 0.893,
  24536. bottom: 3.5 / 573.7
  24537. }
  24538. },
  24539. },
  24540. [
  24541. {
  24542. name: "Human Scale",
  24543. height: math.unit(2.1, "meters")
  24544. },
  24545. {
  24546. name: "Wolxi Scale",
  24547. height: math.unit(46.2, "m"),
  24548. default: true
  24549. },
  24550. {
  24551. name: "Boinker of Buildings",
  24552. height: math.unit(10, "km")
  24553. },
  24554. {
  24555. name: "Shagger of Skyscrapers",
  24556. height: math.unit(40, "km")
  24557. },
  24558. {
  24559. name: "Banger of Boroughs",
  24560. height: math.unit(4000, "km")
  24561. },
  24562. {
  24563. name: "Screwer of States",
  24564. height: math.unit(100000, "km")
  24565. },
  24566. {
  24567. name: "Pounder of Planets",
  24568. height: math.unit(2000000, "km")
  24569. },
  24570. ]
  24571. ))
  24572. characterMakers.push(() => makeCharacter(
  24573. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24574. {
  24575. front: {
  24576. height: math.unit(6, "feet"),
  24577. weight: math.unit(150, "lb"),
  24578. name: "Front",
  24579. image: {
  24580. source: "./media/characters/aj/front.svg",
  24581. extra: 2039 / 1562,
  24582. bottom: 40 / 2079
  24583. }
  24584. },
  24585. },
  24586. [
  24587. {
  24588. name: "Normal",
  24589. height: math.unit(11 + 6 / 12, "feet"),
  24590. default: true
  24591. },
  24592. {
  24593. name: "Megamacro",
  24594. height: math.unit(60, "megameters")
  24595. },
  24596. ]
  24597. ))
  24598. characterMakers.push(() => makeCharacter(
  24599. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24600. {
  24601. side: {
  24602. height: math.unit(31 + 8 / 12, "feet"),
  24603. weight: math.unit(75000, "kg"),
  24604. name: "Side",
  24605. image: {
  24606. source: "./media/characters/koros/side.svg",
  24607. extra: 1442 / 1297,
  24608. bottom: 122.7 / 1562
  24609. }
  24610. },
  24611. dicksKingsCrown: {
  24612. height: math.unit(6, "feet"),
  24613. name: "Dicks (King's Crown)",
  24614. image: {
  24615. source: "./media/characters/koros/dicks-kings-crown.svg"
  24616. }
  24617. },
  24618. dicksTailSet: {
  24619. height: math.unit(3, "feet"),
  24620. name: "Dicks (Tail Set)",
  24621. image: {
  24622. source: "./media/characters/koros/dicks-tail-set.svg"
  24623. }
  24624. },
  24625. dickCumming: {
  24626. height: math.unit(7.98, "feet"),
  24627. name: "Dick (Cumming)",
  24628. image: {
  24629. source: "./media/characters/koros/dick-cumming.svg"
  24630. }
  24631. },
  24632. dicksBack: {
  24633. height: math.unit(5.9, "feet"),
  24634. name: "Dicks (Back)",
  24635. image: {
  24636. source: "./media/characters/koros/dicks-back.svg"
  24637. }
  24638. },
  24639. dicksFront: {
  24640. height: math.unit(3.72, "feet"),
  24641. name: "Dicks (Front)",
  24642. image: {
  24643. source: "./media/characters/koros/dicks-front.svg"
  24644. }
  24645. },
  24646. dicksPeeking: {
  24647. height: math.unit(3.0, "feet"),
  24648. name: "Dicks (Peeking)",
  24649. image: {
  24650. source: "./media/characters/koros/dicks-peeking.svg"
  24651. }
  24652. },
  24653. eye: {
  24654. height: math.unit(1.7, "feet"),
  24655. name: "Eye",
  24656. image: {
  24657. source: "./media/characters/koros/eye.svg"
  24658. }
  24659. },
  24660. headFront: {
  24661. height: math.unit(11.69, "feet"),
  24662. name: "Head (Front)",
  24663. image: {
  24664. source: "./media/characters/koros/head-front.svg"
  24665. }
  24666. },
  24667. headSide: {
  24668. height: math.unit(14, "feet"),
  24669. name: "Head (Side)",
  24670. image: {
  24671. source: "./media/characters/koros/head-side.svg"
  24672. }
  24673. },
  24674. leg: {
  24675. height: math.unit(17, "feet"),
  24676. name: "Leg",
  24677. image: {
  24678. source: "./media/characters/koros/leg.svg"
  24679. }
  24680. },
  24681. mawSide: {
  24682. height: math.unit(12.8, "feet"),
  24683. name: "Maw (Side)",
  24684. image: {
  24685. source: "./media/characters/koros/maw-side.svg"
  24686. }
  24687. },
  24688. mawSpitting: {
  24689. height: math.unit(17, "feet"),
  24690. name: "Maw (Spitting)",
  24691. image: {
  24692. source: "./media/characters/koros/maw-spitting.svg"
  24693. }
  24694. },
  24695. slit: {
  24696. height: math.unit(2.8, "feet"),
  24697. name: "Slit",
  24698. image: {
  24699. source: "./media/characters/koros/slit.svg"
  24700. }
  24701. },
  24702. stomach: {
  24703. height: math.unit(6.8, "feet"),
  24704. capacity: math.unit(20, "people"),
  24705. name: "Stomach",
  24706. image: {
  24707. source: "./media/characters/koros/stomach.svg"
  24708. }
  24709. },
  24710. wingspanBottom: {
  24711. height: math.unit(114, "feet"),
  24712. name: "Wingspan (Bottom)",
  24713. image: {
  24714. source: "./media/characters/koros/wingspan-bottom.svg"
  24715. }
  24716. },
  24717. wingspanTop: {
  24718. height: math.unit(104, "feet"),
  24719. name: "Wingspan (Top)",
  24720. image: {
  24721. source: "./media/characters/koros/wingspan-top.svg"
  24722. }
  24723. },
  24724. },
  24725. [
  24726. {
  24727. name: "Normal",
  24728. height: math.unit(31 + 8 / 12, "feet"),
  24729. default: true
  24730. },
  24731. ]
  24732. ))
  24733. characterMakers.push(() => makeCharacter(
  24734. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24735. {
  24736. front: {
  24737. height: math.unit(18 + 5 / 12, "feet"),
  24738. weight: math.unit(3750, "kg"),
  24739. name: "Front",
  24740. image: {
  24741. source: "./media/characters/vexx/front.svg",
  24742. extra: 426 / 396,
  24743. bottom: 31.5 / 458
  24744. }
  24745. },
  24746. maw: {
  24747. height: math.unit(6, "feet"),
  24748. name: "Maw",
  24749. image: {
  24750. source: "./media/characters/vexx/maw.svg"
  24751. }
  24752. },
  24753. },
  24754. [
  24755. {
  24756. name: "Normal",
  24757. height: math.unit(18 + 5 / 12, "feet"),
  24758. default: true
  24759. },
  24760. ]
  24761. ))
  24762. characterMakers.push(() => makeCharacter(
  24763. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24764. {
  24765. front: {
  24766. height: math.unit(17 + 6 / 12, "feet"),
  24767. weight: math.unit(150, "lb"),
  24768. name: "Front",
  24769. image: {
  24770. source: "./media/characters/baadra/front.svg",
  24771. extra: 3137 / 2890,
  24772. bottom: 168.4 / 3305
  24773. }
  24774. },
  24775. back: {
  24776. height: math.unit(17 + 6 / 12, "feet"),
  24777. weight: math.unit(150, "lb"),
  24778. name: "Back",
  24779. image: {
  24780. source: "./media/characters/baadra/back.svg",
  24781. extra: 3142 / 2890,
  24782. bottom: 220 / 3371
  24783. }
  24784. },
  24785. head: {
  24786. height: math.unit(5.45, "feet"),
  24787. name: "Head",
  24788. image: {
  24789. source: "./media/characters/baadra/head.svg"
  24790. }
  24791. },
  24792. headAngry: {
  24793. height: math.unit(4.95, "feet"),
  24794. name: "Head (Angry)",
  24795. image: {
  24796. source: "./media/characters/baadra/head-angry.svg"
  24797. }
  24798. },
  24799. headOpen: {
  24800. height: math.unit(6, "feet"),
  24801. name: "Head (Open)",
  24802. image: {
  24803. source: "./media/characters/baadra/head-open.svg"
  24804. }
  24805. },
  24806. },
  24807. [
  24808. {
  24809. name: "Normal",
  24810. height: math.unit(17 + 6 / 12, "feet"),
  24811. default: true
  24812. },
  24813. ]
  24814. ))
  24815. characterMakers.push(() => makeCharacter(
  24816. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24817. {
  24818. front: {
  24819. height: math.unit(7 + 3 / 12, "feet"),
  24820. weight: math.unit(180, "lb"),
  24821. name: "Front",
  24822. image: {
  24823. source: "./media/characters/juri/front.svg",
  24824. extra: 1401 / 1237,
  24825. bottom: 18.5 / 1418
  24826. }
  24827. },
  24828. side: {
  24829. height: math.unit(7 + 3 / 12, "feet"),
  24830. weight: math.unit(180, "lb"),
  24831. name: "Side",
  24832. image: {
  24833. source: "./media/characters/juri/side.svg",
  24834. extra: 1424 / 1242,
  24835. bottom: 18.5 / 1447
  24836. }
  24837. },
  24838. sitting: {
  24839. height: math.unit(6, "feet"),
  24840. weight: math.unit(180, "lb"),
  24841. name: "Sitting",
  24842. image: {
  24843. source: "./media/characters/juri/sitting.svg",
  24844. extra: 1270 / 1143,
  24845. bottom: 100 / 1343
  24846. }
  24847. },
  24848. back: {
  24849. height: math.unit(7 + 3 / 12, "feet"),
  24850. weight: math.unit(180, "lb"),
  24851. name: "Back",
  24852. image: {
  24853. source: "./media/characters/juri/back.svg",
  24854. extra: 1377 / 1240,
  24855. bottom: 23.7 / 1405
  24856. }
  24857. },
  24858. maw: {
  24859. height: math.unit(2.8, "feet"),
  24860. name: "Maw",
  24861. image: {
  24862. source: "./media/characters/juri/maw.svg"
  24863. }
  24864. },
  24865. stomach: {
  24866. height: math.unit(0.89, "feet"),
  24867. capacity: math.unit(4, "liters"),
  24868. name: "Stomach",
  24869. image: {
  24870. source: "./media/characters/juri/stomach.svg"
  24871. }
  24872. },
  24873. },
  24874. [
  24875. {
  24876. name: "Normal",
  24877. height: math.unit(7 + 3 / 12, "feet"),
  24878. default: true
  24879. },
  24880. ]
  24881. ))
  24882. characterMakers.push(() => makeCharacter(
  24883. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24884. {
  24885. fox: {
  24886. height: math.unit(5 + 6 / 12, "feet"),
  24887. weight: math.unit(140, "lb"),
  24888. name: "Fox",
  24889. image: {
  24890. source: "./media/characters/maxene-sita/fox.svg",
  24891. extra: 146 / 138,
  24892. bottom: 2.1 / 148.19
  24893. }
  24894. },
  24895. foxLaying: {
  24896. height: math.unit(1.70, "feet"),
  24897. weight: math.unit(140, "lb"),
  24898. name: "Fox (Laying)",
  24899. image: {
  24900. source: "./media/characters/maxene-sita/fox-laying.svg",
  24901. extra: 910 / 572,
  24902. bottom: 71 / 981
  24903. }
  24904. },
  24905. kitsune: {
  24906. height: math.unit(10, "feet"),
  24907. weight: math.unit(800, "lb"),
  24908. name: "Kitsune",
  24909. image: {
  24910. source: "./media/characters/maxene-sita/kitsune.svg",
  24911. extra: 185 / 176,
  24912. bottom: 4.7 / 189.9
  24913. }
  24914. },
  24915. hellhound: {
  24916. height: math.unit(10, "feet"),
  24917. weight: math.unit(700, "lb"),
  24918. name: "Hellhound",
  24919. image: {
  24920. source: "./media/characters/maxene-sita/hellhound.svg",
  24921. extra: 1600 / 1545,
  24922. bottom: 81 / 1681
  24923. }
  24924. },
  24925. },
  24926. [
  24927. {
  24928. name: "Normal",
  24929. height: math.unit(5 + 6 / 12, "feet"),
  24930. default: true
  24931. },
  24932. ]
  24933. ))
  24934. characterMakers.push(() => makeCharacter(
  24935. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24936. {
  24937. front: {
  24938. height: math.unit(3 + 4 / 12, "feet"),
  24939. weight: math.unit(70, "lb"),
  24940. name: "Front",
  24941. image: {
  24942. source: "./media/characters/maia/front.svg",
  24943. extra: 227 / 219.5,
  24944. bottom: 40 / 267
  24945. }
  24946. },
  24947. back: {
  24948. height: math.unit(3 + 4 / 12, "feet"),
  24949. weight: math.unit(70, "lb"),
  24950. name: "Back",
  24951. image: {
  24952. source: "./media/characters/maia/back.svg",
  24953. extra: 237 / 225
  24954. }
  24955. },
  24956. },
  24957. [
  24958. {
  24959. name: "Normal",
  24960. height: math.unit(3 + 4 / 12, "feet"),
  24961. default: true
  24962. },
  24963. ]
  24964. ))
  24965. characterMakers.push(() => makeCharacter(
  24966. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24967. {
  24968. front: {
  24969. height: math.unit(5 + 10 / 12, "feet"),
  24970. weight: math.unit(197, "lb"),
  24971. name: "Front",
  24972. image: {
  24973. source: "./media/characters/jabaro/front.svg",
  24974. extra: 225 / 216,
  24975. bottom: 5.06 / 230
  24976. }
  24977. },
  24978. back: {
  24979. height: math.unit(5 + 10 / 12, "feet"),
  24980. weight: math.unit(197, "lb"),
  24981. name: "Back",
  24982. image: {
  24983. source: "./media/characters/jabaro/back.svg",
  24984. extra: 225 / 219,
  24985. bottom: 1.9 / 227
  24986. }
  24987. },
  24988. },
  24989. [
  24990. {
  24991. name: "Normal",
  24992. height: math.unit(5 + 10 / 12, "feet"),
  24993. default: true
  24994. },
  24995. ]
  24996. ))
  24997. characterMakers.push(() => makeCharacter(
  24998. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24999. {
  25000. front: {
  25001. height: math.unit(5 + 8 / 12, "feet"),
  25002. weight: math.unit(139, "lb"),
  25003. name: "Front",
  25004. image: {
  25005. source: "./media/characters/risa/front.svg",
  25006. extra: 270 / 260,
  25007. bottom: 11.2 / 282
  25008. }
  25009. },
  25010. back: {
  25011. height: math.unit(5 + 8 / 12, "feet"),
  25012. weight: math.unit(139, "lb"),
  25013. name: "Back",
  25014. image: {
  25015. source: "./media/characters/risa/back.svg",
  25016. extra: 264 / 255,
  25017. bottom: 4 / 268
  25018. }
  25019. },
  25020. },
  25021. [
  25022. {
  25023. name: "Normal",
  25024. height: math.unit(5 + 8 / 12, "feet"),
  25025. default: true
  25026. },
  25027. ]
  25028. ))
  25029. characterMakers.push(() => makeCharacter(
  25030. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25031. {
  25032. front: {
  25033. height: math.unit(2 + 11 / 12, "feet"),
  25034. weight: math.unit(30, "lb"),
  25035. name: "Front",
  25036. image: {
  25037. source: "./media/characters/weatley/front.svg",
  25038. bottom: 10.7 / 414,
  25039. extra: 403.5 / 362
  25040. }
  25041. },
  25042. back: {
  25043. height: math.unit(2 + 11 / 12, "feet"),
  25044. weight: math.unit(30, "lb"),
  25045. name: "Back",
  25046. image: {
  25047. source: "./media/characters/weatley/back.svg",
  25048. bottom: 10.7 / 414,
  25049. extra: 403.5 / 362
  25050. }
  25051. },
  25052. },
  25053. [
  25054. {
  25055. name: "Normal",
  25056. height: math.unit(2 + 11 / 12, "feet"),
  25057. default: true
  25058. },
  25059. ]
  25060. ))
  25061. characterMakers.push(() => makeCharacter(
  25062. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25063. {
  25064. front: {
  25065. height: math.unit(5 + 2 / 12, "feet"),
  25066. weight: math.unit(50, "kg"),
  25067. name: "Front",
  25068. image: {
  25069. source: "./media/characters/mercury-crescent/front.svg",
  25070. extra: 1088 / 1033,
  25071. bottom: 18.9 / 1109
  25072. }
  25073. },
  25074. },
  25075. [
  25076. {
  25077. name: "Normal",
  25078. height: math.unit(5 + 2 / 12, "feet"),
  25079. default: true
  25080. },
  25081. ]
  25082. ))
  25083. characterMakers.push(() => makeCharacter(
  25084. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25085. {
  25086. front: {
  25087. height: math.unit(2, "feet"),
  25088. weight: math.unit(15, "kg"),
  25089. name: "Front",
  25090. image: {
  25091. source: "./media/characters/diamond-jones/front.svg",
  25092. bottom: 16 / 568
  25093. }
  25094. },
  25095. },
  25096. [
  25097. {
  25098. name: "Normal",
  25099. height: math.unit(2, "feet"),
  25100. default: true
  25101. },
  25102. ]
  25103. ))
  25104. characterMakers.push(() => makeCharacter(
  25105. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25106. {
  25107. front: {
  25108. height: math.unit(3, "feet"),
  25109. weight: math.unit(30, "kg"),
  25110. name: "Front",
  25111. image: {
  25112. source: "./media/characters/sweet-bit/front.svg",
  25113. extra: 675 / 567,
  25114. bottom: 27.7 / 703
  25115. }
  25116. },
  25117. },
  25118. [
  25119. {
  25120. name: "Normal",
  25121. height: math.unit(3, "feet"),
  25122. default: true
  25123. },
  25124. ]
  25125. ))
  25126. characterMakers.push(() => makeCharacter(
  25127. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25128. {
  25129. side: {
  25130. height: math.unit(9.178, "feet"),
  25131. weight: math.unit(500, "lb"),
  25132. name: "Side",
  25133. image: {
  25134. source: "./media/characters/umbrazen/side.svg",
  25135. extra: 1730 / 1473,
  25136. bottom: 34.6 / 1765
  25137. }
  25138. },
  25139. },
  25140. [
  25141. {
  25142. name: "Normal",
  25143. height: math.unit(9.178, "feet"),
  25144. default: true
  25145. },
  25146. ]
  25147. ))
  25148. characterMakers.push(() => makeCharacter(
  25149. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25150. {
  25151. front: {
  25152. height: math.unit(10, "feet"),
  25153. weight: math.unit(750, "lb"),
  25154. name: "Front",
  25155. image: {
  25156. source: "./media/characters/arlist/front.svg",
  25157. extra: 961 / 778,
  25158. bottom: 6.2 / 986
  25159. }
  25160. },
  25161. },
  25162. [
  25163. {
  25164. name: "Normal",
  25165. height: math.unit(10, "feet"),
  25166. default: true
  25167. },
  25168. ]
  25169. ))
  25170. characterMakers.push(() => makeCharacter(
  25171. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25172. {
  25173. front: {
  25174. height: math.unit(5 + 1 / 12, "feet"),
  25175. weight: math.unit(110, "lb"),
  25176. name: "Front",
  25177. image: {
  25178. source: "./media/characters/aradel/front.svg",
  25179. extra: 324 / 303,
  25180. bottom: 3.6 / 329.4
  25181. }
  25182. },
  25183. },
  25184. [
  25185. {
  25186. name: "Normal",
  25187. height: math.unit(5 + 1 / 12, "feet"),
  25188. default: true
  25189. },
  25190. ]
  25191. ))
  25192. characterMakers.push(() => makeCharacter(
  25193. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25194. {
  25195. front: {
  25196. height: math.unit(3 + 8 / 12, "feet"),
  25197. weight: math.unit(50, "lb"),
  25198. name: "Front",
  25199. image: {
  25200. source: "./media/characters/serryn/front.svg",
  25201. extra: 1792 / 1656,
  25202. bottom: 43.5 / 1840
  25203. }
  25204. },
  25205. },
  25206. [
  25207. {
  25208. name: "Normal",
  25209. height: math.unit(3 + 8 / 12, "feet"),
  25210. default: true
  25211. },
  25212. ]
  25213. ))
  25214. characterMakers.push(() => makeCharacter(
  25215. { name: "Xavier Thyme" },
  25216. {
  25217. front: {
  25218. height: math.unit(7 + 10 / 12, "feet"),
  25219. weight: math.unit(255, "lb"),
  25220. name: "Front",
  25221. image: {
  25222. source: "./media/characters/xavier-thyme/front.svg",
  25223. extra: 3733 / 3642,
  25224. bottom: 131 / 3869
  25225. }
  25226. },
  25227. frontRaven: {
  25228. height: math.unit(7 + 10 / 12, "feet"),
  25229. weight: math.unit(255, "lb"),
  25230. name: "Front (Raven)",
  25231. image: {
  25232. source: "./media/characters/xavier-thyme/front-raven.svg",
  25233. extra: 4385 / 3642,
  25234. bottom: 131 / 4517
  25235. }
  25236. },
  25237. },
  25238. [
  25239. {
  25240. name: "Normal",
  25241. height: math.unit(7 + 10 / 12, "feet"),
  25242. default: true
  25243. },
  25244. ]
  25245. ))
  25246. characterMakers.push(() => makeCharacter(
  25247. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25248. {
  25249. front: {
  25250. height: math.unit(1.6, "m"),
  25251. weight: math.unit(50, "kg"),
  25252. name: "Front",
  25253. image: {
  25254. source: "./media/characters/kiki/front.svg",
  25255. extra: 4682 / 3610,
  25256. bottom: 115 / 4777
  25257. }
  25258. },
  25259. },
  25260. [
  25261. {
  25262. name: "Normal",
  25263. height: math.unit(1.6, "meters"),
  25264. default: true
  25265. },
  25266. ]
  25267. ))
  25268. characterMakers.push(() => makeCharacter(
  25269. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25270. {
  25271. front: {
  25272. height: math.unit(50, "m"),
  25273. weight: math.unit(500, "tonnes"),
  25274. name: "Front",
  25275. image: {
  25276. source: "./media/characters/ryoko/front.svg",
  25277. extra: 4632 / 3926,
  25278. bottom: 193 / 4823
  25279. }
  25280. },
  25281. },
  25282. [
  25283. {
  25284. name: "Normal",
  25285. height: math.unit(50, "meters"),
  25286. default: true
  25287. },
  25288. ]
  25289. ))
  25290. characterMakers.push(() => makeCharacter(
  25291. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25292. {
  25293. front: {
  25294. height: math.unit(30, "m"),
  25295. weight: math.unit(22, "tonnes"),
  25296. name: "Front",
  25297. image: {
  25298. source: "./media/characters/elio/front.svg",
  25299. extra: 4582 / 3720,
  25300. bottom: 236 / 4828
  25301. }
  25302. },
  25303. },
  25304. [
  25305. {
  25306. name: "Normal",
  25307. height: math.unit(30, "meters"),
  25308. default: true
  25309. },
  25310. ]
  25311. ))
  25312. characterMakers.push(() => makeCharacter(
  25313. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25314. {
  25315. front: {
  25316. height: math.unit(6 + 3 / 12, "feet"),
  25317. weight: math.unit(120, "lb"),
  25318. name: "Front",
  25319. image: {
  25320. source: "./media/characters/azura/front.svg",
  25321. extra: 1149 / 1135,
  25322. bottom: 45 / 1194
  25323. }
  25324. },
  25325. frontClothed: {
  25326. height: math.unit(6 + 3 / 12, "feet"),
  25327. weight: math.unit(120, "lb"),
  25328. name: "Front (Clothed)",
  25329. image: {
  25330. source: "./media/characters/azura/front-clothed.svg",
  25331. extra: 1149 / 1135,
  25332. bottom: 45 / 1194
  25333. }
  25334. },
  25335. },
  25336. [
  25337. {
  25338. name: "Normal",
  25339. height: math.unit(6 + 3 / 12, "feet"),
  25340. default: true
  25341. },
  25342. {
  25343. name: "Macro",
  25344. height: math.unit(20 + 6 / 12, "feet")
  25345. },
  25346. {
  25347. name: "Megamacro",
  25348. height: math.unit(12, "miles")
  25349. },
  25350. {
  25351. name: "Gigamacro",
  25352. height: math.unit(10000, "miles")
  25353. },
  25354. {
  25355. name: "Teramacro",
  25356. height: math.unit(900000, "miles")
  25357. },
  25358. ]
  25359. ))
  25360. characterMakers.push(() => makeCharacter(
  25361. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25362. {
  25363. front: {
  25364. height: math.unit(12, "feet"),
  25365. weight: math.unit(1, "ton"),
  25366. capacity: math.unit(660000, "gallons"),
  25367. name: "Front",
  25368. image: {
  25369. source: "./media/characters/zeus/front.svg",
  25370. extra: 5005 / 4717,
  25371. bottom: 363 / 5388
  25372. }
  25373. },
  25374. },
  25375. [
  25376. {
  25377. name: "Normal",
  25378. height: math.unit(12, "feet")
  25379. },
  25380. {
  25381. name: "Preferred Size",
  25382. height: math.unit(0.5, "miles"),
  25383. default: true
  25384. },
  25385. {
  25386. name: "Giga Horse",
  25387. height: math.unit(300, "miles")
  25388. },
  25389. {
  25390. name: "Riding Planets",
  25391. height: math.unit(30, "megameters")
  25392. },
  25393. {
  25394. name: "Cosmic Giant",
  25395. height: math.unit(3, "zettameters")
  25396. },
  25397. {
  25398. name: "Breeding God",
  25399. height: math.unit(9.92e22, "yottameters")
  25400. },
  25401. ]
  25402. ))
  25403. characterMakers.push(() => makeCharacter(
  25404. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25405. {
  25406. side: {
  25407. height: math.unit(9, "feet"),
  25408. weight: math.unit(1500, "kg"),
  25409. name: "Side",
  25410. image: {
  25411. source: "./media/characters/fang/side.svg",
  25412. extra: 924 / 866,
  25413. bottom: 47.5 / 972.3
  25414. }
  25415. },
  25416. },
  25417. [
  25418. {
  25419. name: "Normal",
  25420. height: math.unit(9, "feet"),
  25421. default: true
  25422. },
  25423. {
  25424. name: "Macro",
  25425. height: math.unit(75 + 6 / 12, "feet")
  25426. },
  25427. {
  25428. name: "Teramacro",
  25429. height: math.unit(50000, "miles")
  25430. },
  25431. ]
  25432. ))
  25433. characterMakers.push(() => makeCharacter(
  25434. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25435. {
  25436. front: {
  25437. height: math.unit(10, "feet"),
  25438. weight: math.unit(2, "tons"),
  25439. name: "Front",
  25440. image: {
  25441. source: "./media/characters/rekhit/front.svg",
  25442. extra: 2796 / 2590,
  25443. bottom: 225 / 3022
  25444. }
  25445. },
  25446. },
  25447. [
  25448. {
  25449. name: "Normal",
  25450. height: math.unit(10, "feet"),
  25451. default: true
  25452. },
  25453. {
  25454. name: "Macro",
  25455. height: math.unit(500, "feet")
  25456. },
  25457. ]
  25458. ))
  25459. characterMakers.push(() => makeCharacter(
  25460. { name: "Dahlia Verrick" },
  25461. {
  25462. front: {
  25463. height: math.unit(7 + 6.451 / 12, "feet"),
  25464. weight: math.unit(310, "lb"),
  25465. name: "Front",
  25466. image: {
  25467. source: "./media/characters/dahlia-verrick/front.svg",
  25468. extra: 1488 / 1365,
  25469. bottom: 6.2 / 1495
  25470. }
  25471. },
  25472. back: {
  25473. height: math.unit(7 + 6.451 / 12, "feet"),
  25474. weight: math.unit(310, "lb"),
  25475. name: "Back",
  25476. image: {
  25477. source: "./media/characters/dahlia-verrick/back.svg",
  25478. extra: 1472 / 1351,
  25479. bottom: 5.28 / 1477
  25480. }
  25481. },
  25482. frontBusiness: {
  25483. height: math.unit(7 + 6.451 / 12, "feet"),
  25484. weight: math.unit(200, "lb"),
  25485. name: "Front (Business)",
  25486. image: {
  25487. source: "./media/characters/dahlia-verrick/front-business.svg",
  25488. extra: 1478 / 1381,
  25489. bottom: 5.5 / 1484
  25490. }
  25491. },
  25492. frontCasual: {
  25493. height: math.unit(7 + 6.451 / 12, "feet"),
  25494. weight: math.unit(200, "lb"),
  25495. name: "Front (Casual)",
  25496. image: {
  25497. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25498. extra: 1478 / 1381,
  25499. bottom: 5.5 / 1484
  25500. }
  25501. },
  25502. },
  25503. [
  25504. {
  25505. name: "Travel-Sized",
  25506. height: math.unit(7.45, "inches")
  25507. },
  25508. {
  25509. name: "Normal",
  25510. height: math.unit(7 + 6.451 / 12, "feet"),
  25511. default: true
  25512. },
  25513. {
  25514. name: "Hitting the Town",
  25515. height: math.unit(37 + 8 / 12, "feet")
  25516. },
  25517. {
  25518. name: "Stomp in the Suburbs",
  25519. height: math.unit(964 + 9.728 / 12, "feet")
  25520. },
  25521. {
  25522. name: "Sit on the City",
  25523. height: math.unit(61747 + 10.592 / 12, "feet")
  25524. },
  25525. {
  25526. name: "Glomp the Globe",
  25527. height: math.unit(252919327 + 4.832 / 12, "feet")
  25528. },
  25529. ]
  25530. ))
  25531. characterMakers.push(() => makeCharacter(
  25532. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25533. {
  25534. front: {
  25535. height: math.unit(6 + 4 / 12, "feet"),
  25536. weight: math.unit(320, "lb"),
  25537. name: "Front",
  25538. image: {
  25539. source: "./media/characters/balina-mahigan/front.svg",
  25540. extra: 447 / 428,
  25541. bottom: 18 / 466
  25542. }
  25543. },
  25544. back: {
  25545. height: math.unit(6 + 4 / 12, "feet"),
  25546. weight: math.unit(320, "lb"),
  25547. name: "Back",
  25548. image: {
  25549. source: "./media/characters/balina-mahigan/back.svg",
  25550. extra: 445 / 428,
  25551. bottom: 4.07 / 448
  25552. }
  25553. },
  25554. arm: {
  25555. height: math.unit(1.88, "feet"),
  25556. name: "Arm",
  25557. image: {
  25558. source: "./media/characters/balina-mahigan/arm.svg"
  25559. }
  25560. },
  25561. backPort: {
  25562. height: math.unit(0.685, "feet"),
  25563. name: "Back Port",
  25564. image: {
  25565. source: "./media/characters/balina-mahigan/back-port.svg"
  25566. }
  25567. },
  25568. hoofpaw: {
  25569. height: math.unit(1.41, "feet"),
  25570. name: "Hoofpaw",
  25571. image: {
  25572. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25573. }
  25574. },
  25575. leftHandBack: {
  25576. height: math.unit(0.938, "feet"),
  25577. name: "Left Hand (Back)",
  25578. image: {
  25579. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25580. }
  25581. },
  25582. leftHandFront: {
  25583. height: math.unit(0.938, "feet"),
  25584. name: "Left Hand (Front)",
  25585. image: {
  25586. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25587. }
  25588. },
  25589. rightHandBack: {
  25590. height: math.unit(0.95, "feet"),
  25591. name: "Right Hand (Back)",
  25592. image: {
  25593. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25594. }
  25595. },
  25596. rightHandFront: {
  25597. height: math.unit(0.95, "feet"),
  25598. name: "Right Hand (Front)",
  25599. image: {
  25600. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25601. }
  25602. },
  25603. },
  25604. [
  25605. {
  25606. name: "Normal",
  25607. height: math.unit(6 + 4 / 12, "feet"),
  25608. default: true
  25609. },
  25610. ]
  25611. ))
  25612. characterMakers.push(() => makeCharacter(
  25613. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25614. {
  25615. front: {
  25616. height: math.unit(6, "feet"),
  25617. weight: math.unit(320, "lb"),
  25618. name: "Front",
  25619. image: {
  25620. source: "./media/characters/balina-mejeri/front.svg",
  25621. extra: 517 / 488,
  25622. bottom: 44.2 / 561
  25623. }
  25624. },
  25625. },
  25626. [
  25627. {
  25628. name: "Normal",
  25629. height: math.unit(6 + 4 / 12, "feet")
  25630. },
  25631. {
  25632. name: "Business",
  25633. height: math.unit(155, "feet"),
  25634. default: true
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25640. {
  25641. kneeling: {
  25642. height: math.unit(6 + 4 / 12, "feet"),
  25643. weight: math.unit(300 * 20, "lb"),
  25644. name: "Kneeling",
  25645. image: {
  25646. source: "./media/characters/balbarian/kneeling.svg",
  25647. extra: 922 / 862,
  25648. bottom: 42.4 / 965
  25649. }
  25650. },
  25651. },
  25652. [
  25653. {
  25654. name: "Normal",
  25655. height: math.unit(6 + 4 / 12, "feet")
  25656. },
  25657. {
  25658. name: "Treasured",
  25659. height: math.unit(18 + 9 / 12, "feet"),
  25660. default: true
  25661. },
  25662. {
  25663. name: "Macro",
  25664. height: math.unit(900, "feet")
  25665. },
  25666. ]
  25667. ))
  25668. characterMakers.push(() => makeCharacter(
  25669. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25670. {
  25671. front: {
  25672. height: math.unit(6 + 4 / 12, "feet"),
  25673. weight: math.unit(325, "lb"),
  25674. name: "Front",
  25675. image: {
  25676. source: "./media/characters/balina-amarini/front.svg",
  25677. extra: 415 / 403,
  25678. bottom: 19 / 433.4
  25679. }
  25680. },
  25681. back: {
  25682. height: math.unit(6 + 4 / 12, "feet"),
  25683. weight: math.unit(325, "lb"),
  25684. name: "Back",
  25685. image: {
  25686. source: "./media/characters/balina-amarini/back.svg",
  25687. extra: 415 / 403,
  25688. bottom: 13.5 / 432
  25689. }
  25690. },
  25691. overdrive: {
  25692. height: math.unit(6 + 4 / 12, "feet"),
  25693. weight: math.unit(400, "lb"),
  25694. name: "Overdrive",
  25695. image: {
  25696. source: "./media/characters/balina-amarini/overdrive.svg",
  25697. extra: 269 / 259,
  25698. bottom: 12 / 282
  25699. }
  25700. },
  25701. },
  25702. [
  25703. {
  25704. name: "Boom",
  25705. height: math.unit(9 + 10 / 12, "feet"),
  25706. default: true
  25707. },
  25708. {
  25709. name: "Macro",
  25710. height: math.unit(280, "feet")
  25711. },
  25712. ]
  25713. ))
  25714. characterMakers.push(() => makeCharacter(
  25715. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25716. {
  25717. goddess: {
  25718. height: math.unit(600, "feet"),
  25719. weight: math.unit(2000000, "tons"),
  25720. name: "Goddess",
  25721. image: {
  25722. source: "./media/characters/lady-kubwa/goddess.svg",
  25723. extra: 1240.5 / 1223,
  25724. bottom: 22 / 1263
  25725. }
  25726. },
  25727. goddesser: {
  25728. height: math.unit(900, "feet"),
  25729. weight: math.unit(20000000, "lb"),
  25730. name: "Goddess-er",
  25731. image: {
  25732. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25733. extra: 899 / 888,
  25734. bottom: 12.6 / 912
  25735. }
  25736. },
  25737. },
  25738. [
  25739. {
  25740. name: "Macro",
  25741. height: math.unit(600, "feet"),
  25742. default: true
  25743. },
  25744. {
  25745. name: "Megamacro",
  25746. height: math.unit(250, "miles")
  25747. },
  25748. ]
  25749. ))
  25750. characterMakers.push(() => makeCharacter(
  25751. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25752. {
  25753. front: {
  25754. height: math.unit(7 + 7 / 12, "feet"),
  25755. weight: math.unit(250, "lb"),
  25756. name: "Front",
  25757. image: {
  25758. source: "./media/characters/tala-grovehorn/front.svg",
  25759. extra: 2636 / 2525,
  25760. bottom: 147 / 2781
  25761. }
  25762. },
  25763. back: {
  25764. height: math.unit(7 + 7 / 12, "feet"),
  25765. weight: math.unit(250, "lb"),
  25766. name: "Back",
  25767. image: {
  25768. source: "./media/characters/tala-grovehorn/back.svg",
  25769. extra: 2635 / 2539,
  25770. bottom: 100 / 2732.8
  25771. }
  25772. },
  25773. mouth: {
  25774. height: math.unit(1.15, "feet"),
  25775. name: "Mouth",
  25776. image: {
  25777. source: "./media/characters/tala-grovehorn/mouth.svg"
  25778. }
  25779. },
  25780. dick: {
  25781. height: math.unit(2.36, "feet"),
  25782. name: "Dick",
  25783. image: {
  25784. source: "./media/characters/tala-grovehorn/dick.svg"
  25785. }
  25786. },
  25787. slit: {
  25788. height: math.unit(0.61, "feet"),
  25789. name: "Slit",
  25790. image: {
  25791. source: "./media/characters/tala-grovehorn/slit.svg"
  25792. }
  25793. },
  25794. },
  25795. [
  25796. ]
  25797. ))
  25798. characterMakers.push(() => makeCharacter(
  25799. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25800. {
  25801. front: {
  25802. height: math.unit(7 + 7 / 12, "feet"),
  25803. weight: math.unit(225, "lb"),
  25804. name: "Front",
  25805. image: {
  25806. source: "./media/characters/epona/front.svg",
  25807. extra: 2445 / 2290,
  25808. bottom: 251 / 2696
  25809. }
  25810. },
  25811. back: {
  25812. height: math.unit(7 + 7 / 12, "feet"),
  25813. weight: math.unit(225, "lb"),
  25814. name: "Back",
  25815. image: {
  25816. source: "./media/characters/epona/back.svg",
  25817. extra: 2546 / 2408,
  25818. bottom: 44 / 2589
  25819. }
  25820. },
  25821. genitals: {
  25822. height: math.unit(1.5, "feet"),
  25823. name: "Genitals",
  25824. image: {
  25825. source: "./media/characters/epona/genitals.svg"
  25826. }
  25827. },
  25828. },
  25829. [
  25830. {
  25831. name: "Normal",
  25832. height: math.unit(7 + 7 / 12, "feet")
  25833. },
  25834. ]
  25835. ))
  25836. characterMakers.push(() => makeCharacter(
  25837. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25838. {
  25839. front: {
  25840. height: math.unit(7, "feet"),
  25841. weight: math.unit(518, "lb"),
  25842. name: "Front",
  25843. image: {
  25844. source: "./media/characters/avia-bloodbourn/front.svg",
  25845. extra: 1466 / 1350,
  25846. bottom: 65 / 1527
  25847. }
  25848. },
  25849. },
  25850. [
  25851. ]
  25852. ))
  25853. characterMakers.push(() => makeCharacter(
  25854. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25855. {
  25856. front: {
  25857. height: math.unit(9.35, "feet"),
  25858. weight: math.unit(600, "lb"),
  25859. name: "Front",
  25860. image: {
  25861. source: "./media/characters/amera/front.svg",
  25862. extra: 891 / 818,
  25863. bottom: 30 / 922.7
  25864. }
  25865. },
  25866. back: {
  25867. height: math.unit(9.35, "feet"),
  25868. weight: math.unit(600, "lb"),
  25869. name: "Back",
  25870. image: {
  25871. source: "./media/characters/amera/back.svg",
  25872. extra: 876 / 824,
  25873. bottom: 6.8 / 884
  25874. }
  25875. },
  25876. dick: {
  25877. height: math.unit(2.14, "feet"),
  25878. name: "Dick",
  25879. image: {
  25880. source: "./media/characters/amera/dick.svg"
  25881. }
  25882. },
  25883. },
  25884. [
  25885. {
  25886. name: "Normal",
  25887. height: math.unit(9.35, "feet"),
  25888. default: true
  25889. },
  25890. ]
  25891. ))
  25892. characterMakers.push(() => makeCharacter(
  25893. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25894. {
  25895. kneeling: {
  25896. height: math.unit(3 + 4 / 12, "feet"),
  25897. weight: math.unit(90, "lb"),
  25898. name: "Kneeling",
  25899. image: {
  25900. source: "./media/characters/rosewen/kneeling.svg",
  25901. extra: 1835 / 1571,
  25902. bottom: 27.7 / 1862
  25903. }
  25904. },
  25905. },
  25906. [
  25907. {
  25908. name: "Normal",
  25909. height: math.unit(3 + 4 / 12, "feet"),
  25910. default: true
  25911. },
  25912. ]
  25913. ))
  25914. characterMakers.push(() => makeCharacter(
  25915. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25916. {
  25917. front: {
  25918. height: math.unit(5 + 10 / 12, "feet"),
  25919. weight: math.unit(200, "lb"),
  25920. name: "Front",
  25921. image: {
  25922. source: "./media/characters/sabah/front.svg",
  25923. extra: 849 / 763,
  25924. bottom: 33.9 / 881
  25925. }
  25926. },
  25927. },
  25928. [
  25929. {
  25930. name: "Normal",
  25931. height: math.unit(5 + 10 / 12, "feet"),
  25932. default: true
  25933. },
  25934. ]
  25935. ))
  25936. characterMakers.push(() => makeCharacter(
  25937. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25938. {
  25939. front: {
  25940. height: math.unit(3 + 5 / 12, "feet"),
  25941. weight: math.unit(40, "kg"),
  25942. name: "Front",
  25943. image: {
  25944. source: "./media/characters/purple-flame/front.svg",
  25945. extra: 1577 / 1412,
  25946. bottom: 97 / 1694
  25947. }
  25948. },
  25949. frontDressed: {
  25950. height: math.unit(3 + 5 / 12, "feet"),
  25951. weight: math.unit(40, "kg"),
  25952. name: "Front (Dressed)",
  25953. image: {
  25954. source: "./media/characters/purple-flame/front-dressed.svg",
  25955. extra: 1577 / 1412,
  25956. bottom: 97 / 1694
  25957. }
  25958. },
  25959. headphones: {
  25960. height: math.unit(0.85, "feet"),
  25961. name: "Headphones",
  25962. image: {
  25963. source: "./media/characters/purple-flame/headphones.svg"
  25964. }
  25965. },
  25966. },
  25967. [
  25968. {
  25969. name: "Really Small",
  25970. height: math.unit(5, "cm")
  25971. },
  25972. {
  25973. name: "Micro",
  25974. height: math.unit(1 + 5 / 12, "feet")
  25975. },
  25976. {
  25977. name: "Normal",
  25978. height: math.unit(3 + 5 / 12, "feet"),
  25979. default: true
  25980. },
  25981. {
  25982. name: "Minimacro",
  25983. height: math.unit(125, "feet")
  25984. },
  25985. {
  25986. name: "Macro",
  25987. height: math.unit(0.5, "miles")
  25988. },
  25989. {
  25990. name: "Megamacro",
  25991. height: math.unit(50, "miles")
  25992. },
  25993. {
  25994. name: "Gigantic",
  25995. height: math.unit(750, "miles")
  25996. },
  25997. {
  25998. name: "Planetary",
  25999. height: math.unit(15000, "miles")
  26000. },
  26001. ]
  26002. ))
  26003. characterMakers.push(() => makeCharacter(
  26004. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26005. {
  26006. front: {
  26007. height: math.unit(14, "feet"),
  26008. weight: math.unit(959, "lb"),
  26009. name: "Front",
  26010. image: {
  26011. source: "./media/characters/arsenal/front.svg",
  26012. extra: 2357 / 2157,
  26013. bottom: 93 / 2458
  26014. }
  26015. },
  26016. },
  26017. [
  26018. {
  26019. name: "Normal",
  26020. height: math.unit(14, "feet"),
  26021. default: true
  26022. },
  26023. ]
  26024. ))
  26025. characterMakers.push(() => makeCharacter(
  26026. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26027. {
  26028. front: {
  26029. height: math.unit(6, "feet"),
  26030. weight: math.unit(150, "lb"),
  26031. name: "Front",
  26032. image: {
  26033. source: "./media/characters/adira/front.svg",
  26034. extra: 1078 / 1029,
  26035. bottom: 87 / 1166
  26036. }
  26037. },
  26038. },
  26039. [
  26040. {
  26041. name: "Micro",
  26042. height: math.unit(4, "inches"),
  26043. default: true
  26044. },
  26045. {
  26046. name: "Macro",
  26047. height: math.unit(50, "feet")
  26048. },
  26049. ]
  26050. ))
  26051. characterMakers.push(() => makeCharacter(
  26052. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26053. {
  26054. front: {
  26055. height: math.unit(16, "feet"),
  26056. weight: math.unit(1000, "lb"),
  26057. name: "Front",
  26058. image: {
  26059. source: "./media/characters/grim/front.svg",
  26060. extra: 622 / 614,
  26061. bottom: 18.1 / 642
  26062. }
  26063. },
  26064. back: {
  26065. height: math.unit(16, "feet"),
  26066. weight: math.unit(1000, "lb"),
  26067. name: "Back",
  26068. image: {
  26069. source: "./media/characters/grim/back.svg",
  26070. extra: 610.6 / 602,
  26071. bottom: 40.8 / 652
  26072. }
  26073. },
  26074. hunched: {
  26075. height: math.unit(9.75, "feet"),
  26076. weight: math.unit(1000, "lb"),
  26077. name: "Hunched",
  26078. image: {
  26079. source: "./media/characters/grim/hunched.svg",
  26080. extra: 304 / 297,
  26081. bottom: 35.4 / 394
  26082. }
  26083. },
  26084. },
  26085. [
  26086. {
  26087. name: "Normal",
  26088. height: math.unit(16, "feet"),
  26089. default: true
  26090. },
  26091. ]
  26092. ))
  26093. characterMakers.push(() => makeCharacter(
  26094. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26095. {
  26096. front: {
  26097. height: math.unit(2.3, "meters"),
  26098. weight: math.unit(300, "lb"),
  26099. name: "Front",
  26100. image: {
  26101. source: "./media/characters/sinja/front-sfw.svg",
  26102. extra: 1393 / 1294,
  26103. bottom: 70 / 1463
  26104. }
  26105. },
  26106. frontNsfw: {
  26107. height: math.unit(2.3, "meters"),
  26108. weight: math.unit(300, "lb"),
  26109. name: "Front (NSFW)",
  26110. image: {
  26111. source: "./media/characters/sinja/front-nsfw.svg",
  26112. extra: 1393 / 1294,
  26113. bottom: 70 / 1463
  26114. }
  26115. },
  26116. back: {
  26117. height: math.unit(2.3, "meters"),
  26118. weight: math.unit(300, "lb"),
  26119. name: "Back",
  26120. image: {
  26121. source: "./media/characters/sinja/back.svg",
  26122. extra: 1393 / 1294,
  26123. bottom: 70 / 1463
  26124. }
  26125. },
  26126. head: {
  26127. height: math.unit(1.771, "feet"),
  26128. name: "Head",
  26129. image: {
  26130. source: "./media/characters/sinja/head.svg"
  26131. }
  26132. },
  26133. slit: {
  26134. height: math.unit(0.8, "feet"),
  26135. name: "Slit",
  26136. image: {
  26137. source: "./media/characters/sinja/slit.svg"
  26138. }
  26139. },
  26140. },
  26141. [
  26142. {
  26143. name: "Normal",
  26144. height: math.unit(2.3, "meters")
  26145. },
  26146. {
  26147. name: "Macro",
  26148. height: math.unit(91, "meters"),
  26149. default: true
  26150. },
  26151. {
  26152. name: "Megamacro",
  26153. height: math.unit(91440, "meters")
  26154. },
  26155. {
  26156. name: "Gigamacro",
  26157. height: math.unit(60960000, "meters")
  26158. },
  26159. {
  26160. name: "Teramacro",
  26161. height: math.unit(9144000000, "meters")
  26162. },
  26163. ]
  26164. ))
  26165. characterMakers.push(() => makeCharacter(
  26166. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26167. {
  26168. front: {
  26169. height: math.unit(1.7, "meters"),
  26170. weight: math.unit(130, "lb"),
  26171. name: "Front",
  26172. image: {
  26173. source: "./media/characters/kyu/front.svg",
  26174. extra: 415 / 395,
  26175. bottom: 5 / 420
  26176. }
  26177. },
  26178. head: {
  26179. height: math.unit(1.75, "feet"),
  26180. name: "Head",
  26181. image: {
  26182. source: "./media/characters/kyu/head.svg"
  26183. }
  26184. },
  26185. foot: {
  26186. height: math.unit(0.81, "feet"),
  26187. name: "Foot",
  26188. image: {
  26189. source: "./media/characters/kyu/foot.svg"
  26190. }
  26191. },
  26192. },
  26193. [
  26194. {
  26195. name: "Normal",
  26196. height: math.unit(1.7, "meters")
  26197. },
  26198. {
  26199. name: "Macro",
  26200. height: math.unit(131, "feet"),
  26201. default: true
  26202. },
  26203. {
  26204. name: "Megamacro",
  26205. height: math.unit(91440, "meters")
  26206. },
  26207. {
  26208. name: "Gigamacro",
  26209. height: math.unit(60960000, "meters")
  26210. },
  26211. {
  26212. name: "Teramacro",
  26213. height: math.unit(9144000000, "meters")
  26214. },
  26215. ]
  26216. ))
  26217. characterMakers.push(() => makeCharacter(
  26218. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26219. {
  26220. front: {
  26221. height: math.unit(7 + 1 / 12, "feet"),
  26222. weight: math.unit(250, "lb"),
  26223. name: "Front",
  26224. image: {
  26225. source: "./media/characters/joey/front.svg",
  26226. extra: 1791 / 1537,
  26227. bottom: 28 / 1816
  26228. }
  26229. },
  26230. },
  26231. [
  26232. {
  26233. name: "Micro",
  26234. height: math.unit(3, "inches")
  26235. },
  26236. {
  26237. name: "Normal",
  26238. height: math.unit(7 + 1 / 12, "feet"),
  26239. default: true
  26240. },
  26241. ]
  26242. ))
  26243. characterMakers.push(() => makeCharacter(
  26244. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26245. {
  26246. front: {
  26247. height: math.unit(165, "cm"),
  26248. weight: math.unit(140, "lb"),
  26249. name: "Front",
  26250. image: {
  26251. source: "./media/characters/sam-evans/front.svg",
  26252. extra: 3417 / 3230,
  26253. bottom: 41.3 / 3417
  26254. }
  26255. },
  26256. frontSixTails: {
  26257. height: math.unit(165, "cm"),
  26258. weight: math.unit(140, "lb"),
  26259. name: "Front-six-tails",
  26260. image: {
  26261. source: "./media/characters/sam-evans/front-six-tails.svg",
  26262. extra: 3417 / 3230,
  26263. bottom: 41.3 / 3417
  26264. }
  26265. },
  26266. back: {
  26267. height: math.unit(165, "cm"),
  26268. weight: math.unit(140, "lb"),
  26269. name: "Back",
  26270. image: {
  26271. source: "./media/characters/sam-evans/back.svg",
  26272. extra: 3227 / 3032,
  26273. bottom: 6.8 / 3234
  26274. }
  26275. },
  26276. face: {
  26277. height: math.unit(0.68, "feet"),
  26278. name: "Face",
  26279. image: {
  26280. source: "./media/characters/sam-evans/face.svg"
  26281. }
  26282. },
  26283. },
  26284. [
  26285. {
  26286. name: "Normal",
  26287. height: math.unit(165, "cm"),
  26288. default: true
  26289. },
  26290. {
  26291. name: "Macro",
  26292. height: math.unit(100, "meters")
  26293. },
  26294. {
  26295. name: "Macro+",
  26296. height: math.unit(800, "meters")
  26297. },
  26298. {
  26299. name: "Macro++",
  26300. height: math.unit(3, "km")
  26301. },
  26302. {
  26303. name: "Macro+++",
  26304. height: math.unit(30, "km")
  26305. },
  26306. ]
  26307. ))
  26308. characterMakers.push(() => makeCharacter(
  26309. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26310. {
  26311. front: {
  26312. height: math.unit(10, "feet"),
  26313. weight: math.unit(750, "lb"),
  26314. name: "Front",
  26315. image: {
  26316. source: "./media/characters/juliet-a/front.svg",
  26317. extra: 1766 / 1720,
  26318. bottom: 43 / 1809
  26319. }
  26320. },
  26321. back: {
  26322. height: math.unit(10, "feet"),
  26323. weight: math.unit(750, "lb"),
  26324. name: "Back",
  26325. image: {
  26326. source: "./media/characters/juliet-a/back.svg",
  26327. extra: 1781 / 1734,
  26328. bottom: 35 / 1810,
  26329. }
  26330. },
  26331. },
  26332. [
  26333. {
  26334. name: "Normal",
  26335. height: math.unit(10, "feet"),
  26336. default: true
  26337. },
  26338. {
  26339. name: "Dragon Form",
  26340. height: math.unit(250, "feet")
  26341. },
  26342. {
  26343. name: "Macro",
  26344. height: math.unit(1000, "feet")
  26345. },
  26346. {
  26347. name: "Megamacro",
  26348. height: math.unit(10000, "feet")
  26349. }
  26350. ]
  26351. ))
  26352. characterMakers.push(() => makeCharacter(
  26353. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26354. {
  26355. regular: {
  26356. height: math.unit(7 + 3 / 12, "feet"),
  26357. weight: math.unit(260, "lb"),
  26358. name: "Regular",
  26359. image: {
  26360. source: "./media/characters/wild/regular.svg",
  26361. extra: 97.45 / 92,
  26362. bottom: 6.8 / 104.3
  26363. }
  26364. },
  26365. biggums: {
  26366. height: math.unit(8 + 6 / 12, "feet"),
  26367. weight: math.unit(425, "lb"),
  26368. name: "Biggums",
  26369. image: {
  26370. source: "./media/characters/wild/biggums.svg",
  26371. extra: 97.45 / 92,
  26372. bottom: 7.5 / 132.34
  26373. }
  26374. },
  26375. mawRegular: {
  26376. height: math.unit(1.24, "feet"),
  26377. name: "Maw (Regular)",
  26378. image: {
  26379. source: "./media/characters/wild/maw.svg"
  26380. }
  26381. },
  26382. mawBiggums: {
  26383. height: math.unit(1.47, "feet"),
  26384. name: "Maw (Biggums)",
  26385. image: {
  26386. source: "./media/characters/wild/maw.svg"
  26387. }
  26388. },
  26389. },
  26390. [
  26391. {
  26392. name: "Normal",
  26393. height: math.unit(7 + 3 / 12, "feet"),
  26394. default: true
  26395. },
  26396. ]
  26397. ))
  26398. characterMakers.push(() => makeCharacter(
  26399. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26400. {
  26401. front: {
  26402. height: math.unit(2.5, "meters"),
  26403. weight: math.unit(200, "kg"),
  26404. name: "Front",
  26405. image: {
  26406. source: "./media/characters/vidar/front.svg",
  26407. extra: 2994 / 2795,
  26408. bottom: 56 / 3061
  26409. }
  26410. },
  26411. back: {
  26412. height: math.unit(2.5, "meters"),
  26413. weight: math.unit(200, "kg"),
  26414. name: "Back",
  26415. image: {
  26416. source: "./media/characters/vidar/back.svg",
  26417. extra: 3131 / 2928,
  26418. bottom: 13.5 / 3141.5
  26419. }
  26420. },
  26421. feral: {
  26422. height: math.unit(2.5, "meters"),
  26423. weight: math.unit(2000, "kg"),
  26424. name: "Feral",
  26425. image: {
  26426. source: "./media/characters/vidar/feral.svg",
  26427. extra: 2790 / 1765,
  26428. bottom: 6 / 2796
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Normal",
  26435. height: math.unit(2.5, "meters"),
  26436. default: true
  26437. },
  26438. {
  26439. name: "Macro",
  26440. height: math.unit(100, "meters")
  26441. },
  26442. ]
  26443. ))
  26444. characterMakers.push(() => makeCharacter(
  26445. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26446. {
  26447. front: {
  26448. height: math.unit(5 + 9 / 12, "feet"),
  26449. weight: math.unit(120, "lb"),
  26450. name: "Front",
  26451. image: {
  26452. source: "./media/characters/ash/front.svg",
  26453. extra: 2189 / 1961,
  26454. bottom: 5.2 / 2194
  26455. }
  26456. },
  26457. },
  26458. [
  26459. {
  26460. name: "Normal",
  26461. height: math.unit(5 + 9 / 12, "feet"),
  26462. default: true
  26463. },
  26464. ]
  26465. ))
  26466. characterMakers.push(() => makeCharacter(
  26467. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26468. {
  26469. front: {
  26470. height: math.unit(9, "feet"),
  26471. weight: math.unit(10000, "lb"),
  26472. name: "Front",
  26473. image: {
  26474. source: "./media/characters/gygabite/front.svg",
  26475. bottom: 31.7 / 537.8,
  26476. extra: 505 / 370
  26477. }
  26478. },
  26479. },
  26480. [
  26481. {
  26482. name: "Normal",
  26483. height: math.unit(9, "feet"),
  26484. default: true
  26485. },
  26486. ]
  26487. ))
  26488. characterMakers.push(() => makeCharacter(
  26489. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26490. {
  26491. front: {
  26492. height: math.unit(12, "feet"),
  26493. weight: math.unit(35000, "lb"),
  26494. name: "Front",
  26495. image: {
  26496. source: "./media/characters/p0tat0/front.svg",
  26497. extra: 1065 / 921,
  26498. bottom: 55.7 / 1121.25
  26499. }
  26500. },
  26501. },
  26502. [
  26503. {
  26504. name: "Normal",
  26505. height: math.unit(12, "feet"),
  26506. default: true
  26507. },
  26508. ]
  26509. ))
  26510. characterMakers.push(() => makeCharacter(
  26511. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26512. {
  26513. side: {
  26514. height: math.unit(6.5, "feet"),
  26515. weight: math.unit(800, "lb"),
  26516. name: "Side",
  26517. image: {
  26518. source: "./media/characters/dusk/side.svg",
  26519. extra: 615 / 373,
  26520. bottom: 53 / 664
  26521. }
  26522. },
  26523. sitting: {
  26524. height: math.unit(7, "feet"),
  26525. weight: math.unit(800, "lb"),
  26526. name: "Sitting",
  26527. image: {
  26528. source: "./media/characters/dusk/sitting.svg",
  26529. extra: 753 / 425,
  26530. bottom: 33 / 774
  26531. }
  26532. },
  26533. head: {
  26534. height: math.unit(6.1, "feet"),
  26535. name: "Head",
  26536. image: {
  26537. source: "./media/characters/dusk/head.svg"
  26538. }
  26539. },
  26540. },
  26541. [
  26542. {
  26543. name: "Normal",
  26544. height: math.unit(7, "feet"),
  26545. default: true
  26546. },
  26547. ]
  26548. ))
  26549. characterMakers.push(() => makeCharacter(
  26550. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26551. {
  26552. front: {
  26553. height: math.unit(15, "feet"),
  26554. weight: math.unit(7000, "lb"),
  26555. name: "Front",
  26556. image: {
  26557. source: "./media/characters/jay-direwolf/front.svg",
  26558. extra: 1810 / 1732,
  26559. bottom: 66 / 1892
  26560. }
  26561. },
  26562. },
  26563. [
  26564. {
  26565. name: "Normal",
  26566. height: math.unit(15, "feet"),
  26567. default: true
  26568. },
  26569. ]
  26570. ))
  26571. characterMakers.push(() => makeCharacter(
  26572. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26573. {
  26574. front: {
  26575. height: math.unit(4 + 9 / 12, "feet"),
  26576. weight: math.unit(130, "lb"),
  26577. name: "Front",
  26578. image: {
  26579. source: "./media/characters/anchovie/front.svg",
  26580. extra: 382 / 350,
  26581. bottom: 25 / 409
  26582. }
  26583. },
  26584. back: {
  26585. height: math.unit(4 + 9 / 12, "feet"),
  26586. weight: math.unit(130, "lb"),
  26587. name: "Back",
  26588. image: {
  26589. source: "./media/characters/anchovie/back.svg",
  26590. extra: 385 / 352,
  26591. bottom: 16.6 / 402
  26592. }
  26593. },
  26594. frontDressed: {
  26595. height: math.unit(4 + 9 / 12, "feet"),
  26596. weight: math.unit(130, "lb"),
  26597. name: "Front (Dressed)",
  26598. image: {
  26599. source: "./media/characters/anchovie/front-dressed.svg",
  26600. extra: 382 / 350,
  26601. bottom: 25 / 409
  26602. }
  26603. },
  26604. backDressed: {
  26605. height: math.unit(4 + 9 / 12, "feet"),
  26606. weight: math.unit(130, "lb"),
  26607. name: "Back (Dressed)",
  26608. image: {
  26609. source: "./media/characters/anchovie/back-dressed.svg",
  26610. extra: 385 / 352,
  26611. bottom: 16.6 / 402
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Micro",
  26618. height: math.unit(6.4, "inches")
  26619. },
  26620. {
  26621. name: "Normal",
  26622. height: math.unit(4 + 9 / 12, "feet"),
  26623. default: true
  26624. },
  26625. ]
  26626. ))
  26627. characterMakers.push(() => makeCharacter(
  26628. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26629. {
  26630. front: {
  26631. height: math.unit(2, "meters"),
  26632. weight: math.unit(180, "lb"),
  26633. name: "Front",
  26634. image: {
  26635. source: "./media/characters/acidrenamon/front.svg",
  26636. extra: 987 / 890,
  26637. bottom: 22.8 / 1009
  26638. }
  26639. },
  26640. back: {
  26641. height: math.unit(2, "meters"),
  26642. weight: math.unit(180, "lb"),
  26643. name: "Back",
  26644. image: {
  26645. source: "./media/characters/acidrenamon/back.svg",
  26646. extra: 983 / 891,
  26647. bottom: 8.4 / 992
  26648. }
  26649. },
  26650. head: {
  26651. height: math.unit(1.92, "feet"),
  26652. name: "Head",
  26653. image: {
  26654. source: "./media/characters/acidrenamon/head.svg"
  26655. }
  26656. },
  26657. rump: {
  26658. height: math.unit(1.72, "feet"),
  26659. name: "Rump",
  26660. image: {
  26661. source: "./media/characters/acidrenamon/rump.svg"
  26662. }
  26663. },
  26664. tail: {
  26665. height: math.unit(4.2, "feet"),
  26666. name: "Tail",
  26667. image: {
  26668. source: "./media/characters/acidrenamon/tail.svg"
  26669. }
  26670. },
  26671. },
  26672. [
  26673. {
  26674. name: "Normal",
  26675. height: math.unit(2, "meters"),
  26676. default: true
  26677. },
  26678. {
  26679. name: "Minimacro",
  26680. height: math.unit(7, "meters")
  26681. },
  26682. {
  26683. name: "Macro",
  26684. height: math.unit(200, "meters")
  26685. },
  26686. {
  26687. name: "Gigamacro",
  26688. height: math.unit(0.2, "earths")
  26689. },
  26690. ]
  26691. ))
  26692. characterMakers.push(() => makeCharacter(
  26693. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26694. {
  26695. front: {
  26696. height: math.unit(6, "feet"),
  26697. weight: math.unit(150, "lb"),
  26698. name: "Front",
  26699. image: {
  26700. source: "./media/characters/kenzie-lee/front.svg",
  26701. extra: 1525 / 1465,
  26702. bottom: 45 / 1570
  26703. }
  26704. },
  26705. side: {
  26706. height: math.unit(6, "feet"),
  26707. weight: math.unit(150, "lb"),
  26708. name: "Side",
  26709. image: {
  26710. source: "./media/characters/kenzie-lee/side.svg",
  26711. extra: 5505 / 5383,
  26712. bottom: 60 / 5573
  26713. }
  26714. },
  26715. },
  26716. [
  26717. {
  26718. name: "Normal",
  26719. height: math.unit(152, "feet"),
  26720. default: true
  26721. },
  26722. {
  26723. name: "Megamacro",
  26724. height: math.unit(7, "miles")
  26725. },
  26726. {
  26727. name: "Gigamacro",
  26728. height: math.unit(8000, "miles")
  26729. },
  26730. ]
  26731. ))
  26732. characterMakers.push(() => makeCharacter(
  26733. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26734. {
  26735. side: {
  26736. height: math.unit(6, "feet"),
  26737. weight: math.unit(150, "lb"),
  26738. name: "Side",
  26739. image: {
  26740. source: "./media/characters/withers/side.svg",
  26741. extra: 1830 / 1728,
  26742. bottom: 96 / 1927
  26743. }
  26744. },
  26745. front: {
  26746. height: math.unit(6, "feet"),
  26747. weight: math.unit(150, "lb"),
  26748. name: "Front",
  26749. image: {
  26750. source: "./media/characters/withers/front.svg",
  26751. extra: 1514 / 1438,
  26752. bottom: 118 / 1632
  26753. }
  26754. },
  26755. },
  26756. [
  26757. {
  26758. name: "Macro",
  26759. height: math.unit(168, "feet"),
  26760. default: true
  26761. },
  26762. {
  26763. name: "Megamacro",
  26764. height: math.unit(15, "miles")
  26765. }
  26766. ]
  26767. ))
  26768. characterMakers.push(() => makeCharacter(
  26769. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26770. {
  26771. front: {
  26772. height: math.unit(6 + 7 / 12, "feet"),
  26773. weight: math.unit(250, "lb"),
  26774. name: "Front",
  26775. image: {
  26776. source: "./media/characters/nemoskii/front.svg",
  26777. extra: 2270 / 1734,
  26778. bottom: 86 / 2354
  26779. }
  26780. },
  26781. back: {
  26782. height: math.unit(6 + 7 / 12, "feet"),
  26783. weight: math.unit(250, "lb"),
  26784. name: "Back",
  26785. image: {
  26786. source: "./media/characters/nemoskii/back.svg",
  26787. extra: 1845 / 1788,
  26788. bottom: 10.5 / 1852
  26789. }
  26790. },
  26791. head: {
  26792. height: math.unit(1.31, "feet"),
  26793. name: "Head",
  26794. image: {
  26795. source: "./media/characters/nemoskii/head.svg"
  26796. }
  26797. },
  26798. },
  26799. [
  26800. {
  26801. name: "Normal",
  26802. height: math.unit(6 + 7 / 12, "feet"),
  26803. default: true
  26804. },
  26805. ]
  26806. ))
  26807. characterMakers.push(() => makeCharacter(
  26808. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26809. {
  26810. front: {
  26811. height: math.unit(1, "mile"),
  26812. weight: math.unit(265261.9, "lb"),
  26813. name: "Front",
  26814. image: {
  26815. source: "./media/characters/shui/front.svg",
  26816. extra: 1633 / 1564,
  26817. bottom: 91.5 / 1726
  26818. }
  26819. },
  26820. },
  26821. [
  26822. {
  26823. name: "Macro",
  26824. height: math.unit(1, "mile"),
  26825. default: true
  26826. },
  26827. ]
  26828. ))
  26829. characterMakers.push(() => makeCharacter(
  26830. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26831. {
  26832. front: {
  26833. height: math.unit(12 + 6 / 12, "feet"),
  26834. weight: math.unit(1342, "lb"),
  26835. name: "Front",
  26836. image: {
  26837. source: "./media/characters/arokh-takakura/front.svg",
  26838. extra: 1089 / 1043,
  26839. bottom: 77.4 / 1176.7
  26840. }
  26841. },
  26842. back: {
  26843. height: math.unit(12 + 6 / 12, "feet"),
  26844. weight: math.unit(1342, "lb"),
  26845. name: "Back",
  26846. image: {
  26847. source: "./media/characters/arokh-takakura/back.svg",
  26848. extra: 1046 / 1019,
  26849. bottom: 102 / 1150
  26850. }
  26851. },
  26852. },
  26853. [
  26854. {
  26855. name: "Big",
  26856. height: math.unit(12 + 6 / 12, "feet"),
  26857. default: true
  26858. },
  26859. ]
  26860. ))
  26861. characterMakers.push(() => makeCharacter(
  26862. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26863. {
  26864. front: {
  26865. height: math.unit(5 + 6 / 12, "feet"),
  26866. weight: math.unit(150, "lb"),
  26867. name: "Front",
  26868. image: {
  26869. source: "./media/characters/theo/front.svg",
  26870. extra: 1184 / 1131,
  26871. bottom: 7.4 / 1191
  26872. }
  26873. },
  26874. },
  26875. [
  26876. {
  26877. name: "Micro",
  26878. height: math.unit(5, "inches")
  26879. },
  26880. {
  26881. name: "Normal",
  26882. height: math.unit(5 + 6 / 12, "feet"),
  26883. default: true
  26884. },
  26885. ]
  26886. ))
  26887. characterMakers.push(() => makeCharacter(
  26888. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26889. {
  26890. front: {
  26891. height: math.unit(5 + 9 / 12, "feet"),
  26892. weight: math.unit(130, "lb"),
  26893. name: "Front",
  26894. image: {
  26895. source: "./media/characters/cecelia-swift/front.svg",
  26896. extra: 502 / 484,
  26897. bottom: 23 / 523
  26898. }
  26899. },
  26900. back: {
  26901. height: math.unit(5 + 9 / 12, "feet"),
  26902. weight: math.unit(130, "lb"),
  26903. name: "Back",
  26904. image: {
  26905. source: "./media/characters/cecelia-swift/back.svg",
  26906. extra: 499 / 485,
  26907. bottom: 12 / 511
  26908. }
  26909. },
  26910. head: {
  26911. height: math.unit(0.90, "feet"),
  26912. name: "Head",
  26913. image: {
  26914. source: "./media/characters/cecelia-swift/head.svg"
  26915. }
  26916. },
  26917. rump: {
  26918. height: math.unit(1.75, "feet"),
  26919. name: "Rump",
  26920. image: {
  26921. source: "./media/characters/cecelia-swift/rump.svg"
  26922. }
  26923. },
  26924. },
  26925. [
  26926. {
  26927. name: "Normal",
  26928. height: math.unit(5 + 9 / 12, "feet"),
  26929. default: true
  26930. },
  26931. {
  26932. name: "Big",
  26933. height: math.unit(50, "feet")
  26934. },
  26935. {
  26936. name: "Macro",
  26937. height: math.unit(100, "feet")
  26938. },
  26939. {
  26940. name: "Macro+",
  26941. height: math.unit(500, "feet")
  26942. },
  26943. {
  26944. name: "Macro++",
  26945. height: math.unit(1000, "feet")
  26946. },
  26947. ]
  26948. ))
  26949. characterMakers.push(() => makeCharacter(
  26950. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26951. {
  26952. front: {
  26953. height: math.unit(6, "feet"),
  26954. weight: math.unit(150, "lb"),
  26955. name: "Front",
  26956. image: {
  26957. source: "./media/characters/kaunan/front.svg",
  26958. extra: 2890 / 2523,
  26959. bottom: 49 / 2939
  26960. }
  26961. },
  26962. },
  26963. [
  26964. {
  26965. name: "Macro",
  26966. height: math.unit(150, "feet"),
  26967. default: true
  26968. },
  26969. ]
  26970. ))
  26971. characterMakers.push(() => makeCharacter(
  26972. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26973. {
  26974. front: {
  26975. height: math.unit(175, "cm"),
  26976. weight: math.unit(60, "kg"),
  26977. name: "Front",
  26978. image: {
  26979. source: "./media/characters/fei/front.svg",
  26980. extra: 2581 / 2400,
  26981. bottom: 82.2 / 2663
  26982. }
  26983. },
  26984. },
  26985. [
  26986. {
  26987. name: "Mortal",
  26988. height: math.unit(175, "cm")
  26989. },
  26990. {
  26991. name: "Normal",
  26992. height: math.unit(3500, "m"),
  26993. default: true
  26994. },
  26995. {
  26996. name: "Stroll",
  26997. height: math.unit(17.5, "km")
  26998. },
  26999. {
  27000. name: "Showoff",
  27001. height: math.unit(175, "km")
  27002. },
  27003. ]
  27004. ))
  27005. characterMakers.push(() => makeCharacter(
  27006. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27007. {
  27008. front: {
  27009. height: math.unit(7, "feet"),
  27010. weight: math.unit(1000, "kg"),
  27011. name: "Front",
  27012. image: {
  27013. source: "./media/characters/edrax/front.svg",
  27014. extra: 2838 / 2550,
  27015. bottom: 130 / 2968
  27016. }
  27017. },
  27018. },
  27019. [
  27020. {
  27021. name: "Small",
  27022. height: math.unit(7, "feet")
  27023. },
  27024. {
  27025. name: "Normal",
  27026. height: math.unit(1500, "meters")
  27027. },
  27028. {
  27029. name: "Mega",
  27030. height: math.unit(12000000, "km"),
  27031. default: true
  27032. },
  27033. {
  27034. name: "Megamacro",
  27035. height: math.unit(10600000, "lightyears")
  27036. },
  27037. {
  27038. name: "Hypermacro",
  27039. height: math.unit(256, "yottameters")
  27040. },
  27041. ]
  27042. ))
  27043. characterMakers.push(() => makeCharacter(
  27044. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27045. {
  27046. front: {
  27047. height: math.unit(10, "feet"),
  27048. weight: math.unit(750, "lb"),
  27049. name: "Front",
  27050. image: {
  27051. source: "./media/characters/clove/front.svg",
  27052. extra: 2031 / 1860,
  27053. bottom: 47.8 / 2080
  27054. }
  27055. },
  27056. back: {
  27057. height: math.unit(10, "feet"),
  27058. weight: math.unit(750, "lb"),
  27059. name: "Back",
  27060. image: {
  27061. source: "./media/characters/clove/back.svg",
  27062. extra: 2025 / 1859,
  27063. bottom: 46 / 2071
  27064. }
  27065. },
  27066. },
  27067. [
  27068. {
  27069. name: "Normal",
  27070. height: math.unit(10, "feet")
  27071. },
  27072. ]
  27073. ))
  27074. characterMakers.push(() => makeCharacter(
  27075. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27076. {
  27077. front: {
  27078. height: math.unit(4, "feet"),
  27079. weight: math.unit(50, "lb"),
  27080. name: "Front",
  27081. image: {
  27082. source: "./media/characters/alex-rabbit/front.svg",
  27083. extra: 507 / 458,
  27084. bottom: 18.5 / 527
  27085. }
  27086. },
  27087. back: {
  27088. height: math.unit(4, "feet"),
  27089. weight: math.unit(50, "lb"),
  27090. name: "Back",
  27091. image: {
  27092. source: "./media/characters/alex-rabbit/back.svg",
  27093. extra: 502 / 460,
  27094. bottom: 18.9 / 521
  27095. }
  27096. },
  27097. },
  27098. [
  27099. {
  27100. name: "Normal",
  27101. height: math.unit(4, "feet"),
  27102. default: true
  27103. },
  27104. ]
  27105. ))
  27106. characterMakers.push(() => makeCharacter(
  27107. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27108. {
  27109. front: {
  27110. height: math.unit(1 + 3 / 12, "feet"),
  27111. weight: math.unit(80, "lb"),
  27112. name: "Front",
  27113. image: {
  27114. source: "./media/characters/zander-rose/front.svg",
  27115. extra: 916 / 797,
  27116. bottom: 17 / 933
  27117. }
  27118. },
  27119. back: {
  27120. height: math.unit(1 + 3 / 12, "feet"),
  27121. weight: math.unit(80, "lb"),
  27122. name: "Back",
  27123. image: {
  27124. source: "./media/characters/zander-rose/back.svg",
  27125. extra: 903 / 779,
  27126. bottom: 31 / 934
  27127. }
  27128. },
  27129. },
  27130. [
  27131. {
  27132. name: "Normal",
  27133. height: math.unit(1 + 3 / 12, "feet"),
  27134. default: true
  27135. },
  27136. ]
  27137. ))
  27138. characterMakers.push(() => makeCharacter(
  27139. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27140. {
  27141. anthro: {
  27142. height: math.unit(6, "feet"),
  27143. weight: math.unit(150, "lb"),
  27144. name: "Anthro",
  27145. image: {
  27146. source: "./media/characters/razz/anthro.svg",
  27147. extra: 1437 / 1343,
  27148. bottom: 48 / 1485
  27149. }
  27150. },
  27151. feral: {
  27152. height: math.unit(6, "feet"),
  27153. weight: math.unit(150, "lb"),
  27154. name: "Feral",
  27155. image: {
  27156. source: "./media/characters/razz/feral.svg",
  27157. extra: 2569 / 1385,
  27158. bottom: 95 / 2664
  27159. }
  27160. },
  27161. },
  27162. [
  27163. {
  27164. name: "Normal",
  27165. height: math.unit(6, "feet"),
  27166. default: true
  27167. },
  27168. ]
  27169. ))
  27170. characterMakers.push(() => makeCharacter(
  27171. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27172. {
  27173. front: {
  27174. height: math.unit(9 + 4 / 12, "feet"),
  27175. weight: math.unit(500, "lb"),
  27176. name: "Front",
  27177. image: {
  27178. source: "./media/characters/morrigan/front.svg",
  27179. extra: 2707 / 2579,
  27180. bottom: 156 / 2863
  27181. }
  27182. },
  27183. },
  27184. [
  27185. {
  27186. name: "Normal",
  27187. height: math.unit(9 + 4 / 12, "feet"),
  27188. default: true
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27194. {
  27195. front: {
  27196. height: math.unit(5, "stories"),
  27197. weight: math.unit(4000, "lb"),
  27198. name: "Front",
  27199. image: {
  27200. source: "./media/characters/jenene/front.svg",
  27201. extra: 1780 / 1710,
  27202. bottom: 57 / 1837
  27203. }
  27204. },
  27205. },
  27206. [
  27207. {
  27208. name: "Normal",
  27209. height: math.unit(5, "stories"),
  27210. default: true
  27211. },
  27212. ]
  27213. ))
  27214. characterMakers.push(() => makeCharacter(
  27215. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27216. {
  27217. front: {
  27218. height: math.unit(6, "feet"),
  27219. weight: math.unit(150, "lb"),
  27220. name: "Front",
  27221. image: {
  27222. source: "./media/characters/vix-archaser/front.svg",
  27223. extra: 2767 / 2562,
  27224. bottom: 36 / 2803
  27225. }
  27226. },
  27227. },
  27228. [
  27229. {
  27230. name: "Micro",
  27231. height: math.unit(1, "foot")
  27232. },
  27233. {
  27234. name: "Normal",
  27235. height: math.unit(6 + 5 / 12, "feet")
  27236. },
  27237. {
  27238. name: "Minimacro",
  27239. height: math.unit(500, "feet")
  27240. },
  27241. {
  27242. name: "Macro",
  27243. height: math.unit(4, "miles")
  27244. },
  27245. {
  27246. name: "Megamacro",
  27247. height: math.unit(250, "miles"),
  27248. default: true
  27249. },
  27250. {
  27251. name: "Gigamacro",
  27252. height: math.unit(1, "universe")
  27253. },
  27254. {
  27255. name: "Endgame",
  27256. height: math.unit(100, "multiverses")
  27257. }
  27258. ]
  27259. ))
  27260. characterMakers.push(() => makeCharacter(
  27261. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27262. {
  27263. taurSfw: {
  27264. height: math.unit(10, "meters"),
  27265. weight: math.unit(17500, "kg"),
  27266. name: "Taur",
  27267. image: {
  27268. source: "./media/characters/faey/taur-sfw.svg",
  27269. extra: 1200 / 968,
  27270. bottom: 41 / 1241
  27271. }
  27272. },
  27273. chestmaw: {
  27274. height: math.unit(2.01, "meters"),
  27275. name: "Chestmaw",
  27276. image: {
  27277. source: "./media/characters/faey/chestmaw.svg"
  27278. }
  27279. },
  27280. foot: {
  27281. height: math.unit(2.43, "meters"),
  27282. name: "Foot",
  27283. image: {
  27284. source: "./media/characters/faey/foot.svg"
  27285. }
  27286. },
  27287. jaws: {
  27288. height: math.unit(1.66, "meters"),
  27289. name: "Jaws",
  27290. image: {
  27291. source: "./media/characters/faey/jaws.svg"
  27292. }
  27293. },
  27294. tongues: {
  27295. height: math.unit(2.01, "meters"),
  27296. name: "Tongues",
  27297. image: {
  27298. source: "./media/characters/faey/tongues.svg"
  27299. }
  27300. },
  27301. },
  27302. [
  27303. {
  27304. name: "Small",
  27305. height: math.unit(10, "meters"),
  27306. default: true
  27307. },
  27308. {
  27309. name: "Big",
  27310. height: math.unit(500000, "km")
  27311. },
  27312. ]
  27313. ))
  27314. characterMakers.push(() => makeCharacter(
  27315. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27316. {
  27317. front: {
  27318. height: math.unit(7, "feet"),
  27319. weight: math.unit(275, "lb"),
  27320. name: "Front",
  27321. image: {
  27322. source: "./media/characters/roku/front.svg",
  27323. extra: 903 / 878,
  27324. bottom: 37 / 940
  27325. }
  27326. },
  27327. },
  27328. [
  27329. {
  27330. name: "Normal",
  27331. height: math.unit(7, "feet"),
  27332. default: true
  27333. },
  27334. {
  27335. name: "Macro",
  27336. height: math.unit(500, "feet")
  27337. },
  27338. {
  27339. name: "Megamacro",
  27340. height: math.unit(200, "miles")
  27341. },
  27342. ]
  27343. ))
  27344. characterMakers.push(() => makeCharacter(
  27345. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27346. {
  27347. front: {
  27348. height: math.unit(6 + 2 / 12, "feet"),
  27349. weight: math.unit(150, "lb"),
  27350. name: "Front",
  27351. image: {
  27352. source: "./media/characters/lira/front.svg",
  27353. extra: 1727 / 1605,
  27354. bottom: 26 / 1753
  27355. }
  27356. },
  27357. back: {
  27358. height: math.unit(6 + 2 / 12, "feet"),
  27359. weight: math.unit(150, "lb"),
  27360. name: "Back",
  27361. image: {
  27362. source: "./media/characters/lira/back.svg",
  27363. extra: 1713 / 159,
  27364. bottom: 20 / 1733
  27365. }
  27366. },
  27367. hand: {
  27368. height: math.unit(0.75, "feet"),
  27369. name: "Hand",
  27370. image: {
  27371. source: "./media/characters/lira/hand.svg"
  27372. }
  27373. },
  27374. maw: {
  27375. height: math.unit(0.65, "feet"),
  27376. name: "Maw",
  27377. image: {
  27378. source: "./media/characters/lira/maw.svg"
  27379. }
  27380. },
  27381. pawDigi: {
  27382. height: math.unit(1.6, "feet"),
  27383. name: "Paw Digi",
  27384. image: {
  27385. source: "./media/characters/lira/paw-digi.svg"
  27386. }
  27387. },
  27388. pawPlanti: {
  27389. height: math.unit(1.4, "feet"),
  27390. name: "Paw Planti",
  27391. image: {
  27392. source: "./media/characters/lira/paw-planti.svg"
  27393. }
  27394. },
  27395. },
  27396. [
  27397. {
  27398. name: "Normal",
  27399. height: math.unit(6 + 2 / 12, "feet"),
  27400. default: true
  27401. },
  27402. {
  27403. name: "Macro",
  27404. height: math.unit(100, "feet")
  27405. },
  27406. {
  27407. name: "Macro²",
  27408. height: math.unit(1600, "feet")
  27409. },
  27410. {
  27411. name: "Planetary",
  27412. height: math.unit(20, "earths")
  27413. },
  27414. ]
  27415. ))
  27416. characterMakers.push(() => makeCharacter(
  27417. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27418. {
  27419. front: {
  27420. height: math.unit(6, "feet"),
  27421. weight: math.unit(150, "lb"),
  27422. name: "Front",
  27423. image: {
  27424. source: "./media/characters/hadjet/front.svg",
  27425. extra: 1480 / 1346,
  27426. bottom: 26 / 1506
  27427. }
  27428. },
  27429. frontNsfw: {
  27430. height: math.unit(6, "feet"),
  27431. weight: math.unit(150, "lb"),
  27432. name: "Front (NSFW)",
  27433. image: {
  27434. source: "./media/characters/hadjet/front-nsfw.svg",
  27435. extra: 1440 / 1358,
  27436. bottom: 52 / 1492
  27437. }
  27438. },
  27439. },
  27440. [
  27441. {
  27442. name: "Macro",
  27443. height: math.unit(10, "stories"),
  27444. default: true
  27445. },
  27446. {
  27447. name: "Megamacro",
  27448. height: math.unit(1.5, "miles")
  27449. },
  27450. {
  27451. name: "Megamacro+",
  27452. height: math.unit(5, "miles")
  27453. },
  27454. ]
  27455. ))
  27456. characterMakers.push(() => makeCharacter(
  27457. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27458. {
  27459. side: {
  27460. height: math.unit(106, "feet"),
  27461. weight: math.unit(500, "tonnes"),
  27462. name: "Side",
  27463. image: {
  27464. source: "./media/characters/kodran/side.svg",
  27465. extra: 553 / 480,
  27466. bottom: 33 / 586
  27467. }
  27468. },
  27469. front: {
  27470. height: math.unit(132, "feet"),
  27471. weight: math.unit(500, "tonnes"),
  27472. name: "Front",
  27473. image: {
  27474. source: "./media/characters/kodran/front.svg",
  27475. extra: 667 / 643,
  27476. bottom: 42 / 709
  27477. }
  27478. },
  27479. flying: {
  27480. height: math.unit(350, "feet"),
  27481. weight: math.unit(500, "tonnes"),
  27482. name: "Flying",
  27483. image: {
  27484. source: "./media/characters/kodran/flying.svg"
  27485. }
  27486. },
  27487. foot: {
  27488. height: math.unit(33, "feet"),
  27489. name: "Foot",
  27490. image: {
  27491. source: "./media/characters/kodran/foot.svg"
  27492. }
  27493. },
  27494. footFront: {
  27495. height: math.unit(19, "feet"),
  27496. name: "Foot (Front)",
  27497. image: {
  27498. source: "./media/characters/kodran/foot-front.svg",
  27499. extra: 261 / 261,
  27500. bottom: 91 / 352
  27501. }
  27502. },
  27503. headFront: {
  27504. height: math.unit(53, "feet"),
  27505. name: "Head (Front)",
  27506. image: {
  27507. source: "./media/characters/kodran/head-front.svg"
  27508. }
  27509. },
  27510. headSide: {
  27511. height: math.unit(65, "feet"),
  27512. name: "Head (Side)",
  27513. image: {
  27514. source: "./media/characters/kodran/head-side.svg"
  27515. }
  27516. },
  27517. throat: {
  27518. height: math.unit(79, "feet"),
  27519. name: "Throat",
  27520. image: {
  27521. source: "./media/characters/kodran/throat.svg"
  27522. }
  27523. },
  27524. },
  27525. [
  27526. {
  27527. name: "Large",
  27528. height: math.unit(106, "feet"),
  27529. default: true
  27530. },
  27531. ]
  27532. ))
  27533. characterMakers.push(() => makeCharacter(
  27534. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27535. {
  27536. side: {
  27537. height: math.unit(11, "feet"),
  27538. weight: math.unit(150, "lb"),
  27539. name: "Side",
  27540. image: {
  27541. source: "./media/characters/pyxaron/side.svg",
  27542. extra: 305 / 195,
  27543. bottom: 17 / 322
  27544. }
  27545. },
  27546. },
  27547. [
  27548. {
  27549. name: "Normal",
  27550. height: math.unit(11, "feet")
  27551. },
  27552. ]
  27553. ))
  27554. characterMakers.push(() => makeCharacter(
  27555. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27556. {
  27557. front: {
  27558. height: math.unit(6, "feet"),
  27559. weight: math.unit(150, "lb"),
  27560. name: "Front",
  27561. image: {
  27562. source: "./media/characters/meep/front.svg",
  27563. extra: 88 / 80,
  27564. bottom: 6 / 94
  27565. }
  27566. },
  27567. },
  27568. [
  27569. {
  27570. name: "Fun Sized",
  27571. height: math.unit(2, "inches"),
  27572. default: true
  27573. },
  27574. {
  27575. name: "Friend Sized",
  27576. height: math.unit(8, "inches")
  27577. },
  27578. ]
  27579. ))
  27580. characterMakers.push(() => makeCharacter(
  27581. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27582. {
  27583. front: {
  27584. height: math.unit(15, "feet"),
  27585. weight: math.unit(2500, "lb"),
  27586. name: "Front",
  27587. image: {
  27588. source: "./media/characters/holly-rabbit/front.svg",
  27589. extra: 1433 / 1233,
  27590. bottom: 125 / 1558
  27591. }
  27592. },
  27593. dick: {
  27594. height: math.unit(4.6, "feet"),
  27595. name: "Dick",
  27596. image: {
  27597. source: "./media/characters/holly-rabbit/dick.svg"
  27598. }
  27599. },
  27600. },
  27601. [
  27602. {
  27603. name: "Normal",
  27604. height: math.unit(15, "feet"),
  27605. default: true
  27606. },
  27607. {
  27608. name: "Macro",
  27609. height: math.unit(250, "feet")
  27610. },
  27611. {
  27612. name: "Macro+",
  27613. height: math.unit(2500, "feet")
  27614. },
  27615. ]
  27616. ))
  27617. characterMakers.push(() => makeCharacter(
  27618. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27619. {
  27620. front: {
  27621. height: math.unit(3.02, "meters"),
  27622. weight: math.unit(500, "kg"),
  27623. name: "Front",
  27624. image: {
  27625. source: "./media/characters/drena/front.svg",
  27626. extra: 282 / 243,
  27627. bottom: 8 / 290
  27628. }
  27629. },
  27630. side: {
  27631. height: math.unit(3.02, "meters"),
  27632. weight: math.unit(500, "kg"),
  27633. name: "Side",
  27634. image: {
  27635. source: "./media/characters/drena/side.svg",
  27636. extra: 280 / 245,
  27637. bottom: 10 / 290
  27638. }
  27639. },
  27640. back: {
  27641. height: math.unit(3.02, "meters"),
  27642. weight: math.unit(500, "kg"),
  27643. name: "Back",
  27644. image: {
  27645. source: "./media/characters/drena/back.svg",
  27646. extra: 278 / 243,
  27647. bottom: 2 / 280
  27648. }
  27649. },
  27650. foot: {
  27651. height: math.unit(0.75, "meters"),
  27652. name: "Foot",
  27653. image: {
  27654. source: "./media/characters/drena/foot.svg"
  27655. }
  27656. },
  27657. maw: {
  27658. height: math.unit(0.82, "meters"),
  27659. name: "Maw",
  27660. image: {
  27661. source: "./media/characters/drena/maw.svg"
  27662. }
  27663. },
  27664. rump: {
  27665. height: math.unit(0.93, "meters"),
  27666. name: "Rump",
  27667. image: {
  27668. source: "./media/characters/drena/rump.svg"
  27669. }
  27670. },
  27671. },
  27672. [
  27673. {
  27674. name: "Normal",
  27675. height: math.unit(3.02, "meters"),
  27676. default: true
  27677. },
  27678. ]
  27679. ))
  27680. characterMakers.push(() => makeCharacter(
  27681. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27682. {
  27683. front: {
  27684. height: math.unit(6 + 4 / 12, "feet"),
  27685. weight: math.unit(250, "lb"),
  27686. name: "Front",
  27687. image: {
  27688. source: "./media/characters/remmyzilla/front.svg",
  27689. extra: 4033 / 3588,
  27690. bottom: 123 / 4156
  27691. }
  27692. },
  27693. back: {
  27694. height: math.unit(6 + 4 / 12, "feet"),
  27695. weight: math.unit(250, "lb"),
  27696. name: "Back",
  27697. image: {
  27698. source: "./media/characters/remmyzilla/back.svg",
  27699. extra: 2687 / 2555,
  27700. bottom: 48 / 2735
  27701. }
  27702. },
  27703. frontFancy: {
  27704. height: math.unit(6 + 4 / 12, "feet"),
  27705. weight: math.unit(250, "lb"),
  27706. name: "Front (Fancy)",
  27707. image: {
  27708. source: "./media/characters/remmyzilla/front-fancy.svg",
  27709. extra: 4119 / 3419,
  27710. bottom: 237 / 4356
  27711. }
  27712. },
  27713. paw: {
  27714. height: math.unit(1.73, "feet"),
  27715. name: "Paw",
  27716. image: {
  27717. source: "./media/characters/remmyzilla/paw.svg"
  27718. }
  27719. },
  27720. maw: {
  27721. height: math.unit(1.73, "feet"),
  27722. name: "Maw",
  27723. image: {
  27724. source: "./media/characters/remmyzilla/maw.svg"
  27725. }
  27726. },
  27727. },
  27728. [
  27729. {
  27730. name: "Normal",
  27731. height: math.unit(6 + 4 / 12, "feet")
  27732. },
  27733. {
  27734. name: "Minimacro",
  27735. height: math.unit(12 + 8 / 12, "feet")
  27736. },
  27737. {
  27738. name: "Normal",
  27739. height: math.unit(640, "feet"),
  27740. default: true
  27741. },
  27742. {
  27743. name: "Megamacro",
  27744. height: math.unit(6400, "feet")
  27745. },
  27746. {
  27747. name: "Gigamacro",
  27748. height: math.unit(64000, "miles")
  27749. },
  27750. ]
  27751. ))
  27752. characterMakers.push(() => makeCharacter(
  27753. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27754. {
  27755. front: {
  27756. height: math.unit(2.5, "meters"),
  27757. weight: math.unit(300, "lb"),
  27758. name: "Front",
  27759. image: {
  27760. source: "./media/characters/lawrence/front.svg",
  27761. extra: 357 / 335,
  27762. bottom: 30 / 387
  27763. }
  27764. },
  27765. back: {
  27766. height: math.unit(2.5, "meters"),
  27767. weight: math.unit(300, "lb"),
  27768. name: "Back",
  27769. image: {
  27770. source: "./media/characters/lawrence/back.svg",
  27771. extra: 357 / 338,
  27772. bottom: 16 / 373
  27773. }
  27774. },
  27775. head: {
  27776. height: math.unit(0.9, "meter"),
  27777. name: "Head",
  27778. image: {
  27779. source: "./media/characters/lawrence/head.svg"
  27780. }
  27781. },
  27782. maw: {
  27783. height: math.unit(0.7, "meter"),
  27784. name: "Maw",
  27785. image: {
  27786. source: "./media/characters/lawrence/maw.svg"
  27787. }
  27788. },
  27789. footBottom: {
  27790. height: math.unit(0.5, "meter"),
  27791. name: "Foot (Bottom)",
  27792. image: {
  27793. source: "./media/characters/lawrence/foot-bottom.svg"
  27794. }
  27795. },
  27796. footTop: {
  27797. height: math.unit(0.5, "meter"),
  27798. name: "Foot (Top)",
  27799. image: {
  27800. source: "./media/characters/lawrence/foot-top.svg"
  27801. }
  27802. },
  27803. },
  27804. [
  27805. {
  27806. name: "Normal",
  27807. height: math.unit(2.5, "meters"),
  27808. default: true
  27809. },
  27810. {
  27811. name: "Macro",
  27812. height: math.unit(95, "meters")
  27813. },
  27814. {
  27815. name: "Megamacro",
  27816. height: math.unit(150, "km")
  27817. },
  27818. ]
  27819. ))
  27820. characterMakers.push(() => makeCharacter(
  27821. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27822. {
  27823. front: {
  27824. height: math.unit(4.2, "meters"),
  27825. name: "Front",
  27826. image: {
  27827. source: "./media/characters/sydney/front.svg",
  27828. extra: 1323 / 1277,
  27829. bottom: 111 / 1434
  27830. }
  27831. },
  27832. },
  27833. [
  27834. {
  27835. name: "Normal",
  27836. height: math.unit(4.2, "meters")
  27837. },
  27838. ]
  27839. ))
  27840. characterMakers.push(() => makeCharacter(
  27841. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27842. {
  27843. back: {
  27844. height: math.unit(201, "feet"),
  27845. name: "Back",
  27846. image: {
  27847. source: "./media/characters/jessica/back.svg",
  27848. extra: 273 / 259,
  27849. bottom: 7 / 280
  27850. }
  27851. },
  27852. },
  27853. [
  27854. {
  27855. name: "Normal",
  27856. height: math.unit(201, "feet"),
  27857. default: true
  27858. },
  27859. {
  27860. name: "Megamacro",
  27861. height: math.unit(8, "miles")
  27862. },
  27863. ]
  27864. ))
  27865. characterMakers.push(() => makeCharacter(
  27866. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27867. {
  27868. side: {
  27869. height: math.unit(320, "cm"),
  27870. name: "Side",
  27871. image: {
  27872. source: "./media/characters/victoria/side.svg",
  27873. extra: 778 / 346,
  27874. bottom: 56 / 834
  27875. }
  27876. },
  27877. maw: {
  27878. height: math.unit(5.9, "feet"),
  27879. name: "Maw",
  27880. image: {
  27881. source: "./media/characters/victoria/maw.svg"
  27882. }
  27883. },
  27884. },
  27885. [
  27886. {
  27887. name: "Normal",
  27888. height: math.unit(320, "cm"),
  27889. default: true
  27890. },
  27891. ]
  27892. ))
  27893. characterMakers.push(() => makeCharacter(
  27894. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27895. {
  27896. front: {
  27897. height: math.unit(5 + 6 / 12, "feet"),
  27898. name: "Front",
  27899. image: {
  27900. source: "./media/characters/cat/front.svg",
  27901. extra: 1374 / 1257,
  27902. bottom: 59 / 1433
  27903. }
  27904. },
  27905. back: {
  27906. height: math.unit(5 + 6 / 12, "feet"),
  27907. name: "Back",
  27908. image: {
  27909. source: "./media/characters/cat/back.svg",
  27910. extra: 1337 / 1226,
  27911. bottom: 34 / 1371
  27912. }
  27913. },
  27914. taur: {
  27915. height: math.unit(7, "feet"),
  27916. name: "Taur",
  27917. image: {
  27918. source: "./media/characters/cat/taur.svg",
  27919. extra: 1345 / 1231,
  27920. bottom: 66 / 1411
  27921. }
  27922. },
  27923. lucario: {
  27924. height: math.unit(4, "feet"),
  27925. name: "Lucario",
  27926. image: {
  27927. source: "./media/characters/cat/lucario.svg",
  27928. extra: 1470 / 1318,
  27929. bottom: 65 / 1535
  27930. }
  27931. },
  27932. megaLucario: {
  27933. height: math.unit(4, "feet"),
  27934. name: "Mega Lucario",
  27935. image: {
  27936. source: "./media/characters/cat/mega-lucario.svg",
  27937. extra: 1515 / 1319,
  27938. bottom: 63 / 1578
  27939. }
  27940. },
  27941. nickit: {
  27942. height: math.unit(2, "feet"),
  27943. name: "Nickit",
  27944. image: {
  27945. source: "./media/characters/cat/nickit.svg",
  27946. extra: 1980 / 1585,
  27947. bottom: 102 / 2082
  27948. }
  27949. },
  27950. lopunnyFront: {
  27951. height: math.unit(5, "feet"),
  27952. name: "Lopunny (Front)",
  27953. image: {
  27954. source: "./media/characters/cat/lopunny-front.svg",
  27955. extra: 1782 / 1469,
  27956. bottom: 38 / 1820
  27957. }
  27958. },
  27959. lopunnyBack: {
  27960. height: math.unit(5, "feet"),
  27961. name: "Lopunny (Back)",
  27962. image: {
  27963. source: "./media/characters/cat/lopunny-back.svg",
  27964. extra: 1660 / 1490,
  27965. bottom: 25 / 1685
  27966. }
  27967. },
  27968. },
  27969. [
  27970. {
  27971. name: "Really small",
  27972. height: math.unit(1, "nm")
  27973. },
  27974. {
  27975. name: "Micro",
  27976. height: math.unit(5, "inches")
  27977. },
  27978. {
  27979. name: "Normal",
  27980. height: math.unit(5 + 6 / 12, "feet"),
  27981. default: true
  27982. },
  27983. {
  27984. name: "Macro",
  27985. height: math.unit(50, "feet")
  27986. },
  27987. {
  27988. name: "Macro+",
  27989. height: math.unit(150, "feet")
  27990. },
  27991. {
  27992. name: "Megamacro",
  27993. height: math.unit(100, "miles")
  27994. },
  27995. ]
  27996. ))
  27997. characterMakers.push(() => makeCharacter(
  27998. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27999. {
  28000. front: {
  28001. height: math.unit(63.4, "meters"),
  28002. weight: math.unit(3.28349e+6, "kilograms"),
  28003. name: "Front",
  28004. image: {
  28005. source: "./media/characters/kirina-violet/front.svg",
  28006. extra: 2812 / 2725,
  28007. bottom: 0 / 2812
  28008. }
  28009. },
  28010. back: {
  28011. height: math.unit(63.4, "meters"),
  28012. weight: math.unit(3.28349e+6, "kilograms"),
  28013. name: "Back",
  28014. image: {
  28015. source: "./media/characters/kirina-violet/back.svg",
  28016. extra: 2812 / 2725,
  28017. bottom: 0 / 2812
  28018. }
  28019. },
  28020. mouth: {
  28021. height: math.unit(4.35, "meters"),
  28022. name: "Mouth",
  28023. image: {
  28024. source: "./media/characters/kirina-violet/mouth.svg"
  28025. }
  28026. },
  28027. paw: {
  28028. height: math.unit(5.6, "meters"),
  28029. name: "Paw",
  28030. image: {
  28031. source: "./media/characters/kirina-violet/paw.svg"
  28032. }
  28033. },
  28034. tail: {
  28035. height: math.unit(18, "meters"),
  28036. name: "Tail",
  28037. image: {
  28038. source: "./media/characters/kirina-violet/tail.svg"
  28039. }
  28040. },
  28041. },
  28042. [
  28043. {
  28044. name: "Macro",
  28045. height: math.unit(63.4, "meters"),
  28046. default: true
  28047. },
  28048. ]
  28049. ))
  28050. characterMakers.push(() => makeCharacter(
  28051. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28052. {
  28053. front: {
  28054. height: math.unit(60, "feet"),
  28055. name: "Front",
  28056. image: {
  28057. source: "./media/characters/cat-gigachu/front.svg",
  28058. extra: 1024 / 780,
  28059. bottom: 23 / 1047
  28060. }
  28061. },
  28062. back: {
  28063. height: math.unit(60, "feet"),
  28064. name: "Back",
  28065. image: {
  28066. source: "./media/characters/cat-gigachu/back.svg",
  28067. extra: 1024 / 780,
  28068. bottom: 23 / 1047
  28069. }
  28070. },
  28071. },
  28072. [
  28073. {
  28074. name: "Dynamax",
  28075. height: math.unit(60, "feet"),
  28076. default: true
  28077. },
  28078. ]
  28079. ))
  28080. characterMakers.push(() => makeCharacter(
  28081. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28082. {
  28083. front: {
  28084. height: math.unit(6, "feet"),
  28085. weight: math.unit(150, "lb"),
  28086. name: "Front",
  28087. image: {
  28088. source: "./media/characters/sfaiyan/front.svg",
  28089. extra: 999 / 978,
  28090. bottom: 5 / 1004
  28091. }
  28092. },
  28093. },
  28094. [
  28095. {
  28096. name: "Normal",
  28097. height: math.unit(1.82, "meters")
  28098. },
  28099. {
  28100. name: "Giant",
  28101. height: math.unit(2.27, "km"),
  28102. default: true
  28103. },
  28104. ]
  28105. ))
  28106. characterMakers.push(() => makeCharacter(
  28107. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28108. {
  28109. front: {
  28110. height: math.unit(179, "cm"),
  28111. weight: math.unit(100, "kg"),
  28112. name: "Front",
  28113. image: {
  28114. source: "./media/characters/raunehkeli/front.svg",
  28115. extra: 1934 / 1926,
  28116. bottom: 0 / 1934
  28117. }
  28118. },
  28119. },
  28120. [
  28121. {
  28122. name: "Normal",
  28123. height: math.unit(179, "cm")
  28124. },
  28125. {
  28126. name: "Maximum",
  28127. height: math.unit(575, "meters"),
  28128. default: true
  28129. },
  28130. ]
  28131. ))
  28132. characterMakers.push(() => makeCharacter(
  28133. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28134. {
  28135. front: {
  28136. height: math.unit(6, "feet"),
  28137. weight: math.unit(150, "lb"),
  28138. name: "Front",
  28139. image: {
  28140. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28141. extra: 2625 / 2518,
  28142. bottom: 60 / 2685
  28143. }
  28144. },
  28145. },
  28146. [
  28147. {
  28148. name: "Normal",
  28149. height: math.unit(6 + 2 / 12, "feet"),
  28150. default: true
  28151. },
  28152. {
  28153. name: "Macro",
  28154. height: math.unit(1180, "feet")
  28155. },
  28156. ]
  28157. ))
  28158. characterMakers.push(() => makeCharacter(
  28159. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28160. {
  28161. front: {
  28162. height: math.unit(5 + 6 / 12, "feet"),
  28163. weight: math.unit(108, "lb"),
  28164. name: "Front",
  28165. image: {
  28166. source: "./media/characters/lilith-zott/front.svg",
  28167. extra: 2510 / 2238,
  28168. bottom: 100 / 2610
  28169. }
  28170. },
  28171. frontDressed: {
  28172. height: math.unit(5 + 6 / 12, "feet"),
  28173. weight: math.unit(108, "lb"),
  28174. name: "Front (Dressed)",
  28175. image: {
  28176. source: "./media/characters/lilith-zott/front-dressed.svg",
  28177. extra: 2510 / 2238,
  28178. bottom: 100 / 2610
  28179. }
  28180. },
  28181. },
  28182. [
  28183. {
  28184. name: "Normal",
  28185. height: math.unit(5 + 6 / 12, "feet")
  28186. },
  28187. {
  28188. name: "Macro",
  28189. height: math.unit(200, "feet"),
  28190. default: true
  28191. },
  28192. {
  28193. name: "Macro+",
  28194. height: math.unit(1030, "feet")
  28195. },
  28196. ]
  28197. ))
  28198. characterMakers.push(() => makeCharacter(
  28199. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28200. {
  28201. front: {
  28202. height: math.unit(6, "feet"),
  28203. weight: math.unit(150, "lb"),
  28204. name: "Front",
  28205. image: {
  28206. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28207. extra: 2567 / 2435,
  28208. bottom: 39 / 2606
  28209. }
  28210. },
  28211. frontSuper: {
  28212. height: math.unit(6, "feet"),
  28213. name: "Front (Super)",
  28214. image: {
  28215. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28216. extra: 2567 / 2435,
  28217. bottom: 39 / 2606
  28218. }
  28219. },
  28220. },
  28221. [
  28222. {
  28223. name: "Normal",
  28224. height: math.unit(5 + 10 / 12, "feet")
  28225. },
  28226. {
  28227. name: "Macro",
  28228. height: math.unit(220, "feet"),
  28229. default: true
  28230. },
  28231. {
  28232. name: "Macro+",
  28233. height: math.unit(1100, "feet")
  28234. },
  28235. ]
  28236. ))
  28237. characterMakers.push(() => makeCharacter(
  28238. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28239. {
  28240. front: {
  28241. height: math.unit(100, "miles"),
  28242. name: "Front",
  28243. image: {
  28244. source: "./media/characters/sona/front.svg",
  28245. extra: 2433 / 2201,
  28246. bottom: 53 / 2486
  28247. }
  28248. },
  28249. foot: {
  28250. height: math.unit(16.1, "miles"),
  28251. name: "Foot",
  28252. image: {
  28253. source: "./media/characters/sona/foot.svg"
  28254. }
  28255. },
  28256. },
  28257. [
  28258. {
  28259. name: "Macro",
  28260. height: math.unit(100, "miles"),
  28261. default: true
  28262. },
  28263. ]
  28264. ))
  28265. characterMakers.push(() => makeCharacter(
  28266. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28267. {
  28268. front: {
  28269. height: math.unit(6, "feet"),
  28270. weight: math.unit(150, "lb"),
  28271. name: "Front",
  28272. image: {
  28273. source: "./media/characters/bailey/front.svg",
  28274. extra: 1778 / 1724,
  28275. bottom: 30 / 1808
  28276. }
  28277. },
  28278. },
  28279. [
  28280. {
  28281. name: "Micro",
  28282. height: math.unit(4, "inches")
  28283. },
  28284. {
  28285. name: "Normal",
  28286. height: math.unit(5 + 5 / 12, "feet"),
  28287. default: true
  28288. },
  28289. {
  28290. name: "Macro",
  28291. height: math.unit(250, "feet")
  28292. },
  28293. {
  28294. name: "Megamacro",
  28295. height: math.unit(100, "miles")
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28301. {
  28302. front: {
  28303. height: math.unit(5 + 2 / 12, "feet"),
  28304. weight: math.unit(120, "lb"),
  28305. name: "Front",
  28306. image: {
  28307. source: "./media/characters/snaps/front.svg",
  28308. extra: 2370 / 2177,
  28309. bottom: 48 / 2418
  28310. }
  28311. },
  28312. back: {
  28313. height: math.unit(5 + 2 / 12, "feet"),
  28314. weight: math.unit(120, "lb"),
  28315. name: "Back",
  28316. image: {
  28317. source: "./media/characters/snaps/back.svg",
  28318. extra: 2408 / 2258,
  28319. bottom: 15 / 2423
  28320. }
  28321. },
  28322. },
  28323. [
  28324. {
  28325. name: "Micro",
  28326. height: math.unit(9, "inches")
  28327. },
  28328. {
  28329. name: "Normal",
  28330. height: math.unit(5 + 2 / 12, "feet"),
  28331. default: true
  28332. },
  28333. {
  28334. name: "Mini Macro",
  28335. height: math.unit(10, "feet")
  28336. },
  28337. ]
  28338. ))
  28339. characterMakers.push(() => makeCharacter(
  28340. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28341. {
  28342. front: {
  28343. height: math.unit(1.8, "meters"),
  28344. weight: math.unit(85, "kg"),
  28345. name: "Front",
  28346. image: {
  28347. source: "./media/characters/azteck/front.svg",
  28348. extra: 2815 / 2625,
  28349. bottom: 89 / 2904
  28350. }
  28351. },
  28352. back: {
  28353. height: math.unit(1.8, "meters"),
  28354. weight: math.unit(85, "kg"),
  28355. name: "Back",
  28356. image: {
  28357. source: "./media/characters/azteck/back.svg",
  28358. extra: 2856 / 2648,
  28359. bottom: 85 / 2941
  28360. }
  28361. },
  28362. frontDressed: {
  28363. height: math.unit(1.8, "meters"),
  28364. weight: math.unit(85, "kg"),
  28365. name: "Front (Dressed)",
  28366. image: {
  28367. source: "./media/characters/azteck/front-dressed.svg",
  28368. extra: 2147 / 2003,
  28369. bottom: 68 / 2215
  28370. }
  28371. },
  28372. head: {
  28373. height: math.unit(0.47, "meters"),
  28374. weight: math.unit(85, "kg"),
  28375. name: "Head",
  28376. image: {
  28377. source: "./media/characters/azteck/head.svg"
  28378. }
  28379. },
  28380. },
  28381. [
  28382. {
  28383. name: "Bite sized",
  28384. height: math.unit(16, "cm")
  28385. },
  28386. {
  28387. name: "Normal",
  28388. height: math.unit(1.8, "meters"),
  28389. default: true
  28390. },
  28391. ]
  28392. ))
  28393. characterMakers.push(() => makeCharacter(
  28394. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28395. {
  28396. front: {
  28397. height: math.unit(6, "feet"),
  28398. weight: math.unit(150, "lb"),
  28399. name: "Front",
  28400. image: {
  28401. source: "./media/characters/pidge/front.svg",
  28402. extra: 620 / 588,
  28403. bottom: 9 / 629
  28404. }
  28405. },
  28406. back: {
  28407. height: math.unit(6, "feet"),
  28408. weight: math.unit(150, "lb"),
  28409. name: "Back",
  28410. image: {
  28411. source: "./media/characters/pidge/back.svg",
  28412. extra: 620 / 588,
  28413. bottom: 9 / 629
  28414. }
  28415. },
  28416. },
  28417. [
  28418. {
  28419. name: "Macro",
  28420. height: math.unit(1, "mile"),
  28421. default: true
  28422. },
  28423. ]
  28424. ))
  28425. characterMakers.push(() => makeCharacter(
  28426. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28427. {
  28428. front: {
  28429. height: math.unit(6, "feet"),
  28430. weight: math.unit(150, "lb"),
  28431. name: "Front",
  28432. image: {
  28433. source: "./media/characters/en/front.svg",
  28434. extra: 1697 / 1563,
  28435. bottom: 103 / 1800
  28436. }
  28437. },
  28438. back: {
  28439. height: math.unit(6, "feet"),
  28440. weight: math.unit(150, "lb"),
  28441. name: "Back",
  28442. image: {
  28443. source: "./media/characters/en/back.svg",
  28444. extra: 1700 / 1570,
  28445. bottom: 51 / 1751
  28446. }
  28447. },
  28448. frontDressed: {
  28449. height: math.unit(6, "feet"),
  28450. weight: math.unit(150, "lb"),
  28451. name: "Front (Dressed)",
  28452. image: {
  28453. source: "./media/characters/en/front-dressed.svg",
  28454. extra: 1697 / 1563,
  28455. bottom: 103 / 1800
  28456. }
  28457. },
  28458. backDressed: {
  28459. height: math.unit(6, "feet"),
  28460. weight: math.unit(150, "lb"),
  28461. name: "Back (Dressed)",
  28462. image: {
  28463. source: "./media/characters/en/back-dressed.svg",
  28464. extra: 1700 / 1570,
  28465. bottom: 51 / 1751
  28466. }
  28467. },
  28468. },
  28469. [
  28470. {
  28471. name: "Macro",
  28472. height: math.unit(210, "feet"),
  28473. default: true
  28474. },
  28475. ]
  28476. ))
  28477. characterMakers.push(() => makeCharacter(
  28478. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28479. {
  28480. front: {
  28481. height: math.unit(6, "feet"),
  28482. weight: math.unit(150, "lb"),
  28483. name: "Front",
  28484. image: {
  28485. source: "./media/characters/haze-orris/front.svg",
  28486. extra: 3975 / 3525,
  28487. bottom: 137 / 4112
  28488. }
  28489. },
  28490. },
  28491. [
  28492. {
  28493. name: "Micro",
  28494. height: math.unit(150, "mm"),
  28495. default: true
  28496. },
  28497. ]
  28498. ))
  28499. characterMakers.push(() => makeCharacter(
  28500. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28501. {
  28502. front: {
  28503. height: math.unit(6, "feet"),
  28504. weight: math.unit(150, "lb"),
  28505. name: "Front",
  28506. image: {
  28507. source: "./media/characters/casselene-yaro/front.svg",
  28508. extra: 4721 / 4541,
  28509. bottom: 82 / 4803
  28510. }
  28511. },
  28512. back: {
  28513. height: math.unit(6, "feet"),
  28514. weight: math.unit(150, "lb"),
  28515. name: "Back",
  28516. image: {
  28517. source: "./media/characters/casselene-yaro/back.svg",
  28518. extra: 4569 / 4377,
  28519. bottom: 69 / 4638
  28520. }
  28521. },
  28522. frontDressed: {
  28523. height: math.unit(6, "feet"),
  28524. weight: math.unit(150, "lb"),
  28525. name: "Front-dressed",
  28526. image: {
  28527. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28528. extra: 4721 / 4541,
  28529. bottom: 82 / 4803
  28530. }
  28531. },
  28532. },
  28533. [
  28534. {
  28535. name: "Macro",
  28536. height: math.unit(190, "feet")
  28537. },
  28538. ]
  28539. ))
  28540. characterMakers.push(() => makeCharacter(
  28541. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28542. {
  28543. front: {
  28544. height: math.unit(6, "feet"),
  28545. weight: math.unit(150, "lb"),
  28546. name: "Front",
  28547. image: {
  28548. source: "./media/characters/myra-rue-delore/front.svg",
  28549. extra: 1340 / 1308,
  28550. bottom: 67 / 1407
  28551. }
  28552. },
  28553. back: {
  28554. height: math.unit(6, "feet"),
  28555. weight: math.unit(150, "lb"),
  28556. name: "Back",
  28557. image: {
  28558. source: "./media/characters/myra-rue-delore/back.svg",
  28559. extra: 1341 / 1310,
  28560. bottom: 40 / 1381
  28561. }
  28562. },
  28563. frontDressed: {
  28564. height: math.unit(6, "feet"),
  28565. weight: math.unit(150, "lb"),
  28566. name: "Front (Dressed)",
  28567. image: {
  28568. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28569. extra: 1340 / 1308,
  28570. bottom: 67 / 1407
  28571. }
  28572. },
  28573. },
  28574. [
  28575. {
  28576. name: "Macro",
  28577. height: math.unit(150, "feet")
  28578. },
  28579. ]
  28580. ))
  28581. characterMakers.push(() => makeCharacter(
  28582. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28583. {
  28584. front: {
  28585. height: math.unit(10, "feet"),
  28586. weight: math.unit(15015, "lb"),
  28587. name: "Front",
  28588. image: {
  28589. source: "./media/characters/fem!plat/front.svg",
  28590. extra: 2799 / 2604,
  28591. bottom: 149 / 2948
  28592. }
  28593. },
  28594. },
  28595. [
  28596. {
  28597. name: "Normal",
  28598. height: math.unit(10, "feet"),
  28599. default: true
  28600. },
  28601. {
  28602. name: "Macro",
  28603. height: math.unit(100, "feet")
  28604. },
  28605. {
  28606. name: "Megamacro",
  28607. height: math.unit(1000, "feet")
  28608. },
  28609. ]
  28610. ))
  28611. characterMakers.push(() => makeCharacter(
  28612. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28613. {
  28614. front: {
  28615. height: math.unit(15 + 5 / 12, "feet"),
  28616. weight: math.unit(4600, "lb"),
  28617. name: "Front",
  28618. image: {
  28619. source: "./media/characters/neapolitan-ananassa/front.svg",
  28620. extra: 2903 / 2736,
  28621. bottom: 0 / 2903
  28622. }
  28623. },
  28624. side: {
  28625. height: math.unit(15 + 5 / 12, "feet"),
  28626. weight: math.unit(4600, "lb"),
  28627. name: "Side",
  28628. image: {
  28629. source: "./media/characters/neapolitan-ananassa/side.svg",
  28630. extra: 2925 / 2719,
  28631. bottom: 0 / 2925
  28632. }
  28633. },
  28634. back: {
  28635. height: math.unit(15 + 5 / 12, "feet"),
  28636. weight: math.unit(4600, "lb"),
  28637. name: "Back",
  28638. image: {
  28639. source: "./media/characters/neapolitan-ananassa/back.svg",
  28640. extra: 2903 / 2736,
  28641. bottom: 0 / 2903
  28642. }
  28643. },
  28644. },
  28645. [
  28646. {
  28647. name: "Normal",
  28648. height: math.unit(15 + 5 / 12, "feet"),
  28649. default: true
  28650. },
  28651. {
  28652. name: "Post-Millenium",
  28653. height: math.unit(35 + 5 / 12, "feet")
  28654. },
  28655. {
  28656. name: "Post-Era",
  28657. height: math.unit(450 + 5 / 12, "feet")
  28658. },
  28659. ]
  28660. ))
  28661. characterMakers.push(() => makeCharacter(
  28662. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28663. {
  28664. front: {
  28665. height: math.unit(300, "meters"),
  28666. weight: math.unit(125000, "tonnes"),
  28667. name: "Front",
  28668. image: {
  28669. source: "./media/characters/pazuzu/front.svg",
  28670. extra: 877 / 794,
  28671. bottom: 47 / 924
  28672. }
  28673. },
  28674. },
  28675. [
  28676. {
  28677. name: "Macro",
  28678. height: math.unit(300, "meters"),
  28679. default: true
  28680. },
  28681. ]
  28682. ))
  28683. characterMakers.push(() => makeCharacter(
  28684. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28685. {
  28686. side: {
  28687. height: math.unit(10 + 7 / 12, "feet"),
  28688. weight: math.unit(2.5, "tons"),
  28689. name: "Side",
  28690. image: {
  28691. source: "./media/characters/aasha/side.svg",
  28692. extra: 1345 / 1245,
  28693. bottom: 111 / 1456
  28694. }
  28695. },
  28696. back: {
  28697. height: math.unit(10 + 7 / 12, "feet"),
  28698. weight: math.unit(2.5, "tons"),
  28699. name: "Back",
  28700. image: {
  28701. source: "./media/characters/aasha/back.svg",
  28702. extra: 1133 / 1057,
  28703. bottom: 257 / 1390
  28704. }
  28705. },
  28706. },
  28707. [
  28708. {
  28709. name: "Normal",
  28710. height: math.unit(10 + 7 / 12, "feet"),
  28711. default: true
  28712. },
  28713. ]
  28714. ))
  28715. characterMakers.push(() => makeCharacter(
  28716. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28717. {
  28718. front: {
  28719. height: math.unit(6 + 3 / 12, "feet"),
  28720. name: "Front",
  28721. image: {
  28722. source: "./media/characters/nevan/front.svg",
  28723. extra: 704 / 704,
  28724. bottom: 28 / 732
  28725. }
  28726. },
  28727. back: {
  28728. height: math.unit(6 + 3 / 12, "feet"),
  28729. name: "Back",
  28730. image: {
  28731. source: "./media/characters/nevan/back.svg",
  28732. extra: 714 / 714,
  28733. bottom: 21 / 735
  28734. }
  28735. },
  28736. frontFlaccid: {
  28737. height: math.unit(6 + 3 / 12, "feet"),
  28738. name: "Front (Flaccid)",
  28739. image: {
  28740. source: "./media/characters/nevan/front-flaccid.svg",
  28741. extra: 704 / 704,
  28742. bottom: 28 / 732
  28743. }
  28744. },
  28745. frontErect: {
  28746. height: math.unit(6 + 3 / 12, "feet"),
  28747. name: "Front (Erect)",
  28748. image: {
  28749. source: "./media/characters/nevan/front-erect.svg",
  28750. extra: 704 / 704,
  28751. bottom: 28 / 732
  28752. }
  28753. },
  28754. backFlaccid: {
  28755. height: math.unit(6 + 3 / 12, "feet"),
  28756. name: "Back (Flaccid)",
  28757. image: {
  28758. source: "./media/characters/nevan/back-flaccid.svg",
  28759. extra: 714 / 714,
  28760. bottom: 21 / 735
  28761. }
  28762. },
  28763. },
  28764. [
  28765. {
  28766. name: "Normal",
  28767. height: math.unit(6 + 3 / 12, "feet"),
  28768. default: true
  28769. },
  28770. ]
  28771. ))
  28772. characterMakers.push(() => makeCharacter(
  28773. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28774. {
  28775. front: {
  28776. height: math.unit(4, "feet"),
  28777. name: "Front",
  28778. image: {
  28779. source: "./media/characters/arhan/front.svg",
  28780. extra: 3368 / 3133,
  28781. bottom: 0 / 3368
  28782. }
  28783. },
  28784. side: {
  28785. height: math.unit(4, "feet"),
  28786. name: "Side",
  28787. image: {
  28788. source: "./media/characters/arhan/side.svg",
  28789. extra: 3347 / 3105,
  28790. bottom: 0 / 3347
  28791. }
  28792. },
  28793. tongue: {
  28794. height: math.unit(1.42, "feet"),
  28795. name: "Tongue",
  28796. image: {
  28797. source: "./media/characters/arhan/tongue.svg"
  28798. }
  28799. },
  28800. head: {
  28801. height: math.unit(0.85, "feet"),
  28802. name: "Head",
  28803. image: {
  28804. source: "./media/characters/arhan/head.svg"
  28805. }
  28806. },
  28807. },
  28808. [
  28809. {
  28810. name: "Normal",
  28811. height: math.unit(4, "feet"),
  28812. default: true
  28813. },
  28814. ]
  28815. ))
  28816. characterMakers.push(() => makeCharacter(
  28817. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28818. {
  28819. front: {
  28820. height: math.unit(5 + 7.5 / 12, "feet"),
  28821. weight: math.unit(120, "lb"),
  28822. name: "Front",
  28823. image: {
  28824. source: "./media/characters/digi-duncan/front.svg",
  28825. extra: 330 / 326,
  28826. bottom: 16 / 346
  28827. }
  28828. },
  28829. side: {
  28830. height: math.unit(5 + 7.5 / 12, "feet"),
  28831. weight: math.unit(120, "lb"),
  28832. name: "Side",
  28833. image: {
  28834. source: "./media/characters/digi-duncan/side.svg",
  28835. extra: 341 / 337,
  28836. bottom: 1 / 342
  28837. }
  28838. },
  28839. back: {
  28840. height: math.unit(5 + 7.5 / 12, "feet"),
  28841. weight: math.unit(120, "lb"),
  28842. name: "Back",
  28843. image: {
  28844. source: "./media/characters/digi-duncan/back.svg",
  28845. extra: 330 / 326,
  28846. bottom: 12 / 342
  28847. }
  28848. },
  28849. },
  28850. [
  28851. {
  28852. name: "Speck",
  28853. height: math.unit(0.25, "mm")
  28854. },
  28855. {
  28856. name: "Micro",
  28857. height: math.unit(5, "mm")
  28858. },
  28859. {
  28860. name: "Tiny",
  28861. height: math.unit(0.5, "inches"),
  28862. default: true
  28863. },
  28864. {
  28865. name: "Human",
  28866. height: math.unit(5 + 7.5 / 12, "feet")
  28867. },
  28868. {
  28869. name: "Minigiant",
  28870. height: math.unit(8 + 5.25, "feet")
  28871. },
  28872. {
  28873. name: "Giant",
  28874. height: math.unit(2000, "feet")
  28875. },
  28876. {
  28877. name: "Mega",
  28878. height: math.unit(371.1, "miles")
  28879. },
  28880. ]
  28881. ))
  28882. characterMakers.push(() => makeCharacter(
  28883. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28884. {
  28885. front: {
  28886. height: math.unit(2, "meters"),
  28887. weight: math.unit(350, "kg"),
  28888. name: "Front",
  28889. image: {
  28890. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28891. extra: 898 / 838,
  28892. bottom: 9 / 907
  28893. }
  28894. },
  28895. },
  28896. [
  28897. {
  28898. name: "Micro",
  28899. height: math.unit(8, "meters")
  28900. },
  28901. {
  28902. name: "Normal",
  28903. height: math.unit(50, "meters"),
  28904. default: true
  28905. },
  28906. {
  28907. name: "Macro",
  28908. height: math.unit(500, "meters")
  28909. },
  28910. ]
  28911. ))
  28912. characterMakers.push(() => makeCharacter(
  28913. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28914. {
  28915. front: {
  28916. height: math.unit(6 + 6 / 12, "feet"),
  28917. name: "Front",
  28918. image: {
  28919. source: "./media/characters/khardesh/front.svg",
  28920. extra: 888 / 797,
  28921. bottom: 25 / 913
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Normal",
  28928. height: math.unit(6 + 6 / 12, "feet"),
  28929. default: true
  28930. },
  28931. {
  28932. name: "Normal+",
  28933. height: math.unit(4, "meters")
  28934. },
  28935. {
  28936. name: "Macro",
  28937. height: math.unit(50, "meters")
  28938. },
  28939. {
  28940. name: "Macro+",
  28941. height: math.unit(100, "meters")
  28942. },
  28943. {
  28944. name: "Megamacro",
  28945. height: math.unit(20, "km")
  28946. },
  28947. ]
  28948. ))
  28949. characterMakers.push(() => makeCharacter(
  28950. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28951. {
  28952. front: {
  28953. height: math.unit(6, "feet"),
  28954. weight: math.unit(150, "lb"),
  28955. name: "Front",
  28956. image: {
  28957. source: "./media/characters/kosho/front.svg",
  28958. extra: 1847 / 1847,
  28959. bottom: 86 / 1933
  28960. }
  28961. },
  28962. },
  28963. [
  28964. {
  28965. name: "Second-stage micro",
  28966. height: math.unit(0.5, "inches")
  28967. },
  28968. {
  28969. name: "First-stage micro",
  28970. height: math.unit(6, "inches")
  28971. },
  28972. {
  28973. name: "Normal",
  28974. height: math.unit(6, "feet"),
  28975. default: true
  28976. },
  28977. {
  28978. name: "First-stage macro",
  28979. height: math.unit(72, "feet")
  28980. },
  28981. {
  28982. name: "Second-stage macro",
  28983. height: math.unit(864, "feet")
  28984. },
  28985. ]
  28986. ))
  28987. characterMakers.push(() => makeCharacter(
  28988. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  28989. {
  28990. normal: {
  28991. height: math.unit(4 + 6 / 12, "feet"),
  28992. name: "Normal",
  28993. image: {
  28994. source: "./media/characters/hydra/normal.svg",
  28995. extra: 2833 / 2634,
  28996. bottom: 68 / 2901
  28997. }
  28998. },
  28999. smol: {
  29000. height: math.unit(0.705, "inches"),
  29001. name: "Smol",
  29002. image: {
  29003. source: "./media/characters/hydra/smol.svg",
  29004. extra: 2715 / 2540,
  29005. bottom: 0 / 2715
  29006. }
  29007. },
  29008. },
  29009. [
  29010. {
  29011. name: "Normal",
  29012. height: math.unit(4 + 6 / 12, "feet"),
  29013. default: true
  29014. }
  29015. ]
  29016. ))
  29017. characterMakers.push(() => makeCharacter(
  29018. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29019. {
  29020. front: {
  29021. height: math.unit(0.6, "cm"),
  29022. name: "Front",
  29023. image: {
  29024. source: "./media/characters/daz/front.svg",
  29025. extra: 1682 / 1164,
  29026. bottom: 42 / 1724
  29027. }
  29028. },
  29029. },
  29030. [
  29031. {
  29032. name: "Normal",
  29033. height: math.unit(0.6, "cm"),
  29034. default: true
  29035. },
  29036. ]
  29037. ))
  29038. characterMakers.push(() => makeCharacter(
  29039. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29040. {
  29041. front: {
  29042. height: math.unit(6, "feet"),
  29043. weight: math.unit(235, "lb"),
  29044. name: "Front",
  29045. image: {
  29046. source: "./media/characters/theo-pangolin/front.svg",
  29047. extra: 1996 / 1969,
  29048. bottom: 115 / 2111
  29049. }
  29050. },
  29051. back: {
  29052. height: math.unit(6, "feet"),
  29053. weight: math.unit(235, "lb"),
  29054. name: "Back",
  29055. image: {
  29056. source: "./media/characters/theo-pangolin/back.svg",
  29057. extra: 1979 / 1979,
  29058. bottom: 40 / 2019
  29059. }
  29060. },
  29061. feral: {
  29062. height: math.unit(2, "feet"),
  29063. weight: math.unit(30, "lb"),
  29064. name: "Feral",
  29065. image: {
  29066. source: "./media/characters/theo-pangolin/feral.svg",
  29067. extra: 803 / 791,
  29068. bottom: 181 / 984
  29069. }
  29070. },
  29071. footFive: {
  29072. height: math.unit(1.43, "feet"),
  29073. name: "Foot (Five Toes)",
  29074. image: {
  29075. source: "./media/characters/theo-pangolin/foot-five.svg"
  29076. }
  29077. },
  29078. footFour: {
  29079. height: math.unit(1.43, "feet"),
  29080. name: "Foot (Four Toes)",
  29081. image: {
  29082. source: "./media/characters/theo-pangolin/foot-four.svg"
  29083. }
  29084. },
  29085. handFour: {
  29086. height: math.unit(0.81, "feet"),
  29087. name: "Hand (Four Fingers)",
  29088. image: {
  29089. source: "./media/characters/theo-pangolin/hand-four.svg"
  29090. }
  29091. },
  29092. handThree: {
  29093. height: math.unit(0.81, "feet"),
  29094. name: "Hand (Three Fingers)",
  29095. image: {
  29096. source: "./media/characters/theo-pangolin/hand-three.svg"
  29097. }
  29098. },
  29099. headFront: {
  29100. height: math.unit(1.37, "feet"),
  29101. name: "Head (Front)",
  29102. image: {
  29103. source: "./media/characters/theo-pangolin/head-front.svg"
  29104. }
  29105. },
  29106. headSide: {
  29107. height: math.unit(1.43, "feet"),
  29108. name: "Head (Side)",
  29109. image: {
  29110. source: "./media/characters/theo-pangolin/head-side.svg"
  29111. }
  29112. },
  29113. tongue: {
  29114. height: math.unit(2.29, "feet"),
  29115. name: "Tongue",
  29116. image: {
  29117. source: "./media/characters/theo-pangolin/tongue.svg"
  29118. }
  29119. },
  29120. },
  29121. [
  29122. {
  29123. name: "Normal",
  29124. height: math.unit(6, "feet")
  29125. },
  29126. {
  29127. name: "Macro",
  29128. height: math.unit(400, "feet"),
  29129. default: true
  29130. },
  29131. ]
  29132. ))
  29133. characterMakers.push(() => makeCharacter(
  29134. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29135. {
  29136. front: {
  29137. height: math.unit(6, "inches"),
  29138. weight: math.unit(0.036, "kg"),
  29139. name: "Front",
  29140. image: {
  29141. source: "./media/characters/renée/front.svg",
  29142. extra: 900 / 886,
  29143. bottom: 8 / 908
  29144. }
  29145. },
  29146. },
  29147. [
  29148. {
  29149. name: "Nano",
  29150. height: math.unit(1, "nm")
  29151. },
  29152. {
  29153. name: "Micro",
  29154. height: math.unit(1, "mm")
  29155. },
  29156. {
  29157. name: "Normal",
  29158. height: math.unit(6, "inches")
  29159. },
  29160. {
  29161. name: "Macro",
  29162. height: math.unit(2000, "feet"),
  29163. default: true
  29164. },
  29165. {
  29166. name: "Megamacro",
  29167. height: math.unit(2, "km")
  29168. },
  29169. {
  29170. name: "Gigamacro",
  29171. height: math.unit(2000, "km")
  29172. },
  29173. {
  29174. name: "Teramacro",
  29175. height: math.unit(250000, "km")
  29176. },
  29177. ]
  29178. ))
  29179. characterMakers.push(() => makeCharacter(
  29180. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29181. {
  29182. front: {
  29183. height: math.unit(4, "meters"),
  29184. weight: math.unit(150, "kg"),
  29185. name: "Front",
  29186. image: {
  29187. source: "./media/characters/caledvwlch/front.svg",
  29188. extra: 1760 / 1551,
  29189. bottom: 28 / 1788
  29190. }
  29191. },
  29192. side: {
  29193. height: math.unit(4, "meters"),
  29194. weight: math.unit(150, "kg"),
  29195. name: "Side",
  29196. image: {
  29197. source: "./media/characters/caledvwlch/side.svg",
  29198. extra: 1605 / 1536,
  29199. bottom: 31 / 1636
  29200. }
  29201. },
  29202. back: {
  29203. height: math.unit(4, "meters"),
  29204. weight: math.unit(150, "kg"),
  29205. name: "Back",
  29206. image: {
  29207. source: "./media/characters/caledvwlch/back.svg",
  29208. extra: 1635 / 1565,
  29209. bottom: 27 / 1662
  29210. }
  29211. },
  29212. },
  29213. [
  29214. {
  29215. name: "\"Incognito\"",
  29216. height: math.unit(4, "meters")
  29217. },
  29218. {
  29219. name: "Small rampage",
  29220. height: math.unit(600, "meters")
  29221. },
  29222. {
  29223. name: "Mega",
  29224. height: math.unit(30, "km")
  29225. },
  29226. {
  29227. name: "Home-size",
  29228. height: math.unit(50, "km"),
  29229. default: true
  29230. },
  29231. {
  29232. name: "Giga",
  29233. height: math.unit(300, "km")
  29234. },
  29235. {
  29236. name: "Lounging",
  29237. height: math.unit(11000, "km")
  29238. },
  29239. {
  29240. name: "Planet snacking",
  29241. height: math.unit(2000000, "km")
  29242. },
  29243. ]
  29244. ))
  29245. characterMakers.push(() => makeCharacter(
  29246. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29247. {
  29248. front: {
  29249. height: math.unit(6, "feet"),
  29250. weight: math.unit(215, "lb"),
  29251. name: "Front",
  29252. image: {
  29253. source: "./media/characters/sapphire-svell/front.svg",
  29254. extra: 495 / 455,
  29255. bottom: 20 / 515
  29256. }
  29257. },
  29258. back: {
  29259. height: math.unit(6, "feet"),
  29260. weight: math.unit(216, "lb"),
  29261. name: "Back",
  29262. image: {
  29263. source: "./media/characters/sapphire-svell/back.svg",
  29264. extra: 497 / 477,
  29265. bottom: 7 / 504
  29266. }
  29267. },
  29268. maw: {
  29269. height: math.unit(1.57, "feet"),
  29270. name: "Maw",
  29271. image: {
  29272. source: "./media/characters/sapphire-svell/maw.svg"
  29273. }
  29274. },
  29275. foot: {
  29276. height: math.unit(1.07, "feet"),
  29277. name: "Foot",
  29278. image: {
  29279. source: "./media/characters/sapphire-svell/foot.svg"
  29280. }
  29281. },
  29282. toering: {
  29283. height: math.unit(1.7, "inch"),
  29284. name: "Toering",
  29285. image: {
  29286. source: "./media/characters/sapphire-svell/toering.svg"
  29287. }
  29288. },
  29289. },
  29290. [
  29291. {
  29292. name: "Normal",
  29293. height: math.unit(300, "feet"),
  29294. default: true
  29295. },
  29296. {
  29297. name: "Augmented",
  29298. height: math.unit(1250, "feet")
  29299. },
  29300. {
  29301. name: "Unleashed",
  29302. height: math.unit(3000, "feet")
  29303. },
  29304. ]
  29305. ))
  29306. characterMakers.push(() => makeCharacter(
  29307. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29308. {
  29309. side: {
  29310. height: math.unit(2 + 3 / 12, "feet"),
  29311. weight: math.unit(110, "lb"),
  29312. name: "Side",
  29313. image: {
  29314. source: "./media/characters/glitch-flux/side.svg",
  29315. extra: 997 / 805,
  29316. bottom: 20 / 1017
  29317. }
  29318. },
  29319. },
  29320. [
  29321. {
  29322. name: "Normal",
  29323. height: math.unit(2 + 3 / 12, "feet"),
  29324. default: true
  29325. },
  29326. ]
  29327. ))
  29328. characterMakers.push(() => makeCharacter(
  29329. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29330. {
  29331. front: {
  29332. height: math.unit(4, "meters"),
  29333. name: "Front",
  29334. image: {
  29335. source: "./media/characters/mid/front.svg",
  29336. extra: 507 / 476,
  29337. bottom: 17 / 524
  29338. }
  29339. },
  29340. back: {
  29341. height: math.unit(4, "meters"),
  29342. name: "Back",
  29343. image: {
  29344. source: "./media/characters/mid/back.svg",
  29345. extra: 519 / 487,
  29346. bottom: 7 / 526
  29347. }
  29348. },
  29349. stuck: {
  29350. height: math.unit(2.2, "meters"),
  29351. name: "Stuck",
  29352. image: {
  29353. source: "./media/characters/mid/stuck.svg",
  29354. extra: 1951 / 1869,
  29355. bottom: 88 / 2039
  29356. }
  29357. }
  29358. },
  29359. [
  29360. {
  29361. name: "Normal",
  29362. height: math.unit(4, "meters"),
  29363. default: true
  29364. },
  29365. {
  29366. name: "Big",
  29367. height: math.unit(10, "meters")
  29368. },
  29369. {
  29370. name: "Macro",
  29371. height: math.unit(800, "meters")
  29372. },
  29373. {
  29374. name: "Megamacro",
  29375. height: math.unit(100, "km")
  29376. },
  29377. {
  29378. name: "Overgrown",
  29379. height: math.unit(1, "parsec")
  29380. },
  29381. ]
  29382. ))
  29383. characterMakers.push(() => makeCharacter(
  29384. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29385. {
  29386. front: {
  29387. height: math.unit(2.5, "meters"),
  29388. weight: math.unit(225, "kg"),
  29389. name: "Front",
  29390. image: {
  29391. source: "./media/characters/iris/front.svg",
  29392. extra: 3348 / 3251,
  29393. bottom: 205 / 3553
  29394. }
  29395. },
  29396. maw: {
  29397. height: math.unit(0.56, "meter"),
  29398. name: "Maw",
  29399. image: {
  29400. source: "./media/characters/iris/maw.svg"
  29401. }
  29402. },
  29403. },
  29404. [
  29405. {
  29406. name: "Mewter cat",
  29407. height: math.unit(1.2, "meters")
  29408. },
  29409. {
  29410. name: "Minimacro",
  29411. height: math.unit(2.5, "meters"),
  29412. default: true
  29413. },
  29414. {
  29415. name: "Macro",
  29416. height: math.unit(180, "meters")
  29417. },
  29418. {
  29419. name: "Megamacro",
  29420. height: math.unit(2746, "meters")
  29421. },
  29422. ]
  29423. ))
  29424. characterMakers.push(() => makeCharacter(
  29425. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29426. {
  29427. front: {
  29428. height: math.unit(6, "feet"),
  29429. weight: math.unit(135, "lb"),
  29430. name: "Front",
  29431. image: {
  29432. source: "./media/characters/axel/front.svg",
  29433. extra: 908 / 908,
  29434. bottom: 58 / 966
  29435. }
  29436. },
  29437. side: {
  29438. height: math.unit(6, "feet"),
  29439. weight: math.unit(135, "lb"),
  29440. name: "Side",
  29441. image: {
  29442. source: "./media/characters/axel/side.svg",
  29443. extra: 958 / 958,
  29444. bottom: 11 / 969
  29445. }
  29446. },
  29447. back: {
  29448. height: math.unit(6, "feet"),
  29449. weight: math.unit(135, "lb"),
  29450. name: "Back",
  29451. image: {
  29452. source: "./media/characters/axel/back.svg",
  29453. extra: 887 / 887,
  29454. bottom: 34 / 921
  29455. }
  29456. },
  29457. head: {
  29458. height: math.unit(1.07, "feet"),
  29459. name: "Head",
  29460. image: {
  29461. source: "./media/characters/axel/head.svg"
  29462. }
  29463. },
  29464. beak: {
  29465. height: math.unit(1.4, "feet"),
  29466. name: "Beak",
  29467. image: {
  29468. source: "./media/characters/axel/beak.svg"
  29469. }
  29470. },
  29471. beakSide: {
  29472. height: math.unit(1.4, "feet"),
  29473. name: "Beak Side",
  29474. image: {
  29475. source: "./media/characters/axel/beak-side.svg"
  29476. }
  29477. },
  29478. sheath: {
  29479. height: math.unit(0.5, "feet"),
  29480. name: "Sheath",
  29481. image: {
  29482. source: "./media/characters/axel/sheath.svg"
  29483. }
  29484. },
  29485. dick: {
  29486. height: math.unit(0.98, "feet"),
  29487. name: "Dick",
  29488. image: {
  29489. source: "./media/characters/axel/dick.svg"
  29490. }
  29491. },
  29492. },
  29493. [
  29494. {
  29495. name: "Macro",
  29496. height: math.unit(68, "meters"),
  29497. default: true
  29498. },
  29499. ]
  29500. ))
  29501. characterMakers.push(() => makeCharacter(
  29502. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29503. {
  29504. front: {
  29505. height: math.unit(3.5, "meters"),
  29506. weight: math.unit(1200, "kg"),
  29507. name: "Front",
  29508. image: {
  29509. source: "./media/characters/joanna/front.svg",
  29510. extra: 1596 / 1488,
  29511. bottom: 29 / 1625
  29512. }
  29513. },
  29514. back: {
  29515. height: math.unit(3.5, "meters"),
  29516. weight: math.unit(1200, "kg"),
  29517. name: "Back",
  29518. image: {
  29519. source: "./media/characters/joanna/back.svg",
  29520. extra: 1594 / 1495,
  29521. bottom: 26 / 1620
  29522. }
  29523. },
  29524. frontShorts: {
  29525. height: math.unit(3.5, "meters"),
  29526. weight: math.unit(1200, "kg"),
  29527. name: "Front (Shorts)",
  29528. image: {
  29529. source: "./media/characters/joanna/front-shorts.svg",
  29530. extra: 1596 / 1488,
  29531. bottom: 29 / 1625
  29532. }
  29533. },
  29534. frontBiker: {
  29535. height: math.unit(3.5, "meters"),
  29536. weight: math.unit(1200, "kg"),
  29537. name: "Front (Biker)",
  29538. image: {
  29539. source: "./media/characters/joanna/front-biker.svg",
  29540. extra: 1596 / 1488,
  29541. bottom: 29 / 1625
  29542. }
  29543. },
  29544. backBiker: {
  29545. height: math.unit(3.5, "meters"),
  29546. weight: math.unit(1200, "kg"),
  29547. name: "Back (Biker)",
  29548. image: {
  29549. source: "./media/characters/joanna/back-biker.svg",
  29550. extra: 1594 / 1495,
  29551. bottom: 88 / 1682
  29552. }
  29553. },
  29554. bikeLeft: {
  29555. height: math.unit(2.4, "meters"),
  29556. weight: math.unit(1600, "kg"),
  29557. name: "Bike (Left)",
  29558. image: {
  29559. source: "./media/characters/joanna/bike-left.svg",
  29560. extra: 720 / 720,
  29561. bottom: 8 / 728
  29562. }
  29563. },
  29564. bikeRight: {
  29565. height: math.unit(2.4, "meters"),
  29566. weight: math.unit(1600, "kg"),
  29567. name: "Bike (Right)",
  29568. image: {
  29569. source: "./media/characters/joanna/bike-right.svg",
  29570. extra: 720 / 720,
  29571. bottom: 8 / 728
  29572. }
  29573. },
  29574. },
  29575. [
  29576. {
  29577. name: "Incognito",
  29578. height: math.unit(3.5, "meters")
  29579. },
  29580. {
  29581. name: "Casual Big",
  29582. height: math.unit(200, "meters")
  29583. },
  29584. {
  29585. name: "Macro",
  29586. height: math.unit(600, "meters")
  29587. },
  29588. {
  29589. name: "Original",
  29590. height: math.unit(20, "km"),
  29591. default: true
  29592. },
  29593. {
  29594. name: "Giga",
  29595. height: math.unit(400, "km")
  29596. },
  29597. {
  29598. name: "Lounging",
  29599. height: math.unit(1500, "km")
  29600. },
  29601. {
  29602. name: "Planetary",
  29603. height: math.unit(200000, "km")
  29604. },
  29605. ]
  29606. ))
  29607. characterMakers.push(() => makeCharacter(
  29608. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29609. {
  29610. front: {
  29611. height: math.unit(6, "feet"),
  29612. weight: math.unit(150, "lb"),
  29613. name: "Front",
  29614. image: {
  29615. source: "./media/characters/hugo-sigil/front.svg",
  29616. extra: 522 / 500,
  29617. bottom: 2 / 524
  29618. }
  29619. },
  29620. back: {
  29621. height: math.unit(6, "feet"),
  29622. weight: math.unit(150, "lb"),
  29623. name: "Back",
  29624. image: {
  29625. source: "./media/characters/hugo-sigil/back.svg",
  29626. extra: 519 / 495,
  29627. bottom: 5 / 524
  29628. }
  29629. },
  29630. maw: {
  29631. height: math.unit(1.4, "feet"),
  29632. weight: math.unit(150, "lb"),
  29633. name: "Maw",
  29634. image: {
  29635. source: "./media/characters/hugo-sigil/maw.svg"
  29636. }
  29637. },
  29638. feet: {
  29639. height: math.unit(1.56, "feet"),
  29640. weight: math.unit(150, "lb"),
  29641. name: "Feet",
  29642. image: {
  29643. source: "./media/characters/hugo-sigil/feet.svg",
  29644. extra: 177 / 177,
  29645. bottom: 12 / 189
  29646. }
  29647. },
  29648. },
  29649. [
  29650. {
  29651. name: "Normal",
  29652. height: math.unit(6, "feet")
  29653. },
  29654. {
  29655. name: "Macro",
  29656. height: math.unit(200, "feet"),
  29657. default: true
  29658. },
  29659. ]
  29660. ))
  29661. characterMakers.push(() => makeCharacter(
  29662. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29663. {
  29664. front: {
  29665. height: math.unit(6, "feet"),
  29666. weight: math.unit(150, "lb"),
  29667. name: "Front",
  29668. image: {
  29669. source: "./media/characters/peri/front.svg",
  29670. extra: 2354 / 2233,
  29671. bottom: 49 / 2403
  29672. }
  29673. },
  29674. },
  29675. [
  29676. {
  29677. name: "Really Small",
  29678. height: math.unit(1, "nm")
  29679. },
  29680. {
  29681. name: "Micro",
  29682. height: math.unit(4, "inches")
  29683. },
  29684. {
  29685. name: "Normal",
  29686. height: math.unit(7, "inches"),
  29687. default: true
  29688. },
  29689. {
  29690. name: "Macro",
  29691. height: math.unit(400, "feet")
  29692. },
  29693. {
  29694. name: "Megamacro",
  29695. height: math.unit(100, "miles")
  29696. },
  29697. ]
  29698. ))
  29699. characterMakers.push(() => makeCharacter(
  29700. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29701. {
  29702. frontSlim: {
  29703. height: math.unit(7, "feet"),
  29704. name: "Front (Slim)",
  29705. image: {
  29706. source: "./media/characters/issilora/front-slim.svg",
  29707. extra: 529 / 449,
  29708. bottom: 53 / 582
  29709. }
  29710. },
  29711. sideSlim: {
  29712. height: math.unit(7, "feet"),
  29713. name: "Side (Slim)",
  29714. image: {
  29715. source: "./media/characters/issilora/side-slim.svg",
  29716. extra: 570 / 480,
  29717. bottom: 30 / 600
  29718. }
  29719. },
  29720. backSlim: {
  29721. height: math.unit(7, "feet"),
  29722. name: "Back (Slim)",
  29723. image: {
  29724. source: "./media/characters/issilora/back-slim.svg",
  29725. extra: 537 / 455,
  29726. bottom: 46 / 583
  29727. }
  29728. },
  29729. frontBuff: {
  29730. height: math.unit(7, "feet"),
  29731. name: "Front (Buff)",
  29732. image: {
  29733. source: "./media/characters/issilora/front-buff.svg",
  29734. extra: 2310 / 2035,
  29735. bottom: 335 / 2645
  29736. }
  29737. },
  29738. head: {
  29739. height: math.unit(1.94, "feet"),
  29740. name: "Head",
  29741. image: {
  29742. source: "./media/characters/issilora/head.svg"
  29743. }
  29744. },
  29745. },
  29746. [
  29747. {
  29748. name: "Minimum",
  29749. height: math.unit(7, "feet")
  29750. },
  29751. {
  29752. name: "Comfortable",
  29753. height: math.unit(17, "feet")
  29754. },
  29755. {
  29756. name: "Fun Size",
  29757. height: math.unit(47, "feet")
  29758. },
  29759. {
  29760. name: "Natural Macro",
  29761. height: math.unit(137, "feet"),
  29762. default: true
  29763. },
  29764. {
  29765. name: "Maximum Kaiju",
  29766. height: math.unit(397, "feet")
  29767. },
  29768. ]
  29769. ))
  29770. characterMakers.push(() => makeCharacter(
  29771. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29772. {
  29773. front: {
  29774. height: math.unit(50 + 9/12, "feet"),
  29775. weight: math.unit(32.8, "tons"),
  29776. name: "Front",
  29777. image: {
  29778. source: "./media/characters/irb'iiritaahn/front.svg",
  29779. extra: 1878/1826,
  29780. bottom: 326/2204
  29781. }
  29782. },
  29783. back: {
  29784. height: math.unit(50 + 9/12, "feet"),
  29785. weight: math.unit(32.8, "tons"),
  29786. name: "Back",
  29787. image: {
  29788. source: "./media/characters/irb'iiritaahn/back.svg",
  29789. extra: 2052/2018,
  29790. bottom: 152/2204
  29791. }
  29792. },
  29793. head: {
  29794. height: math.unit(12.86, "feet"),
  29795. name: "Head",
  29796. image: {
  29797. source: "./media/characters/irb'iiritaahn/head.svg"
  29798. }
  29799. },
  29800. maw: {
  29801. height: math.unit(9.66, "feet"),
  29802. name: "Maw",
  29803. image: {
  29804. source: "./media/characters/irb'iiritaahn/maw.svg"
  29805. }
  29806. },
  29807. frontDick: {
  29808. height: math.unit(8.78461, "feet"),
  29809. name: "Front Dick",
  29810. image: {
  29811. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29812. }
  29813. },
  29814. rearDick: {
  29815. height: math.unit(8.78461, "feet"),
  29816. name: "Rear Dick",
  29817. image: {
  29818. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29819. }
  29820. },
  29821. rearDickUnfolded: {
  29822. height: math.unit(8.78, "feet"),
  29823. name: "Rear Dick (Unfolded)",
  29824. image: {
  29825. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29826. }
  29827. },
  29828. wings: {
  29829. height: math.unit(43, "feet"),
  29830. name: "Wings",
  29831. image: {
  29832. source: "./media/characters/irb'iiritaahn/wings.svg"
  29833. }
  29834. },
  29835. },
  29836. [
  29837. {
  29838. name: "Macro",
  29839. height: math.unit(50 + 9/12, "feet"),
  29840. default: true
  29841. },
  29842. ]
  29843. ))
  29844. characterMakers.push(() => makeCharacter(
  29845. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29846. {
  29847. front: {
  29848. height: math.unit(205, "cm"),
  29849. weight: math.unit(102, "kg"),
  29850. name: "Front",
  29851. image: {
  29852. source: "./media/characters/irbisgreif/front.svg",
  29853. extra: 785/706,
  29854. bottom: 13/798
  29855. }
  29856. },
  29857. back: {
  29858. height: math.unit(205, "cm"),
  29859. weight: math.unit(102, "kg"),
  29860. name: "Back",
  29861. image: {
  29862. source: "./media/characters/irbisgreif/back.svg",
  29863. extra: 713/701,
  29864. bottom: 26/739
  29865. }
  29866. },
  29867. frontDressed: {
  29868. height: math.unit(216, "cm"),
  29869. weight: math.unit(102, "kg"),
  29870. name: "Front-dressed",
  29871. image: {
  29872. source: "./media/characters/irbisgreif/front-dressed.svg",
  29873. extra: 902/776,
  29874. bottom: 14/916
  29875. }
  29876. },
  29877. sideDressed: {
  29878. height: math.unit(195, "cm"),
  29879. weight: math.unit(102, "kg"),
  29880. name: "Side-dressed",
  29881. image: {
  29882. source: "./media/characters/irbisgreif/side-dressed.svg",
  29883. extra: 788/688,
  29884. bottom: 21/809
  29885. }
  29886. },
  29887. backDressed: {
  29888. height: math.unit(216, "cm"),
  29889. weight: math.unit(102, "kg"),
  29890. name: "Back-dressed",
  29891. image: {
  29892. source: "./media/characters/irbisgreif/back-dressed.svg",
  29893. extra: 901/783,
  29894. bottom: 10/911
  29895. }
  29896. },
  29897. dick: {
  29898. height: math.unit(0.49, "feet"),
  29899. name: "Dick",
  29900. image: {
  29901. source: "./media/characters/irbisgreif/dick.svg"
  29902. }
  29903. },
  29904. wingTop: {
  29905. height: math.unit(1.93 , "feet"),
  29906. name: "Wing-top",
  29907. image: {
  29908. source: "./media/characters/irbisgreif/wing-top.svg"
  29909. }
  29910. },
  29911. wingBottom: {
  29912. height: math.unit(1.93 , "feet"),
  29913. name: "Wing-bottom",
  29914. image: {
  29915. source: "./media/characters/irbisgreif/wing-bottom.svg"
  29916. }
  29917. },
  29918. },
  29919. [
  29920. {
  29921. name: "Normal",
  29922. height: math.unit(216, "cm"),
  29923. default: true
  29924. },
  29925. ]
  29926. ))
  29927. characterMakers.push(() => makeCharacter(
  29928. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  29929. {
  29930. front: {
  29931. height: math.unit(6, "feet"),
  29932. weight: math.unit(150, "lb"),
  29933. name: "Front",
  29934. image: {
  29935. source: "./media/characters/pride/front.svg",
  29936. extra: 1299/1230,
  29937. bottom: 18/1317
  29938. }
  29939. },
  29940. },
  29941. [
  29942. {
  29943. name: "Normal",
  29944. height: math.unit(7, "feet")
  29945. },
  29946. {
  29947. name: "Mini-macro",
  29948. height: math.unit(11, "feet")
  29949. },
  29950. {
  29951. name: "Macro",
  29952. height: math.unit(15, "meters"),
  29953. default: true
  29954. },
  29955. {
  29956. name: "Macro+",
  29957. height: math.unit(40, "meters")
  29958. },
  29959. ]
  29960. ))
  29961. characterMakers.push(() => makeCharacter(
  29962. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  29963. {
  29964. front: {
  29965. height: math.unit(4 + 2 / 12, "feet"),
  29966. weight: math.unit(95, "lb"),
  29967. name: "Front",
  29968. image: {
  29969. source: "./media/characters/vaelophis-nyx/front.svg",
  29970. extra: 2532/2330,
  29971. bottom: 0/2532
  29972. }
  29973. },
  29974. back: {
  29975. height: math.unit(4 + 2 / 12, "feet"),
  29976. weight: math.unit(95, "lb"),
  29977. name: "Back",
  29978. image: {
  29979. source: "./media/characters/vaelophis-nyx/back.svg",
  29980. extra: 2484/2361,
  29981. bottom: 0/2484
  29982. }
  29983. },
  29984. feralSide: {
  29985. height: math.unit(2 + 1/12, "feet"),
  29986. weight: math.unit(20, "lb"),
  29987. name: "Feral (Side)",
  29988. image: {
  29989. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  29990. extra: 1721/1581,
  29991. bottom: 70/1791
  29992. }
  29993. },
  29994. feralLazing: {
  29995. height: math.unit(1.08, "feet"),
  29996. weight: math.unit(20, "lb"),
  29997. name: "Feral (Lazing)",
  29998. image: {
  29999. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30000. extra: 822/822,
  30001. bottom: 248/1070
  30002. }
  30003. },
  30004. ear: {
  30005. height: math.unit(0.416, "feet"),
  30006. name: "Ear",
  30007. image: {
  30008. source: "./media/characters/vaelophis-nyx/ear.svg"
  30009. }
  30010. },
  30011. eye: {
  30012. height: math.unit(0.0748, "feet"),
  30013. name: "Eye",
  30014. image: {
  30015. source: "./media/characters/vaelophis-nyx/eye.svg"
  30016. }
  30017. },
  30018. mouth: {
  30019. height: math.unit(0.378, "feet"),
  30020. name: "Mouth",
  30021. image: {
  30022. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30023. }
  30024. },
  30025. spade: {
  30026. height: math.unit(0.55, "feet"),
  30027. name: "Spade",
  30028. image: {
  30029. source: "./media/characters/vaelophis-nyx/spade.svg"
  30030. }
  30031. },
  30032. },
  30033. [
  30034. {
  30035. name: "Normal",
  30036. height: math.unit(4 + 2/12, "feet"),
  30037. default: true
  30038. },
  30039. ]
  30040. ))
  30041. characterMakers.push(() => makeCharacter(
  30042. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30043. {
  30044. front: {
  30045. height: math.unit(7, "feet"),
  30046. weight: math.unit(231, "lb"),
  30047. name: "Front",
  30048. image: {
  30049. source: "./media/characters/flux/front.svg",
  30050. extra: 919/871,
  30051. bottom: 0/919
  30052. }
  30053. },
  30054. back: {
  30055. height: math.unit(7, "feet"),
  30056. weight: math.unit(231, "lb"),
  30057. name: "Back",
  30058. image: {
  30059. source: "./media/characters/flux/back.svg",
  30060. extra: 1040/992,
  30061. bottom: 0/1040
  30062. }
  30063. },
  30064. frontDressed: {
  30065. height: math.unit(7, "feet"),
  30066. weight: math.unit(231, "lb"),
  30067. name: "Front (Dressed)",
  30068. image: {
  30069. source: "./media/characters/flux/front-dressed.svg",
  30070. extra: 919/871,
  30071. bottom: 0/919
  30072. }
  30073. },
  30074. feralSide: {
  30075. height: math.unit(5, "feet"),
  30076. weight: math.unit(150, "lb"),
  30077. name: "Feral (Side)",
  30078. image: {
  30079. source: "./media/characters/flux/feral-side.svg",
  30080. extra: 598/528,
  30081. bottom: 28/626
  30082. }
  30083. },
  30084. head: {
  30085. height: math.unit(1.585, "feet"),
  30086. name: "Head",
  30087. image: {
  30088. source: "./media/characters/flux/head.svg"
  30089. }
  30090. },
  30091. headSide: {
  30092. height: math.unit(1.74, "feet"),
  30093. name: "Head (Side)",
  30094. image: {
  30095. source: "./media/characters/flux/head-side.svg"
  30096. }
  30097. },
  30098. headSideFire: {
  30099. height: math.unit(1.76, "feet"),
  30100. name: "Head (Side, Fire)",
  30101. image: {
  30102. source: "./media/characters/flux/head-side-fire.svg"
  30103. }
  30104. },
  30105. },
  30106. [
  30107. {
  30108. name: "Normal",
  30109. height: math.unit(7, "feet"),
  30110. default: true
  30111. },
  30112. ]
  30113. ))
  30114. characterMakers.push(() => makeCharacter(
  30115. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30116. {
  30117. front: {
  30118. height: math.unit(9, "feet"),
  30119. weight: math.unit(1012, "lb"),
  30120. name: "Front",
  30121. image: {
  30122. source: "./media/characters/ulfra-lupae/front.svg",
  30123. extra: 1083/1011,
  30124. bottom: 67/1150
  30125. }
  30126. },
  30127. },
  30128. [
  30129. {
  30130. name: "Micro",
  30131. height: math.unit(6, "inches")
  30132. },
  30133. {
  30134. name: "Socializing",
  30135. height: math.unit(6 + 5/12, "feet")
  30136. },
  30137. {
  30138. name: "Normal",
  30139. height: math.unit(9, "feet"),
  30140. default: true
  30141. },
  30142. {
  30143. name: "Macro",
  30144. height: math.unit(150, "feet")
  30145. },
  30146. ]
  30147. ))
  30148. characterMakers.push(() => makeCharacter(
  30149. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30150. {
  30151. front: {
  30152. height: math.unit(5 + 2/12, "feet"),
  30153. weight: math.unit(120, "lb"),
  30154. name: "Front",
  30155. image: {
  30156. source: "./media/characters/timber/front.svg",
  30157. extra: 2814/2705,
  30158. bottom: 181/2995
  30159. }
  30160. },
  30161. },
  30162. [
  30163. {
  30164. name: "Normal",
  30165. height: math.unit(5 + 2/12, "feet"),
  30166. default: true
  30167. },
  30168. ]
  30169. ))
  30170. characterMakers.push(() => makeCharacter(
  30171. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30172. {
  30173. front: {
  30174. height: math.unit(5 + 7/12, "feet"),
  30175. weight: math.unit(220, "lb"),
  30176. name: "Front",
  30177. image: {
  30178. source: "./media/characters/nicki/front.svg",
  30179. extra: 453/419,
  30180. bottom: 7/460
  30181. }
  30182. },
  30183. frontAlt: {
  30184. height: math.unit(5 + 7/12, "feet"),
  30185. weight: math.unit(220, "lb"),
  30186. name: "Front-alt",
  30187. image: {
  30188. source: "./media/characters/nicki/front-alt.svg",
  30189. extra: 435/411,
  30190. bottom: 12/447
  30191. }
  30192. },
  30193. back: {
  30194. height: math.unit(5 + 7/12, "feet"),
  30195. weight: math.unit(220, "lb"),
  30196. name: "Back",
  30197. image: {
  30198. source: "./media/characters/nicki/back.svg",
  30199. extra: 440/413,
  30200. bottom: 19/459
  30201. }
  30202. },
  30203. frontNsfw: {
  30204. height: math.unit(5 + 7/12, "feet"),
  30205. weight: math.unit(220, "lb"),
  30206. name: "Front (NSFW)",
  30207. image: {
  30208. source: "./media/characters/nicki/front-nsfw.svg",
  30209. extra: 453/419,
  30210. bottom: 7/460
  30211. }
  30212. },
  30213. frontNsfwAlt: {
  30214. height: math.unit(5 + 7/12, "feet"),
  30215. weight: math.unit(220, "lb"),
  30216. name: "Front (Alt, NSFW)",
  30217. image: {
  30218. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30219. extra: 435/411,
  30220. bottom: 12/447
  30221. }
  30222. },
  30223. backNsfw: {
  30224. height: math.unit(5 + 7/12, "feet"),
  30225. weight: math.unit(220, "lb"),
  30226. name: "Back (NSFW)",
  30227. image: {
  30228. source: "./media/characters/nicki/back-nsfw.svg",
  30229. extra: 440/413,
  30230. bottom: 19/459
  30231. }
  30232. },
  30233. head: {
  30234. height: math.unit(2.1, "feet"),
  30235. name: "Head",
  30236. image: {
  30237. source: "./media/characters/nicki/head.svg"
  30238. }
  30239. },
  30240. paw: {
  30241. height: math.unit(1.88, "feet"),
  30242. name: "Paw",
  30243. image: {
  30244. source: "./media/characters/nicki/paw.svg"
  30245. }
  30246. },
  30247. },
  30248. [
  30249. {
  30250. name: "Normal",
  30251. height: math.unit(5 + 7/12, "feet"),
  30252. default: true
  30253. },
  30254. ]
  30255. ))
  30256. characterMakers.push(() => makeCharacter(
  30257. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30258. {
  30259. front: {
  30260. height: math.unit(7 + 10/12, "feet"),
  30261. weight: math.unit(3.5, "tons"),
  30262. name: "Front",
  30263. image: {
  30264. source: "./media/characters/lee/front.svg",
  30265. extra: 1773/1615,
  30266. bottom: 86/1859
  30267. }
  30268. },
  30269. hand: {
  30270. height: math.unit(1.78, "feet"),
  30271. name: "Hand",
  30272. image: {
  30273. source: "./media/characters/lee/hand.svg"
  30274. }
  30275. },
  30276. maw: {
  30277. height: math.unit(1.18, "feet"),
  30278. name: "Maw",
  30279. image: {
  30280. source: "./media/characters/lee/maw.svg"
  30281. }
  30282. },
  30283. },
  30284. [
  30285. {
  30286. name: "Normal",
  30287. height: math.unit(7 + 10/12, "feet"),
  30288. default: true
  30289. },
  30290. ]
  30291. ))
  30292. characterMakers.push(() => makeCharacter(
  30293. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30294. {
  30295. front: {
  30296. height: math.unit(9, "feet"),
  30297. name: "Front",
  30298. image: {
  30299. source: "./media/characters/guti/front.svg",
  30300. extra: 4551/4355,
  30301. bottom: 123/4674
  30302. }
  30303. },
  30304. tongue: {
  30305. height: math.unit(1, "feet"),
  30306. name: "Tongue",
  30307. image: {
  30308. source: "./media/characters/guti/tongue.svg"
  30309. }
  30310. },
  30311. paw: {
  30312. height: math.unit(1.18, "feet"),
  30313. name: "Paw",
  30314. image: {
  30315. source: "./media/characters/guti/paw.svg"
  30316. }
  30317. },
  30318. },
  30319. [
  30320. {
  30321. name: "Normal",
  30322. height: math.unit(9, "feet"),
  30323. default: true
  30324. },
  30325. ]
  30326. ))
  30327. characterMakers.push(() => makeCharacter(
  30328. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30329. {
  30330. side: {
  30331. height: math.unit(5, "meters"),
  30332. name: "Side",
  30333. image: {
  30334. source: "./media/characters/vesper/side.svg",
  30335. extra: 1605/1518,
  30336. bottom: 0/1605
  30337. }
  30338. },
  30339. },
  30340. [
  30341. {
  30342. name: "Small",
  30343. height: math.unit(5, "meters")
  30344. },
  30345. {
  30346. name: "Sage",
  30347. height: math.unit(100, "meters"),
  30348. default: true
  30349. },
  30350. {
  30351. name: "Fun Size",
  30352. height: math.unit(600, "meters")
  30353. },
  30354. {
  30355. name: "Goddess",
  30356. height: math.unit(20000, "km")
  30357. },
  30358. {
  30359. name: "Maximum",
  30360. height: math.unit(5, "galaxies")
  30361. },
  30362. ]
  30363. ))
  30364. characterMakers.push(() => makeCharacter(
  30365. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30366. {
  30367. front: {
  30368. height: math.unit(6 + 3/12, "feet"),
  30369. weight: math.unit(190, "lb"),
  30370. name: "Front",
  30371. image: {
  30372. source: "./media/characters/gawain/front.svg",
  30373. extra: 2222/2139,
  30374. bottom: 90/2312
  30375. }
  30376. },
  30377. back: {
  30378. height: math.unit(6 + 3/12, "feet"),
  30379. weight: math.unit(190, "lb"),
  30380. name: "Back",
  30381. image: {
  30382. source: "./media/characters/gawain/back.svg",
  30383. extra: 2199/2111,
  30384. bottom: 73/2272
  30385. }
  30386. },
  30387. },
  30388. [
  30389. {
  30390. name: "Normal",
  30391. height: math.unit(6 + 3/12, "feet"),
  30392. default: true
  30393. },
  30394. ]
  30395. ))
  30396. characterMakers.push(() => makeCharacter(
  30397. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30398. {
  30399. side: {
  30400. height: math.unit(3.5, "meters"),
  30401. weight: math.unit(16000, "lb"),
  30402. name: "Side",
  30403. image: {
  30404. source: "./media/characters/dascalti/side.svg",
  30405. extra: 392/273,
  30406. bottom: 47/439
  30407. }
  30408. },
  30409. breath: {
  30410. height: math.unit(7.4, "feet"),
  30411. name: "Breath",
  30412. image: {
  30413. source: "./media/characters/dascalti/breath.svg"
  30414. }
  30415. },
  30416. fed: {
  30417. height: math.unit(3.6, "meters"),
  30418. weight: math.unit(16000, "lb"),
  30419. name: "Fed",
  30420. image: {
  30421. source: "./media/characters/dascalti/fed.svg",
  30422. extra: 1419/820,
  30423. bottom: 95/1514
  30424. }
  30425. },
  30426. },
  30427. [
  30428. ]
  30429. ))
  30430. //characters
  30431. function makeCharacters() {
  30432. const results = [];
  30433. characterMakers.forEach(character => {
  30434. results.push(character());
  30435. });
  30436. return results;
  30437. }