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

29662 строки
741 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. }
  1392. //species
  1393. function getSpeciesInfo(speciesList) {
  1394. let result = new Set();
  1395. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1396. result.add(entry)
  1397. });
  1398. return Array.from(result);
  1399. };
  1400. function getSpeciesInfoHelper(species) {
  1401. if (!speciesData[species]) {
  1402. console.warn(species + " doesn't exist");
  1403. return [];
  1404. }
  1405. if (speciesData[species].parents) {
  1406. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1407. } else {
  1408. return [species];
  1409. }
  1410. }
  1411. characterMakers.push(() => makeCharacter(
  1412. {
  1413. name: "Fen",
  1414. species: ["crux"],
  1415. description: {
  1416. title: "Bio",
  1417. text: "Very furry. Sheds on everything."
  1418. },
  1419. tags: [
  1420. "anthro",
  1421. "goo"
  1422. ]
  1423. },
  1424. {
  1425. back: {
  1426. height: math.unit(2.2428, "meter"),
  1427. weight: math.unit(124.738, "kg"),
  1428. name: "Back",
  1429. image: {
  1430. source: "./media/characters/fen/back.svg",
  1431. extra: 2024 / 1867,
  1432. bottom: 13 / 2037
  1433. },
  1434. info: {
  1435. description: {
  1436. mode: "append",
  1437. text: "\n\nHe is not currently looking at you."
  1438. }
  1439. }
  1440. },
  1441. full: {
  1442. height: math.unit(1.34, "meter"),
  1443. weight: math.unit(225, "kg"),
  1444. name: "Full",
  1445. image: {
  1446. source: "./media/characters/fen/full.svg"
  1447. },
  1448. info: {
  1449. description: {
  1450. mode: "append",
  1451. text: "\n\nMunch."
  1452. }
  1453. }
  1454. },
  1455. kneeling: {
  1456. height: math.unit(5.4, "feet"),
  1457. weight: math.unit(124.738, "kg"),
  1458. name: "Kneeling",
  1459. image: {
  1460. source: "./media/characters/fen/kneeling.svg",
  1461. extra: 563 / 507
  1462. }
  1463. },
  1464. goo: {
  1465. height: math.unit(2.8, "feet"),
  1466. weight: math.unit(125, "kg"),
  1467. capacity: math.unit(1, "people"),
  1468. name: "Goo",
  1469. image: {
  1470. source: "./media/characters/fen/goo.svg",
  1471. bottom: 116 / 613
  1472. }
  1473. },
  1474. lounging: {
  1475. height: math.unit(6.5, "feet"),
  1476. weight: math.unit(125, "kg"),
  1477. name: "Lounging",
  1478. image: {
  1479. source: "./media/characters/fen/lounging.svg"
  1480. }
  1481. },
  1482. },
  1483. [
  1484. {
  1485. name: "Normal",
  1486. height: math.unit(2.2428, "meter")
  1487. },
  1488. {
  1489. name: "Big",
  1490. height: math.unit(12, "feet")
  1491. },
  1492. {
  1493. name: "Minimacro",
  1494. height: math.unit(40, "feet"),
  1495. default: true,
  1496. info: {
  1497. description: {
  1498. mode: "append",
  1499. text: "\n\nTOO DAMN BIG"
  1500. }
  1501. }
  1502. },
  1503. {
  1504. name: "Macro",
  1505. height: math.unit(100, "feet"),
  1506. info: {
  1507. description: {
  1508. mode: "append",
  1509. text: "\n\nTOO DAMN BIG"
  1510. }
  1511. }
  1512. },
  1513. {
  1514. name: "Macro+",
  1515. height: math.unit(300, "feet")
  1516. },
  1517. {
  1518. name: "Megamacro",
  1519. height: math.unit(2, "miles")
  1520. }
  1521. ]
  1522. ))
  1523. characterMakers.push(() => makeCharacter(
  1524. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1525. {
  1526. front: {
  1527. height: math.unit(183, "cm"),
  1528. weight: math.unit(80, "kg"),
  1529. name: "Front",
  1530. image: {
  1531. source: "./media/characters/sofia-fluttertail/front.svg",
  1532. bottom: 0.01,
  1533. extra: 2154 / 2081
  1534. }
  1535. },
  1536. frontAlt: {
  1537. height: math.unit(183, "cm"),
  1538. weight: math.unit(80, "kg"),
  1539. name: "Front (alt)",
  1540. image: {
  1541. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1542. }
  1543. },
  1544. back: {
  1545. height: math.unit(183, "cm"),
  1546. weight: math.unit(80, "kg"),
  1547. name: "Back",
  1548. image: {
  1549. source: "./media/characters/sofia-fluttertail/back.svg"
  1550. }
  1551. },
  1552. kneeling: {
  1553. height: math.unit(125, "cm"),
  1554. weight: math.unit(80, "kg"),
  1555. name: "Kneeling",
  1556. image: {
  1557. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1558. extra: 1033 / 977,
  1559. bottom: 23.7 / 1057
  1560. }
  1561. },
  1562. maw: {
  1563. height: math.unit(183 / 5, "cm"),
  1564. name: "Maw",
  1565. image: {
  1566. source: "./media/characters/sofia-fluttertail/maw.svg"
  1567. }
  1568. },
  1569. mawcloseup: {
  1570. height: math.unit(183 / 5 * 0.41, "cm"),
  1571. name: "Maw (Closeup)",
  1572. image: {
  1573. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1574. }
  1575. },
  1576. },
  1577. [
  1578. {
  1579. name: "Normal",
  1580. height: math.unit(1.83, "meter")
  1581. },
  1582. {
  1583. name: "Size Thief",
  1584. height: math.unit(18, "feet")
  1585. },
  1586. {
  1587. name: "50 Foot Collie",
  1588. height: math.unit(50, "feet")
  1589. },
  1590. {
  1591. name: "Macro",
  1592. height: math.unit(96, "feet"),
  1593. default: true
  1594. },
  1595. {
  1596. name: "Megamerger",
  1597. height: math.unit(650, "feet")
  1598. },
  1599. ]
  1600. ))
  1601. characterMakers.push(() => makeCharacter(
  1602. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1603. {
  1604. front: {
  1605. height: math.unit(7, "feet"),
  1606. weight: math.unit(100, "kg"),
  1607. name: "Front",
  1608. image: {
  1609. source: "./media/characters/march/front.svg",
  1610. extra: 1,
  1611. bottom: 0.015
  1612. }
  1613. },
  1614. foot: {
  1615. height: math.unit(0.9, "feet"),
  1616. name: "Foot",
  1617. image: {
  1618. source: "./media/characters/march/foot.svg"
  1619. }
  1620. },
  1621. },
  1622. [
  1623. {
  1624. name: "Normal",
  1625. height: math.unit(7.9, "feet")
  1626. },
  1627. {
  1628. name: "Macro",
  1629. height: math.unit(220, "meters")
  1630. },
  1631. {
  1632. name: "Megamacro",
  1633. height: math.unit(2.98, "km"),
  1634. default: true
  1635. },
  1636. {
  1637. name: "Gigamacro",
  1638. height: math.unit(15963, "km")
  1639. },
  1640. {
  1641. name: "Teramacro",
  1642. height: math.unit(2980000000, "km")
  1643. },
  1644. {
  1645. name: "Examacro",
  1646. height: math.unit(250, "parsecs")
  1647. },
  1648. ]
  1649. ))
  1650. characterMakers.push(() => makeCharacter(
  1651. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1652. {
  1653. front: {
  1654. height: math.unit(6, "feet"),
  1655. weight: math.unit(60, "kg"),
  1656. name: "Front",
  1657. image: {
  1658. source: "./media/characters/noir/front.svg",
  1659. extra: 1,
  1660. bottom: 0.032
  1661. }
  1662. },
  1663. },
  1664. [
  1665. {
  1666. name: "Normal",
  1667. height: math.unit(6.6, "feet")
  1668. },
  1669. {
  1670. name: "Macro",
  1671. height: math.unit(500, "feet")
  1672. },
  1673. {
  1674. name: "Megamacro",
  1675. height: math.unit(2.5, "km"),
  1676. default: true
  1677. },
  1678. {
  1679. name: "Gigamacro",
  1680. height: math.unit(22500, "km")
  1681. },
  1682. {
  1683. name: "Teramacro",
  1684. height: math.unit(2500000000, "km")
  1685. },
  1686. {
  1687. name: "Examacro",
  1688. height: math.unit(200, "parsecs")
  1689. },
  1690. ]
  1691. ))
  1692. characterMakers.push(() => makeCharacter(
  1693. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1694. {
  1695. front: {
  1696. height: math.unit(7, "feet"),
  1697. weight: math.unit(100, "kg"),
  1698. name: "Front",
  1699. image: {
  1700. source: "./media/characters/okuri/front.svg",
  1701. extra: 1,
  1702. bottom: 0.037
  1703. }
  1704. },
  1705. back: {
  1706. height: math.unit(7, "feet"),
  1707. weight: math.unit(100, "kg"),
  1708. name: "Back",
  1709. image: {
  1710. source: "./media/characters/okuri/back.svg",
  1711. extra: 1,
  1712. bottom: 0.007
  1713. }
  1714. },
  1715. },
  1716. [
  1717. {
  1718. name: "Megamacro",
  1719. height: math.unit(100, "miles"),
  1720. default: true
  1721. },
  1722. ]
  1723. ))
  1724. characterMakers.push(() => makeCharacter(
  1725. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1726. {
  1727. front: {
  1728. height: math.unit(7, "feet"),
  1729. weight: math.unit(100, "kg"),
  1730. name: "Front",
  1731. image: {
  1732. source: "./media/characters/manny/front.svg",
  1733. extra: 1,
  1734. bottom: 0.06
  1735. }
  1736. },
  1737. back: {
  1738. height: math.unit(7, "feet"),
  1739. weight: math.unit(100, "kg"),
  1740. name: "Back",
  1741. image: {
  1742. source: "./media/characters/manny/back.svg",
  1743. extra: 1,
  1744. bottom: 0.014
  1745. }
  1746. },
  1747. },
  1748. [
  1749. {
  1750. name: "Normal",
  1751. height: math.unit(7, "feet"),
  1752. },
  1753. {
  1754. name: "Macro",
  1755. height: math.unit(78, "feet"),
  1756. default: true
  1757. },
  1758. {
  1759. name: "Macro+",
  1760. height: math.unit(300, "meters")
  1761. },
  1762. {
  1763. name: "Macro++",
  1764. height: math.unit(2400, "meters")
  1765. },
  1766. {
  1767. name: "Megamacro",
  1768. height: math.unit(5167, "meters")
  1769. },
  1770. {
  1771. name: "Gigamacro",
  1772. height: math.unit(41769, "miles")
  1773. },
  1774. ]
  1775. ))
  1776. characterMakers.push(() => makeCharacter(
  1777. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1778. {
  1779. front: {
  1780. height: math.unit(7, "feet"),
  1781. weight: math.unit(100, "kg"),
  1782. name: "Front",
  1783. image: {
  1784. source: "./media/characters/adake/front-1.svg"
  1785. }
  1786. },
  1787. frontAlt: {
  1788. height: math.unit(7, "feet"),
  1789. weight: math.unit(100, "kg"),
  1790. name: "Front (Alt)",
  1791. image: {
  1792. source: "./media/characters/adake/front-2.svg",
  1793. extra: 1,
  1794. bottom: 0.01
  1795. }
  1796. },
  1797. back: {
  1798. height: math.unit(7, "feet"),
  1799. weight: math.unit(100, "kg"),
  1800. name: "Back",
  1801. image: {
  1802. source: "./media/characters/adake/back.svg",
  1803. }
  1804. },
  1805. kneel: {
  1806. height: math.unit(5.385, "feet"),
  1807. weight: math.unit(100, "kg"),
  1808. name: "Kneeling",
  1809. image: {
  1810. source: "./media/characters/adake/kneel.svg",
  1811. bottom: 0.052
  1812. }
  1813. },
  1814. },
  1815. [
  1816. {
  1817. name: "Normal",
  1818. height: math.unit(7, "feet"),
  1819. },
  1820. {
  1821. name: "Macro",
  1822. height: math.unit(78, "feet"),
  1823. default: true
  1824. },
  1825. {
  1826. name: "Macro+",
  1827. height: math.unit(300, "meters")
  1828. },
  1829. {
  1830. name: "Macro++",
  1831. height: math.unit(2400, "meters")
  1832. },
  1833. {
  1834. name: "Megamacro",
  1835. height: math.unit(5167, "meters")
  1836. },
  1837. {
  1838. name: "Gigamacro",
  1839. height: math.unit(41769, "miles")
  1840. },
  1841. ]
  1842. ))
  1843. characterMakers.push(() => makeCharacter(
  1844. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1845. {
  1846. front: {
  1847. height: math.unit(1.65, "meters"),
  1848. weight: math.unit(50, "kg"),
  1849. name: "Front",
  1850. image: {
  1851. source: "./media/characters/elijah/front.svg",
  1852. extra: 858 / 830,
  1853. bottom: 95.5 / 953.8559
  1854. }
  1855. },
  1856. back: {
  1857. height: math.unit(1.65, "meters"),
  1858. weight: math.unit(50, "kg"),
  1859. name: "Back",
  1860. image: {
  1861. source: "./media/characters/elijah/back.svg",
  1862. extra: 895 / 850,
  1863. bottom: 5.3 / 897.956
  1864. }
  1865. },
  1866. frontNsfw: {
  1867. height: math.unit(1.65, "meters"),
  1868. weight: math.unit(50, "kg"),
  1869. name: "Front (NSFW)",
  1870. image: {
  1871. source: "./media/characters/elijah/front-nsfw.svg",
  1872. extra: 858 / 830,
  1873. bottom: 95.5 / 953.8559
  1874. }
  1875. },
  1876. backNsfw: {
  1877. height: math.unit(1.65, "meters"),
  1878. weight: math.unit(50, "kg"),
  1879. name: "Back (NSFW)",
  1880. image: {
  1881. source: "./media/characters/elijah/back-nsfw.svg",
  1882. extra: 895 / 850,
  1883. bottom: 5.3 / 897.956
  1884. }
  1885. },
  1886. dick: {
  1887. height: math.unit(1, "feet"),
  1888. name: "Dick",
  1889. image: {
  1890. source: "./media/characters/elijah/dick.svg"
  1891. }
  1892. },
  1893. beakOpen: {
  1894. height: math.unit(1.25, "feet"),
  1895. name: "Beak (Open)",
  1896. image: {
  1897. source: "./media/characters/elijah/beak-open.svg"
  1898. }
  1899. },
  1900. beakShut: {
  1901. height: math.unit(1.25, "feet"),
  1902. name: "Beak (Shut)",
  1903. image: {
  1904. source: "./media/characters/elijah/beak-shut.svg"
  1905. }
  1906. },
  1907. footFlexing: {
  1908. height: math.unit(1.61, "feet"),
  1909. name: "Foot (Flexing)",
  1910. image: {
  1911. source: "./media/characters/elijah/foot-flexing.svg"
  1912. }
  1913. },
  1914. footStepping: {
  1915. height: math.unit(1.44, "feet"),
  1916. name: "Foot (Stepping)",
  1917. image: {
  1918. source: "./media/characters/elijah/foot-stepping.svg"
  1919. }
  1920. },
  1921. plantigradeLeg: {
  1922. height: math.unit(2.34, "feet"),
  1923. name: "Plantigrade Leg",
  1924. image: {
  1925. source: "./media/characters/elijah/plantigrade-leg.svg"
  1926. }
  1927. },
  1928. plantigradeFootLeft: {
  1929. height: math.unit(0.9, "feet"),
  1930. name: "Plantigrade Foot (Left)",
  1931. image: {
  1932. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1933. }
  1934. },
  1935. plantigradeFootRight: {
  1936. height: math.unit(0.9, "feet"),
  1937. name: "Plantigrade Foot (Right)",
  1938. image: {
  1939. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1940. }
  1941. },
  1942. },
  1943. [
  1944. {
  1945. name: "Normal",
  1946. height: math.unit(1.65, "meters")
  1947. },
  1948. {
  1949. name: "Macro",
  1950. height: math.unit(55, "meters"),
  1951. default: true
  1952. },
  1953. {
  1954. name: "Macro+",
  1955. height: math.unit(105, "meters")
  1956. },
  1957. ]
  1958. ))
  1959. characterMakers.push(() => makeCharacter(
  1960. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1961. {
  1962. front: {
  1963. height: math.unit(11, "feet"),
  1964. weight: math.unit(80, "kg"),
  1965. name: "Front",
  1966. image: {
  1967. source: "./media/characters/rai/front.svg",
  1968. extra: 1,
  1969. bottom: 0.03
  1970. }
  1971. },
  1972. side: {
  1973. height: math.unit(11, "feet"),
  1974. weight: math.unit(80, "kg"),
  1975. name: "Side",
  1976. image: {
  1977. source: "./media/characters/rai/side.svg"
  1978. }
  1979. },
  1980. back: {
  1981. height: math.unit(11, "feet"),
  1982. weight: math.unit(80, "lb"),
  1983. name: "Back",
  1984. image: {
  1985. source: "./media/characters/rai/back.svg",
  1986. extra: 1,
  1987. bottom: 0.01
  1988. }
  1989. },
  1990. feral: {
  1991. height: math.unit(11, "feet"),
  1992. weight: math.unit(800, "lb"),
  1993. name: "Feral",
  1994. image: {
  1995. source: "./media/characters/rai/feral.svg",
  1996. extra: 1050 / 659,
  1997. bottom: 0.07
  1998. }
  1999. },
  2000. dragon: {
  2001. height: math.unit(23, "feet"),
  2002. weight: math.unit(50000, "lb"),
  2003. name: "Dragon",
  2004. image: {
  2005. source: "./media/characters/rai/dragon.svg",
  2006. extra: 2498 / 2030,
  2007. bottom: 85.2 / 2584
  2008. }
  2009. },
  2010. maw: {
  2011. height: math.unit(6 / 3.81416, "feet"),
  2012. name: "Maw",
  2013. image: {
  2014. source: "./media/characters/rai/maw.svg"
  2015. }
  2016. },
  2017. },
  2018. [
  2019. {
  2020. name: "Normal",
  2021. height: math.unit(11, "feet")
  2022. },
  2023. {
  2024. name: "Macro",
  2025. height: math.unit(302, "feet"),
  2026. default: true
  2027. },
  2028. ]
  2029. ))
  2030. characterMakers.push(() => makeCharacter(
  2031. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2032. {
  2033. frontDressed: {
  2034. height: math.unit(216, "feet"),
  2035. weight: math.unit(7000000, "lb"),
  2036. name: "Front (Dressed)",
  2037. image: {
  2038. source: "./media/characters/jazzy/front-dressed.svg",
  2039. extra: 2738 / 2651,
  2040. bottom: 41.8 / 2786
  2041. }
  2042. },
  2043. backDressed: {
  2044. height: math.unit(216, "feet"),
  2045. weight: math.unit(7000000, "lb"),
  2046. name: "Back (Dressed)",
  2047. image: {
  2048. source: "./media/characters/jazzy/back-dressed.svg",
  2049. extra: 2775 / 2673,
  2050. bottom: 36.8 / 2817
  2051. }
  2052. },
  2053. front: {
  2054. height: math.unit(216, "feet"),
  2055. weight: math.unit(7000000, "lb"),
  2056. name: "Front",
  2057. image: {
  2058. source: "./media/characters/jazzy/front.svg",
  2059. extra: 2738 / 2651,
  2060. bottom: 41.8 / 2786
  2061. }
  2062. },
  2063. back: {
  2064. height: math.unit(216, "feet"),
  2065. weight: math.unit(7000000, "lb"),
  2066. name: "Back",
  2067. image: {
  2068. source: "./media/characters/jazzy/back.svg",
  2069. extra: 2775 / 2673,
  2070. bottom: 36.8 / 2817
  2071. }
  2072. },
  2073. maw: {
  2074. height: math.unit(20, "feet"),
  2075. name: "Maw",
  2076. image: {
  2077. source: "./media/characters/jazzy/maw.svg"
  2078. }
  2079. },
  2080. paws: {
  2081. height: math.unit(27.5, "feet"),
  2082. name: "Paws",
  2083. image: {
  2084. source: "./media/characters/jazzy/paws.svg"
  2085. }
  2086. },
  2087. eye: {
  2088. height: math.unit(4.4, "feet"),
  2089. name: "Eye",
  2090. image: {
  2091. source: "./media/characters/jazzy/eye.svg"
  2092. }
  2093. },
  2094. droneOffense: {
  2095. height: math.unit(9.5, "inches"),
  2096. name: "Drone (Offense)",
  2097. image: {
  2098. source: "./media/characters/jazzy/drone-offense.svg"
  2099. }
  2100. },
  2101. droneRecon: {
  2102. height: math.unit(9.5, "inches"),
  2103. name: "Drone (Recon)",
  2104. image: {
  2105. source: "./media/characters/jazzy/drone-recon.svg"
  2106. }
  2107. },
  2108. droneDefense: {
  2109. height: math.unit(9.5, "inches"),
  2110. name: "Drone (Defense)",
  2111. image: {
  2112. source: "./media/characters/jazzy/drone-defense.svg"
  2113. }
  2114. },
  2115. },
  2116. [
  2117. {
  2118. name: "Macro",
  2119. height: math.unit(216, "feet"),
  2120. default: true
  2121. },
  2122. ]
  2123. ))
  2124. characterMakers.push(() => makeCharacter(
  2125. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2126. {
  2127. front: {
  2128. height: math.unit(7, "feet"),
  2129. weight: math.unit(80, "kg"),
  2130. name: "Front",
  2131. image: {
  2132. source: "./media/characters/flamm/front.svg",
  2133. extra: 1794 / 1677,
  2134. bottom: 31.7 / 1828.5
  2135. }
  2136. },
  2137. },
  2138. [
  2139. {
  2140. name: "Normal",
  2141. height: math.unit(9.5, "feet")
  2142. },
  2143. {
  2144. name: "Macro",
  2145. height: math.unit(200, "feet"),
  2146. default: true
  2147. },
  2148. ]
  2149. ))
  2150. characterMakers.push(() => makeCharacter(
  2151. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2152. {
  2153. front: {
  2154. height: math.unit(7, "feet"),
  2155. weight: math.unit(80, "kg"),
  2156. name: "Front",
  2157. image: {
  2158. source: "./media/characters/zephiro/front.svg",
  2159. extra: 2309 / 2162,
  2160. bottom: 0.069
  2161. }
  2162. },
  2163. side: {
  2164. height: math.unit(7, "feet"),
  2165. weight: math.unit(80, "kg"),
  2166. name: "Side",
  2167. image: {
  2168. source: "./media/characters/zephiro/side.svg",
  2169. extra: 2403 / 2279,
  2170. bottom: 0.015
  2171. }
  2172. },
  2173. back: {
  2174. height: math.unit(7, "feet"),
  2175. weight: math.unit(80, "kg"),
  2176. name: "Back",
  2177. image: {
  2178. source: "./media/characters/zephiro/back.svg",
  2179. extra: 2373 / 2244,
  2180. bottom: 0.013
  2181. }
  2182. },
  2183. },
  2184. [
  2185. {
  2186. name: "Micro",
  2187. height: math.unit(3, "inches")
  2188. },
  2189. {
  2190. name: "Normal",
  2191. height: math.unit(5 + 3 / 12, "feet"),
  2192. default: true
  2193. },
  2194. {
  2195. name: "Macro",
  2196. height: math.unit(118, "feet")
  2197. },
  2198. ]
  2199. ))
  2200. characterMakers.push(() => makeCharacter(
  2201. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2202. {
  2203. front: {
  2204. height: math.unit(5, "feet"),
  2205. weight: math.unit(90, "kg"),
  2206. name: "Front",
  2207. image: {
  2208. source: "./media/characters/fory/front.svg",
  2209. extra: 2862 / 2674,
  2210. bottom: 180 / 3043.8
  2211. }
  2212. },
  2213. back: {
  2214. height: math.unit(5, "feet"),
  2215. weight: math.unit(90, "kg"),
  2216. name: "Back",
  2217. image: {
  2218. source: "./media/characters/fory/back.svg",
  2219. extra: 2962 / 2791,
  2220. bottom: 106 / 3071.8
  2221. }
  2222. },
  2223. foot: {
  2224. height: math.unit(2.14, "feet"),
  2225. name: "Foot",
  2226. image: {
  2227. source: "./media/characters/fory/foot.svg"
  2228. }
  2229. },
  2230. },
  2231. [
  2232. {
  2233. name: "Normal",
  2234. height: math.unit(5, "feet")
  2235. },
  2236. {
  2237. name: "Macro",
  2238. height: math.unit(50, "feet"),
  2239. default: true
  2240. },
  2241. {
  2242. name: "Megamacro",
  2243. height: math.unit(10, "miles")
  2244. },
  2245. {
  2246. name: "Gigamacro",
  2247. height: math.unit(5, "earths")
  2248. },
  2249. ]
  2250. ))
  2251. characterMakers.push(() => makeCharacter(
  2252. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2253. {
  2254. front: {
  2255. height: math.unit(7, "feet"),
  2256. weight: math.unit(90, "kg"),
  2257. name: "Front",
  2258. image: {
  2259. source: "./media/characters/kurrikage/front.svg",
  2260. extra: 1,
  2261. bottom: 0.035
  2262. }
  2263. },
  2264. back: {
  2265. height: math.unit(7, "feet"),
  2266. weight: math.unit(90, "lb"),
  2267. name: "Back",
  2268. image: {
  2269. source: "./media/characters/kurrikage/back.svg"
  2270. }
  2271. },
  2272. paw: {
  2273. height: math.unit(1.5, "feet"),
  2274. name: "Paw",
  2275. image: {
  2276. source: "./media/characters/kurrikage/paw.svg"
  2277. }
  2278. },
  2279. staff: {
  2280. height: math.unit(6.7, "feet"),
  2281. name: "Staff",
  2282. image: {
  2283. source: "./media/characters/kurrikage/staff.svg"
  2284. }
  2285. },
  2286. peek: {
  2287. height: math.unit(1.05, "feet"),
  2288. name: "Peeking",
  2289. image: {
  2290. source: "./media/characters/kurrikage/peek.svg",
  2291. bottom: 0.08
  2292. }
  2293. },
  2294. },
  2295. [
  2296. {
  2297. name: "Normal",
  2298. height: math.unit(12, "feet"),
  2299. default: true
  2300. },
  2301. {
  2302. name: "Big",
  2303. height: math.unit(20, "feet")
  2304. },
  2305. {
  2306. name: "Macro",
  2307. height: math.unit(500, "feet")
  2308. },
  2309. {
  2310. name: "Megamacro",
  2311. height: math.unit(20, "miles")
  2312. },
  2313. ]
  2314. ))
  2315. characterMakers.push(() => makeCharacter(
  2316. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2317. {
  2318. front: {
  2319. height: math.unit(6, "feet"),
  2320. weight: math.unit(75, "kg"),
  2321. name: "Front",
  2322. image: {
  2323. source: "./media/characters/shingo/front.svg",
  2324. extra: 3511 / 3338,
  2325. bottom: 0.005
  2326. }
  2327. },
  2328. paw: {
  2329. height: math.unit(1, "feet"),
  2330. name: "Paw",
  2331. image: {
  2332. source: "./media/characters/shingo/paw.svg"
  2333. }
  2334. },
  2335. },
  2336. [
  2337. {
  2338. name: "Micro",
  2339. height: math.unit(4, "inches")
  2340. },
  2341. {
  2342. name: "Normal",
  2343. height: math.unit(6, "feet"),
  2344. default: true
  2345. },
  2346. {
  2347. name: "Macro",
  2348. height: math.unit(108, "feet")
  2349. }
  2350. ]
  2351. ))
  2352. characterMakers.push(() => makeCharacter(
  2353. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2354. {
  2355. side: {
  2356. height: math.unit(6, "feet"),
  2357. weight: math.unit(75, "kg"),
  2358. name: "Side",
  2359. image: {
  2360. source: "./media/characters/aigey/side.svg"
  2361. }
  2362. },
  2363. },
  2364. [
  2365. {
  2366. name: "Macro",
  2367. height: math.unit(200, "feet"),
  2368. default: true
  2369. },
  2370. {
  2371. name: "Megamacro",
  2372. height: math.unit(100, "miles")
  2373. },
  2374. ]
  2375. )
  2376. )
  2377. characterMakers.push(() => makeCharacter(
  2378. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2379. {
  2380. front: {
  2381. height: math.unit(5 + 5 / 12, "feet"),
  2382. weight: math.unit(75, "kg"),
  2383. name: "Front",
  2384. image: {
  2385. source: "./media/characters/natasha/front.svg",
  2386. extra: 859 / 824,
  2387. bottom: 23 / 879.6
  2388. }
  2389. },
  2390. frontNsfw: {
  2391. height: math.unit(5 + 5 / 12, "feet"),
  2392. weight: math.unit(75, "kg"),
  2393. name: "Front (NSFW)",
  2394. image: {
  2395. source: "./media/characters/natasha/front-nsfw.svg",
  2396. extra: 859 / 824,
  2397. bottom: 23 / 879.6
  2398. }
  2399. },
  2400. frontErect: {
  2401. height: math.unit(5 + 5 / 12, "feet"),
  2402. weight: math.unit(75, "kg"),
  2403. name: "Front (Erect)",
  2404. image: {
  2405. source: "./media/characters/natasha/front-erect.svg",
  2406. extra: 859 / 824,
  2407. bottom: 23 / 879.6
  2408. }
  2409. },
  2410. back: {
  2411. height: math.unit(5 + 5 / 12, "feet"),
  2412. weight: math.unit(75, "kg"),
  2413. name: "Back",
  2414. image: {
  2415. source: "./media/characters/natasha/back.svg",
  2416. extra: 887.9 / 852.6,
  2417. bottom: 9.7 / 896.4
  2418. }
  2419. },
  2420. backAlt: {
  2421. height: math.unit(5 + 5 / 12, "feet"),
  2422. weight: math.unit(75, "kg"),
  2423. name: "Back (Alt)",
  2424. image: {
  2425. source: "./media/characters/natasha/back-alt.svg",
  2426. extra: 1236.7 / 1192,
  2427. bottom: 22.3 / 1258.2
  2428. }
  2429. },
  2430. dick: {
  2431. height: math.unit(1.772, "feet"),
  2432. name: "Dick",
  2433. image: {
  2434. source: "./media/characters/natasha/dick.svg"
  2435. }
  2436. },
  2437. paw: {
  2438. height: math.unit(0.250, "meters"),
  2439. name: "Paw",
  2440. image: {
  2441. source: "./media/characters/natasha/paw.svg"
  2442. }
  2443. },
  2444. },
  2445. [
  2446. {
  2447. name: "Normal",
  2448. height: math.unit(5 + 5 / 12, "feet")
  2449. },
  2450. {
  2451. name: "Large",
  2452. height: math.unit(12, "feet")
  2453. },
  2454. {
  2455. name: "Macro",
  2456. height: math.unit(100, "feet"),
  2457. default: true
  2458. },
  2459. {
  2460. name: "Macro+",
  2461. height: math.unit(260, "feet")
  2462. },
  2463. {
  2464. name: "Macro++",
  2465. height: math.unit(1, "mile")
  2466. },
  2467. ]
  2468. ))
  2469. characterMakers.push(() => makeCharacter(
  2470. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2471. {
  2472. front: {
  2473. height: math.unit(6, "feet"),
  2474. weight: math.unit(75, "kg"),
  2475. name: "Front",
  2476. image: {
  2477. source: "./media/characters/malik/front.svg"
  2478. }
  2479. },
  2480. side: {
  2481. height: math.unit(6, "feet"),
  2482. weight: math.unit(75, "kg"),
  2483. name: "Side",
  2484. image: {
  2485. source: "./media/characters/malik/side.svg",
  2486. extra: 1.1539
  2487. }
  2488. },
  2489. back: {
  2490. height: math.unit(6, "feet"),
  2491. weight: math.unit(75, "kg"),
  2492. name: "Back",
  2493. image: {
  2494. source: "./media/characters/malik/back.svg"
  2495. }
  2496. },
  2497. },
  2498. [
  2499. {
  2500. name: "Macro",
  2501. height: math.unit(156, "feet"),
  2502. default: true
  2503. },
  2504. {
  2505. name: "Macro+",
  2506. height: math.unit(1188, "feet")
  2507. },
  2508. ]
  2509. ))
  2510. characterMakers.push(() => makeCharacter(
  2511. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2512. {
  2513. front: {
  2514. height: math.unit(6, "feet"),
  2515. weight: math.unit(75, "kg"),
  2516. name: "Front",
  2517. image: {
  2518. source: "./media/characters/sefer/front.svg",
  2519. extra: 848 / 659,
  2520. bottom: 28.3 / 876.442
  2521. }
  2522. },
  2523. back: {
  2524. height: math.unit(6, "feet"),
  2525. weight: math.unit(75, "kg"),
  2526. name: "Back",
  2527. image: {
  2528. source: "./media/characters/sefer/back.svg",
  2529. extra: 864 / 695,
  2530. bottom: 10 / 871
  2531. }
  2532. },
  2533. frontDressed: {
  2534. height: math.unit(6, "feet"),
  2535. weight: math.unit(75, "kg"),
  2536. name: "Front (Dressed)",
  2537. image: {
  2538. source: "./media/characters/sefer/front-dressed.svg",
  2539. extra: 839 / 653,
  2540. bottom: 37.6 / 878
  2541. }
  2542. },
  2543. },
  2544. [
  2545. {
  2546. name: "Normal",
  2547. height: math.unit(6, "feet"),
  2548. default: true
  2549. },
  2550. ]
  2551. ))
  2552. characterMakers.push(() => makeCharacter(
  2553. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2554. {
  2555. body: {
  2556. height: math.unit(2.2428, "meter"),
  2557. weight: math.unit(124.738, "kg"),
  2558. name: "Body",
  2559. image: {
  2560. extra: 1225 / 1050,
  2561. source: "./media/characters/north/front.svg"
  2562. }
  2563. }
  2564. },
  2565. [
  2566. {
  2567. name: "Micro",
  2568. height: math.unit(4, "inches")
  2569. },
  2570. {
  2571. name: "Macro",
  2572. height: math.unit(63, "meters")
  2573. },
  2574. {
  2575. name: "Megamacro",
  2576. height: math.unit(101, "miles"),
  2577. default: true
  2578. }
  2579. ]
  2580. ))
  2581. characterMakers.push(() => makeCharacter(
  2582. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2583. {
  2584. angled: {
  2585. height: math.unit(4, "meter"),
  2586. weight: math.unit(150, "kg"),
  2587. name: "Angled",
  2588. image: {
  2589. source: "./media/characters/talan/angled-sfw.svg",
  2590. bottom: 29 / 3734
  2591. }
  2592. },
  2593. angledNsfw: {
  2594. height: math.unit(4, "meter"),
  2595. weight: math.unit(150, "kg"),
  2596. name: "Angled (NSFW)",
  2597. image: {
  2598. source: "./media/characters/talan/angled-nsfw.svg",
  2599. bottom: 29 / 3734
  2600. }
  2601. },
  2602. frontNsfw: {
  2603. height: math.unit(4, "meter"),
  2604. weight: math.unit(150, "kg"),
  2605. name: "Front (NSFW)",
  2606. image: {
  2607. source: "./media/characters/talan/front-nsfw.svg",
  2608. bottom: 29 / 3734
  2609. }
  2610. },
  2611. sideNsfw: {
  2612. height: math.unit(4, "meter"),
  2613. weight: math.unit(150, "kg"),
  2614. name: "Side (NSFW)",
  2615. image: {
  2616. source: "./media/characters/talan/side-nsfw.svg",
  2617. bottom: 29 / 3734
  2618. }
  2619. },
  2620. back: {
  2621. height: math.unit(4, "meter"),
  2622. weight: math.unit(150, "kg"),
  2623. name: "Back",
  2624. image: {
  2625. source: "./media/characters/talan/back.svg"
  2626. }
  2627. },
  2628. dickBottom: {
  2629. height: math.unit(0.621, "meter"),
  2630. name: "Dick (Bottom)",
  2631. image: {
  2632. source: "./media/characters/talan/dick-bottom.svg"
  2633. }
  2634. },
  2635. dickTop: {
  2636. height: math.unit(0.621, "meter"),
  2637. name: "Dick (Top)",
  2638. image: {
  2639. source: "./media/characters/talan/dick-top.svg"
  2640. }
  2641. },
  2642. dickSide: {
  2643. height: math.unit(0.305, "meter"),
  2644. name: "Dick (Side)",
  2645. image: {
  2646. source: "./media/characters/talan/dick-side.svg"
  2647. }
  2648. },
  2649. dickFront: {
  2650. height: math.unit(0.305, "meter"),
  2651. name: "Dick (Front)",
  2652. image: {
  2653. source: "./media/characters/talan/dick-front.svg"
  2654. }
  2655. },
  2656. },
  2657. [
  2658. {
  2659. name: "Normal",
  2660. height: math.unit(4, "meters")
  2661. },
  2662. {
  2663. name: "Macro",
  2664. height: math.unit(100, "meters")
  2665. },
  2666. {
  2667. name: "Megamacro",
  2668. height: math.unit(2, "miles"),
  2669. default: true
  2670. },
  2671. {
  2672. name: "Gigamacro",
  2673. height: math.unit(5000, "miles")
  2674. },
  2675. {
  2676. name: "Teramacro",
  2677. height: math.unit(100, "parsecs")
  2678. }
  2679. ]
  2680. ))
  2681. characterMakers.push(() => makeCharacter(
  2682. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2683. {
  2684. front: {
  2685. height: math.unit(2, "meter"),
  2686. weight: math.unit(90, "kg"),
  2687. name: "Front",
  2688. image: {
  2689. source: "./media/characters/gael'rathus/front.svg"
  2690. }
  2691. },
  2692. frontAlt: {
  2693. height: math.unit(2, "meter"),
  2694. weight: math.unit(90, "kg"),
  2695. name: "Front (alt)",
  2696. image: {
  2697. source: "./media/characters/gael'rathus/front-alt.svg"
  2698. }
  2699. },
  2700. frontAlt2: {
  2701. height: math.unit(2, "meter"),
  2702. weight: math.unit(90, "kg"),
  2703. name: "Front (alt 2)",
  2704. image: {
  2705. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2706. }
  2707. }
  2708. },
  2709. [
  2710. {
  2711. name: "Normal",
  2712. height: math.unit(9, "feet"),
  2713. default: true
  2714. },
  2715. {
  2716. name: "Large",
  2717. height: math.unit(25, "feet")
  2718. },
  2719. {
  2720. name: "Macro",
  2721. height: math.unit(0.25, "miles")
  2722. },
  2723. {
  2724. name: "Megamacro",
  2725. height: math.unit(10, "miles")
  2726. }
  2727. ]
  2728. ))
  2729. characterMakers.push(() => makeCharacter(
  2730. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2731. {
  2732. side: {
  2733. height: math.unit(2, "meter"),
  2734. weight: math.unit(140, "kg"),
  2735. name: "Side",
  2736. image: {
  2737. source: "./media/characters/sosha/side.svg",
  2738. bottom: 0.042
  2739. }
  2740. },
  2741. },
  2742. [
  2743. {
  2744. name: "Normal",
  2745. height: math.unit(12, "feet"),
  2746. default: true
  2747. }
  2748. ]
  2749. ))
  2750. characterMakers.push(() => makeCharacter(
  2751. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2752. {
  2753. side: {
  2754. height: math.unit(5 + 5 / 12, "feet"),
  2755. weight: math.unit(170, "kg"),
  2756. name: "Side",
  2757. image: {
  2758. source: "./media/characters/runnola/side.svg",
  2759. extra: 741 / 448,
  2760. bottom: 0.05
  2761. }
  2762. },
  2763. },
  2764. [
  2765. {
  2766. name: "Small",
  2767. height: math.unit(3, "feet")
  2768. },
  2769. {
  2770. name: "Normal",
  2771. height: math.unit(5 + 5 / 12, "feet"),
  2772. default: true
  2773. },
  2774. {
  2775. name: "Big",
  2776. height: math.unit(10, "feet")
  2777. },
  2778. ]
  2779. ))
  2780. characterMakers.push(() => makeCharacter(
  2781. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2782. {
  2783. front: {
  2784. height: math.unit(2, "meter"),
  2785. weight: math.unit(50, "kg"),
  2786. name: "Front",
  2787. image: {
  2788. source: "./media/characters/kurribird/front.svg",
  2789. bottom: 0.015
  2790. }
  2791. },
  2792. frontAlt: {
  2793. height: math.unit(1.5, "meter"),
  2794. weight: math.unit(50, "kg"),
  2795. name: "Front (Alt)",
  2796. image: {
  2797. source: "./media/characters/kurribird/front-alt.svg",
  2798. extra: 1.45
  2799. }
  2800. },
  2801. },
  2802. [
  2803. {
  2804. name: "Normal",
  2805. height: math.unit(7, "feet")
  2806. },
  2807. {
  2808. name: "Big",
  2809. height: math.unit(12, "feet"),
  2810. default: true
  2811. },
  2812. {
  2813. name: "Macro",
  2814. height: math.unit(1500, "feet")
  2815. },
  2816. {
  2817. name: "Megamacro",
  2818. height: math.unit(2, "miles")
  2819. }
  2820. ]
  2821. ))
  2822. characterMakers.push(() => makeCharacter(
  2823. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2824. {
  2825. front: {
  2826. height: math.unit(2, "meter"),
  2827. weight: math.unit(80, "kg"),
  2828. name: "Front",
  2829. image: {
  2830. source: "./media/characters/elbial/front.svg",
  2831. extra: 1643 / 1556,
  2832. bottom: 60.2 / 1696
  2833. }
  2834. },
  2835. side: {
  2836. height: math.unit(2, "meter"),
  2837. weight: math.unit(80, "kg"),
  2838. name: "Side",
  2839. image: {
  2840. source: "./media/characters/elbial/side.svg",
  2841. extra: 1630 / 1565,
  2842. bottom: 71.5 / 1697
  2843. }
  2844. },
  2845. back: {
  2846. height: math.unit(2, "meter"),
  2847. weight: math.unit(80, "kg"),
  2848. name: "Back",
  2849. image: {
  2850. source: "./media/characters/elbial/back.svg",
  2851. extra: 1668 / 1595,
  2852. bottom: 5.6 / 1672
  2853. }
  2854. },
  2855. frontDressed: {
  2856. height: math.unit(2, "meter"),
  2857. weight: math.unit(80, "kg"),
  2858. name: "Front (Dressed)",
  2859. image: {
  2860. source: "./media/characters/elbial/front-dressed.svg",
  2861. extra: 1653 / 1584,
  2862. bottom: 57 / 1708
  2863. }
  2864. },
  2865. genitals: {
  2866. height: math.unit(2 / 3.367, "meter"),
  2867. name: "Genitals",
  2868. image: {
  2869. source: "./media/characters/elbial/genitals.svg"
  2870. }
  2871. },
  2872. },
  2873. [
  2874. {
  2875. name: "Large",
  2876. height: math.unit(100, "feet")
  2877. },
  2878. {
  2879. name: "Macro",
  2880. height: math.unit(500, "feet"),
  2881. default: true
  2882. },
  2883. {
  2884. name: "Megamacro",
  2885. height: math.unit(10, "miles")
  2886. },
  2887. {
  2888. name: "Gigamacro",
  2889. height: math.unit(25000, "miles")
  2890. },
  2891. {
  2892. name: "Full-Size",
  2893. height: math.unit(8000000, "gigaparsecs")
  2894. }
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2899. {
  2900. front: {
  2901. height: math.unit(2, "meter"),
  2902. weight: math.unit(60, "kg"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/noah/front.svg"
  2906. }
  2907. },
  2908. talons: {
  2909. height: math.unit(0.315, "meter"),
  2910. name: "Talons",
  2911. image: {
  2912. source: "./media/characters/noah/talons.svg"
  2913. }
  2914. }
  2915. },
  2916. [
  2917. {
  2918. name: "Large",
  2919. height: math.unit(50, "feet")
  2920. },
  2921. {
  2922. name: "Macro",
  2923. height: math.unit(750, "feet"),
  2924. default: true
  2925. },
  2926. {
  2927. name: "Megamacro",
  2928. height: math.unit(50, "miles")
  2929. },
  2930. {
  2931. name: "Gigamacro",
  2932. height: math.unit(100000, "miles")
  2933. },
  2934. {
  2935. name: "Full-Size",
  2936. height: math.unit(3000000000, "miles")
  2937. }
  2938. ]
  2939. ))
  2940. characterMakers.push(() => makeCharacter(
  2941. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2942. {
  2943. front: {
  2944. height: math.unit(2, "meter"),
  2945. weight: math.unit(80, "kg"),
  2946. name: "Front",
  2947. image: {
  2948. source: "./media/characters/natalya/front.svg"
  2949. }
  2950. },
  2951. back: {
  2952. height: math.unit(2, "meter"),
  2953. weight: math.unit(80, "kg"),
  2954. name: "Back",
  2955. image: {
  2956. source: "./media/characters/natalya/back.svg"
  2957. }
  2958. }
  2959. },
  2960. [
  2961. {
  2962. name: "Normal",
  2963. height: math.unit(150, "feet"),
  2964. default: true
  2965. },
  2966. {
  2967. name: "Megamacro",
  2968. height: math.unit(5, "miles")
  2969. },
  2970. {
  2971. name: "Full-Size",
  2972. height: math.unit(600, "kiloparsecs")
  2973. }
  2974. ]
  2975. ))
  2976. characterMakers.push(() => makeCharacter(
  2977. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2978. {
  2979. front: {
  2980. height: math.unit(2, "meter"),
  2981. weight: math.unit(50, "kg"),
  2982. name: "Front",
  2983. image: {
  2984. source: "./media/characters/erestrebah/front.svg",
  2985. extra: 208 / 193,
  2986. bottom: 0.055
  2987. }
  2988. },
  2989. back: {
  2990. height: math.unit(2, "meter"),
  2991. weight: math.unit(50, "kg"),
  2992. name: "Back",
  2993. image: {
  2994. source: "./media/characters/erestrebah/back.svg",
  2995. extra: 1.3
  2996. }
  2997. }
  2998. },
  2999. [
  3000. {
  3001. name: "Normal",
  3002. height: math.unit(10, "feet")
  3003. },
  3004. {
  3005. name: "Large",
  3006. height: math.unit(50, "feet"),
  3007. default: true
  3008. },
  3009. {
  3010. name: "Macro",
  3011. height: math.unit(300, "feet")
  3012. },
  3013. {
  3014. name: "Macro+",
  3015. height: math.unit(750, "feet")
  3016. },
  3017. {
  3018. name: "Megamacro",
  3019. height: math.unit(3, "miles")
  3020. }
  3021. ]
  3022. ))
  3023. characterMakers.push(() => makeCharacter(
  3024. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3025. {
  3026. front: {
  3027. height: math.unit(2, "meter"),
  3028. weight: math.unit(80, "kg"),
  3029. name: "Front",
  3030. image: {
  3031. source: "./media/characters/jennifer/front.svg",
  3032. bottom: 0.11,
  3033. extra: 1.16
  3034. }
  3035. },
  3036. frontAlt: {
  3037. height: math.unit(2, "meter"),
  3038. weight: math.unit(80, "kg"),
  3039. name: "Front (Alt)",
  3040. image: {
  3041. source: "./media/characters/jennifer/front-alt.svg"
  3042. }
  3043. }
  3044. },
  3045. [
  3046. {
  3047. name: "Canon Height",
  3048. height: math.unit(120, "feet"),
  3049. default: true
  3050. },
  3051. {
  3052. name: "Macro+",
  3053. height: math.unit(300, "feet")
  3054. },
  3055. {
  3056. name: "Megamacro",
  3057. height: math.unit(20000, "feet")
  3058. }
  3059. ]
  3060. ))
  3061. characterMakers.push(() => makeCharacter(
  3062. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3063. {
  3064. front: {
  3065. height: math.unit(2, "meter"),
  3066. weight: math.unit(50, "kg"),
  3067. name: "Front",
  3068. image: {
  3069. source: "./media/characters/kalista/front.svg",
  3070. extra: 1947 / 1700,
  3071. bottom: 76.6 / 1412.98
  3072. }
  3073. },
  3074. back: {
  3075. height: math.unit(2, "meter"),
  3076. weight: math.unit(50, "kg"),
  3077. name: "Back",
  3078. image: {
  3079. source: "./media/characters/kalista/back.svg",
  3080. extra: 1366 / 1156,
  3081. bottom: 33.9 / 1362.78
  3082. }
  3083. }
  3084. },
  3085. [
  3086. {
  3087. name: "Uncomfortably Small",
  3088. height: math.unit(10, "feet")
  3089. },
  3090. {
  3091. name: "Small",
  3092. height: math.unit(30, "feet")
  3093. },
  3094. {
  3095. name: "Macro",
  3096. height: math.unit(100, "feet"),
  3097. default: true
  3098. },
  3099. {
  3100. name: "Macro+",
  3101. height: math.unit(2000, "feet")
  3102. },
  3103. {
  3104. name: "True Form",
  3105. height: math.unit(8924, "miles")
  3106. }
  3107. ]
  3108. ))
  3109. characterMakers.push(() => makeCharacter(
  3110. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3111. {
  3112. front: {
  3113. height: math.unit(2, "meter"),
  3114. weight: math.unit(120, "kg"),
  3115. name: "Front",
  3116. image: {
  3117. source: "./media/characters/ggv/front.svg"
  3118. }
  3119. },
  3120. side: {
  3121. height: math.unit(2, "meter"),
  3122. weight: math.unit(120, "kg"),
  3123. name: "Side",
  3124. image: {
  3125. source: "./media/characters/ggv/side.svg"
  3126. }
  3127. }
  3128. },
  3129. [
  3130. {
  3131. name: "Extremely Puny",
  3132. height: math.unit(9 + 5 / 12, "feet")
  3133. },
  3134. {
  3135. name: "Horribly Small",
  3136. height: math.unit(47.7, "miles"),
  3137. default: true
  3138. },
  3139. {
  3140. name: "Reasonably Sized",
  3141. height: math.unit(25000, "parsecs")
  3142. },
  3143. {
  3144. name: "Slightly Uncompressed",
  3145. height: math.unit(7.77e31, "parsecs")
  3146. },
  3147. {
  3148. name: "Omniversal",
  3149. height: math.unit(1e300, "meters")
  3150. },
  3151. ]
  3152. ))
  3153. characterMakers.push(() => makeCharacter(
  3154. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3155. {
  3156. front: {
  3157. height: math.unit(2, "meter"),
  3158. weight: math.unit(75, "lb"),
  3159. name: "Front",
  3160. image: {
  3161. source: "./media/characters/napalm/front.svg"
  3162. }
  3163. },
  3164. back: {
  3165. height: math.unit(2, "meter"),
  3166. weight: math.unit(75, "lb"),
  3167. name: "Back",
  3168. image: {
  3169. source: "./media/characters/napalm/back.svg"
  3170. }
  3171. }
  3172. },
  3173. [
  3174. {
  3175. name: "Standard",
  3176. height: math.unit(55, "feet"),
  3177. default: true
  3178. }
  3179. ]
  3180. ))
  3181. characterMakers.push(() => makeCharacter(
  3182. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3183. {
  3184. front: {
  3185. height: math.unit(7 + 5 / 6, "feet"),
  3186. weight: math.unit(325, "lb"),
  3187. name: "Front",
  3188. image: {
  3189. source: "./media/characters/asana/front.svg",
  3190. extra: 1133 / 1060,
  3191. bottom: 15.2 / 1148.6
  3192. }
  3193. },
  3194. back: {
  3195. height: math.unit(7 + 5 / 6, "feet"),
  3196. weight: math.unit(325, "lb"),
  3197. name: "Back",
  3198. image: {
  3199. source: "./media/characters/asana/back.svg",
  3200. extra: 1114 / 1043,
  3201. bottom: 5 / 1120
  3202. }
  3203. },
  3204. dressedDark: {
  3205. height: math.unit(7 + 5 / 6, "feet"),
  3206. weight: math.unit(325, "lb"),
  3207. name: "Dressed (Dark)",
  3208. image: {
  3209. source: "./media/characters/asana/dressed-dark.svg",
  3210. extra: 1133 / 1060,
  3211. bottom: 15.2 / 1148.6
  3212. }
  3213. },
  3214. dressedLight: {
  3215. height: math.unit(7 + 5 / 6, "feet"),
  3216. weight: math.unit(325, "lb"),
  3217. name: "Dressed (Light)",
  3218. image: {
  3219. source: "./media/characters/asana/dressed-light.svg",
  3220. extra: 1133 / 1060,
  3221. bottom: 15.2 / 1148.6
  3222. }
  3223. },
  3224. },
  3225. [
  3226. {
  3227. name: "Standard",
  3228. height: math.unit(7 + 5 / 6, "feet"),
  3229. default: true
  3230. },
  3231. {
  3232. name: "Large",
  3233. height: math.unit(10, "meters")
  3234. },
  3235. {
  3236. name: "Macro",
  3237. height: math.unit(2500, "meters")
  3238. },
  3239. {
  3240. name: "Megamacro",
  3241. height: math.unit(5e6, "meters")
  3242. },
  3243. {
  3244. name: "Examacro",
  3245. height: math.unit(5e12, "lightyears")
  3246. },
  3247. {
  3248. name: "Max Size",
  3249. height: math.unit(1e31, "lightyears")
  3250. }
  3251. ]
  3252. ))
  3253. characterMakers.push(() => makeCharacter(
  3254. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3255. {
  3256. front: {
  3257. height: math.unit(2, "meter"),
  3258. weight: math.unit(60, "kg"),
  3259. name: "Front",
  3260. image: {
  3261. source: "./media/characters/ebony/front.svg",
  3262. bottom: 0.03,
  3263. extra: 1045 / 810 + 0.03
  3264. }
  3265. },
  3266. side: {
  3267. height: math.unit(2, "meter"),
  3268. weight: math.unit(60, "kg"),
  3269. name: "Side",
  3270. image: {
  3271. source: "./media/characters/ebony/side.svg",
  3272. bottom: 0.03,
  3273. extra: 1045 / 810 + 0.03
  3274. }
  3275. },
  3276. back: {
  3277. height: math.unit(2, "meter"),
  3278. weight: math.unit(60, "kg"),
  3279. name: "Back",
  3280. image: {
  3281. source: "./media/characters/ebony/back.svg",
  3282. bottom: 0.01,
  3283. extra: 1045 / 810 + 0.01
  3284. }
  3285. },
  3286. },
  3287. [
  3288. // TODO check why I did this lol
  3289. {
  3290. name: "Standard",
  3291. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3292. default: true
  3293. },
  3294. {
  3295. name: "Macro",
  3296. height: math.unit(200, "feet")
  3297. },
  3298. {
  3299. name: "Gigamacro",
  3300. height: math.unit(13000, "km")
  3301. }
  3302. ]
  3303. ))
  3304. characterMakers.push(() => makeCharacter(
  3305. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3306. {
  3307. front: {
  3308. height: math.unit(6, "feet"),
  3309. weight: math.unit(175, "lb"),
  3310. name: "Front",
  3311. image: {
  3312. source: "./media/characters/mountain/front.svg",
  3313. extra: 972 / 955,
  3314. bottom: 64 / 1036.6
  3315. }
  3316. },
  3317. back: {
  3318. height: math.unit(6, "feet"),
  3319. weight: math.unit(175, "lb"),
  3320. name: "Back",
  3321. image: {
  3322. source: "./media/characters/mountain/back.svg",
  3323. extra: 970 / 950,
  3324. bottom: 28.25 / 999
  3325. }
  3326. },
  3327. },
  3328. [
  3329. {
  3330. name: "Large",
  3331. height: math.unit(20, "meters")
  3332. },
  3333. {
  3334. name: "Macro",
  3335. height: math.unit(300, "meters")
  3336. },
  3337. {
  3338. name: "Gigamacro",
  3339. height: math.unit(10000, "km"),
  3340. default: true
  3341. },
  3342. {
  3343. name: "Examacro",
  3344. height: math.unit(10e9, "lightyears")
  3345. }
  3346. ]
  3347. ))
  3348. characterMakers.push(() => makeCharacter(
  3349. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3350. {
  3351. front: {
  3352. height: math.unit(8, "feet"),
  3353. weight: math.unit(500, "lb"),
  3354. name: "Front",
  3355. image: {
  3356. source: "./media/characters/rick/front.svg"
  3357. }
  3358. }
  3359. },
  3360. [
  3361. {
  3362. name: "Normal",
  3363. height: math.unit(8, "feet"),
  3364. default: true
  3365. },
  3366. {
  3367. name: "Macro",
  3368. height: math.unit(5, "km")
  3369. }
  3370. ]
  3371. ))
  3372. characterMakers.push(() => makeCharacter(
  3373. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3374. {
  3375. front: {
  3376. height: math.unit(8, "feet"),
  3377. weight: math.unit(120, "lb"),
  3378. name: "Front",
  3379. image: {
  3380. source: "./media/characters/ona/front.svg"
  3381. }
  3382. },
  3383. frontAlt: {
  3384. height: math.unit(8, "feet"),
  3385. weight: math.unit(120, "lb"),
  3386. name: "Front (Alt)",
  3387. image: {
  3388. source: "./media/characters/ona/front-alt.svg"
  3389. }
  3390. },
  3391. back: {
  3392. height: math.unit(8, "feet"),
  3393. weight: math.unit(120, "lb"),
  3394. name: "Back",
  3395. image: {
  3396. source: "./media/characters/ona/back.svg"
  3397. }
  3398. },
  3399. foot: {
  3400. height: math.unit(1.1, "feet"),
  3401. name: "Foot",
  3402. image: {
  3403. source: "./media/characters/ona/foot.svg"
  3404. }
  3405. }
  3406. },
  3407. [
  3408. {
  3409. name: "Megamacro",
  3410. height: math.unit(70, "km"),
  3411. default: true
  3412. },
  3413. {
  3414. name: "Gigamacro",
  3415. height: math.unit(681818, "miles")
  3416. },
  3417. {
  3418. name: "Examacro",
  3419. height: math.unit(3800000, "lightyears")
  3420. },
  3421. ]
  3422. ))
  3423. characterMakers.push(() => makeCharacter(
  3424. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3425. {
  3426. front: {
  3427. height: math.unit(12, "feet"),
  3428. weight: math.unit(3000, "lb"),
  3429. name: "Front",
  3430. image: {
  3431. source: "./media/characters/mech/front.svg",
  3432. extra: 2900/2770,
  3433. bottom: 110/3010
  3434. }
  3435. },
  3436. back: {
  3437. height: math.unit(12, "feet"),
  3438. weight: math.unit(3000, "lb"),
  3439. name: "Back",
  3440. image: {
  3441. source: "./media/characters/mech/back.svg",
  3442. extra: 3011/2890,
  3443. bottom: 94/3105
  3444. }
  3445. },
  3446. maw: {
  3447. height: math.unit(3.07, "feet"),
  3448. name: "Maw",
  3449. image: {
  3450. source: "./media/characters/mech/maw.svg"
  3451. }
  3452. },
  3453. head: {
  3454. height: math.unit(2.82, "feet"),
  3455. name: "Head",
  3456. image: {
  3457. source: "./media/characters/mech/head.svg"
  3458. }
  3459. },
  3460. dick: {
  3461. height: math.unit(1.43, "feet"),
  3462. name: "Dick",
  3463. image: {
  3464. source: "./media/characters/mech/dick.svg"
  3465. }
  3466. },
  3467. },
  3468. [
  3469. {
  3470. name: "Normal",
  3471. height: math.unit(12, "feet")
  3472. },
  3473. {
  3474. name: "Macro",
  3475. height: math.unit(300, "feet"),
  3476. default: true
  3477. },
  3478. {
  3479. name: "Macro+",
  3480. height: math.unit(1500, "feet")
  3481. },
  3482. ]
  3483. ))
  3484. characterMakers.push(() => makeCharacter(
  3485. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3486. {
  3487. front: {
  3488. height: math.unit(1.3, "meter"),
  3489. weight: math.unit(30, "kg"),
  3490. name: "Front",
  3491. image: {
  3492. source: "./media/characters/gregory/front.svg",
  3493. }
  3494. }
  3495. },
  3496. [
  3497. {
  3498. name: "Normal",
  3499. height: math.unit(1.3, "meter"),
  3500. default: true
  3501. },
  3502. {
  3503. name: "Macro",
  3504. height: math.unit(20, "meter")
  3505. }
  3506. ]
  3507. ))
  3508. characterMakers.push(() => makeCharacter(
  3509. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3510. {
  3511. front: {
  3512. height: math.unit(2.8, "meter"),
  3513. weight: math.unit(200, "kg"),
  3514. name: "Front",
  3515. image: {
  3516. source: "./media/characters/elory/front.svg",
  3517. }
  3518. }
  3519. },
  3520. [
  3521. {
  3522. name: "Normal",
  3523. height: math.unit(2.8, "meter"),
  3524. default: true
  3525. },
  3526. {
  3527. name: "Macro",
  3528. height: math.unit(38, "meter")
  3529. }
  3530. ]
  3531. ))
  3532. characterMakers.push(() => makeCharacter(
  3533. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3534. {
  3535. front: {
  3536. height: math.unit(470, "feet"),
  3537. weight: math.unit(924, "tons"),
  3538. name: "Front",
  3539. image: {
  3540. source: "./media/characters/angelpatamon/front.svg",
  3541. }
  3542. }
  3543. },
  3544. [
  3545. {
  3546. name: "Normal",
  3547. height: math.unit(470, "feet"),
  3548. default: true
  3549. },
  3550. {
  3551. name: "Deity Size I",
  3552. height: math.unit(28651.2, "km")
  3553. },
  3554. {
  3555. name: "Deity Size II",
  3556. height: math.unit(171907.2, "km")
  3557. }
  3558. ]
  3559. ))
  3560. characterMakers.push(() => makeCharacter(
  3561. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3562. {
  3563. side: {
  3564. height: math.unit(7.2, "meter"),
  3565. weight: math.unit(8.2, "tons"),
  3566. name: "Side",
  3567. image: {
  3568. source: "./media/characters/cryae/side.svg",
  3569. extra: 3500 / 1500
  3570. }
  3571. }
  3572. },
  3573. [
  3574. {
  3575. name: "Normal",
  3576. height: math.unit(7.2, "meter"),
  3577. default: true
  3578. }
  3579. ]
  3580. ))
  3581. characterMakers.push(() => makeCharacter(
  3582. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3583. {
  3584. front: {
  3585. height: math.unit(6, "feet"),
  3586. weight: math.unit(175, "lb"),
  3587. name: "Front",
  3588. image: {
  3589. source: "./media/characters/xera/front.svg",
  3590. extra: 2377 / 1972,
  3591. bottom: 75.5 / 2452
  3592. }
  3593. },
  3594. side: {
  3595. height: math.unit(6, "feet"),
  3596. weight: math.unit(175, "lb"),
  3597. name: "Side",
  3598. image: {
  3599. source: "./media/characters/xera/side.svg",
  3600. extra: 2345 / 2019,
  3601. bottom: 39.7 / 2384
  3602. }
  3603. },
  3604. back: {
  3605. height: math.unit(6, "feet"),
  3606. weight: math.unit(175, "lb"),
  3607. name: "Back",
  3608. image: {
  3609. source: "./media/characters/xera/back.svg",
  3610. extra: 2095 / 1984,
  3611. bottom: 67 / 2166
  3612. }
  3613. },
  3614. },
  3615. [
  3616. {
  3617. name: "Small",
  3618. height: math.unit(10, "feet")
  3619. },
  3620. {
  3621. name: "Macro",
  3622. height: math.unit(500, "meters"),
  3623. default: true
  3624. },
  3625. {
  3626. name: "Macro+",
  3627. height: math.unit(10, "km")
  3628. },
  3629. {
  3630. name: "Gigamacro",
  3631. height: math.unit(25000, "km")
  3632. },
  3633. {
  3634. name: "Teramacro",
  3635. height: math.unit(3e6, "km")
  3636. }
  3637. ]
  3638. ))
  3639. characterMakers.push(() => makeCharacter(
  3640. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3641. {
  3642. front: {
  3643. height: math.unit(6, "feet"),
  3644. weight: math.unit(175, "lb"),
  3645. name: "Front",
  3646. image: {
  3647. source: "./media/characters/nebula/front.svg",
  3648. extra: 2566 / 2362,
  3649. bottom: 81 / 2644
  3650. }
  3651. }
  3652. },
  3653. [
  3654. {
  3655. name: "Small",
  3656. height: math.unit(4.5, "meters")
  3657. },
  3658. {
  3659. name: "Macro",
  3660. height: math.unit(1500, "meters"),
  3661. default: true
  3662. },
  3663. {
  3664. name: "Megamacro",
  3665. height: math.unit(150, "km")
  3666. },
  3667. {
  3668. name: "Gigamacro",
  3669. height: math.unit(27000, "km")
  3670. }
  3671. ]
  3672. ))
  3673. characterMakers.push(() => makeCharacter(
  3674. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3675. {
  3676. front: {
  3677. height: math.unit(6, "feet"),
  3678. weight: math.unit(225, "lb"),
  3679. name: "Front",
  3680. image: {
  3681. source: "./media/characters/abysgar/front.svg"
  3682. }
  3683. }
  3684. },
  3685. [
  3686. {
  3687. name: "Small",
  3688. height: math.unit(4.5, "meters")
  3689. },
  3690. {
  3691. name: "Macro",
  3692. height: math.unit(1250, "meters"),
  3693. default: true
  3694. },
  3695. {
  3696. name: "Megamacro",
  3697. height: math.unit(125, "km")
  3698. },
  3699. {
  3700. name: "Gigamacro",
  3701. height: math.unit(26000, "km")
  3702. }
  3703. ]
  3704. ))
  3705. characterMakers.push(() => makeCharacter(
  3706. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3707. {
  3708. front: {
  3709. height: math.unit(6, "feet"),
  3710. weight: math.unit(180, "lb"),
  3711. name: "Front",
  3712. image: {
  3713. source: "./media/characters/yakuz/front.svg"
  3714. }
  3715. }
  3716. },
  3717. [
  3718. {
  3719. name: "Small",
  3720. height: math.unit(5, "meters")
  3721. },
  3722. {
  3723. name: "Macro",
  3724. height: math.unit(1500, "meters"),
  3725. default: true
  3726. },
  3727. {
  3728. name: "Megamacro",
  3729. height: math.unit(200, "km")
  3730. },
  3731. {
  3732. name: "Gigamacro",
  3733. height: math.unit(100000, "km")
  3734. }
  3735. ]
  3736. ))
  3737. characterMakers.push(() => makeCharacter(
  3738. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3739. {
  3740. front: {
  3741. height: math.unit(6, "feet"),
  3742. weight: math.unit(175, "lb"),
  3743. name: "Front",
  3744. image: {
  3745. source: "./media/characters/mirova/front.svg",
  3746. extra: 3334 / 3071,
  3747. bottom: 42 / 3375.6
  3748. }
  3749. }
  3750. },
  3751. [
  3752. {
  3753. name: "Small",
  3754. height: math.unit(5, "meters")
  3755. },
  3756. {
  3757. name: "Macro",
  3758. height: math.unit(900, "meters"),
  3759. default: true
  3760. },
  3761. {
  3762. name: "Megamacro",
  3763. height: math.unit(135, "km")
  3764. },
  3765. {
  3766. name: "Gigamacro",
  3767. height: math.unit(20000, "km")
  3768. }
  3769. ]
  3770. ))
  3771. characterMakers.push(() => makeCharacter(
  3772. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3773. {
  3774. side: {
  3775. height: math.unit(28.35, "feet"),
  3776. weight: math.unit(99.75, "tons"),
  3777. name: "Side",
  3778. image: {
  3779. source: "./media/characters/asana-mech/side.svg",
  3780. extra: 923 / 699,
  3781. bottom: 50 / 975
  3782. }
  3783. },
  3784. chaingun: {
  3785. height: math.unit(7, "feet"),
  3786. weight: math.unit(2400, "lb"),
  3787. name: "Chaingun",
  3788. image: {
  3789. source: "./media/characters/asana-mech/chaingun.svg"
  3790. }
  3791. },
  3792. laser: {
  3793. height: math.unit(7.12, "feet"),
  3794. weight: math.unit(2000, "lb"),
  3795. name: "Laser",
  3796. image: {
  3797. source: "./media/characters/asana-mech/laser.svg"
  3798. }
  3799. },
  3800. },
  3801. [
  3802. {
  3803. name: "Normal",
  3804. height: math.unit(28.35, "feet"),
  3805. default: true
  3806. },
  3807. {
  3808. name: "Macro",
  3809. height: math.unit(2500, "feet")
  3810. },
  3811. {
  3812. name: "Megamacro",
  3813. height: math.unit(25, "miles")
  3814. },
  3815. {
  3816. name: "Examacro",
  3817. height: math.unit(6e8, "lightyears")
  3818. },
  3819. ]
  3820. ))
  3821. characterMakers.push(() => makeCharacter(
  3822. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3823. {
  3824. front: {
  3825. height: math.unit(5, "meters"),
  3826. weight: math.unit(1000, "kg"),
  3827. name: "Front",
  3828. image: {
  3829. source: "./media/characters/asche/front.svg",
  3830. extra: 1258 / 1190,
  3831. bottom: 47 / 1305
  3832. }
  3833. },
  3834. frontUnderwear: {
  3835. height: math.unit(5, "meters"),
  3836. weight: math.unit(1000, "kg"),
  3837. name: "Front (Underwear)",
  3838. image: {
  3839. source: "./media/characters/asche/front-underwear.svg",
  3840. extra: 1258 / 1190,
  3841. bottom: 47 / 1305
  3842. }
  3843. },
  3844. frontDressed: {
  3845. height: math.unit(5, "meters"),
  3846. weight: math.unit(1000, "kg"),
  3847. name: "Front (Dressed)",
  3848. image: {
  3849. source: "./media/characters/asche/front-dressed.svg",
  3850. extra: 1258 / 1190,
  3851. bottom: 47 / 1305
  3852. }
  3853. },
  3854. frontArmor: {
  3855. height: math.unit(5, "meters"),
  3856. weight: math.unit(1000, "kg"),
  3857. name: "Front (Armored)",
  3858. image: {
  3859. source: "./media/characters/asche/front-armored.svg",
  3860. extra: 1374 / 1308,
  3861. bottom: 23 / 1397
  3862. }
  3863. },
  3864. mp724: {
  3865. height: math.unit(0.96, "meters"),
  3866. weight: math.unit(38, "kg"),
  3867. name: "H&K MP724",
  3868. image: {
  3869. source: "./media/characters/asche/h&k-mp724.svg"
  3870. }
  3871. },
  3872. side: {
  3873. height: math.unit(5, "meters"),
  3874. weight: math.unit(1000, "kg"),
  3875. name: "Side",
  3876. image: {
  3877. source: "./media/characters/asche/side.svg",
  3878. extra: 1717 / 1609,
  3879. bottom: 0.005
  3880. }
  3881. },
  3882. back: {
  3883. height: math.unit(5, "meters"),
  3884. weight: math.unit(1000, "kg"),
  3885. name: "Back",
  3886. image: {
  3887. source: "./media/characters/asche/back.svg",
  3888. extra: 1570 / 1501
  3889. }
  3890. },
  3891. },
  3892. [
  3893. {
  3894. name: "DEFCON 5",
  3895. height: math.unit(5, "meters")
  3896. },
  3897. {
  3898. name: "DEFCON 4",
  3899. height: math.unit(500, "meters"),
  3900. default: true
  3901. },
  3902. {
  3903. name: "DEFCON 3",
  3904. height: math.unit(5, "km")
  3905. },
  3906. {
  3907. name: "DEFCON 2",
  3908. height: math.unit(500, "km")
  3909. },
  3910. {
  3911. name: "DEFCON 1",
  3912. height: math.unit(500000, "km")
  3913. },
  3914. {
  3915. name: "DEFCON 0",
  3916. height: math.unit(3, "gigaparsecs")
  3917. },
  3918. ]
  3919. ))
  3920. characterMakers.push(() => makeCharacter(
  3921. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3922. {
  3923. front: {
  3924. height: math.unit(2, "meters"),
  3925. weight: math.unit(76, "kg"),
  3926. name: "Front",
  3927. image: {
  3928. source: "./media/characters/gale/front.svg"
  3929. }
  3930. },
  3931. frontAlt1: {
  3932. height: math.unit(2, "meters"),
  3933. weight: math.unit(76, "kg"),
  3934. name: "Front (Alt 1)",
  3935. image: {
  3936. source: "./media/characters/gale/front-alt-1.svg"
  3937. }
  3938. },
  3939. frontAlt2: {
  3940. height: math.unit(2, "meters"),
  3941. weight: math.unit(76, "kg"),
  3942. name: "Front (Alt 2)",
  3943. image: {
  3944. source: "./media/characters/gale/front-alt-2.svg"
  3945. }
  3946. },
  3947. },
  3948. [
  3949. {
  3950. name: "Normal",
  3951. height: math.unit(7, "feet")
  3952. },
  3953. {
  3954. name: "Macro",
  3955. height: math.unit(150, "feet"),
  3956. default: true
  3957. },
  3958. {
  3959. name: "Macro+",
  3960. height: math.unit(300, "feet")
  3961. },
  3962. ]
  3963. ))
  3964. characterMakers.push(() => makeCharacter(
  3965. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3966. {
  3967. front: {
  3968. height: math.unit(2, "meters"),
  3969. weight: math.unit(76, "kg"),
  3970. name: "Front",
  3971. image: {
  3972. source: "./media/characters/draylen/front.svg"
  3973. }
  3974. }
  3975. },
  3976. [
  3977. {
  3978. name: "Macro",
  3979. height: math.unit(150, "feet"),
  3980. default: true
  3981. }
  3982. ]
  3983. ))
  3984. characterMakers.push(() => makeCharacter(
  3985. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3986. {
  3987. front: {
  3988. height: math.unit(7 + 9 / 12, "feet"),
  3989. weight: math.unit(379, "lbs"),
  3990. name: "Front",
  3991. image: {
  3992. source: "./media/characters/chez/front.svg"
  3993. }
  3994. },
  3995. side: {
  3996. height: math.unit(7 + 9 / 12, "feet"),
  3997. weight: math.unit(379, "lbs"),
  3998. name: "Side",
  3999. image: {
  4000. source: "./media/characters/chez/side.svg"
  4001. }
  4002. }
  4003. },
  4004. [
  4005. {
  4006. name: "Normal",
  4007. height: math.unit(7 + 9 / 12, "feet"),
  4008. default: true
  4009. },
  4010. {
  4011. name: "God King",
  4012. height: math.unit(9750000, "meters")
  4013. }
  4014. ]
  4015. ))
  4016. characterMakers.push(() => makeCharacter(
  4017. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4018. {
  4019. front: {
  4020. height: math.unit(6, "feet"),
  4021. weight: math.unit(275, "lbs"),
  4022. name: "Front",
  4023. image: {
  4024. source: "./media/characters/kaylum/front.svg",
  4025. bottom: 0.01,
  4026. extra: 1166 / 1031
  4027. }
  4028. },
  4029. frontWingless: {
  4030. height: math.unit(6, "feet"),
  4031. weight: math.unit(275, "lbs"),
  4032. name: "Front (Wingless)",
  4033. image: {
  4034. source: "./media/characters/kaylum/front-wingless.svg",
  4035. bottom: 0.01,
  4036. extra: 1117 / 1031
  4037. }
  4038. }
  4039. },
  4040. [
  4041. {
  4042. name: "Normal",
  4043. height: math.unit(3.05, "meters")
  4044. },
  4045. {
  4046. name: "Master",
  4047. height: math.unit(5.5, "meters")
  4048. },
  4049. {
  4050. name: "Rampage",
  4051. height: math.unit(19, "meters")
  4052. },
  4053. {
  4054. name: "Macro Lite",
  4055. height: math.unit(37, "meters")
  4056. },
  4057. {
  4058. name: "Hyper Predator",
  4059. height: math.unit(61, "meters")
  4060. },
  4061. {
  4062. name: "Macro",
  4063. height: math.unit(138, "meters"),
  4064. default: true
  4065. }
  4066. ]
  4067. ))
  4068. characterMakers.push(() => makeCharacter(
  4069. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4070. {
  4071. front: {
  4072. height: math.unit(6, "feet"),
  4073. weight: math.unit(150, "lbs"),
  4074. name: "Front",
  4075. image: {
  4076. source: "./media/characters/geta/front.svg"
  4077. }
  4078. }
  4079. },
  4080. [
  4081. {
  4082. name: "Micro",
  4083. height: math.unit(3, "inches"),
  4084. default: true
  4085. },
  4086. {
  4087. name: "Normal",
  4088. height: math.unit(5 + 5 / 12, "feet")
  4089. }
  4090. ]
  4091. ))
  4092. characterMakers.push(() => makeCharacter(
  4093. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4094. {
  4095. front: {
  4096. height: math.unit(6, "feet"),
  4097. weight: math.unit(300, "lbs"),
  4098. name: "Front",
  4099. image: {
  4100. source: "./media/characters/tyrnn/front.svg"
  4101. }
  4102. }
  4103. },
  4104. [
  4105. {
  4106. name: "Main Height",
  4107. height: math.unit(355, "feet"),
  4108. default: true
  4109. },
  4110. {
  4111. name: "Fave. Height",
  4112. height: math.unit(2400, "feet")
  4113. }
  4114. ]
  4115. ))
  4116. characterMakers.push(() => makeCharacter(
  4117. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4118. {
  4119. front: {
  4120. height: math.unit(6, "feet"),
  4121. weight: math.unit(300, "lbs"),
  4122. name: "Front",
  4123. image: {
  4124. source: "./media/characters/appledectomy/front.svg"
  4125. }
  4126. }
  4127. },
  4128. [
  4129. {
  4130. name: "Macro",
  4131. height: math.unit(2500, "feet")
  4132. },
  4133. {
  4134. name: "Megamacro",
  4135. height: math.unit(50, "miles"),
  4136. default: true
  4137. },
  4138. {
  4139. name: "Gigamacro",
  4140. height: math.unit(5000, "miles")
  4141. },
  4142. {
  4143. name: "Teramacro",
  4144. height: math.unit(250000, "miles")
  4145. },
  4146. ]
  4147. ))
  4148. characterMakers.push(() => makeCharacter(
  4149. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4150. {
  4151. front: {
  4152. height: math.unit(6, "feet"),
  4153. weight: math.unit(200, "lbs"),
  4154. name: "Front",
  4155. image: {
  4156. source: "./media/characters/vulpes/front.svg",
  4157. extra: 573 / 543,
  4158. bottom: 0.033
  4159. }
  4160. },
  4161. side: {
  4162. height: math.unit(6, "feet"),
  4163. weight: math.unit(200, "lbs"),
  4164. name: "Side",
  4165. image: {
  4166. source: "./media/characters/vulpes/side.svg",
  4167. extra: 577 / 549,
  4168. bottom: 11 / 588
  4169. }
  4170. },
  4171. back: {
  4172. height: math.unit(6, "feet"),
  4173. weight: math.unit(200, "lbs"),
  4174. name: "Back",
  4175. image: {
  4176. source: "./media/characters/vulpes/back.svg",
  4177. extra: 573 / 549,
  4178. bottom: 20 / 593
  4179. }
  4180. },
  4181. feet: {
  4182. height: math.unit(1.276, "feet"),
  4183. name: "Feet",
  4184. image: {
  4185. source: "./media/characters/vulpes/feet.svg"
  4186. }
  4187. },
  4188. maw: {
  4189. height: math.unit(1.18, "feet"),
  4190. name: "Maw",
  4191. image: {
  4192. source: "./media/characters/vulpes/maw.svg"
  4193. }
  4194. },
  4195. },
  4196. [
  4197. {
  4198. name: "Micro",
  4199. height: math.unit(2, "inches")
  4200. },
  4201. {
  4202. name: "Normal",
  4203. height: math.unit(6.3, "feet")
  4204. },
  4205. {
  4206. name: "Macro",
  4207. height: math.unit(850, "feet")
  4208. },
  4209. {
  4210. name: "Megamacro",
  4211. height: math.unit(7500, "feet"),
  4212. default: true
  4213. },
  4214. {
  4215. name: "Gigamacro",
  4216. height: math.unit(570000, "miles")
  4217. }
  4218. ]
  4219. ))
  4220. characterMakers.push(() => makeCharacter(
  4221. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4222. {
  4223. front: {
  4224. height: math.unit(6, "feet"),
  4225. weight: math.unit(210, "lbs"),
  4226. name: "Front",
  4227. image: {
  4228. source: "./media/characters/rain-fallen/front.svg"
  4229. }
  4230. },
  4231. side: {
  4232. height: math.unit(6, "feet"),
  4233. weight: math.unit(210, "lbs"),
  4234. name: "Side",
  4235. image: {
  4236. source: "./media/characters/rain-fallen/side.svg"
  4237. }
  4238. },
  4239. back: {
  4240. height: math.unit(6, "feet"),
  4241. weight: math.unit(210, "lbs"),
  4242. name: "Back",
  4243. image: {
  4244. source: "./media/characters/rain-fallen/back.svg"
  4245. }
  4246. },
  4247. feral: {
  4248. height: math.unit(9, "feet"),
  4249. weight: math.unit(700, "lbs"),
  4250. name: "Feral",
  4251. image: {
  4252. source: "./media/characters/rain-fallen/feral.svg"
  4253. }
  4254. },
  4255. },
  4256. [
  4257. {
  4258. name: "Normal",
  4259. height: math.unit(5, "meter")
  4260. },
  4261. {
  4262. name: "Macro",
  4263. height: math.unit(150, "meter"),
  4264. default: true
  4265. },
  4266. {
  4267. name: "Megamacro",
  4268. height: math.unit(278e6, "meter")
  4269. },
  4270. {
  4271. name: "Gigamacro",
  4272. height: math.unit(2e9, "meter")
  4273. },
  4274. {
  4275. name: "Teramacro",
  4276. height: math.unit(8e12, "meter")
  4277. },
  4278. {
  4279. name: "Devourer",
  4280. height: math.unit(14, "zettameters")
  4281. },
  4282. {
  4283. name: "Scarlet King",
  4284. height: math.unit(18, "yottameters")
  4285. },
  4286. {
  4287. name: "Void",
  4288. height: math.unit(6.66e66, "yottameters")
  4289. }
  4290. ]
  4291. ))
  4292. characterMakers.push(() => makeCharacter(
  4293. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4294. {
  4295. standing: {
  4296. height: math.unit(6, "feet"),
  4297. weight: math.unit(180, "lbs"),
  4298. name: "Standing",
  4299. image: {
  4300. source: "./media/characters/zaakira/standing.svg"
  4301. }
  4302. },
  4303. laying: {
  4304. height: math.unit(3, "feet"),
  4305. weight: math.unit(180, "lbs"),
  4306. name: "Laying",
  4307. image: {
  4308. source: "./media/characters/zaakira/laying.svg"
  4309. }
  4310. },
  4311. },
  4312. [
  4313. {
  4314. name: "Normal",
  4315. height: math.unit(12, "feet")
  4316. },
  4317. {
  4318. name: "Macro",
  4319. height: math.unit(279, "feet"),
  4320. default: true
  4321. }
  4322. ]
  4323. ))
  4324. characterMakers.push(() => makeCharacter(
  4325. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4326. {
  4327. femSfw: {
  4328. height: math.unit(8, "feet"),
  4329. weight: math.unit(350, "lb"),
  4330. name: "Fem",
  4331. image: {
  4332. source: "./media/characters/sigvald/fem-sfw.svg",
  4333. extra: 182 / 164,
  4334. bottom: 8.7 / 190.5
  4335. }
  4336. },
  4337. femNsfw: {
  4338. height: math.unit(8, "feet"),
  4339. weight: math.unit(350, "lb"),
  4340. name: "Fem (NSFW)",
  4341. image: {
  4342. source: "./media/characters/sigvald/fem-nsfw.svg",
  4343. extra: 182 / 164,
  4344. bottom: 8.7 / 190.5
  4345. }
  4346. },
  4347. maleNsfw: {
  4348. height: math.unit(8, "feet"),
  4349. weight: math.unit(350, "lb"),
  4350. name: "Male (NSFW)",
  4351. image: {
  4352. source: "./media/characters/sigvald/male-nsfw.svg",
  4353. extra: 182 / 164,
  4354. bottom: 8.7 / 190.5
  4355. }
  4356. },
  4357. hermNsfw: {
  4358. height: math.unit(8, "feet"),
  4359. weight: math.unit(350, "lb"),
  4360. name: "Herm (NSFW)",
  4361. image: {
  4362. source: "./media/characters/sigvald/herm-nsfw.svg",
  4363. extra: 182 / 164,
  4364. bottom: 8.7 / 190.5
  4365. }
  4366. },
  4367. dick: {
  4368. height: math.unit(2.36, "feet"),
  4369. name: "Dick",
  4370. image: {
  4371. source: "./media/characters/sigvald/dick.svg"
  4372. }
  4373. },
  4374. eye: {
  4375. height: math.unit(0.31, "feet"),
  4376. name: "Eye",
  4377. image: {
  4378. source: "./media/characters/sigvald/eye.svg"
  4379. }
  4380. },
  4381. mouth: {
  4382. height: math.unit(0.92, "feet"),
  4383. name: "Mouth",
  4384. image: {
  4385. source: "./media/characters/sigvald/mouth.svg"
  4386. }
  4387. },
  4388. paws: {
  4389. height: math.unit(2.2, "feet"),
  4390. name: "Paws",
  4391. image: {
  4392. source: "./media/characters/sigvald/paws.svg"
  4393. }
  4394. }
  4395. },
  4396. [
  4397. {
  4398. name: "Normal",
  4399. height: math.unit(8, "feet")
  4400. },
  4401. {
  4402. name: "Large",
  4403. height: math.unit(12, "feet")
  4404. },
  4405. {
  4406. name: "Larger",
  4407. height: math.unit(20, "feet")
  4408. },
  4409. {
  4410. name: "Macro",
  4411. height: math.unit(150, "feet")
  4412. },
  4413. {
  4414. name: "Macro+",
  4415. height: math.unit(200, "feet"),
  4416. default: true
  4417. },
  4418. ]
  4419. ))
  4420. characterMakers.push(() => makeCharacter(
  4421. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4422. {
  4423. side: {
  4424. height: math.unit(12, "feet"),
  4425. weight: math.unit(2000, "kg"),
  4426. name: "Side",
  4427. image: {
  4428. source: "./media/characters/scott/side.svg",
  4429. extra: 754 / 724,
  4430. bottom: 0.069
  4431. }
  4432. },
  4433. upright: {
  4434. height: math.unit(12, "feet"),
  4435. weight: math.unit(2000, "kg"),
  4436. name: "Upright",
  4437. image: {
  4438. source: "./media/characters/scott/upright.svg",
  4439. extra: 3881 / 3722,
  4440. bottom: 0.05
  4441. }
  4442. },
  4443. },
  4444. [
  4445. {
  4446. name: "Normal",
  4447. height: math.unit(12, "feet"),
  4448. default: true
  4449. },
  4450. ]
  4451. ))
  4452. characterMakers.push(() => makeCharacter(
  4453. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4454. {
  4455. side: {
  4456. height: math.unit(8, "meters"),
  4457. weight: math.unit(84755, "lbs"),
  4458. name: "Side",
  4459. image: {
  4460. source: "./media/characters/tobias/side.svg",
  4461. extra: 1474 / 1096,
  4462. bottom: 38.9 / 1513.1235
  4463. }
  4464. },
  4465. },
  4466. [
  4467. {
  4468. name: "Normal",
  4469. height: math.unit(8, "meters"),
  4470. default: true
  4471. },
  4472. ]
  4473. ))
  4474. characterMakers.push(() => makeCharacter(
  4475. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4476. {
  4477. front: {
  4478. height: math.unit(5.5, "feet"),
  4479. weight: math.unit(400, "lbs"),
  4480. name: "Front",
  4481. image: {
  4482. source: "./media/characters/kieran/front.svg",
  4483. extra: 2694 / 2364,
  4484. bottom: 217 / 2908
  4485. }
  4486. },
  4487. side: {
  4488. height: math.unit(5.5, "feet"),
  4489. weight: math.unit(400, "lbs"),
  4490. name: "Side",
  4491. image: {
  4492. source: "./media/characters/kieran/side.svg",
  4493. extra: 875 / 777,
  4494. bottom: 84.6 / 959
  4495. }
  4496. },
  4497. },
  4498. [
  4499. {
  4500. name: "Normal",
  4501. height: math.unit(5.5, "feet"),
  4502. default: true
  4503. },
  4504. ]
  4505. ))
  4506. characterMakers.push(() => makeCharacter(
  4507. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4508. {
  4509. side: {
  4510. height: math.unit(2, "meters"),
  4511. weight: math.unit(70, "kg"),
  4512. name: "Side",
  4513. image: {
  4514. source: "./media/characters/sanya/side.svg",
  4515. bottom: 0.02,
  4516. extra: 1.02
  4517. }
  4518. },
  4519. },
  4520. [
  4521. {
  4522. name: "Small",
  4523. height: math.unit(2, "meters")
  4524. },
  4525. {
  4526. name: "Normal",
  4527. height: math.unit(3, "meters")
  4528. },
  4529. {
  4530. name: "Macro",
  4531. height: math.unit(16, "meters"),
  4532. default: true
  4533. },
  4534. ]
  4535. ))
  4536. characterMakers.push(() => makeCharacter(
  4537. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4538. {
  4539. front: {
  4540. height: math.unit(2, "meters"),
  4541. weight: math.unit(120, "kg"),
  4542. name: "Front",
  4543. image: {
  4544. source: "./media/characters/miranda/front.svg",
  4545. extra: 195 / 185,
  4546. bottom: 10.9 / 206.5
  4547. }
  4548. },
  4549. back: {
  4550. height: math.unit(2, "meters"),
  4551. weight: math.unit(120, "kg"),
  4552. name: "Back",
  4553. image: {
  4554. source: "./media/characters/miranda/back.svg",
  4555. extra: 201 / 193,
  4556. bottom: 2.3 / 203.7
  4557. }
  4558. },
  4559. },
  4560. [
  4561. {
  4562. name: "Normal",
  4563. height: math.unit(10, "feet"),
  4564. default: true
  4565. }
  4566. ]
  4567. ))
  4568. characterMakers.push(() => makeCharacter(
  4569. { name: "James", species: ["deer"], tags: ["anthro"] },
  4570. {
  4571. side: {
  4572. height: math.unit(2, "meters"),
  4573. weight: math.unit(100, "kg"),
  4574. name: "Front",
  4575. image: {
  4576. source: "./media/characters/james/front.svg",
  4577. extra: 10 / 8.5
  4578. }
  4579. },
  4580. },
  4581. [
  4582. {
  4583. name: "Normal",
  4584. height: math.unit(8.5, "feet"),
  4585. default: true
  4586. }
  4587. ]
  4588. ))
  4589. characterMakers.push(() => makeCharacter(
  4590. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4591. {
  4592. side: {
  4593. height: math.unit(9.5, "feet"),
  4594. weight: math.unit(2500, "lbs"),
  4595. name: "Side",
  4596. image: {
  4597. source: "./media/characters/heather/side.svg"
  4598. }
  4599. },
  4600. },
  4601. [
  4602. {
  4603. name: "Normal",
  4604. height: math.unit(9.5, "feet"),
  4605. default: true
  4606. }
  4607. ]
  4608. ))
  4609. characterMakers.push(() => makeCharacter(
  4610. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4611. {
  4612. side: {
  4613. height: math.unit(6.5, "feet"),
  4614. weight: math.unit(400, "lbs"),
  4615. name: "Side",
  4616. image: {
  4617. source: "./media/characters/lukas/side.svg",
  4618. extra: 7.25 / 6.5
  4619. }
  4620. },
  4621. },
  4622. [
  4623. {
  4624. name: "Normal",
  4625. height: math.unit(6.5, "feet"),
  4626. default: true
  4627. }
  4628. ]
  4629. ))
  4630. characterMakers.push(() => makeCharacter(
  4631. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4632. {
  4633. side: {
  4634. height: math.unit(5, "feet"),
  4635. weight: math.unit(3000, "lbs"),
  4636. name: "Side",
  4637. image: {
  4638. source: "./media/characters/louise/side.svg"
  4639. }
  4640. },
  4641. },
  4642. [
  4643. {
  4644. name: "Normal",
  4645. height: math.unit(5, "feet"),
  4646. default: true
  4647. }
  4648. ]
  4649. ))
  4650. characterMakers.push(() => makeCharacter(
  4651. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4652. {
  4653. side: {
  4654. height: math.unit(6, "feet"),
  4655. weight: math.unit(150, "lbs"),
  4656. name: "Side",
  4657. image: {
  4658. source: "./media/characters/ramona/side.svg"
  4659. }
  4660. },
  4661. },
  4662. [
  4663. {
  4664. name: "Normal",
  4665. height: math.unit(5.3, "meters"),
  4666. default: true
  4667. },
  4668. {
  4669. name: "Macro",
  4670. height: math.unit(20, "stories")
  4671. },
  4672. {
  4673. name: "Macro+",
  4674. height: math.unit(50, "stories")
  4675. },
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4680. {
  4681. standing: {
  4682. height: math.unit(5.75, "feet"),
  4683. weight: math.unit(160, "lbs"),
  4684. name: "Standing",
  4685. image: {
  4686. source: "./media/characters/deerpuff/standing.svg",
  4687. extra: 682 / 624
  4688. }
  4689. },
  4690. sitting: {
  4691. height: math.unit(5.75 / 1.79, "feet"),
  4692. weight: math.unit(160, "lbs"),
  4693. name: "Sitting",
  4694. image: {
  4695. source: "./media/characters/deerpuff/sitting.svg",
  4696. bottom: 44 / 400,
  4697. extra: 1
  4698. }
  4699. },
  4700. taurLaying: {
  4701. height: math.unit(6, "feet"),
  4702. weight: math.unit(400, "lbs"),
  4703. name: "Taur (Laying)",
  4704. image: {
  4705. source: "./media/characters/deerpuff/taur-laying.svg"
  4706. }
  4707. },
  4708. },
  4709. [
  4710. {
  4711. name: "Puffball",
  4712. height: math.unit(6, "inches")
  4713. },
  4714. {
  4715. name: "Normalpuff",
  4716. height: math.unit(5.75, "feet")
  4717. },
  4718. {
  4719. name: "Macropuff",
  4720. height: math.unit(1500, "feet"),
  4721. default: true
  4722. },
  4723. {
  4724. name: "Megapuff",
  4725. height: math.unit(500, "miles")
  4726. },
  4727. {
  4728. name: "Gigapuff",
  4729. height: math.unit(250000, "miles")
  4730. },
  4731. {
  4732. name: "Omegapuff",
  4733. height: math.unit(1000, "lightyears")
  4734. },
  4735. ]
  4736. ))
  4737. characterMakers.push(() => makeCharacter(
  4738. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4739. {
  4740. stomping: {
  4741. height: math.unit(6, "feet"),
  4742. weight: math.unit(170, "lbs"),
  4743. name: "Stomping",
  4744. image: {
  4745. source: "./media/characters/vivian/stomping.svg"
  4746. }
  4747. },
  4748. sitting: {
  4749. height: math.unit(6 / 1.75, "feet"),
  4750. weight: math.unit(170, "lbs"),
  4751. name: "Sitting",
  4752. image: {
  4753. source: "./media/characters/vivian/sitting.svg",
  4754. bottom: 1 / 6.4,
  4755. extra: 1,
  4756. }
  4757. },
  4758. },
  4759. [
  4760. {
  4761. name: "Normal",
  4762. height: math.unit(7, "feet"),
  4763. default: true
  4764. },
  4765. {
  4766. name: "Macro",
  4767. height: math.unit(10, "stories")
  4768. },
  4769. {
  4770. name: "Macro+",
  4771. height: math.unit(30, "stories")
  4772. },
  4773. {
  4774. name: "Megamacro",
  4775. height: math.unit(10, "miles")
  4776. },
  4777. {
  4778. name: "Megamacro+",
  4779. height: math.unit(2750000, "meters")
  4780. },
  4781. ]
  4782. ))
  4783. characterMakers.push(() => makeCharacter(
  4784. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4785. {
  4786. front: {
  4787. height: math.unit(6, "feet"),
  4788. weight: math.unit(160, "lbs"),
  4789. name: "Front",
  4790. image: {
  4791. source: "./media/characters/prince/front.svg",
  4792. extra: 3400 / 3000
  4793. }
  4794. },
  4795. jumping: {
  4796. height: math.unit(6, "feet"),
  4797. weight: math.unit(160, "lbs"),
  4798. name: "Jumping",
  4799. image: {
  4800. source: "./media/characters/prince/jump.svg",
  4801. extra: 2555 / 2134
  4802. }
  4803. },
  4804. },
  4805. [
  4806. {
  4807. name: "Normal",
  4808. height: math.unit(7.75, "feet"),
  4809. default: true
  4810. },
  4811. {
  4812. name: "Not cute",
  4813. height: math.unit(17, "feet")
  4814. },
  4815. {
  4816. name: "I said NOT",
  4817. height: math.unit(91, "feet")
  4818. },
  4819. {
  4820. name: "Please stop",
  4821. height: math.unit(560, "feet")
  4822. },
  4823. {
  4824. name: "What have you done",
  4825. height: math.unit(2200, "feet")
  4826. },
  4827. {
  4828. name: "Deer God",
  4829. height: math.unit(3.6, "miles")
  4830. },
  4831. ]
  4832. ))
  4833. characterMakers.push(() => makeCharacter(
  4834. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4835. {
  4836. standing: {
  4837. height: math.unit(6, "feet"),
  4838. weight: math.unit(300, "lbs"),
  4839. name: "Standing",
  4840. image: {
  4841. source: "./media/characters/psymon/standing.svg",
  4842. extra: 1888 / 1810,
  4843. bottom: 0.05
  4844. }
  4845. },
  4846. slithering: {
  4847. height: math.unit(6, "feet"),
  4848. weight: math.unit(300, "lbs"),
  4849. name: "Slithering",
  4850. image: {
  4851. source: "./media/characters/psymon/slithering.svg",
  4852. extra: 1330 / 1224
  4853. }
  4854. },
  4855. slitheringAlt: {
  4856. height: math.unit(6, "feet"),
  4857. weight: math.unit(300, "lbs"),
  4858. name: "Slithering (Alt)",
  4859. image: {
  4860. source: "./media/characters/psymon/slithering-alt.svg",
  4861. extra: 1330 / 1224
  4862. }
  4863. },
  4864. },
  4865. [
  4866. {
  4867. name: "Normal",
  4868. height: math.unit(11.25, "feet"),
  4869. default: true
  4870. },
  4871. {
  4872. name: "Large",
  4873. height: math.unit(27, "feet")
  4874. },
  4875. {
  4876. name: "Giant",
  4877. height: math.unit(87, "feet")
  4878. },
  4879. {
  4880. name: "Macro",
  4881. height: math.unit(365, "feet")
  4882. },
  4883. {
  4884. name: "Megamacro",
  4885. height: math.unit(3, "miles")
  4886. },
  4887. {
  4888. name: "World Serpent",
  4889. height: math.unit(8000, "miles")
  4890. },
  4891. ]
  4892. ))
  4893. characterMakers.push(() => makeCharacter(
  4894. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4895. {
  4896. front: {
  4897. height: math.unit(6, "feet"),
  4898. weight: math.unit(180, "lbs"),
  4899. name: "Front",
  4900. image: {
  4901. source: "./media/characters/daimos/front.svg",
  4902. extra: 4160 / 3897,
  4903. bottom: 0.021
  4904. }
  4905. }
  4906. },
  4907. [
  4908. {
  4909. name: "Normal",
  4910. height: math.unit(8, "feet"),
  4911. default: true
  4912. },
  4913. {
  4914. name: "Big Dog",
  4915. height: math.unit(22, "feet")
  4916. },
  4917. {
  4918. name: "Macro",
  4919. height: math.unit(127, "feet")
  4920. },
  4921. {
  4922. name: "Megamacro",
  4923. height: math.unit(3600, "feet")
  4924. },
  4925. ]
  4926. ))
  4927. characterMakers.push(() => makeCharacter(
  4928. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4929. {
  4930. side: {
  4931. height: math.unit(6, "feet"),
  4932. weight: math.unit(180, "lbs"),
  4933. name: "Side",
  4934. image: {
  4935. source: "./media/characters/blake/side.svg",
  4936. extra: 1212 / 1120,
  4937. bottom: 0.05
  4938. }
  4939. },
  4940. crouched: {
  4941. height: math.unit(6 * 0.57, "feet"),
  4942. weight: math.unit(180, "lbs"),
  4943. name: "Crouched",
  4944. image: {
  4945. source: "./media/characters/blake/crouched.svg",
  4946. extra: 840 / 587,
  4947. bottom: 0.04
  4948. }
  4949. },
  4950. bent: {
  4951. height: math.unit(6 * 0.75, "feet"),
  4952. weight: math.unit(180, "lbs"),
  4953. name: "Bent",
  4954. image: {
  4955. source: "./media/characters/blake/bent.svg",
  4956. extra: 592 / 544,
  4957. bottom: 0.035
  4958. }
  4959. },
  4960. },
  4961. [
  4962. {
  4963. name: "Normal",
  4964. height: math.unit(8 + 1 / 6, "feet"),
  4965. default: true
  4966. },
  4967. {
  4968. name: "Big Backside",
  4969. height: math.unit(37, "feet")
  4970. },
  4971. {
  4972. name: "Subway Shredder",
  4973. height: math.unit(72, "feet")
  4974. },
  4975. {
  4976. name: "City Carver",
  4977. height: math.unit(1675, "feet")
  4978. },
  4979. {
  4980. name: "Tectonic Tweaker",
  4981. height: math.unit(2300, "miles")
  4982. },
  4983. ]
  4984. ))
  4985. characterMakers.push(() => makeCharacter(
  4986. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4987. {
  4988. front: {
  4989. height: math.unit(6, "feet"),
  4990. weight: math.unit(180, "lbs"),
  4991. name: "Front",
  4992. image: {
  4993. source: "./media/characters/guisetto/front.svg",
  4994. extra: 856 / 817,
  4995. bottom: 0.06
  4996. }
  4997. },
  4998. airborne: {
  4999. height: math.unit(6, "feet"),
  5000. weight: math.unit(180, "lbs"),
  5001. name: "Airborne",
  5002. image: {
  5003. source: "./media/characters/guisetto/airborne.svg",
  5004. extra: 584 / 525
  5005. }
  5006. },
  5007. },
  5008. [
  5009. {
  5010. name: "Normal",
  5011. height: math.unit(10 + 11 / 12, "feet"),
  5012. default: true
  5013. },
  5014. {
  5015. name: "Large",
  5016. height: math.unit(35, "feet")
  5017. },
  5018. {
  5019. name: "Macro",
  5020. height: math.unit(475, "feet")
  5021. },
  5022. ]
  5023. ))
  5024. characterMakers.push(() => makeCharacter(
  5025. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5026. {
  5027. front: {
  5028. height: math.unit(6, "feet"),
  5029. weight: math.unit(180, "lbs"),
  5030. name: "Front",
  5031. image: {
  5032. source: "./media/characters/luxor/front.svg",
  5033. extra: 2940 / 2152
  5034. }
  5035. },
  5036. back: {
  5037. height: math.unit(6, "feet"),
  5038. weight: math.unit(180, "lbs"),
  5039. name: "Back",
  5040. image: {
  5041. source: "./media/characters/luxor/back.svg",
  5042. extra: 1083 / 960
  5043. }
  5044. },
  5045. },
  5046. [
  5047. {
  5048. name: "Normal",
  5049. height: math.unit(5 + 5 / 6, "feet"),
  5050. default: true
  5051. },
  5052. {
  5053. name: "Lamp",
  5054. height: math.unit(50, "feet")
  5055. },
  5056. {
  5057. name: "Lämp",
  5058. height: math.unit(300, "feet")
  5059. },
  5060. {
  5061. name: "The sun is a lamp",
  5062. height: math.unit(250000, "miles")
  5063. },
  5064. ]
  5065. ))
  5066. characterMakers.push(() => makeCharacter(
  5067. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5068. {
  5069. front: {
  5070. height: math.unit(6, "feet"),
  5071. weight: math.unit(50, "lbs"),
  5072. name: "Front",
  5073. image: {
  5074. source: "./media/characters/huoyan/front.svg"
  5075. }
  5076. },
  5077. side: {
  5078. height: math.unit(6, "feet"),
  5079. weight: math.unit(180, "lbs"),
  5080. name: "Side",
  5081. image: {
  5082. source: "./media/characters/huoyan/side.svg"
  5083. }
  5084. },
  5085. },
  5086. [
  5087. {
  5088. name: "Chef",
  5089. height: math.unit(9, "feet")
  5090. },
  5091. {
  5092. name: "Normal",
  5093. height: math.unit(65, "feet"),
  5094. default: true
  5095. },
  5096. {
  5097. name: "Macro",
  5098. height: math.unit(780, "feet")
  5099. },
  5100. {
  5101. name: "Flaming Mountain",
  5102. height: math.unit(4.8, "miles")
  5103. },
  5104. {
  5105. name: "Celestial",
  5106. height: math.unit(765000, "miles")
  5107. },
  5108. ]
  5109. ))
  5110. characterMakers.push(() => makeCharacter(
  5111. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5112. {
  5113. front: {
  5114. height: math.unit(5 + 3 / 4, "feet"),
  5115. weight: math.unit(120, "lbs"),
  5116. name: "Front",
  5117. image: {
  5118. source: "./media/characters/tails/front.svg"
  5119. }
  5120. }
  5121. },
  5122. [
  5123. {
  5124. name: "Normal",
  5125. height: math.unit(5 + 3 / 4, "feet"),
  5126. default: true
  5127. }
  5128. ]
  5129. ))
  5130. characterMakers.push(() => makeCharacter(
  5131. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5132. {
  5133. front: {
  5134. height: math.unit(4, "feet"),
  5135. weight: math.unit(50, "lbs"),
  5136. name: "Front",
  5137. image: {
  5138. source: "./media/characters/rainy/front.svg"
  5139. }
  5140. }
  5141. },
  5142. [
  5143. {
  5144. name: "Macro",
  5145. height: math.unit(800, "feet"),
  5146. default: true
  5147. }
  5148. ]
  5149. ))
  5150. characterMakers.push(() => makeCharacter(
  5151. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5152. {
  5153. front: {
  5154. height: math.unit(6, "feet"),
  5155. weight: math.unit(150, "lbs"),
  5156. name: "Front",
  5157. image: {
  5158. source: "./media/characters/rainier/front.svg"
  5159. }
  5160. }
  5161. },
  5162. [
  5163. {
  5164. name: "Micro",
  5165. height: math.unit(2, "mm"),
  5166. default: true
  5167. }
  5168. ]
  5169. ))
  5170. characterMakers.push(() => makeCharacter(
  5171. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5172. {
  5173. front: {
  5174. height: math.unit(6, "feet"),
  5175. weight: math.unit(180, "lbs"),
  5176. name: "Front",
  5177. image: {
  5178. source: "./media/characters/andy/front.svg"
  5179. }
  5180. }
  5181. },
  5182. [
  5183. {
  5184. name: "Normal",
  5185. height: math.unit(8, "feet"),
  5186. default: true
  5187. },
  5188. {
  5189. name: "Macro",
  5190. height: math.unit(1000, "feet")
  5191. },
  5192. {
  5193. name: "Megamacro",
  5194. height: math.unit(5, "miles")
  5195. },
  5196. {
  5197. name: "Gigamacro",
  5198. height: math.unit(5000, "miles")
  5199. },
  5200. ]
  5201. ))
  5202. characterMakers.push(() => makeCharacter(
  5203. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5204. {
  5205. front: {
  5206. height: math.unit(6, "feet"),
  5207. weight: math.unit(210, "lbs"),
  5208. name: "Front",
  5209. image: {
  5210. source: "./media/characters/cimmaron/front-sfw.svg",
  5211. extra: 701 / 676,
  5212. bottom: 0.046
  5213. }
  5214. },
  5215. back: {
  5216. height: math.unit(6, "feet"),
  5217. weight: math.unit(210, "lbs"),
  5218. name: "Back",
  5219. image: {
  5220. source: "./media/characters/cimmaron/back-sfw.svg",
  5221. extra: 701 / 676,
  5222. bottom: 0.046
  5223. }
  5224. },
  5225. frontNsfw: {
  5226. height: math.unit(6, "feet"),
  5227. weight: math.unit(210, "lbs"),
  5228. name: "Front (NSFW)",
  5229. image: {
  5230. source: "./media/characters/cimmaron/front-nsfw.svg",
  5231. extra: 701 / 676,
  5232. bottom: 0.046
  5233. }
  5234. },
  5235. backNsfw: {
  5236. height: math.unit(6, "feet"),
  5237. weight: math.unit(210, "lbs"),
  5238. name: "Back (NSFW)",
  5239. image: {
  5240. source: "./media/characters/cimmaron/back-nsfw.svg",
  5241. extra: 701 / 676,
  5242. bottom: 0.046
  5243. }
  5244. },
  5245. dick: {
  5246. height: math.unit(1.714, "feet"),
  5247. name: "Dick",
  5248. image: {
  5249. source: "./media/characters/cimmaron/dick.svg"
  5250. }
  5251. },
  5252. },
  5253. [
  5254. {
  5255. name: "Normal",
  5256. height: math.unit(6, "feet"),
  5257. default: true
  5258. },
  5259. {
  5260. name: "Macro Mayor",
  5261. height: math.unit(350, "meters")
  5262. },
  5263. ]
  5264. ))
  5265. characterMakers.push(() => makeCharacter(
  5266. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5267. {
  5268. front: {
  5269. height: math.unit(6, "feet"),
  5270. weight: math.unit(200, "lbs"),
  5271. name: "Front",
  5272. image: {
  5273. source: "./media/characters/akari/front.svg",
  5274. extra: 962 / 901,
  5275. bottom: 0.04
  5276. }
  5277. }
  5278. },
  5279. [
  5280. {
  5281. name: "Micro",
  5282. height: math.unit(5, "inches"),
  5283. default: true
  5284. },
  5285. {
  5286. name: "Normal",
  5287. height: math.unit(7, "feet")
  5288. },
  5289. ]
  5290. ))
  5291. characterMakers.push(() => makeCharacter(
  5292. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5293. {
  5294. front: {
  5295. height: math.unit(6, "feet"),
  5296. weight: math.unit(140, "lbs"),
  5297. name: "Front",
  5298. image: {
  5299. source: "./media/characters/cynosura/front.svg",
  5300. extra: 896 / 847
  5301. }
  5302. },
  5303. back: {
  5304. height: math.unit(6, "feet"),
  5305. weight: math.unit(140, "lbs"),
  5306. name: "Back",
  5307. image: {
  5308. source: "./media/characters/cynosura/back.svg",
  5309. extra: 1365 / 1250
  5310. }
  5311. },
  5312. },
  5313. [
  5314. {
  5315. name: "Micro",
  5316. height: math.unit(4, "inches")
  5317. },
  5318. {
  5319. name: "Normal",
  5320. height: math.unit(5.75, "feet"),
  5321. default: true
  5322. },
  5323. {
  5324. name: "Tall",
  5325. height: math.unit(10, "feet")
  5326. },
  5327. {
  5328. name: "Big",
  5329. height: math.unit(20, "feet")
  5330. },
  5331. {
  5332. name: "Macro",
  5333. height: math.unit(50, "feet")
  5334. },
  5335. ]
  5336. ))
  5337. characterMakers.push(() => makeCharacter(
  5338. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5339. {
  5340. front: {
  5341. height: math.unit(6, "feet"),
  5342. weight: math.unit(170, "lbs"),
  5343. name: "Front",
  5344. image: {
  5345. source: "./media/characters/gin/front.svg",
  5346. extra: 1.053,
  5347. bottom: 0.025
  5348. }
  5349. },
  5350. foot: {
  5351. height: math.unit(6 / 4.25, "feet"),
  5352. name: "Foot",
  5353. image: {
  5354. source: "./media/characters/gin/foot.svg"
  5355. }
  5356. },
  5357. sole: {
  5358. height: math.unit(6 / 4.40, "feet"),
  5359. name: "Sole",
  5360. image: {
  5361. source: "./media/characters/gin/sole.svg"
  5362. }
  5363. },
  5364. },
  5365. [
  5366. {
  5367. name: "Normal",
  5368. height: math.unit(13 + 2 / 12, "feet")
  5369. },
  5370. {
  5371. name: "Macro",
  5372. height: math.unit(1500, "feet")
  5373. },
  5374. {
  5375. name: "Megamacro",
  5376. height: math.unit(200, "miles"),
  5377. default: true
  5378. },
  5379. {
  5380. name: "Gigamacro",
  5381. height: math.unit(500, "megameters")
  5382. },
  5383. {
  5384. name: "Teramacro",
  5385. height: math.unit(15, "lightyears")
  5386. }
  5387. ]
  5388. ))
  5389. characterMakers.push(() => makeCharacter(
  5390. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5391. {
  5392. front: {
  5393. height: math.unit(6 + 1 / 6, "feet"),
  5394. weight: math.unit(178, "lbs"),
  5395. name: "Front",
  5396. image: {
  5397. source: "./media/characters/guy/front.svg"
  5398. }
  5399. }
  5400. },
  5401. [
  5402. {
  5403. name: "Normal",
  5404. height: math.unit(6 + 1 / 6, "feet"),
  5405. default: true
  5406. },
  5407. {
  5408. name: "Large",
  5409. height: math.unit(25 + 7 / 12, "feet")
  5410. },
  5411. {
  5412. name: "Macro",
  5413. height: math.unit(60 + 9 / 12, "feet")
  5414. },
  5415. {
  5416. name: "Macro+",
  5417. height: math.unit(246, "feet")
  5418. },
  5419. {
  5420. name: "Macro++",
  5421. height: math.unit(878, "feet")
  5422. }
  5423. ]
  5424. ))
  5425. characterMakers.push(() => makeCharacter(
  5426. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5427. {
  5428. front: {
  5429. height: math.unit(9, "feet"),
  5430. weight: math.unit(800, "lbs"),
  5431. name: "Front",
  5432. image: {
  5433. source: "./media/characters/tiberius/front.svg",
  5434. extra: 2295 / 2071
  5435. }
  5436. },
  5437. back: {
  5438. height: math.unit(9, "feet"),
  5439. weight: math.unit(800, "lbs"),
  5440. name: "Back",
  5441. image: {
  5442. source: "./media/characters/tiberius/back.svg",
  5443. extra: 2373 / 2160
  5444. }
  5445. },
  5446. },
  5447. [
  5448. {
  5449. name: "Normal",
  5450. height: math.unit(9, "feet"),
  5451. default: true
  5452. }
  5453. ]
  5454. ))
  5455. characterMakers.push(() => makeCharacter(
  5456. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5457. {
  5458. front: {
  5459. height: math.unit(6, "feet"),
  5460. weight: math.unit(600, "lbs"),
  5461. name: "Front",
  5462. image: {
  5463. source: "./media/characters/surgo/front.svg",
  5464. extra: 3591 / 2227
  5465. }
  5466. },
  5467. back: {
  5468. height: math.unit(6, "feet"),
  5469. weight: math.unit(600, "lbs"),
  5470. name: "Back",
  5471. image: {
  5472. source: "./media/characters/surgo/back.svg",
  5473. extra: 3557 / 2228
  5474. }
  5475. },
  5476. laying: {
  5477. height: math.unit(6 * 0.85, "feet"),
  5478. weight: math.unit(600, "lbs"),
  5479. name: "Laying",
  5480. image: {
  5481. source: "./media/characters/surgo/laying.svg"
  5482. }
  5483. },
  5484. },
  5485. [
  5486. {
  5487. name: "Normal",
  5488. height: math.unit(6, "feet"),
  5489. default: true
  5490. }
  5491. ]
  5492. ))
  5493. characterMakers.push(() => makeCharacter(
  5494. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5495. {
  5496. side: {
  5497. height: math.unit(6, "feet"),
  5498. weight: math.unit(150, "lbs"),
  5499. name: "Side",
  5500. image: {
  5501. source: "./media/characters/cibus/side.svg",
  5502. extra: 800 / 400
  5503. }
  5504. },
  5505. },
  5506. [
  5507. {
  5508. name: "Normal",
  5509. height: math.unit(6, "feet"),
  5510. default: true
  5511. }
  5512. ]
  5513. ))
  5514. characterMakers.push(() => makeCharacter(
  5515. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5516. {
  5517. front: {
  5518. height: math.unit(6, "feet"),
  5519. weight: math.unit(240, "lbs"),
  5520. name: "Front",
  5521. image: {
  5522. source: "./media/characters/nibbles/front.svg"
  5523. }
  5524. },
  5525. side: {
  5526. height: math.unit(6, "feet"),
  5527. weight: math.unit(240, "lbs"),
  5528. name: "Side",
  5529. image: {
  5530. source: "./media/characters/nibbles/side.svg"
  5531. }
  5532. },
  5533. },
  5534. [
  5535. {
  5536. name: "Normal",
  5537. height: math.unit(9, "feet"),
  5538. default: true
  5539. }
  5540. ]
  5541. ))
  5542. characterMakers.push(() => makeCharacter(
  5543. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5544. {
  5545. side: {
  5546. height: math.unit(5 + 1 / 6, "feet"),
  5547. weight: math.unit(130, "lbs"),
  5548. name: "Side",
  5549. image: {
  5550. source: "./media/characters/rikky/side.svg",
  5551. extra: 851 / 801
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(5 + 1 / 6, "feet")
  5559. },
  5560. {
  5561. name: "Macro",
  5562. height: math.unit(152, "feet"),
  5563. default: true
  5564. },
  5565. {
  5566. name: "Megamacro",
  5567. height: math.unit(7, "miles")
  5568. }
  5569. ]
  5570. ))
  5571. characterMakers.push(() => makeCharacter(
  5572. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5573. {
  5574. side: {
  5575. height: math.unit(370, "cm"),
  5576. weight: math.unit(350, "lbs"),
  5577. name: "Side",
  5578. image: {
  5579. source: "./media/characters/malfressa/side.svg"
  5580. }
  5581. },
  5582. walking: {
  5583. height: math.unit(370, "cm"),
  5584. weight: math.unit(350, "lbs"),
  5585. name: "Walking",
  5586. image: {
  5587. source: "./media/characters/malfressa/walking.svg"
  5588. }
  5589. },
  5590. feral: {
  5591. height: math.unit(2500, "cm"),
  5592. weight: math.unit(100000, "lbs"),
  5593. name: "Feral",
  5594. image: {
  5595. source: "./media/characters/malfressa/feral.svg",
  5596. extra: 2108 / 837,
  5597. bottom: 0.02
  5598. }
  5599. },
  5600. },
  5601. [
  5602. {
  5603. name: "Normal",
  5604. height: math.unit(370, "cm")
  5605. },
  5606. {
  5607. name: "Macro",
  5608. height: math.unit(300, "meters"),
  5609. default: true
  5610. }
  5611. ]
  5612. ))
  5613. characterMakers.push(() => makeCharacter(
  5614. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5615. {
  5616. front: {
  5617. height: math.unit(6, "feet"),
  5618. weight: math.unit(60, "kg"),
  5619. name: "Front",
  5620. image: {
  5621. source: "./media/characters/jaro/front.svg"
  5622. }
  5623. },
  5624. back: {
  5625. height: math.unit(6, "feet"),
  5626. weight: math.unit(60, "kg"),
  5627. name: "Back",
  5628. image: {
  5629. source: "./media/characters/jaro/back.svg"
  5630. }
  5631. },
  5632. },
  5633. [
  5634. {
  5635. name: "Micro",
  5636. height: math.unit(7, "inches")
  5637. },
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(5.5, "feet"),
  5641. default: true
  5642. },
  5643. {
  5644. name: "Minimacro",
  5645. height: math.unit(20, "feet")
  5646. },
  5647. {
  5648. name: "Macro",
  5649. height: math.unit(200, "meters")
  5650. }
  5651. ]
  5652. ))
  5653. characterMakers.push(() => makeCharacter(
  5654. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5655. {
  5656. front: {
  5657. height: math.unit(6, "feet"),
  5658. weight: math.unit(195, "lb"),
  5659. name: "Front",
  5660. image: {
  5661. source: "./media/characters/rogue/front.svg"
  5662. }
  5663. },
  5664. },
  5665. [
  5666. {
  5667. name: "Macro",
  5668. height: math.unit(90, "feet"),
  5669. default: true
  5670. },
  5671. ]
  5672. ))
  5673. characterMakers.push(() => makeCharacter(
  5674. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5675. {
  5676. front: {
  5677. height: math.unit(5 + 8 / 12, "feet"),
  5678. weight: math.unit(140, "lb"),
  5679. name: "Front",
  5680. image: {
  5681. source: "./media/characters/piper/front.svg",
  5682. extra: 3928 / 3681
  5683. }
  5684. },
  5685. },
  5686. [
  5687. {
  5688. name: "Micro",
  5689. height: math.unit(2, "inches")
  5690. },
  5691. {
  5692. name: "Normal",
  5693. height: math.unit(5 + 8 / 12, "feet")
  5694. },
  5695. {
  5696. name: "Macro",
  5697. height: math.unit(250, "feet"),
  5698. default: true
  5699. },
  5700. {
  5701. name: "Megamacro",
  5702. height: math.unit(7, "miles")
  5703. },
  5704. ]
  5705. ))
  5706. characterMakers.push(() => makeCharacter(
  5707. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5708. {
  5709. front: {
  5710. height: math.unit(6, "feet"),
  5711. weight: math.unit(220, "lb"),
  5712. name: "Front",
  5713. image: {
  5714. source: "./media/characters/gemini/front.svg"
  5715. }
  5716. },
  5717. back: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(220, "lb"),
  5720. name: "Back",
  5721. image: {
  5722. source: "./media/characters/gemini/back.svg"
  5723. }
  5724. },
  5725. kneeling: {
  5726. height: math.unit(6 / 1.5, "feet"),
  5727. weight: math.unit(220, "lb"),
  5728. name: "Kneeling",
  5729. image: {
  5730. source: "./media/characters/gemini/kneeling.svg",
  5731. bottom: 0.02
  5732. }
  5733. },
  5734. },
  5735. [
  5736. {
  5737. name: "Macro",
  5738. height: math.unit(300, "meters"),
  5739. default: true
  5740. },
  5741. {
  5742. name: "Megamacro",
  5743. height: math.unit(6900, "meters")
  5744. },
  5745. ]
  5746. ))
  5747. characterMakers.push(() => makeCharacter(
  5748. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5749. {
  5750. anthro: {
  5751. height: math.unit(2.35, "meters"),
  5752. weight: math.unit(73, "kg"),
  5753. name: "Anthro",
  5754. image: {
  5755. source: "./media/characters/alicia/anthro.svg",
  5756. extra: 2571 / 2385,
  5757. bottom: 75 / 2648
  5758. }
  5759. },
  5760. paw: {
  5761. height: math.unit(1.32, "feet"),
  5762. name: "Paw",
  5763. image: {
  5764. source: "./media/characters/alicia/paw.svg"
  5765. }
  5766. },
  5767. feral: {
  5768. height: math.unit(1.69, "meters"),
  5769. weight: math.unit(73, "kg"),
  5770. name: "Feral",
  5771. image: {
  5772. source: "./media/characters/alicia/feral.svg",
  5773. extra: 2123 / 1715,
  5774. bottom: 222 / 2349
  5775. }
  5776. },
  5777. },
  5778. [
  5779. {
  5780. name: "Normal",
  5781. height: math.unit(2.35, "meters")
  5782. },
  5783. {
  5784. name: "Macro",
  5785. height: math.unit(60, "meters"),
  5786. default: true
  5787. },
  5788. {
  5789. name: "Megamacro",
  5790. height: math.unit(10000, "kilometers")
  5791. },
  5792. ]
  5793. ))
  5794. characterMakers.push(() => makeCharacter(
  5795. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5796. {
  5797. front: {
  5798. height: math.unit(7, "feet"),
  5799. weight: math.unit(250, "lbs"),
  5800. name: "Front",
  5801. image: {
  5802. source: "./media/characters/archy/front.svg"
  5803. }
  5804. }
  5805. },
  5806. [
  5807. {
  5808. name: "Micro",
  5809. height: math.unit(1, "inch")
  5810. },
  5811. {
  5812. name: "Shorty",
  5813. height: math.unit(5, "feet")
  5814. },
  5815. {
  5816. name: "Normal",
  5817. height: math.unit(7, "feet")
  5818. },
  5819. {
  5820. name: "Macro",
  5821. height: math.unit(600, "meters"),
  5822. default: true
  5823. },
  5824. {
  5825. name: "Megamacro",
  5826. height: math.unit(1, "mile")
  5827. },
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5832. {
  5833. front: {
  5834. height: math.unit(1.65, "meters"),
  5835. weight: math.unit(74, "kg"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/berri/front.svg",
  5839. extra: 857 / 837,
  5840. bottom: 18 / 877
  5841. }
  5842. },
  5843. bum: {
  5844. height: math.unit(1.46, "feet"),
  5845. name: "Bum",
  5846. image: {
  5847. source: "./media/characters/berri/bum.svg"
  5848. }
  5849. },
  5850. mouth: {
  5851. height: math.unit(0.44, "feet"),
  5852. name: "Mouth",
  5853. image: {
  5854. source: "./media/characters/berri/mouth.svg"
  5855. }
  5856. },
  5857. paw: {
  5858. height: math.unit(0.826, "feet"),
  5859. name: "Paw",
  5860. image: {
  5861. source: "./media/characters/berri/paw.svg"
  5862. }
  5863. },
  5864. },
  5865. [
  5866. {
  5867. name: "Normal",
  5868. height: math.unit(1.65, "meters")
  5869. },
  5870. {
  5871. name: "Macro",
  5872. height: math.unit(60, "m"),
  5873. default: true
  5874. },
  5875. {
  5876. name: "Megamacro",
  5877. height: math.unit(9.213, "km")
  5878. },
  5879. {
  5880. name: "Planet Eater",
  5881. height: math.unit(489, "megameters")
  5882. },
  5883. {
  5884. name: "Teramacro",
  5885. height: math.unit(2471635000000, "meters")
  5886. },
  5887. {
  5888. name: "Examacro",
  5889. height: math.unit(8.0624e+26, "meters")
  5890. }
  5891. ]
  5892. ))
  5893. characterMakers.push(() => makeCharacter(
  5894. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5895. {
  5896. front: {
  5897. height: math.unit(1.72, "meters"),
  5898. weight: math.unit(68, "kg"),
  5899. name: "Front",
  5900. image: {
  5901. source: "./media/characters/lexi/front.svg"
  5902. }
  5903. }
  5904. },
  5905. [
  5906. {
  5907. name: "Very Smol",
  5908. height: math.unit(10, "mm")
  5909. },
  5910. {
  5911. name: "Micro",
  5912. height: math.unit(6.8, "cm"),
  5913. default: true
  5914. },
  5915. {
  5916. name: "Normal",
  5917. height: math.unit(1.72, "m")
  5918. }
  5919. ]
  5920. ))
  5921. characterMakers.push(() => makeCharacter(
  5922. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5923. {
  5924. front: {
  5925. height: math.unit(1.69, "meters"),
  5926. weight: math.unit(68, "kg"),
  5927. name: "Front",
  5928. image: {
  5929. source: "./media/characters/martin/front.svg",
  5930. extra: 596 / 581
  5931. }
  5932. }
  5933. },
  5934. [
  5935. {
  5936. name: "Micro",
  5937. height: math.unit(6.85, "cm"),
  5938. default: true
  5939. },
  5940. {
  5941. name: "Normal",
  5942. height: math.unit(1.69, "m")
  5943. }
  5944. ]
  5945. ))
  5946. characterMakers.push(() => makeCharacter(
  5947. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5948. {
  5949. front: {
  5950. height: math.unit(1.69, "meters"),
  5951. weight: math.unit(68, "kg"),
  5952. name: "Front",
  5953. image: {
  5954. source: "./media/characters/juno/front.svg"
  5955. }
  5956. }
  5957. },
  5958. [
  5959. {
  5960. name: "Micro",
  5961. height: math.unit(7, "cm")
  5962. },
  5963. {
  5964. name: "Normal",
  5965. height: math.unit(1.89, "m")
  5966. },
  5967. {
  5968. name: "Macro",
  5969. height: math.unit(353, "meters"),
  5970. default: true
  5971. }
  5972. ]
  5973. ))
  5974. characterMakers.push(() => makeCharacter(
  5975. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5976. {
  5977. front: {
  5978. height: math.unit(1.93, "meters"),
  5979. weight: math.unit(83, "kg"),
  5980. name: "Front",
  5981. image: {
  5982. source: "./media/characters/samantha/front.svg"
  5983. }
  5984. },
  5985. frontClothed: {
  5986. height: math.unit(1.93, "meters"),
  5987. weight: math.unit(83, "kg"),
  5988. name: "Front (Clothed)",
  5989. image: {
  5990. source: "./media/characters/samantha/front-clothed.svg"
  5991. }
  5992. },
  5993. back: {
  5994. height: math.unit(1.93, "meters"),
  5995. weight: math.unit(83, "kg"),
  5996. name: "Back",
  5997. image: {
  5998. source: "./media/characters/samantha/back.svg"
  5999. }
  6000. },
  6001. },
  6002. [
  6003. {
  6004. name: "Normal",
  6005. height: math.unit(1.93, "m")
  6006. },
  6007. {
  6008. name: "Macro",
  6009. height: math.unit(74, "meters"),
  6010. default: true
  6011. },
  6012. {
  6013. name: "Macro+",
  6014. height: math.unit(223, "meters"),
  6015. },
  6016. {
  6017. name: "Megamacro",
  6018. height: math.unit(8381, "meters"),
  6019. },
  6020. {
  6021. name: "Megamacro+",
  6022. height: math.unit(12000, "kilometers")
  6023. },
  6024. ]
  6025. ))
  6026. characterMakers.push(() => makeCharacter(
  6027. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6028. {
  6029. front: {
  6030. height: math.unit(1.92, "meters"),
  6031. weight: math.unit(80, "kg"),
  6032. name: "Front",
  6033. image: {
  6034. source: "./media/characters/dr-clay/front.svg"
  6035. }
  6036. },
  6037. frontClothed: {
  6038. height: math.unit(1.92, "meters"),
  6039. weight: math.unit(80, "kg"),
  6040. name: "Front (Clothed)",
  6041. image: {
  6042. source: "./media/characters/dr-clay/front-clothed.svg"
  6043. }
  6044. }
  6045. },
  6046. [
  6047. {
  6048. name: "Normal",
  6049. height: math.unit(1.92, "m")
  6050. },
  6051. {
  6052. name: "Macro",
  6053. height: math.unit(214, "meters"),
  6054. default: true
  6055. },
  6056. {
  6057. name: "Macro+",
  6058. height: math.unit(12.237, "meters"),
  6059. },
  6060. {
  6061. name: "Megamacro",
  6062. height: math.unit(557, "megameters"),
  6063. },
  6064. {
  6065. name: "Unimaginable",
  6066. height: math.unit(120e9, "lightyears")
  6067. },
  6068. ]
  6069. ))
  6070. characterMakers.push(() => makeCharacter(
  6071. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6072. {
  6073. front: {
  6074. height: math.unit(2, "meters"),
  6075. weight: math.unit(80, "kg"),
  6076. name: "Front",
  6077. image: {
  6078. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6079. }
  6080. }
  6081. },
  6082. [
  6083. {
  6084. name: "Teramacro",
  6085. height: math.unit(500000, "lightyears"),
  6086. default: true
  6087. },
  6088. ]
  6089. ))
  6090. characterMakers.push(() => makeCharacter(
  6091. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6092. {
  6093. front: {
  6094. height: math.unit(2, "meters"),
  6095. weight: math.unit(150, "kg"),
  6096. name: "Front",
  6097. image: {
  6098. source: "./media/characters/vemus/front.svg",
  6099. extra: 2384 / 2084,
  6100. bottom: 0.0123
  6101. }
  6102. }
  6103. },
  6104. [
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(3.75, "meters"),
  6108. default: true
  6109. },
  6110. {
  6111. name: "Big",
  6112. height: math.unit(8, "meters")
  6113. },
  6114. {
  6115. name: "Macro",
  6116. height: math.unit(100, "meters")
  6117. },
  6118. {
  6119. name: "Macro+",
  6120. height: math.unit(1500, "meters")
  6121. },
  6122. {
  6123. name: "Stellar",
  6124. height: math.unit(14e8, "meters")
  6125. },
  6126. ]
  6127. ))
  6128. characterMakers.push(() => makeCharacter(
  6129. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6130. {
  6131. front: {
  6132. height: math.unit(2, "meters"),
  6133. weight: math.unit(70, "kg"),
  6134. name: "Front",
  6135. image: {
  6136. source: "./media/characters/beherit/front.svg",
  6137. extra: 1408 / 1242
  6138. }
  6139. }
  6140. },
  6141. [
  6142. {
  6143. name: "Normal",
  6144. height: math.unit(6, "feet")
  6145. },
  6146. {
  6147. name: "Lorg",
  6148. height: math.unit(25, "feet"),
  6149. default: true
  6150. },
  6151. {
  6152. name: "Lorger",
  6153. height: math.unit(75, "feet")
  6154. },
  6155. {
  6156. name: "Macro",
  6157. height: math.unit(200, "meters")
  6158. },
  6159. ]
  6160. ))
  6161. characterMakers.push(() => makeCharacter(
  6162. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6163. {
  6164. front: {
  6165. height: math.unit(2, "meters"),
  6166. weight: math.unit(150, "kg"),
  6167. name: "Front",
  6168. image: {
  6169. source: "./media/characters/everett/front.svg",
  6170. extra: 2038 / 1737,
  6171. bottom: 0.03
  6172. }
  6173. },
  6174. paw: {
  6175. height: math.unit(2 / 3.6, "meters"),
  6176. name: "Paw",
  6177. image: {
  6178. source: "./media/characters/everett/paw.svg"
  6179. }
  6180. },
  6181. },
  6182. [
  6183. {
  6184. name: "Normal",
  6185. height: math.unit(15, "feet"),
  6186. default: true
  6187. },
  6188. {
  6189. name: "Lorg",
  6190. height: math.unit(70, "feet"),
  6191. default: true
  6192. },
  6193. {
  6194. name: "Lorger",
  6195. height: math.unit(250, "feet")
  6196. },
  6197. {
  6198. name: "Macro",
  6199. height: math.unit(500, "meters")
  6200. },
  6201. ]
  6202. ))
  6203. characterMakers.push(() => makeCharacter(
  6204. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6205. {
  6206. front: {
  6207. height: math.unit(2, "meters"),
  6208. weight: math.unit(86, "kg"),
  6209. name: "Front",
  6210. image: {
  6211. source: "./media/characters/rose-lion/front.svg"
  6212. }
  6213. },
  6214. bent: {
  6215. height: math.unit(2 / 1.4288, "meters"),
  6216. weight: math.unit(86, "kg"),
  6217. name: "Bent",
  6218. image: {
  6219. source: "./media/characters/rose-lion/bent.svg"
  6220. }
  6221. }
  6222. },
  6223. [
  6224. {
  6225. name: "Mini-Micro",
  6226. height: math.unit(1, "cm")
  6227. },
  6228. {
  6229. name: "Micro",
  6230. height: math.unit(3.5, "inches"),
  6231. default: true
  6232. },
  6233. {
  6234. name: "Normal",
  6235. height: math.unit(6 + 1 / 6, "feet")
  6236. },
  6237. {
  6238. name: "Mini-Macro",
  6239. height: math.unit(9 + 10 / 12, "feet")
  6240. },
  6241. ]
  6242. ))
  6243. characterMakers.push(() => makeCharacter(
  6244. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6245. {
  6246. front: {
  6247. height: math.unit(2, "meters"),
  6248. weight: math.unit(350, "lbs"),
  6249. name: "Front",
  6250. image: {
  6251. source: "./media/characters/regal/front.svg"
  6252. }
  6253. },
  6254. back: {
  6255. height: math.unit(2, "meters"),
  6256. weight: math.unit(350, "lbs"),
  6257. name: "Back",
  6258. image: {
  6259. source: "./media/characters/regal/back.svg"
  6260. }
  6261. },
  6262. },
  6263. [
  6264. {
  6265. name: "Macro",
  6266. height: math.unit(350, "feet"),
  6267. default: true
  6268. }
  6269. ]
  6270. ))
  6271. characterMakers.push(() => makeCharacter(
  6272. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6273. {
  6274. front: {
  6275. height: math.unit(4 + 11 / 12, "feet"),
  6276. weight: math.unit(100, "lbs"),
  6277. name: "Front",
  6278. image: {
  6279. source: "./media/characters/opal/front.svg"
  6280. }
  6281. },
  6282. frontAlt: {
  6283. height: math.unit(4 + 11 / 12, "feet"),
  6284. weight: math.unit(100, "lbs"),
  6285. name: "Front (Alt)",
  6286. image: {
  6287. source: "./media/characters/opal/front-alt.svg"
  6288. }
  6289. },
  6290. },
  6291. [
  6292. {
  6293. name: "Small",
  6294. height: math.unit(4 + 11 / 12, "feet")
  6295. },
  6296. {
  6297. name: "Normal",
  6298. height: math.unit(20, "feet"),
  6299. default: true
  6300. },
  6301. {
  6302. name: "Macro",
  6303. height: math.unit(120, "feet")
  6304. },
  6305. {
  6306. name: "Megamacro",
  6307. height: math.unit(80, "miles")
  6308. },
  6309. {
  6310. name: "True Size",
  6311. height: math.unit(100000, "lightyears")
  6312. },
  6313. ]
  6314. ))
  6315. characterMakers.push(() => makeCharacter(
  6316. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6317. {
  6318. front: {
  6319. height: math.unit(6, "feet"),
  6320. weight: math.unit(200, "lbs"),
  6321. name: "Front",
  6322. image: {
  6323. source: "./media/characters/vector-wuff/front.svg"
  6324. }
  6325. }
  6326. },
  6327. [
  6328. {
  6329. name: "Normal",
  6330. height: math.unit(2.8, "meters")
  6331. },
  6332. {
  6333. name: "Macro",
  6334. height: math.unit(450, "meters"),
  6335. default: true
  6336. },
  6337. {
  6338. name: "Megamacro",
  6339. height: math.unit(15, "kilometers")
  6340. }
  6341. ]
  6342. ))
  6343. characterMakers.push(() => makeCharacter(
  6344. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6345. {
  6346. front: {
  6347. height: math.unit(6, "feet"),
  6348. weight: math.unit(256, "lbs"),
  6349. name: "Front",
  6350. image: {
  6351. source: "./media/characters/dannik/front.svg"
  6352. }
  6353. }
  6354. },
  6355. [
  6356. {
  6357. name: "Macro",
  6358. height: math.unit(69.57, "meters"),
  6359. default: true
  6360. },
  6361. ]
  6362. ))
  6363. characterMakers.push(() => makeCharacter(
  6364. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6365. {
  6366. front: {
  6367. height: math.unit(6, "feet"),
  6368. weight: math.unit(120, "lbs"),
  6369. name: "Front",
  6370. image: {
  6371. source: "./media/characters/azura-saharah/front.svg"
  6372. }
  6373. },
  6374. back: {
  6375. height: math.unit(6, "feet"),
  6376. weight: math.unit(120, "lbs"),
  6377. name: "Back",
  6378. image: {
  6379. source: "./media/characters/azura-saharah/back.svg"
  6380. }
  6381. },
  6382. },
  6383. [
  6384. {
  6385. name: "Macro",
  6386. height: math.unit(100, "feet"),
  6387. default: true
  6388. },
  6389. ]
  6390. ))
  6391. characterMakers.push(() => makeCharacter(
  6392. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6393. {
  6394. side: {
  6395. height: math.unit(5 + 4 / 12, "feet"),
  6396. weight: math.unit(163, "lbs"),
  6397. name: "Side",
  6398. image: {
  6399. source: "./media/characters/kennedy/side.svg"
  6400. }
  6401. }
  6402. },
  6403. [
  6404. {
  6405. name: "Standard Doggo",
  6406. height: math.unit(5 + 4 / 12, "feet")
  6407. },
  6408. {
  6409. name: "Big Doggo",
  6410. height: math.unit(25 + 3 / 12, "feet"),
  6411. default: true
  6412. },
  6413. ]
  6414. ))
  6415. characterMakers.push(() => makeCharacter(
  6416. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6417. {
  6418. front: {
  6419. height: math.unit(6, "feet"),
  6420. weight: math.unit(90, "lbs"),
  6421. name: "Front",
  6422. image: {
  6423. source: "./media/characters/odi-lunar/front.svg"
  6424. }
  6425. }
  6426. },
  6427. [
  6428. {
  6429. name: "Micro",
  6430. height: math.unit(3, "inches"),
  6431. default: true
  6432. },
  6433. {
  6434. name: "Normal",
  6435. height: math.unit(5.5, "feet")
  6436. }
  6437. ]
  6438. ))
  6439. characterMakers.push(() => makeCharacter(
  6440. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6441. {
  6442. back: {
  6443. height: math.unit(6, "feet"),
  6444. weight: math.unit(220, "lbs"),
  6445. name: "Back",
  6446. image: {
  6447. source: "./media/characters/mandake/back.svg"
  6448. }
  6449. }
  6450. },
  6451. [
  6452. {
  6453. name: "Normal",
  6454. height: math.unit(7, "feet"),
  6455. default: true
  6456. },
  6457. {
  6458. name: "Macro",
  6459. height: math.unit(78, "feet")
  6460. },
  6461. {
  6462. name: "Macro+",
  6463. height: math.unit(300, "meters")
  6464. },
  6465. {
  6466. name: "Macro++",
  6467. height: math.unit(2400, "feet")
  6468. },
  6469. {
  6470. name: "Megamacro",
  6471. height: math.unit(5167, "meters")
  6472. },
  6473. {
  6474. name: "Gigamacro",
  6475. height: math.unit(41769, "miles")
  6476. },
  6477. ]
  6478. ))
  6479. characterMakers.push(() => makeCharacter(
  6480. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6481. {
  6482. front: {
  6483. height: math.unit(6, "feet"),
  6484. weight: math.unit(120, "lbs"),
  6485. name: "Front",
  6486. image: {
  6487. source: "./media/characters/yozey/front.svg"
  6488. }
  6489. },
  6490. frontAlt: {
  6491. height: math.unit(6, "feet"),
  6492. weight: math.unit(120, "lbs"),
  6493. name: "Front (Alt)",
  6494. image: {
  6495. source: "./media/characters/yozey/front-alt.svg"
  6496. }
  6497. },
  6498. side: {
  6499. height: math.unit(6, "feet"),
  6500. weight: math.unit(120, "lbs"),
  6501. name: "Side",
  6502. image: {
  6503. source: "./media/characters/yozey/side.svg"
  6504. }
  6505. },
  6506. },
  6507. [
  6508. {
  6509. name: "Micro",
  6510. height: math.unit(3, "inches"),
  6511. default: true
  6512. },
  6513. {
  6514. name: "Normal",
  6515. height: math.unit(6, "feet")
  6516. }
  6517. ]
  6518. ))
  6519. characterMakers.push(() => makeCharacter(
  6520. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6521. {
  6522. front: {
  6523. height: math.unit(6, "feet"),
  6524. weight: math.unit(103, "lbs"),
  6525. name: "Front",
  6526. image: {
  6527. source: "./media/characters/valeska-voss/front.svg"
  6528. }
  6529. }
  6530. },
  6531. [
  6532. {
  6533. name: "Mini-Sized Sub",
  6534. height: math.unit(3.1, "inches")
  6535. },
  6536. {
  6537. name: "Mid-Sized Sub",
  6538. height: math.unit(6.2, "inches")
  6539. },
  6540. {
  6541. name: "Full-Sized Sub",
  6542. height: math.unit(9.3, "inches")
  6543. },
  6544. {
  6545. name: "Normal",
  6546. height: math.unit(5 + 2 / 12, "foot"),
  6547. default: true
  6548. },
  6549. ]
  6550. ))
  6551. characterMakers.push(() => makeCharacter(
  6552. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6553. {
  6554. front: {
  6555. height: math.unit(6, "feet"),
  6556. weight: math.unit(160, "lbs"),
  6557. name: "Front",
  6558. image: {
  6559. source: "./media/characters/gene-zeta/front.svg",
  6560. extra: 3006/2826,
  6561. bottom: 182/3188
  6562. }
  6563. }
  6564. },
  6565. [
  6566. {
  6567. name: "Micro",
  6568. height: math.unit(6, "inches")
  6569. },
  6570. {
  6571. name: "Normal",
  6572. height: math.unit(5 + 11/12, "foot"),
  6573. default: true
  6574. },
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(140, "feet")
  6578. },
  6579. {
  6580. name: "Supercharged",
  6581. height: math.unit(2500, "feet")
  6582. },
  6583. ]
  6584. ))
  6585. characterMakers.push(() => makeCharacter(
  6586. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6587. {
  6588. front: {
  6589. height: math.unit(6, "feet"),
  6590. weight: math.unit(350, "lbs"),
  6591. name: "Front",
  6592. image: {
  6593. source: "./media/characters/razinox/front.svg",
  6594. extra: 1686 / 1548,
  6595. bottom: 28.2 / 1868
  6596. }
  6597. },
  6598. back: {
  6599. height: math.unit(6, "feet"),
  6600. weight: math.unit(350, "lbs"),
  6601. name: "Back",
  6602. image: {
  6603. source: "./media/characters/razinox/back.svg",
  6604. extra: 1660 / 1590,
  6605. bottom: 15 / 1665
  6606. }
  6607. },
  6608. },
  6609. [
  6610. {
  6611. name: "Normal",
  6612. height: math.unit(10 + 8 / 12, "foot")
  6613. },
  6614. {
  6615. name: "Minimacro",
  6616. height: math.unit(15, "foot")
  6617. },
  6618. {
  6619. name: "Macro",
  6620. height: math.unit(60, "foot"),
  6621. default: true
  6622. },
  6623. {
  6624. name: "Megamacro",
  6625. height: math.unit(5, "miles")
  6626. },
  6627. {
  6628. name: "Gigamacro",
  6629. height: math.unit(6000, "miles")
  6630. },
  6631. ]
  6632. ))
  6633. characterMakers.push(() => makeCharacter(
  6634. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6635. {
  6636. front: {
  6637. height: math.unit(6, "feet"),
  6638. weight: math.unit(150, "lbs"),
  6639. name: "Front",
  6640. image: {
  6641. source: "./media/characters/cobalt/front.svg"
  6642. }
  6643. }
  6644. },
  6645. [
  6646. {
  6647. name: "Normal",
  6648. height: math.unit(8 + 1 / 12, "foot")
  6649. },
  6650. {
  6651. name: "Macro",
  6652. height: math.unit(111, "foot"),
  6653. default: true
  6654. },
  6655. {
  6656. name: "Supracosmic",
  6657. height: math.unit(1e42, "feet")
  6658. },
  6659. ]
  6660. ))
  6661. characterMakers.push(() => makeCharacter(
  6662. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6663. {
  6664. front: {
  6665. height: math.unit(6, "feet"),
  6666. weight: math.unit(140, "lbs"),
  6667. name: "Front",
  6668. image: {
  6669. source: "./media/characters/amanda/front.svg"
  6670. }
  6671. }
  6672. },
  6673. [
  6674. {
  6675. name: "Micro",
  6676. height: math.unit(5, "inches"),
  6677. default: true
  6678. },
  6679. ]
  6680. ))
  6681. characterMakers.push(() => makeCharacter(
  6682. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6683. {
  6684. front: {
  6685. height: math.unit(5.59, "feet"),
  6686. weight: math.unit(250, "lbs"),
  6687. name: "Front",
  6688. image: {
  6689. source: "./media/characters/teal/front.svg"
  6690. }
  6691. },
  6692. frontAlt: {
  6693. height: math.unit(6, "feet"),
  6694. weight: math.unit(250, "lbs"),
  6695. name: "Front (Alt)",
  6696. image: {
  6697. source: "./media/characters/teal/front-alt.svg",
  6698. bottom: 0.04,
  6699. extra: 1
  6700. }
  6701. },
  6702. },
  6703. [
  6704. {
  6705. name: "Normal",
  6706. height: math.unit(12, "feet"),
  6707. default: true
  6708. },
  6709. {
  6710. name: "Macro",
  6711. height: math.unit(300, "feet")
  6712. },
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6717. {
  6718. frontCat: {
  6719. height: math.unit(6, "feet"),
  6720. weight: math.unit(180, "lbs"),
  6721. name: "Front (Cat)",
  6722. image: {
  6723. source: "./media/characters/ravin-amulet/front-cat.svg"
  6724. }
  6725. },
  6726. frontCatAlt: {
  6727. height: math.unit(6, "feet"),
  6728. weight: math.unit(180, "lbs"),
  6729. name: "Front (Alt, Cat)",
  6730. image: {
  6731. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6732. }
  6733. },
  6734. frontWerewolf: {
  6735. height: math.unit(6 * 1.2, "feet"),
  6736. weight: math.unit(225, "lbs"),
  6737. name: "Front (Werewolf)",
  6738. image: {
  6739. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6740. }
  6741. },
  6742. backWerewolf: {
  6743. height: math.unit(6 * 1.2, "feet"),
  6744. weight: math.unit(225, "lbs"),
  6745. name: "Back (Werewolf)",
  6746. image: {
  6747. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6748. }
  6749. },
  6750. },
  6751. [
  6752. {
  6753. name: "Nano",
  6754. height: math.unit(1, "micrometer")
  6755. },
  6756. {
  6757. name: "Micro",
  6758. height: math.unit(1, "inch")
  6759. },
  6760. {
  6761. name: "Normal",
  6762. height: math.unit(6, "feet"),
  6763. default: true
  6764. },
  6765. {
  6766. name: "Macro",
  6767. height: math.unit(60, "feet")
  6768. }
  6769. ]
  6770. ))
  6771. characterMakers.push(() => makeCharacter(
  6772. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6773. {
  6774. front: {
  6775. height: math.unit(6, "feet"),
  6776. weight: math.unit(165, "lbs"),
  6777. name: "Front",
  6778. image: {
  6779. source: "./media/characters/fluoresce/front.svg"
  6780. }
  6781. }
  6782. },
  6783. [
  6784. {
  6785. name: "Micro",
  6786. height: math.unit(6, "cm")
  6787. },
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(5 + 7 / 12, "feet"),
  6791. default: true
  6792. },
  6793. {
  6794. name: "Macro",
  6795. height: math.unit(56, "feet")
  6796. },
  6797. {
  6798. name: "Megamacro",
  6799. height: math.unit(1.9, "miles")
  6800. },
  6801. ]
  6802. ))
  6803. characterMakers.push(() => makeCharacter(
  6804. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6805. {
  6806. front: {
  6807. height: math.unit(9 + 6 / 12, "feet"),
  6808. weight: math.unit(523, "lbs"),
  6809. name: "Side",
  6810. image: {
  6811. source: "./media/characters/aurora/side.svg"
  6812. }
  6813. }
  6814. },
  6815. [
  6816. {
  6817. name: "Normal",
  6818. height: math.unit(9 + 6 / 12, "feet")
  6819. },
  6820. {
  6821. name: "Macro",
  6822. height: math.unit(96, "feet"),
  6823. default: true
  6824. },
  6825. {
  6826. name: "Macro+",
  6827. height: math.unit(243, "feet")
  6828. },
  6829. ]
  6830. ))
  6831. characterMakers.push(() => makeCharacter(
  6832. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6833. {
  6834. front: {
  6835. height: math.unit(194, "cm"),
  6836. weight: math.unit(90, "kg"),
  6837. name: "Front",
  6838. image: {
  6839. source: "./media/characters/ranek/front.svg"
  6840. }
  6841. },
  6842. side: {
  6843. height: math.unit(194, "cm"),
  6844. weight: math.unit(90, "kg"),
  6845. name: "Side",
  6846. image: {
  6847. source: "./media/characters/ranek/side.svg"
  6848. }
  6849. },
  6850. back: {
  6851. height: math.unit(194, "cm"),
  6852. weight: math.unit(90, "kg"),
  6853. name: "Back",
  6854. image: {
  6855. source: "./media/characters/ranek/back.svg"
  6856. }
  6857. },
  6858. feral: {
  6859. height: math.unit(30, "cm"),
  6860. weight: math.unit(1.6, "lbs"),
  6861. name: "Feral",
  6862. image: {
  6863. source: "./media/characters/ranek/feral.svg"
  6864. }
  6865. },
  6866. },
  6867. [
  6868. {
  6869. name: "Normal",
  6870. height: math.unit(194, "cm"),
  6871. default: true
  6872. },
  6873. {
  6874. name: "Macro",
  6875. height: math.unit(100, "meters")
  6876. },
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6881. {
  6882. front: {
  6883. height: math.unit(5 + 6 / 12, "feet"),
  6884. weight: math.unit(153, "lbs"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/andrew-cooper/front.svg"
  6888. }
  6889. },
  6890. },
  6891. [
  6892. {
  6893. name: "Nano",
  6894. height: math.unit(1, "mm")
  6895. },
  6896. {
  6897. name: "Micro",
  6898. height: math.unit(2, "inches")
  6899. },
  6900. {
  6901. name: "Normal",
  6902. height: math.unit(5 + 6 / 12, "feet"),
  6903. default: true
  6904. }
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6909. {
  6910. front: {
  6911. height: math.unit(6, "feet"),
  6912. weight: math.unit(180, "lbs"),
  6913. name: "Front",
  6914. image: {
  6915. source: "./media/characters/akane-sato/front.svg",
  6916. extra: 1219 / 1140
  6917. }
  6918. },
  6919. back: {
  6920. height: math.unit(6, "feet"),
  6921. weight: math.unit(180, "lbs"),
  6922. name: "Back",
  6923. image: {
  6924. source: "./media/characters/akane-sato/back.svg",
  6925. extra: 1219 / 1170
  6926. }
  6927. },
  6928. },
  6929. [
  6930. {
  6931. name: "Normal",
  6932. height: math.unit(2.5, "meters")
  6933. },
  6934. {
  6935. name: "Macro",
  6936. height: math.unit(250, "meters"),
  6937. default: true
  6938. },
  6939. {
  6940. name: "Megamacro",
  6941. height: math.unit(25, "km")
  6942. },
  6943. ]
  6944. ))
  6945. characterMakers.push(() => makeCharacter(
  6946. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6947. {
  6948. front: {
  6949. height: math.unit(6, "feet"),
  6950. weight: math.unit(65, "kg"),
  6951. name: "Front",
  6952. image: {
  6953. source: "./media/characters/rook/front.svg",
  6954. extra: 960 / 950
  6955. }
  6956. }
  6957. },
  6958. [
  6959. {
  6960. name: "Normal",
  6961. height: math.unit(8.8, "feet")
  6962. },
  6963. {
  6964. name: "Macro",
  6965. height: math.unit(88, "feet"),
  6966. default: true
  6967. },
  6968. {
  6969. name: "Megamacro",
  6970. height: math.unit(8, "miles")
  6971. },
  6972. ]
  6973. ))
  6974. characterMakers.push(() => makeCharacter(
  6975. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6976. {
  6977. front: {
  6978. height: math.unit(12 + 2 / 12, "feet"),
  6979. weight: math.unit(808, "lbs"),
  6980. name: "Front",
  6981. image: {
  6982. source: "./media/characters/prodigy/front.svg"
  6983. }
  6984. }
  6985. },
  6986. [
  6987. {
  6988. name: "Normal",
  6989. height: math.unit(12 + 2 / 12, "feet"),
  6990. default: true
  6991. },
  6992. {
  6993. name: "Macro",
  6994. height: math.unit(143, "feet")
  6995. },
  6996. {
  6997. name: "Macro+",
  6998. height: math.unit(400, "feet")
  6999. },
  7000. ]
  7001. ))
  7002. characterMakers.push(() => makeCharacter(
  7003. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7004. {
  7005. front: {
  7006. height: math.unit(6, "feet"),
  7007. weight: math.unit(225, "lbs"),
  7008. name: "Front",
  7009. image: {
  7010. source: "./media/characters/daniel/front.svg"
  7011. }
  7012. },
  7013. leaning: {
  7014. height: math.unit(6, "feet"),
  7015. weight: math.unit(225, "lbs"),
  7016. name: "Leaning",
  7017. image: {
  7018. source: "./media/characters/daniel/leaning.svg"
  7019. }
  7020. },
  7021. },
  7022. [
  7023. {
  7024. name: "Macro",
  7025. height: math.unit(1000, "feet"),
  7026. default: true
  7027. },
  7028. ]
  7029. ))
  7030. characterMakers.push(() => makeCharacter(
  7031. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7032. {
  7033. front: {
  7034. height: math.unit(6, "feet"),
  7035. weight: math.unit(88, "lbs"),
  7036. name: "Front",
  7037. image: {
  7038. source: "./media/characters/chiros/front.svg",
  7039. extra: 306 / 226
  7040. }
  7041. },
  7042. side: {
  7043. height: math.unit(6, "feet"),
  7044. weight: math.unit(88, "lbs"),
  7045. name: "Side",
  7046. image: {
  7047. source: "./media/characters/chiros/side.svg",
  7048. extra: 306 / 226
  7049. }
  7050. },
  7051. },
  7052. [
  7053. {
  7054. name: "Normal",
  7055. height: math.unit(6, "cm"),
  7056. default: true
  7057. },
  7058. ]
  7059. ))
  7060. characterMakers.push(() => makeCharacter(
  7061. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7062. {
  7063. front: {
  7064. height: math.unit(6, "feet"),
  7065. weight: math.unit(100, "lbs"),
  7066. name: "Front",
  7067. image: {
  7068. source: "./media/characters/selka/front.svg",
  7069. extra: 947 / 887
  7070. }
  7071. }
  7072. },
  7073. [
  7074. {
  7075. name: "Normal",
  7076. height: math.unit(5, "cm"),
  7077. default: true
  7078. },
  7079. ]
  7080. ))
  7081. characterMakers.push(() => makeCharacter(
  7082. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7083. {
  7084. front: {
  7085. height: math.unit(8 + 3 / 12, "feet"),
  7086. weight: math.unit(424, "lbs"),
  7087. name: "Front",
  7088. image: {
  7089. source: "./media/characters/verin/front.svg",
  7090. extra: 1845 / 1550
  7091. }
  7092. },
  7093. frontArmored: {
  7094. height: math.unit(8 + 3 / 12, "feet"),
  7095. weight: math.unit(424, "lbs"),
  7096. name: "Front (Armored)",
  7097. image: {
  7098. source: "./media/characters/verin/front-armor.svg",
  7099. extra: 1845 / 1550,
  7100. bottom: 0.01
  7101. }
  7102. },
  7103. back: {
  7104. height: math.unit(8 + 3 / 12, "feet"),
  7105. weight: math.unit(424, "lbs"),
  7106. name: "Back",
  7107. image: {
  7108. source: "./media/characters/verin/back.svg",
  7109. bottom: 0.1,
  7110. extra: 1
  7111. }
  7112. },
  7113. foot: {
  7114. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7115. name: "Foot",
  7116. image: {
  7117. source: "./media/characters/verin/foot.svg"
  7118. }
  7119. },
  7120. },
  7121. [
  7122. {
  7123. name: "Normal",
  7124. height: math.unit(8 + 3 / 12, "feet")
  7125. },
  7126. {
  7127. name: "Minimacro",
  7128. height: math.unit(21, "feet"),
  7129. default: true
  7130. },
  7131. {
  7132. name: "Macro",
  7133. height: math.unit(626, "feet")
  7134. },
  7135. ]
  7136. ))
  7137. characterMakers.push(() => makeCharacter(
  7138. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7139. {
  7140. front: {
  7141. height: math.unit(2.718, "meters"),
  7142. weight: math.unit(150, "lbs"),
  7143. name: "Front",
  7144. image: {
  7145. source: "./media/characters/sovrim-terraquian/front.svg"
  7146. }
  7147. },
  7148. back: {
  7149. height: math.unit(2.718, "meters"),
  7150. weight: math.unit(150, "lbs"),
  7151. name: "Back",
  7152. image: {
  7153. source: "./media/characters/sovrim-terraquian/back.svg"
  7154. }
  7155. }
  7156. },
  7157. [
  7158. {
  7159. name: "Micro",
  7160. height: math.unit(2, "inches")
  7161. },
  7162. {
  7163. name: "Small",
  7164. height: math.unit(1, "meter")
  7165. },
  7166. {
  7167. name: "Normal",
  7168. height: math.unit(Math.E, "meters"),
  7169. default: true
  7170. },
  7171. {
  7172. name: "Macro",
  7173. height: math.unit(20, "meters")
  7174. },
  7175. {
  7176. name: "Macro+",
  7177. height: math.unit(400, "meters")
  7178. },
  7179. ]
  7180. ))
  7181. characterMakers.push(() => makeCharacter(
  7182. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7183. {
  7184. front: {
  7185. height: math.unit(7, "feet"),
  7186. weight: math.unit(489, "lbs"),
  7187. name: "Front",
  7188. image: {
  7189. source: "./media/characters/reece-silvermane/front.svg",
  7190. bottom: 0.02,
  7191. extra: 1
  7192. }
  7193. },
  7194. },
  7195. [
  7196. {
  7197. name: "Macro",
  7198. height: math.unit(1.5, "miles"),
  7199. default: true
  7200. },
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7205. {
  7206. front: {
  7207. height: math.unit(6, "feet"),
  7208. weight: math.unit(78, "kg"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/kane/front.svg",
  7212. extra: 978 / 899
  7213. }
  7214. },
  7215. },
  7216. [
  7217. {
  7218. name: "Normal",
  7219. height: math.unit(2.1, "m"),
  7220. },
  7221. {
  7222. name: "Macro",
  7223. height: math.unit(1, "km"),
  7224. default: true
  7225. },
  7226. ]
  7227. ))
  7228. characterMakers.push(() => makeCharacter(
  7229. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7230. {
  7231. front: {
  7232. height: math.unit(6, "feet"),
  7233. weight: math.unit(200, "kg"),
  7234. name: "Front",
  7235. image: {
  7236. source: "./media/characters/tegon/front.svg",
  7237. bottom: 0.01,
  7238. extra: 1
  7239. }
  7240. },
  7241. },
  7242. [
  7243. {
  7244. name: "Micro",
  7245. height: math.unit(1, "inch")
  7246. },
  7247. {
  7248. name: "Normal",
  7249. height: math.unit(6 + 3 / 12, "feet"),
  7250. default: true
  7251. },
  7252. {
  7253. name: "Macro",
  7254. height: math.unit(300, "feet")
  7255. },
  7256. {
  7257. name: "Megamacro",
  7258. height: math.unit(69, "miles")
  7259. },
  7260. ]
  7261. ))
  7262. characterMakers.push(() => makeCharacter(
  7263. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7264. {
  7265. side: {
  7266. height: math.unit(6, "feet"),
  7267. weight: math.unit(2304, "lbs"),
  7268. name: "Side",
  7269. image: {
  7270. source: "./media/characters/arcturax/side.svg",
  7271. extra: 790 / 376,
  7272. bottom: 0.01
  7273. }
  7274. },
  7275. },
  7276. [
  7277. {
  7278. name: "Micro",
  7279. height: math.unit(2, "inch")
  7280. },
  7281. {
  7282. name: "Normal",
  7283. height: math.unit(6, "feet")
  7284. },
  7285. {
  7286. name: "Macro",
  7287. height: math.unit(39, "feet"),
  7288. default: true
  7289. },
  7290. {
  7291. name: "Megamacro",
  7292. height: math.unit(7, "miles")
  7293. },
  7294. ]
  7295. ))
  7296. characterMakers.push(() => makeCharacter(
  7297. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7298. {
  7299. front: {
  7300. height: math.unit(6, "feet"),
  7301. weight: math.unit(50, "lbs"),
  7302. name: "Front",
  7303. image: {
  7304. source: "./media/characters/sentri/front.svg",
  7305. extra: 1750 / 1570,
  7306. bottom: 0.025
  7307. }
  7308. },
  7309. frontAlt: {
  7310. height: math.unit(6, "feet"),
  7311. weight: math.unit(50, "lbs"),
  7312. name: "Front (Alt)",
  7313. image: {
  7314. source: "./media/characters/sentri/front-alt.svg",
  7315. extra: 1750 / 1570,
  7316. bottom: 0.025
  7317. }
  7318. },
  7319. },
  7320. [
  7321. {
  7322. name: "Normal",
  7323. height: math.unit(15, "feet"),
  7324. default: true
  7325. },
  7326. {
  7327. name: "Macro",
  7328. height: math.unit(2500, "feet")
  7329. }
  7330. ]
  7331. ))
  7332. characterMakers.push(() => makeCharacter(
  7333. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7334. {
  7335. front: {
  7336. height: math.unit(5 + 8 / 12, "feet"),
  7337. weight: math.unit(130, "lbs"),
  7338. name: "Front",
  7339. image: {
  7340. source: "./media/characters/corvin/front.svg",
  7341. extra: 1803 / 1629
  7342. }
  7343. },
  7344. frontShirt: {
  7345. height: math.unit(5 + 8 / 12, "feet"),
  7346. weight: math.unit(130, "lbs"),
  7347. name: "Front (Shirt)",
  7348. image: {
  7349. source: "./media/characters/corvin/front-shirt.svg",
  7350. extra: 1803 / 1629
  7351. }
  7352. },
  7353. frontPoncho: {
  7354. height: math.unit(5 + 8 / 12, "feet"),
  7355. weight: math.unit(130, "lbs"),
  7356. name: "Front (Poncho)",
  7357. image: {
  7358. source: "./media/characters/corvin/front-poncho.svg",
  7359. extra: 1803 / 1629
  7360. }
  7361. },
  7362. side: {
  7363. height: math.unit(5 + 8 / 12, "feet"),
  7364. weight: math.unit(130, "lbs"),
  7365. name: "Side",
  7366. image: {
  7367. source: "./media/characters/corvin/side.svg",
  7368. extra: 1012 / 945
  7369. }
  7370. },
  7371. back: {
  7372. height: math.unit(5 + 8 / 12, "feet"),
  7373. weight: math.unit(130, "lbs"),
  7374. name: "Back",
  7375. image: {
  7376. source: "./media/characters/corvin/back.svg",
  7377. extra: 1803 / 1629
  7378. }
  7379. },
  7380. },
  7381. [
  7382. {
  7383. name: "Micro",
  7384. height: math.unit(3, "inches")
  7385. },
  7386. {
  7387. name: "Normal",
  7388. height: math.unit(5 + 8 / 12, "feet")
  7389. },
  7390. {
  7391. name: "Macro",
  7392. height: math.unit(300, "feet"),
  7393. default: true
  7394. },
  7395. {
  7396. name: "Megamacro",
  7397. height: math.unit(500, "miles")
  7398. }
  7399. ]
  7400. ))
  7401. characterMakers.push(() => makeCharacter(
  7402. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7403. {
  7404. front: {
  7405. height: math.unit(6, "feet"),
  7406. weight: math.unit(135, "lbs"),
  7407. name: "Front",
  7408. image: {
  7409. source: "./media/characters/q/front.svg",
  7410. extra: 854 / 752,
  7411. bottom: 0.005
  7412. }
  7413. },
  7414. back: {
  7415. height: math.unit(6, "feet"),
  7416. weight: math.unit(130, "lbs"),
  7417. name: "Back",
  7418. image: {
  7419. source: "./media/characters/q/back.svg",
  7420. extra: 854 / 752
  7421. }
  7422. },
  7423. },
  7424. [
  7425. {
  7426. name: "Macro",
  7427. height: math.unit(90, "feet"),
  7428. default: true
  7429. },
  7430. {
  7431. name: "Extra Macro",
  7432. height: math.unit(300, "feet"),
  7433. },
  7434. {
  7435. name: "BIG WALF",
  7436. height: math.unit(750, "feet"),
  7437. },
  7438. ]
  7439. ))
  7440. characterMakers.push(() => makeCharacter(
  7441. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7442. {
  7443. front: {
  7444. height: math.unit(6, "feet"),
  7445. weight: math.unit(150, "lbs"),
  7446. name: "Front",
  7447. image: {
  7448. source: "./media/characters/carley/front.svg",
  7449. extra: 3927 / 3540,
  7450. bottom: 29.2 / 735
  7451. }
  7452. }
  7453. },
  7454. [
  7455. {
  7456. name: "Normal",
  7457. height: math.unit(6 + 3 / 12, "feet")
  7458. },
  7459. {
  7460. name: "Macro",
  7461. height: math.unit(185, "feet"),
  7462. default: true
  7463. },
  7464. {
  7465. name: "Megamacro",
  7466. height: math.unit(8, "miles"),
  7467. },
  7468. ]
  7469. ))
  7470. characterMakers.push(() => makeCharacter(
  7471. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7472. {
  7473. front: {
  7474. height: math.unit(3, "feet"),
  7475. weight: math.unit(28, "lbs"),
  7476. name: "Front",
  7477. image: {
  7478. source: "./media/characters/citrine/front.svg"
  7479. }
  7480. }
  7481. },
  7482. [
  7483. {
  7484. name: "Normal",
  7485. height: math.unit(3, "feet"),
  7486. default: true
  7487. }
  7488. ]
  7489. ))
  7490. characterMakers.push(() => makeCharacter(
  7491. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7492. {
  7493. front: {
  7494. height: math.unit(14, "feet"),
  7495. weight: math.unit(1450, "kg"),
  7496. capacity: math.unit(15, "people"),
  7497. name: "Front",
  7498. image: {
  7499. source: "./media/characters/aura-starwind/front.svg",
  7500. extra: 1455 / 1335
  7501. }
  7502. },
  7503. side: {
  7504. height: math.unit(14, "feet"),
  7505. weight: math.unit(1450, "kg"),
  7506. capacity: math.unit(15, "people"),
  7507. name: "Side",
  7508. image: {
  7509. source: "./media/characters/aura-starwind/side.svg",
  7510. extra: 1654 / 1497
  7511. }
  7512. },
  7513. taur: {
  7514. height: math.unit(18, "feet"),
  7515. weight: math.unit(5500, "kg"),
  7516. capacity: math.unit(50, "people"),
  7517. name: "Taur",
  7518. image: {
  7519. source: "./media/characters/aura-starwind/taur.svg",
  7520. extra: 1760 / 1650
  7521. }
  7522. },
  7523. feral: {
  7524. height: math.unit(46, "feet"),
  7525. weight: math.unit(25000, "kg"),
  7526. capacity: math.unit(120, "people"),
  7527. name: "Feral",
  7528. image: {
  7529. source: "./media/characters/aura-starwind/feral.svg"
  7530. }
  7531. },
  7532. },
  7533. [
  7534. {
  7535. name: "Normal",
  7536. height: math.unit(14, "feet"),
  7537. default: true
  7538. },
  7539. {
  7540. name: "Macro",
  7541. height: math.unit(50, "meters")
  7542. },
  7543. {
  7544. name: "Megamacro",
  7545. height: math.unit(5000, "meters")
  7546. },
  7547. {
  7548. name: "Gigamacro",
  7549. height: math.unit(100000, "kilometers")
  7550. },
  7551. ]
  7552. ))
  7553. characterMakers.push(() => makeCharacter(
  7554. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7555. {
  7556. front: {
  7557. height: math.unit(2 + 7 / 12, "feet"),
  7558. weight: math.unit(32, "lbs"),
  7559. name: "Front",
  7560. image: {
  7561. source: "./media/characters/rivet/front.svg",
  7562. extra: 1716 / 1658,
  7563. bottom: 0.03
  7564. }
  7565. },
  7566. foot: {
  7567. height: math.unit(0.551, "feet"),
  7568. name: "Rivet's Foot",
  7569. image: {
  7570. source: "./media/characters/rivet/foot.svg"
  7571. },
  7572. rename: true
  7573. }
  7574. },
  7575. [
  7576. {
  7577. name: "Micro",
  7578. height: math.unit(1.5, "inches"),
  7579. },
  7580. {
  7581. name: "Normal",
  7582. height: math.unit(2 + 7 / 12, "feet"),
  7583. default: true
  7584. },
  7585. {
  7586. name: "Macro",
  7587. height: math.unit(85, "feet")
  7588. },
  7589. {
  7590. name: "Megamacro",
  7591. height: math.unit(2.2, "km")
  7592. }
  7593. ]
  7594. ))
  7595. characterMakers.push(() => makeCharacter(
  7596. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7597. {
  7598. front: {
  7599. height: math.unit(5 + 9 / 12, "feet"),
  7600. weight: math.unit(150, "lbs"),
  7601. name: "Front",
  7602. image: {
  7603. source: "./media/characters/coffee/front.svg",
  7604. extra: 3666 / 3032,
  7605. bottom: 0.04
  7606. }
  7607. },
  7608. foot: {
  7609. height: math.unit(1.29, "feet"),
  7610. name: "Foot",
  7611. image: {
  7612. source: "./media/characters/coffee/foot.svg"
  7613. }
  7614. },
  7615. },
  7616. [
  7617. {
  7618. name: "Micro",
  7619. height: math.unit(2, "inches"),
  7620. },
  7621. {
  7622. name: "Normal",
  7623. height: math.unit(5 + 9 / 12, "feet"),
  7624. default: true
  7625. },
  7626. {
  7627. name: "Macro",
  7628. height: math.unit(800, "feet")
  7629. },
  7630. {
  7631. name: "Megamacro",
  7632. height: math.unit(25, "miles")
  7633. }
  7634. ]
  7635. ))
  7636. characterMakers.push(() => makeCharacter(
  7637. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7638. {
  7639. front: {
  7640. height: math.unit(6, "feet"),
  7641. weight: math.unit(200, "lbs"),
  7642. name: "Front",
  7643. image: {
  7644. source: "./media/characters/chari-gal/front.svg",
  7645. extra: 1568 / 1385,
  7646. bottom: 0.047
  7647. }
  7648. },
  7649. gigantamax: {
  7650. height: math.unit(6 * 16, "feet"),
  7651. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7652. name: "Gigantamax",
  7653. image: {
  7654. source: "./media/characters/chari-gal/gigantamax.svg",
  7655. extra: 1124 / 888,
  7656. bottom: 0.03
  7657. }
  7658. },
  7659. },
  7660. [
  7661. {
  7662. name: "Normal",
  7663. height: math.unit(5 + 7 / 12, "feet")
  7664. },
  7665. {
  7666. name: "Macro",
  7667. height: math.unit(200, "feet"),
  7668. default: true
  7669. }
  7670. ]
  7671. ))
  7672. characterMakers.push(() => makeCharacter(
  7673. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7674. {
  7675. front: {
  7676. height: math.unit(6, "feet"),
  7677. weight: math.unit(150, "lbs"),
  7678. name: "Front",
  7679. image: {
  7680. source: "./media/characters/nova/front.svg",
  7681. extra: 5000 / 4722,
  7682. bottom: 0.02
  7683. }
  7684. }
  7685. },
  7686. [
  7687. {
  7688. name: "Micro-",
  7689. height: math.unit(0.8, "inches")
  7690. },
  7691. {
  7692. name: "Micro",
  7693. height: math.unit(2, "inches"),
  7694. default: true
  7695. },
  7696. ]
  7697. ))
  7698. characterMakers.push(() => makeCharacter(
  7699. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7700. {
  7701. front: {
  7702. height: math.unit(3 + 1 / 12, "feet"),
  7703. weight: math.unit(21.7, "lbs"),
  7704. name: "Front",
  7705. image: {
  7706. source: "./media/characters/argent/front.svg",
  7707. extra: 1471 / 1331,
  7708. bottom: 100.8 / 1575.5
  7709. }
  7710. }
  7711. },
  7712. [
  7713. {
  7714. name: "Micro",
  7715. height: math.unit(2, "inches")
  7716. },
  7717. {
  7718. name: "Normal",
  7719. height: math.unit(3 + 1 / 12, "feet"),
  7720. default: true
  7721. },
  7722. {
  7723. name: "Macro",
  7724. height: math.unit(120, "feet")
  7725. },
  7726. ]
  7727. ))
  7728. characterMakers.push(() => makeCharacter(
  7729. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7730. {
  7731. lamp: {
  7732. height: math.unit(7 * 1559 / 989, "feet"),
  7733. name: "Magic Lamp",
  7734. image: {
  7735. source: "./media/characters/mira-al-cul/lamp.svg",
  7736. extra: 1617 / 1559
  7737. }
  7738. },
  7739. front: {
  7740. height: math.unit(7, "feet"),
  7741. name: "Front",
  7742. image: {
  7743. source: "./media/characters/mira-al-cul/front.svg",
  7744. extra: 1044 / 990
  7745. }
  7746. },
  7747. },
  7748. [
  7749. {
  7750. name: "Heavily Restricted",
  7751. height: math.unit(7 * 1559 / 989, "feet")
  7752. },
  7753. {
  7754. name: "Freshly Freed",
  7755. height: math.unit(50 * 1559 / 989, "feet")
  7756. },
  7757. {
  7758. name: "World Encompassing",
  7759. height: math.unit(10000 * 1559 / 989, "miles")
  7760. },
  7761. {
  7762. name: "Galactic",
  7763. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7764. },
  7765. {
  7766. name: "Palmed Universe",
  7767. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7768. default: true
  7769. },
  7770. {
  7771. name: "Multiversal Matriarch",
  7772. height: math.unit(8.87e10, "yottameters")
  7773. },
  7774. {
  7775. name: "Void Mother",
  7776. height: math.unit(3.14e110, "yottaparsecs")
  7777. },
  7778. {
  7779. name: "Toying with Transcendence",
  7780. height: math.unit(1e307, "meters")
  7781. },
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7786. {
  7787. front: {
  7788. height: math.unit(17 + 1 / 12, "feet"),
  7789. weight: math.unit(476.2 * 5, "lbs"),
  7790. name: "Front",
  7791. image: {
  7792. source: "./media/characters/kuro-shi-uchū/front.svg",
  7793. extra: 2329 / 1835,
  7794. bottom: 0.02
  7795. }
  7796. },
  7797. },
  7798. [
  7799. {
  7800. name: "Micro",
  7801. height: math.unit(2, "inches")
  7802. },
  7803. {
  7804. name: "Normal",
  7805. height: math.unit(12, "meters")
  7806. },
  7807. {
  7808. name: "Planetary",
  7809. height: math.unit(0.00929, "AU"),
  7810. default: true
  7811. },
  7812. {
  7813. name: "Universal",
  7814. height: math.unit(20, "gigaparsecs")
  7815. },
  7816. ]
  7817. ))
  7818. characterMakers.push(() => makeCharacter(
  7819. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7820. {
  7821. front: {
  7822. height: math.unit(5 + 2 / 12, "feet"),
  7823. weight: math.unit(120, "lbs"),
  7824. name: "Front",
  7825. image: {
  7826. source: "./media/characters/katherine/front.svg",
  7827. extra: 2075 / 1969
  7828. }
  7829. },
  7830. dress: {
  7831. height: math.unit(5 + 2 / 12, "feet"),
  7832. weight: math.unit(120, "lbs"),
  7833. name: "Dress",
  7834. image: {
  7835. source: "./media/characters/katherine/dress.svg",
  7836. extra: 2258 / 2064
  7837. }
  7838. },
  7839. },
  7840. [
  7841. {
  7842. name: "Micro",
  7843. height: math.unit(1, "inches"),
  7844. default: true
  7845. },
  7846. {
  7847. name: "Normal",
  7848. height: math.unit(5 + 2 / 12, "feet")
  7849. },
  7850. {
  7851. name: "Macro",
  7852. height: math.unit(100, "meters")
  7853. },
  7854. {
  7855. name: "Megamacro",
  7856. height: math.unit(80, "miles")
  7857. },
  7858. ]
  7859. ))
  7860. characterMakers.push(() => makeCharacter(
  7861. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7862. {
  7863. front: {
  7864. height: math.unit(7 + 8 / 12, "feet"),
  7865. weight: math.unit(250, "lbs"),
  7866. name: "Front",
  7867. image: {
  7868. source: "./media/characters/yevis/front.svg",
  7869. extra: 1938 / 1755
  7870. }
  7871. }
  7872. },
  7873. [
  7874. {
  7875. name: "Mortal",
  7876. height: math.unit(7 + 8 / 12, "feet")
  7877. },
  7878. {
  7879. name: "Battle",
  7880. height: math.unit(25 + 11 / 12, "feet")
  7881. },
  7882. {
  7883. name: "Wrath",
  7884. height: math.unit(1654 + 11 / 12, "feet")
  7885. },
  7886. {
  7887. name: "Planet Destroyer",
  7888. height: math.unit(12000, "miles")
  7889. },
  7890. {
  7891. name: "Galaxy Conqueror",
  7892. height: math.unit(1.45, "zettameters"),
  7893. default: true
  7894. },
  7895. {
  7896. name: "Universal War",
  7897. height: math.unit(184, "gigaparsecs")
  7898. },
  7899. {
  7900. name: "Eternity War",
  7901. height: math.unit(1.98e55, "yottaparsecs")
  7902. },
  7903. ]
  7904. ))
  7905. characterMakers.push(() => makeCharacter(
  7906. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7907. {
  7908. front: {
  7909. height: math.unit(5 + 8 / 12, "feet"),
  7910. weight: math.unit(63, "kg"),
  7911. name: "Front",
  7912. image: {
  7913. source: "./media/characters/xavier/front.svg",
  7914. extra: 944 / 883
  7915. }
  7916. },
  7917. frontStretch: {
  7918. height: math.unit(5 + 8 / 12, "feet"),
  7919. weight: math.unit(63, "kg"),
  7920. name: "Stretching",
  7921. image: {
  7922. source: "./media/characters/xavier/front-stretch.svg",
  7923. extra: 962 / 820
  7924. }
  7925. },
  7926. },
  7927. [
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(5 + 8 / 12, "feet")
  7931. },
  7932. {
  7933. name: "Macro",
  7934. height: math.unit(100, "meters"),
  7935. default: true
  7936. },
  7937. {
  7938. name: "McLargeHuge",
  7939. height: math.unit(10, "miles")
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7945. {
  7946. front: {
  7947. height: math.unit(5 + 5 / 12, "feet"),
  7948. weight: math.unit(150, "lb"),
  7949. name: "Front",
  7950. image: {
  7951. source: "./media/characters/joshii/front.svg",
  7952. extra: 765/653,
  7953. bottom: 51/816
  7954. }
  7955. },
  7956. foot: {
  7957. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7958. name: "Foot",
  7959. image: {
  7960. source: "./media/characters/joshii/foot.svg"
  7961. }
  7962. },
  7963. },
  7964. [
  7965. {
  7966. name: "Micro",
  7967. height: math.unit(2, "inches"),
  7968. default: true
  7969. },
  7970. {
  7971. name: "Normal",
  7972. height: math.unit(5 + 5 / 12, "feet")
  7973. },
  7974. {
  7975. name: "Macro",
  7976. height: math.unit(785, "feet")
  7977. },
  7978. {
  7979. name: "Megamacro",
  7980. height: math.unit(24.5, "miles")
  7981. },
  7982. ]
  7983. ))
  7984. characterMakers.push(() => makeCharacter(
  7985. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7986. {
  7987. front: {
  7988. height: math.unit(6, "feet"),
  7989. weight: math.unit(150, "lb"),
  7990. name: "Front",
  7991. image: {
  7992. source: "./media/characters/goddess-elizabeth/front.svg",
  7993. extra: 1800 / 1525,
  7994. bottom: 0.005
  7995. }
  7996. },
  7997. foot: {
  7998. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7999. name: "Foot",
  8000. image: {
  8001. source: "./media/characters/goddess-elizabeth/foot.svg"
  8002. }
  8003. },
  8004. mouth: {
  8005. height: math.unit(6, "feet"),
  8006. name: "Mouth",
  8007. image: {
  8008. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8009. }
  8010. },
  8011. },
  8012. [
  8013. {
  8014. name: "Micro",
  8015. height: math.unit(12, "feet")
  8016. },
  8017. {
  8018. name: "Normal",
  8019. height: math.unit(80, "miles"),
  8020. default: true
  8021. },
  8022. {
  8023. name: "Macro",
  8024. height: math.unit(15000, "parsecs")
  8025. },
  8026. ]
  8027. ))
  8028. characterMakers.push(() => makeCharacter(
  8029. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8030. {
  8031. front: {
  8032. height: math.unit(5 + 9 / 12, "feet"),
  8033. weight: math.unit(144, "lb"),
  8034. name: "Front",
  8035. image: {
  8036. source: "./media/characters/kara/front.svg"
  8037. }
  8038. },
  8039. feet: {
  8040. height: math.unit(6 / 6.765, "feet"),
  8041. name: "Kara's Feet",
  8042. rename: true,
  8043. image: {
  8044. source: "./media/characters/kara/feet.svg"
  8045. }
  8046. },
  8047. },
  8048. [
  8049. {
  8050. name: "Normal",
  8051. height: math.unit(5 + 9 / 12, "feet")
  8052. },
  8053. {
  8054. name: "Macro",
  8055. height: math.unit(174, "feet"),
  8056. default: true
  8057. },
  8058. ]
  8059. ))
  8060. characterMakers.push(() => makeCharacter(
  8061. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8062. {
  8063. front: {
  8064. height: math.unit(18, "feet"),
  8065. weight: math.unit(4050, "lb"),
  8066. name: "Front",
  8067. image: {
  8068. source: "./media/characters/tyrone/front.svg",
  8069. extra: 2520 / 2402,
  8070. bottom: 0.025
  8071. }
  8072. },
  8073. },
  8074. [
  8075. {
  8076. name: "Normal",
  8077. height: math.unit(18, "feet"),
  8078. default: true
  8079. },
  8080. {
  8081. name: "Macro",
  8082. height: math.unit(300, "feet")
  8083. },
  8084. ]
  8085. ))
  8086. characterMakers.push(() => makeCharacter(
  8087. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8088. {
  8089. front: {
  8090. height: math.unit(7 + 8 / 12, "feet"),
  8091. weight: math.unit(120, "lb"),
  8092. name: "Front",
  8093. image: {
  8094. source: "./media/characters/danny/front.svg",
  8095. extra: 1490 / 1350
  8096. }
  8097. },
  8098. back: {
  8099. height: math.unit(7 + 8 / 12, "feet"),
  8100. weight: math.unit(120, "lb"),
  8101. name: "Back",
  8102. image: {
  8103. source: "./media/characters/danny/back.svg",
  8104. extra: 1490 / 1350
  8105. }
  8106. },
  8107. },
  8108. [
  8109. {
  8110. name: "Normal",
  8111. height: math.unit(7 + 8 / 12, "feet"),
  8112. default: true
  8113. },
  8114. ]
  8115. ))
  8116. characterMakers.push(() => makeCharacter(
  8117. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8118. {
  8119. front: {
  8120. height: math.unit(3.5, "inches"),
  8121. weight: math.unit(19, "grams"),
  8122. name: "Front",
  8123. image: {
  8124. source: "./media/characters/mallow/front.svg",
  8125. extra: 471 / 431
  8126. }
  8127. },
  8128. back: {
  8129. height: math.unit(3.5, "inches"),
  8130. weight: math.unit(19, "grams"),
  8131. name: "Back",
  8132. image: {
  8133. source: "./media/characters/mallow/back.svg",
  8134. extra: 471 / 431
  8135. }
  8136. },
  8137. },
  8138. [
  8139. {
  8140. name: "Normal",
  8141. height: math.unit(3.5, "inches"),
  8142. default: true
  8143. },
  8144. ]
  8145. ))
  8146. characterMakers.push(() => makeCharacter(
  8147. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8148. {
  8149. front: {
  8150. height: math.unit(9, "feet"),
  8151. weight: math.unit(230, "kg"),
  8152. name: "Front",
  8153. image: {
  8154. source: "./media/characters/starry-aqua/front.svg"
  8155. }
  8156. },
  8157. back: {
  8158. height: math.unit(9, "feet"),
  8159. weight: math.unit(230, "kg"),
  8160. name: "Back",
  8161. image: {
  8162. source: "./media/characters/starry-aqua/back.svg"
  8163. }
  8164. },
  8165. hand: {
  8166. height: math.unit(9 * 0.1168, "feet"),
  8167. name: "Hand",
  8168. image: {
  8169. source: "./media/characters/starry-aqua/hand.svg"
  8170. }
  8171. },
  8172. foot: {
  8173. height: math.unit(9 * 0.18, "feet"),
  8174. name: "Foot",
  8175. image: {
  8176. source: "./media/characters/starry-aqua/foot.svg"
  8177. }
  8178. }
  8179. },
  8180. [
  8181. {
  8182. name: "Micro",
  8183. height: math.unit(3, "inches")
  8184. },
  8185. {
  8186. name: "Normal",
  8187. height: math.unit(9, "feet")
  8188. },
  8189. {
  8190. name: "Macro",
  8191. height: math.unit(300, "feet"),
  8192. default: true
  8193. },
  8194. {
  8195. name: "Megamacro",
  8196. height: math.unit(3200, "feet")
  8197. }
  8198. ]
  8199. ))
  8200. characterMakers.push(() => makeCharacter(
  8201. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8202. {
  8203. front: {
  8204. height: math.unit(6, "feet"),
  8205. weight: math.unit(230, "lb"),
  8206. name: "Front",
  8207. image: {
  8208. source: "./media/characters/luka/front.svg",
  8209. extra: 1,
  8210. bottom: 0.025
  8211. }
  8212. },
  8213. },
  8214. [
  8215. {
  8216. name: "Normal",
  8217. height: math.unit(12 + 8 / 12, "feet"),
  8218. default: true
  8219. },
  8220. {
  8221. name: "Minimacro",
  8222. height: math.unit(20, "feet")
  8223. },
  8224. {
  8225. name: "Macro",
  8226. height: math.unit(250, "feet")
  8227. },
  8228. {
  8229. name: "Megamacro",
  8230. height: math.unit(5, "miles")
  8231. },
  8232. {
  8233. name: "Gigamacro",
  8234. height: math.unit(8000, "miles")
  8235. },
  8236. ]
  8237. ))
  8238. characterMakers.push(() => makeCharacter(
  8239. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8240. {
  8241. front: {
  8242. height: math.unit(6, "feet"),
  8243. weight: math.unit(150, "lb"),
  8244. name: "Front",
  8245. image: {
  8246. source: "./media/characters/natalie-nightring/front.svg",
  8247. extra: 1,
  8248. bottom: 0.06
  8249. }
  8250. },
  8251. },
  8252. [
  8253. {
  8254. name: "Uh Oh",
  8255. height: math.unit(0.1, "mm")
  8256. },
  8257. {
  8258. name: "Small",
  8259. height: math.unit(3, "inches")
  8260. },
  8261. {
  8262. name: "Human Scale",
  8263. height: math.unit(6, "feet")
  8264. },
  8265. {
  8266. name: "Librarian",
  8267. height: math.unit(50, "feet"),
  8268. default: true
  8269. },
  8270. {
  8271. name: "Immense",
  8272. height: math.unit(200, "miles")
  8273. },
  8274. ]
  8275. ))
  8276. characterMakers.push(() => makeCharacter(
  8277. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8278. {
  8279. front: {
  8280. height: math.unit(6, "feet"),
  8281. weight: math.unit(180, "lbs"),
  8282. name: "Front",
  8283. image: {
  8284. source: "./media/characters/danni-rosie/front.svg",
  8285. extra: 1260 / 1128,
  8286. bottom: 0.022
  8287. }
  8288. },
  8289. },
  8290. [
  8291. {
  8292. name: "Micro",
  8293. height: math.unit(2, "inches"),
  8294. default: true
  8295. },
  8296. ]
  8297. ))
  8298. characterMakers.push(() => makeCharacter(
  8299. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8300. {
  8301. front: {
  8302. height: math.unit(5 + 9 / 12, "feet"),
  8303. weight: math.unit(220, "lb"),
  8304. name: "Front",
  8305. image: {
  8306. source: "./media/characters/samantha-kruse/front.svg",
  8307. extra: (985 / 935),
  8308. bottom: 0.03
  8309. }
  8310. },
  8311. frontUndressed: {
  8312. height: math.unit(5 + 9 / 12, "feet"),
  8313. weight: math.unit(220, "lb"),
  8314. name: "Front (Undressed)",
  8315. image: {
  8316. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8317. extra: (973 / 923),
  8318. bottom: 0.025
  8319. }
  8320. },
  8321. fat: {
  8322. height: math.unit(5 + 9 / 12, "feet"),
  8323. weight: math.unit(900, "lb"),
  8324. name: "Front (Fat)",
  8325. image: {
  8326. source: "./media/characters/samantha-kruse/fat.svg",
  8327. extra: 2688 / 2561
  8328. }
  8329. },
  8330. },
  8331. [
  8332. {
  8333. name: "Normal",
  8334. height: math.unit(5 + 9 / 12, "feet"),
  8335. default: true
  8336. }
  8337. ]
  8338. ))
  8339. characterMakers.push(() => makeCharacter(
  8340. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8341. {
  8342. back: {
  8343. height: math.unit(5 + 4 / 12, "feet"),
  8344. weight: math.unit(4963, "lb"),
  8345. name: "Back",
  8346. image: {
  8347. source: "./media/characters/amelia-rosie/back.svg",
  8348. extra: 1113 / 963,
  8349. bottom: 0.01
  8350. }
  8351. },
  8352. },
  8353. [
  8354. {
  8355. name: "Level 0",
  8356. height: math.unit(5 + 4 / 12, "feet")
  8357. },
  8358. {
  8359. name: "Level 1",
  8360. height: math.unit(164597, "feet"),
  8361. default: true
  8362. },
  8363. {
  8364. name: "Level 2",
  8365. height: math.unit(956243, "miles")
  8366. },
  8367. {
  8368. name: "Level 3",
  8369. height: math.unit(29421709423, "miles")
  8370. },
  8371. {
  8372. name: "Level 4",
  8373. height: math.unit(154, "lightyears")
  8374. },
  8375. {
  8376. name: "Level 5",
  8377. height: math.unit(4738272, "lightyears")
  8378. },
  8379. {
  8380. name: "Level 6",
  8381. height: math.unit(145787152896, "lightyears")
  8382. },
  8383. ]
  8384. ))
  8385. characterMakers.push(() => makeCharacter(
  8386. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8387. {
  8388. front: {
  8389. height: math.unit(5 + 11 / 12, "feet"),
  8390. weight: math.unit(65, "kg"),
  8391. name: "Front",
  8392. image: {
  8393. source: "./media/characters/rook-kitara/front.svg",
  8394. extra: 1347 / 1274,
  8395. bottom: 0.005
  8396. }
  8397. },
  8398. },
  8399. [
  8400. {
  8401. name: "Totally Unfair",
  8402. height: math.unit(1.8, "mm")
  8403. },
  8404. {
  8405. name: "Lap Rookie",
  8406. height: math.unit(1.4, "feet")
  8407. },
  8408. {
  8409. name: "Normal",
  8410. height: math.unit(5 + 11 / 12, "feet"),
  8411. default: true
  8412. },
  8413. {
  8414. name: "How Did This Happen",
  8415. height: math.unit(80, "miles")
  8416. }
  8417. ]
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8421. {
  8422. front: {
  8423. height: math.unit(7, "feet"),
  8424. weight: math.unit(300, "lb"),
  8425. name: "Front",
  8426. image: {
  8427. source: "./media/characters/pisces/front.svg",
  8428. extra: 2255 / 2115,
  8429. bottom: 0.03
  8430. }
  8431. },
  8432. back: {
  8433. height: math.unit(7, "feet"),
  8434. weight: math.unit(300, "lb"),
  8435. name: "Back",
  8436. image: {
  8437. source: "./media/characters/pisces/back.svg",
  8438. extra: 2146 / 2055,
  8439. bottom: 0.04
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Normal",
  8446. height: math.unit(7, "feet"),
  8447. default: true
  8448. },
  8449. {
  8450. name: "Swimming Pool",
  8451. height: math.unit(12.2, "meters")
  8452. },
  8453. {
  8454. name: "Olympic Swimming Pool",
  8455. height: math.unit(56.3, "meters")
  8456. },
  8457. {
  8458. name: "Lake Superior",
  8459. height: math.unit(93900, "meters")
  8460. },
  8461. {
  8462. name: "Mediterranean Sea",
  8463. height: math.unit(644457, "meters")
  8464. },
  8465. {
  8466. name: "World's Oceans",
  8467. height: math.unit(4567491, "meters")
  8468. },
  8469. ]
  8470. ))
  8471. characterMakers.push(() => makeCharacter(
  8472. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8473. {
  8474. front: {
  8475. height: math.unit(2.3, "meters"),
  8476. weight: math.unit(120, "kg"),
  8477. name: "Front",
  8478. image: {
  8479. source: "./media/characters/zelas/front.svg"
  8480. }
  8481. },
  8482. side: {
  8483. height: math.unit(2.3, "meters"),
  8484. weight: math.unit(120, "kg"),
  8485. name: "Side",
  8486. image: {
  8487. source: "./media/characters/zelas/side.svg"
  8488. }
  8489. },
  8490. back: {
  8491. height: math.unit(2.3, "meters"),
  8492. weight: math.unit(120, "kg"),
  8493. name: "Back",
  8494. image: {
  8495. source: "./media/characters/zelas/back.svg"
  8496. }
  8497. },
  8498. foot: {
  8499. height: math.unit(1.116, "feet"),
  8500. name: "Foot",
  8501. image: {
  8502. source: "./media/characters/zelas/foot.svg"
  8503. }
  8504. },
  8505. },
  8506. [
  8507. {
  8508. name: "Normal",
  8509. height: math.unit(2.3, "meters")
  8510. },
  8511. {
  8512. name: "Macro",
  8513. height: math.unit(30, "meters"),
  8514. default: true
  8515. },
  8516. ]
  8517. ))
  8518. characterMakers.push(() => makeCharacter(
  8519. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8520. {
  8521. front: {
  8522. height: math.unit(1, "inch"),
  8523. weight: math.unit(0.21, "grams"),
  8524. name: "Front",
  8525. image: {
  8526. source: "./media/characters/talbot/front.svg",
  8527. extra: 594 / 544
  8528. }
  8529. },
  8530. },
  8531. [
  8532. {
  8533. name: "Micro",
  8534. height: math.unit(1, "inch"),
  8535. default: true
  8536. },
  8537. ]
  8538. ))
  8539. characterMakers.push(() => makeCharacter(
  8540. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8541. {
  8542. front: {
  8543. height: math.unit(3 + 3 / 12, "feet"),
  8544. weight: math.unit(51.8, "lb"),
  8545. name: "Front",
  8546. image: {
  8547. source: "./media/characters/fliss/front.svg",
  8548. extra: 840 / 640
  8549. }
  8550. },
  8551. },
  8552. [
  8553. {
  8554. name: "Teeny Tiny",
  8555. height: math.unit(1, "mm")
  8556. },
  8557. {
  8558. name: "Small",
  8559. height: math.unit(1, "inch"),
  8560. default: true
  8561. },
  8562. {
  8563. name: "Standard Sylveon",
  8564. height: math.unit(3 + 3 / 12, "feet")
  8565. },
  8566. {
  8567. name: "Large Nuisance",
  8568. height: math.unit(33, "feet")
  8569. },
  8570. {
  8571. name: "City Filler",
  8572. height: math.unit(3000, "feet")
  8573. },
  8574. {
  8575. name: "New Horizon",
  8576. height: math.unit(6000, "miles")
  8577. },
  8578. ]
  8579. ))
  8580. characterMakers.push(() => makeCharacter(
  8581. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8582. {
  8583. front: {
  8584. height: math.unit(5, "cm"),
  8585. weight: math.unit(1.94, "g"),
  8586. name: "Front",
  8587. image: {
  8588. source: "./media/characters/fleta/front.svg",
  8589. extra: 835 / 803
  8590. }
  8591. },
  8592. back: {
  8593. height: math.unit(5, "cm"),
  8594. weight: math.unit(1.94, "g"),
  8595. name: "Back",
  8596. image: {
  8597. source: "./media/characters/fleta/back.svg",
  8598. extra: 835 / 803
  8599. }
  8600. },
  8601. },
  8602. [
  8603. {
  8604. name: "Micro",
  8605. height: math.unit(5, "cm"),
  8606. default: true
  8607. },
  8608. ]
  8609. ))
  8610. characterMakers.push(() => makeCharacter(
  8611. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8612. {
  8613. front: {
  8614. height: math.unit(6, "feet"),
  8615. weight: math.unit(225, "lb"),
  8616. name: "Front",
  8617. image: {
  8618. source: "./media/characters/dominic/front.svg",
  8619. extra: 1770 / 1620,
  8620. bottom: 0.025
  8621. }
  8622. },
  8623. back: {
  8624. height: math.unit(6, "feet"),
  8625. weight: math.unit(225, "lb"),
  8626. name: "Back",
  8627. image: {
  8628. source: "./media/characters/dominic/back.svg",
  8629. extra: 1745 / 1620,
  8630. bottom: 0.065
  8631. }
  8632. },
  8633. },
  8634. [
  8635. {
  8636. name: "Nano",
  8637. height: math.unit(0.1, "mm")
  8638. },
  8639. {
  8640. name: "Micro-",
  8641. height: math.unit(1, "mm")
  8642. },
  8643. {
  8644. name: "Micro",
  8645. height: math.unit(4, "inches")
  8646. },
  8647. {
  8648. name: "Normal",
  8649. height: math.unit(6 + 4 / 12, "feet"),
  8650. default: true
  8651. },
  8652. {
  8653. name: "Macro",
  8654. height: math.unit(115, "feet")
  8655. },
  8656. {
  8657. name: "Macro+",
  8658. height: math.unit(955, "feet")
  8659. },
  8660. {
  8661. name: "Megamacro",
  8662. height: math.unit(8990, "feet")
  8663. },
  8664. {
  8665. name: "Gigmacro",
  8666. height: math.unit(9310, "miles")
  8667. },
  8668. {
  8669. name: "Teramacro",
  8670. height: math.unit(1567005010, "miles")
  8671. },
  8672. {
  8673. name: "Examacro",
  8674. height: math.unit(1425, "parsecs")
  8675. },
  8676. ]
  8677. ))
  8678. characterMakers.push(() => makeCharacter(
  8679. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8680. {
  8681. front: {
  8682. height: math.unit(400, "feet"),
  8683. weight: math.unit(44444444, "lb"),
  8684. name: "Front",
  8685. image: {
  8686. source: "./media/characters/major-colonel/front.svg"
  8687. }
  8688. },
  8689. back: {
  8690. height: math.unit(400, "feet"),
  8691. weight: math.unit(44444444, "lb"),
  8692. name: "Back",
  8693. image: {
  8694. source: "./media/characters/major-colonel/back.svg"
  8695. }
  8696. },
  8697. },
  8698. [
  8699. {
  8700. name: "Macro",
  8701. height: math.unit(400, "feet"),
  8702. default: true
  8703. },
  8704. ]
  8705. ))
  8706. characterMakers.push(() => makeCharacter(
  8707. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8708. {
  8709. catFront: {
  8710. height: math.unit(6, "feet"),
  8711. weight: math.unit(120, "lb"),
  8712. name: "Front (Cat Side)",
  8713. image: {
  8714. source: "./media/characters/axel-lycan/cat-front.svg",
  8715. extra: 430 / 402,
  8716. bottom: 43 / 472.35
  8717. }
  8718. },
  8719. catBack: {
  8720. height: math.unit(6, "feet"),
  8721. weight: math.unit(120, "lb"),
  8722. name: "Back (Cat Side)",
  8723. image: {
  8724. source: "./media/characters/axel-lycan/cat-back.svg",
  8725. extra: 447 / 419,
  8726. bottom: 23.3 / 469
  8727. }
  8728. },
  8729. wolfFront: {
  8730. height: math.unit(6, "feet"),
  8731. weight: math.unit(120, "lb"),
  8732. name: "Front (Wolf Side)",
  8733. image: {
  8734. source: "./media/characters/axel-lycan/wolf-front.svg",
  8735. extra: 485 / 456,
  8736. bottom: 19 / 504
  8737. }
  8738. },
  8739. wolfBack: {
  8740. height: math.unit(6, "feet"),
  8741. weight: math.unit(120, "lb"),
  8742. name: "Back (Wolf Side)",
  8743. image: {
  8744. source: "./media/characters/axel-lycan/wolf-back.svg",
  8745. extra: 475 / 438,
  8746. bottom: 39.2 / 514
  8747. }
  8748. },
  8749. },
  8750. [
  8751. {
  8752. name: "Macro",
  8753. height: math.unit(1, "km"),
  8754. default: true
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(5 + 9 / 12, "feet"),
  8763. weight: math.unit(175, "lb"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/vanrel-hyena/front.svg",
  8767. extra: 1086 / 1010,
  8768. bottom: 0.04
  8769. }
  8770. },
  8771. },
  8772. [
  8773. {
  8774. name: "Normal",
  8775. height: math.unit(5 + 9 / 12, "feet"),
  8776. default: true
  8777. },
  8778. ]
  8779. ))
  8780. characterMakers.push(() => makeCharacter(
  8781. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8782. {
  8783. front: {
  8784. height: math.unit(6, "feet"),
  8785. weight: math.unit(103, "lb"),
  8786. name: "Front",
  8787. image: {
  8788. source: "./media/characters/abbott-absol/front.svg",
  8789. extra: 2010 / 1842
  8790. }
  8791. },
  8792. },
  8793. [
  8794. {
  8795. name: "Megamicro",
  8796. height: math.unit(0.1, "mm")
  8797. },
  8798. {
  8799. name: "Micro",
  8800. height: math.unit(1, "inch")
  8801. },
  8802. {
  8803. name: "Normal",
  8804. height: math.unit(6, "feet"),
  8805. default: true
  8806. },
  8807. ]
  8808. ))
  8809. characterMakers.push(() => makeCharacter(
  8810. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8811. {
  8812. front: {
  8813. height: math.unit(6, "feet"),
  8814. weight: math.unit(264, "lb"),
  8815. name: "Front",
  8816. image: {
  8817. source: "./media/characters/hector/front.svg",
  8818. extra: 2280 / 2130,
  8819. bottom: 0.07
  8820. }
  8821. },
  8822. },
  8823. [
  8824. {
  8825. name: "Normal",
  8826. height: math.unit(12.25, "foot"),
  8827. default: true
  8828. },
  8829. {
  8830. name: "Macro",
  8831. height: math.unit(160, "feet")
  8832. },
  8833. ]
  8834. ))
  8835. characterMakers.push(() => makeCharacter(
  8836. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8837. {
  8838. front: {
  8839. height: math.unit(6, "feet"),
  8840. weight: math.unit(150, "lb"),
  8841. name: "Front",
  8842. image: {
  8843. source: "./media/characters/sal/front.svg",
  8844. extra: 1846 / 1699,
  8845. bottom: 0.04
  8846. }
  8847. },
  8848. },
  8849. [
  8850. {
  8851. name: "Megamacro",
  8852. height: math.unit(10, "miles"),
  8853. default: true
  8854. },
  8855. ]
  8856. ))
  8857. characterMakers.push(() => makeCharacter(
  8858. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8859. {
  8860. front: {
  8861. height: math.unit(3, "meters"),
  8862. weight: math.unit(450, "kg"),
  8863. name: "front",
  8864. image: {
  8865. source: "./media/characters/ranger/front.svg",
  8866. extra: 2401 / 2243,
  8867. bottom: 0.05
  8868. }
  8869. },
  8870. },
  8871. [
  8872. {
  8873. name: "Normal",
  8874. height: math.unit(3, "meters"),
  8875. default: true
  8876. },
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8881. {
  8882. front: {
  8883. height: math.unit(14, "feet"),
  8884. weight: math.unit(800, "kg"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/theresa/front.svg",
  8888. extra: 3575 / 3346,
  8889. bottom: 0.03
  8890. }
  8891. },
  8892. },
  8893. [
  8894. {
  8895. name: "Normal",
  8896. height: math.unit(14, "feet"),
  8897. default: true
  8898. },
  8899. ]
  8900. ))
  8901. characterMakers.push(() => makeCharacter(
  8902. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8903. {
  8904. front: {
  8905. height: math.unit(6, "feet"),
  8906. weight: math.unit(3, "kg"),
  8907. name: "Front",
  8908. image: {
  8909. source: "./media/characters/ine/front.svg",
  8910. extra: 678 / 539,
  8911. bottom: 0.023
  8912. }
  8913. },
  8914. },
  8915. [
  8916. {
  8917. name: "Normal",
  8918. height: math.unit(2.265, "feet"),
  8919. default: true
  8920. },
  8921. ]
  8922. ))
  8923. characterMakers.push(() => makeCharacter(
  8924. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8925. {
  8926. front: {
  8927. height: math.unit(5, "feet"),
  8928. weight: math.unit(30, "kg"),
  8929. name: "Front",
  8930. image: {
  8931. source: "./media/characters/vial/front.svg",
  8932. extra: 1365 / 1277,
  8933. bottom: 0.04
  8934. }
  8935. },
  8936. },
  8937. [
  8938. {
  8939. name: "Normal",
  8940. height: math.unit(5, "feet"),
  8941. default: true
  8942. },
  8943. ]
  8944. ))
  8945. characterMakers.push(() => makeCharacter(
  8946. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8947. {
  8948. side: {
  8949. height: math.unit(3.4, "meters"),
  8950. weight: math.unit(1000, "lb"),
  8951. name: "Side",
  8952. image: {
  8953. source: "./media/characters/rovoska/side.svg",
  8954. extra: 4403 / 1515
  8955. }
  8956. },
  8957. },
  8958. [
  8959. {
  8960. name: "Normal",
  8961. height: math.unit(3.4, "meters"),
  8962. default: true
  8963. },
  8964. ]
  8965. ))
  8966. characterMakers.push(() => makeCharacter(
  8967. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8968. {
  8969. front: {
  8970. height: math.unit(8, "feet"),
  8971. weight: math.unit(315, "lb"),
  8972. name: "Front",
  8973. image: {
  8974. source: "./media/characters/gunner-rotthbauer/front.svg"
  8975. }
  8976. },
  8977. back: {
  8978. height: math.unit(8, "feet"),
  8979. weight: math.unit(315, "lb"),
  8980. name: "Back",
  8981. image: {
  8982. source: "./media/characters/gunner-rotthbauer/back.svg"
  8983. }
  8984. },
  8985. },
  8986. [
  8987. {
  8988. name: "Micro",
  8989. height: math.unit(3.5, "inches")
  8990. },
  8991. {
  8992. name: "Normal",
  8993. height: math.unit(8, "feet"),
  8994. default: true
  8995. },
  8996. {
  8997. name: "Macro",
  8998. height: math.unit(250, "feet")
  8999. },
  9000. {
  9001. name: "Megamacro",
  9002. height: math.unit(1, "AU")
  9003. },
  9004. ]
  9005. ))
  9006. characterMakers.push(() => makeCharacter(
  9007. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9008. {
  9009. front: {
  9010. height: math.unit(5 + 5 / 12, "feet"),
  9011. weight: math.unit(140, "lb"),
  9012. name: "Front",
  9013. image: {
  9014. source: "./media/characters/allatia/front.svg",
  9015. extra: 1227 / 1180,
  9016. bottom: 0.027
  9017. }
  9018. },
  9019. },
  9020. [
  9021. {
  9022. name: "Normal",
  9023. height: math.unit(5 + 5 / 12, "feet")
  9024. },
  9025. {
  9026. name: "Macro",
  9027. height: math.unit(250, "feet"),
  9028. default: true
  9029. },
  9030. {
  9031. name: "Megamacro",
  9032. height: math.unit(8, "miles")
  9033. }
  9034. ]
  9035. ))
  9036. characterMakers.push(() => makeCharacter(
  9037. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9038. {
  9039. front: {
  9040. height: math.unit(6, "feet"),
  9041. weight: math.unit(120, "lb"),
  9042. name: "Front",
  9043. image: {
  9044. source: "./media/characters/tene/front.svg",
  9045. extra: 1728 / 1578,
  9046. bottom: 0.022
  9047. }
  9048. },
  9049. stomping: {
  9050. height: math.unit(2.025, "meters"),
  9051. weight: math.unit(120, "lb"),
  9052. name: "Stomping",
  9053. image: {
  9054. source: "./media/characters/tene/stomping.svg",
  9055. extra: 938 / 873,
  9056. bottom: 0.01
  9057. }
  9058. },
  9059. sitting: {
  9060. height: math.unit(1, "meter"),
  9061. weight: math.unit(120, "lb"),
  9062. name: "Sitting",
  9063. image: {
  9064. source: "./media/characters/tene/sitting.svg",
  9065. extra: 437 / 415,
  9066. bottom: 0.1
  9067. }
  9068. },
  9069. feral: {
  9070. height: math.unit(3.9, "feet"),
  9071. weight: math.unit(250, "lb"),
  9072. name: "Feral",
  9073. image: {
  9074. source: "./media/characters/tene/feral.svg",
  9075. extra: 717 / 458,
  9076. bottom: 0.179
  9077. }
  9078. },
  9079. },
  9080. [
  9081. {
  9082. name: "Normal",
  9083. height: math.unit(6, "feet")
  9084. },
  9085. {
  9086. name: "Macro",
  9087. height: math.unit(300, "feet"),
  9088. default: true
  9089. },
  9090. {
  9091. name: "Megamacro",
  9092. height: math.unit(5, "miles")
  9093. },
  9094. ]
  9095. ))
  9096. characterMakers.push(() => makeCharacter(
  9097. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9098. {
  9099. side: {
  9100. height: math.unit(6, "feet"),
  9101. name: "Side",
  9102. image: {
  9103. source: "./media/characters/evander/side.svg",
  9104. extra: 877 / 477
  9105. }
  9106. },
  9107. },
  9108. [
  9109. {
  9110. name: "Normal",
  9111. height: math.unit(0.83, "meters"),
  9112. default: true
  9113. },
  9114. ]
  9115. ))
  9116. characterMakers.push(() => makeCharacter(
  9117. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9118. {
  9119. front: {
  9120. height: math.unit(12, "feet"),
  9121. weight: math.unit(1000, "lb"),
  9122. name: "Front",
  9123. image: {
  9124. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9125. extra: 1762 / 1611
  9126. }
  9127. },
  9128. back: {
  9129. height: math.unit(12, "feet"),
  9130. weight: math.unit(1000, "lb"),
  9131. name: "Back",
  9132. image: {
  9133. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9134. extra: 1762 / 1611
  9135. }
  9136. },
  9137. },
  9138. [
  9139. {
  9140. name: "Normal",
  9141. height: math.unit(12, "feet"),
  9142. default: true
  9143. },
  9144. {
  9145. name: "Kaiju",
  9146. height: math.unit(150, "feet")
  9147. },
  9148. ]
  9149. ))
  9150. characterMakers.push(() => makeCharacter(
  9151. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9152. {
  9153. front: {
  9154. height: math.unit(6, "feet"),
  9155. weight: math.unit(150, "lb"),
  9156. name: "Front",
  9157. image: {
  9158. source: "./media/characters/zero-alurus/front.svg"
  9159. }
  9160. },
  9161. back: {
  9162. height: math.unit(6, "feet"),
  9163. weight: math.unit(150, "lb"),
  9164. name: "Back",
  9165. image: {
  9166. source: "./media/characters/zero-alurus/back.svg"
  9167. }
  9168. },
  9169. },
  9170. [
  9171. {
  9172. name: "Normal",
  9173. height: math.unit(5 + 10 / 12, "feet")
  9174. },
  9175. {
  9176. name: "Macro",
  9177. height: math.unit(60, "feet"),
  9178. default: true
  9179. },
  9180. {
  9181. name: "Macro+",
  9182. height: math.unit(450, "feet")
  9183. },
  9184. ]
  9185. ))
  9186. characterMakers.push(() => makeCharacter(
  9187. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9188. {
  9189. front: {
  9190. height: math.unit(6, "feet"),
  9191. weight: math.unit(200, "lb"),
  9192. name: "Front",
  9193. image: {
  9194. source: "./media/characters/mega-shi/front.svg",
  9195. extra: 1279 / 1250,
  9196. bottom: 0.02
  9197. }
  9198. },
  9199. back: {
  9200. height: math.unit(6, "feet"),
  9201. weight: math.unit(200, "lb"),
  9202. name: "Back",
  9203. image: {
  9204. source: "./media/characters/mega-shi/back.svg",
  9205. extra: 1279 / 1250,
  9206. bottom: 0.02
  9207. }
  9208. },
  9209. },
  9210. [
  9211. {
  9212. name: "Micro",
  9213. height: math.unit(16 + 6 / 12, "feet")
  9214. },
  9215. {
  9216. name: "Third Dimension",
  9217. height: math.unit(40, "meters")
  9218. },
  9219. {
  9220. name: "Normal",
  9221. height: math.unit(660, "feet"),
  9222. default: true
  9223. },
  9224. {
  9225. name: "Megamacro",
  9226. height: math.unit(10, "miles")
  9227. },
  9228. {
  9229. name: "Planetary Launch",
  9230. height: math.unit(500, "miles")
  9231. },
  9232. {
  9233. name: "Interstellar",
  9234. height: math.unit(1e9, "miles")
  9235. },
  9236. {
  9237. name: "Leaving the Universe",
  9238. height: math.unit(1, "gigaparsec")
  9239. },
  9240. {
  9241. name: "Travelling Universes",
  9242. height: math.unit(30e15, "parsecs")
  9243. },
  9244. ]
  9245. ))
  9246. characterMakers.push(() => makeCharacter(
  9247. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9248. {
  9249. front: {
  9250. height: math.unit(6, "feet"),
  9251. weight: math.unit(150, "lb"),
  9252. name: "Front",
  9253. image: {
  9254. source: "./media/characters/odyssey/front.svg",
  9255. extra: 1782 / 1582,
  9256. bottom: 0.01
  9257. }
  9258. },
  9259. side: {
  9260. height: math.unit(5.7, "feet"),
  9261. weight: math.unit(140, "lb"),
  9262. name: "Side",
  9263. image: {
  9264. source: "./media/characters/odyssey/side.svg",
  9265. extra: 6462 / 5700
  9266. }
  9267. },
  9268. },
  9269. [
  9270. {
  9271. name: "Normal",
  9272. height: math.unit(5 + 4 / 12, "feet")
  9273. },
  9274. {
  9275. name: "Macro",
  9276. height: math.unit(1, "km")
  9277. },
  9278. {
  9279. name: "Megamacro",
  9280. height: math.unit(3000, "km")
  9281. },
  9282. {
  9283. name: "Gigamacro",
  9284. height: math.unit(1, "AU"),
  9285. default: true
  9286. },
  9287. {
  9288. name: "Omniversal",
  9289. height: math.unit(100e14, "lightyears")
  9290. },
  9291. ]
  9292. ))
  9293. characterMakers.push(() => makeCharacter(
  9294. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9295. {
  9296. front: {
  9297. height: math.unit(6, "feet"),
  9298. weight: math.unit(300, "lb"),
  9299. name: "Front",
  9300. image: {
  9301. source: "./media/characters/mekuto/front.svg",
  9302. extra: 921 / 832,
  9303. bottom: 0.03
  9304. }
  9305. },
  9306. hand: {
  9307. height: math.unit(6 / 10.24, "feet"),
  9308. name: "Hand",
  9309. image: {
  9310. source: "./media/characters/mekuto/hand.svg"
  9311. }
  9312. },
  9313. foot: {
  9314. height: math.unit(6 / 5.05, "feet"),
  9315. name: "Foot",
  9316. image: {
  9317. source: "./media/characters/mekuto/foot.svg"
  9318. }
  9319. },
  9320. },
  9321. [
  9322. {
  9323. name: "Minimicro",
  9324. height: math.unit(0.2, "inches")
  9325. },
  9326. {
  9327. name: "Micro",
  9328. height: math.unit(1.5, "inches")
  9329. },
  9330. {
  9331. name: "Normal",
  9332. height: math.unit(5 + 11 / 12, "feet"),
  9333. default: true
  9334. },
  9335. {
  9336. name: "Minimacro",
  9337. height: math.unit(17 + 9 / 12, "feet")
  9338. },
  9339. {
  9340. name: "Macro",
  9341. height: math.unit(177.5, "feet")
  9342. },
  9343. {
  9344. name: "Megamacro",
  9345. height: math.unit(152, "miles")
  9346. },
  9347. ]
  9348. ))
  9349. characterMakers.push(() => makeCharacter(
  9350. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9351. {
  9352. front: {
  9353. height: math.unit(6.5, "inches"),
  9354. weight: math.unit(13, "oz"),
  9355. name: "Front",
  9356. image: {
  9357. source: "./media/characters/dafydd-tomos/front.svg",
  9358. extra: 2990 / 2603,
  9359. bottom: 0.03
  9360. }
  9361. },
  9362. },
  9363. [
  9364. {
  9365. name: "Micro",
  9366. height: math.unit(6.5, "inches"),
  9367. default: true
  9368. },
  9369. ]
  9370. ))
  9371. characterMakers.push(() => makeCharacter(
  9372. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9373. {
  9374. front: {
  9375. height: math.unit(6, "feet"),
  9376. weight: math.unit(150, "lb"),
  9377. name: "Front",
  9378. image: {
  9379. source: "./media/characters/splinter/front.svg",
  9380. extra: 2990 / 2882,
  9381. bottom: 0.04
  9382. }
  9383. },
  9384. back: {
  9385. height: math.unit(6, "feet"),
  9386. weight: math.unit(150, "lb"),
  9387. name: "Back",
  9388. image: {
  9389. source: "./media/characters/splinter/back.svg",
  9390. extra: 2990 / 2882,
  9391. bottom: 0.04
  9392. }
  9393. },
  9394. },
  9395. [
  9396. {
  9397. name: "Normal",
  9398. height: math.unit(6, "feet")
  9399. },
  9400. {
  9401. name: "Macro",
  9402. height: math.unit(230, "meters"),
  9403. default: true
  9404. },
  9405. ]
  9406. ))
  9407. characterMakers.push(() => makeCharacter(
  9408. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9409. {
  9410. front: {
  9411. height: math.unit(4 + 10 / 12, "feet"),
  9412. weight: math.unit(480, "lb"),
  9413. name: "Front",
  9414. image: {
  9415. source: "./media/characters/snow-gabumon/front.svg",
  9416. extra: 1140 / 963,
  9417. bottom: 0.058
  9418. }
  9419. },
  9420. back: {
  9421. height: math.unit(4 + 10 / 12, "feet"),
  9422. weight: math.unit(480, "lb"),
  9423. name: "Back",
  9424. image: {
  9425. source: "./media/characters/snow-gabumon/back.svg",
  9426. extra: 1115 / 962,
  9427. bottom: 0.041
  9428. }
  9429. },
  9430. frontUndresed: {
  9431. height: math.unit(4 + 10 / 12, "feet"),
  9432. weight: math.unit(480, "lb"),
  9433. name: "Front (Undressed)",
  9434. image: {
  9435. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9436. extra: 1061 / 960,
  9437. bottom: 0.045
  9438. }
  9439. },
  9440. },
  9441. [
  9442. {
  9443. name: "Micro",
  9444. height: math.unit(1, "inch")
  9445. },
  9446. {
  9447. name: "Normal",
  9448. height: math.unit(4 + 10 / 12, "feet"),
  9449. default: true
  9450. },
  9451. {
  9452. name: "Macro",
  9453. height: math.unit(200, "feet")
  9454. },
  9455. {
  9456. name: "Megamacro",
  9457. height: math.unit(120, "miles")
  9458. },
  9459. {
  9460. name: "Gigamacro",
  9461. height: math.unit(9800, "miles")
  9462. },
  9463. ]
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9467. {
  9468. front: {
  9469. height: math.unit(1.7, "meters"),
  9470. weight: math.unit(140, "lb"),
  9471. name: "Front",
  9472. image: {
  9473. source: "./media/characters/moody/front.svg",
  9474. extra: 3226 / 3007,
  9475. bottom: 0.087
  9476. }
  9477. },
  9478. },
  9479. [
  9480. {
  9481. name: "Micro",
  9482. height: math.unit(1, "mm")
  9483. },
  9484. {
  9485. name: "Normal",
  9486. height: math.unit(1.7, "meters"),
  9487. default: true
  9488. },
  9489. {
  9490. name: "Macro",
  9491. height: math.unit(80, "meters")
  9492. },
  9493. {
  9494. name: "Macro+",
  9495. height: math.unit(500, "meters")
  9496. },
  9497. ]
  9498. ))
  9499. characterMakers.push(() => makeCharacter(
  9500. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9501. {
  9502. front: {
  9503. height: math.unit(6, "feet"),
  9504. weight: math.unit(150, "lb"),
  9505. name: "Front",
  9506. image: {
  9507. source: "./media/characters/zyas/front.svg",
  9508. extra: 1180 / 1120,
  9509. bottom: 0.045
  9510. }
  9511. },
  9512. },
  9513. [
  9514. {
  9515. name: "Normal",
  9516. height: math.unit(10, "feet"),
  9517. default: true
  9518. },
  9519. {
  9520. name: "Macro",
  9521. height: math.unit(500, "feet")
  9522. },
  9523. {
  9524. name: "Megamacro",
  9525. height: math.unit(5, "miles")
  9526. },
  9527. {
  9528. name: "Teramacro",
  9529. height: math.unit(150000, "miles")
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9535. {
  9536. front: {
  9537. height: math.unit(6, "feet"),
  9538. weight: math.unit(150, "lb"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/cuon/front.svg",
  9542. extra: 1390 / 1320,
  9543. bottom: 0.008
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Micro",
  9550. height: math.unit(3, "inches")
  9551. },
  9552. {
  9553. name: "Normal",
  9554. height: math.unit(18 + 9 / 12, "feet"),
  9555. default: true
  9556. },
  9557. {
  9558. name: "Macro",
  9559. height: math.unit(360, "feet")
  9560. },
  9561. {
  9562. name: "Megamacro",
  9563. height: math.unit(360, "miles")
  9564. },
  9565. ]
  9566. ))
  9567. characterMakers.push(() => makeCharacter(
  9568. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9569. {
  9570. front: {
  9571. height: math.unit(2.4, "meters"),
  9572. weight: math.unit(70, "kg"),
  9573. name: "Front",
  9574. image: {
  9575. source: "./media/characters/nyanuxk/front.svg",
  9576. extra: 1172 / 1084,
  9577. bottom: 0.065
  9578. }
  9579. },
  9580. side: {
  9581. height: math.unit(2.4, "meters"),
  9582. weight: math.unit(70, "kg"),
  9583. name: "Side",
  9584. image: {
  9585. source: "./media/characters/nyanuxk/side.svg",
  9586. extra: 1190 / 1132,
  9587. bottom: 0.007
  9588. }
  9589. },
  9590. back: {
  9591. height: math.unit(2.4, "meters"),
  9592. weight: math.unit(70, "kg"),
  9593. name: "Back",
  9594. image: {
  9595. source: "./media/characters/nyanuxk/back.svg",
  9596. extra: 1200 / 1141,
  9597. bottom: 0.015
  9598. }
  9599. },
  9600. foot: {
  9601. height: math.unit(0.52, "meters"),
  9602. name: "Foot",
  9603. image: {
  9604. source: "./media/characters/nyanuxk/foot.svg"
  9605. }
  9606. },
  9607. },
  9608. [
  9609. {
  9610. name: "Micro",
  9611. height: math.unit(2, "cm")
  9612. },
  9613. {
  9614. name: "Normal",
  9615. height: math.unit(2.4, "meters"),
  9616. default: true
  9617. },
  9618. {
  9619. name: "Smaller Macro",
  9620. height: math.unit(120, "meters")
  9621. },
  9622. {
  9623. name: "Bigger Macro",
  9624. height: math.unit(1.2, "km")
  9625. },
  9626. {
  9627. name: "Megamacro",
  9628. height: math.unit(15, "kilometers")
  9629. },
  9630. {
  9631. name: "Gigamacro",
  9632. height: math.unit(2000, "km")
  9633. },
  9634. {
  9635. name: "Teramacro",
  9636. height: math.unit(500000, "km")
  9637. },
  9638. ]
  9639. ))
  9640. characterMakers.push(() => makeCharacter(
  9641. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9642. {
  9643. side: {
  9644. height: math.unit(6, "feet"),
  9645. name: "Side",
  9646. image: {
  9647. source: "./media/characters/ailbhe/side.svg",
  9648. extra: 757 / 464,
  9649. bottom: 0.041
  9650. }
  9651. },
  9652. },
  9653. [
  9654. {
  9655. name: "Normal",
  9656. height: math.unit(1.07, "meters"),
  9657. default: true
  9658. },
  9659. ]
  9660. ))
  9661. characterMakers.push(() => makeCharacter(
  9662. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9663. {
  9664. front: {
  9665. height: math.unit(6, "feet"),
  9666. weight: math.unit(120, "kg"),
  9667. name: "Front",
  9668. image: {
  9669. source: "./media/characters/zevulfius/front.svg",
  9670. extra: 965 / 903
  9671. }
  9672. },
  9673. side: {
  9674. height: math.unit(6, "feet"),
  9675. weight: math.unit(120, "kg"),
  9676. name: "Side",
  9677. image: {
  9678. source: "./media/characters/zevulfius/side.svg",
  9679. extra: 939 / 900
  9680. }
  9681. },
  9682. back: {
  9683. height: math.unit(6, "feet"),
  9684. weight: math.unit(120, "kg"),
  9685. name: "Back",
  9686. image: {
  9687. source: "./media/characters/zevulfius/back.svg",
  9688. extra: 918 / 854,
  9689. bottom: 0.005
  9690. }
  9691. },
  9692. foot: {
  9693. height: math.unit(6 / 3.72, "feet"),
  9694. name: "Foot",
  9695. image: {
  9696. source: "./media/characters/zevulfius/foot.svg"
  9697. }
  9698. },
  9699. },
  9700. [
  9701. {
  9702. name: "Macro",
  9703. height: math.unit(750, "meters")
  9704. },
  9705. {
  9706. name: "Megamacro",
  9707. height: math.unit(20, "km"),
  9708. default: true
  9709. },
  9710. {
  9711. name: "Gigamacro",
  9712. height: math.unit(2000, "km")
  9713. },
  9714. {
  9715. name: "Teramacro",
  9716. height: math.unit(250000, "km")
  9717. },
  9718. ]
  9719. ))
  9720. characterMakers.push(() => makeCharacter(
  9721. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9722. {
  9723. front: {
  9724. height: math.unit(100, "feet"),
  9725. weight: math.unit(350, "kg"),
  9726. name: "Front",
  9727. image: {
  9728. source: "./media/characters/rikes/front.svg",
  9729. extra: 1565 / 1483,
  9730. bottom: 0.017
  9731. }
  9732. },
  9733. },
  9734. [
  9735. {
  9736. name: "Macro",
  9737. height: math.unit(100, "feet"),
  9738. default: true
  9739. },
  9740. ]
  9741. ))
  9742. characterMakers.push(() => makeCharacter(
  9743. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9744. {
  9745. anthro: {
  9746. height: math.unit(8, "feet"),
  9747. weight: math.unit(120, "kg"),
  9748. name: "Anthro",
  9749. image: {
  9750. source: "./media/characters/adam-silver-mane/anthro.svg",
  9751. extra: 5743 / 5339,
  9752. bottom: 0.07
  9753. }
  9754. },
  9755. taur: {
  9756. height: math.unit(16, "feet"),
  9757. weight: math.unit(1500, "kg"),
  9758. name: "Taur",
  9759. image: {
  9760. source: "./media/characters/adam-silver-mane/taur.svg",
  9761. extra: 1713 / 1571,
  9762. bottom: 0.01
  9763. }
  9764. },
  9765. },
  9766. [
  9767. {
  9768. name: "Normal",
  9769. height: math.unit(8, "feet")
  9770. },
  9771. {
  9772. name: "Minimacro",
  9773. height: math.unit(80, "feet")
  9774. },
  9775. {
  9776. name: "Macro",
  9777. height: math.unit(800, "feet"),
  9778. default: true
  9779. },
  9780. {
  9781. name: "Megamacro",
  9782. height: math.unit(8000, "feet")
  9783. },
  9784. {
  9785. name: "Gigamacro",
  9786. height: math.unit(800, "miles")
  9787. },
  9788. {
  9789. name: "Teramacro",
  9790. height: math.unit(80000, "miles")
  9791. },
  9792. {
  9793. name: "Celestial",
  9794. height: math.unit(8e6, "miles")
  9795. },
  9796. {
  9797. name: "Star Dragon",
  9798. height: math.unit(800000, "parsecs")
  9799. },
  9800. {
  9801. name: "Godly",
  9802. height: math.unit(800, "teraparsecs")
  9803. },
  9804. ]
  9805. ))
  9806. characterMakers.push(() => makeCharacter(
  9807. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9808. {
  9809. front: {
  9810. height: math.unit(6, "feet"),
  9811. weight: math.unit(150, "lb"),
  9812. name: "Front",
  9813. image: {
  9814. source: "./media/characters/ky'owin/front.svg",
  9815. extra: 3888 / 3068,
  9816. bottom: 0.015
  9817. }
  9818. },
  9819. },
  9820. [
  9821. {
  9822. name: "Normal",
  9823. height: math.unit(6 + 8 / 12, "feet")
  9824. },
  9825. {
  9826. name: "Large",
  9827. height: math.unit(68, "feet")
  9828. },
  9829. {
  9830. name: "Macro",
  9831. height: math.unit(132, "feet")
  9832. },
  9833. {
  9834. name: "Macro+",
  9835. height: math.unit(340, "feet")
  9836. },
  9837. {
  9838. name: "Macro++",
  9839. height: math.unit(680, "feet"),
  9840. default: true
  9841. },
  9842. {
  9843. name: "Megamacro",
  9844. height: math.unit(1, "mile")
  9845. },
  9846. {
  9847. name: "Megamacro+",
  9848. height: math.unit(10, "miles")
  9849. },
  9850. ]
  9851. ))
  9852. characterMakers.push(() => makeCharacter(
  9853. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9854. {
  9855. front: {
  9856. height: math.unit(4, "feet"),
  9857. weight: math.unit(50, "lb"),
  9858. name: "Front",
  9859. image: {
  9860. source: "./media/characters/mal/front.svg",
  9861. extra: 785 / 724,
  9862. bottom: 0.07
  9863. }
  9864. },
  9865. },
  9866. [
  9867. {
  9868. name: "Micro",
  9869. height: math.unit(4, "inches")
  9870. },
  9871. {
  9872. name: "Normal",
  9873. height: math.unit(4, "feet"),
  9874. default: true
  9875. },
  9876. {
  9877. name: "Macro",
  9878. height: math.unit(200, "feet")
  9879. },
  9880. ]
  9881. ))
  9882. characterMakers.push(() => makeCharacter(
  9883. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9884. {
  9885. front: {
  9886. height: math.unit(6, "feet"),
  9887. weight: math.unit(150, "lb"),
  9888. name: "Front",
  9889. image: {
  9890. source: "./media/characters/jordan-deware/front.svg",
  9891. extra: 1191 / 1012
  9892. }
  9893. },
  9894. },
  9895. [
  9896. {
  9897. name: "Nano",
  9898. height: math.unit(0.01, "mm")
  9899. },
  9900. {
  9901. name: "Minimicro",
  9902. height: math.unit(1, "mm")
  9903. },
  9904. {
  9905. name: "Micro",
  9906. height: math.unit(0.5, "inches")
  9907. },
  9908. {
  9909. name: "Normal",
  9910. height: math.unit(4, "feet"),
  9911. default: true
  9912. },
  9913. {
  9914. name: "Minimacro",
  9915. height: math.unit(40, "meters")
  9916. },
  9917. {
  9918. name: "Small Macro",
  9919. height: math.unit(400, "meters")
  9920. },
  9921. {
  9922. name: "Macro",
  9923. height: math.unit(4, "miles")
  9924. },
  9925. {
  9926. name: "Megamacro",
  9927. height: math.unit(40, "miles")
  9928. },
  9929. {
  9930. name: "Megamacro+",
  9931. height: math.unit(400, "miles")
  9932. },
  9933. {
  9934. name: "Gigamacro",
  9935. height: math.unit(400000, "miles")
  9936. },
  9937. ]
  9938. ))
  9939. characterMakers.push(() => makeCharacter(
  9940. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9941. {
  9942. side: {
  9943. height: math.unit(6, "feet"),
  9944. weight: math.unit(150, "lb"),
  9945. name: "Side",
  9946. image: {
  9947. source: "./media/characters/kimiko/side.svg",
  9948. extra: 600 / 358
  9949. }
  9950. },
  9951. },
  9952. [
  9953. {
  9954. name: "Normal",
  9955. height: math.unit(15, "feet"),
  9956. default: true
  9957. },
  9958. {
  9959. name: "Macro",
  9960. height: math.unit(220, "feet")
  9961. },
  9962. {
  9963. name: "Macro+",
  9964. height: math.unit(1450, "feet")
  9965. },
  9966. {
  9967. name: "Megamacro",
  9968. height: math.unit(11500, "feet")
  9969. },
  9970. {
  9971. name: "Gigamacro",
  9972. height: math.unit(9500, "miles")
  9973. },
  9974. {
  9975. name: "Teramacro",
  9976. height: math.unit(2208005005, "miles")
  9977. },
  9978. {
  9979. name: "Examacro",
  9980. height: math.unit(2750, "parsecs")
  9981. },
  9982. {
  9983. name: "Zettamacro",
  9984. height: math.unit(101500, "parsecs")
  9985. },
  9986. ]
  9987. ))
  9988. characterMakers.push(() => makeCharacter(
  9989. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9990. {
  9991. front: {
  9992. height: math.unit(6, "feet"),
  9993. weight: math.unit(70, "kg"),
  9994. name: "Front",
  9995. image: {
  9996. source: "./media/characters/andrew-sleepy/front.svg"
  9997. }
  9998. },
  9999. side: {
  10000. height: math.unit(6, "feet"),
  10001. weight: math.unit(70, "kg"),
  10002. name: "Side",
  10003. image: {
  10004. source: "./media/characters/andrew-sleepy/side.svg"
  10005. }
  10006. },
  10007. },
  10008. [
  10009. {
  10010. name: "Micro",
  10011. height: math.unit(1, "mm"),
  10012. default: true
  10013. },
  10014. ]
  10015. ))
  10016. characterMakers.push(() => makeCharacter(
  10017. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10018. {
  10019. front: {
  10020. height: math.unit(6, "feet"),
  10021. weight: math.unit(150, "lb"),
  10022. name: "Front",
  10023. image: {
  10024. source: "./media/characters/judio/front.svg",
  10025. extra: 1258 / 1110
  10026. }
  10027. },
  10028. },
  10029. [
  10030. {
  10031. name: "Normal",
  10032. height: math.unit(5 + 6 / 12, "feet")
  10033. },
  10034. {
  10035. name: "Macro",
  10036. height: math.unit(1000, "feet"),
  10037. default: true
  10038. },
  10039. {
  10040. name: "Megamacro",
  10041. height: math.unit(10, "miles")
  10042. },
  10043. ]
  10044. ))
  10045. characterMakers.push(() => makeCharacter(
  10046. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10047. {
  10048. front: {
  10049. height: math.unit(6, "feet"),
  10050. weight: math.unit(68, "kg"),
  10051. name: "Front",
  10052. image: {
  10053. source: "./media/characters/nomaxice/front.svg",
  10054. extra: 1498 / 1073,
  10055. bottom: 0.075
  10056. }
  10057. },
  10058. foot: {
  10059. height: math.unit(1.1, "feet"),
  10060. name: "Foot",
  10061. image: {
  10062. source: "./media/characters/nomaxice/foot.svg"
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Micro",
  10069. height: math.unit(8, "cm")
  10070. },
  10071. {
  10072. name: "Norm",
  10073. height: math.unit(1.82, "m")
  10074. },
  10075. {
  10076. name: "Norm+",
  10077. height: math.unit(8.8, "feet")
  10078. },
  10079. {
  10080. name: "Big",
  10081. height: math.unit(8, "meters"),
  10082. default: true
  10083. },
  10084. {
  10085. name: "Macro",
  10086. height: math.unit(18, "meters")
  10087. },
  10088. {
  10089. name: "Macro+",
  10090. height: math.unit(88, "meters")
  10091. },
  10092. ]
  10093. ))
  10094. characterMakers.push(() => makeCharacter(
  10095. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10096. {
  10097. front: {
  10098. height: math.unit(12, "feet"),
  10099. weight: math.unit(1.5, "tons"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/dydros/front.svg",
  10103. extra: 863 / 800,
  10104. bottom: 0.015
  10105. }
  10106. },
  10107. back: {
  10108. height: math.unit(12, "feet"),
  10109. weight: math.unit(1.5, "tons"),
  10110. name: "Back",
  10111. image: {
  10112. source: "./media/characters/dydros/back.svg",
  10113. extra: 900 / 843,
  10114. bottom: 0.005
  10115. }
  10116. },
  10117. },
  10118. [
  10119. {
  10120. name: "Normal",
  10121. height: math.unit(12, "feet"),
  10122. default: true
  10123. },
  10124. ]
  10125. ))
  10126. characterMakers.push(() => makeCharacter(
  10127. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10128. {
  10129. front: {
  10130. height: math.unit(6, "feet"),
  10131. weight: math.unit(100, "kg"),
  10132. name: "Front",
  10133. image: {
  10134. source: "./media/characters/riggi/front.svg",
  10135. extra: 5787 / 5303
  10136. }
  10137. },
  10138. hyper: {
  10139. height: math.unit(6 * 5 / 3, "feet"),
  10140. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10141. name: "Hyper",
  10142. image: {
  10143. source: "./media/characters/riggi/hyper.svg",
  10144. extra: 3595 / 3485
  10145. }
  10146. },
  10147. },
  10148. [
  10149. {
  10150. name: "Small Macro",
  10151. height: math.unit(50, "feet")
  10152. },
  10153. {
  10154. name: "Default",
  10155. height: math.unit(200, "feet"),
  10156. default: true
  10157. },
  10158. {
  10159. name: "Loom",
  10160. height: math.unit(10000, "feet")
  10161. },
  10162. {
  10163. name: "Cruising Altitude",
  10164. height: math.unit(30000, "feet")
  10165. },
  10166. {
  10167. name: "Megamacro",
  10168. height: math.unit(100, "miles")
  10169. },
  10170. {
  10171. name: "Continent Sized",
  10172. height: math.unit(2800, "miles")
  10173. },
  10174. {
  10175. name: "Earth Sized",
  10176. height: math.unit(8000, "miles")
  10177. },
  10178. ]
  10179. ))
  10180. characterMakers.push(() => makeCharacter(
  10181. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10182. {
  10183. front: {
  10184. height: math.unit(6, "feet"),
  10185. weight: math.unit(250, "lb"),
  10186. name: "Front",
  10187. image: {
  10188. source: "./media/characters/alexi/front.svg",
  10189. extra: 3483 / 3291,
  10190. bottom: 0.04
  10191. }
  10192. },
  10193. back: {
  10194. height: math.unit(6, "feet"),
  10195. weight: math.unit(250, "lb"),
  10196. name: "Back",
  10197. image: {
  10198. source: "./media/characters/alexi/back.svg",
  10199. extra: 3533 / 3356,
  10200. bottom: 0.021
  10201. }
  10202. },
  10203. frontTransforming: {
  10204. height: math.unit(8.58, "feet"),
  10205. weight: math.unit(1300, "lb"),
  10206. name: "Transforming",
  10207. image: {
  10208. source: "./media/characters/alexi/front-transforming.svg",
  10209. extra: 437 / 409,
  10210. bottom: 19 / 458.66
  10211. }
  10212. },
  10213. frontTransformed: {
  10214. height: math.unit(12.5, "feet"),
  10215. weight: math.unit(4000, "lb"),
  10216. name: "Transformed",
  10217. image: {
  10218. source: "./media/characters/alexi/front-transformed.svg",
  10219. extra: 639 / 614,
  10220. bottom: 30.55 / 671
  10221. }
  10222. },
  10223. },
  10224. [
  10225. {
  10226. name: "Normal",
  10227. height: math.unit(14, "feet"),
  10228. default: true
  10229. },
  10230. {
  10231. name: "Minimacro",
  10232. height: math.unit(30, "meters")
  10233. },
  10234. {
  10235. name: "Macro",
  10236. height: math.unit(500, "meters")
  10237. },
  10238. {
  10239. name: "Megamacro",
  10240. height: math.unit(9000, "km")
  10241. },
  10242. {
  10243. name: "Teramacro",
  10244. height: math.unit(384000, "km")
  10245. },
  10246. ]
  10247. ))
  10248. characterMakers.push(() => makeCharacter(
  10249. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10250. {
  10251. front: {
  10252. height: math.unit(6, "feet"),
  10253. weight: math.unit(150, "lb"),
  10254. name: "Front",
  10255. image: {
  10256. source: "./media/characters/kayroo/front.svg",
  10257. extra: 1153 / 1038,
  10258. bottom: 0.06
  10259. }
  10260. },
  10261. foot: {
  10262. height: math.unit(6, "feet"),
  10263. weight: math.unit(150, "lb"),
  10264. name: "Foot",
  10265. image: {
  10266. source: "./media/characters/kayroo/foot.svg"
  10267. }
  10268. },
  10269. },
  10270. [
  10271. {
  10272. name: "Normal",
  10273. height: math.unit(8, "feet"),
  10274. default: true
  10275. },
  10276. {
  10277. name: "Minimacro",
  10278. height: math.unit(250, "feet")
  10279. },
  10280. {
  10281. name: "Macro",
  10282. height: math.unit(2800, "feet")
  10283. },
  10284. {
  10285. name: "Megamacro",
  10286. height: math.unit(5200, "feet")
  10287. },
  10288. {
  10289. name: "Gigamacro",
  10290. height: math.unit(27000, "feet")
  10291. },
  10292. {
  10293. name: "Omega",
  10294. height: math.unit(45000, "feet")
  10295. },
  10296. ]
  10297. ))
  10298. characterMakers.push(() => makeCharacter(
  10299. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10300. {
  10301. front: {
  10302. height: math.unit(18, "feet"),
  10303. weight: math.unit(5800, "lb"),
  10304. name: "Front",
  10305. image: {
  10306. source: "./media/characters/rhys/front.svg",
  10307. extra: 3386 / 3090,
  10308. bottom: 0.07
  10309. }
  10310. },
  10311. },
  10312. [
  10313. {
  10314. name: "Normal",
  10315. height: math.unit(18, "feet"),
  10316. default: true
  10317. },
  10318. {
  10319. name: "Working Size",
  10320. height: math.unit(200, "feet")
  10321. },
  10322. {
  10323. name: "Demolition Size",
  10324. height: math.unit(2000, "feet")
  10325. },
  10326. {
  10327. name: "Maximum Licensed Size",
  10328. height: math.unit(5, "miles")
  10329. },
  10330. {
  10331. name: "Maximum Observed Size",
  10332. height: math.unit(10, "yottameters")
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10338. {
  10339. front: {
  10340. height: math.unit(6, "feet"),
  10341. weight: math.unit(250, "lb"),
  10342. name: "Front",
  10343. image: {
  10344. source: "./media/characters/toto/front.svg",
  10345. extra: 527 / 479,
  10346. bottom: 0.05
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Micro",
  10353. height: math.unit(3, "feet")
  10354. },
  10355. {
  10356. name: "Normal",
  10357. height: math.unit(10, "feet")
  10358. },
  10359. {
  10360. name: "Macro",
  10361. height: math.unit(150, "feet"),
  10362. default: true
  10363. },
  10364. {
  10365. name: "Megamacro",
  10366. height: math.unit(1200, "feet")
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "King", species: ["lion"], tags: ["anthro"] },
  10372. {
  10373. back: {
  10374. height: math.unit(6, "feet"),
  10375. weight: math.unit(150, "lb"),
  10376. name: "Back",
  10377. image: {
  10378. source: "./media/characters/king/back.svg"
  10379. }
  10380. },
  10381. },
  10382. [
  10383. {
  10384. name: "Micro",
  10385. height: math.unit(2, "inches")
  10386. },
  10387. {
  10388. name: "Normal",
  10389. height: math.unit(8, "feet")
  10390. },
  10391. {
  10392. name: "Macro",
  10393. height: math.unit(200, "feet"),
  10394. default: true
  10395. },
  10396. {
  10397. name: "Megamacro",
  10398. height: math.unit(50, "miles")
  10399. },
  10400. ]
  10401. ))
  10402. characterMakers.push(() => makeCharacter(
  10403. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10404. {
  10405. anthro: {
  10406. height: math.unit(6 + 5 / 12, "feet"),
  10407. weight: math.unit(280, "lb"),
  10408. name: "Anthro",
  10409. image: {
  10410. source: "./media/characters/cordite/anthro.svg",
  10411. extra: 1986 / 1905,
  10412. bottom: 0.025
  10413. }
  10414. },
  10415. feral: {
  10416. height: math.unit(2, "feet"),
  10417. weight: math.unit(90, "lb"),
  10418. name: "Feral",
  10419. image: {
  10420. source: "./media/characters/cordite/feral.svg",
  10421. extra: 1260 / 755,
  10422. bottom: 0.05
  10423. }
  10424. },
  10425. },
  10426. [
  10427. {
  10428. name: "Normal",
  10429. height: math.unit(6 + 5 / 12, "feet"),
  10430. default: true
  10431. },
  10432. ]
  10433. ))
  10434. characterMakers.push(() => makeCharacter(
  10435. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10436. {
  10437. front: {
  10438. height: math.unit(6, "feet"),
  10439. weight: math.unit(150, "lb"),
  10440. name: "Front",
  10441. image: {
  10442. source: "./media/characters/pianostrong/front.svg",
  10443. extra: 6577 / 6254,
  10444. bottom: 0.02
  10445. }
  10446. },
  10447. side: {
  10448. height: math.unit(6, "feet"),
  10449. weight: math.unit(150, "lb"),
  10450. name: "Side",
  10451. image: {
  10452. source: "./media/characters/pianostrong/side.svg",
  10453. extra: 6106 / 5730
  10454. }
  10455. },
  10456. back: {
  10457. height: math.unit(6, "feet"),
  10458. weight: math.unit(150, "lb"),
  10459. name: "Back",
  10460. image: {
  10461. source: "./media/characters/pianostrong/back.svg",
  10462. extra: 6085 / 5733,
  10463. bottom: 0.01
  10464. }
  10465. },
  10466. },
  10467. [
  10468. {
  10469. name: "Macro",
  10470. height: math.unit(100, "feet")
  10471. },
  10472. {
  10473. name: "Macro+",
  10474. height: math.unit(300, "feet"),
  10475. default: true
  10476. },
  10477. {
  10478. name: "Macro++",
  10479. height: math.unit(1000, "feet")
  10480. },
  10481. ]
  10482. ))
  10483. characterMakers.push(() => makeCharacter(
  10484. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10485. {
  10486. front: {
  10487. height: math.unit(6, "feet"),
  10488. weight: math.unit(150, "lb"),
  10489. name: "Front",
  10490. image: {
  10491. source: "./media/characters/kona/front.svg",
  10492. extra: 2960 / 2629,
  10493. bottom: 0.005
  10494. }
  10495. },
  10496. },
  10497. [
  10498. {
  10499. name: "Normal",
  10500. height: math.unit(11 + 8 / 12, "feet")
  10501. },
  10502. {
  10503. name: "Macro",
  10504. height: math.unit(850, "feet"),
  10505. default: true
  10506. },
  10507. {
  10508. name: "Macro+",
  10509. height: math.unit(1.5, "km"),
  10510. default: true
  10511. },
  10512. {
  10513. name: "Megamacro",
  10514. height: math.unit(80, "miles")
  10515. },
  10516. {
  10517. name: "Gigamacro",
  10518. height: math.unit(3500, "miles")
  10519. },
  10520. ]
  10521. ))
  10522. characterMakers.push(() => makeCharacter(
  10523. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10524. {
  10525. side: {
  10526. height: math.unit(1.9, "meters"),
  10527. weight: math.unit(326, "kg"),
  10528. name: "Side",
  10529. image: {
  10530. source: "./media/characters/levi/side.svg",
  10531. extra: 1704 / 1334,
  10532. bottom: 0.02
  10533. }
  10534. },
  10535. },
  10536. [
  10537. {
  10538. name: "Normal",
  10539. height: math.unit(1.9, "meters"),
  10540. default: true
  10541. },
  10542. {
  10543. name: "Macro",
  10544. height: math.unit(20, "meters")
  10545. },
  10546. {
  10547. name: "Macro+",
  10548. height: math.unit(200, "meters")
  10549. },
  10550. {
  10551. name: "Megamacro",
  10552. height: math.unit(2, "km")
  10553. },
  10554. {
  10555. name: "Megamacro+",
  10556. height: math.unit(20, "km")
  10557. },
  10558. {
  10559. name: "Gigamacro",
  10560. height: math.unit(2500, "km")
  10561. },
  10562. {
  10563. name: "Gigamacro+",
  10564. height: math.unit(120000, "km")
  10565. },
  10566. {
  10567. name: "Teramacro",
  10568. height: math.unit(7.77e6, "km")
  10569. },
  10570. ]
  10571. ))
  10572. characterMakers.push(() => makeCharacter(
  10573. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10574. {
  10575. front: {
  10576. height: math.unit(6 + 4 / 12, "feet"),
  10577. weight: math.unit(188, "lb"),
  10578. name: "Front",
  10579. image: {
  10580. source: "./media/characters/bmc/front.svg",
  10581. extra: 1067 / 1022,
  10582. bottom: 0.047
  10583. }
  10584. },
  10585. },
  10586. [
  10587. {
  10588. name: "Human-sized",
  10589. height: math.unit(6 + 4 / 12, "feet")
  10590. },
  10591. {
  10592. name: "Small",
  10593. height: math.unit(250, "feet")
  10594. },
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(1250, "feet"),
  10598. default: true
  10599. },
  10600. {
  10601. name: "Good Day",
  10602. height: math.unit(88, "miles")
  10603. },
  10604. {
  10605. name: "Largest Measured Size",
  10606. height: math.unit(11.2e6, "lightyears")
  10607. },
  10608. ]
  10609. ))
  10610. characterMakers.push(() => makeCharacter(
  10611. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10612. {
  10613. front: {
  10614. height: math.unit(20, "feet"),
  10615. weight: math.unit(2016, "kg"),
  10616. name: "Front",
  10617. image: {
  10618. source: "./media/characters/sven-the-kaiju/front.svg",
  10619. extra: 1479 / 1449,
  10620. bottom: 0.05
  10621. }
  10622. },
  10623. },
  10624. [
  10625. {
  10626. name: "Fairy",
  10627. height: math.unit(6, "inches")
  10628. },
  10629. {
  10630. name: "Normal",
  10631. height: math.unit(20, "feet"),
  10632. default: true
  10633. },
  10634. {
  10635. name: "Rampage",
  10636. height: math.unit(200, "feet")
  10637. },
  10638. {
  10639. name: "Archfey Forest Guardian",
  10640. height: math.unit(1, "mile")
  10641. },
  10642. ]
  10643. ))
  10644. characterMakers.push(() => makeCharacter(
  10645. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10646. {
  10647. front: {
  10648. height: math.unit(4, "meters"),
  10649. weight: math.unit(2, "tons"),
  10650. name: "Front",
  10651. image: {
  10652. source: "./media/characters/marik/front.svg",
  10653. extra: 1057 / 1003,
  10654. bottom: 0.08
  10655. }
  10656. },
  10657. },
  10658. [
  10659. {
  10660. name: "Normal",
  10661. height: math.unit(4, "meters"),
  10662. default: true
  10663. },
  10664. {
  10665. name: "Macro",
  10666. height: math.unit(20, "meters")
  10667. },
  10668. {
  10669. name: "Megamacro",
  10670. height: math.unit(50, "km")
  10671. },
  10672. {
  10673. name: "Gigamacro",
  10674. height: math.unit(100, "km")
  10675. },
  10676. {
  10677. name: "Alpha Macro",
  10678. height: math.unit(7.88e7, "yottameters")
  10679. },
  10680. ]
  10681. ))
  10682. characterMakers.push(() => makeCharacter(
  10683. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10684. {
  10685. front: {
  10686. height: math.unit(6, "feet"),
  10687. weight: math.unit(110, "lb"),
  10688. name: "Front",
  10689. image: {
  10690. source: "./media/characters/mel/front.svg",
  10691. extra: 736 / 617,
  10692. bottom: 0.017
  10693. }
  10694. },
  10695. },
  10696. [
  10697. {
  10698. name: "Pico",
  10699. height: math.unit(3, "pm")
  10700. },
  10701. {
  10702. name: "Nano",
  10703. height: math.unit(3, "nm")
  10704. },
  10705. {
  10706. name: "Micro",
  10707. height: math.unit(0.3, "mm"),
  10708. default: true
  10709. },
  10710. {
  10711. name: "Micro+",
  10712. height: math.unit(3, "mm")
  10713. },
  10714. {
  10715. name: "Normal",
  10716. height: math.unit(5 + 10.5 / 12, "feet")
  10717. },
  10718. ]
  10719. ))
  10720. characterMakers.push(() => makeCharacter(
  10721. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10722. {
  10723. kaiju: {
  10724. height: math.unit(1.75, "meters"),
  10725. weight: math.unit(55, "kg"),
  10726. name: "Kaiju",
  10727. image: {
  10728. source: "./media/characters/lykonous/kaiju.svg",
  10729. extra: 1055 / 946,
  10730. bottom: 0.135
  10731. }
  10732. },
  10733. },
  10734. [
  10735. {
  10736. name: "Normal",
  10737. height: math.unit(2.5, "meters"),
  10738. default: true
  10739. },
  10740. {
  10741. name: "Kaiju Dragon",
  10742. height: math.unit(60, "meters")
  10743. },
  10744. {
  10745. name: "Mega Kaiju",
  10746. height: math.unit(120, "km")
  10747. },
  10748. {
  10749. name: "Giga Kaiju",
  10750. height: math.unit(200, "megameters")
  10751. },
  10752. {
  10753. name: "Terra Kaiju",
  10754. height: math.unit(400, "gigameters")
  10755. },
  10756. {
  10757. name: "Kaiju Dragon God",
  10758. height: math.unit(13000, "exaparsecs")
  10759. },
  10760. ]
  10761. ))
  10762. characterMakers.push(() => makeCharacter(
  10763. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10764. {
  10765. front: {
  10766. height: math.unit(6, "feet"),
  10767. weight: math.unit(150, "lb"),
  10768. name: "Front",
  10769. image: {
  10770. source: "./media/characters/blü/front.svg",
  10771. extra: 1883 / 1564,
  10772. bottom: 0.031
  10773. }
  10774. },
  10775. },
  10776. [
  10777. {
  10778. name: "Normal",
  10779. height: math.unit(13, "feet"),
  10780. default: true
  10781. },
  10782. {
  10783. name: "Big Boi",
  10784. height: math.unit(150, "meters")
  10785. },
  10786. {
  10787. name: "Mini Stomper",
  10788. height: math.unit(300, "meters")
  10789. },
  10790. {
  10791. name: "Macro",
  10792. height: math.unit(1000, "meters")
  10793. },
  10794. {
  10795. name: "Megamacro",
  10796. height: math.unit(11000, "meters")
  10797. },
  10798. {
  10799. name: "Gigamacro",
  10800. height: math.unit(11000, "km")
  10801. },
  10802. {
  10803. name: "Teramacro",
  10804. height: math.unit(420000, "km")
  10805. },
  10806. {
  10807. name: "Examacro",
  10808. height: math.unit(120, "parsecs")
  10809. },
  10810. {
  10811. name: "God Tho",
  10812. height: math.unit(98000000000, "parsecs")
  10813. },
  10814. ]
  10815. ))
  10816. characterMakers.push(() => makeCharacter(
  10817. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10818. {
  10819. taurFront: {
  10820. height: math.unit(6, "feet"),
  10821. weight: math.unit(200, "lb"),
  10822. name: "Taur (Front)",
  10823. image: {
  10824. source: "./media/characters/scales/taur-front.svg",
  10825. extra: 1,
  10826. bottom: 0.05
  10827. }
  10828. },
  10829. taurBack: {
  10830. height: math.unit(6, "feet"),
  10831. weight: math.unit(200, "lb"),
  10832. name: "Taur (Back)",
  10833. image: {
  10834. source: "./media/characters/scales/taur-back.svg",
  10835. extra: 1,
  10836. bottom: 0.08
  10837. }
  10838. },
  10839. anthro: {
  10840. height: math.unit(6 * 7 / 12, "feet"),
  10841. weight: math.unit(100, "lb"),
  10842. name: "Anthro",
  10843. image: {
  10844. source: "./media/characters/scales/anthro.svg",
  10845. extra: 1,
  10846. bottom: 0.06
  10847. }
  10848. },
  10849. },
  10850. [
  10851. {
  10852. name: "Normal",
  10853. height: math.unit(12, "feet"),
  10854. default: true
  10855. },
  10856. ]
  10857. ))
  10858. characterMakers.push(() => makeCharacter(
  10859. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10860. {
  10861. front: {
  10862. height: math.unit(6, "feet"),
  10863. weight: math.unit(150, "lb"),
  10864. name: "Front",
  10865. image: {
  10866. source: "./media/characters/koragos/front.svg",
  10867. extra: 841 / 794,
  10868. bottom: 0.035
  10869. }
  10870. },
  10871. back: {
  10872. height: math.unit(6, "feet"),
  10873. weight: math.unit(150, "lb"),
  10874. name: "Back",
  10875. image: {
  10876. source: "./media/characters/koragos/back.svg",
  10877. extra: 841 / 810,
  10878. bottom: 0.022
  10879. }
  10880. },
  10881. },
  10882. [
  10883. {
  10884. name: "Normal",
  10885. height: math.unit(6 + 11 / 12, "feet"),
  10886. default: true
  10887. },
  10888. {
  10889. name: "Macro",
  10890. height: math.unit(490, "feet")
  10891. },
  10892. {
  10893. name: "Megamacro",
  10894. height: math.unit(10, "miles")
  10895. },
  10896. {
  10897. name: "Gigamacro",
  10898. height: math.unit(50, "miles")
  10899. },
  10900. ]
  10901. ))
  10902. characterMakers.push(() => makeCharacter(
  10903. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10904. {
  10905. front: {
  10906. height: math.unit(6, "feet"),
  10907. weight: math.unit(250, "lb"),
  10908. name: "Front",
  10909. image: {
  10910. source: "./media/characters/xylrem/front.svg",
  10911. extra: 3323 / 3050,
  10912. bottom: 0.065
  10913. }
  10914. },
  10915. },
  10916. [
  10917. {
  10918. name: "Micro",
  10919. height: math.unit(4, "feet")
  10920. },
  10921. {
  10922. name: "Normal",
  10923. height: math.unit(16, "feet"),
  10924. default: true
  10925. },
  10926. {
  10927. name: "Macro",
  10928. height: math.unit(2720, "feet")
  10929. },
  10930. {
  10931. name: "Megamacro",
  10932. height: math.unit(25000, "miles")
  10933. },
  10934. ]
  10935. ))
  10936. characterMakers.push(() => makeCharacter(
  10937. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10938. {
  10939. front: {
  10940. height: math.unit(8, "feet"),
  10941. weight: math.unit(250, "kg"),
  10942. name: "Front",
  10943. image: {
  10944. source: "./media/characters/ikideru/front.svg",
  10945. extra: 930 / 870,
  10946. bottom: 0.087
  10947. }
  10948. },
  10949. back: {
  10950. height: math.unit(8, "feet"),
  10951. weight: math.unit(250, "kg"),
  10952. name: "Back",
  10953. image: {
  10954. source: "./media/characters/ikideru/back.svg",
  10955. extra: 919 / 852,
  10956. bottom: 0.055
  10957. }
  10958. },
  10959. },
  10960. [
  10961. {
  10962. name: "Rare",
  10963. height: math.unit(8, "feet"),
  10964. default: true
  10965. },
  10966. {
  10967. name: "Playful Loom",
  10968. height: math.unit(80, "feet")
  10969. },
  10970. {
  10971. name: "City Leaner",
  10972. height: math.unit(230, "feet")
  10973. },
  10974. {
  10975. name: "Megamacro",
  10976. height: math.unit(2500, "feet")
  10977. },
  10978. {
  10979. name: "Gigamacro",
  10980. height: math.unit(26400, "feet")
  10981. },
  10982. {
  10983. name: "Tectonic Shifter",
  10984. height: math.unit(1.7, "megameters")
  10985. },
  10986. {
  10987. name: "Planet Carer",
  10988. height: math.unit(21, "megameters")
  10989. },
  10990. {
  10991. name: "God",
  10992. height: math.unit(11157.22, "parsecs")
  10993. },
  10994. ]
  10995. ))
  10996. characterMakers.push(() => makeCharacter(
  10997. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10998. {
  10999. front: {
  11000. height: math.unit(6, "feet"),
  11001. weight: math.unit(120, "lb"),
  11002. name: "Front",
  11003. image: {
  11004. source: "./media/characters/neo/front.svg"
  11005. }
  11006. },
  11007. },
  11008. [
  11009. {
  11010. name: "Micro",
  11011. height: math.unit(2, "inches"),
  11012. default: true
  11013. },
  11014. {
  11015. name: "Human Size",
  11016. height: math.unit(5 + 8 / 12, "feet")
  11017. },
  11018. ]
  11019. ))
  11020. characterMakers.push(() => makeCharacter(
  11021. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11022. {
  11023. front: {
  11024. height: math.unit(13 + 10 / 12, "feet"),
  11025. weight: math.unit(5320, "lb"),
  11026. name: "Front",
  11027. image: {
  11028. source: "./media/characters/chauncey-chantz/front.svg",
  11029. extra: 1587 / 1435,
  11030. bottom: 0.02
  11031. }
  11032. },
  11033. },
  11034. [
  11035. {
  11036. name: "Normal",
  11037. height: math.unit(13 + 10 / 12, "feet"),
  11038. default: true
  11039. },
  11040. {
  11041. name: "Macro",
  11042. height: math.unit(45, "feet")
  11043. },
  11044. {
  11045. name: "Megamacro",
  11046. height: math.unit(250, "miles")
  11047. },
  11048. {
  11049. name: "Planetary",
  11050. height: math.unit(10000, "miles")
  11051. },
  11052. {
  11053. name: "Galactic",
  11054. height: math.unit(40000, "parsecs")
  11055. },
  11056. {
  11057. name: "Universal",
  11058. height: math.unit(1, "yottameter")
  11059. },
  11060. ]
  11061. ))
  11062. characterMakers.push(() => makeCharacter(
  11063. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11064. {
  11065. front: {
  11066. height: math.unit(6, "feet"),
  11067. weight: math.unit(150, "lb"),
  11068. name: "Front",
  11069. image: {
  11070. source: "./media/characters/epifox/front.svg",
  11071. extra: 1,
  11072. bottom: 0.075
  11073. }
  11074. },
  11075. },
  11076. [
  11077. {
  11078. name: "Micro",
  11079. height: math.unit(6, "inches")
  11080. },
  11081. {
  11082. name: "Normal",
  11083. height: math.unit(12, "feet"),
  11084. default: true
  11085. },
  11086. {
  11087. name: "Macro",
  11088. height: math.unit(3810, "feet")
  11089. },
  11090. {
  11091. name: "Megamacro",
  11092. height: math.unit(500, "miles")
  11093. },
  11094. ]
  11095. ))
  11096. characterMakers.push(() => makeCharacter(
  11097. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11098. {
  11099. front: {
  11100. height: math.unit(1.8796, "m"),
  11101. weight: math.unit(230, "lb"),
  11102. name: "Front",
  11103. image: {
  11104. source: "./media/characters/colin-t/front.svg",
  11105. extra: 1272 / 1193,
  11106. bottom: 0.07
  11107. }
  11108. },
  11109. },
  11110. [
  11111. {
  11112. name: "Micro",
  11113. height: math.unit(0.571, "meters")
  11114. },
  11115. {
  11116. name: "Normal",
  11117. height: math.unit(1.8796, "meters"),
  11118. default: true
  11119. },
  11120. {
  11121. name: "Tall",
  11122. height: math.unit(4, "meters")
  11123. },
  11124. {
  11125. name: "Macro",
  11126. height: math.unit(67.241, "meters")
  11127. },
  11128. {
  11129. name: "Megamacro",
  11130. height: math.unit(371.856, "meters")
  11131. },
  11132. {
  11133. name: "Planetary",
  11134. height: math.unit(12631.5689, "km")
  11135. },
  11136. ]
  11137. ))
  11138. characterMakers.push(() => makeCharacter(
  11139. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11140. {
  11141. front: {
  11142. height: math.unit(1.85, "meters"),
  11143. weight: math.unit(80, "kg"),
  11144. name: "Front",
  11145. image: {
  11146. source: "./media/characters/matvei/front.svg",
  11147. extra: 614 / 594,
  11148. bottom: 0.01
  11149. }
  11150. },
  11151. },
  11152. [
  11153. {
  11154. name: "Normal",
  11155. height: math.unit(1.85, "meters"),
  11156. default: true
  11157. },
  11158. ]
  11159. ))
  11160. characterMakers.push(() => makeCharacter(
  11161. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11162. {
  11163. front: {
  11164. height: math.unit(5 + 9 / 12, "feet"),
  11165. weight: math.unit(70, "lb"),
  11166. name: "Front",
  11167. image: {
  11168. source: "./media/characters/quincy/front.svg",
  11169. extra: 3041 / 2751
  11170. }
  11171. },
  11172. back: {
  11173. height: math.unit(5 + 9 / 12, "feet"),
  11174. weight: math.unit(70, "lb"),
  11175. name: "Back",
  11176. image: {
  11177. source: "./media/characters/quincy/back.svg",
  11178. extra: 3041 / 2751
  11179. }
  11180. },
  11181. flying: {
  11182. height: math.unit(5 + 4 / 12, "feet"),
  11183. weight: math.unit(70, "lb"),
  11184. name: "Flying",
  11185. image: {
  11186. source: "./media/characters/quincy/flying.svg",
  11187. extra: 1044 / 930
  11188. }
  11189. },
  11190. },
  11191. [
  11192. {
  11193. name: "Micro",
  11194. height: math.unit(3, "cm")
  11195. },
  11196. {
  11197. name: "Normal",
  11198. height: math.unit(5 + 9 / 12, "feet")
  11199. },
  11200. {
  11201. name: "Macro",
  11202. height: math.unit(200, "meters"),
  11203. default: true
  11204. },
  11205. {
  11206. name: "Megamacro",
  11207. height: math.unit(1000, "meters")
  11208. },
  11209. ]
  11210. ))
  11211. characterMakers.push(() => makeCharacter(
  11212. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11213. {
  11214. front: {
  11215. height: math.unit(4 + 7 / 12, "feet"),
  11216. weight: math.unit(50, "lb"),
  11217. name: "Front",
  11218. image: {
  11219. source: "./media/characters/vanrel/front.svg",
  11220. extra: 1,
  11221. bottom: 0.02
  11222. }
  11223. },
  11224. frontAlt: {
  11225. height: math.unit(4 + 7 / 12, "feet"),
  11226. weight: math.unit(50, "lb"),
  11227. name: "Front-alt",
  11228. image: {
  11229. source: "./media/characters/vanrel/front-alt.svg",
  11230. extra: 1,
  11231. bottom: 15/1511
  11232. }
  11233. },
  11234. elemental: {
  11235. height: math.unit(3, "feet"),
  11236. weight: math.unit(50, "lb"),
  11237. name: "Elemental",
  11238. image: {
  11239. source: "./media/characters/vanrel/elemental.svg",
  11240. extra: 192.3 / 162.8,
  11241. bottom: 1.79 / 194.17
  11242. }
  11243. },
  11244. side: {
  11245. height: math.unit(4 + 7 / 12, "feet"),
  11246. weight: math.unit(50, "lb"),
  11247. name: "Side",
  11248. image: {
  11249. source: "./media/characters/vanrel/side.svg",
  11250. extra: 1,
  11251. bottom: 0.025
  11252. }
  11253. },
  11254. tome: {
  11255. height: math.unit(1.35, "feet"),
  11256. weight: math.unit(10, "lb"),
  11257. name: "Vanrel's Tome",
  11258. rename: true,
  11259. image: {
  11260. source: "./media/characters/vanrel/tome.svg"
  11261. }
  11262. },
  11263. beans: {
  11264. height: math.unit(0.89, "feet"),
  11265. name: "Beans",
  11266. image: {
  11267. source: "./media/characters/vanrel/beans.svg"
  11268. }
  11269. },
  11270. },
  11271. [
  11272. {
  11273. name: "Normal",
  11274. height: math.unit(4 + 7 / 12, "feet"),
  11275. default: true
  11276. },
  11277. ]
  11278. ))
  11279. characterMakers.push(() => makeCharacter(
  11280. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11281. {
  11282. front: {
  11283. height: math.unit(7 + 5 / 12, "feet"),
  11284. weight: math.unit(150, "lb"),
  11285. name: "Front",
  11286. image: {
  11287. source: "./media/characters/kuiper-vanrel/front.svg",
  11288. extra: 1118 / 1068,
  11289. bottom: 0.09
  11290. }
  11291. },
  11292. foot: {
  11293. height: math.unit(0.55, "meters"),
  11294. name: "Foot",
  11295. image: {
  11296. source: "./media/characters/kuiper-vanrel/foot.svg",
  11297. }
  11298. },
  11299. battle: {
  11300. height: math.unit(6.824, "feet"),
  11301. weight: math.unit(150, "lb"),
  11302. name: "Battle",
  11303. image: {
  11304. source: "./media/characters/kuiper-vanrel/battle.svg",
  11305. extra: 1466 / 1327,
  11306. bottom: 29 / 1492.5
  11307. }
  11308. },
  11309. battleAlt: {
  11310. height: math.unit(6.824, "feet"),
  11311. weight: math.unit(150, "lb"),
  11312. name: "Battle (Alt)",
  11313. image: {
  11314. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11315. extra: 2081 / 1965,
  11316. bottom: 40 / 2121
  11317. }
  11318. },
  11319. },
  11320. [
  11321. {
  11322. name: "Normal",
  11323. height: math.unit(7 + 5 / 12, "feet"),
  11324. default: true
  11325. },
  11326. ]
  11327. ))
  11328. characterMakers.push(() => makeCharacter(
  11329. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11330. {
  11331. front: {
  11332. height: math.unit(8 + 5 / 12, "feet"),
  11333. weight: math.unit(150, "lb"),
  11334. name: "Front",
  11335. image: {
  11336. source: "./media/characters/keset-vanrel/front.svg",
  11337. extra: 1150 / 1084,
  11338. bottom: 0.05
  11339. }
  11340. },
  11341. hand: {
  11342. height: math.unit(0.6, "meters"),
  11343. name: "Hand",
  11344. image: {
  11345. source: "./media/characters/keset-vanrel/hand.svg"
  11346. }
  11347. },
  11348. foot: {
  11349. height: math.unit(0.94978, "meters"),
  11350. name: "Foot",
  11351. image: {
  11352. source: "./media/characters/keset-vanrel/foot.svg"
  11353. }
  11354. },
  11355. battle: {
  11356. height: math.unit(7.408, "feet"),
  11357. weight: math.unit(150, "lb"),
  11358. name: "Battle",
  11359. image: {
  11360. source: "./media/characters/keset-vanrel/battle.svg",
  11361. extra: 1890 / 1386,
  11362. bottom: 73.28 / 1970
  11363. }
  11364. },
  11365. },
  11366. [
  11367. {
  11368. name: "Normal",
  11369. height: math.unit(8 + 5 / 12, "feet"),
  11370. default: true
  11371. },
  11372. ]
  11373. ))
  11374. characterMakers.push(() => makeCharacter(
  11375. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11376. {
  11377. front: {
  11378. height: math.unit(6, "feet"),
  11379. weight: math.unit(150, "lb"),
  11380. name: "Front",
  11381. image: {
  11382. source: "./media/characters/neos/front.svg",
  11383. extra: 1696 / 992,
  11384. bottom: 0.14
  11385. }
  11386. },
  11387. },
  11388. [
  11389. {
  11390. name: "Normal",
  11391. height: math.unit(54, "cm"),
  11392. default: true
  11393. },
  11394. {
  11395. name: "Macro",
  11396. height: math.unit(100, "m")
  11397. },
  11398. {
  11399. name: "Megamacro",
  11400. height: math.unit(10, "km")
  11401. },
  11402. {
  11403. name: "Megamacro+",
  11404. height: math.unit(100, "km")
  11405. },
  11406. {
  11407. name: "Gigamacro",
  11408. height: math.unit(100, "Mm")
  11409. },
  11410. {
  11411. name: "Teramacro",
  11412. height: math.unit(100, "Gm")
  11413. },
  11414. {
  11415. name: "Examacro",
  11416. height: math.unit(100, "Em")
  11417. },
  11418. {
  11419. name: "Godly",
  11420. height: math.unit(10000, "Ym")
  11421. },
  11422. {
  11423. name: "Beyond Godly",
  11424. height: math.unit(25, "multiverses")
  11425. },
  11426. ]
  11427. ))
  11428. characterMakers.push(() => makeCharacter(
  11429. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11430. {
  11431. feminine: {
  11432. height: math.unit(5, "feet"),
  11433. weight: math.unit(100, "lb"),
  11434. name: "Feminine",
  11435. image: {
  11436. source: "./media/characters/sammy-mouse/feminine.svg",
  11437. extra: 2526 / 2425,
  11438. bottom: 0.123
  11439. }
  11440. },
  11441. masculine: {
  11442. height: math.unit(5, "feet"),
  11443. weight: math.unit(100, "lb"),
  11444. name: "Masculine",
  11445. image: {
  11446. source: "./media/characters/sammy-mouse/masculine.svg",
  11447. extra: 2526 / 2425,
  11448. bottom: 0.123
  11449. }
  11450. },
  11451. },
  11452. [
  11453. {
  11454. name: "Micro",
  11455. height: math.unit(5, "inches")
  11456. },
  11457. {
  11458. name: "Normal",
  11459. height: math.unit(5, "feet"),
  11460. default: true
  11461. },
  11462. {
  11463. name: "Macro",
  11464. height: math.unit(60, "feet")
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11470. {
  11471. front: {
  11472. height: math.unit(4, "feet"),
  11473. weight: math.unit(50, "lb"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/kole/front.svg",
  11477. extra: 1423 / 1303,
  11478. bottom: 0.025
  11479. }
  11480. },
  11481. back: {
  11482. height: math.unit(4, "feet"),
  11483. weight: math.unit(50, "lb"),
  11484. name: "Back",
  11485. image: {
  11486. source: "./media/characters/kole/back.svg",
  11487. extra: 1426 / 1280,
  11488. bottom: 0.02
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Normal",
  11495. height: math.unit(4, "feet"),
  11496. default: true
  11497. },
  11498. ]
  11499. ))
  11500. characterMakers.push(() => makeCharacter(
  11501. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11502. {
  11503. front: {
  11504. height: math.unit(2 + 6 / 12, "feet"),
  11505. weight: math.unit(20, "lb"),
  11506. name: "Front",
  11507. image: {
  11508. source: "./media/characters/rufran/front.svg",
  11509. extra: 2041 / 1839,
  11510. bottom: 0.055
  11511. }
  11512. },
  11513. back: {
  11514. height: math.unit(2 + 6 / 12, "feet"),
  11515. weight: math.unit(20, "lb"),
  11516. name: "Back",
  11517. image: {
  11518. source: "./media/characters/rufran/back.svg",
  11519. extra: 2054 / 1839,
  11520. bottom: 0.01
  11521. }
  11522. },
  11523. hand: {
  11524. height: math.unit(0.2166, "meters"),
  11525. name: "Hand",
  11526. image: {
  11527. source: "./media/characters/rufran/hand.svg"
  11528. }
  11529. },
  11530. foot: {
  11531. height: math.unit(0.185, "meters"),
  11532. name: "Foot",
  11533. image: {
  11534. source: "./media/characters/rufran/foot.svg"
  11535. }
  11536. },
  11537. },
  11538. [
  11539. {
  11540. name: "Micro",
  11541. height: math.unit(1, "inch")
  11542. },
  11543. {
  11544. name: "Normal",
  11545. height: math.unit(2 + 6 / 12, "feet"),
  11546. default: true
  11547. },
  11548. {
  11549. name: "Big",
  11550. height: math.unit(60, "feet")
  11551. },
  11552. {
  11553. name: "Macro",
  11554. height: math.unit(325, "feet")
  11555. },
  11556. ]
  11557. ))
  11558. characterMakers.push(() => makeCharacter(
  11559. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11560. {
  11561. front: {
  11562. height: math.unit(0.3, "meters"),
  11563. weight: math.unit(3.5, "kg"),
  11564. name: "Front",
  11565. image: {
  11566. source: "./media/characters/chip/front.svg",
  11567. extra: 748 / 674
  11568. }
  11569. },
  11570. },
  11571. [
  11572. {
  11573. name: "Micro",
  11574. height: math.unit(1, "inch"),
  11575. default: true
  11576. },
  11577. ]
  11578. ))
  11579. characterMakers.push(() => makeCharacter(
  11580. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11581. {
  11582. side: {
  11583. height: math.unit(2.3, "meters"),
  11584. weight: math.unit(3500, "lb"),
  11585. name: "Side",
  11586. image: {
  11587. source: "./media/characters/torvid/side.svg",
  11588. extra: 1972 / 722,
  11589. bottom: 0.035
  11590. }
  11591. },
  11592. },
  11593. [
  11594. {
  11595. name: "Normal",
  11596. height: math.unit(2.3, "meters"),
  11597. default: true
  11598. },
  11599. ]
  11600. ))
  11601. characterMakers.push(() => makeCharacter(
  11602. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11603. {
  11604. front: {
  11605. height: math.unit(2, "meters"),
  11606. weight: math.unit(150.5, "kg"),
  11607. name: "Front",
  11608. image: {
  11609. source: "./media/characters/susan/front.svg",
  11610. extra: 693 / 635,
  11611. bottom: 0.05
  11612. }
  11613. },
  11614. },
  11615. [
  11616. {
  11617. name: "Megamacro",
  11618. height: math.unit(505, "miles"),
  11619. default: true
  11620. },
  11621. ]
  11622. ))
  11623. characterMakers.push(() => makeCharacter(
  11624. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11625. {
  11626. front: {
  11627. height: math.unit(6, "feet"),
  11628. weight: math.unit(150, "lb"),
  11629. name: "Front",
  11630. image: {
  11631. source: "./media/characters/raindrops/front.svg",
  11632. extra: 2655 / 2461,
  11633. bottom: 49 / 2705
  11634. }
  11635. },
  11636. back: {
  11637. height: math.unit(6, "feet"),
  11638. weight: math.unit(150, "lb"),
  11639. name: "Back",
  11640. image: {
  11641. source: "./media/characters/raindrops/back.svg",
  11642. extra: 2574 / 2400,
  11643. bottom: 65 / 2634
  11644. }
  11645. },
  11646. },
  11647. [
  11648. {
  11649. name: "Micro",
  11650. height: math.unit(6, "inches")
  11651. },
  11652. {
  11653. name: "Normal",
  11654. height: math.unit(6 + 2 / 12, "feet")
  11655. },
  11656. {
  11657. name: "Macro",
  11658. height: math.unit(131, "feet"),
  11659. default: true
  11660. },
  11661. {
  11662. name: "Megamacro",
  11663. height: math.unit(15, "miles")
  11664. },
  11665. {
  11666. name: "Gigamacro",
  11667. height: math.unit(4000, "miles")
  11668. },
  11669. {
  11670. name: "Teramacro",
  11671. height: math.unit(315000, "miles")
  11672. },
  11673. ]
  11674. ))
  11675. characterMakers.push(() => makeCharacter(
  11676. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11677. {
  11678. front: {
  11679. height: math.unit(2.794, "meters"),
  11680. weight: math.unit(325, "kg"),
  11681. name: "Front",
  11682. image: {
  11683. source: "./media/characters/tezwa/front.svg",
  11684. extra: 2083 / 1906,
  11685. bottom: 0.031
  11686. }
  11687. },
  11688. foot: {
  11689. height: math.unit(0.687, "meters"),
  11690. name: "Foot",
  11691. image: {
  11692. source: "./media/characters/tezwa/foot.svg"
  11693. }
  11694. },
  11695. },
  11696. [
  11697. {
  11698. name: "Normal",
  11699. height: math.unit(9 + 2 / 12, "feet"),
  11700. default: true
  11701. },
  11702. ]
  11703. ))
  11704. characterMakers.push(() => makeCharacter(
  11705. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11706. {
  11707. front: {
  11708. height: math.unit(58, "feet"),
  11709. weight: math.unit(89000, "lb"),
  11710. name: "Front",
  11711. image: {
  11712. source: "./media/characters/typhus/front.svg",
  11713. extra: 816 / 800,
  11714. bottom: 0.065
  11715. }
  11716. },
  11717. },
  11718. [
  11719. {
  11720. name: "Macro",
  11721. height: math.unit(58, "feet"),
  11722. default: true
  11723. },
  11724. ]
  11725. ))
  11726. characterMakers.push(() => makeCharacter(
  11727. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11728. {
  11729. front: {
  11730. height: math.unit(12, "feet"),
  11731. weight: math.unit(6, "tonnes"),
  11732. name: "Front",
  11733. image: {
  11734. source: "./media/characters/lyra-von-wulf/front.svg",
  11735. extra: 1,
  11736. bottom: 0.10
  11737. }
  11738. },
  11739. frontMecha: {
  11740. height: math.unit(12, "feet"),
  11741. weight: math.unit(12, "tonnes"),
  11742. name: "Front (Mecha)",
  11743. image: {
  11744. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11745. extra: 1,
  11746. bottom: 0.042
  11747. }
  11748. },
  11749. maw: {
  11750. height: math.unit(2.2, "feet"),
  11751. name: "Maw",
  11752. image: {
  11753. source: "./media/characters/lyra-von-wulf/maw.svg"
  11754. }
  11755. },
  11756. },
  11757. [
  11758. {
  11759. name: "Normal",
  11760. height: math.unit(12, "feet"),
  11761. default: true
  11762. },
  11763. {
  11764. name: "Classic",
  11765. height: math.unit(50, "feet")
  11766. },
  11767. {
  11768. name: "Macro",
  11769. height: math.unit(500, "feet")
  11770. },
  11771. {
  11772. name: "Megamacro",
  11773. height: math.unit(1, "mile")
  11774. },
  11775. {
  11776. name: "Gigamacro",
  11777. height: math.unit(400, "miles")
  11778. },
  11779. {
  11780. name: "Teramacro",
  11781. height: math.unit(22000, "miles")
  11782. },
  11783. {
  11784. name: "Solarmacro",
  11785. height: math.unit(8600000, "miles")
  11786. },
  11787. {
  11788. name: "Galactic",
  11789. height: math.unit(1057000, "lightyears")
  11790. },
  11791. ]
  11792. ))
  11793. characterMakers.push(() => makeCharacter(
  11794. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11795. {
  11796. front: {
  11797. height: math.unit(6 + 10 / 12, "feet"),
  11798. weight: math.unit(150, "lb"),
  11799. name: "Front",
  11800. image: {
  11801. source: "./media/characters/dixon/front.svg",
  11802. extra: 3361 / 3209,
  11803. bottom: 0.01
  11804. }
  11805. },
  11806. },
  11807. [
  11808. {
  11809. name: "Normal",
  11810. height: math.unit(6 + 10 / 12, "feet"),
  11811. default: true
  11812. },
  11813. {
  11814. name: "Big",
  11815. height: math.unit(12, "meters")
  11816. },
  11817. {
  11818. name: "Macro",
  11819. height: math.unit(500, "meters")
  11820. },
  11821. {
  11822. name: "Megamacro",
  11823. height: math.unit(2, "km")
  11824. },
  11825. ]
  11826. ))
  11827. characterMakers.push(() => makeCharacter(
  11828. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11829. {
  11830. front: {
  11831. height: math.unit(185, "cm"),
  11832. weight: math.unit(68, "kg"),
  11833. name: "Front",
  11834. image: {
  11835. source: "./media/characters/kauko/front.svg",
  11836. extra: 1455 / 1421,
  11837. bottom: 0.03
  11838. }
  11839. },
  11840. back: {
  11841. height: math.unit(185, "cm"),
  11842. weight: math.unit(68, "kg"),
  11843. name: "Back",
  11844. image: {
  11845. source: "./media/characters/kauko/back.svg",
  11846. extra: 1455 / 1421,
  11847. bottom: 0.004
  11848. }
  11849. },
  11850. },
  11851. [
  11852. {
  11853. name: "Normal",
  11854. height: math.unit(185, "cm"),
  11855. default: true
  11856. },
  11857. ]
  11858. ))
  11859. characterMakers.push(() => makeCharacter(
  11860. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11861. {
  11862. front: {
  11863. height: math.unit(6, "feet"),
  11864. weight: math.unit(150, "kg"),
  11865. name: "Front",
  11866. image: {
  11867. source: "./media/characters/varg/front.svg",
  11868. extra: 1108 / 1018,
  11869. bottom: 0.0375
  11870. }
  11871. },
  11872. },
  11873. [
  11874. {
  11875. name: "Normal",
  11876. height: math.unit(5, "meters")
  11877. },
  11878. {
  11879. name: "Macro",
  11880. height: math.unit(200, "meters")
  11881. },
  11882. {
  11883. name: "Megamacro",
  11884. height: math.unit(20, "kilometers")
  11885. },
  11886. {
  11887. name: "True Size",
  11888. height: math.unit(211, "km"),
  11889. default: true
  11890. },
  11891. {
  11892. name: "Gigamacro",
  11893. height: math.unit(1000, "km")
  11894. },
  11895. {
  11896. name: "Gigamacro+",
  11897. height: math.unit(8000, "km")
  11898. },
  11899. {
  11900. name: "Teramacro",
  11901. height: math.unit(1000000, "km")
  11902. },
  11903. ]
  11904. ))
  11905. characterMakers.push(() => makeCharacter(
  11906. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11907. {
  11908. front: {
  11909. height: math.unit(7 + 7 / 12, "feet"),
  11910. weight: math.unit(267, "lb"),
  11911. name: "Front",
  11912. image: {
  11913. source: "./media/characters/dayza/front.svg",
  11914. extra: 1262 / 1200,
  11915. bottom: 0.035
  11916. }
  11917. },
  11918. side: {
  11919. height: math.unit(7 + 7 / 12, "feet"),
  11920. weight: math.unit(267, "lb"),
  11921. name: "Side",
  11922. image: {
  11923. source: "./media/characters/dayza/side.svg",
  11924. extra: 1295 / 1245,
  11925. bottom: 0.05
  11926. }
  11927. },
  11928. back: {
  11929. height: math.unit(7 + 7 / 12, "feet"),
  11930. weight: math.unit(267, "lb"),
  11931. name: "Back",
  11932. image: {
  11933. source: "./media/characters/dayza/back.svg",
  11934. extra: 1241 / 1170
  11935. }
  11936. },
  11937. },
  11938. [
  11939. {
  11940. name: "Normal",
  11941. height: math.unit(7 + 7 / 12, "feet"),
  11942. default: true
  11943. },
  11944. {
  11945. name: "Macro",
  11946. height: math.unit(155, "feet")
  11947. },
  11948. ]
  11949. ))
  11950. characterMakers.push(() => makeCharacter(
  11951. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11952. {
  11953. front: {
  11954. height: math.unit(6 + 5 / 12, "feet"),
  11955. weight: math.unit(160, "lb"),
  11956. name: "Front",
  11957. image: {
  11958. source: "./media/characters/xanthos/front.svg",
  11959. extra: 1,
  11960. bottom: 0.04
  11961. }
  11962. },
  11963. back: {
  11964. height: math.unit(6 + 5 / 12, "feet"),
  11965. weight: math.unit(160, "lb"),
  11966. name: "Back",
  11967. image: {
  11968. source: "./media/characters/xanthos/back.svg",
  11969. extra: 1,
  11970. bottom: 0.03
  11971. }
  11972. },
  11973. hand: {
  11974. height: math.unit(0.928, "feet"),
  11975. name: "Hand",
  11976. image: {
  11977. source: "./media/characters/xanthos/hand.svg"
  11978. }
  11979. },
  11980. foot: {
  11981. height: math.unit(1.286, "feet"),
  11982. name: "Foot",
  11983. image: {
  11984. source: "./media/characters/xanthos/foot.svg"
  11985. }
  11986. },
  11987. },
  11988. [
  11989. {
  11990. name: "Normal",
  11991. height: math.unit(6 + 5 / 12, "feet"),
  11992. default: true
  11993. },
  11994. {
  11995. name: "Normal+",
  11996. height: math.unit(6, "meters")
  11997. },
  11998. {
  11999. name: "Macro",
  12000. height: math.unit(40, "feet")
  12001. },
  12002. {
  12003. name: "Macro+",
  12004. height: math.unit(200, "meters")
  12005. },
  12006. {
  12007. name: "Megamacro",
  12008. height: math.unit(20, "km")
  12009. },
  12010. {
  12011. name: "Megamacro+",
  12012. height: math.unit(100, "km")
  12013. },
  12014. ]
  12015. ))
  12016. characterMakers.push(() => makeCharacter(
  12017. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12018. {
  12019. front: {
  12020. height: math.unit(6 + 3 / 12, "feet"),
  12021. weight: math.unit(215, "lb"),
  12022. name: "Front",
  12023. image: {
  12024. source: "./media/characters/grynn/front.svg",
  12025. extra: 4627 / 4209,
  12026. bottom: 0.047
  12027. }
  12028. },
  12029. },
  12030. [
  12031. {
  12032. name: "Micro",
  12033. height: math.unit(6, "inches")
  12034. },
  12035. {
  12036. name: "Normal",
  12037. height: math.unit(6 + 3 / 12, "feet"),
  12038. default: true
  12039. },
  12040. {
  12041. name: "Big",
  12042. height: math.unit(104, "feet")
  12043. },
  12044. {
  12045. name: "Macro",
  12046. height: math.unit(944, "feet")
  12047. },
  12048. {
  12049. name: "Macro+",
  12050. height: math.unit(9480, "feet")
  12051. },
  12052. {
  12053. name: "Megamacro",
  12054. height: math.unit(78752, "feet")
  12055. },
  12056. {
  12057. name: "Megamacro+",
  12058. height: math.unit(630128, "feet")
  12059. },
  12060. {
  12061. name: "Megamacro++",
  12062. height: math.unit(3150695, "feet")
  12063. },
  12064. ]
  12065. ))
  12066. characterMakers.push(() => makeCharacter(
  12067. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12068. {
  12069. front: {
  12070. height: math.unit(7 + 5 / 12, "feet"),
  12071. weight: math.unit(450, "lb"),
  12072. name: "Front",
  12073. image: {
  12074. source: "./media/characters/mocha-aura/front.svg",
  12075. extra: 1907 / 1817,
  12076. bottom: 0.04
  12077. }
  12078. },
  12079. back: {
  12080. height: math.unit(7 + 5 / 12, "feet"),
  12081. weight: math.unit(450, "lb"),
  12082. name: "Back",
  12083. image: {
  12084. source: "./media/characters/mocha-aura/back.svg",
  12085. extra: 1900 / 1825,
  12086. bottom: 0.045
  12087. }
  12088. },
  12089. },
  12090. [
  12091. {
  12092. name: "Nano",
  12093. height: math.unit(1, "nm")
  12094. },
  12095. {
  12096. name: "Megamicro",
  12097. height: math.unit(1, "mm")
  12098. },
  12099. {
  12100. name: "Micro",
  12101. height: math.unit(3, "inches")
  12102. },
  12103. {
  12104. name: "Normal",
  12105. height: math.unit(7 + 5 / 12, "feet"),
  12106. default: true
  12107. },
  12108. {
  12109. name: "Macro",
  12110. height: math.unit(30, "feet")
  12111. },
  12112. {
  12113. name: "Megamacro",
  12114. height: math.unit(3500, "feet")
  12115. },
  12116. {
  12117. name: "Teramacro",
  12118. height: math.unit(500000, "miles")
  12119. },
  12120. {
  12121. name: "Petamacro",
  12122. height: math.unit(50000000000000000, "parsecs")
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(6, "feet"),
  12131. weight: math.unit(150, "lb"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/ilisha-devya/front.svg",
  12135. extra: 1,
  12136. bottom: 0.175
  12137. }
  12138. },
  12139. back: {
  12140. height: math.unit(6, "feet"),
  12141. weight: math.unit(150, "lb"),
  12142. name: "Back",
  12143. image: {
  12144. source: "./media/characters/ilisha-devya/back.svg",
  12145. extra: 1,
  12146. bottom: 0.015
  12147. }
  12148. },
  12149. },
  12150. [
  12151. {
  12152. name: "Macro",
  12153. height: math.unit(500, "feet"),
  12154. default: true
  12155. },
  12156. {
  12157. name: "Megamacro",
  12158. height: math.unit(10, "miles")
  12159. },
  12160. {
  12161. name: "Gigamacro",
  12162. height: math.unit(100000, "miles")
  12163. },
  12164. {
  12165. name: "Examacro",
  12166. height: math.unit(1e9, "lightyears")
  12167. },
  12168. {
  12169. name: "Omniversal",
  12170. height: math.unit(1e33, "lightyears")
  12171. },
  12172. {
  12173. name: "Beyond Infinite",
  12174. height: math.unit(1e100, "lightyears")
  12175. },
  12176. ]
  12177. ))
  12178. characterMakers.push(() => makeCharacter(
  12179. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12180. {
  12181. Side: {
  12182. height: math.unit(6, "feet"),
  12183. weight: math.unit(150, "lb"),
  12184. name: "Side",
  12185. image: {
  12186. source: "./media/characters/mira/side.svg",
  12187. extra: 900 / 799,
  12188. bottom: 0.02
  12189. }
  12190. },
  12191. },
  12192. [
  12193. {
  12194. name: "Human Size",
  12195. height: math.unit(6, "feet")
  12196. },
  12197. {
  12198. name: "Macro",
  12199. height: math.unit(100, "feet"),
  12200. default: true
  12201. },
  12202. {
  12203. name: "Megamacro",
  12204. height: math.unit(10, "miles")
  12205. },
  12206. {
  12207. name: "Gigamacro",
  12208. height: math.unit(25000, "miles")
  12209. },
  12210. {
  12211. name: "Teramacro",
  12212. height: math.unit(300, "AU")
  12213. },
  12214. {
  12215. name: "Full Size",
  12216. height: math.unit(4.5e10, "lightyears")
  12217. },
  12218. ]
  12219. ))
  12220. characterMakers.push(() => makeCharacter(
  12221. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12222. {
  12223. front: {
  12224. height: math.unit(6, "feet"),
  12225. weight: math.unit(150, "lb"),
  12226. name: "Front",
  12227. image: {
  12228. source: "./media/characters/holly/front.svg",
  12229. extra: 639 / 606
  12230. }
  12231. },
  12232. back: {
  12233. height: math.unit(6, "feet"),
  12234. weight: math.unit(150, "lb"),
  12235. name: "Back",
  12236. image: {
  12237. source: "./media/characters/holly/back.svg",
  12238. extra: 623 / 598
  12239. }
  12240. },
  12241. frontWorking: {
  12242. height: math.unit(6, "feet"),
  12243. weight: math.unit(150, "lb"),
  12244. name: "Front (Working)",
  12245. image: {
  12246. source: "./media/characters/holly/front-working.svg",
  12247. extra: 607 / 577,
  12248. bottom: 0.048
  12249. }
  12250. },
  12251. },
  12252. [
  12253. {
  12254. name: "Normal",
  12255. height: math.unit(12 + 3 / 12, "feet"),
  12256. default: true
  12257. },
  12258. ]
  12259. ))
  12260. characterMakers.push(() => makeCharacter(
  12261. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12262. {
  12263. front: {
  12264. height: math.unit(6, "feet"),
  12265. weight: math.unit(150, "lb"),
  12266. name: "Front",
  12267. image: {
  12268. source: "./media/characters/porter/front.svg",
  12269. extra: 1,
  12270. bottom: 0.01
  12271. }
  12272. },
  12273. frontRobes: {
  12274. height: math.unit(6, "feet"),
  12275. weight: math.unit(150, "lb"),
  12276. name: "Front (Robes)",
  12277. image: {
  12278. source: "./media/characters/porter/front-robes.svg",
  12279. extra: 1.01,
  12280. bottom: 0.01
  12281. }
  12282. },
  12283. },
  12284. [
  12285. {
  12286. name: "Normal",
  12287. height: math.unit(11 + 9 / 12, "feet"),
  12288. default: true
  12289. },
  12290. ]
  12291. ))
  12292. characterMakers.push(() => makeCharacter(
  12293. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12294. {
  12295. legendary: {
  12296. height: math.unit(6, "feet"),
  12297. weight: math.unit(150, "lb"),
  12298. name: "Legendary",
  12299. image: {
  12300. source: "./media/characters/lucy/legendary.svg",
  12301. extra: 1355 / 1100,
  12302. bottom: 0.045
  12303. }
  12304. },
  12305. },
  12306. [
  12307. {
  12308. name: "Legendary",
  12309. height: math.unit(86882 * 2, "miles"),
  12310. default: true
  12311. },
  12312. ]
  12313. ))
  12314. characterMakers.push(() => makeCharacter(
  12315. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12316. {
  12317. front: {
  12318. height: math.unit(6, "feet"),
  12319. weight: math.unit(150, "lb"),
  12320. name: "Front",
  12321. image: {
  12322. source: "./media/characters/drusilla/front.svg",
  12323. extra: 678 / 635,
  12324. bottom: 0.03
  12325. }
  12326. },
  12327. back: {
  12328. height: math.unit(6, "feet"),
  12329. weight: math.unit(150, "lb"),
  12330. name: "Back",
  12331. image: {
  12332. source: "./media/characters/drusilla/back.svg",
  12333. extra: 678 / 635,
  12334. bottom: 0.005
  12335. }
  12336. },
  12337. },
  12338. [
  12339. {
  12340. name: "Macro",
  12341. height: math.unit(100, "feet")
  12342. },
  12343. {
  12344. name: "Canon Height",
  12345. height: math.unit(2000, "feet"),
  12346. default: true
  12347. },
  12348. ]
  12349. ))
  12350. characterMakers.push(() => makeCharacter(
  12351. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12352. {
  12353. front: {
  12354. height: math.unit(6, "feet"),
  12355. weight: math.unit(180, "lb"),
  12356. name: "Front",
  12357. image: {
  12358. source: "./media/characters/renard-thatch/front.svg",
  12359. extra: 2411 / 2275,
  12360. bottom: 0.01
  12361. }
  12362. },
  12363. frontPosing: {
  12364. height: math.unit(6, "feet"),
  12365. weight: math.unit(180, "lb"),
  12366. name: "Front (Posing)",
  12367. image: {
  12368. source: "./media/characters/renard-thatch/front-posing.svg",
  12369. extra: 2381 / 2261,
  12370. bottom: 0.01
  12371. }
  12372. },
  12373. back: {
  12374. height: math.unit(6, "feet"),
  12375. weight: math.unit(180, "lb"),
  12376. name: "Back",
  12377. image: {
  12378. source: "./media/characters/renard-thatch/back.svg",
  12379. extra: 2428 / 2288
  12380. }
  12381. },
  12382. },
  12383. [
  12384. {
  12385. name: "Micro",
  12386. height: math.unit(3, "inches")
  12387. },
  12388. {
  12389. name: "Default",
  12390. height: math.unit(6, "feet"),
  12391. default: true
  12392. },
  12393. {
  12394. name: "Macro",
  12395. height: math.unit(75, "feet")
  12396. },
  12397. ]
  12398. ))
  12399. characterMakers.push(() => makeCharacter(
  12400. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12401. {
  12402. front: {
  12403. height: math.unit(1450, "feet"),
  12404. weight: math.unit(1.21e6, "tons"),
  12405. name: "Front",
  12406. image: {
  12407. source: "./media/characters/sekvra/front.svg",
  12408. extra: 1,
  12409. bottom: 0.03
  12410. }
  12411. },
  12412. frontClothed: {
  12413. height: math.unit(1450, "feet"),
  12414. weight: math.unit(1.21e6, "tons"),
  12415. name: "Front (Clothed)",
  12416. image: {
  12417. source: "./media/characters/sekvra/front-clothed.svg",
  12418. extra: 1,
  12419. bottom: 0.03
  12420. }
  12421. },
  12422. side: {
  12423. height: math.unit(1450, "feet"),
  12424. weight: math.unit(1.21e6, "tons"),
  12425. name: "Side",
  12426. image: {
  12427. source: "./media/characters/sekvra/side.svg",
  12428. extra: 1,
  12429. bottom: 0.025
  12430. }
  12431. },
  12432. back: {
  12433. height: math.unit(1450, "feet"),
  12434. weight: math.unit(1.21e6, "tons"),
  12435. name: "Back",
  12436. image: {
  12437. source: "./media/characters/sekvra/back.svg",
  12438. extra: 1,
  12439. bottom: 0.005
  12440. }
  12441. },
  12442. },
  12443. [
  12444. {
  12445. name: "Macro",
  12446. height: math.unit(1450, "feet"),
  12447. default: true
  12448. },
  12449. {
  12450. name: "Megamacro",
  12451. height: math.unit(15000, "feet")
  12452. },
  12453. ]
  12454. ))
  12455. characterMakers.push(() => makeCharacter(
  12456. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12457. {
  12458. front: {
  12459. height: math.unit(6, "feet"),
  12460. weight: math.unit(150, "lb"),
  12461. name: "Front",
  12462. image: {
  12463. source: "./media/characters/carmine/front.svg",
  12464. extra: 1,
  12465. bottom: 0.035
  12466. }
  12467. },
  12468. frontArmor: {
  12469. height: math.unit(6, "feet"),
  12470. weight: math.unit(150, "lb"),
  12471. name: "Front (Armor)",
  12472. image: {
  12473. source: "./media/characters/carmine/front-armor.svg",
  12474. extra: 1,
  12475. bottom: 0.035
  12476. }
  12477. },
  12478. },
  12479. [
  12480. {
  12481. name: "Large",
  12482. height: math.unit(1, "mile")
  12483. },
  12484. {
  12485. name: "Huge",
  12486. height: math.unit(40, "miles"),
  12487. default: true
  12488. },
  12489. {
  12490. name: "Colossal",
  12491. height: math.unit(2500, "miles")
  12492. },
  12493. ]
  12494. ))
  12495. characterMakers.push(() => makeCharacter(
  12496. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12497. {
  12498. front: {
  12499. height: math.unit(6, "feet"),
  12500. weight: math.unit(150, "lb"),
  12501. name: "Front",
  12502. image: {
  12503. source: "./media/characters/elyssia/front.svg",
  12504. extra: 2201 / 2035,
  12505. bottom: 0.05
  12506. }
  12507. },
  12508. frontClothed: {
  12509. height: math.unit(6, "feet"),
  12510. weight: math.unit(150, "lb"),
  12511. name: "Front (Clothed)",
  12512. image: {
  12513. source: "./media/characters/elyssia/front-clothed.svg",
  12514. extra: 2201 / 2035,
  12515. bottom: 0.05
  12516. }
  12517. },
  12518. back: {
  12519. height: math.unit(6, "feet"),
  12520. weight: math.unit(150, "lb"),
  12521. name: "Back",
  12522. image: {
  12523. source: "./media/characters/elyssia/back.svg",
  12524. extra: 2201 / 2035,
  12525. bottom: 0.013
  12526. }
  12527. },
  12528. },
  12529. [
  12530. {
  12531. name: "Smaller",
  12532. height: math.unit(150, "feet")
  12533. },
  12534. {
  12535. name: "Standard",
  12536. height: math.unit(1400, "feet"),
  12537. default: true
  12538. },
  12539. {
  12540. name: "Distracted",
  12541. height: math.unit(15000, "feet")
  12542. },
  12543. ]
  12544. ))
  12545. characterMakers.push(() => makeCharacter(
  12546. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12547. {
  12548. front: {
  12549. height: math.unit(7 + 4 / 12, "feet"),
  12550. weight: math.unit(500, "lb"),
  12551. name: "Front",
  12552. image: {
  12553. source: "./media/characters/geno-maxwell/front.svg",
  12554. extra: 2207 / 2040,
  12555. bottom: 0.015
  12556. }
  12557. },
  12558. },
  12559. [
  12560. {
  12561. name: "Micro",
  12562. height: math.unit(3, "inches")
  12563. },
  12564. {
  12565. name: "Normal",
  12566. height: math.unit(7 + 4 / 12, "feet"),
  12567. default: true
  12568. },
  12569. {
  12570. name: "Macro",
  12571. height: math.unit(220, "feet")
  12572. },
  12573. {
  12574. name: "Megamacro",
  12575. height: math.unit(11, "miles")
  12576. },
  12577. ]
  12578. ))
  12579. characterMakers.push(() => makeCharacter(
  12580. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12581. {
  12582. front: {
  12583. height: math.unit(7 + 4 / 12, "feet"),
  12584. weight: math.unit(500, "lb"),
  12585. name: "Front",
  12586. image: {
  12587. source: "./media/characters/regena-maxwell/front.svg",
  12588. extra: 3115 / 2770,
  12589. bottom: 0.02
  12590. }
  12591. },
  12592. },
  12593. [
  12594. {
  12595. name: "Normal",
  12596. height: math.unit(7 + 4 / 12, "feet"),
  12597. default: true
  12598. },
  12599. {
  12600. name: "Macro",
  12601. height: math.unit(220, "feet")
  12602. },
  12603. {
  12604. name: "Megamacro",
  12605. height: math.unit(11, "miles")
  12606. },
  12607. ]
  12608. ))
  12609. characterMakers.push(() => makeCharacter(
  12610. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12611. {
  12612. front: {
  12613. height: math.unit(6, "feet"),
  12614. weight: math.unit(150, "lb"),
  12615. name: "Front",
  12616. image: {
  12617. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12618. extra: 860 / 690,
  12619. bottom: 0.03
  12620. }
  12621. },
  12622. },
  12623. [
  12624. {
  12625. name: "Normal",
  12626. height: math.unit(1.7, "meters"),
  12627. default: true
  12628. },
  12629. ]
  12630. ))
  12631. characterMakers.push(() => makeCharacter(
  12632. { name: "Quilly", species: ["quilava"], 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/quilly/front.svg",
  12640. extra: 890 / 776
  12641. }
  12642. },
  12643. },
  12644. [
  12645. {
  12646. name: "Gigamacro",
  12647. height: math.unit(404090, "miles"),
  12648. default: true
  12649. },
  12650. ]
  12651. ))
  12652. characterMakers.push(() => makeCharacter(
  12653. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12654. {
  12655. front: {
  12656. height: math.unit(7 + 8 / 12, "feet"),
  12657. weight: math.unit(350, "lb"),
  12658. name: "Front",
  12659. image: {
  12660. source: "./media/characters/tempest/front.svg",
  12661. extra: 1175 / 1086,
  12662. bottom: 0.02
  12663. }
  12664. },
  12665. },
  12666. [
  12667. {
  12668. name: "Normal",
  12669. height: math.unit(7 + 8 / 12, "feet"),
  12670. default: true
  12671. },
  12672. ]
  12673. ))
  12674. characterMakers.push(() => makeCharacter(
  12675. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12676. {
  12677. side: {
  12678. height: math.unit(4 + 5 / 12, "feet"),
  12679. weight: math.unit(80, "lb"),
  12680. name: "Side",
  12681. image: {
  12682. source: "./media/characters/rodger/side.svg",
  12683. extra: 1235 / 1118
  12684. }
  12685. },
  12686. },
  12687. [
  12688. {
  12689. name: "Micro",
  12690. height: math.unit(1, "inch")
  12691. },
  12692. {
  12693. name: "Normal",
  12694. height: math.unit(4 + 5 / 12, "feet"),
  12695. default: true
  12696. },
  12697. {
  12698. name: "Macro",
  12699. height: math.unit(120, "feet")
  12700. },
  12701. ]
  12702. ))
  12703. characterMakers.push(() => makeCharacter(
  12704. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12705. {
  12706. front: {
  12707. height: math.unit(6, "feet"),
  12708. weight: math.unit(150, "lb"),
  12709. name: "Front",
  12710. image: {
  12711. source: "./media/characters/danyel/front.svg",
  12712. extra: 1185 / 1123,
  12713. bottom: 0.05
  12714. }
  12715. },
  12716. },
  12717. [
  12718. {
  12719. name: "Shrunken",
  12720. height: math.unit(0.5, "mm")
  12721. },
  12722. {
  12723. name: "Micro",
  12724. height: math.unit(1, "mm"),
  12725. default: true
  12726. },
  12727. {
  12728. name: "Upsized",
  12729. height: math.unit(5 + 5 / 12, "feet")
  12730. },
  12731. ]
  12732. ))
  12733. characterMakers.push(() => makeCharacter(
  12734. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12735. {
  12736. front: {
  12737. height: math.unit(5 + 6 / 12, "feet"),
  12738. weight: math.unit(200, "lb"),
  12739. name: "Front",
  12740. image: {
  12741. source: "./media/characters/vivian-bijoux/front.svg",
  12742. extra: 1,
  12743. bottom: 0.072
  12744. }
  12745. },
  12746. },
  12747. [
  12748. {
  12749. name: "Normal",
  12750. height: math.unit(5 + 6 / 12, "feet"),
  12751. default: true
  12752. },
  12753. {
  12754. name: "Bad Dream",
  12755. height: math.unit(500, "feet")
  12756. },
  12757. {
  12758. name: "Nightmare",
  12759. height: math.unit(500, "miles")
  12760. },
  12761. ]
  12762. ))
  12763. characterMakers.push(() => makeCharacter(
  12764. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12765. {
  12766. front: {
  12767. height: math.unit(6 + 1 / 12, "feet"),
  12768. weight: math.unit(260, "lb"),
  12769. name: "Front",
  12770. image: {
  12771. source: "./media/characters/zeta/front.svg",
  12772. extra: 1968 / 1889,
  12773. bottom: 0.06
  12774. }
  12775. },
  12776. back: {
  12777. height: math.unit(6 + 1 / 12, "feet"),
  12778. weight: math.unit(260, "lb"),
  12779. name: "Back",
  12780. image: {
  12781. source: "./media/characters/zeta/back.svg",
  12782. extra: 1944 / 1858,
  12783. bottom: 0.03
  12784. }
  12785. },
  12786. hand: {
  12787. height: math.unit(1.112, "feet"),
  12788. name: "Hand",
  12789. image: {
  12790. source: "./media/characters/zeta/hand.svg"
  12791. }
  12792. },
  12793. foot: {
  12794. height: math.unit(1.48, "feet"),
  12795. name: "Foot",
  12796. image: {
  12797. source: "./media/characters/zeta/foot.svg"
  12798. }
  12799. },
  12800. },
  12801. [
  12802. {
  12803. name: "Micro",
  12804. height: math.unit(6, "inches")
  12805. },
  12806. {
  12807. name: "Normal",
  12808. height: math.unit(6 + 1 / 12, "feet"),
  12809. default: true
  12810. },
  12811. {
  12812. name: "Macro",
  12813. height: math.unit(20, "feet")
  12814. },
  12815. ]
  12816. ))
  12817. characterMakers.push(() => makeCharacter(
  12818. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12819. {
  12820. front: {
  12821. height: math.unit(6, "feet"),
  12822. weight: math.unit(150, "lb"),
  12823. name: "Front",
  12824. image: {
  12825. source: "./media/characters/jamie-larsen/front.svg",
  12826. extra: 962 / 933,
  12827. bottom: 0.02
  12828. }
  12829. },
  12830. back: {
  12831. height: math.unit(6, "feet"),
  12832. weight: math.unit(150, "lb"),
  12833. name: "Back",
  12834. image: {
  12835. source: "./media/characters/jamie-larsen/back.svg",
  12836. extra: 997 / 946
  12837. }
  12838. },
  12839. },
  12840. [
  12841. {
  12842. name: "Macro",
  12843. height: math.unit(28 + 7 / 12, "feet"),
  12844. default: true
  12845. },
  12846. {
  12847. name: "Macro+",
  12848. height: math.unit(180, "feet")
  12849. },
  12850. {
  12851. name: "Megamacro",
  12852. height: math.unit(10, "miles")
  12853. },
  12854. {
  12855. name: "Gigamacro",
  12856. height: math.unit(200000, "miles")
  12857. },
  12858. ]
  12859. ))
  12860. characterMakers.push(() => makeCharacter(
  12861. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12862. {
  12863. front: {
  12864. height: math.unit(6, "feet"),
  12865. weight: math.unit(120, "lb"),
  12866. name: "Front",
  12867. image: {
  12868. source: "./media/characters/vance/front.svg",
  12869. extra: 1980 / 1890,
  12870. bottom: 0.09
  12871. }
  12872. },
  12873. back: {
  12874. height: math.unit(6, "feet"),
  12875. weight: math.unit(120, "lb"),
  12876. name: "Back",
  12877. image: {
  12878. source: "./media/characters/vance/back.svg",
  12879. extra: 2081 / 1994,
  12880. bottom: 0.014
  12881. }
  12882. },
  12883. hand: {
  12884. height: math.unit(0.88, "feet"),
  12885. name: "Hand",
  12886. image: {
  12887. source: "./media/characters/vance/hand.svg"
  12888. }
  12889. },
  12890. foot: {
  12891. height: math.unit(0.64, "feet"),
  12892. name: "Foot",
  12893. image: {
  12894. source: "./media/characters/vance/foot.svg"
  12895. }
  12896. },
  12897. },
  12898. [
  12899. {
  12900. name: "Small",
  12901. height: math.unit(90, "feet"),
  12902. default: true
  12903. },
  12904. {
  12905. name: "Macro",
  12906. height: math.unit(100, "meters")
  12907. },
  12908. {
  12909. name: "Megamacro",
  12910. height: math.unit(15, "miles")
  12911. },
  12912. ]
  12913. ))
  12914. characterMakers.push(() => makeCharacter(
  12915. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12916. {
  12917. front: {
  12918. height: math.unit(6, "feet"),
  12919. weight: math.unit(180, "lb"),
  12920. name: "Front",
  12921. image: {
  12922. source: "./media/characters/xochitl/front.svg",
  12923. extra: 2297 / 2261,
  12924. bottom: 0.065
  12925. }
  12926. },
  12927. back: {
  12928. height: math.unit(6, "feet"),
  12929. weight: math.unit(180, "lb"),
  12930. name: "Back",
  12931. image: {
  12932. source: "./media/characters/xochitl/back.svg",
  12933. extra: 2386 / 2354,
  12934. bottom: 0.01
  12935. }
  12936. },
  12937. foot: {
  12938. height: math.unit(6 / 5 * 1.15, "feet"),
  12939. weight: math.unit(150, "lb"),
  12940. name: "Foot",
  12941. image: {
  12942. source: "./media/characters/xochitl/foot.svg"
  12943. }
  12944. },
  12945. },
  12946. [
  12947. {
  12948. name: "Macro",
  12949. height: math.unit(80, "feet")
  12950. },
  12951. {
  12952. name: "Macro+",
  12953. height: math.unit(400, "feet"),
  12954. default: true
  12955. },
  12956. {
  12957. name: "Gigamacro",
  12958. height: math.unit(80000, "miles")
  12959. },
  12960. {
  12961. name: "Gigamacro+",
  12962. height: math.unit(400000, "miles")
  12963. },
  12964. {
  12965. name: "Teramacro",
  12966. height: math.unit(300, "AU")
  12967. },
  12968. ]
  12969. ))
  12970. characterMakers.push(() => makeCharacter(
  12971. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12972. {
  12973. front: {
  12974. height: math.unit(6, "feet"),
  12975. weight: math.unit(150, "lb"),
  12976. name: "Front",
  12977. image: {
  12978. source: "./media/characters/vincent/front.svg",
  12979. extra: 1130 / 1080,
  12980. bottom: 0.055
  12981. }
  12982. },
  12983. beak: {
  12984. height: math.unit(6 * 0.1, "feet"),
  12985. name: "Beak",
  12986. image: {
  12987. source: "./media/characters/vincent/beak.svg"
  12988. }
  12989. },
  12990. hand: {
  12991. height: math.unit(6 * 0.85, "feet"),
  12992. weight: math.unit(150, "lb"),
  12993. name: "Hand",
  12994. image: {
  12995. source: "./media/characters/vincent/hand.svg"
  12996. }
  12997. },
  12998. foot: {
  12999. height: math.unit(6 * 0.19, "feet"),
  13000. weight: math.unit(150, "lb"),
  13001. name: "Foot",
  13002. image: {
  13003. source: "./media/characters/vincent/foot.svg"
  13004. }
  13005. },
  13006. },
  13007. [
  13008. {
  13009. name: "Base",
  13010. height: math.unit(6 + 5 / 12, "feet"),
  13011. default: true
  13012. },
  13013. {
  13014. name: "Macro",
  13015. height: math.unit(300, "feet")
  13016. },
  13017. {
  13018. name: "Megamacro",
  13019. height: math.unit(2, "miles")
  13020. },
  13021. {
  13022. name: "Gigamacro",
  13023. height: math.unit(1000, "miles")
  13024. },
  13025. ]
  13026. ))
  13027. characterMakers.push(() => makeCharacter(
  13028. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13029. {
  13030. front: {
  13031. height: math.unit(6 + 2 / 12, "feet"),
  13032. weight: math.unit(265, "lb"),
  13033. name: "Front",
  13034. image: {
  13035. source: "./media/characters/jay/front.svg",
  13036. extra: 1510 / 1430,
  13037. bottom: 0.042
  13038. }
  13039. },
  13040. back: {
  13041. height: math.unit(6 + 2 / 12, "feet"),
  13042. weight: math.unit(265, "lb"),
  13043. name: "Back",
  13044. image: {
  13045. source: "./media/characters/jay/back.svg",
  13046. extra: 1510 / 1430,
  13047. bottom: 0.025
  13048. }
  13049. },
  13050. clothed: {
  13051. height: math.unit(6 + 2 / 12, "feet"),
  13052. weight: math.unit(265, "lb"),
  13053. name: "Front (Clothed)",
  13054. image: {
  13055. source: "./media/characters/jay/clothed.svg",
  13056. extra: 744 / 699,
  13057. bottom: 0.043
  13058. }
  13059. },
  13060. head: {
  13061. height: math.unit(1.772, "feet"),
  13062. name: "Head",
  13063. image: {
  13064. source: "./media/characters/jay/head.svg"
  13065. }
  13066. },
  13067. sizeRay: {
  13068. height: math.unit(1.331, "feet"),
  13069. name: "Size Ray",
  13070. image: {
  13071. source: "./media/characters/jay/size-ray.svg"
  13072. }
  13073. },
  13074. },
  13075. [
  13076. {
  13077. name: "Micro",
  13078. height: math.unit(1, "inch")
  13079. },
  13080. {
  13081. name: "Normal",
  13082. height: math.unit(6 + 2 / 12, "feet"),
  13083. default: true
  13084. },
  13085. {
  13086. name: "Macro",
  13087. height: math.unit(1, "mile")
  13088. },
  13089. {
  13090. name: "Megamacro",
  13091. height: math.unit(100, "miles")
  13092. },
  13093. ]
  13094. ))
  13095. characterMakers.push(() => makeCharacter(
  13096. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13097. {
  13098. front: {
  13099. height: math.unit(2, "meters"),
  13100. weight: math.unit(500, "kg"),
  13101. name: "Front",
  13102. image: {
  13103. source: "./media/characters/coatl/front.svg",
  13104. extra: 3948 / 3500,
  13105. bottom: 0.082
  13106. }
  13107. },
  13108. },
  13109. [
  13110. {
  13111. name: "Normal",
  13112. height: math.unit(4, "meters")
  13113. },
  13114. {
  13115. name: "Macro",
  13116. height: math.unit(100, "meters"),
  13117. default: true
  13118. },
  13119. {
  13120. name: "Macro+",
  13121. height: math.unit(300, "meters")
  13122. },
  13123. {
  13124. name: "Megamacro",
  13125. height: math.unit(3, "gigameters")
  13126. },
  13127. {
  13128. name: "Megamacro+",
  13129. height: math.unit(300, "terameters")
  13130. },
  13131. {
  13132. name: "Megamacro++",
  13133. height: math.unit(3, "lightyears")
  13134. },
  13135. ]
  13136. ))
  13137. characterMakers.push(() => makeCharacter(
  13138. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13139. {
  13140. front: {
  13141. height: math.unit(6, "feet"),
  13142. weight: math.unit(50, "kg"),
  13143. name: "front",
  13144. image: {
  13145. source: "./media/characters/shiroryu/front.svg",
  13146. extra: 1990 / 1935
  13147. }
  13148. },
  13149. },
  13150. [
  13151. {
  13152. name: "Mortal Mingling",
  13153. height: math.unit(3, "meters")
  13154. },
  13155. {
  13156. name: "Kaiju-ish",
  13157. height: math.unit(250, "meters")
  13158. },
  13159. {
  13160. name: "Somewhat Godly",
  13161. height: math.unit(400, "km"),
  13162. default: true
  13163. },
  13164. {
  13165. name: "Planetary",
  13166. height: math.unit(300, "megameters")
  13167. },
  13168. {
  13169. name: "Galaxy-dwarfing",
  13170. height: math.unit(450, "kiloparsecs")
  13171. },
  13172. {
  13173. name: "Universe Eater",
  13174. height: math.unit(150, "gigaparsecs")
  13175. },
  13176. {
  13177. name: "Almost Immeasurable",
  13178. height: math.unit(1.3e266, "yottaparsecs")
  13179. },
  13180. ]
  13181. ))
  13182. characterMakers.push(() => makeCharacter(
  13183. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13184. {
  13185. front: {
  13186. height: math.unit(6, "feet"),
  13187. weight: math.unit(150, "lb"),
  13188. name: "Front",
  13189. image: {
  13190. source: "./media/characters/umeko/front.svg",
  13191. extra: 1,
  13192. bottom: 0.019
  13193. }
  13194. },
  13195. frontArmored: {
  13196. height: math.unit(6, "feet"),
  13197. weight: math.unit(150, "lb"),
  13198. name: "Front (Armored)",
  13199. image: {
  13200. source: "./media/characters/umeko/front-armored.svg",
  13201. extra: 1,
  13202. bottom: 0.021
  13203. }
  13204. },
  13205. },
  13206. [
  13207. {
  13208. name: "Macro",
  13209. height: math.unit(220, "feet"),
  13210. default: true
  13211. },
  13212. {
  13213. name: "Guardian Dragon",
  13214. height: math.unit(50, "miles")
  13215. },
  13216. {
  13217. name: "Cosmic",
  13218. height: math.unit(800000, "miles")
  13219. },
  13220. ]
  13221. ))
  13222. characterMakers.push(() => makeCharacter(
  13223. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13224. {
  13225. front: {
  13226. height: math.unit(6, "feet"),
  13227. weight: math.unit(150, "lb"),
  13228. name: "Front",
  13229. image: {
  13230. source: "./media/characters/cassidy/front.svg",
  13231. extra: 1,
  13232. bottom: 0.043
  13233. }
  13234. },
  13235. },
  13236. [
  13237. {
  13238. name: "Canon Height",
  13239. height: math.unit(120, "feet"),
  13240. default: true
  13241. },
  13242. {
  13243. name: "Macro+",
  13244. height: math.unit(400, "feet")
  13245. },
  13246. {
  13247. name: "Macro++",
  13248. height: math.unit(4000, "feet")
  13249. },
  13250. {
  13251. name: "Megamacro",
  13252. height: math.unit(3, "miles")
  13253. },
  13254. ]
  13255. ))
  13256. characterMakers.push(() => makeCharacter(
  13257. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13258. {
  13259. front: {
  13260. height: math.unit(6, "feet"),
  13261. weight: math.unit(150, "lb"),
  13262. name: "Front",
  13263. image: {
  13264. source: "./media/characters/isaac/front.svg",
  13265. extra: 896 / 815,
  13266. bottom: 0.11
  13267. }
  13268. },
  13269. },
  13270. [
  13271. {
  13272. name: "Human Size",
  13273. height: math.unit(8, "feet"),
  13274. default: true
  13275. },
  13276. {
  13277. name: "Macro",
  13278. height: math.unit(400, "feet")
  13279. },
  13280. {
  13281. name: "Megamacro",
  13282. height: math.unit(50, "miles")
  13283. },
  13284. {
  13285. name: "Canon Height",
  13286. height: math.unit(200, "AU")
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13292. {
  13293. front: {
  13294. height: math.unit(6, "feet"),
  13295. weight: math.unit(72, "kg"),
  13296. name: "Front",
  13297. image: {
  13298. source: "./media/characters/sleekit/front.svg",
  13299. extra: 4693 / 4487,
  13300. bottom: 0.012
  13301. }
  13302. },
  13303. },
  13304. [
  13305. {
  13306. name: "Minimum Height",
  13307. height: math.unit(10, "meters")
  13308. },
  13309. {
  13310. name: "Smaller",
  13311. height: math.unit(25, "meters")
  13312. },
  13313. {
  13314. name: "Larger",
  13315. height: math.unit(38, "meters"),
  13316. default: true
  13317. },
  13318. {
  13319. name: "Maximum height",
  13320. height: math.unit(100, "meters")
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13326. {
  13327. front: {
  13328. height: math.unit(6, "feet"),
  13329. weight: math.unit(150, "lb"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/nillia/front.svg",
  13333. extra: 2195 / 2037,
  13334. bottom: 0.005
  13335. }
  13336. },
  13337. back: {
  13338. height: math.unit(6, "feet"),
  13339. weight: math.unit(150, "lb"),
  13340. name: "Back",
  13341. image: {
  13342. source: "./media/characters/nillia/back.svg",
  13343. extra: 2195 / 2037,
  13344. bottom: 0.005
  13345. }
  13346. },
  13347. },
  13348. [
  13349. {
  13350. name: "Canon Height",
  13351. height: math.unit(489, "feet"),
  13352. default: true
  13353. }
  13354. ]
  13355. ))
  13356. characterMakers.push(() => makeCharacter(
  13357. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13358. {
  13359. front: {
  13360. height: math.unit(6, "feet"),
  13361. weight: math.unit(150, "lb"),
  13362. name: "Front",
  13363. image: {
  13364. source: "./media/characters/mesmyriza/front.svg",
  13365. extra: 2067 / 1784,
  13366. bottom: 0.035
  13367. }
  13368. },
  13369. foot: {
  13370. height: math.unit(6 / (250 / 35), "feet"),
  13371. name: "Foot",
  13372. image: {
  13373. source: "./media/characters/mesmyriza/foot.svg"
  13374. }
  13375. },
  13376. },
  13377. [
  13378. {
  13379. name: "Macro",
  13380. height: math.unit(457, "meters"),
  13381. default: true
  13382. },
  13383. {
  13384. name: "Megamacro",
  13385. height: math.unit(8, "megameters")
  13386. },
  13387. ]
  13388. ))
  13389. characterMakers.push(() => makeCharacter(
  13390. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13391. {
  13392. front: {
  13393. height: math.unit(6, "feet"),
  13394. weight: math.unit(250, "lb"),
  13395. name: "Front",
  13396. image: {
  13397. source: "./media/characters/saudade/front.svg",
  13398. extra: 1172 / 1139,
  13399. bottom: 0.035
  13400. }
  13401. },
  13402. },
  13403. [
  13404. {
  13405. name: "Micro",
  13406. height: math.unit(3, "inches")
  13407. },
  13408. {
  13409. name: "Normal",
  13410. height: math.unit(6, "feet"),
  13411. default: true
  13412. },
  13413. {
  13414. name: "Macro",
  13415. height: math.unit(50, "feet")
  13416. },
  13417. {
  13418. name: "Megamacro",
  13419. height: math.unit(2800, "feet")
  13420. },
  13421. ]
  13422. ))
  13423. characterMakers.push(() => makeCharacter(
  13424. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13425. {
  13426. front: {
  13427. height: math.unit(5 + 4 / 12, "feet"),
  13428. weight: math.unit(100, "lb"),
  13429. name: "Front",
  13430. image: {
  13431. source: "./media/characters/keireer/front.svg",
  13432. extra: 716 / 666,
  13433. bottom: 0.05
  13434. }
  13435. },
  13436. },
  13437. [
  13438. {
  13439. name: "Normal",
  13440. height: math.unit(5 + 4 / 12, "feet"),
  13441. default: true
  13442. },
  13443. ]
  13444. ))
  13445. characterMakers.push(() => makeCharacter(
  13446. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13447. {
  13448. front: {
  13449. height: math.unit(6, "feet"),
  13450. weight: math.unit(90, "kg"),
  13451. name: "Front",
  13452. image: {
  13453. source: "./media/characters/mirja/front.svg",
  13454. extra: 1789 / 1683,
  13455. bottom: 0.05
  13456. }
  13457. },
  13458. frontDressed: {
  13459. height: math.unit(6, "feet"),
  13460. weight: math.unit(90, "lb"),
  13461. name: "Front (Dressed)",
  13462. image: {
  13463. source: "./media/characters/mirja/front-dressed.svg",
  13464. extra: 1789 / 1683,
  13465. bottom: 0.05
  13466. }
  13467. },
  13468. back: {
  13469. height: math.unit(6, "feet"),
  13470. weight: math.unit(90, "lb"),
  13471. name: "Back",
  13472. image: {
  13473. source: "./media/characters/mirja/back.svg",
  13474. extra: 953 / 917,
  13475. bottom: 0.017
  13476. }
  13477. },
  13478. },
  13479. [
  13480. {
  13481. name: "\"Incognito\"",
  13482. height: math.unit(3, "meters")
  13483. },
  13484. {
  13485. name: "Strolling Size",
  13486. height: math.unit(15, "km")
  13487. },
  13488. {
  13489. name: "Larger Strolling Size",
  13490. height: math.unit(400, "km")
  13491. },
  13492. {
  13493. name: "Preferred Size",
  13494. height: math.unit(5000, "km")
  13495. },
  13496. {
  13497. name: "True Size",
  13498. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13499. default: true
  13500. },
  13501. ]
  13502. ))
  13503. characterMakers.push(() => makeCharacter(
  13504. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13505. {
  13506. front: {
  13507. height: math.unit(15, "feet"),
  13508. weight: math.unit(880, "kg"),
  13509. name: "Front",
  13510. image: {
  13511. source: "./media/characters/nightraver/front.svg",
  13512. extra: 2444 / 2160,
  13513. bottom: 0.027
  13514. }
  13515. },
  13516. back: {
  13517. height: math.unit(15, "feet"),
  13518. weight: math.unit(880, "kg"),
  13519. name: "Back",
  13520. image: {
  13521. source: "./media/characters/nightraver/back.svg",
  13522. extra: 2309 / 2180,
  13523. bottom: 0.005
  13524. }
  13525. },
  13526. sole: {
  13527. height: math.unit(2.878, "feet"),
  13528. name: "Sole",
  13529. image: {
  13530. source: "./media/characters/nightraver/sole.svg"
  13531. }
  13532. },
  13533. foot: {
  13534. height: math.unit(2.285, "feet"),
  13535. name: "Foot",
  13536. image: {
  13537. source: "./media/characters/nightraver/foot.svg"
  13538. }
  13539. },
  13540. maw: {
  13541. height: math.unit(2.67, "feet"),
  13542. name: "Maw",
  13543. image: {
  13544. source: "./media/characters/nightraver/maw.svg"
  13545. }
  13546. },
  13547. },
  13548. [
  13549. {
  13550. name: "Micro",
  13551. height: math.unit(1, "cm")
  13552. },
  13553. {
  13554. name: "Normal",
  13555. height: math.unit(15, "feet"),
  13556. default: true
  13557. },
  13558. {
  13559. name: "Macro",
  13560. height: math.unit(300, "feet")
  13561. },
  13562. {
  13563. name: "Megamacro",
  13564. height: math.unit(300, "miles")
  13565. },
  13566. {
  13567. name: "Gigamacro",
  13568. height: math.unit(10000, "miles")
  13569. },
  13570. ]
  13571. ))
  13572. characterMakers.push(() => makeCharacter(
  13573. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13574. {
  13575. side: {
  13576. height: math.unit(2, "inches"),
  13577. weight: math.unit(5, "grams"),
  13578. name: "Side",
  13579. image: {
  13580. source: "./media/characters/arc/side.svg"
  13581. }
  13582. },
  13583. },
  13584. [
  13585. {
  13586. name: "Micro",
  13587. height: math.unit(2, "inches"),
  13588. default: true
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13594. {
  13595. front: {
  13596. height: math.unit(1.1938, "meters"),
  13597. weight: math.unit(54, "kg"),
  13598. name: "Front",
  13599. image: {
  13600. source: "./media/characters/nebula-shahar/front.svg",
  13601. extra: 1642 / 1436,
  13602. bottom: 0.06
  13603. }
  13604. },
  13605. },
  13606. [
  13607. {
  13608. name: "Megamicro",
  13609. height: math.unit(0.3, "mm")
  13610. },
  13611. {
  13612. name: "Micro",
  13613. height: math.unit(3, "cm")
  13614. },
  13615. {
  13616. name: "Normal",
  13617. height: math.unit(138, "cm"),
  13618. default: true
  13619. },
  13620. {
  13621. name: "Macro",
  13622. height: math.unit(30, "m")
  13623. },
  13624. ]
  13625. ))
  13626. characterMakers.push(() => makeCharacter(
  13627. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13628. {
  13629. front: {
  13630. height: math.unit(5.24, "feet"),
  13631. weight: math.unit(150, "lb"),
  13632. name: "Front",
  13633. image: {
  13634. source: "./media/characters/shayla/front.svg",
  13635. extra: 1512 / 1414,
  13636. bottom: 0.01
  13637. }
  13638. },
  13639. back: {
  13640. height: math.unit(5.24, "feet"),
  13641. weight: math.unit(150, "lb"),
  13642. name: "Back",
  13643. image: {
  13644. source: "./media/characters/shayla/back.svg",
  13645. extra: 1512 / 1414
  13646. }
  13647. },
  13648. hand: {
  13649. height: math.unit(0.7781496062992126, "feet"),
  13650. name: "Hand",
  13651. image: {
  13652. source: "./media/characters/shayla/hand.svg"
  13653. }
  13654. },
  13655. foot: {
  13656. height: math.unit(1.4206036745406823, "feet"),
  13657. name: "Foot",
  13658. image: {
  13659. source: "./media/characters/shayla/foot.svg"
  13660. }
  13661. },
  13662. },
  13663. [
  13664. {
  13665. name: "Micro",
  13666. height: math.unit(0.32, "feet")
  13667. },
  13668. {
  13669. name: "Normal",
  13670. height: math.unit(5.24, "feet"),
  13671. default: true
  13672. },
  13673. {
  13674. name: "Macro",
  13675. height: math.unit(492.12, "feet")
  13676. },
  13677. {
  13678. name: "Megamacro",
  13679. height: math.unit(186.41, "miles")
  13680. },
  13681. ]
  13682. ))
  13683. characterMakers.push(() => makeCharacter(
  13684. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13685. {
  13686. front: {
  13687. height: math.unit(2.2, "m"),
  13688. weight: math.unit(120, "kg"),
  13689. name: "Front",
  13690. image: {
  13691. source: "./media/characters/pia-jr/front.svg",
  13692. extra: 1000 / 970,
  13693. bottom: 0.035
  13694. }
  13695. },
  13696. hand: {
  13697. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13698. name: "Hand",
  13699. image: {
  13700. source: "./media/characters/pia-jr/hand.svg"
  13701. }
  13702. },
  13703. paw: {
  13704. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13705. name: "Paw",
  13706. image: {
  13707. source: "./media/characters/pia-jr/paw.svg"
  13708. }
  13709. },
  13710. },
  13711. [
  13712. {
  13713. name: "Micro",
  13714. height: math.unit(1.2, "cm")
  13715. },
  13716. {
  13717. name: "Normal",
  13718. height: math.unit(2.2, "m"),
  13719. default: true
  13720. },
  13721. {
  13722. name: "Macro",
  13723. height: math.unit(180, "m")
  13724. },
  13725. {
  13726. name: "Megamacro",
  13727. height: math.unit(420, "km")
  13728. },
  13729. ]
  13730. ))
  13731. characterMakers.push(() => makeCharacter(
  13732. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13733. {
  13734. front: {
  13735. height: math.unit(2, "m"),
  13736. weight: math.unit(115, "kg"),
  13737. name: "Front",
  13738. image: {
  13739. source: "./media/characters/pia-sr/front.svg",
  13740. extra: 760 / 730,
  13741. bottom: 0.015
  13742. }
  13743. },
  13744. back: {
  13745. height: math.unit(2, "m"),
  13746. weight: math.unit(115, "kg"),
  13747. name: "Back",
  13748. image: {
  13749. source: "./media/characters/pia-sr/back.svg",
  13750. extra: 760 / 730,
  13751. bottom: 0.01
  13752. }
  13753. },
  13754. hand: {
  13755. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13756. name: "Hand",
  13757. image: {
  13758. source: "./media/characters/pia-sr/hand.svg"
  13759. }
  13760. },
  13761. foot: {
  13762. height: math.unit(1.83, "feet"),
  13763. name: "Foot",
  13764. image: {
  13765. source: "./media/characters/pia-sr/foot.svg"
  13766. }
  13767. },
  13768. },
  13769. [
  13770. {
  13771. name: "Micro",
  13772. height: math.unit(88, "mm")
  13773. },
  13774. {
  13775. name: "Normal",
  13776. height: math.unit(2, "m"),
  13777. default: true
  13778. },
  13779. {
  13780. name: "Macro",
  13781. height: math.unit(200, "m")
  13782. },
  13783. {
  13784. name: "Megamacro",
  13785. height: math.unit(420, "km")
  13786. },
  13787. ]
  13788. ))
  13789. characterMakers.push(() => makeCharacter(
  13790. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13791. {
  13792. front: {
  13793. height: math.unit(8 + 2 / 12, "feet"),
  13794. weight: math.unit(300, "lb"),
  13795. name: "Front",
  13796. image: {
  13797. source: "./media/characters/kibibyte/front.svg",
  13798. extra: 2221 / 2098,
  13799. bottom: 0.04
  13800. }
  13801. },
  13802. },
  13803. [
  13804. {
  13805. name: "Normal",
  13806. height: math.unit(8 + 2 / 12, "feet"),
  13807. default: true
  13808. },
  13809. {
  13810. name: "Socialable Macro",
  13811. height: math.unit(50, "feet")
  13812. },
  13813. {
  13814. name: "Macro",
  13815. height: math.unit(300, "feet")
  13816. },
  13817. {
  13818. name: "Megamacro",
  13819. height: math.unit(500, "miles")
  13820. },
  13821. ]
  13822. ))
  13823. characterMakers.push(() => makeCharacter(
  13824. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13825. {
  13826. front: {
  13827. height: math.unit(6, "feet"),
  13828. weight: math.unit(150, "lb"),
  13829. name: "Front",
  13830. image: {
  13831. source: "./media/characters/felix/front.svg",
  13832. extra: 762 / 722,
  13833. bottom: 0.02
  13834. }
  13835. },
  13836. frontClothed: {
  13837. height: math.unit(6, "feet"),
  13838. weight: math.unit(150, "lb"),
  13839. name: "Front (Clothed)",
  13840. image: {
  13841. source: "./media/characters/felix/front-clothed.svg",
  13842. extra: 762 / 722,
  13843. bottom: 0.02
  13844. }
  13845. },
  13846. },
  13847. [
  13848. {
  13849. name: "Normal",
  13850. height: math.unit(6 + 8 / 12, "feet"),
  13851. default: true
  13852. },
  13853. {
  13854. name: "Macro",
  13855. height: math.unit(2600, "feet")
  13856. },
  13857. {
  13858. name: "Megamacro",
  13859. height: math.unit(450, "miles")
  13860. },
  13861. ]
  13862. ))
  13863. characterMakers.push(() => makeCharacter(
  13864. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13865. {
  13866. front: {
  13867. height: math.unit(6 + 1 / 12, "feet"),
  13868. weight: math.unit(250, "lb"),
  13869. name: "Front",
  13870. image: {
  13871. source: "./media/characters/tobo/front.svg",
  13872. extra: 608 / 586,
  13873. bottom: 0.023
  13874. }
  13875. },
  13876. back: {
  13877. height: math.unit(6 + 1 / 12, "feet"),
  13878. weight: math.unit(250, "lb"),
  13879. name: "Back",
  13880. image: {
  13881. source: "./media/characters/tobo/back.svg",
  13882. extra: 608 / 586
  13883. }
  13884. },
  13885. },
  13886. [
  13887. {
  13888. name: "Nano",
  13889. height: math.unit(2, "nm")
  13890. },
  13891. {
  13892. name: "Megamicro",
  13893. height: math.unit(0.1, "mm")
  13894. },
  13895. {
  13896. name: "Micro",
  13897. height: math.unit(1, "inch"),
  13898. default: true
  13899. },
  13900. {
  13901. name: "Human-sized",
  13902. height: math.unit(6 + 1 / 12, "feet")
  13903. },
  13904. {
  13905. name: "Macro",
  13906. height: math.unit(250, "feet")
  13907. },
  13908. {
  13909. name: "Megamacro",
  13910. height: math.unit(75, "miles")
  13911. },
  13912. {
  13913. name: "Texas-sized",
  13914. height: math.unit(750, "miles")
  13915. },
  13916. {
  13917. name: "Teramacro",
  13918. height: math.unit(50000, "miles")
  13919. },
  13920. ]
  13921. ))
  13922. characterMakers.push(() => makeCharacter(
  13923. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13924. {
  13925. front: {
  13926. height: math.unit(6, "feet"),
  13927. weight: math.unit(269, "lb"),
  13928. name: "Front",
  13929. image: {
  13930. source: "./media/characters/danny-kapowsky/front.svg",
  13931. extra: 766 / 736,
  13932. bottom: 0.044
  13933. }
  13934. },
  13935. back: {
  13936. height: math.unit(6, "feet"),
  13937. weight: math.unit(269, "lb"),
  13938. name: "Back",
  13939. image: {
  13940. source: "./media/characters/danny-kapowsky/back.svg",
  13941. extra: 797 / 760,
  13942. bottom: 0.025
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Macro",
  13949. height: math.unit(150, "feet"),
  13950. default: true
  13951. },
  13952. {
  13953. name: "Macro+",
  13954. height: math.unit(200, "feet")
  13955. },
  13956. {
  13957. name: "Macro++",
  13958. height: math.unit(300, "feet")
  13959. },
  13960. {
  13961. name: "Macro+++",
  13962. height: math.unit(400, "feet")
  13963. },
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13968. {
  13969. side: {
  13970. height: math.unit(6, "feet"),
  13971. weight: math.unit(170, "lb"),
  13972. name: "Side",
  13973. image: {
  13974. source: "./media/characters/finn/side.svg",
  13975. extra: 1953 / 1807,
  13976. bottom: 0.057
  13977. }
  13978. },
  13979. },
  13980. [
  13981. {
  13982. name: "Megamacro",
  13983. height: math.unit(14445, "feet"),
  13984. default: true
  13985. },
  13986. ]
  13987. ))
  13988. characterMakers.push(() => makeCharacter(
  13989. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13990. {
  13991. front: {
  13992. height: math.unit(5 + 6 / 12, "feet"),
  13993. weight: math.unit(125, "lb"),
  13994. name: "Front",
  13995. image: {
  13996. source: "./media/characters/roy/front.svg",
  13997. extra: 1,
  13998. bottom: 0.11
  13999. }
  14000. },
  14001. },
  14002. [
  14003. {
  14004. name: "Micro",
  14005. height: math.unit(3, "inches"),
  14006. default: true
  14007. },
  14008. {
  14009. name: "Normal",
  14010. height: math.unit(5 + 6 / 12, "feet")
  14011. },
  14012. {
  14013. name: "Lesser Macro",
  14014. height: math.unit(60, "feet")
  14015. },
  14016. {
  14017. name: "Greater Macro",
  14018. height: math.unit(120, "feet")
  14019. },
  14020. ]
  14021. ))
  14022. characterMakers.push(() => makeCharacter(
  14023. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14024. {
  14025. front: {
  14026. height: math.unit(6, "feet"),
  14027. weight: math.unit(100, "lb"),
  14028. name: "Front",
  14029. image: {
  14030. source: "./media/characters/aevsivs/front.svg",
  14031. extra: 1,
  14032. bottom: 0.03
  14033. }
  14034. },
  14035. back: {
  14036. height: math.unit(6, "feet"),
  14037. weight: math.unit(100, "lb"),
  14038. name: "Back",
  14039. image: {
  14040. source: "./media/characters/aevsivs/back.svg"
  14041. }
  14042. },
  14043. },
  14044. [
  14045. {
  14046. name: "Micro",
  14047. height: math.unit(2, "inches"),
  14048. default: true
  14049. },
  14050. {
  14051. name: "Normal",
  14052. height: math.unit(5, "feet")
  14053. },
  14054. ]
  14055. ))
  14056. characterMakers.push(() => makeCharacter(
  14057. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14058. {
  14059. front: {
  14060. height: math.unit(5 + 7 / 12, "feet"),
  14061. weight: math.unit(159, "lb"),
  14062. name: "Front",
  14063. image: {
  14064. source: "./media/characters/hildegard/front.svg",
  14065. extra: 289 / 269,
  14066. bottom: 7.63 / 297.8
  14067. }
  14068. },
  14069. back: {
  14070. height: math.unit(5 + 7 / 12, "feet"),
  14071. weight: math.unit(159, "lb"),
  14072. name: "Back",
  14073. image: {
  14074. source: "./media/characters/hildegard/back.svg",
  14075. extra: 280 / 260,
  14076. bottom: 2.3 / 282
  14077. }
  14078. },
  14079. },
  14080. [
  14081. {
  14082. name: "Normal",
  14083. height: math.unit(5 + 7 / 12, "feet"),
  14084. default: true
  14085. },
  14086. ]
  14087. ))
  14088. characterMakers.push(() => makeCharacter(
  14089. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14090. {
  14091. bernard: {
  14092. height: math.unit(2 + 7 / 12, "feet"),
  14093. weight: math.unit(66, "lb"),
  14094. name: "Bernard",
  14095. rename: true,
  14096. image: {
  14097. source: "./media/characters/bernard-wilder/bernard.svg",
  14098. extra: 192 / 128,
  14099. bottom: 0.05
  14100. }
  14101. },
  14102. wilder: {
  14103. height: math.unit(5 + 8 / 12, "feet"),
  14104. weight: math.unit(143, "lb"),
  14105. name: "Wilder",
  14106. rename: true,
  14107. image: {
  14108. source: "./media/characters/bernard-wilder/wilder.svg",
  14109. extra: 361 / 312,
  14110. bottom: 0.02
  14111. }
  14112. },
  14113. },
  14114. [
  14115. {
  14116. name: "Normal",
  14117. height: math.unit(2 + 7 / 12, "feet"),
  14118. default: true
  14119. },
  14120. ]
  14121. ))
  14122. characterMakers.push(() => makeCharacter(
  14123. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14124. {
  14125. anthro: {
  14126. height: math.unit(6 + 1 / 12, "feet"),
  14127. weight: math.unit(155, "lb"),
  14128. name: "Anthro",
  14129. image: {
  14130. source: "./media/characters/hearth/anthro.svg",
  14131. extra: 260 / 250,
  14132. bottom: 0.02
  14133. }
  14134. },
  14135. feral: {
  14136. height: math.unit(3.78, "feet"),
  14137. weight: math.unit(35, "kg"),
  14138. name: "Feral",
  14139. image: {
  14140. source: "./media/characters/hearth/feral.svg",
  14141. extra: 153 / 135,
  14142. bottom: 0.03
  14143. }
  14144. },
  14145. },
  14146. [
  14147. {
  14148. name: "Normal",
  14149. height: math.unit(6 + 1 / 12, "feet"),
  14150. default: true
  14151. },
  14152. ]
  14153. ))
  14154. characterMakers.push(() => makeCharacter(
  14155. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14156. {
  14157. front: {
  14158. height: math.unit(6, "feet"),
  14159. weight: math.unit(182, "lb"),
  14160. name: "Front",
  14161. image: {
  14162. source: "./media/characters/ingrid/front.svg",
  14163. extra: 294 / 268,
  14164. bottom: 0.027
  14165. }
  14166. },
  14167. },
  14168. [
  14169. {
  14170. name: "Normal",
  14171. height: math.unit(6, "feet"),
  14172. default: true
  14173. },
  14174. ]
  14175. ))
  14176. characterMakers.push(() => makeCharacter(
  14177. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14178. {
  14179. eevee: {
  14180. height: math.unit(2 + 10 / 12, "feet"),
  14181. weight: math.unit(86, "lb"),
  14182. name: "Malgam",
  14183. image: {
  14184. source: "./media/characters/malgam/eevee.svg",
  14185. extra: 218 / 180,
  14186. bottom: 0.2
  14187. }
  14188. },
  14189. sylveon: {
  14190. height: math.unit(4, "feet"),
  14191. weight: math.unit(101, "lb"),
  14192. name: "Future Malgam",
  14193. rename: true,
  14194. image: {
  14195. source: "./media/characters/malgam/sylveon.svg",
  14196. extra: 371 / 325,
  14197. bottom: 0.015
  14198. }
  14199. },
  14200. gigantamax: {
  14201. height: math.unit(50, "feet"),
  14202. name: "Gigantamax Malgam",
  14203. rename: true,
  14204. image: {
  14205. source: "./media/characters/malgam/gigantamax.svg"
  14206. }
  14207. },
  14208. },
  14209. [
  14210. {
  14211. name: "Normal",
  14212. height: math.unit(2 + 10 / 12, "feet"),
  14213. default: true
  14214. },
  14215. ]
  14216. ))
  14217. characterMakers.push(() => makeCharacter(
  14218. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14219. {
  14220. front: {
  14221. height: math.unit(5 + 11 / 12, "feet"),
  14222. weight: math.unit(188, "lb"),
  14223. name: "Front",
  14224. image: {
  14225. source: "./media/characters/fleur/front.svg",
  14226. extra: 309 / 283,
  14227. bottom: 0.007
  14228. }
  14229. },
  14230. },
  14231. [
  14232. {
  14233. name: "Normal",
  14234. height: math.unit(5 + 11 / 12, "feet"),
  14235. default: true
  14236. },
  14237. ]
  14238. ))
  14239. characterMakers.push(() => makeCharacter(
  14240. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14241. {
  14242. front: {
  14243. height: math.unit(5 + 4 / 12, "feet"),
  14244. weight: math.unit(122, "lb"),
  14245. name: "Front",
  14246. image: {
  14247. source: "./media/characters/jude/front.svg",
  14248. extra: 288 / 273,
  14249. bottom: 0.03
  14250. }
  14251. },
  14252. },
  14253. [
  14254. {
  14255. name: "Normal",
  14256. height: math.unit(5 + 4 / 12, "feet"),
  14257. default: true
  14258. },
  14259. ]
  14260. ))
  14261. characterMakers.push(() => makeCharacter(
  14262. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14263. {
  14264. front: {
  14265. height: math.unit(5 + 11 / 12, "feet"),
  14266. weight: math.unit(190, "lb"),
  14267. name: "Front",
  14268. image: {
  14269. source: "./media/characters/seara/front.svg",
  14270. extra: 1,
  14271. bottom: 0.05
  14272. }
  14273. },
  14274. },
  14275. [
  14276. {
  14277. name: "Normal",
  14278. height: math.unit(5 + 11 / 12, "feet"),
  14279. default: true
  14280. },
  14281. ]
  14282. ))
  14283. characterMakers.push(() => makeCharacter(
  14284. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14285. {
  14286. front: {
  14287. height: math.unit(16 + 5 / 12, "feet"),
  14288. weight: math.unit(524, "lb"),
  14289. name: "Front",
  14290. image: {
  14291. source: "./media/characters/caspian/front.svg",
  14292. extra: 1,
  14293. bottom: 0.04
  14294. }
  14295. },
  14296. },
  14297. [
  14298. {
  14299. name: "Normal",
  14300. height: math.unit(16 + 5 / 12, "feet"),
  14301. default: true
  14302. },
  14303. ]
  14304. ))
  14305. characterMakers.push(() => makeCharacter(
  14306. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14307. {
  14308. front: {
  14309. height: math.unit(5 + 7 / 12, "feet"),
  14310. weight: math.unit(170, "lb"),
  14311. name: "Front",
  14312. image: {
  14313. source: "./media/characters/mika/front.svg",
  14314. extra: 1,
  14315. bottom: 0.016
  14316. }
  14317. },
  14318. },
  14319. [
  14320. {
  14321. name: "Normal",
  14322. height: math.unit(5 + 7 / 12, "feet"),
  14323. default: true
  14324. },
  14325. ]
  14326. ))
  14327. characterMakers.push(() => makeCharacter(
  14328. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14329. {
  14330. front: {
  14331. height: math.unit(6 + 2 / 12, "feet"),
  14332. weight: math.unit(268, "lb"),
  14333. name: "Front",
  14334. image: {
  14335. source: "./media/characters/sol/front.svg",
  14336. extra: 247 / 231,
  14337. bottom: 0.05
  14338. }
  14339. },
  14340. },
  14341. [
  14342. {
  14343. name: "Normal",
  14344. height: math.unit(6 + 2 / 12, "feet"),
  14345. default: true
  14346. },
  14347. ]
  14348. ))
  14349. characterMakers.push(() => makeCharacter(
  14350. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14351. {
  14352. buizel: {
  14353. height: math.unit(2 + 5 / 12, "feet"),
  14354. weight: math.unit(87, "lb"),
  14355. name: "Buizel",
  14356. image: {
  14357. source: "./media/characters/umiko/buizel.svg",
  14358. extra: 172 / 157,
  14359. bottom: 0.01
  14360. }
  14361. },
  14362. floatzel: {
  14363. height: math.unit(5 + 9 / 12, "feet"),
  14364. weight: math.unit(250, "lb"),
  14365. name: "Floatzel",
  14366. image: {
  14367. source: "./media/characters/umiko/floatzel.svg",
  14368. extra: 262 / 248
  14369. }
  14370. },
  14371. },
  14372. [
  14373. {
  14374. name: "Normal",
  14375. height: math.unit(2 + 5 / 12, "feet"),
  14376. default: true
  14377. },
  14378. ]
  14379. ))
  14380. characterMakers.push(() => makeCharacter(
  14381. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14382. {
  14383. front: {
  14384. height: math.unit(6 + 2 / 12, "feet"),
  14385. weight: math.unit(146, "lb"),
  14386. name: "Front",
  14387. image: {
  14388. source: "./media/characters/iliac/front.svg",
  14389. extra: 389 / 365,
  14390. bottom: 0.035
  14391. }
  14392. },
  14393. },
  14394. [
  14395. {
  14396. name: "Normal",
  14397. height: math.unit(6 + 2 / 12, "feet"),
  14398. default: true
  14399. },
  14400. ]
  14401. ))
  14402. characterMakers.push(() => makeCharacter(
  14403. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14404. {
  14405. front: {
  14406. height: math.unit(6, "feet"),
  14407. weight: math.unit(170, "lb"),
  14408. name: "Front",
  14409. image: {
  14410. source: "./media/characters/topaz/front.svg",
  14411. extra: 317 / 303,
  14412. bottom: 0.055
  14413. }
  14414. },
  14415. },
  14416. [
  14417. {
  14418. name: "Normal",
  14419. height: math.unit(6, "feet"),
  14420. default: true
  14421. },
  14422. ]
  14423. ))
  14424. characterMakers.push(() => makeCharacter(
  14425. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14426. {
  14427. front: {
  14428. height: math.unit(5 + 11 / 12, "feet"),
  14429. weight: math.unit(144, "lb"),
  14430. name: "Front",
  14431. image: {
  14432. source: "./media/characters/gabriel/front.svg",
  14433. extra: 285 / 262,
  14434. bottom: 0.004
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Normal",
  14441. height: math.unit(5 + 11 / 12, "feet"),
  14442. default: true
  14443. },
  14444. ]
  14445. ))
  14446. characterMakers.push(() => makeCharacter(
  14447. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14448. {
  14449. side: {
  14450. height: math.unit(6 + 5 / 12, "feet"),
  14451. weight: math.unit(300, "lb"),
  14452. name: "Side",
  14453. image: {
  14454. source: "./media/characters/tempest-suicune/side.svg",
  14455. extra: 195 / 154,
  14456. bottom: 0.04
  14457. }
  14458. },
  14459. },
  14460. [
  14461. {
  14462. name: "Normal",
  14463. height: math.unit(6 + 5 / 12, "feet"),
  14464. default: true
  14465. },
  14466. ]
  14467. ))
  14468. characterMakers.push(() => makeCharacter(
  14469. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14470. {
  14471. front: {
  14472. height: math.unit(7 + 2 / 12, "feet"),
  14473. weight: math.unit(322, "lb"),
  14474. name: "Front",
  14475. image: {
  14476. source: "./media/characters/vulcan/front.svg",
  14477. extra: 154 / 147,
  14478. bottom: 0.04
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Normal",
  14485. height: math.unit(7 + 2 / 12, "feet"),
  14486. default: true
  14487. },
  14488. ]
  14489. ))
  14490. characterMakers.push(() => makeCharacter(
  14491. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14492. {
  14493. front: {
  14494. height: math.unit(5 + 10 / 12, "feet"),
  14495. weight: math.unit(264, "lb"),
  14496. name: "Front",
  14497. image: {
  14498. source: "./media/characters/gault/front.svg",
  14499. extra: 161 / 140,
  14500. bottom: 0.028
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Normal",
  14507. height: math.unit(5 + 10 / 12, "feet"),
  14508. default: true
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14514. {
  14515. front: {
  14516. height: math.unit(6, "feet"),
  14517. weight: math.unit(150, "lb"),
  14518. name: "Front",
  14519. image: {
  14520. source: "./media/characters/shard/front.svg",
  14521. extra: 273 / 238,
  14522. bottom: 0.02
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Normal",
  14529. height: math.unit(3 + 6 / 12, "feet"),
  14530. default: true
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14536. {
  14537. front: {
  14538. height: math.unit(5 + 11 / 12, "feet"),
  14539. weight: math.unit(146, "lb"),
  14540. name: "Front",
  14541. image: {
  14542. source: "./media/characters/ashe/front.svg",
  14543. extra: 400 / 373,
  14544. bottom: 0.01
  14545. }
  14546. },
  14547. },
  14548. [
  14549. {
  14550. name: "Normal",
  14551. height: math.unit(5 + 11 / 12, "feet"),
  14552. default: true
  14553. },
  14554. ]
  14555. ))
  14556. characterMakers.push(() => makeCharacter(
  14557. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14558. {
  14559. front: {
  14560. height: math.unit(5 + 5 / 12, "feet"),
  14561. weight: math.unit(135, "lb"),
  14562. name: "Front",
  14563. image: {
  14564. source: "./media/characters/beatrix/front.svg",
  14565. extra: 392 / 379,
  14566. bottom: 0.01
  14567. }
  14568. },
  14569. },
  14570. [
  14571. {
  14572. name: "Normal",
  14573. height: math.unit(6, "feet"),
  14574. default: true
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14580. {
  14581. front: {
  14582. height: math.unit(6, "feet"),
  14583. weight: math.unit(150, "lb"),
  14584. name: "Front",
  14585. image: {
  14586. source: "./media/characters/ignatius/front.svg",
  14587. extra: 245 / 222,
  14588. bottom: 0.01
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Normal",
  14595. height: math.unit(5 + 5 / 12, "feet"),
  14596. default: true
  14597. },
  14598. ]
  14599. ))
  14600. characterMakers.push(() => makeCharacter(
  14601. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14602. {
  14603. front: {
  14604. height: math.unit(6 + 2 / 12, "feet"),
  14605. weight: math.unit(138, "lb"),
  14606. name: "Front",
  14607. image: {
  14608. source: "./media/characters/mei-li/front.svg",
  14609. extra: 237 / 229,
  14610. bottom: 0.03
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Normal",
  14617. height: math.unit(6 + 2 / 12, "feet"),
  14618. default: true
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(2 + 4 / 12, "feet"),
  14627. weight: math.unit(62, "lb"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/puru/front.svg",
  14631. extra: 206 / 149,
  14632. bottom: 0.06
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Normal",
  14639. height: math.unit(2 + 4 / 12, "feet"),
  14640. default: true
  14641. },
  14642. ]
  14643. ))
  14644. characterMakers.push(() => makeCharacter(
  14645. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14646. {
  14647. taur: {
  14648. height: math.unit(11, "feet"),
  14649. weight: math.unit(500, "lb"),
  14650. name: "Taur",
  14651. image: {
  14652. source: "./media/characters/kee/taur.svg",
  14653. extra: 1,
  14654. bottom: 0.04
  14655. }
  14656. },
  14657. },
  14658. [
  14659. {
  14660. name: "Normal",
  14661. height: math.unit(11, "feet"),
  14662. default: true
  14663. },
  14664. ]
  14665. ))
  14666. characterMakers.push(() => makeCharacter(
  14667. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14668. {
  14669. anthro: {
  14670. height: math.unit(7, "feet"),
  14671. weight: math.unit(190, "lb"),
  14672. name: "Anthro",
  14673. image: {
  14674. source: "./media/characters/cobalt-dracha/anthro.svg",
  14675. extra: 231 / 225,
  14676. bottom: 0.04
  14677. }
  14678. },
  14679. feral: {
  14680. height: math.unit(9 + 7 / 12, "feet"),
  14681. weight: math.unit(294, "lb"),
  14682. name: "Feral",
  14683. image: {
  14684. source: "./media/characters/cobalt-dracha/feral.svg",
  14685. extra: 692 / 633,
  14686. bottom: 0.05
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Normal",
  14693. height: math.unit(7, "feet"),
  14694. default: true
  14695. },
  14696. ]
  14697. ))
  14698. characterMakers.push(() => makeCharacter(
  14699. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14700. {
  14701. fallen: {
  14702. height: math.unit(11 + 8 / 12, "feet"),
  14703. weight: math.unit(485, "lb"),
  14704. name: "Java (Fallen)",
  14705. rename: true,
  14706. image: {
  14707. source: "./media/characters/java/fallen.svg",
  14708. extra: 226 / 208,
  14709. bottom: 0.005
  14710. }
  14711. },
  14712. godkin: {
  14713. height: math.unit(10 + 6 / 12, "feet"),
  14714. weight: math.unit(328, "lb"),
  14715. name: "Java (Godkin)",
  14716. rename: true,
  14717. image: {
  14718. source: "./media/characters/java/godkin.svg",
  14719. extra: 270 / 262,
  14720. bottom: 0.02
  14721. }
  14722. },
  14723. },
  14724. [
  14725. {
  14726. name: "Normal",
  14727. height: math.unit(11 + 8 / 12, "feet"),
  14728. default: true
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14734. {
  14735. front: {
  14736. height: math.unit(7 + 8 / 12, "feet"),
  14737. weight: math.unit(320, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/skoll/front.svg",
  14741. extra: 232 / 220,
  14742. bottom: 0.02
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Normal",
  14749. height: math.unit(7 + 8 / 12, "feet"),
  14750. default: true
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14756. {
  14757. front: {
  14758. height: math.unit(5 + 9 / 12, "feet"),
  14759. weight: math.unit(170, "lb"),
  14760. name: "Front",
  14761. image: {
  14762. source: "./media/characters/purna/front.svg",
  14763. extra: 239 / 229,
  14764. bottom: 0.01
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(5 + 9 / 12, "feet"),
  14772. default: true
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14778. {
  14779. front: {
  14780. height: math.unit(5 + 9 / 12, "feet"),
  14781. weight: math.unit(142, "lb"),
  14782. name: "Front",
  14783. image: {
  14784. source: "./media/characters/kuva/front.svg",
  14785. extra: 281 / 271,
  14786. bottom: 0.006
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Normal",
  14793. height: math.unit(5 + 9 / 12, "feet"),
  14794. default: true
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14800. {
  14801. anthro: {
  14802. height: math.unit(9 + 2 / 12, "feet"),
  14803. weight: math.unit(270, "lb"),
  14804. name: "Anthro",
  14805. image: {
  14806. source: "./media/characters/embra/anthro.svg",
  14807. extra: 200 / 187,
  14808. bottom: 0.02
  14809. }
  14810. },
  14811. feral: {
  14812. height: math.unit(18 + 8 / 12, "feet"),
  14813. weight: math.unit(576, "lb"),
  14814. name: "Feral",
  14815. image: {
  14816. source: "./media/characters/embra/feral.svg",
  14817. extra: 152 / 137,
  14818. bottom: 0.037
  14819. }
  14820. },
  14821. },
  14822. [
  14823. {
  14824. name: "Normal",
  14825. height: math.unit(9 + 2 / 12, "feet"),
  14826. default: true
  14827. },
  14828. ]
  14829. ))
  14830. characterMakers.push(() => makeCharacter(
  14831. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14832. {
  14833. anthro: {
  14834. height: math.unit(10 + 9 / 12, "feet"),
  14835. weight: math.unit(224, "lb"),
  14836. name: "Anthro",
  14837. image: {
  14838. source: "./media/characters/grottos/anthro.svg",
  14839. extra: 350 / 332,
  14840. bottom: 0.045
  14841. }
  14842. },
  14843. feral: {
  14844. height: math.unit(20 + 7 / 12, "feet"),
  14845. weight: math.unit(629, "lb"),
  14846. name: "Feral",
  14847. image: {
  14848. source: "./media/characters/grottos/feral.svg",
  14849. extra: 207 / 190,
  14850. bottom: 0.05
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Normal",
  14857. height: math.unit(10 + 9 / 12, "feet"),
  14858. default: true
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14864. {
  14865. anthro: {
  14866. height: math.unit(9 + 6 / 12, "feet"),
  14867. weight: math.unit(298, "lb"),
  14868. name: "Anthro",
  14869. image: {
  14870. source: "./media/characters/frifna/anthro.svg",
  14871. extra: 282 / 269,
  14872. bottom: 0.015
  14873. }
  14874. },
  14875. feral: {
  14876. height: math.unit(16 + 2 / 12, "feet"),
  14877. weight: math.unit(624, "lb"),
  14878. name: "Feral",
  14879. image: {
  14880. source: "./media/characters/frifna/feral.svg"
  14881. }
  14882. },
  14883. },
  14884. [
  14885. {
  14886. name: "Normal",
  14887. height: math.unit(9 + 6 / 12, "feet"),
  14888. default: true
  14889. },
  14890. ]
  14891. ))
  14892. characterMakers.push(() => makeCharacter(
  14893. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14894. {
  14895. front: {
  14896. height: math.unit(6 + 2 / 12, "feet"),
  14897. weight: math.unit(168, "lb"),
  14898. name: "Front",
  14899. image: {
  14900. source: "./media/characters/elise/front.svg",
  14901. extra: 276 / 271
  14902. }
  14903. },
  14904. },
  14905. [
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(6 + 2 / 12, "feet"),
  14909. default: true
  14910. },
  14911. ]
  14912. ))
  14913. characterMakers.push(() => makeCharacter(
  14914. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14915. {
  14916. front: {
  14917. height: math.unit(5 + 10 / 12, "feet"),
  14918. weight: math.unit(210, "lb"),
  14919. name: "Front",
  14920. image: {
  14921. source: "./media/characters/glade/front.svg",
  14922. extra: 258 / 247,
  14923. bottom: 0.008
  14924. }
  14925. },
  14926. },
  14927. [
  14928. {
  14929. name: "Normal",
  14930. height: math.unit(5 + 10 / 12, "feet"),
  14931. default: true
  14932. },
  14933. ]
  14934. ))
  14935. characterMakers.push(() => makeCharacter(
  14936. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14937. {
  14938. front: {
  14939. height: math.unit(5 + 10 / 12, "feet"),
  14940. weight: math.unit(129, "lb"),
  14941. name: "Front",
  14942. image: {
  14943. source: "./media/characters/rina/front.svg",
  14944. extra: 266 / 255,
  14945. bottom: 0.005
  14946. }
  14947. },
  14948. },
  14949. [
  14950. {
  14951. name: "Normal",
  14952. height: math.unit(5 + 10 / 12, "feet"),
  14953. default: true
  14954. },
  14955. ]
  14956. ))
  14957. characterMakers.push(() => makeCharacter(
  14958. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14959. {
  14960. front: {
  14961. height: math.unit(6 + 1 / 12, "feet"),
  14962. weight: math.unit(192, "lb"),
  14963. name: "Front",
  14964. image: {
  14965. source: "./media/characters/veronica/front.svg",
  14966. extra: 319 / 309,
  14967. bottom: 0.005
  14968. }
  14969. },
  14970. },
  14971. [
  14972. {
  14973. name: "Normal",
  14974. height: math.unit(6 + 1 / 12, "feet"),
  14975. default: true
  14976. },
  14977. ]
  14978. ))
  14979. characterMakers.push(() => makeCharacter(
  14980. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14981. {
  14982. front: {
  14983. height: math.unit(9 + 3 / 12, "feet"),
  14984. weight: math.unit(1100, "lb"),
  14985. name: "Front",
  14986. image: {
  14987. source: "./media/characters/braxton/front.svg",
  14988. extra: 1057 / 984,
  14989. bottom: 0.05
  14990. }
  14991. },
  14992. },
  14993. [
  14994. {
  14995. name: "Normal",
  14996. height: math.unit(9 + 3 / 12, "feet")
  14997. },
  14998. {
  14999. name: "Giant",
  15000. height: math.unit(300, "feet"),
  15001. default: true
  15002. },
  15003. {
  15004. name: "Macro",
  15005. height: math.unit(700, "feet")
  15006. },
  15007. {
  15008. name: "Megamacro",
  15009. height: math.unit(6000, "feet")
  15010. },
  15011. ]
  15012. ))
  15013. characterMakers.push(() => makeCharacter(
  15014. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15015. {
  15016. front: {
  15017. height: math.unit(6 + 7 / 12, "feet"),
  15018. weight: math.unit(150, "lb"),
  15019. name: "Front",
  15020. image: {
  15021. source: "./media/characters/blue-feyonics/front.svg",
  15022. extra: 1403 / 1306,
  15023. bottom: 0.047
  15024. }
  15025. },
  15026. },
  15027. [
  15028. {
  15029. name: "Normal",
  15030. height: math.unit(6 + 7 / 12, "feet"),
  15031. default: true
  15032. },
  15033. ]
  15034. ))
  15035. characterMakers.push(() => makeCharacter(
  15036. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15037. {
  15038. front: {
  15039. height: math.unit(1.8, "meters"),
  15040. weight: math.unit(60, "kg"),
  15041. name: "Front",
  15042. image: {
  15043. source: "./media/characters/maxwell/front.svg",
  15044. extra: 2060 / 1873
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Micro",
  15051. height: math.unit(1, "mm")
  15052. },
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(1.8, "meter"),
  15056. default: true
  15057. },
  15058. {
  15059. name: "Macro",
  15060. height: math.unit(30, "meters")
  15061. },
  15062. {
  15063. name: "Megamacro",
  15064. height: math.unit(10, "km")
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15070. {
  15071. front: {
  15072. height: math.unit(6, "feet"),
  15073. weight: math.unit(150, "lb"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/jack/front.svg",
  15077. extra: 1754 / 1640,
  15078. bottom: 0.01
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Normal",
  15085. height: math.unit(80000, "feet"),
  15086. default: true
  15087. },
  15088. {
  15089. name: "Max size",
  15090. height: math.unit(10, "lightyears")
  15091. },
  15092. ]
  15093. ))
  15094. characterMakers.push(() => makeCharacter(
  15095. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15096. {
  15097. upright: {
  15098. height: math.unit(7, "feet"),
  15099. weight: math.unit(170, "lb"),
  15100. name: "Upright",
  15101. image: {
  15102. source: "./media/characters/cafat/upright.svg",
  15103. bottom: 0.01
  15104. }
  15105. },
  15106. uprightFull: {
  15107. height: math.unit(7, "feet"),
  15108. weight: math.unit(170, "lb"),
  15109. name: "Upright (Full)",
  15110. image: {
  15111. source: "./media/characters/cafat/upright-full.svg",
  15112. bottom: 0.01
  15113. }
  15114. },
  15115. side: {
  15116. height: math.unit(5, "feet"),
  15117. weight: math.unit(150, "lb"),
  15118. name: "Side",
  15119. image: {
  15120. source: "./media/characters/cafat/side.svg"
  15121. }
  15122. },
  15123. },
  15124. [
  15125. {
  15126. name: "Small",
  15127. height: math.unit(7, "feet"),
  15128. default: true
  15129. },
  15130. {
  15131. name: "Large",
  15132. height: math.unit(15.5, "feet")
  15133. },
  15134. ]
  15135. ))
  15136. characterMakers.push(() => makeCharacter(
  15137. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15138. {
  15139. front: {
  15140. height: math.unit(6, "feet"),
  15141. weight: math.unit(150, "lb"),
  15142. name: "Front",
  15143. image: {
  15144. source: "./media/characters/verin-raharra/front.svg",
  15145. extra: 5019 / 4835,
  15146. bottom: 0.023
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Normal",
  15153. height: math.unit(7 + 5 / 12, "feet"),
  15154. default: true
  15155. },
  15156. {
  15157. name: "Upsized",
  15158. height: math.unit(20, "feet")
  15159. },
  15160. ]
  15161. ))
  15162. characterMakers.push(() => makeCharacter(
  15163. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15164. {
  15165. front: {
  15166. height: math.unit(7, "feet"),
  15167. weight: math.unit(230, "lb"),
  15168. name: "Front",
  15169. image: {
  15170. source: "./media/characters/nakata/front.svg",
  15171. extra: 1.005,
  15172. bottom: 0.01
  15173. }
  15174. },
  15175. },
  15176. [
  15177. {
  15178. name: "Normal",
  15179. height: math.unit(7, "feet"),
  15180. default: true
  15181. },
  15182. {
  15183. name: "Big",
  15184. height: math.unit(14, "feet")
  15185. },
  15186. {
  15187. name: "Macro",
  15188. height: math.unit(400, "feet")
  15189. },
  15190. ]
  15191. ))
  15192. characterMakers.push(() => makeCharacter(
  15193. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15194. {
  15195. front: {
  15196. height: math.unit(4.91, "feet"),
  15197. weight: math.unit(100, "lb"),
  15198. name: "Front",
  15199. image: {
  15200. source: "./media/characters/lily/front.svg",
  15201. extra: 1585 / 1415,
  15202. bottom: 0.02
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(4.91, "feet"),
  15210. default: true
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15216. {
  15217. laying: {
  15218. height: math.unit(4 + 4 / 12, "feet"),
  15219. weight: math.unit(600, "lb"),
  15220. name: "Laying",
  15221. image: {
  15222. source: "./media/characters/sheila/laying.svg",
  15223. extra: 1333 / 1265,
  15224. bottom: 0.16
  15225. }
  15226. },
  15227. },
  15228. [
  15229. {
  15230. name: "Normal",
  15231. height: math.unit(4 + 4 / 12, "feet"),
  15232. default: true
  15233. },
  15234. ]
  15235. ))
  15236. characterMakers.push(() => makeCharacter(
  15237. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15238. {
  15239. front: {
  15240. height: math.unit(6, "feet"),
  15241. weight: math.unit(190, "lb"),
  15242. name: "Front",
  15243. image: {
  15244. source: "./media/characters/sax/front.svg",
  15245. extra: 1187 / 973,
  15246. bottom: 0.042
  15247. }
  15248. },
  15249. },
  15250. [
  15251. {
  15252. name: "Micro",
  15253. height: math.unit(4, "inches"),
  15254. default: true
  15255. },
  15256. ]
  15257. ))
  15258. characterMakers.push(() => makeCharacter(
  15259. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15260. {
  15261. front: {
  15262. height: math.unit(6, "feet"),
  15263. weight: math.unit(150, "lb"),
  15264. name: "Front",
  15265. image: {
  15266. source: "./media/characters/pandora/front.svg",
  15267. extra: 2720 / 2556,
  15268. bottom: 0.015
  15269. }
  15270. },
  15271. back: {
  15272. height: math.unit(6, "feet"),
  15273. weight: math.unit(150, "lb"),
  15274. name: "Back",
  15275. image: {
  15276. source: "./media/characters/pandora/back.svg",
  15277. extra: 2720 / 2556,
  15278. bottom: 0.01
  15279. }
  15280. },
  15281. beans: {
  15282. height: math.unit(6 / 8, "feet"),
  15283. name: "Beans",
  15284. image: {
  15285. source: "./media/characters/pandora/beans.svg"
  15286. }
  15287. },
  15288. skirt: {
  15289. height: math.unit(6, "feet"),
  15290. weight: math.unit(150, "lb"),
  15291. name: "Skirt",
  15292. image: {
  15293. source: "./media/characters/pandora/skirt.svg",
  15294. extra: 1622 / 1525,
  15295. bottom: 0.015
  15296. }
  15297. },
  15298. hoodie: {
  15299. height: math.unit(6, "feet"),
  15300. weight: math.unit(150, "lb"),
  15301. name: "Hoodie",
  15302. image: {
  15303. source: "./media/characters/pandora/hoodie.svg",
  15304. extra: 1622 / 1525,
  15305. bottom: 0.015
  15306. }
  15307. },
  15308. casual: {
  15309. height: math.unit(6, "feet"),
  15310. weight: math.unit(150, "lb"),
  15311. name: "Casual",
  15312. image: {
  15313. source: "./media/characters/pandora/casual.svg",
  15314. extra: 1622 / 1525,
  15315. bottom: 0.015
  15316. }
  15317. },
  15318. },
  15319. [
  15320. {
  15321. name: "Normal",
  15322. height: math.unit(6, "feet")
  15323. },
  15324. {
  15325. name: "Big Steppy",
  15326. height: math.unit(1, "km"),
  15327. default: true
  15328. },
  15329. ]
  15330. ))
  15331. characterMakers.push(() => makeCharacter(
  15332. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15333. {
  15334. side: {
  15335. height: math.unit(10, "feet"),
  15336. weight: math.unit(800, "kg"),
  15337. name: "Side",
  15338. image: {
  15339. source: "./media/characters/venio-darcony/side.svg",
  15340. extra: 1373 / 1003,
  15341. bottom: 0.037
  15342. }
  15343. },
  15344. front: {
  15345. height: math.unit(19, "feet"),
  15346. weight: math.unit(800, "kg"),
  15347. name: "Front",
  15348. image: {
  15349. source: "./media/characters/venio-darcony/front.svg"
  15350. }
  15351. },
  15352. back: {
  15353. height: math.unit(19, "feet"),
  15354. weight: math.unit(800, "kg"),
  15355. name: "Back",
  15356. image: {
  15357. source: "./media/characters/venio-darcony/back.svg"
  15358. }
  15359. },
  15360. sideNsfw: {
  15361. height: math.unit(10, "feet"),
  15362. weight: math.unit(800, "kg"),
  15363. name: "Side (NSFW)",
  15364. image: {
  15365. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15366. extra: 1373 / 1003,
  15367. bottom: 0.037
  15368. }
  15369. },
  15370. frontNsfw: {
  15371. height: math.unit(19, "feet"),
  15372. weight: math.unit(800, "kg"),
  15373. name: "Front (NSFW)",
  15374. image: {
  15375. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15376. }
  15377. },
  15378. backNsfw: {
  15379. height: math.unit(19, "feet"),
  15380. weight: math.unit(800, "kg"),
  15381. name: "Back (NSFW)",
  15382. image: {
  15383. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15384. }
  15385. },
  15386. sideArmored: {
  15387. height: math.unit(10, "feet"),
  15388. weight: math.unit(800, "kg"),
  15389. name: "Side (Armored)",
  15390. image: {
  15391. source: "./media/characters/venio-darcony/side-armored.svg",
  15392. extra: 1373 / 1003,
  15393. bottom: 0.037
  15394. }
  15395. },
  15396. frontArmored: {
  15397. height: math.unit(19, "feet"),
  15398. weight: math.unit(900, "kg"),
  15399. name: "Front (Armored)",
  15400. image: {
  15401. source: "./media/characters/venio-darcony/front-armored.svg"
  15402. }
  15403. },
  15404. backArmored: {
  15405. height: math.unit(19, "feet"),
  15406. weight: math.unit(900, "kg"),
  15407. name: "Back (Armored)",
  15408. image: {
  15409. source: "./media/characters/venio-darcony/back-armored.svg"
  15410. }
  15411. },
  15412. sword: {
  15413. height: math.unit(10, "feet"),
  15414. weight: math.unit(50, "lb"),
  15415. name: "Sword",
  15416. image: {
  15417. source: "./media/characters/venio-darcony/sword.svg"
  15418. }
  15419. },
  15420. },
  15421. [
  15422. {
  15423. name: "Normal",
  15424. height: math.unit(10, "feet")
  15425. },
  15426. {
  15427. name: "Macro",
  15428. height: math.unit(130, "feet"),
  15429. default: true
  15430. },
  15431. {
  15432. name: "Macro+",
  15433. height: math.unit(240, "feet")
  15434. },
  15435. ]
  15436. ))
  15437. characterMakers.push(() => makeCharacter(
  15438. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15439. {
  15440. front: {
  15441. height: math.unit(6, "feet"),
  15442. weight: math.unit(150, "lb"),
  15443. name: "Front",
  15444. image: {
  15445. source: "./media/characters/veski/front.svg",
  15446. extra: 1299 / 1225,
  15447. bottom: 0.04
  15448. }
  15449. },
  15450. back: {
  15451. height: math.unit(6, "feet"),
  15452. weight: math.unit(150, "lb"),
  15453. name: "Back",
  15454. image: {
  15455. source: "./media/characters/veski/back.svg",
  15456. extra: 1299 / 1225,
  15457. bottom: 0.008
  15458. }
  15459. },
  15460. maw: {
  15461. height: math.unit(1.5 * 1.21, "feet"),
  15462. name: "Maw",
  15463. image: {
  15464. source: "./media/characters/veski/maw.svg"
  15465. }
  15466. },
  15467. },
  15468. [
  15469. {
  15470. name: "Macro",
  15471. height: math.unit(2, "km"),
  15472. default: true
  15473. },
  15474. ]
  15475. ))
  15476. characterMakers.push(() => makeCharacter(
  15477. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15478. {
  15479. front: {
  15480. height: math.unit(5 + 7 / 12, "feet"),
  15481. name: "Front",
  15482. image: {
  15483. source: "./media/characters/isabelle/front.svg",
  15484. extra: 2130 / 1976,
  15485. bottom: 0.05
  15486. }
  15487. },
  15488. },
  15489. [
  15490. {
  15491. name: "Supermicro",
  15492. height: math.unit(10, "micrometers")
  15493. },
  15494. {
  15495. name: "Micro",
  15496. height: math.unit(1, "inch")
  15497. },
  15498. {
  15499. name: "Tiny",
  15500. height: math.unit(5, "inches")
  15501. },
  15502. {
  15503. name: "Standard",
  15504. height: math.unit(5 + 7 / 12, "inches")
  15505. },
  15506. {
  15507. name: "Macro",
  15508. height: math.unit(80, "meters"),
  15509. default: true
  15510. },
  15511. {
  15512. name: "Megamacro",
  15513. height: math.unit(250, "meters")
  15514. },
  15515. {
  15516. name: "Gigamacro",
  15517. height: math.unit(5, "km")
  15518. },
  15519. {
  15520. name: "Cosmic",
  15521. height: math.unit(2.5e6, "miles")
  15522. },
  15523. ]
  15524. ))
  15525. characterMakers.push(() => makeCharacter(
  15526. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15527. {
  15528. front: {
  15529. height: math.unit(6, "feet"),
  15530. weight: math.unit(150, "lb"),
  15531. name: "Front",
  15532. image: {
  15533. source: "./media/characters/hanzo/front.svg",
  15534. extra: 374 / 344,
  15535. bottom: 0.02
  15536. }
  15537. },
  15538. },
  15539. [
  15540. {
  15541. name: "Normal",
  15542. height: math.unit(8, "feet"),
  15543. default: true
  15544. },
  15545. ]
  15546. ))
  15547. characterMakers.push(() => makeCharacter(
  15548. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15549. {
  15550. front: {
  15551. height: math.unit(7, "feet"),
  15552. weight: math.unit(130, "lb"),
  15553. name: "Front",
  15554. image: {
  15555. source: "./media/characters/anna/front.svg",
  15556. extra: 169 / 145,
  15557. bottom: 0.06
  15558. }
  15559. },
  15560. full: {
  15561. height: math.unit(4.96, "feet"),
  15562. weight: math.unit(220, "lb"),
  15563. name: "Full",
  15564. image: {
  15565. source: "./media/characters/anna/full.svg",
  15566. extra: 138 / 114,
  15567. bottom: 0.15
  15568. }
  15569. },
  15570. tongue: {
  15571. height: math.unit(2.53, "feet"),
  15572. name: "Tongue",
  15573. image: {
  15574. source: "./media/characters/anna/tongue.svg"
  15575. }
  15576. },
  15577. },
  15578. [
  15579. {
  15580. name: "Normal",
  15581. height: math.unit(7, "feet"),
  15582. default: true
  15583. },
  15584. ]
  15585. ))
  15586. characterMakers.push(() => makeCharacter(
  15587. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15588. {
  15589. front: {
  15590. height: math.unit(7, "feet"),
  15591. weight: math.unit(150, "lb"),
  15592. name: "Front",
  15593. image: {
  15594. source: "./media/characters/ian-corvid/front.svg",
  15595. extra: 150 / 142,
  15596. bottom: 0.02
  15597. }
  15598. },
  15599. back: {
  15600. height: math.unit(7, "feet"),
  15601. weight: math.unit(150, "lb"),
  15602. name: "Back",
  15603. image: {
  15604. source: "./media/characters/ian-corvid/back.svg",
  15605. extra: 150 / 143,
  15606. bottom: 0.01
  15607. }
  15608. },
  15609. stomping: {
  15610. height: math.unit(7, "feet"),
  15611. weight: math.unit(150, "lb"),
  15612. name: "Stomping",
  15613. image: {
  15614. source: "./media/characters/ian-corvid/stomping.svg",
  15615. extra: 76 / 72
  15616. }
  15617. },
  15618. sitting: {
  15619. height: math.unit(7 / 1.8, "feet"),
  15620. weight: math.unit(150, "lb"),
  15621. name: "Sitting",
  15622. image: {
  15623. source: "./media/characters/ian-corvid/sitting.svg",
  15624. extra: 1400 / 1269,
  15625. bottom: 0.15
  15626. }
  15627. },
  15628. },
  15629. [
  15630. {
  15631. name: "Tiny Microw",
  15632. height: math.unit(1, "inch")
  15633. },
  15634. {
  15635. name: "Microw",
  15636. height: math.unit(6, "inches")
  15637. },
  15638. {
  15639. name: "Crow",
  15640. height: math.unit(7 + 1 / 12, "feet"),
  15641. default: true
  15642. },
  15643. {
  15644. name: "Macrow",
  15645. height: math.unit(176, "feet")
  15646. },
  15647. ]
  15648. ))
  15649. characterMakers.push(() => makeCharacter(
  15650. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15651. {
  15652. front: {
  15653. height: math.unit(5 + 7 / 12, "feet"),
  15654. weight: math.unit(147, "lb"),
  15655. name: "Front",
  15656. image: {
  15657. source: "./media/characters/natalie-kellon/front.svg",
  15658. extra: 1214 / 1141,
  15659. bottom: 0.02
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Micro",
  15666. height: math.unit(1 / 16, "inch")
  15667. },
  15668. {
  15669. name: "Tiny",
  15670. height: math.unit(4, "inches")
  15671. },
  15672. {
  15673. name: "Normal",
  15674. height: math.unit(5 + 7 / 12, "feet"),
  15675. default: true
  15676. },
  15677. {
  15678. name: "Amazon",
  15679. height: math.unit(12, "feet")
  15680. },
  15681. {
  15682. name: "Giantess",
  15683. height: math.unit(160, "meters")
  15684. },
  15685. {
  15686. name: "Titaness",
  15687. height: math.unit(800, "meters")
  15688. },
  15689. ]
  15690. ))
  15691. characterMakers.push(() => makeCharacter(
  15692. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15693. {
  15694. front: {
  15695. height: math.unit(6, "feet"),
  15696. weight: math.unit(150, "lb"),
  15697. name: "Front",
  15698. image: {
  15699. source: "./media/characters/alluria/front.svg",
  15700. extra: 806 / 738,
  15701. bottom: 0.01
  15702. }
  15703. },
  15704. side: {
  15705. height: math.unit(6, "feet"),
  15706. weight: math.unit(150, "lb"),
  15707. name: "Side",
  15708. image: {
  15709. source: "./media/characters/alluria/side.svg",
  15710. extra: 800 / 750,
  15711. }
  15712. },
  15713. back: {
  15714. height: math.unit(6, "feet"),
  15715. weight: math.unit(150, "lb"),
  15716. name: "Back",
  15717. image: {
  15718. source: "./media/characters/alluria/back.svg",
  15719. extra: 806 / 738,
  15720. }
  15721. },
  15722. frontMaid: {
  15723. height: math.unit(6, "feet"),
  15724. weight: math.unit(150, "lb"),
  15725. name: "Front (Maid)",
  15726. image: {
  15727. source: "./media/characters/alluria/front-maid.svg",
  15728. extra: 806 / 738,
  15729. bottom: 0.01
  15730. }
  15731. },
  15732. sideMaid: {
  15733. height: math.unit(6, "feet"),
  15734. weight: math.unit(150, "lb"),
  15735. name: "Side (Maid)",
  15736. image: {
  15737. source: "./media/characters/alluria/side-maid.svg",
  15738. extra: 800 / 750,
  15739. bottom: 0.005
  15740. }
  15741. },
  15742. backMaid: {
  15743. height: math.unit(6, "feet"),
  15744. weight: math.unit(150, "lb"),
  15745. name: "Back (Maid)",
  15746. image: {
  15747. source: "./media/characters/alluria/back-maid.svg",
  15748. extra: 806 / 738,
  15749. }
  15750. },
  15751. },
  15752. [
  15753. {
  15754. name: "Micro",
  15755. height: math.unit(6, "inches"),
  15756. default: true
  15757. },
  15758. ]
  15759. ))
  15760. characterMakers.push(() => makeCharacter(
  15761. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15762. {
  15763. front: {
  15764. height: math.unit(6, "feet"),
  15765. weight: math.unit(150, "lb"),
  15766. name: "Front",
  15767. image: {
  15768. source: "./media/characters/kyle/front.svg",
  15769. extra: 1069 / 962,
  15770. bottom: 77.228 / 1727.45
  15771. }
  15772. },
  15773. },
  15774. [
  15775. {
  15776. name: "Macro",
  15777. height: math.unit(150, "feet"),
  15778. default: true
  15779. },
  15780. ]
  15781. ))
  15782. characterMakers.push(() => makeCharacter(
  15783. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15784. {
  15785. front: {
  15786. height: math.unit(6, "feet"),
  15787. weight: math.unit(300, "lb"),
  15788. name: "Front",
  15789. image: {
  15790. source: "./media/characters/duncan/front.svg",
  15791. extra: 1650 / 1482,
  15792. bottom: 0.05
  15793. }
  15794. },
  15795. },
  15796. [
  15797. {
  15798. name: "Macro",
  15799. height: math.unit(100, "feet"),
  15800. default: true
  15801. },
  15802. ]
  15803. ))
  15804. characterMakers.push(() => makeCharacter(
  15805. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15806. {
  15807. front: {
  15808. height: math.unit(5 + 4 / 12, "feet"),
  15809. weight: math.unit(220, "lb"),
  15810. name: "Front",
  15811. image: {
  15812. source: "./media/characters/memory/front.svg",
  15813. extra: 3641 / 3545,
  15814. bottom: 0.03
  15815. }
  15816. },
  15817. back: {
  15818. height: math.unit(5 + 4 / 12, "feet"),
  15819. weight: math.unit(220, "lb"),
  15820. name: "Back",
  15821. image: {
  15822. source: "./media/characters/memory/back.svg",
  15823. extra: 3641 / 3545,
  15824. bottom: 0.025
  15825. }
  15826. },
  15827. frontSkirt: {
  15828. height: math.unit(5 + 4 / 12, "feet"),
  15829. weight: math.unit(220, "lb"),
  15830. name: "Front (Skirt)",
  15831. image: {
  15832. source: "./media/characters/memory/front-skirt.svg",
  15833. extra: 3641 / 3545,
  15834. bottom: 0.03
  15835. }
  15836. },
  15837. frontDress: {
  15838. height: math.unit(5 + 4 / 12, "feet"),
  15839. weight: math.unit(220, "lb"),
  15840. name: "Front (Dress)",
  15841. image: {
  15842. source: "./media/characters/memory/front-dress.svg",
  15843. extra: 3641 / 3545,
  15844. bottom: 0.03
  15845. }
  15846. },
  15847. },
  15848. [
  15849. {
  15850. name: "Micro",
  15851. height: math.unit(6, "inches"),
  15852. default: true
  15853. },
  15854. {
  15855. name: "Normal",
  15856. height: math.unit(5 + 4 / 12, "feet")
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15862. {
  15863. front: {
  15864. height: math.unit(4 + 11 / 12, "feet"),
  15865. weight: math.unit(100, "lb"),
  15866. name: "Front",
  15867. image: {
  15868. source: "./media/characters/luno/front.svg",
  15869. extra: 1535 / 1487,
  15870. bottom: 0.03
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Micro",
  15877. height: math.unit(3, "inches")
  15878. },
  15879. {
  15880. name: "Normal",
  15881. height: math.unit(4 + 11 / 12, "feet"),
  15882. default: true
  15883. },
  15884. {
  15885. name: "Macro",
  15886. height: math.unit(300, "feet")
  15887. },
  15888. {
  15889. name: "Megamacro",
  15890. height: math.unit(700, "miles")
  15891. },
  15892. ]
  15893. ))
  15894. characterMakers.push(() => makeCharacter(
  15895. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15896. {
  15897. front: {
  15898. height: math.unit(6 + 2 / 12, "feet"),
  15899. weight: math.unit(170, "lb"),
  15900. name: "Front",
  15901. image: {
  15902. source: "./media/characters/jamesy/front.svg",
  15903. extra: 440 / 382,
  15904. bottom: 0.005
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Micro",
  15911. height: math.unit(3, "inches")
  15912. },
  15913. {
  15914. name: "Normal",
  15915. height: math.unit(6 + 2 / 12, "feet"),
  15916. default: true
  15917. },
  15918. {
  15919. name: "Macro",
  15920. height: math.unit(300, "feet")
  15921. },
  15922. {
  15923. name: "Megamacro",
  15924. height: math.unit(700, "miles")
  15925. },
  15926. ]
  15927. ))
  15928. characterMakers.push(() => makeCharacter(
  15929. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15930. {
  15931. front: {
  15932. height: math.unit(6, "feet"),
  15933. weight: math.unit(160, "lb"),
  15934. name: "Front",
  15935. image: {
  15936. source: "./media/characters/mark/front.svg",
  15937. extra: 3300 / 3100,
  15938. bottom: 136.42 / 3440.47
  15939. }
  15940. },
  15941. },
  15942. [
  15943. {
  15944. name: "Macro",
  15945. height: math.unit(120, "meters")
  15946. },
  15947. {
  15948. name: "Bigger Macro",
  15949. height: math.unit(350, "meters")
  15950. },
  15951. {
  15952. name: "Megamacro",
  15953. height: math.unit(8, "km"),
  15954. default: true
  15955. },
  15956. {
  15957. name: "Continental",
  15958. height: math.unit(4550, "km")
  15959. },
  15960. {
  15961. name: "Planetary",
  15962. height: math.unit(65000, "km")
  15963. },
  15964. ]
  15965. ))
  15966. characterMakers.push(() => makeCharacter(
  15967. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15968. {
  15969. front: {
  15970. height: math.unit(6, "feet"),
  15971. weight: math.unit(400, "lb"),
  15972. name: "Front",
  15973. image: {
  15974. source: "./media/characters/mac/front.svg",
  15975. extra: 1048 / 987.7,
  15976. bottom: 60 / 1107.6,
  15977. }
  15978. },
  15979. },
  15980. [
  15981. {
  15982. name: "Macro",
  15983. height: math.unit(500, "feet"),
  15984. default: true
  15985. },
  15986. ]
  15987. ))
  15988. characterMakers.push(() => makeCharacter(
  15989. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15990. {
  15991. front: {
  15992. height: math.unit(5 + 2 / 12, "feet"),
  15993. weight: math.unit(190, "lb"),
  15994. name: "Front",
  15995. image: {
  15996. source: "./media/characters/bari/front.svg",
  15997. extra: 3156 / 2880,
  15998. bottom: 0.03
  15999. }
  16000. },
  16001. back: {
  16002. height: math.unit(5 + 2 / 12, "feet"),
  16003. weight: math.unit(190, "lb"),
  16004. name: "Back",
  16005. image: {
  16006. source: "./media/characters/bari/back.svg",
  16007. extra: 3260 / 2834,
  16008. bottom: 0.025
  16009. }
  16010. },
  16011. frontPlush: {
  16012. height: math.unit(5 + 2 / 12, "feet"),
  16013. weight: math.unit(190, "lb"),
  16014. name: "Front (Plush)",
  16015. image: {
  16016. source: "./media/characters/bari/front-plush.svg",
  16017. extra: 1112 / 1061,
  16018. bottom: 0.002
  16019. }
  16020. },
  16021. },
  16022. [
  16023. {
  16024. name: "Micro",
  16025. height: math.unit(3, "inches")
  16026. },
  16027. {
  16028. name: "Normal",
  16029. height: math.unit(5 + 2 / 12, "feet"),
  16030. default: true
  16031. },
  16032. {
  16033. name: "Macro",
  16034. height: math.unit(20, "feet")
  16035. },
  16036. ]
  16037. ))
  16038. characterMakers.push(() => makeCharacter(
  16039. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16040. {
  16041. front: {
  16042. height: math.unit(6 + 1 / 12, "feet"),
  16043. weight: math.unit(275, "lb"),
  16044. name: "Front",
  16045. image: {
  16046. source: "./media/characters/hunter-misha-raven/front.svg"
  16047. }
  16048. },
  16049. },
  16050. [
  16051. {
  16052. name: "Mortal",
  16053. height: math.unit(6 + 1 / 12, "feet")
  16054. },
  16055. {
  16056. name: "Divine",
  16057. height: math.unit(1.12134e34, "parsecs"),
  16058. default: true
  16059. },
  16060. ]
  16061. ))
  16062. characterMakers.push(() => makeCharacter(
  16063. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16064. {
  16065. front: {
  16066. height: math.unit(6 + 3 / 12, "feet"),
  16067. weight: math.unit(220, "lb"),
  16068. name: "Front",
  16069. image: {
  16070. source: "./media/characters/max-calore/front.svg",
  16071. extra: 1700 / 1648,
  16072. bottom: 0.01
  16073. }
  16074. },
  16075. back: {
  16076. height: math.unit(6 + 3 / 12, "feet"),
  16077. weight: math.unit(220, "lb"),
  16078. name: "Back",
  16079. image: {
  16080. source: "./media/characters/max-calore/back.svg",
  16081. extra: 1700 / 1648,
  16082. bottom: 0.01
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Normal",
  16089. height: math.unit(6 + 3 / 12, "feet"),
  16090. default: true
  16091. },
  16092. ]
  16093. ))
  16094. characterMakers.push(() => makeCharacter(
  16095. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16096. {
  16097. side: {
  16098. height: math.unit(2 + 8 / 12, "feet"),
  16099. weight: math.unit(99, "lb"),
  16100. name: "Side",
  16101. image: {
  16102. source: "./media/characters/aspen/side.svg",
  16103. extra: 152 / 138,
  16104. bottom: 0.032
  16105. }
  16106. },
  16107. },
  16108. [
  16109. {
  16110. name: "Normal",
  16111. height: math.unit(2 + 8 / 12, "feet"),
  16112. default: true
  16113. },
  16114. ]
  16115. ))
  16116. characterMakers.push(() => makeCharacter(
  16117. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16118. {
  16119. side: {
  16120. height: math.unit(3 + 2 / 12, "feet"),
  16121. weight: math.unit(224, "lb"),
  16122. name: "Side",
  16123. image: {
  16124. source: "./media/characters/sheila-feral-wolf/side.svg",
  16125. extra: 179 / 166,
  16126. bottom: 0.03
  16127. }
  16128. },
  16129. },
  16130. [
  16131. {
  16132. name: "Normal",
  16133. height: math.unit(3 + 2 / 12, "feet"),
  16134. default: true
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16140. {
  16141. side: {
  16142. height: math.unit(1 + 9 / 12, "feet"),
  16143. weight: math.unit(38, "lb"),
  16144. name: "Side",
  16145. image: {
  16146. source: "./media/characters/michelle/side.svg",
  16147. extra: 147 / 136.7,
  16148. bottom: 0.03
  16149. }
  16150. },
  16151. },
  16152. [
  16153. {
  16154. name: "Normal",
  16155. height: math.unit(1 + 9 / 12, "feet"),
  16156. default: true
  16157. },
  16158. ]
  16159. ))
  16160. characterMakers.push(() => makeCharacter(
  16161. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16162. {
  16163. front: {
  16164. height: math.unit(1 + 1 / 12, "feet"),
  16165. weight: math.unit(18, "lb"),
  16166. name: "Front",
  16167. image: {
  16168. source: "./media/characters/nino/front.svg"
  16169. }
  16170. },
  16171. },
  16172. [
  16173. {
  16174. name: "Normal",
  16175. height: math.unit(1 + 1 / 12, "feet"),
  16176. default: true
  16177. },
  16178. ]
  16179. ))
  16180. characterMakers.push(() => makeCharacter(
  16181. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16182. {
  16183. front: {
  16184. height: math.unit(1, "feet"),
  16185. weight: math.unit(16, "lb"),
  16186. name: "Front",
  16187. image: {
  16188. source: "./media/characters/viola/front.svg"
  16189. }
  16190. },
  16191. },
  16192. [
  16193. {
  16194. name: "Normal",
  16195. height: math.unit(1, "feet"),
  16196. default: true
  16197. },
  16198. ]
  16199. ))
  16200. characterMakers.push(() => makeCharacter(
  16201. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16202. {
  16203. front: {
  16204. height: math.unit(6 + 5 / 12, "feet"),
  16205. weight: math.unit(580, "lb"),
  16206. name: "Front",
  16207. image: {
  16208. source: "./media/characters/atlas/front.svg",
  16209. extra: 298.5 / 290,
  16210. bottom: 0.015
  16211. }
  16212. },
  16213. },
  16214. [
  16215. {
  16216. name: "Normal",
  16217. height: math.unit(6 + 5 / 12, "feet"),
  16218. default: true
  16219. },
  16220. ]
  16221. ))
  16222. characterMakers.push(() => makeCharacter(
  16223. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16224. {
  16225. side: {
  16226. height: math.unit(1 + 10 / 12, "feet"),
  16227. weight: math.unit(25, "lb"),
  16228. name: "Side",
  16229. image: {
  16230. source: "./media/characters/davy/side.svg",
  16231. extra: 200 / 170,
  16232. bottom: 0.01
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Normal",
  16239. height: math.unit(1 + 10 / 12, "feet"),
  16240. default: true
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16246. {
  16247. side: {
  16248. height: math.unit(4 + 8 / 12, "feet"),
  16249. weight: math.unit(166, "lb"),
  16250. name: "Side",
  16251. image: {
  16252. source: "./media/characters/fiona/side.svg",
  16253. extra: 232 / 220,
  16254. bottom: 0.03
  16255. }
  16256. },
  16257. },
  16258. [
  16259. {
  16260. name: "Normal",
  16261. height: math.unit(4 + 8 / 12, "feet"),
  16262. default: true
  16263. },
  16264. ]
  16265. ))
  16266. characterMakers.push(() => makeCharacter(
  16267. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16268. {
  16269. front: {
  16270. height: math.unit(2, "feet"),
  16271. weight: math.unit(62, "lb"),
  16272. name: "Front",
  16273. image: {
  16274. source: "./media/characters/lyla/front.svg",
  16275. bottom: 0.1
  16276. }
  16277. },
  16278. },
  16279. [
  16280. {
  16281. name: "Normal",
  16282. height: math.unit(2, "feet"),
  16283. default: true
  16284. },
  16285. ]
  16286. ))
  16287. characterMakers.push(() => makeCharacter(
  16288. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16289. {
  16290. side: {
  16291. height: math.unit(1.8, "feet"),
  16292. weight: math.unit(44, "lb"),
  16293. name: "Side",
  16294. image: {
  16295. source: "./media/characters/perseus/side.svg",
  16296. bottom: 0.21
  16297. }
  16298. },
  16299. },
  16300. [
  16301. {
  16302. name: "Normal",
  16303. height: math.unit(1.8, "feet"),
  16304. default: true
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16310. {
  16311. side: {
  16312. height: math.unit(4 + 2 / 12, "feet"),
  16313. weight: math.unit(20, "lb"),
  16314. name: "Side",
  16315. image: {
  16316. source: "./media/characters/remus/side.svg"
  16317. }
  16318. },
  16319. },
  16320. [
  16321. {
  16322. name: "Normal",
  16323. height: math.unit(4 + 2 / 12, "feet"),
  16324. default: true
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16330. {
  16331. front: {
  16332. height: math.unit(4 + 11 / 12, "feet"),
  16333. weight: math.unit(114, "lb"),
  16334. name: "Front",
  16335. image: {
  16336. source: "./media/characters/raf/front.svg",
  16337. bottom: 20.5 / 1863
  16338. }
  16339. },
  16340. side: {
  16341. height: math.unit(4 + 11 / 12, "feet"),
  16342. weight: math.unit(114, "lb"),
  16343. name: "Side",
  16344. image: {
  16345. source: "./media/characters/raf/side.svg",
  16346. bottom: 22 / 1822
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Micro",
  16353. height: math.unit(2, "inches")
  16354. },
  16355. {
  16356. name: "Normal",
  16357. height: math.unit(4 + 11 / 12, "feet"),
  16358. default: true
  16359. },
  16360. {
  16361. name: "Macro",
  16362. height: math.unit(70, "feet")
  16363. },
  16364. ]
  16365. ))
  16366. characterMakers.push(() => makeCharacter(
  16367. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16368. {
  16369. front: {
  16370. height: math.unit(1.5, "meters"),
  16371. weight: math.unit(68, "kg"),
  16372. name: "Front",
  16373. image: {
  16374. source: "./media/characters/liam-einarr/front.svg",
  16375. extra: 2822 / 2666
  16376. }
  16377. },
  16378. back: {
  16379. height: math.unit(1.5, "meters"),
  16380. weight: math.unit(68, "kg"),
  16381. name: "Back",
  16382. image: {
  16383. source: "./media/characters/liam-einarr/back.svg",
  16384. extra: 2822 / 2666,
  16385. bottom: 0.015
  16386. }
  16387. },
  16388. },
  16389. [
  16390. {
  16391. name: "Normal",
  16392. height: math.unit(1.5, "meters"),
  16393. default: true
  16394. },
  16395. {
  16396. name: "Macro",
  16397. height: math.unit(150, "meters")
  16398. },
  16399. {
  16400. name: "Megamacro",
  16401. height: math.unit(35, "km")
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16407. {
  16408. front: {
  16409. height: math.unit(6, "feet"),
  16410. weight: math.unit(75, "kg"),
  16411. name: "Front",
  16412. image: {
  16413. source: "./media/characters/linda/front.svg",
  16414. extra: 930 / 874,
  16415. bottom: 0.004
  16416. }
  16417. },
  16418. },
  16419. [
  16420. {
  16421. name: "Normal",
  16422. height: math.unit(6, "feet"),
  16423. default: true
  16424. },
  16425. ]
  16426. ))
  16427. characterMakers.push(() => makeCharacter(
  16428. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16429. {
  16430. front: {
  16431. height: math.unit(6 + 8 / 12, "feet"),
  16432. weight: math.unit(220, "lb"),
  16433. name: "Front",
  16434. image: {
  16435. source: "./media/characters/caylex/front.svg",
  16436. extra: 821 / 772,
  16437. bottom: 0.07
  16438. }
  16439. },
  16440. back: {
  16441. height: math.unit(6 + 8 / 12, "feet"),
  16442. weight: math.unit(220, "lb"),
  16443. name: "Back",
  16444. image: {
  16445. source: "./media/characters/caylex/back.svg",
  16446. extra: 821 / 772,
  16447. bottom: 0.022
  16448. }
  16449. },
  16450. hand: {
  16451. height: math.unit(1.25, "feet"),
  16452. name: "Hand",
  16453. image: {
  16454. source: "./media/characters/caylex/hand.svg"
  16455. }
  16456. },
  16457. foot: {
  16458. height: math.unit(1.6, "feet"),
  16459. name: "Foot",
  16460. image: {
  16461. source: "./media/characters/caylex/foot.svg"
  16462. }
  16463. },
  16464. armored: {
  16465. height: math.unit(6 + 8 / 12, "feet"),
  16466. weight: math.unit(250, "lb"),
  16467. name: "Armored",
  16468. image: {
  16469. source: "./media/characters/caylex/armored.svg",
  16470. extra: 1420 / 1310,
  16471. bottom: 0.045
  16472. }
  16473. },
  16474. },
  16475. [
  16476. {
  16477. name: "Normal",
  16478. height: math.unit(6 + 8 / 12, "feet"),
  16479. default: true
  16480. },
  16481. {
  16482. name: "Normal+",
  16483. height: math.unit(12, "feet")
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(7 + 6 / 12, "feet"),
  16492. weight: math.unit(288, "lb"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/alana/front.svg",
  16496. extra: 679 / 653,
  16497. bottom: 22.5 / 701
  16498. }
  16499. },
  16500. },
  16501. [
  16502. {
  16503. name: "Normal",
  16504. height: math.unit(7 + 6 / 12, "feet")
  16505. },
  16506. {
  16507. name: "Large",
  16508. height: math.unit(50, "feet")
  16509. },
  16510. {
  16511. name: "Macro",
  16512. height: math.unit(100, "feet"),
  16513. default: true
  16514. },
  16515. {
  16516. name: "Macro+",
  16517. height: math.unit(200, "feet")
  16518. },
  16519. ]
  16520. ))
  16521. characterMakers.push(() => makeCharacter(
  16522. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16523. {
  16524. front: {
  16525. height: math.unit(6 + 1 / 12, "feet"),
  16526. weight: math.unit(210, "lb"),
  16527. name: "Front",
  16528. image: {
  16529. source: "./media/characters/hasani/front.svg",
  16530. extra: 244 / 232,
  16531. bottom: 0.01
  16532. }
  16533. },
  16534. back: {
  16535. height: math.unit(6 + 1 / 12, "feet"),
  16536. weight: math.unit(210, "lb"),
  16537. name: "Back",
  16538. image: {
  16539. source: "./media/characters/hasani/back.svg",
  16540. extra: 244 / 232,
  16541. bottom: 0.01
  16542. }
  16543. },
  16544. },
  16545. [
  16546. {
  16547. name: "Normal",
  16548. height: math.unit(6 + 1 / 12, "feet")
  16549. },
  16550. {
  16551. name: "Macro",
  16552. height: math.unit(175, "feet"),
  16553. default: true
  16554. },
  16555. ]
  16556. ))
  16557. characterMakers.push(() => makeCharacter(
  16558. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16559. {
  16560. front: {
  16561. height: math.unit(1.82, "meters"),
  16562. weight: math.unit(140, "lb"),
  16563. name: "Front",
  16564. image: {
  16565. source: "./media/characters/nita/front.svg",
  16566. extra: 2473 / 2363,
  16567. bottom: 0.01
  16568. }
  16569. },
  16570. },
  16571. [
  16572. {
  16573. name: "Normal",
  16574. height: math.unit(1.82, "m")
  16575. },
  16576. {
  16577. name: "Macro",
  16578. height: math.unit(300, "m")
  16579. },
  16580. {
  16581. name: "Mistake Canon",
  16582. height: math.unit(0.5, "miles"),
  16583. default: true
  16584. },
  16585. {
  16586. name: "Big Mistake",
  16587. height: math.unit(13, "miles")
  16588. },
  16589. {
  16590. name: "Playing God",
  16591. height: math.unit(2450, "miles")
  16592. },
  16593. ]
  16594. ))
  16595. characterMakers.push(() => makeCharacter(
  16596. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16597. {
  16598. front: {
  16599. height: math.unit(4, "feet"),
  16600. weight: math.unit(120, "lb"),
  16601. name: "Front",
  16602. image: {
  16603. source: "./media/characters/shiriko/front.svg",
  16604. extra: 195 / 188
  16605. }
  16606. },
  16607. },
  16608. [
  16609. {
  16610. name: "Normal",
  16611. height: math.unit(4, "feet"),
  16612. default: true
  16613. },
  16614. ]
  16615. ))
  16616. characterMakers.push(() => makeCharacter(
  16617. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16618. {
  16619. front: {
  16620. height: math.unit(6, "feet"),
  16621. name: "front",
  16622. image: {
  16623. source: "./media/characters/deja/front.svg",
  16624. extra: 926 / 840,
  16625. bottom: 0.07
  16626. }
  16627. },
  16628. },
  16629. [
  16630. {
  16631. name: "Planck Length",
  16632. height: math.unit(1.6e-35, "meters")
  16633. },
  16634. {
  16635. name: "Normal",
  16636. height: math.unit(30.48, "meters"),
  16637. default: true
  16638. },
  16639. {
  16640. name: "Universal",
  16641. height: math.unit(8.8e26, "meters")
  16642. },
  16643. ]
  16644. ))
  16645. characterMakers.push(() => makeCharacter(
  16646. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16647. {
  16648. side: {
  16649. height: math.unit(8, "feet"),
  16650. weight: math.unit(6300, "lb"),
  16651. name: "Side",
  16652. image: {
  16653. source: "./media/characters/anima/side.svg",
  16654. bottom: 0.035
  16655. }
  16656. },
  16657. },
  16658. [
  16659. {
  16660. name: "Normal",
  16661. height: math.unit(8, "feet"),
  16662. default: true
  16663. },
  16664. ]
  16665. ))
  16666. characterMakers.push(() => makeCharacter(
  16667. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16668. {
  16669. front: {
  16670. height: math.unit(8, "feet"),
  16671. weight: math.unit(350, "lb"),
  16672. name: "Front",
  16673. image: {
  16674. source: "./media/characters/bianca/front.svg",
  16675. extra: 234 / 225,
  16676. bottom: 0.03
  16677. }
  16678. },
  16679. },
  16680. [
  16681. {
  16682. name: "Normal",
  16683. height: math.unit(8, "feet"),
  16684. default: true
  16685. },
  16686. ]
  16687. ))
  16688. characterMakers.push(() => makeCharacter(
  16689. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16690. {
  16691. front: {
  16692. height: math.unit(6, "feet"),
  16693. weight: math.unit(150, "lb"),
  16694. name: "Front",
  16695. image: {
  16696. source: "./media/characters/adinia/front.svg",
  16697. extra: 1845 / 1672,
  16698. bottom: 0.02
  16699. }
  16700. },
  16701. back: {
  16702. height: math.unit(6, "feet"),
  16703. weight: math.unit(150, "lb"),
  16704. name: "Back",
  16705. image: {
  16706. source: "./media/characters/adinia/back.svg",
  16707. extra: 1845 / 1672,
  16708. bottom: 0.002
  16709. }
  16710. },
  16711. },
  16712. [
  16713. {
  16714. name: "Normal",
  16715. height: math.unit(11 + 5 / 12, "feet"),
  16716. default: true
  16717. },
  16718. ]
  16719. ))
  16720. characterMakers.push(() => makeCharacter(
  16721. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16722. {
  16723. front: {
  16724. height: math.unit(3, "meters"),
  16725. weight: math.unit(200, "kg"),
  16726. name: "Front",
  16727. image: {
  16728. source: "./media/characters/lykasa/front.svg",
  16729. extra: 1076 / 976,
  16730. bottom: 0.06
  16731. }
  16732. },
  16733. },
  16734. [
  16735. {
  16736. name: "Normal",
  16737. height: math.unit(3, "meters")
  16738. },
  16739. {
  16740. name: "Kaiju",
  16741. height: math.unit(120, "meters"),
  16742. default: true
  16743. },
  16744. {
  16745. name: "Mega Kaiju",
  16746. height: math.unit(240, "km")
  16747. },
  16748. {
  16749. name: "Giga Kaiju",
  16750. height: math.unit(400, "megameters")
  16751. },
  16752. {
  16753. name: "Tera Kaiju",
  16754. height: math.unit(800, "gigameters")
  16755. },
  16756. {
  16757. name: "Kaiju Dragon Goddess",
  16758. height: math.unit(26, "zettaparsecs")
  16759. },
  16760. ]
  16761. ))
  16762. characterMakers.push(() => makeCharacter(
  16763. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16764. {
  16765. side: {
  16766. height: math.unit(283 / 124 * 6, "feet"),
  16767. weight: math.unit(35000, "lb"),
  16768. name: "Side",
  16769. image: {
  16770. source: "./media/characters/malfaren/side.svg",
  16771. extra: 2500 / 1010,
  16772. bottom: 0.01
  16773. }
  16774. },
  16775. front: {
  16776. height: math.unit(22.36, "feet"),
  16777. weight: math.unit(35000, "lb"),
  16778. name: "Front",
  16779. image: {
  16780. source: "./media/characters/malfaren/front.svg",
  16781. extra: 1631 / 1476,
  16782. bottom: 0.01
  16783. }
  16784. },
  16785. maw: {
  16786. height: math.unit(6.9, "feet"),
  16787. name: "Maw",
  16788. image: {
  16789. source: "./media/characters/malfaren/maw.svg"
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Big",
  16796. height: math.unit(283 / 162 * 6, "feet"),
  16797. },
  16798. {
  16799. name: "Bigger",
  16800. height: math.unit(283 / 124 * 6, "feet")
  16801. },
  16802. {
  16803. name: "Massive",
  16804. height: math.unit(283 / 92 * 6, "feet"),
  16805. default: true
  16806. },
  16807. {
  16808. name: "👀💦",
  16809. height: math.unit(283 / 73 * 6, "feet"),
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16815. {
  16816. front: {
  16817. height: math.unit(1.7, "m"),
  16818. weight: math.unit(70, "kg"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/kernel/front.svg",
  16822. extra: 222 / 210,
  16823. bottom: 0.007
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Nano",
  16830. height: math.unit(17, "micrometers")
  16831. },
  16832. {
  16833. name: "Micro",
  16834. height: math.unit(1.7, "mm")
  16835. },
  16836. {
  16837. name: "Small",
  16838. height: math.unit(1.7, "cm")
  16839. },
  16840. {
  16841. name: "Normal",
  16842. height: math.unit(1.7, "m"),
  16843. default: true
  16844. },
  16845. ]
  16846. ))
  16847. characterMakers.push(() => makeCharacter(
  16848. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16849. {
  16850. front: {
  16851. height: math.unit(1.75, "meters"),
  16852. weight: math.unit(65, "kg"),
  16853. name: "Front",
  16854. image: {
  16855. source: "./media/characters/jayne-folest/front.svg",
  16856. extra: 2115 / 2007,
  16857. bottom: 0.02
  16858. }
  16859. },
  16860. back: {
  16861. height: math.unit(1.75, "meters"),
  16862. weight: math.unit(65, "kg"),
  16863. name: "Back",
  16864. image: {
  16865. source: "./media/characters/jayne-folest/back.svg",
  16866. extra: 2115 / 2007,
  16867. bottom: 0.005
  16868. }
  16869. },
  16870. frontClothed: {
  16871. height: math.unit(1.75, "meters"),
  16872. weight: math.unit(65, "kg"),
  16873. name: "Front (Clothed)",
  16874. image: {
  16875. source: "./media/characters/jayne-folest/front-clothed.svg",
  16876. extra: 2115 / 2007,
  16877. bottom: 0.035
  16878. }
  16879. },
  16880. hand: {
  16881. height: math.unit(1 / 1.260, "feet"),
  16882. name: "Hand",
  16883. image: {
  16884. source: "./media/characters/jayne-folest/hand.svg"
  16885. }
  16886. },
  16887. foot: {
  16888. height: math.unit(1 / 0.918, "feet"),
  16889. name: "Foot",
  16890. image: {
  16891. source: "./media/characters/jayne-folest/foot.svg"
  16892. }
  16893. },
  16894. },
  16895. [
  16896. {
  16897. name: "Micro",
  16898. height: math.unit(4, "cm")
  16899. },
  16900. {
  16901. name: "Normal",
  16902. height: math.unit(1.75, "meters")
  16903. },
  16904. {
  16905. name: "Macro",
  16906. height: math.unit(47.5, "meters"),
  16907. default: true
  16908. },
  16909. ]
  16910. ))
  16911. characterMakers.push(() => makeCharacter(
  16912. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16913. {
  16914. front: {
  16915. height: math.unit(180, "cm"),
  16916. weight: math.unit(70, "kg"),
  16917. name: "Front",
  16918. image: {
  16919. source: "./media/characters/algier/front.svg",
  16920. extra: 596 / 572,
  16921. bottom: 0.04
  16922. }
  16923. },
  16924. back: {
  16925. height: math.unit(180, "cm"),
  16926. weight: math.unit(70, "kg"),
  16927. name: "Back",
  16928. image: {
  16929. source: "./media/characters/algier/back.svg",
  16930. extra: 596 / 572,
  16931. bottom: 0.025
  16932. }
  16933. },
  16934. frontdressed: {
  16935. height: math.unit(180, "cm"),
  16936. weight: math.unit(150, "kg"),
  16937. name: "Front-dressed",
  16938. image: {
  16939. source: "./media/characters/algier/front-dressed.svg",
  16940. extra: 596 / 572,
  16941. bottom: 0.038
  16942. }
  16943. },
  16944. },
  16945. [
  16946. {
  16947. name: "Micro",
  16948. height: math.unit(5, "cm")
  16949. },
  16950. {
  16951. name: "Normal",
  16952. height: math.unit(180, "cm"),
  16953. default: true
  16954. },
  16955. {
  16956. name: "Macro",
  16957. height: math.unit(64, "m")
  16958. },
  16959. ]
  16960. ))
  16961. characterMakers.push(() => makeCharacter(
  16962. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16963. {
  16964. upright: {
  16965. height: math.unit(7, "feet"),
  16966. weight: math.unit(300, "lb"),
  16967. name: "Upright",
  16968. image: {
  16969. source: "./media/characters/pretzel/upright.svg",
  16970. extra: 534 / 522,
  16971. bottom: 0.065
  16972. }
  16973. },
  16974. sprawling: {
  16975. height: math.unit(3.75, "feet"),
  16976. weight: math.unit(300, "lb"),
  16977. name: "Sprawling",
  16978. image: {
  16979. source: "./media/characters/pretzel/sprawling.svg",
  16980. extra: 314 / 281,
  16981. bottom: 0.1
  16982. }
  16983. },
  16984. tongue: {
  16985. height: math.unit(2, "feet"),
  16986. name: "Tongue",
  16987. image: {
  16988. source: "./media/characters/pretzel/tongue.svg"
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Normal",
  16995. height: math.unit(7, "feet"),
  16996. default: true
  16997. },
  16998. {
  16999. name: "Oversized",
  17000. height: math.unit(15, "feet")
  17001. },
  17002. {
  17003. name: "Huge",
  17004. height: math.unit(30, "feet")
  17005. },
  17006. {
  17007. name: "Macro",
  17008. height: math.unit(250, "feet")
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17014. {
  17015. sideFront: {
  17016. height: math.unit(5 + 2 / 12, "feet"),
  17017. weight: math.unit(120, "lb"),
  17018. name: "Front Side",
  17019. image: {
  17020. source: "./media/characters/roxi/side-front.svg",
  17021. extra: 2924 / 2717,
  17022. bottom: 0.08
  17023. }
  17024. },
  17025. sideBack: {
  17026. height: math.unit(5 + 2 / 12, "feet"),
  17027. weight: math.unit(120, "lb"),
  17028. name: "Back Side",
  17029. image: {
  17030. source: "./media/characters/roxi/side-back.svg",
  17031. extra: 2904 / 2693,
  17032. bottom: 0.06
  17033. }
  17034. },
  17035. front: {
  17036. height: math.unit(5 + 2 / 12, "feet"),
  17037. weight: math.unit(120, "lb"),
  17038. name: "Front",
  17039. image: {
  17040. source: "./media/characters/roxi/front.svg",
  17041. extra: 2028 / 1907,
  17042. bottom: 0.01
  17043. }
  17044. },
  17045. frontAlt: {
  17046. height: math.unit(5 + 2 / 12, "feet"),
  17047. weight: math.unit(120, "lb"),
  17048. name: "Front (Alt)",
  17049. image: {
  17050. source: "./media/characters/roxi/front-alt.svg",
  17051. extra: 1828 / 1798,
  17052. bottom: 0.01
  17053. }
  17054. },
  17055. sitting: {
  17056. height: math.unit(2.8, "feet"),
  17057. weight: math.unit(120, "lb"),
  17058. name: "Sitting",
  17059. image: {
  17060. source: "./media/characters/roxi/sitting.svg",
  17061. extra: 2660 / 2462,
  17062. bottom: 0.1
  17063. }
  17064. },
  17065. },
  17066. [
  17067. {
  17068. name: "Normal",
  17069. height: math.unit(5 + 2 / 12, "feet"),
  17070. default: true
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17076. {
  17077. side: {
  17078. height: math.unit(55, "feet"),
  17079. weight: math.unit(153, "tons"),
  17080. name: "Side",
  17081. image: {
  17082. source: "./media/characters/shadow/side.svg",
  17083. extra: 701 / 628,
  17084. bottom: 0.02
  17085. }
  17086. },
  17087. flying: {
  17088. height: math.unit(145, "feet"),
  17089. weight: math.unit(153, "tons"),
  17090. name: "Flying",
  17091. image: {
  17092. source: "./media/characters/shadow/flying.svg"
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Normal",
  17099. height: math.unit(55, "feet"),
  17100. default: true
  17101. },
  17102. ]
  17103. ))
  17104. characterMakers.push(() => makeCharacter(
  17105. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17106. {
  17107. front: {
  17108. height: math.unit(6, "feet"),
  17109. weight: math.unit(200, "lb"),
  17110. name: "Front",
  17111. image: {
  17112. source: "./media/characters/marcie/front.svg",
  17113. extra: 960 / 876,
  17114. bottom: 58 / 1017.87
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Macro",
  17121. height: math.unit(1, "mile"),
  17122. default: true
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17128. {
  17129. front: {
  17130. height: math.unit(7, "feet"),
  17131. weight: math.unit(200, "lb"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/kachina/front.svg",
  17135. extra: 1290.68 / 1119,
  17136. bottom: 36.5 / 1327.18
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(7, "feet"),
  17144. default: true
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17150. {
  17151. looking: {
  17152. height: math.unit(2, "meters"),
  17153. weight: math.unit(300, "kg"),
  17154. name: "Looking",
  17155. image: {
  17156. source: "./media/characters/kash/looking.svg",
  17157. extra: 474 / 344,
  17158. bottom: 0.03
  17159. }
  17160. },
  17161. side: {
  17162. height: math.unit(2, "meters"),
  17163. weight: math.unit(300, "kg"),
  17164. name: "Side",
  17165. image: {
  17166. source: "./media/characters/kash/side.svg",
  17167. extra: 302 / 251,
  17168. bottom: 0.03
  17169. }
  17170. },
  17171. front: {
  17172. height: math.unit(2, "meters"),
  17173. weight: math.unit(300, "kg"),
  17174. name: "Front",
  17175. image: {
  17176. source: "./media/characters/kash/front.svg",
  17177. extra: 495 / 360,
  17178. bottom: 0.015
  17179. }
  17180. },
  17181. },
  17182. [
  17183. {
  17184. name: "Normal",
  17185. height: math.unit(2, "meters"),
  17186. default: true
  17187. },
  17188. {
  17189. name: "Big",
  17190. height: math.unit(3, "meters")
  17191. },
  17192. {
  17193. name: "Large",
  17194. height: math.unit(5, "meters")
  17195. },
  17196. ]
  17197. ))
  17198. characterMakers.push(() => makeCharacter(
  17199. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17200. {
  17201. feeding: {
  17202. height: math.unit(6.7, "feet"),
  17203. weight: math.unit(350, "lb"),
  17204. name: "Feeding",
  17205. image: {
  17206. source: "./media/characters/lalim/feeding.svg",
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Normal",
  17213. height: math.unit(6.7, "feet"),
  17214. default: true
  17215. },
  17216. ]
  17217. ))
  17218. characterMakers.push(() => makeCharacter(
  17219. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17220. {
  17221. front: {
  17222. height: math.unit(9.5, "feet"),
  17223. weight: math.unit(600, "lb"),
  17224. name: "Front",
  17225. image: {
  17226. source: "./media/characters/de'vout/front.svg",
  17227. extra: 1443 / 1328,
  17228. bottom: 0.025
  17229. }
  17230. },
  17231. back: {
  17232. height: math.unit(9.5, "feet"),
  17233. weight: math.unit(600, "lb"),
  17234. name: "Back",
  17235. image: {
  17236. source: "./media/characters/de'vout/back.svg",
  17237. extra: 1443 / 1328
  17238. }
  17239. },
  17240. frontDressed: {
  17241. height: math.unit(9.5, "feet"),
  17242. weight: math.unit(600, "lb"),
  17243. name: "Front (Dressed",
  17244. image: {
  17245. source: "./media/characters/de'vout/front-dressed.svg",
  17246. extra: 1443 / 1328,
  17247. bottom: 0.025
  17248. }
  17249. },
  17250. backDressed: {
  17251. height: math.unit(9.5, "feet"),
  17252. weight: math.unit(600, "lb"),
  17253. name: "Back (Dressed",
  17254. image: {
  17255. source: "./media/characters/de'vout/back-dressed.svg",
  17256. extra: 1443 / 1328
  17257. }
  17258. },
  17259. },
  17260. [
  17261. {
  17262. name: "Normal",
  17263. height: math.unit(9.5, "feet"),
  17264. default: true
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17270. {
  17271. front: {
  17272. height: math.unit(8, "feet"),
  17273. weight: math.unit(225, "lb"),
  17274. name: "Front",
  17275. image: {
  17276. source: "./media/characters/talana/front.svg",
  17277. extra: 1410 / 1300,
  17278. bottom: 0.015
  17279. }
  17280. },
  17281. frontDressed: {
  17282. height: math.unit(8, "feet"),
  17283. weight: math.unit(225, "lb"),
  17284. name: "Front (Dressed",
  17285. image: {
  17286. source: "./media/characters/talana/front-dressed.svg",
  17287. extra: 1410 / 1300,
  17288. bottom: 0.015
  17289. }
  17290. },
  17291. },
  17292. [
  17293. {
  17294. name: "Normal",
  17295. height: math.unit(8, "feet"),
  17296. default: true
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17302. {
  17303. side: {
  17304. height: math.unit(7.2, "feet"),
  17305. weight: math.unit(150, "lb"),
  17306. name: "Side",
  17307. image: {
  17308. source: "./media/characters/xeauvok/side.svg",
  17309. extra: 1975 / 1523,
  17310. bottom: 0.07
  17311. }
  17312. },
  17313. },
  17314. [
  17315. {
  17316. name: "Normal",
  17317. height: math.unit(7.2, "feet"),
  17318. default: true
  17319. },
  17320. ]
  17321. ))
  17322. characterMakers.push(() => makeCharacter(
  17323. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17324. {
  17325. side: {
  17326. height: math.unit(10, "feet"),
  17327. weight: math.unit(900, "kg"),
  17328. name: "Side",
  17329. image: {
  17330. source: "./media/characters/zara/side.svg",
  17331. extra: 504 / 498
  17332. }
  17333. },
  17334. },
  17335. [
  17336. {
  17337. name: "Normal",
  17338. height: math.unit(10, "feet"),
  17339. default: true
  17340. },
  17341. ]
  17342. ))
  17343. characterMakers.push(() => makeCharacter(
  17344. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17345. {
  17346. side: {
  17347. height: math.unit(6, "feet"),
  17348. weight: math.unit(150, "lb"),
  17349. name: "Side",
  17350. image: {
  17351. source: "./media/characters/richard-dragon/side.svg",
  17352. extra: 845 / 340,
  17353. bottom: 0.017
  17354. }
  17355. },
  17356. maw: {
  17357. height: math.unit(2.97, "feet"),
  17358. name: "Maw",
  17359. image: {
  17360. source: "./media/characters/richard-dragon/maw.svg"
  17361. }
  17362. },
  17363. },
  17364. [
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17369. {
  17370. front: {
  17371. height: math.unit(4, "feet"),
  17372. weight: math.unit(100, "lb"),
  17373. name: "Front",
  17374. image: {
  17375. source: "./media/characters/richard-smeargle/front.svg",
  17376. extra: 2952 / 2820,
  17377. bottom: 0.028
  17378. }
  17379. },
  17380. },
  17381. [
  17382. {
  17383. name: "Normal",
  17384. height: math.unit(4, "feet"),
  17385. default: true
  17386. },
  17387. {
  17388. name: "Dynamax",
  17389. height: math.unit(20, "meters")
  17390. },
  17391. ]
  17392. ))
  17393. characterMakers.push(() => makeCharacter(
  17394. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17395. {
  17396. front: {
  17397. height: math.unit(6, "feet"),
  17398. weight: math.unit(110, "lb"),
  17399. name: "Front",
  17400. image: {
  17401. source: "./media/characters/klay/front.svg",
  17402. extra: 962 / 883,
  17403. bottom: 0.04
  17404. }
  17405. },
  17406. back: {
  17407. height: math.unit(6, "feet"),
  17408. weight: math.unit(110, "lb"),
  17409. name: "Back",
  17410. image: {
  17411. source: "./media/characters/klay/back.svg",
  17412. extra: 962 / 883
  17413. }
  17414. },
  17415. beans: {
  17416. height: math.unit(1.15, "feet"),
  17417. name: "Beans",
  17418. image: {
  17419. source: "./media/characters/klay/beans.svg"
  17420. }
  17421. },
  17422. },
  17423. [
  17424. {
  17425. name: "Micro",
  17426. height: math.unit(6, "inches")
  17427. },
  17428. {
  17429. name: "Mini",
  17430. height: math.unit(3, "feet")
  17431. },
  17432. {
  17433. name: "Normal",
  17434. height: math.unit(6, "feet"),
  17435. default: true
  17436. },
  17437. {
  17438. name: "Big",
  17439. height: math.unit(25, "feet")
  17440. },
  17441. {
  17442. name: "Macro",
  17443. height: math.unit(100, "feet")
  17444. },
  17445. {
  17446. name: "Megamacro",
  17447. height: math.unit(400, "feet")
  17448. },
  17449. ]
  17450. ))
  17451. characterMakers.push(() => makeCharacter(
  17452. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17453. {
  17454. front: {
  17455. height: math.unit(6, "feet"),
  17456. weight: math.unit(160, "lb"),
  17457. name: "Front",
  17458. image: {
  17459. source: "./media/characters/marcus/front.svg",
  17460. extra: 734 / 676,
  17461. bottom: 0.03
  17462. }
  17463. },
  17464. },
  17465. [
  17466. {
  17467. name: "Little",
  17468. height: math.unit(6, "feet")
  17469. },
  17470. {
  17471. name: "Normal",
  17472. height: math.unit(110, "feet"),
  17473. default: true
  17474. },
  17475. {
  17476. name: "Macro",
  17477. height: math.unit(250, "feet")
  17478. },
  17479. {
  17480. name: "Megamacro",
  17481. height: math.unit(1000, "feet")
  17482. },
  17483. ]
  17484. ))
  17485. characterMakers.push(() => makeCharacter(
  17486. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17487. {
  17488. front: {
  17489. height: math.unit(7, "feet"),
  17490. weight: math.unit(275, "lb"),
  17491. name: "Front",
  17492. image: {
  17493. source: "./media/characters/claude-delroute/front.svg",
  17494. extra: 230 / 214,
  17495. bottom: 0.007
  17496. }
  17497. },
  17498. side: {
  17499. height: math.unit(7, "feet"),
  17500. weight: math.unit(275, "lb"),
  17501. name: "Side",
  17502. image: {
  17503. source: "./media/characters/claude-delroute/side.svg",
  17504. extra: 222 / 214,
  17505. bottom: 0.01
  17506. }
  17507. },
  17508. back: {
  17509. height: math.unit(7, "feet"),
  17510. weight: math.unit(275, "lb"),
  17511. name: "Back",
  17512. image: {
  17513. source: "./media/characters/claude-delroute/back.svg",
  17514. extra: 230 / 214,
  17515. bottom: 0.015
  17516. }
  17517. },
  17518. maw: {
  17519. height: math.unit(0.6407, "meters"),
  17520. name: "Maw",
  17521. image: {
  17522. source: "./media/characters/claude-delroute/maw.svg"
  17523. }
  17524. },
  17525. },
  17526. [
  17527. {
  17528. name: "Normal",
  17529. height: math.unit(7, "feet"),
  17530. default: true
  17531. },
  17532. {
  17533. name: "Lorge",
  17534. height: math.unit(20, "feet")
  17535. },
  17536. ]
  17537. ))
  17538. characterMakers.push(() => makeCharacter(
  17539. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17540. {
  17541. front: {
  17542. height: math.unit(8 + 4 / 12, "feet"),
  17543. weight: math.unit(600, "lb"),
  17544. name: "Front",
  17545. image: {
  17546. source: "./media/characters/dragonien/front.svg",
  17547. extra: 100 / 94,
  17548. bottom: 3.3 / 103.3445
  17549. }
  17550. },
  17551. back: {
  17552. height: math.unit(8 + 4 / 12, "feet"),
  17553. weight: math.unit(600, "lb"),
  17554. name: "Back",
  17555. image: {
  17556. source: "./media/characters/dragonien/back.svg",
  17557. extra: 776 / 746,
  17558. bottom: 6.4 / 782.0616
  17559. }
  17560. },
  17561. foot: {
  17562. height: math.unit(1.54, "feet"),
  17563. name: "Foot",
  17564. image: {
  17565. source: "./media/characters/dragonien/foot.svg",
  17566. }
  17567. },
  17568. },
  17569. [
  17570. {
  17571. name: "Normal",
  17572. height: math.unit(8 + 4 / 12, "feet"),
  17573. default: true
  17574. },
  17575. {
  17576. name: "Macro",
  17577. height: math.unit(200, "feet")
  17578. },
  17579. {
  17580. name: "Megamacro",
  17581. height: math.unit(1, "mile")
  17582. },
  17583. {
  17584. name: "Gigamacro",
  17585. height: math.unit(1000, "miles")
  17586. },
  17587. ]
  17588. ))
  17589. characterMakers.push(() => makeCharacter(
  17590. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17591. {
  17592. front: {
  17593. height: math.unit(5 + 2 / 12, "feet"),
  17594. weight: math.unit(110, "lb"),
  17595. name: "Front",
  17596. image: {
  17597. source: "./media/characters/desta/front.svg",
  17598. extra: 767 / 726,
  17599. bottom: 11.7 / 779
  17600. }
  17601. },
  17602. back: {
  17603. height: math.unit(5 + 2 / 12, "feet"),
  17604. weight: math.unit(110, "lb"),
  17605. name: "Back",
  17606. image: {
  17607. source: "./media/characters/desta/back.svg",
  17608. extra: 777 / 728,
  17609. bottom: 6 / 784
  17610. }
  17611. },
  17612. frontAlt: {
  17613. height: math.unit(5 + 2 / 12, "feet"),
  17614. weight: math.unit(110, "lb"),
  17615. name: "Front",
  17616. image: {
  17617. source: "./media/characters/desta/front-alt.svg",
  17618. extra: 1482 / 1417
  17619. }
  17620. },
  17621. side: {
  17622. height: math.unit(5 + 2 / 12, "feet"),
  17623. weight: math.unit(110, "lb"),
  17624. name: "Side",
  17625. image: {
  17626. source: "./media/characters/desta/side.svg",
  17627. extra: 2579 / 2491,
  17628. bottom: 0.053
  17629. }
  17630. },
  17631. },
  17632. [
  17633. {
  17634. name: "Micro",
  17635. height: math.unit(6, "inches")
  17636. },
  17637. {
  17638. name: "Normal",
  17639. height: math.unit(5 + 2 / 12, "feet"),
  17640. default: true
  17641. },
  17642. {
  17643. name: "Macro",
  17644. height: math.unit(62, "feet")
  17645. },
  17646. {
  17647. name: "Megamacro",
  17648. height: math.unit(1800, "feet")
  17649. },
  17650. ]
  17651. ))
  17652. characterMakers.push(() => makeCharacter(
  17653. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17654. {
  17655. front: {
  17656. height: math.unit(10, "feet"),
  17657. weight: math.unit(700, "lb"),
  17658. name: "Front",
  17659. image: {
  17660. source: "./media/characters/storm-alystar/front.svg",
  17661. extra: 2112 / 1898,
  17662. bottom: 0.034
  17663. }
  17664. },
  17665. },
  17666. [
  17667. {
  17668. name: "Micro",
  17669. height: math.unit(3.5, "inches")
  17670. },
  17671. {
  17672. name: "Normal",
  17673. height: math.unit(10, "feet"),
  17674. default: true
  17675. },
  17676. {
  17677. name: "Macro",
  17678. height: math.unit(400, "feet")
  17679. },
  17680. {
  17681. name: "Deific",
  17682. height: math.unit(60, "miles")
  17683. },
  17684. ]
  17685. ))
  17686. characterMakers.push(() => makeCharacter(
  17687. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17688. {
  17689. front: {
  17690. height: math.unit(2.35, "meters"),
  17691. weight: math.unit(119, "kg"),
  17692. name: "Front",
  17693. image: {
  17694. source: "./media/characters/ilia/front.svg",
  17695. extra: 1285 / 1255,
  17696. bottom: 0.06
  17697. }
  17698. },
  17699. },
  17700. [
  17701. {
  17702. name: "Normal",
  17703. height: math.unit(2.35, "meters")
  17704. },
  17705. {
  17706. name: "Macro",
  17707. height: math.unit(140, "meters"),
  17708. default: true
  17709. },
  17710. {
  17711. name: "Megamacro",
  17712. height: math.unit(100, "miles")
  17713. },
  17714. ]
  17715. ))
  17716. characterMakers.push(() => makeCharacter(
  17717. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17718. {
  17719. front: {
  17720. height: math.unit(6 + 5 / 12, "feet"),
  17721. weight: math.unit(190, "lb"),
  17722. name: "Front",
  17723. image: {
  17724. source: "./media/characters/kingdead/front.svg",
  17725. extra: 1228 / 1177
  17726. }
  17727. },
  17728. },
  17729. [
  17730. {
  17731. name: "Micro",
  17732. height: math.unit(7, "inches")
  17733. },
  17734. {
  17735. name: "Normal",
  17736. height: math.unit(6 + 5 / 12, "feet")
  17737. },
  17738. {
  17739. name: "Macro",
  17740. height: math.unit(150, "feet"),
  17741. default: true
  17742. },
  17743. {
  17744. name: "Megamacro",
  17745. height: math.unit(200, "miles")
  17746. },
  17747. ]
  17748. ))
  17749. characterMakers.push(() => makeCharacter(
  17750. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17751. {
  17752. front: {
  17753. height: math.unit(8, "feet"),
  17754. weight: math.unit(600, "lb"),
  17755. name: "Front",
  17756. image: {
  17757. source: "./media/characters/kyrehx/front.svg",
  17758. extra: 1195 / 1095,
  17759. bottom: 0.034
  17760. }
  17761. },
  17762. },
  17763. [
  17764. {
  17765. name: "Micro",
  17766. height: math.unit(2, "inches")
  17767. },
  17768. {
  17769. name: "Normal",
  17770. height: math.unit(8, "feet"),
  17771. default: true
  17772. },
  17773. {
  17774. name: "Macro",
  17775. height: math.unit(255, "feet")
  17776. },
  17777. ]
  17778. ))
  17779. characterMakers.push(() => makeCharacter(
  17780. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17781. {
  17782. front: {
  17783. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17784. weight: math.unit(184, "lb"),
  17785. name: "Front",
  17786. image: {
  17787. source: "./media/characters/xang/front.svg",
  17788. extra: 845 / 755
  17789. }
  17790. },
  17791. },
  17792. [
  17793. {
  17794. name: "Normal",
  17795. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17796. default: true
  17797. },
  17798. {
  17799. name: "Macro",
  17800. height: math.unit(0.935 * 146, "feet")
  17801. },
  17802. {
  17803. name: "Megamacro",
  17804. height: math.unit(0.935 * 3, "miles")
  17805. },
  17806. ]
  17807. ))
  17808. characterMakers.push(() => makeCharacter(
  17809. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17810. {
  17811. frontDressed: {
  17812. height: math.unit(5 + 7 / 12, "feet"),
  17813. weight: math.unit(140, "lb"),
  17814. name: "Front (Dressed)",
  17815. image: {
  17816. source: "./media/characters/doc-weardno/front-dressed.svg",
  17817. extra: 263 / 234
  17818. }
  17819. },
  17820. backDressed: {
  17821. height: math.unit(5 + 7 / 12, "feet"),
  17822. weight: math.unit(140, "lb"),
  17823. name: "Back (Dressed)",
  17824. image: {
  17825. source: "./media/characters/doc-weardno/back-dressed.svg",
  17826. extra: 266 / 238
  17827. }
  17828. },
  17829. front: {
  17830. height: math.unit(5 + 7 / 12, "feet"),
  17831. weight: math.unit(140, "lb"),
  17832. name: "Front",
  17833. image: {
  17834. source: "./media/characters/doc-weardno/front.svg",
  17835. extra: 254 / 233
  17836. }
  17837. },
  17838. },
  17839. [
  17840. {
  17841. name: "Micro",
  17842. height: math.unit(3, "inches")
  17843. },
  17844. {
  17845. name: "Normal",
  17846. height: math.unit(5 + 7 / 12, "feet"),
  17847. default: true
  17848. },
  17849. {
  17850. name: "Macro",
  17851. height: math.unit(25, "feet")
  17852. },
  17853. {
  17854. name: "Megamacro",
  17855. height: math.unit(2, "miles")
  17856. },
  17857. ]
  17858. ))
  17859. characterMakers.push(() => makeCharacter(
  17860. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17861. {
  17862. front: {
  17863. height: math.unit(6 + 2 / 12, "feet"),
  17864. weight: math.unit(153, "lb"),
  17865. name: "Front",
  17866. image: {
  17867. source: "./media/characters/seth-whilst/front.svg",
  17868. bottom: 0.07
  17869. }
  17870. },
  17871. },
  17872. [
  17873. {
  17874. name: "Micro",
  17875. height: math.unit(5, "inches")
  17876. },
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(6 + 2 / 12, "feet"),
  17880. default: true
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(3, "inches"),
  17889. weight: math.unit(8, "grams"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/pocket-jabari/front.svg",
  17893. extra: 1024 / 974,
  17894. bottom: 0.039
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Minimicro",
  17901. height: math.unit(8, "mm")
  17902. },
  17903. {
  17904. name: "Micro",
  17905. height: math.unit(3, "inches"),
  17906. default: true
  17907. },
  17908. {
  17909. name: "Normal",
  17910. height: math.unit(3, "feet")
  17911. },
  17912. ]
  17913. ))
  17914. characterMakers.push(() => makeCharacter(
  17915. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17916. {
  17917. front: {
  17918. height: math.unit(15, "feet"),
  17919. weight: math.unit(3280, "lb"),
  17920. name: "Front",
  17921. image: {
  17922. source: "./media/characters/sapphy/front.svg",
  17923. extra: 671 / 577,
  17924. bottom: 0.085
  17925. }
  17926. },
  17927. back: {
  17928. height: math.unit(15, "feet"),
  17929. weight: math.unit(3280, "lb"),
  17930. name: "Back",
  17931. image: {
  17932. source: "./media/characters/sapphy/back.svg",
  17933. extra: 631 / 607,
  17934. bottom: 0.045
  17935. }
  17936. },
  17937. },
  17938. [
  17939. {
  17940. name: "Normal",
  17941. height: math.unit(15, "feet")
  17942. },
  17943. {
  17944. name: "Casual Macro",
  17945. height: math.unit(120, "feet")
  17946. },
  17947. {
  17948. name: "Macro",
  17949. height: math.unit(2150, "feet"),
  17950. default: true
  17951. },
  17952. {
  17953. name: "Megamacro",
  17954. height: math.unit(8, "miles")
  17955. },
  17956. {
  17957. name: "Galaxy Mom",
  17958. height: math.unit(6, "megalightyears")
  17959. },
  17960. ]
  17961. ))
  17962. characterMakers.push(() => makeCharacter(
  17963. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17964. {
  17965. front: {
  17966. height: math.unit(6, "feet"),
  17967. weight: math.unit(170, "lb"),
  17968. name: "Front",
  17969. image: {
  17970. source: "./media/characters/kiro/front.svg",
  17971. extra: 1064 / 1012,
  17972. bottom: 0.052
  17973. }
  17974. },
  17975. },
  17976. [
  17977. {
  17978. name: "Micro",
  17979. height: math.unit(6, "inches")
  17980. },
  17981. {
  17982. name: "Normal",
  17983. height: math.unit(6, "feet"),
  17984. default: true
  17985. },
  17986. {
  17987. name: "Macro",
  17988. height: math.unit(72, "feet")
  17989. },
  17990. ]
  17991. ))
  17992. characterMakers.push(() => makeCharacter(
  17993. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17994. {
  17995. front: {
  17996. height: math.unit(5 + 9 / 12, "feet"),
  17997. weight: math.unit(175, "lb"),
  17998. name: "Front",
  17999. image: {
  18000. source: "./media/characters/irishfox/front.svg",
  18001. extra: 1912 / 1680,
  18002. bottom: 0.02
  18003. }
  18004. },
  18005. },
  18006. [
  18007. {
  18008. name: "Nano",
  18009. height: math.unit(1, "mm")
  18010. },
  18011. {
  18012. name: "Micro",
  18013. height: math.unit(2, "inches")
  18014. },
  18015. {
  18016. name: "Normal",
  18017. height: math.unit(5 + 9 / 12, "feet"),
  18018. default: true
  18019. },
  18020. {
  18021. name: "Macro",
  18022. height: math.unit(45, "feet")
  18023. },
  18024. ]
  18025. ))
  18026. characterMakers.push(() => makeCharacter(
  18027. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18028. {
  18029. front: {
  18030. height: math.unit(6 + 1 / 12, "feet"),
  18031. weight: math.unit(150, "lb"),
  18032. name: "Front",
  18033. image: {
  18034. source: "./media/characters/aronai-sieyes/front.svg",
  18035. extra: 1556 / 1480,
  18036. bottom: 0.015
  18037. }
  18038. },
  18039. side: {
  18040. height: math.unit(6 + 1 / 12, "feet"),
  18041. weight: math.unit(150, "lb"),
  18042. name: "Side",
  18043. image: {
  18044. source: "./media/characters/aronai-sieyes/side.svg",
  18045. extra: 1433 / 1390,
  18046. bottom: 0.0393
  18047. }
  18048. },
  18049. back: {
  18050. height: math.unit(6 + 1 / 12, "feet"),
  18051. weight: math.unit(150, "lb"),
  18052. name: "Back",
  18053. image: {
  18054. source: "./media/characters/aronai-sieyes/back.svg",
  18055. extra: 1544 / 1494,
  18056. bottom: 0.02
  18057. }
  18058. },
  18059. frontClothed: {
  18060. height: math.unit(6 + 1 / 12, "feet"),
  18061. weight: math.unit(150, "lb"),
  18062. name: "Front (Clothed)",
  18063. image: {
  18064. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18065. extra: 1582 / 1527
  18066. }
  18067. },
  18068. feral: {
  18069. height: math.unit(18, "feet"),
  18070. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18071. name: "Feral",
  18072. image: {
  18073. source: "./media/characters/aronai-sieyes/feral.svg",
  18074. extra: 1530 / 1240,
  18075. bottom: 0.035
  18076. }
  18077. },
  18078. },
  18079. [
  18080. {
  18081. name: "Micro",
  18082. height: math.unit(2, "inches")
  18083. },
  18084. {
  18085. name: "Normal",
  18086. height: math.unit(6 + 1 / 12, "feet"),
  18087. default: true
  18088. }
  18089. ]
  18090. ))
  18091. characterMakers.push(() => makeCharacter(
  18092. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18093. {
  18094. front: {
  18095. height: math.unit(12, "feet"),
  18096. weight: math.unit(410, "kg"),
  18097. name: "Front",
  18098. image: {
  18099. source: "./media/characters/xuna/front.svg",
  18100. extra: 2184 / 1980
  18101. }
  18102. },
  18103. side: {
  18104. height: math.unit(12, "feet"),
  18105. weight: math.unit(410, "kg"),
  18106. name: "Side",
  18107. image: {
  18108. source: "./media/characters/xuna/side.svg",
  18109. extra: 2184 / 1980
  18110. }
  18111. },
  18112. back: {
  18113. height: math.unit(12, "feet"),
  18114. weight: math.unit(410, "kg"),
  18115. name: "Back",
  18116. image: {
  18117. source: "./media/characters/xuna/back.svg",
  18118. extra: 2184 / 1980
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Nano glow",
  18125. height: math.unit(10, "nm")
  18126. },
  18127. {
  18128. name: "Micro floof",
  18129. height: math.unit(0.3, "m")
  18130. },
  18131. {
  18132. name: "Huggable softy boi",
  18133. height: math.unit(3.6576, "m"),
  18134. default: true
  18135. },
  18136. {
  18137. name: "Admirable floof",
  18138. height: math.unit(80, "meters")
  18139. },
  18140. {
  18141. name: "Gentle macro",
  18142. height: math.unit(300, "meters")
  18143. },
  18144. {
  18145. name: "Very careful floof",
  18146. height: math.unit(3200, "meters")
  18147. },
  18148. {
  18149. name: "The mega floof",
  18150. height: math.unit(36000, "meters")
  18151. },
  18152. {
  18153. name: "Giga-fur-Wicker",
  18154. height: math.unit(4800000, "meters")
  18155. },
  18156. {
  18157. name: "Licky world",
  18158. height: math.unit(20000000, "meters")
  18159. },
  18160. {
  18161. name: "Floofy cyan sun",
  18162. height: math.unit(1500000000, "meters")
  18163. },
  18164. {
  18165. name: "Milky Wicker",
  18166. height: math.unit(1000000000000000000000, "meters")
  18167. },
  18168. {
  18169. name: "The observing Wicker",
  18170. height: math.unit(999999999999999999999999999, "meters")
  18171. },
  18172. ]
  18173. ))
  18174. characterMakers.push(() => makeCharacter(
  18175. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18176. {
  18177. front: {
  18178. height: math.unit(5 + 9 / 12, "feet"),
  18179. weight: math.unit(150, "lb"),
  18180. name: "Front",
  18181. image: {
  18182. source: "./media/characters/arokha-sieyes/front.svg",
  18183. extra: 1425 / 1284,
  18184. bottom: 0.05
  18185. }
  18186. },
  18187. },
  18188. [
  18189. {
  18190. name: "Normal",
  18191. height: math.unit(5 + 9 / 12, "feet")
  18192. },
  18193. {
  18194. name: "Macro",
  18195. height: math.unit(30, "meters"),
  18196. default: true
  18197. },
  18198. ]
  18199. ))
  18200. characterMakers.push(() => makeCharacter(
  18201. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18202. {
  18203. front: {
  18204. height: math.unit(6, "feet"),
  18205. weight: math.unit(180, "lb"),
  18206. name: "Front",
  18207. image: {
  18208. source: "./media/characters/arokh-sieyes/front.svg",
  18209. extra: 1830 / 1769,
  18210. bottom: 0.01
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Normal",
  18217. height: math.unit(6, "feet")
  18218. },
  18219. {
  18220. name: "Macro",
  18221. height: math.unit(30, "meters"),
  18222. default: true
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18228. {
  18229. side: {
  18230. height: math.unit(13 + 1 / 12, "feet"),
  18231. weight: math.unit(8.5, "tonnes"),
  18232. name: "Side",
  18233. image: {
  18234. source: "./media/characters/goldeneye/side.svg",
  18235. extra: 1182 / 778,
  18236. bottom: 0.067
  18237. }
  18238. },
  18239. paw: {
  18240. height: math.unit(3.4, "feet"),
  18241. name: "Paw",
  18242. image: {
  18243. source: "./media/characters/goldeneye/paw.svg"
  18244. }
  18245. },
  18246. },
  18247. [
  18248. {
  18249. name: "Normal",
  18250. height: math.unit(13 + 1 / 12, "feet"),
  18251. default: true
  18252. },
  18253. ]
  18254. ))
  18255. characterMakers.push(() => makeCharacter(
  18256. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18257. {
  18258. front: {
  18259. height: math.unit(6 + 1 / 12, "feet"),
  18260. weight: math.unit(210, "lb"),
  18261. name: "Front",
  18262. image: {
  18263. source: "./media/characters/leonardo-lycheborne/front.svg",
  18264. extra: 390 / 365,
  18265. bottom: 0.032
  18266. }
  18267. },
  18268. side: {
  18269. height: math.unit(6 + 1 / 12, "feet"),
  18270. weight: math.unit(210, "lb"),
  18271. name: "Side",
  18272. image: {
  18273. source: "./media/characters/leonardo-lycheborne/side.svg",
  18274. extra: 390 / 365,
  18275. bottom: 0.005
  18276. }
  18277. },
  18278. back: {
  18279. height: math.unit(6 + 1 / 12, "feet"),
  18280. weight: math.unit(210, "lb"),
  18281. name: "Back",
  18282. image: {
  18283. source: "./media/characters/leonardo-lycheborne/back.svg",
  18284. extra: 392 / 366,
  18285. bottom: 0.01
  18286. }
  18287. },
  18288. hand: {
  18289. height: math.unit(1.08, "feet"),
  18290. name: "Hand",
  18291. image: {
  18292. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18293. }
  18294. },
  18295. foot: {
  18296. height: math.unit(1.32, "feet"),
  18297. name: "Foot",
  18298. image: {
  18299. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18300. }
  18301. },
  18302. were: {
  18303. height: math.unit(20, "feet"),
  18304. weight: math.unit(7800, "lb"),
  18305. name: "Were",
  18306. image: {
  18307. source: "./media/characters/leonardo-lycheborne/were.svg",
  18308. extra: 308 / 294,
  18309. bottom: 0.048
  18310. }
  18311. },
  18312. feral: {
  18313. height: math.unit(7.5, "feet"),
  18314. weight: math.unit(600, "lb"),
  18315. name: "Feral",
  18316. image: {
  18317. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18318. extra: 210 / 186,
  18319. bottom: 0.108
  18320. }
  18321. },
  18322. taur: {
  18323. height: math.unit(11, "feet"),
  18324. weight: math.unit(3300, "lb"),
  18325. name: "Taur",
  18326. image: {
  18327. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18328. extra: 320 / 303,
  18329. bottom: 0.025
  18330. }
  18331. },
  18332. barghest: {
  18333. height: math.unit(11, "feet"),
  18334. weight: math.unit(1300, "lb"),
  18335. name: "Barghest",
  18336. image: {
  18337. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18338. extra: 323 / 302,
  18339. bottom: 0.027
  18340. }
  18341. },
  18342. dick: {
  18343. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18344. name: "Dick",
  18345. image: {
  18346. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18347. }
  18348. },
  18349. dickWere: {
  18350. height: math.unit((20) / 3.8, "feet"),
  18351. name: "Dick (Were)",
  18352. image: {
  18353. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18354. }
  18355. },
  18356. },
  18357. [
  18358. {
  18359. name: "Normal",
  18360. height: math.unit(6 + 1 / 12, "feet"),
  18361. default: true
  18362. },
  18363. ]
  18364. ))
  18365. characterMakers.push(() => makeCharacter(
  18366. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18367. {
  18368. front: {
  18369. height: math.unit(10, "feet"),
  18370. weight: math.unit(350, "lb"),
  18371. name: "Front",
  18372. image: {
  18373. source: "./media/characters/jet/front.svg",
  18374. extra: 2050 / 1980,
  18375. bottom: 0.013
  18376. }
  18377. },
  18378. back: {
  18379. height: math.unit(10, "feet"),
  18380. weight: math.unit(350, "lb"),
  18381. name: "Back",
  18382. image: {
  18383. source: "./media/characters/jet/back.svg",
  18384. extra: 2050 / 1980,
  18385. bottom: 0.013
  18386. }
  18387. },
  18388. },
  18389. [
  18390. {
  18391. name: "Micro",
  18392. height: math.unit(6, "inches")
  18393. },
  18394. {
  18395. name: "Normal",
  18396. height: math.unit(10, "feet"),
  18397. default: true
  18398. },
  18399. {
  18400. name: "Macro",
  18401. height: math.unit(100, "feet")
  18402. },
  18403. ]
  18404. ))
  18405. characterMakers.push(() => makeCharacter(
  18406. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18407. {
  18408. front: {
  18409. height: math.unit(15, "feet"),
  18410. weight: math.unit(2800, "lb"),
  18411. name: "Front",
  18412. image: {
  18413. source: "./media/characters/tanarath/front.svg",
  18414. extra: 2392 / 2220,
  18415. bottom: 0.03
  18416. }
  18417. },
  18418. back: {
  18419. height: math.unit(15, "feet"),
  18420. weight: math.unit(2800, "lb"),
  18421. name: "Back",
  18422. image: {
  18423. source: "./media/characters/tanarath/back.svg",
  18424. extra: 2392 / 2220,
  18425. bottom: 0.03
  18426. }
  18427. },
  18428. },
  18429. [
  18430. {
  18431. name: "Normal",
  18432. height: math.unit(15, "feet"),
  18433. default: true
  18434. },
  18435. ]
  18436. ))
  18437. characterMakers.push(() => makeCharacter(
  18438. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18439. {
  18440. front: {
  18441. height: math.unit(7 + 1 / 12, "feet"),
  18442. weight: math.unit(175, "lb"),
  18443. name: "Front",
  18444. image: {
  18445. source: "./media/characters/patty-cattybatty/front.svg",
  18446. extra: 908 / 874,
  18447. bottom: 0.025
  18448. }
  18449. },
  18450. },
  18451. [
  18452. {
  18453. name: "Micro",
  18454. height: math.unit(1, "inch")
  18455. },
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(7 + 1 / 12, "feet")
  18459. },
  18460. {
  18461. name: "Mini Macro",
  18462. height: math.unit(155, "feet")
  18463. },
  18464. {
  18465. name: "Macro",
  18466. height: math.unit(1077, "feet")
  18467. },
  18468. {
  18469. name: "Mega Macro",
  18470. height: math.unit(47650, "feet"),
  18471. default: true
  18472. },
  18473. {
  18474. name: "Giga Macro",
  18475. height: math.unit(440, "miles")
  18476. },
  18477. {
  18478. name: "Tera Macro",
  18479. height: math.unit(8700, "miles")
  18480. },
  18481. {
  18482. name: "Planetary Macro",
  18483. height: math.unit(32700, "miles")
  18484. },
  18485. {
  18486. name: "Solar Macro",
  18487. height: math.unit(550000, "miles")
  18488. },
  18489. {
  18490. name: "Celestial Macro",
  18491. height: math.unit(2.5, "AU")
  18492. },
  18493. ]
  18494. ))
  18495. characterMakers.push(() => makeCharacter(
  18496. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18497. {
  18498. front: {
  18499. height: math.unit(4 + 5 / 12, "feet"),
  18500. weight: math.unit(90, "lb"),
  18501. name: "Front",
  18502. image: {
  18503. source: "./media/characters/cappu/front.svg",
  18504. extra: 1247 / 1152,
  18505. bottom: 0.012
  18506. }
  18507. },
  18508. },
  18509. [
  18510. {
  18511. name: "Normal",
  18512. height: math.unit(4 + 5 / 12, "feet"),
  18513. default: true
  18514. },
  18515. ]
  18516. ))
  18517. characterMakers.push(() => makeCharacter(
  18518. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18519. {
  18520. frontDressed: {
  18521. height: math.unit(70, "cm"),
  18522. weight: math.unit(6, "kg"),
  18523. name: "Front (Dressed)",
  18524. image: {
  18525. source: "./media/characters/sebi/front-dressed.svg",
  18526. extra: 713.5 / 686.5,
  18527. bottom: 0.003
  18528. }
  18529. },
  18530. front: {
  18531. height: math.unit(70, "cm"),
  18532. weight: math.unit(5, "kg"),
  18533. name: "Front",
  18534. image: {
  18535. source: "./media/characters/sebi/front.svg",
  18536. extra: 713.5 / 686.5,
  18537. bottom: 0.003
  18538. }
  18539. }
  18540. },
  18541. [
  18542. {
  18543. name: "Normal",
  18544. height: math.unit(70, "cm"),
  18545. default: true
  18546. },
  18547. {
  18548. name: "Macro",
  18549. height: math.unit(8, "meters")
  18550. },
  18551. ]
  18552. ))
  18553. characterMakers.push(() => makeCharacter(
  18554. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18555. {
  18556. front: {
  18557. height: math.unit(6, "feet"),
  18558. weight: math.unit(150, "lb"),
  18559. name: "Front",
  18560. image: {
  18561. source: "./media/characters/typhek/front.svg",
  18562. extra: 1948 / 1929,
  18563. bottom: 0.025
  18564. }
  18565. },
  18566. side: {
  18567. height: math.unit(6, "feet"),
  18568. weight: math.unit(150, "lb"),
  18569. name: "Side",
  18570. image: {
  18571. source: "./media/characters/typhek/side.svg",
  18572. extra: 2034 / 2010,
  18573. bottom: 0.003
  18574. }
  18575. },
  18576. back: {
  18577. height: math.unit(6, "feet"),
  18578. weight: math.unit(150, "lb"),
  18579. name: "Back",
  18580. image: {
  18581. source: "./media/characters/typhek/back.svg",
  18582. extra: 2005 / 1978,
  18583. bottom: 0.004
  18584. }
  18585. },
  18586. palm: {
  18587. height: math.unit(1.2, "feet"),
  18588. name: "Palm",
  18589. image: {
  18590. source: "./media/characters/typhek/palm.svg"
  18591. }
  18592. },
  18593. fist: {
  18594. height: math.unit(1.1, "feet"),
  18595. name: "Fist",
  18596. image: {
  18597. source: "./media/characters/typhek/fist.svg"
  18598. }
  18599. },
  18600. foot: {
  18601. height: math.unit(1.57, "feet"),
  18602. name: "Foot",
  18603. image: {
  18604. source: "./media/characters/typhek/foot.svg"
  18605. }
  18606. },
  18607. sole: {
  18608. height: math.unit(2.05, "feet"),
  18609. name: "Sole",
  18610. image: {
  18611. source: "./media/characters/typhek/sole.svg"
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Macro",
  18618. height: math.unit(40, "stories"),
  18619. default: true
  18620. },
  18621. {
  18622. name: "Megamacro",
  18623. height: math.unit(1, "mile")
  18624. },
  18625. {
  18626. name: "Gigamacro",
  18627. height: math.unit(4000, "solarradii")
  18628. },
  18629. {
  18630. name: "Universal",
  18631. height: math.unit(1.1, "universes")
  18632. }
  18633. ]
  18634. ))
  18635. characterMakers.push(() => makeCharacter(
  18636. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18637. {
  18638. side: {
  18639. height: math.unit(5 + 7 / 12, "feet"),
  18640. weight: math.unit(150, "lb"),
  18641. name: "Side",
  18642. image: {
  18643. source: "./media/characters/kassy/side.svg",
  18644. extra: 1280 / 1225,
  18645. bottom: 0.002
  18646. }
  18647. },
  18648. front: {
  18649. height: math.unit(5 + 7 / 12, "feet"),
  18650. weight: math.unit(150, "lb"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/kassy/front.svg",
  18654. extra: 1280 / 1225,
  18655. bottom: 0.025
  18656. }
  18657. },
  18658. back: {
  18659. height: math.unit(5 + 7 / 12, "feet"),
  18660. weight: math.unit(150, "lb"),
  18661. name: "Back",
  18662. image: {
  18663. source: "./media/characters/kassy/back.svg",
  18664. extra: 1280 / 1225,
  18665. bottom: 0.002
  18666. }
  18667. },
  18668. foot: {
  18669. height: math.unit(1.266, "feet"),
  18670. name: "Foot",
  18671. image: {
  18672. source: "./media/characters/kassy/foot.svg"
  18673. }
  18674. },
  18675. },
  18676. [
  18677. {
  18678. name: "Normal",
  18679. height: math.unit(5 + 7 / 12, "feet")
  18680. },
  18681. {
  18682. name: "Macro",
  18683. height: math.unit(137, "feet"),
  18684. default: true
  18685. },
  18686. {
  18687. name: "Megamacro",
  18688. height: math.unit(1, "mile")
  18689. },
  18690. ]
  18691. ))
  18692. characterMakers.push(() => makeCharacter(
  18693. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18694. {
  18695. front: {
  18696. height: math.unit(6 + 1 / 12, "feet"),
  18697. weight: math.unit(200, "lb"),
  18698. name: "Front",
  18699. image: {
  18700. source: "./media/characters/neil/front.svg",
  18701. extra: 1326 / 1250,
  18702. bottom: 0.023
  18703. }
  18704. },
  18705. },
  18706. [
  18707. {
  18708. name: "Normal",
  18709. height: math.unit(6 + 1 / 12, "feet"),
  18710. default: true
  18711. },
  18712. {
  18713. name: "Macro",
  18714. height: math.unit(200, "feet")
  18715. },
  18716. ]
  18717. ))
  18718. characterMakers.push(() => makeCharacter(
  18719. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18720. {
  18721. front: {
  18722. height: math.unit(5 + 9 / 12, "feet"),
  18723. weight: math.unit(190, "lb"),
  18724. name: "Front",
  18725. image: {
  18726. source: "./media/characters/atticus/front.svg",
  18727. extra: 2934 / 2785,
  18728. bottom: 0.025
  18729. }
  18730. },
  18731. },
  18732. [
  18733. {
  18734. name: "Normal",
  18735. height: math.unit(5 + 9 / 12, "feet"),
  18736. default: true
  18737. },
  18738. {
  18739. name: "Macro",
  18740. height: math.unit(180, "feet")
  18741. },
  18742. ]
  18743. ))
  18744. characterMakers.push(() => makeCharacter(
  18745. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18746. {
  18747. side: {
  18748. height: math.unit(9, "feet"),
  18749. weight: math.unit(650, "lb"),
  18750. name: "Side",
  18751. image: {
  18752. source: "./media/characters/milo/side.svg",
  18753. extra: 2644 / 2310,
  18754. bottom: 0.032
  18755. }
  18756. },
  18757. },
  18758. [
  18759. {
  18760. name: "Normal",
  18761. height: math.unit(9, "feet"),
  18762. default: true
  18763. },
  18764. {
  18765. name: "Macro",
  18766. height: math.unit(300, "feet")
  18767. },
  18768. ]
  18769. ))
  18770. characterMakers.push(() => makeCharacter(
  18771. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18772. {
  18773. side: {
  18774. height: math.unit(8, "meters"),
  18775. weight: math.unit(90000, "kg"),
  18776. name: "Side",
  18777. image: {
  18778. source: "./media/characters/ijzer/side.svg",
  18779. extra: 2756 / 1600,
  18780. bottom: 0.01
  18781. }
  18782. },
  18783. },
  18784. [
  18785. {
  18786. name: "Small",
  18787. height: math.unit(3, "meters")
  18788. },
  18789. {
  18790. name: "Normal",
  18791. height: math.unit(8, "meters"),
  18792. default: true
  18793. },
  18794. {
  18795. name: "Normal+",
  18796. height: math.unit(10, "meters")
  18797. },
  18798. {
  18799. name: "Bigger",
  18800. height: math.unit(24, "meters")
  18801. },
  18802. {
  18803. name: "Huge",
  18804. height: math.unit(80, "meters")
  18805. },
  18806. ]
  18807. ))
  18808. characterMakers.push(() => makeCharacter(
  18809. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18810. {
  18811. front: {
  18812. height: math.unit(6 + 2 / 12, "feet"),
  18813. weight: math.unit(153, "lb"),
  18814. name: "Front",
  18815. image: {
  18816. source: "./media/characters/luca-cervicum/front.svg",
  18817. extra: 370 / 327,
  18818. bottom: 0.015
  18819. }
  18820. },
  18821. back: {
  18822. height: math.unit(6 + 2 / 12, "feet"),
  18823. weight: math.unit(153, "lb"),
  18824. name: "Back",
  18825. image: {
  18826. source: "./media/characters/luca-cervicum/back.svg",
  18827. extra: 367 / 333,
  18828. bottom: 0.005
  18829. }
  18830. },
  18831. frontGear: {
  18832. height: math.unit(6 + 2 / 12, "feet"),
  18833. weight: math.unit(173, "lb"),
  18834. name: "Front (Gear)",
  18835. image: {
  18836. source: "./media/characters/luca-cervicum/front-gear.svg",
  18837. extra: 377 / 333,
  18838. bottom: 0.006
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(6 + 2 / 12, "feet"),
  18846. default: true
  18847. },
  18848. ]
  18849. ))
  18850. characterMakers.push(() => makeCharacter(
  18851. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18852. {
  18853. front: {
  18854. height: math.unit(6 + 1 / 12, "feet"),
  18855. weight: math.unit(304, "lb"),
  18856. name: "Front",
  18857. image: {
  18858. source: "./media/characters/oliver/front.svg",
  18859. extra: 157 / 143,
  18860. bottom: 0.08
  18861. }
  18862. },
  18863. },
  18864. [
  18865. {
  18866. name: "Normal",
  18867. height: math.unit(6 + 1 / 12, "feet"),
  18868. default: true
  18869. },
  18870. ]
  18871. ))
  18872. characterMakers.push(() => makeCharacter(
  18873. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18874. {
  18875. front: {
  18876. height: math.unit(5 + 7 / 12, "feet"),
  18877. weight: math.unit(140, "lb"),
  18878. name: "Front",
  18879. image: {
  18880. source: "./media/characters/shane/front.svg",
  18881. extra: 304 / 289,
  18882. bottom: 0.005
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Normal",
  18889. height: math.unit(5 + 7 / 12, "feet"),
  18890. default: true
  18891. },
  18892. ]
  18893. ))
  18894. characterMakers.push(() => makeCharacter(
  18895. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18896. {
  18897. front: {
  18898. height: math.unit(5 + 9 / 12, "feet"),
  18899. weight: math.unit(178, "lb"),
  18900. name: "Front",
  18901. image: {
  18902. source: "./media/characters/shin/front.svg",
  18903. extra: 159 / 151,
  18904. bottom: 0.015
  18905. }
  18906. },
  18907. },
  18908. [
  18909. {
  18910. name: "Normal",
  18911. height: math.unit(5 + 9 / 12, "feet"),
  18912. default: true
  18913. },
  18914. ]
  18915. ))
  18916. characterMakers.push(() => makeCharacter(
  18917. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18918. {
  18919. front: {
  18920. height: math.unit(5 + 10 / 12, "feet"),
  18921. weight: math.unit(168, "lb"),
  18922. name: "Front",
  18923. image: {
  18924. source: "./media/characters/xerxes/front.svg",
  18925. extra: 282 / 260,
  18926. bottom: 0.045
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Normal",
  18933. height: math.unit(5 + 10 / 12, "feet"),
  18934. default: true
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18940. {
  18941. front: {
  18942. height: math.unit(6 + 7 / 12, "feet"),
  18943. weight: math.unit(208, "lb"),
  18944. name: "Front",
  18945. image: {
  18946. source: "./media/characters/chaska/front.svg",
  18947. extra: 332 / 319,
  18948. bottom: 0.015
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(6 + 7 / 12, "feet"),
  18956. default: true
  18957. },
  18958. ]
  18959. ))
  18960. characterMakers.push(() => makeCharacter(
  18961. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18962. {
  18963. front: {
  18964. height: math.unit(5 + 8 / 12, "feet"),
  18965. weight: math.unit(208, "lb"),
  18966. name: "Front",
  18967. image: {
  18968. source: "./media/characters/enuk/front.svg",
  18969. extra: 437 / 406,
  18970. bottom: 0.02
  18971. }
  18972. },
  18973. },
  18974. [
  18975. {
  18976. name: "Normal",
  18977. height: math.unit(5 + 8 / 12, "feet"),
  18978. default: true
  18979. },
  18980. ]
  18981. ))
  18982. characterMakers.push(() => makeCharacter(
  18983. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18984. {
  18985. front: {
  18986. height: math.unit(5 + 10 / 12, "feet"),
  18987. weight: math.unit(252, "lb"),
  18988. name: "Front",
  18989. image: {
  18990. source: "./media/characters/bruun/front.svg",
  18991. extra: 197 / 187,
  18992. bottom: 0.012
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(5 + 10 / 12, "feet"),
  19000. default: true
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19006. {
  19007. front: {
  19008. height: math.unit(6 + 10 / 12, "feet"),
  19009. weight: math.unit(255, "lb"),
  19010. name: "Front",
  19011. image: {
  19012. source: "./media/characters/alexeev/front.svg",
  19013. extra: 213 / 200,
  19014. bottom: 0.05
  19015. }
  19016. },
  19017. },
  19018. [
  19019. {
  19020. name: "Normal",
  19021. height: math.unit(6 + 10 / 12, "feet"),
  19022. default: true
  19023. },
  19024. ]
  19025. ))
  19026. characterMakers.push(() => makeCharacter(
  19027. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19028. {
  19029. front: {
  19030. height: math.unit(2 + 8 / 12, "feet"),
  19031. weight: math.unit(22, "lb"),
  19032. name: "Front",
  19033. image: {
  19034. source: "./media/characters/evelyn/front.svg",
  19035. extra: 208 / 180
  19036. }
  19037. },
  19038. },
  19039. [
  19040. {
  19041. name: "Normal",
  19042. height: math.unit(2 + 8 / 12, "feet"),
  19043. default: true
  19044. },
  19045. ]
  19046. ))
  19047. characterMakers.push(() => makeCharacter(
  19048. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19049. {
  19050. front: {
  19051. height: math.unit(5 + 9 / 12, "feet"),
  19052. weight: math.unit(139, "lb"),
  19053. name: "Front",
  19054. image: {
  19055. source: "./media/characters/inca/front.svg",
  19056. extra: 294 / 291,
  19057. bottom: 0.03
  19058. }
  19059. },
  19060. },
  19061. [
  19062. {
  19063. name: "Normal",
  19064. height: math.unit(5 + 9 / 12, "feet"),
  19065. default: true
  19066. },
  19067. ]
  19068. ))
  19069. characterMakers.push(() => makeCharacter(
  19070. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19071. {
  19072. front: {
  19073. height: math.unit(5 + 1 / 12, "feet"),
  19074. weight: math.unit(84, "lb"),
  19075. name: "Front",
  19076. image: {
  19077. source: "./media/characters/magdalene/front.svg",
  19078. extra: 293 / 273
  19079. }
  19080. },
  19081. },
  19082. [
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(5 + 1 / 12, "feet"),
  19086. default: true
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19092. {
  19093. front: {
  19094. height: math.unit(6 + 3 / 12, "feet"),
  19095. weight: math.unit(185, "lb"),
  19096. name: "Front",
  19097. image: {
  19098. source: "./media/characters/mera/front.svg",
  19099. extra: 291 / 277,
  19100. bottom: 0.03
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(6 + 3 / 12, "feet"),
  19108. default: true
  19109. },
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19114. {
  19115. front: {
  19116. height: math.unit(6 + 7 / 12, "feet"),
  19117. weight: math.unit(160, "lb"),
  19118. name: "Front",
  19119. image: {
  19120. source: "./media/characters/ceres/front.svg",
  19121. extra: 1023 / 950,
  19122. bottom: 0.027
  19123. }
  19124. },
  19125. back: {
  19126. height: math.unit(6 + 7 / 12, "feet"),
  19127. weight: math.unit(160, "lb"),
  19128. name: "Back",
  19129. image: {
  19130. source: "./media/characters/ceres/back.svg",
  19131. extra: 1023 / 950
  19132. }
  19133. },
  19134. },
  19135. [
  19136. {
  19137. name: "Normal",
  19138. height: math.unit(6 + 7 / 12, "feet"),
  19139. default: true
  19140. },
  19141. ]
  19142. ))
  19143. characterMakers.push(() => makeCharacter(
  19144. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19145. {
  19146. front: {
  19147. height: math.unit(5 + 10 / 12, "feet"),
  19148. weight: math.unit(150, "lb"),
  19149. name: "Front",
  19150. image: {
  19151. source: "./media/characters/kris/front.svg",
  19152. extra: 885 / 803,
  19153. bottom: 0.03
  19154. }
  19155. },
  19156. },
  19157. [
  19158. {
  19159. name: "Normal",
  19160. height: math.unit(5 + 10 / 12, "feet"),
  19161. default: true
  19162. },
  19163. ]
  19164. ))
  19165. characterMakers.push(() => makeCharacter(
  19166. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19167. {
  19168. front: {
  19169. height: math.unit(7, "feet"),
  19170. weight: math.unit(120, "kg"),
  19171. name: "Front",
  19172. image: {
  19173. source: "./media/characters/taluthus/front.svg",
  19174. extra: 903 / 833,
  19175. bottom: 0.015
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Normal",
  19182. height: math.unit(7, "feet"),
  19183. default: true
  19184. },
  19185. {
  19186. name: "Macro",
  19187. height: math.unit(300, "feet")
  19188. },
  19189. ]
  19190. ))
  19191. characterMakers.push(() => makeCharacter(
  19192. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19193. {
  19194. front: {
  19195. height: math.unit(5 + 9 / 12, "feet"),
  19196. weight: math.unit(145, "lb"),
  19197. name: "Front",
  19198. image: {
  19199. source: "./media/characters/dawn/front.svg",
  19200. extra: 2094 / 2016,
  19201. bottom: 0.025
  19202. }
  19203. },
  19204. back: {
  19205. height: math.unit(5 + 9 / 12, "feet"),
  19206. weight: math.unit(160, "lb"),
  19207. name: "Back",
  19208. image: {
  19209. source: "./media/characters/dawn/back.svg",
  19210. extra: 2112 / 2080,
  19211. bottom: 0.005
  19212. }
  19213. },
  19214. },
  19215. [
  19216. {
  19217. name: "Normal",
  19218. height: math.unit(6 + 7 / 12, "feet"),
  19219. default: true
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19225. {
  19226. anthro: {
  19227. height: math.unit(8 + 3 / 12, "feet"),
  19228. weight: math.unit(450, "lb"),
  19229. name: "Anthro",
  19230. image: {
  19231. source: "./media/characters/arador/anthro.svg",
  19232. extra: 1835 / 1718,
  19233. bottom: 0.025
  19234. }
  19235. },
  19236. feral: {
  19237. height: math.unit(4, "feet"),
  19238. weight: math.unit(200, "lb"),
  19239. name: "Feral",
  19240. image: {
  19241. source: "./media/characters/arador/feral.svg",
  19242. extra: 1683 / 1514,
  19243. bottom: 0.07
  19244. }
  19245. },
  19246. },
  19247. [
  19248. {
  19249. name: "Normal",
  19250. height: math.unit(8 + 3 / 12, "feet")
  19251. },
  19252. {
  19253. name: "Macro",
  19254. height: math.unit(82.5, "feet"),
  19255. default: true
  19256. },
  19257. ]
  19258. ))
  19259. characterMakers.push(() => makeCharacter(
  19260. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19261. {
  19262. front: {
  19263. height: math.unit(5 + 10 / 12, "feet"),
  19264. weight: math.unit(125, "lb"),
  19265. name: "Front",
  19266. image: {
  19267. source: "./media/characters/dharsi/front.svg",
  19268. extra: 716 / 630,
  19269. bottom: 0.035
  19270. }
  19271. },
  19272. },
  19273. [
  19274. {
  19275. name: "Nano",
  19276. height: math.unit(100, "nm")
  19277. },
  19278. {
  19279. name: "Micro",
  19280. height: math.unit(2, "inches")
  19281. },
  19282. {
  19283. name: "Normal",
  19284. height: math.unit(5 + 10 / 12, "feet"),
  19285. default: true
  19286. },
  19287. {
  19288. name: "Macro",
  19289. height: math.unit(1000, "feet")
  19290. },
  19291. {
  19292. name: "Megamacro",
  19293. height: math.unit(10, "miles")
  19294. },
  19295. {
  19296. name: "Gigamacro",
  19297. height: math.unit(3000, "miles")
  19298. },
  19299. {
  19300. name: "Teramacro",
  19301. height: math.unit(500000, "miles")
  19302. },
  19303. {
  19304. name: "Teramacro+",
  19305. height: math.unit(30, "galaxies")
  19306. },
  19307. ]
  19308. ))
  19309. characterMakers.push(() => makeCharacter(
  19310. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19311. {
  19312. front: {
  19313. height: math.unit(6, "feet"),
  19314. weight: math.unit(150, "lb"),
  19315. name: "Front",
  19316. image: {
  19317. source: "./media/characters/deathy/front.svg",
  19318. extra: 1552 / 1463,
  19319. bottom: 0.025
  19320. }
  19321. },
  19322. side: {
  19323. height: math.unit(6, "feet"),
  19324. weight: math.unit(150, "lb"),
  19325. name: "Side",
  19326. image: {
  19327. source: "./media/characters/deathy/side.svg",
  19328. extra: 1604 / 1455,
  19329. bottom: 0.025
  19330. }
  19331. },
  19332. back: {
  19333. height: math.unit(6, "feet"),
  19334. weight: math.unit(150, "lb"),
  19335. name: "Back",
  19336. image: {
  19337. source: "./media/characters/deathy/back.svg",
  19338. extra: 1580 / 1463,
  19339. bottom: 0.005
  19340. }
  19341. },
  19342. },
  19343. [
  19344. {
  19345. name: "Micro",
  19346. height: math.unit(5, "millimeters")
  19347. },
  19348. {
  19349. name: "Normal",
  19350. height: math.unit(6 + 5 / 12, "feet"),
  19351. default: true
  19352. },
  19353. ]
  19354. ))
  19355. characterMakers.push(() => makeCharacter(
  19356. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19357. {
  19358. front: {
  19359. height: math.unit(16, "feet"),
  19360. weight: math.unit(4000, "lb"),
  19361. name: "Front",
  19362. image: {
  19363. source: "./media/characters/juniper/front.svg",
  19364. bottom: 0.04
  19365. }
  19366. },
  19367. },
  19368. [
  19369. {
  19370. name: "Normal",
  19371. height: math.unit(16, "feet"),
  19372. default: true
  19373. },
  19374. ]
  19375. ))
  19376. characterMakers.push(() => makeCharacter(
  19377. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19378. {
  19379. front: {
  19380. height: math.unit(6, "feet"),
  19381. weight: math.unit(150, "lb"),
  19382. name: "Front",
  19383. image: {
  19384. source: "./media/characters/hipster/front.svg",
  19385. extra: 1312 / 1209,
  19386. bottom: 0.025
  19387. }
  19388. },
  19389. back: {
  19390. height: math.unit(6, "feet"),
  19391. weight: math.unit(150, "lb"),
  19392. name: "Back",
  19393. image: {
  19394. source: "./media/characters/hipster/back.svg",
  19395. extra: 1281 / 1196,
  19396. bottom: 0.01
  19397. }
  19398. },
  19399. },
  19400. [
  19401. {
  19402. name: "Micro",
  19403. height: math.unit(1, "mm")
  19404. },
  19405. {
  19406. name: "Normal",
  19407. height: math.unit(4, "inches"),
  19408. default: true
  19409. },
  19410. {
  19411. name: "Macro",
  19412. height: math.unit(500, "feet")
  19413. },
  19414. {
  19415. name: "Megamacro",
  19416. height: math.unit(1000, "miles")
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19422. {
  19423. front: {
  19424. height: math.unit(6, "feet"),
  19425. weight: math.unit(150, "lb"),
  19426. name: "Front",
  19427. image: {
  19428. source: "./media/characters/tendirmuldr/front.svg",
  19429. extra: 1878 / 1772,
  19430. bottom: 0.015
  19431. }
  19432. },
  19433. },
  19434. [
  19435. {
  19436. name: "Megamacro",
  19437. height: math.unit(1500, "miles"),
  19438. default: true
  19439. },
  19440. ]
  19441. ))
  19442. characterMakers.push(() => makeCharacter(
  19443. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19444. {
  19445. front: {
  19446. height: math.unit(14, "feet"),
  19447. weight: math.unit(12000, "lb"),
  19448. name: "Front",
  19449. image: {
  19450. source: "./media/characters/mort/front.svg",
  19451. extra: 365 / 318,
  19452. bottom: 0.01
  19453. }
  19454. },
  19455. side: {
  19456. height: math.unit(14, "feet"),
  19457. weight: math.unit(12000, "lb"),
  19458. name: "Side",
  19459. image: {
  19460. source: "./media/characters/mort/side.svg",
  19461. extra: 365 / 318,
  19462. bottom: 0.052
  19463. },
  19464. default: true
  19465. },
  19466. back: {
  19467. height: math.unit(14, "feet"),
  19468. weight: math.unit(12000, "lb"),
  19469. name: "Back",
  19470. image: {
  19471. source: "./media/characters/mort/back.svg",
  19472. extra: 371 / 332,
  19473. bottom: 0.18
  19474. }
  19475. },
  19476. },
  19477. [
  19478. {
  19479. name: "Normal",
  19480. height: math.unit(14, "feet"),
  19481. default: true
  19482. },
  19483. ]
  19484. ))
  19485. characterMakers.push(() => makeCharacter(
  19486. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19487. {
  19488. front: {
  19489. height: math.unit(8, "feet"),
  19490. weight: math.unit(1, "ton"),
  19491. name: "Front",
  19492. image: {
  19493. source: "./media/characters/lycoa/front.svg",
  19494. extra: 1875 / 1789,
  19495. bottom: 0.022
  19496. }
  19497. },
  19498. back: {
  19499. height: math.unit(8, "feet"),
  19500. weight: math.unit(1, "ton"),
  19501. name: "Back",
  19502. image: {
  19503. source: "./media/characters/lycoa/back.svg",
  19504. extra: 1835 / 1781,
  19505. bottom: 0.03
  19506. }
  19507. },
  19508. head: {
  19509. height: math.unit(2.1, "feet"),
  19510. name: "Head",
  19511. image: {
  19512. source: "./media/characters/lycoa/head.svg"
  19513. }
  19514. },
  19515. tailmaw: {
  19516. height: math.unit(1.9, "feet"),
  19517. name: "Tailmaw",
  19518. image: {
  19519. source: "./media/characters/lycoa/tailmaw.svg"
  19520. }
  19521. },
  19522. tentacles: {
  19523. height: math.unit(2.1, "feet"),
  19524. name: "Tentacles",
  19525. image: {
  19526. source: "./media/characters/lycoa/tentacles.svg"
  19527. }
  19528. },
  19529. dick: {
  19530. height: math.unit(1.73, "feet"),
  19531. name: "Dick",
  19532. image: {
  19533. source: "./media/characters/lycoa/dick.svg"
  19534. }
  19535. },
  19536. },
  19537. [
  19538. {
  19539. name: "Normal",
  19540. height: math.unit(8, "feet"),
  19541. default: true
  19542. },
  19543. {
  19544. name: "Macro",
  19545. height: math.unit(30, "feet")
  19546. },
  19547. ]
  19548. ))
  19549. characterMakers.push(() => makeCharacter(
  19550. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19551. {
  19552. front: {
  19553. height: math.unit(4 + 2 / 12, "feet"),
  19554. weight: math.unit(70, "lb"),
  19555. name: "Front",
  19556. image: {
  19557. source: "./media/characters/naldara/front.svg",
  19558. extra: 841 / 720,
  19559. bottom: 0.04
  19560. }
  19561. },
  19562. naga: {
  19563. height: math.unit(23, "feet"),
  19564. weight: math.unit(15000, "kg"),
  19565. name: "Naga",
  19566. image: {
  19567. source: "./media/characters/naldara/naga.svg",
  19568. extra: 3290 / 2959,
  19569. bottom: 124 / 3432
  19570. }
  19571. },
  19572. },
  19573. [
  19574. {
  19575. name: "Normal",
  19576. height: math.unit(4 + 2 / 12, "feet"),
  19577. default: true
  19578. },
  19579. ]
  19580. ))
  19581. characterMakers.push(() => makeCharacter(
  19582. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19583. {
  19584. front: {
  19585. height: math.unit(13 + 7 / 12, "feet"),
  19586. weight: math.unit(1500, "lb"),
  19587. name: "Front",
  19588. image: {
  19589. source: "./media/characters/briar/front.svg",
  19590. extra: 626 / 596,
  19591. bottom: 0.08
  19592. }
  19593. },
  19594. },
  19595. [
  19596. {
  19597. name: "Normal",
  19598. height: math.unit(13 + 7 / 12, "feet"),
  19599. default: true
  19600. },
  19601. ]
  19602. ))
  19603. characterMakers.push(() => makeCharacter(
  19604. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19605. {
  19606. side: {
  19607. height: math.unit(10, "feet"),
  19608. weight: math.unit(500, "lb"),
  19609. name: "Side",
  19610. image: {
  19611. source: "./media/characters/vanguard/side.svg",
  19612. extra: 502 / 425,
  19613. bottom: 0.087
  19614. }
  19615. },
  19616. },
  19617. [
  19618. {
  19619. name: "Normal",
  19620. height: math.unit(10, "feet"),
  19621. default: true
  19622. },
  19623. ]
  19624. ))
  19625. characterMakers.push(() => makeCharacter(
  19626. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19627. {
  19628. front: {
  19629. height: math.unit(7.5, "feet"),
  19630. weight: math.unit(2, "lb"),
  19631. name: "Front",
  19632. image: {
  19633. source: "./media/characters/artemis/front.svg",
  19634. extra: 1192 / 1075,
  19635. bottom: 0.07
  19636. }
  19637. },
  19638. frontNsfw: {
  19639. height: math.unit(7.5, "feet"),
  19640. weight: math.unit(2, "lb"),
  19641. name: "Front (NSFW)",
  19642. image: {
  19643. source: "./media/characters/artemis/front-nsfw.svg",
  19644. extra: 1192 / 1075,
  19645. bottom: 0.07
  19646. }
  19647. },
  19648. frontNsfwer: {
  19649. height: math.unit(7.5, "feet"),
  19650. weight: math.unit(2, "lb"),
  19651. name: "Front (NSFW-er)",
  19652. image: {
  19653. source: "./media/characters/artemis/front-nsfwer.svg",
  19654. extra: 1192 / 1075,
  19655. bottom: 0.07
  19656. }
  19657. },
  19658. side: {
  19659. height: math.unit(7.5, "feet"),
  19660. weight: math.unit(2, "lb"),
  19661. name: "Side",
  19662. image: {
  19663. source: "./media/characters/artemis/side.svg",
  19664. extra: 1192 / 1075,
  19665. bottom: 0.07
  19666. }
  19667. },
  19668. sideNsfw: {
  19669. height: math.unit(7.5, "feet"),
  19670. weight: math.unit(2, "lb"),
  19671. name: "Side (NSFW)",
  19672. image: {
  19673. source: "./media/characters/artemis/side-nsfw.svg",
  19674. extra: 1192 / 1075,
  19675. bottom: 0.07
  19676. }
  19677. },
  19678. sideNsfwer: {
  19679. height: math.unit(7.5, "feet"),
  19680. weight: math.unit(2, "lb"),
  19681. name: "Side (NSFW-er)",
  19682. image: {
  19683. source: "./media/characters/artemis/side-nsfwer.svg",
  19684. extra: 1192 / 1075,
  19685. bottom: 0.07
  19686. }
  19687. },
  19688. maw: {
  19689. height: math.unit(1.1, "feet"),
  19690. name: "Maw",
  19691. image: {
  19692. source: "./media/characters/artemis/maw.svg"
  19693. }
  19694. },
  19695. stomach: {
  19696. height: math.unit(0.95, "feet"),
  19697. name: "Stomach",
  19698. image: {
  19699. source: "./media/characters/artemis/stomach.svg"
  19700. }
  19701. },
  19702. dickCanine: {
  19703. height: math.unit(1, "feet"),
  19704. name: "Dick (Canine)",
  19705. image: {
  19706. source: "./media/characters/artemis/dick-canine.svg"
  19707. }
  19708. },
  19709. dickEquine: {
  19710. height: math.unit(0.85, "feet"),
  19711. name: "Dick (Equine)",
  19712. image: {
  19713. source: "./media/characters/artemis/dick-equine.svg"
  19714. }
  19715. },
  19716. dickExotic: {
  19717. height: math.unit(0.85, "feet"),
  19718. name: "Dick (Exotic)",
  19719. image: {
  19720. source: "./media/characters/artemis/dick-exotic.svg"
  19721. }
  19722. },
  19723. },
  19724. [
  19725. {
  19726. name: "Normal",
  19727. height: math.unit(7.5, "feet"),
  19728. default: true
  19729. },
  19730. {
  19731. name: "Enlarged",
  19732. height: math.unit(12, "feet")
  19733. },
  19734. ]
  19735. ))
  19736. characterMakers.push(() => makeCharacter(
  19737. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19738. {
  19739. front: {
  19740. height: math.unit(5 + 3 / 12, "feet"),
  19741. weight: math.unit(160, "lb"),
  19742. name: "Front",
  19743. image: {
  19744. source: "./media/characters/kira/front.svg",
  19745. extra: 906 / 786,
  19746. bottom: 0.01
  19747. }
  19748. },
  19749. back: {
  19750. height: math.unit(5 + 3 / 12, "feet"),
  19751. weight: math.unit(160, "lb"),
  19752. name: "Back",
  19753. image: {
  19754. source: "./media/characters/kira/back.svg",
  19755. extra: 882 / 757,
  19756. bottom: 0.005
  19757. }
  19758. },
  19759. frontDressed: {
  19760. height: math.unit(5 + 3 / 12, "feet"),
  19761. weight: math.unit(160, "lb"),
  19762. name: "Front (Dressed)",
  19763. image: {
  19764. source: "./media/characters/kira/front-dressed.svg",
  19765. extra: 906 / 786,
  19766. bottom: 0.01
  19767. }
  19768. },
  19769. beans: {
  19770. height: math.unit(0.92, "feet"),
  19771. name: "Beans",
  19772. image: {
  19773. source: "./media/characters/kira/beans.svg"
  19774. }
  19775. },
  19776. },
  19777. [
  19778. {
  19779. name: "Normal",
  19780. height: math.unit(5 + 3 / 12, "feet"),
  19781. default: true
  19782. },
  19783. ]
  19784. ))
  19785. characterMakers.push(() => makeCharacter(
  19786. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19787. {
  19788. front: {
  19789. height: math.unit(5 + 4 / 12, "feet"),
  19790. weight: math.unit(145, "lb"),
  19791. name: "Front",
  19792. image: {
  19793. source: "./media/characters/scramble/front.svg",
  19794. extra: 763 / 727,
  19795. bottom: 0.05
  19796. }
  19797. },
  19798. back: {
  19799. height: math.unit(5 + 4 / 12, "feet"),
  19800. weight: math.unit(145, "lb"),
  19801. name: "Back",
  19802. image: {
  19803. source: "./media/characters/scramble/back.svg",
  19804. extra: 826 / 737,
  19805. bottom: 0.002
  19806. }
  19807. },
  19808. },
  19809. [
  19810. {
  19811. name: "Normal",
  19812. height: math.unit(5 + 4 / 12, "feet"),
  19813. default: true
  19814. },
  19815. ]
  19816. ))
  19817. characterMakers.push(() => makeCharacter(
  19818. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19819. {
  19820. side: {
  19821. height: math.unit(6 + 2 / 12, "feet"),
  19822. weight: math.unit(190, "lb"),
  19823. name: "Side",
  19824. image: {
  19825. source: "./media/characters/biscuit/side.svg",
  19826. extra: 858 / 791,
  19827. bottom: 0.044
  19828. }
  19829. },
  19830. },
  19831. [
  19832. {
  19833. name: "Normal",
  19834. height: math.unit(6 + 2 / 12, "feet"),
  19835. default: true
  19836. },
  19837. ]
  19838. ))
  19839. characterMakers.push(() => makeCharacter(
  19840. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19841. {
  19842. front: {
  19843. height: math.unit(5 + 2 / 12, "feet"),
  19844. weight: math.unit(120, "lb"),
  19845. name: "Front",
  19846. image: {
  19847. source: "./media/characters/poffin/front.svg",
  19848. extra: 786 / 680,
  19849. bottom: 0.005
  19850. }
  19851. },
  19852. },
  19853. [
  19854. {
  19855. name: "Normal",
  19856. height: math.unit(5 + 2 / 12, "feet"),
  19857. default: true
  19858. },
  19859. ]
  19860. ))
  19861. characterMakers.push(() => makeCharacter(
  19862. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19863. {
  19864. front: {
  19865. height: math.unit(6 + 3 / 12, "feet"),
  19866. weight: math.unit(519, "lb"),
  19867. name: "Front",
  19868. image: {
  19869. source: "./media/characters/dhari/front.svg",
  19870. extra: 1048 / 946,
  19871. bottom: 0.015
  19872. }
  19873. },
  19874. back: {
  19875. height: math.unit(6 + 3 / 12, "feet"),
  19876. weight: math.unit(519, "lb"),
  19877. name: "Back",
  19878. image: {
  19879. source: "./media/characters/dhari/back.svg",
  19880. extra: 1048 / 931,
  19881. bottom: 0.005
  19882. }
  19883. },
  19884. frontDressed: {
  19885. height: math.unit(6 + 3 / 12, "feet"),
  19886. weight: math.unit(519, "lb"),
  19887. name: "Front (Dressed)",
  19888. image: {
  19889. source: "./media/characters/dhari/front-dressed.svg",
  19890. extra: 1713 / 1546,
  19891. bottom: 0.02
  19892. }
  19893. },
  19894. backDressed: {
  19895. height: math.unit(6 + 3 / 12, "feet"),
  19896. weight: math.unit(519, "lb"),
  19897. name: "Back (Dressed)",
  19898. image: {
  19899. source: "./media/characters/dhari/back-dressed.svg",
  19900. extra: 1699 / 1537,
  19901. bottom: 0.01
  19902. }
  19903. },
  19904. maw: {
  19905. height: math.unit(0.95, "feet"),
  19906. name: "Maw",
  19907. image: {
  19908. source: "./media/characters/dhari/maw.svg"
  19909. }
  19910. },
  19911. wereFront: {
  19912. height: math.unit(12 + 8 / 12, "feet"),
  19913. weight: math.unit(4000, "lb"),
  19914. name: "Front (Were)",
  19915. image: {
  19916. source: "./media/characters/dhari/were-front.svg",
  19917. extra: 1065 / 969,
  19918. bottom: 0.015
  19919. }
  19920. },
  19921. wereBack: {
  19922. height: math.unit(12 + 8 / 12, "feet"),
  19923. weight: math.unit(4000, "lb"),
  19924. name: "Back (Were)",
  19925. image: {
  19926. source: "./media/characters/dhari/were-back.svg",
  19927. extra: 1065 / 969,
  19928. bottom: 0.012
  19929. }
  19930. },
  19931. wereMaw: {
  19932. height: math.unit(0.625, "meters"),
  19933. name: "Maw (Were)",
  19934. image: {
  19935. source: "./media/characters/dhari/were-maw.svg"
  19936. }
  19937. },
  19938. },
  19939. [
  19940. {
  19941. name: "Normal",
  19942. height: math.unit(6 + 3 / 12, "feet"),
  19943. default: true
  19944. },
  19945. ]
  19946. ))
  19947. characterMakers.push(() => makeCharacter(
  19948. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19949. {
  19950. anthro: {
  19951. height: math.unit(5 + 7 / 12, "feet"),
  19952. weight: math.unit(175, "lb"),
  19953. name: "Anthro",
  19954. image: {
  19955. source: "./media/characters/rena-dyne/anthro.svg",
  19956. extra: 1849 / 1785,
  19957. bottom: 0.005
  19958. }
  19959. },
  19960. taur: {
  19961. height: math.unit(15 + 6 / 12, "feet"),
  19962. weight: math.unit(8000, "lb"),
  19963. name: "Taur",
  19964. image: {
  19965. source: "./media/characters/rena-dyne/taur.svg",
  19966. extra: 2315 / 2234,
  19967. bottom: 0.033
  19968. }
  19969. },
  19970. },
  19971. [
  19972. {
  19973. name: "Normal",
  19974. height: math.unit(5 + 7 / 12, "feet"),
  19975. default: true
  19976. },
  19977. ]
  19978. ))
  19979. characterMakers.push(() => makeCharacter(
  19980. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19981. {
  19982. front: {
  19983. height: math.unit(8, "feet"),
  19984. weight: math.unit(600, "lb"),
  19985. name: "Front",
  19986. image: {
  19987. source: "./media/characters/weremeep/front.svg",
  19988. extra: 967 / 862,
  19989. bottom: 0.01
  19990. }
  19991. },
  19992. },
  19993. [
  19994. {
  19995. name: "Normal",
  19996. height: math.unit(8, "feet"),
  19997. default: true
  19998. },
  19999. {
  20000. name: "Lorg",
  20001. height: math.unit(12, "feet")
  20002. },
  20003. {
  20004. name: "Oh Lawd She Comin'",
  20005. height: math.unit(20, "feet")
  20006. },
  20007. ]
  20008. ))
  20009. characterMakers.push(() => makeCharacter(
  20010. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20011. {
  20012. front: {
  20013. height: math.unit(4, "feet"),
  20014. weight: math.unit(90, "lb"),
  20015. name: "Front",
  20016. image: {
  20017. source: "./media/characters/reza/front.svg",
  20018. extra: 1183 / 1111,
  20019. bottom: 0.017
  20020. }
  20021. },
  20022. back: {
  20023. height: math.unit(4, "feet"),
  20024. weight: math.unit(90, "lb"),
  20025. name: "Back",
  20026. image: {
  20027. source: "./media/characters/reza/back.svg",
  20028. extra: 1183 / 1111,
  20029. bottom: 0.01
  20030. }
  20031. },
  20032. drake: {
  20033. height: math.unit(30, "feet"),
  20034. weight: math.unit(246960, "lb"),
  20035. name: "Drake",
  20036. image: {
  20037. source: "./media/characters/reza/drake.svg",
  20038. extra: 2350 / 2024,
  20039. bottom: 60.7 / 2403
  20040. }
  20041. },
  20042. },
  20043. [
  20044. {
  20045. name: "Normal",
  20046. height: math.unit(4, "feet"),
  20047. default: true
  20048. },
  20049. ]
  20050. ))
  20051. characterMakers.push(() => makeCharacter(
  20052. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20053. {
  20054. side: {
  20055. height: math.unit(15, "feet"),
  20056. weight: math.unit(14, "tons"),
  20057. name: "Side",
  20058. image: {
  20059. source: "./media/characters/athea/side.svg",
  20060. extra: 960 / 540,
  20061. bottom: 0.003
  20062. }
  20063. },
  20064. sitting: {
  20065. height: math.unit(6 * 2.85, "feet"),
  20066. weight: math.unit(14, "tons"),
  20067. name: "Sitting",
  20068. image: {
  20069. source: "./media/characters/athea/sitting.svg",
  20070. extra: 621 / 581,
  20071. bottom: 0.075
  20072. }
  20073. },
  20074. maw: {
  20075. height: math.unit(7.59498031496063, "feet"),
  20076. name: "Maw",
  20077. image: {
  20078. source: "./media/characters/athea/maw.svg"
  20079. }
  20080. },
  20081. },
  20082. [
  20083. {
  20084. name: "Lap Cat",
  20085. height: math.unit(2.5, "feet")
  20086. },
  20087. {
  20088. name: "Minimacro",
  20089. height: math.unit(15, "feet"),
  20090. default: true
  20091. },
  20092. {
  20093. name: "Macro",
  20094. height: math.unit(120, "feet")
  20095. },
  20096. {
  20097. name: "Macro+",
  20098. height: math.unit(640, "feet")
  20099. },
  20100. {
  20101. name: "Colossus",
  20102. height: math.unit(2.2, "miles")
  20103. },
  20104. ]
  20105. ))
  20106. characterMakers.push(() => makeCharacter(
  20107. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20108. {
  20109. front: {
  20110. height: math.unit(8 + 8 / 12, "feet"),
  20111. weight: math.unit(130, "kg"),
  20112. name: "Front",
  20113. image: {
  20114. source: "./media/characters/seroko/front.svg",
  20115. extra: 1385 / 1280,
  20116. bottom: 0.025
  20117. }
  20118. },
  20119. back: {
  20120. height: math.unit(8 + 8 / 12, "feet"),
  20121. weight: math.unit(130, "kg"),
  20122. name: "Back",
  20123. image: {
  20124. source: "./media/characters/seroko/back.svg",
  20125. extra: 1369 / 1238,
  20126. bottom: 0.018
  20127. }
  20128. },
  20129. frontDressed: {
  20130. height: math.unit(8 + 8 / 12, "feet"),
  20131. weight: math.unit(130, "kg"),
  20132. name: "Front (Dressed)",
  20133. image: {
  20134. source: "./media/characters/seroko/front-dressed.svg",
  20135. extra: 1366 / 1275,
  20136. bottom: 0.03
  20137. }
  20138. },
  20139. },
  20140. [
  20141. {
  20142. name: "Normal",
  20143. height: math.unit(8 + 8 / 12, "feet"),
  20144. default: true
  20145. },
  20146. ]
  20147. ))
  20148. characterMakers.push(() => makeCharacter(
  20149. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20150. {
  20151. front: {
  20152. height: math.unit(5.5, "feet"),
  20153. weight: math.unit(160, "lb"),
  20154. name: "Front",
  20155. image: {
  20156. source: "./media/characters/quatzi/front.svg",
  20157. extra: 2346 / 2242,
  20158. bottom: 0.015
  20159. }
  20160. },
  20161. },
  20162. [
  20163. {
  20164. name: "Normal",
  20165. height: math.unit(5.5, "feet"),
  20166. default: true
  20167. },
  20168. {
  20169. name: "Big",
  20170. height: math.unit(7.7, "feet")
  20171. },
  20172. ]
  20173. ))
  20174. characterMakers.push(() => makeCharacter(
  20175. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20176. {
  20177. front: {
  20178. height: math.unit(5 + 11 / 12, "feet"),
  20179. weight: math.unit(180, "lb"),
  20180. name: "Front",
  20181. image: {
  20182. source: "./media/characters/sen/front.svg",
  20183. extra: 1321 / 1254,
  20184. bottom: 0.015
  20185. }
  20186. },
  20187. side: {
  20188. height: math.unit(5 + 11 / 12, "feet"),
  20189. weight: math.unit(180, "lb"),
  20190. name: "Side",
  20191. image: {
  20192. source: "./media/characters/sen/side.svg",
  20193. extra: 1321 / 1254,
  20194. bottom: 0.007
  20195. }
  20196. },
  20197. back: {
  20198. height: math.unit(5 + 11 / 12, "feet"),
  20199. weight: math.unit(180, "lb"),
  20200. name: "Back",
  20201. image: {
  20202. source: "./media/characters/sen/back.svg",
  20203. extra: 1321 / 1254
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Normal",
  20210. height: math.unit(5 + 11 / 12, "feet"),
  20211. default: true
  20212. },
  20213. ]
  20214. ))
  20215. characterMakers.push(() => makeCharacter(
  20216. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20217. {
  20218. front: {
  20219. height: math.unit(166.6, "cm"),
  20220. weight: math.unit(66.6, "kg"),
  20221. name: "Front",
  20222. image: {
  20223. source: "./media/characters/fruity/front.svg",
  20224. extra: 1510 / 1386,
  20225. bottom: 0.04
  20226. }
  20227. },
  20228. back: {
  20229. height: math.unit(166.6, "cm"),
  20230. weight: math.unit(66.6, "lb"),
  20231. name: "Back",
  20232. image: {
  20233. source: "./media/characters/fruity/back.svg",
  20234. extra: 1563 / 1435,
  20235. bottom: 0.005
  20236. }
  20237. },
  20238. },
  20239. [
  20240. {
  20241. name: "Normal",
  20242. height: math.unit(166.6, "cm"),
  20243. default: true
  20244. },
  20245. {
  20246. name: "Demonic",
  20247. height: math.unit(166.6, "feet")
  20248. },
  20249. ]
  20250. ))
  20251. characterMakers.push(() => makeCharacter(
  20252. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20253. {
  20254. side: {
  20255. height: math.unit(10, "feet"),
  20256. weight: math.unit(500, "lb"),
  20257. name: "Side",
  20258. image: {
  20259. source: "./media/characters/zost/side.svg",
  20260. extra: 966 / 880,
  20261. bottom: 0.075
  20262. }
  20263. },
  20264. mawFront: {
  20265. height: math.unit(1.08, "meters"),
  20266. name: "Maw (Front)",
  20267. image: {
  20268. source: "./media/characters/zost/maw-front.svg"
  20269. }
  20270. },
  20271. mawSide: {
  20272. height: math.unit(2.66, "feet"),
  20273. name: "Maw (Side)",
  20274. image: {
  20275. source: "./media/characters/zost/maw-side.svg"
  20276. }
  20277. },
  20278. },
  20279. [
  20280. {
  20281. name: "Normal",
  20282. height: math.unit(10, "feet"),
  20283. default: true
  20284. },
  20285. ]
  20286. ))
  20287. characterMakers.push(() => makeCharacter(
  20288. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20289. {
  20290. front: {
  20291. height: math.unit(5 + 4 / 12, "feet"),
  20292. weight: math.unit(120, "lb"),
  20293. name: "Front",
  20294. image: {
  20295. source: "./media/characters/luci/front.svg",
  20296. extra: 1985 / 1884,
  20297. bottom: 0.04
  20298. }
  20299. },
  20300. back: {
  20301. height: math.unit(5 + 4 / 12, "feet"),
  20302. weight: math.unit(120, "lb"),
  20303. name: "Back",
  20304. image: {
  20305. source: "./media/characters/luci/back.svg",
  20306. extra: 1892 / 1791,
  20307. bottom: 0.002
  20308. }
  20309. },
  20310. },
  20311. [
  20312. {
  20313. name: "Normal",
  20314. height: math.unit(5 + 4 / 12, "feet"),
  20315. default: true
  20316. },
  20317. ]
  20318. ))
  20319. characterMakers.push(() => makeCharacter(
  20320. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20321. {
  20322. front: {
  20323. height: math.unit(1500, "feet"),
  20324. weight: math.unit(3.8e6, "tons"),
  20325. name: "Front",
  20326. image: {
  20327. source: "./media/characters/2th/front.svg",
  20328. extra: 3489 / 3350,
  20329. bottom: 0.1
  20330. }
  20331. },
  20332. foot: {
  20333. height: math.unit(461, "feet"),
  20334. name: "Foot",
  20335. image: {
  20336. source: "./media/characters/2th/foot.svg"
  20337. }
  20338. },
  20339. },
  20340. [
  20341. {
  20342. name: "\"Micro\"",
  20343. height: math.unit(15 + 7 / 12, "feet")
  20344. },
  20345. {
  20346. name: "Normal",
  20347. height: math.unit(1500, "feet"),
  20348. default: true
  20349. },
  20350. {
  20351. name: "Macro",
  20352. height: math.unit(5000, "feet")
  20353. },
  20354. {
  20355. name: "Megamacro",
  20356. height: math.unit(15, "miles")
  20357. },
  20358. {
  20359. name: "Gigamacro",
  20360. height: math.unit(4000, "miles")
  20361. },
  20362. {
  20363. name: "Galactic",
  20364. height: math.unit(50, "AU")
  20365. },
  20366. ]
  20367. ))
  20368. characterMakers.push(() => makeCharacter(
  20369. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20370. {
  20371. front: {
  20372. height: math.unit(5 + 6 / 12, "feet"),
  20373. weight: math.unit(220, "lb"),
  20374. name: "Front",
  20375. image: {
  20376. source: "./media/characters/amethyst/front.svg",
  20377. extra: 2078 / 2040,
  20378. bottom: 0.045
  20379. }
  20380. },
  20381. back: {
  20382. height: math.unit(5 + 6 / 12, "feet"),
  20383. weight: math.unit(220, "lb"),
  20384. name: "Back",
  20385. image: {
  20386. source: "./media/characters/amethyst/back.svg",
  20387. extra: 2021 / 1989,
  20388. bottom: 0.02
  20389. }
  20390. },
  20391. },
  20392. [
  20393. {
  20394. name: "Normal",
  20395. height: math.unit(5 + 6 / 12, "feet"),
  20396. default: true
  20397. },
  20398. ]
  20399. ))
  20400. characterMakers.push(() => makeCharacter(
  20401. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20402. {
  20403. front: {
  20404. height: math.unit(4 + 11 / 12, "feet"),
  20405. weight: math.unit(120, "lb"),
  20406. name: "Front",
  20407. image: {
  20408. source: "./media/characters/yumi-akiyama/front.svg",
  20409. extra: 1327 / 1235,
  20410. bottom: 0.02
  20411. }
  20412. },
  20413. back: {
  20414. height: math.unit(4 + 11 / 12, "feet"),
  20415. weight: math.unit(120, "lb"),
  20416. name: "Back",
  20417. image: {
  20418. source: "./media/characters/yumi-akiyama/back.svg",
  20419. extra: 1287 / 1245,
  20420. bottom: 0.002
  20421. }
  20422. },
  20423. },
  20424. [
  20425. {
  20426. name: "Galactic",
  20427. height: math.unit(50, "galaxies"),
  20428. default: true
  20429. },
  20430. {
  20431. name: "Universal",
  20432. height: math.unit(100, "universes")
  20433. },
  20434. ]
  20435. ))
  20436. characterMakers.push(() => makeCharacter(
  20437. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20438. {
  20439. front: {
  20440. height: math.unit(8, "feet"),
  20441. weight: math.unit(500, "lb"),
  20442. name: "Front",
  20443. image: {
  20444. source: "./media/characters/rifter-yrmori/front.svg",
  20445. extra: 1180 / 1125,
  20446. bottom: 0.02
  20447. }
  20448. },
  20449. back: {
  20450. height: math.unit(8, "feet"),
  20451. weight: math.unit(500, "lb"),
  20452. name: "Back",
  20453. image: {
  20454. source: "./media/characters/rifter-yrmori/back.svg",
  20455. extra: 1190 / 1145,
  20456. bottom: 0.001
  20457. }
  20458. },
  20459. wings: {
  20460. height: math.unit(7.75, "feet"),
  20461. weight: math.unit(500, "lb"),
  20462. name: "Wings",
  20463. image: {
  20464. source: "./media/characters/rifter-yrmori/wings.svg",
  20465. extra: 1357 / 1285
  20466. }
  20467. },
  20468. maw: {
  20469. height: math.unit(0.8, "feet"),
  20470. name: "Maw",
  20471. image: {
  20472. source: "./media/characters/rifter-yrmori/maw.svg"
  20473. }
  20474. },
  20475. mawfront: {
  20476. height: math.unit(1.45, "feet"),
  20477. name: "Maw (Front)",
  20478. image: {
  20479. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20480. }
  20481. },
  20482. },
  20483. [
  20484. {
  20485. name: "Normal",
  20486. height: math.unit(8, "feet"),
  20487. default: true
  20488. },
  20489. {
  20490. name: "Macro",
  20491. height: math.unit(42, "meters")
  20492. },
  20493. ]
  20494. ))
  20495. characterMakers.push(() => makeCharacter(
  20496. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20497. {
  20498. were: {
  20499. height: math.unit(25 + 6 / 12, "feet"),
  20500. weight: math.unit(10000, "lb"),
  20501. name: "Were",
  20502. image: {
  20503. source: "./media/characters/tahajin/were.svg",
  20504. extra: 801 / 770,
  20505. bottom: 0.042
  20506. }
  20507. },
  20508. aquatic: {
  20509. height: math.unit(6 + 4 / 12, "feet"),
  20510. weight: math.unit(160, "lb"),
  20511. name: "Aquatic",
  20512. image: {
  20513. source: "./media/characters/tahajin/aquatic.svg",
  20514. extra: 572 / 542,
  20515. bottom: 0.04
  20516. }
  20517. },
  20518. chow: {
  20519. height: math.unit(8 + 11 / 12, "feet"),
  20520. weight: math.unit(450, "lb"),
  20521. name: "Chow",
  20522. image: {
  20523. source: "./media/characters/tahajin/chow.svg",
  20524. extra: 660 / 640,
  20525. bottom: 0.015
  20526. }
  20527. },
  20528. demiNaga: {
  20529. height: math.unit(6 + 8 / 12, "feet"),
  20530. weight: math.unit(300, "lb"),
  20531. name: "Demi Naga",
  20532. image: {
  20533. source: "./media/characters/tahajin/demi-naga.svg",
  20534. extra: 643 / 615,
  20535. bottom: 0.1
  20536. }
  20537. },
  20538. data: {
  20539. height: math.unit(5, "inches"),
  20540. weight: math.unit(0.1, "lb"),
  20541. name: "Data",
  20542. image: {
  20543. source: "./media/characters/tahajin/data.svg"
  20544. }
  20545. },
  20546. fluu: {
  20547. height: math.unit(5 + 7 / 12, "feet"),
  20548. weight: math.unit(140, "lb"),
  20549. name: "Fluu",
  20550. image: {
  20551. source: "./media/characters/tahajin/fluu.svg",
  20552. extra: 628 / 592,
  20553. bottom: 0.02
  20554. }
  20555. },
  20556. starWarrior: {
  20557. height: math.unit(4 + 5 / 12, "feet"),
  20558. weight: math.unit(50, "lb"),
  20559. name: "Star Warrior",
  20560. image: {
  20561. source: "./media/characters/tahajin/star-warrior.svg"
  20562. }
  20563. },
  20564. },
  20565. [
  20566. {
  20567. name: "Normal",
  20568. height: math.unit(25 + 6 / 12, "feet"),
  20569. default: true
  20570. },
  20571. ]
  20572. ))
  20573. characterMakers.push(() => makeCharacter(
  20574. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20575. {
  20576. front: {
  20577. height: math.unit(8, "feet"),
  20578. weight: math.unit(350, "lb"),
  20579. name: "Front",
  20580. image: {
  20581. source: "./media/characters/gabira/front.svg",
  20582. extra: 608 / 580,
  20583. bottom: 0.03
  20584. }
  20585. },
  20586. back: {
  20587. height: math.unit(8, "feet"),
  20588. weight: math.unit(350, "lb"),
  20589. name: "Back",
  20590. image: {
  20591. source: "./media/characters/gabira/back.svg",
  20592. extra: 608 / 580,
  20593. bottom: 0.03
  20594. }
  20595. },
  20596. },
  20597. [
  20598. {
  20599. name: "Normal",
  20600. height: math.unit(8, "feet"),
  20601. default: true
  20602. },
  20603. ]
  20604. ))
  20605. characterMakers.push(() => makeCharacter(
  20606. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20607. {
  20608. front: {
  20609. height: math.unit(5 + 3 / 12, "feet"),
  20610. weight: math.unit(137, "lb"),
  20611. name: "Front",
  20612. image: {
  20613. source: "./media/characters/sasha-katraine/front.svg",
  20614. bottom: 0.045
  20615. }
  20616. },
  20617. },
  20618. [
  20619. {
  20620. name: "Micro",
  20621. height: math.unit(5, "inches")
  20622. },
  20623. {
  20624. name: "Normal",
  20625. height: math.unit(5 + 3 / 12, "feet"),
  20626. default: true
  20627. },
  20628. ]
  20629. ))
  20630. characterMakers.push(() => makeCharacter(
  20631. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20632. {
  20633. side: {
  20634. height: math.unit(4, "inches"),
  20635. weight: math.unit(200, "grams"),
  20636. name: "Side",
  20637. image: {
  20638. source: "./media/characters/der/side.svg",
  20639. extra: 719 / 400,
  20640. bottom: 30.6 / 749.9187
  20641. }
  20642. },
  20643. },
  20644. [
  20645. {
  20646. name: "Micro",
  20647. height: math.unit(4, "inches"),
  20648. default: true
  20649. },
  20650. ]
  20651. ))
  20652. characterMakers.push(() => makeCharacter(
  20653. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20654. {
  20655. side: {
  20656. height: math.unit(30, "meters"),
  20657. weight: math.unit(700, "tonnes"),
  20658. name: "Side",
  20659. image: {
  20660. source: "./media/characters/fixerdragon/side.svg",
  20661. extra: (1293.0514 - 116.03) / 1106.86,
  20662. bottom: 116.03 / 1293.0514
  20663. }
  20664. },
  20665. },
  20666. [
  20667. {
  20668. name: "Planck",
  20669. height: math.unit(1.6e-35, "meters")
  20670. },
  20671. {
  20672. name: "Micro",
  20673. height: math.unit(0.4, "meters")
  20674. },
  20675. {
  20676. name: "Normal",
  20677. height: math.unit(30, "meters"),
  20678. default: true
  20679. },
  20680. {
  20681. name: "Megamacro",
  20682. height: math.unit(1.2, "megameters")
  20683. },
  20684. {
  20685. name: "Teramacro",
  20686. height: math.unit(130, "terameters")
  20687. },
  20688. {
  20689. name: "Yottamacro",
  20690. height: math.unit(6200, "yottameters")
  20691. },
  20692. ]
  20693. ));
  20694. characterMakers.push(() => makeCharacter(
  20695. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20696. {
  20697. front: {
  20698. height: math.unit(8, "feet"),
  20699. weight: math.unit(250, "lb"),
  20700. name: "Front",
  20701. image: {
  20702. source: "./media/characters/kite/front.svg",
  20703. extra: 2796 / 2659,
  20704. bottom: 0.002
  20705. }
  20706. },
  20707. },
  20708. [
  20709. {
  20710. name: "Normal",
  20711. height: math.unit(8, "feet"),
  20712. default: true
  20713. },
  20714. {
  20715. name: "Macro",
  20716. height: math.unit(360, "feet")
  20717. },
  20718. {
  20719. name: "Megamacro",
  20720. height: math.unit(1500, "feet")
  20721. },
  20722. ]
  20723. ))
  20724. characterMakers.push(() => makeCharacter(
  20725. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20726. {
  20727. front: {
  20728. height: math.unit(5 + 10 / 12, "feet"),
  20729. weight: math.unit(150, "lb"),
  20730. name: "Front",
  20731. image: {
  20732. source: "./media/characters/poojawa-vynar/front.svg",
  20733. extra: (1506.1547 - 55) / 1356.6,
  20734. bottom: 55 / 1506.1547
  20735. }
  20736. },
  20737. frontTailless: {
  20738. height: math.unit(5 + 10 / 12, "feet"),
  20739. weight: math.unit(150, "lb"),
  20740. name: "Front (Tailless)",
  20741. image: {
  20742. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20743. extra: (1506.1547 - 55) / 1356.6,
  20744. bottom: 55 / 1506.1547
  20745. }
  20746. },
  20747. },
  20748. [
  20749. {
  20750. name: "Normal",
  20751. height: math.unit(5 + 10 / 12, "feet"),
  20752. default: true
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20758. {
  20759. front: {
  20760. height: math.unit(293, "meters"),
  20761. weight: math.unit(70400, "tons"),
  20762. name: "Front",
  20763. image: {
  20764. source: "./media/characters/violette/front.svg",
  20765. extra: 1227 / 1180,
  20766. bottom: 0.005
  20767. }
  20768. },
  20769. back: {
  20770. height: math.unit(293, "meters"),
  20771. weight: math.unit(70400, "tons"),
  20772. name: "Back",
  20773. image: {
  20774. source: "./media/characters/violette/back.svg",
  20775. extra: 1227 / 1180,
  20776. bottom: 0.005
  20777. }
  20778. },
  20779. },
  20780. [
  20781. {
  20782. name: "Macro",
  20783. height: math.unit(293, "meters"),
  20784. default: true
  20785. },
  20786. ]
  20787. ))
  20788. characterMakers.push(() => makeCharacter(
  20789. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20790. {
  20791. front: {
  20792. height: math.unit(1050, "feet"),
  20793. weight: math.unit(200000, "tons"),
  20794. name: "Front",
  20795. image: {
  20796. source: "./media/characters/alessandra/front.svg",
  20797. extra: 960 / 912,
  20798. bottom: 0.06
  20799. }
  20800. },
  20801. },
  20802. [
  20803. {
  20804. name: "Macro",
  20805. height: math.unit(1050, "feet")
  20806. },
  20807. {
  20808. name: "Macro+",
  20809. height: math.unit(900, "meters"),
  20810. default: true
  20811. },
  20812. ]
  20813. ))
  20814. characterMakers.push(() => makeCharacter(
  20815. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20816. {
  20817. front: {
  20818. height: math.unit(5, "feet"),
  20819. weight: math.unit(187, "lb"),
  20820. name: "Front",
  20821. image: {
  20822. source: "./media/characters/person/front.svg",
  20823. extra: 3087 / 2945,
  20824. bottom: 91 / 3181
  20825. }
  20826. },
  20827. },
  20828. [
  20829. {
  20830. name: "Micro",
  20831. height: math.unit(3, "inches")
  20832. },
  20833. {
  20834. name: "Normal",
  20835. height: math.unit(5, "feet"),
  20836. default: true
  20837. },
  20838. {
  20839. name: "Macro",
  20840. height: math.unit(90, "feet")
  20841. },
  20842. {
  20843. name: "Max Size",
  20844. height: math.unit(280, "feet")
  20845. },
  20846. ]
  20847. ))
  20848. characterMakers.push(() => makeCharacter(
  20849. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20850. {
  20851. front: {
  20852. height: math.unit(4.5, "meters"),
  20853. weight: math.unit(3200, "lb"),
  20854. name: "Front",
  20855. image: {
  20856. source: "./media/characters/ty/front.svg",
  20857. extra: 1038 / 960,
  20858. bottom: 31.156 / 1068
  20859. }
  20860. },
  20861. back: {
  20862. height: math.unit(4.5, "meters"),
  20863. weight: math.unit(3200, "lb"),
  20864. name: "Back",
  20865. image: {
  20866. source: "./media/characters/ty/back.svg",
  20867. extra: 1044 / 966,
  20868. bottom: 7.48 / 1049
  20869. }
  20870. },
  20871. },
  20872. [
  20873. {
  20874. name: "Normal",
  20875. height: math.unit(4.5, "meters"),
  20876. default: true
  20877. },
  20878. ]
  20879. ))
  20880. characterMakers.push(() => makeCharacter(
  20881. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20882. {
  20883. front: {
  20884. height: math.unit(5 + 4 / 12, "feet"),
  20885. weight: math.unit(115, "lb"),
  20886. name: "Front",
  20887. image: {
  20888. source: "./media/characters/rocky/front.svg",
  20889. extra: 1012 / 975,
  20890. bottom: 54 / 1066
  20891. }
  20892. },
  20893. },
  20894. [
  20895. {
  20896. name: "Normal",
  20897. height: math.unit(5 + 4 / 12, "feet"),
  20898. default: true
  20899. },
  20900. ]
  20901. ))
  20902. characterMakers.push(() => makeCharacter(
  20903. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20904. {
  20905. upright: {
  20906. height: math.unit(6, "meters"),
  20907. weight: math.unit(4000, "kg"),
  20908. name: "Upright",
  20909. image: {
  20910. source: "./media/characters/ruin/upright.svg",
  20911. extra: 668 / 661,
  20912. bottom: 42 / 799.8396
  20913. }
  20914. },
  20915. },
  20916. [
  20917. {
  20918. name: "Normal",
  20919. height: math.unit(6, "meters"),
  20920. default: true
  20921. },
  20922. ]
  20923. ))
  20924. characterMakers.push(() => makeCharacter(
  20925. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20926. {
  20927. front: {
  20928. height: math.unit(5, "feet"),
  20929. weight: math.unit(106, "lb"),
  20930. name: "Front",
  20931. image: {
  20932. source: "./media/characters/robin/front.svg",
  20933. extra: 862 / 799,
  20934. bottom: 42.4 / 914.8856
  20935. }
  20936. },
  20937. },
  20938. [
  20939. {
  20940. name: "Normal",
  20941. height: math.unit(5, "feet"),
  20942. default: true
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20948. {
  20949. side: {
  20950. height: math.unit(3, "feet"),
  20951. weight: math.unit(225, "lb"),
  20952. name: "Side",
  20953. image: {
  20954. source: "./media/characters/saian/side.svg",
  20955. extra: 566 / 356,
  20956. bottom: 79.7 / 643
  20957. }
  20958. },
  20959. maw: {
  20960. height: math.unit(2.85, "feet"),
  20961. name: "Maw",
  20962. image: {
  20963. source: "./media/characters/saian/maw.svg"
  20964. }
  20965. },
  20966. },
  20967. [
  20968. {
  20969. name: "Normal",
  20970. height: math.unit(3, "feet"),
  20971. default: true
  20972. },
  20973. ]
  20974. ))
  20975. characterMakers.push(() => makeCharacter(
  20976. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20977. {
  20978. side: {
  20979. height: math.unit(8, "feet"),
  20980. weight: math.unit(300, "lb"),
  20981. name: "Side",
  20982. image: {
  20983. source: "./media/characters/equus-silvermane/side.svg",
  20984. extra: 2176 / 2050,
  20985. bottom: 65.7 / 2245
  20986. }
  20987. },
  20988. front: {
  20989. height: math.unit(8, "feet"),
  20990. weight: math.unit(300, "lb"),
  20991. name: "Front",
  20992. image: {
  20993. source: "./media/characters/equus-silvermane/front.svg",
  20994. extra: 4633 / 4400,
  20995. bottom: 71.3 / 4706.915
  20996. }
  20997. },
  20998. sideStepping: {
  20999. height: math.unit(8, "feet"),
  21000. weight: math.unit(300, "lb"),
  21001. name: "Side (Stepping)",
  21002. image: {
  21003. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21004. extra: 1968 / 1860,
  21005. bottom: 16.4 / 1989
  21006. }
  21007. },
  21008. },
  21009. [
  21010. {
  21011. name: "Normal",
  21012. height: math.unit(8, "feet")
  21013. },
  21014. {
  21015. name: "Minimacro",
  21016. height: math.unit(75, "feet"),
  21017. default: true
  21018. },
  21019. {
  21020. name: "Macro",
  21021. height: math.unit(150, "feet")
  21022. },
  21023. {
  21024. name: "Macro+",
  21025. height: math.unit(1000, "feet")
  21026. },
  21027. {
  21028. name: "Megamacro",
  21029. height: math.unit(1, "mile")
  21030. },
  21031. ]
  21032. ))
  21033. characterMakers.push(() => makeCharacter(
  21034. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21035. {
  21036. side: {
  21037. height: math.unit(20, "feet"),
  21038. weight: math.unit(30000, "kg"),
  21039. name: "Side",
  21040. image: {
  21041. source: "./media/characters/windar/side.svg",
  21042. extra: 1491 / 1248,
  21043. bottom: 82.56 / 1568
  21044. }
  21045. },
  21046. },
  21047. [
  21048. {
  21049. name: "Normal",
  21050. height: math.unit(20, "feet"),
  21051. default: true
  21052. },
  21053. ]
  21054. ))
  21055. characterMakers.push(() => makeCharacter(
  21056. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21057. {
  21058. side: {
  21059. height: math.unit(15.66, "feet"),
  21060. weight: math.unit(150, "lb"),
  21061. name: "Side",
  21062. image: {
  21063. source: "./media/characters/melody/side.svg",
  21064. extra: 1097 / 944,
  21065. bottom: 11.8 / 1109
  21066. }
  21067. },
  21068. sideOutfit: {
  21069. height: math.unit(15.66, "feet"),
  21070. weight: math.unit(150, "lb"),
  21071. name: "Side (Outfit)",
  21072. image: {
  21073. source: "./media/characters/melody/side-outfit.svg",
  21074. extra: 1097 / 944,
  21075. bottom: 11.8 / 1109
  21076. }
  21077. },
  21078. },
  21079. [
  21080. {
  21081. name: "Normal",
  21082. height: math.unit(15.66, "feet"),
  21083. default: true
  21084. },
  21085. ]
  21086. ))
  21087. characterMakers.push(() => makeCharacter(
  21088. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21089. {
  21090. front: {
  21091. height: math.unit(8, "feet"),
  21092. weight: math.unit(325, "lb"),
  21093. name: "Front",
  21094. image: {
  21095. source: "./media/characters/windera/front.svg",
  21096. extra: 3180 / 2845,
  21097. bottom: 178 / 3365
  21098. }
  21099. },
  21100. },
  21101. [
  21102. {
  21103. name: "Normal",
  21104. height: math.unit(8, "feet"),
  21105. default: true
  21106. },
  21107. ]
  21108. ))
  21109. characterMakers.push(() => makeCharacter(
  21110. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21111. {
  21112. front: {
  21113. height: math.unit(28.75, "feet"),
  21114. weight: math.unit(2000, "kg"),
  21115. name: "Front",
  21116. image: {
  21117. source: "./media/characters/sonear/front.svg",
  21118. extra: 1041.1 / 964.9,
  21119. bottom: 53.7 / 1096.6
  21120. }
  21121. },
  21122. },
  21123. [
  21124. {
  21125. name: "Normal",
  21126. height: math.unit(28.75, "feet"),
  21127. default: true
  21128. },
  21129. ]
  21130. ))
  21131. characterMakers.push(() => makeCharacter(
  21132. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21133. {
  21134. side: {
  21135. height: math.unit(25.5, "feet"),
  21136. weight: math.unit(23000, "kg"),
  21137. name: "Side",
  21138. image: {
  21139. source: "./media/characters/kanara/side.svg"
  21140. }
  21141. },
  21142. },
  21143. [
  21144. {
  21145. name: "Normal",
  21146. height: math.unit(25.5, "feet"),
  21147. default: true
  21148. },
  21149. ]
  21150. ))
  21151. characterMakers.push(() => makeCharacter(
  21152. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21153. {
  21154. side: {
  21155. height: math.unit(10, "feet"),
  21156. weight: math.unit(1000, "kg"),
  21157. name: "Side",
  21158. image: {
  21159. source: "./media/characters/ereus/side.svg",
  21160. extra: 1157 / 959,
  21161. bottom: 153 / 1312.5
  21162. }
  21163. },
  21164. },
  21165. [
  21166. {
  21167. name: "Normal",
  21168. height: math.unit(10, "feet"),
  21169. default: true
  21170. },
  21171. ]
  21172. ))
  21173. characterMakers.push(() => makeCharacter(
  21174. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21175. {
  21176. side: {
  21177. height: math.unit(4.5, "feet"),
  21178. weight: math.unit(500, "lb"),
  21179. name: "Side",
  21180. image: {
  21181. source: "./media/characters/e-ter/side.svg",
  21182. extra: 1550 / 1248,
  21183. bottom: 146 / 1694
  21184. }
  21185. },
  21186. },
  21187. [
  21188. {
  21189. name: "Normal",
  21190. height: math.unit(4.5, "feet"),
  21191. default: true
  21192. },
  21193. ]
  21194. ))
  21195. characterMakers.push(() => makeCharacter(
  21196. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21197. {
  21198. side: {
  21199. height: math.unit(9.7, "feet"),
  21200. weight: math.unit(4000, "kg"),
  21201. name: "Side",
  21202. image: {
  21203. source: "./media/characters/yamie/side.svg"
  21204. }
  21205. },
  21206. },
  21207. [
  21208. {
  21209. name: "Normal",
  21210. height: math.unit(9.7, "feet"),
  21211. default: true
  21212. },
  21213. ]
  21214. ))
  21215. characterMakers.push(() => makeCharacter(
  21216. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21217. {
  21218. front: {
  21219. height: math.unit(50, "feet"),
  21220. weight: math.unit(50000, "kg"),
  21221. name: "Front",
  21222. image: {
  21223. source: "./media/characters/anders/front.svg",
  21224. extra: 570 / 539,
  21225. bottom: 14.7 / 586.7
  21226. }
  21227. },
  21228. },
  21229. [
  21230. {
  21231. name: "Large",
  21232. height: math.unit(50, "feet")
  21233. },
  21234. {
  21235. name: "Macro",
  21236. height: math.unit(2000, "feet"),
  21237. default: true
  21238. },
  21239. {
  21240. name: "Megamacro",
  21241. height: math.unit(12, "miles")
  21242. },
  21243. ]
  21244. ))
  21245. characterMakers.push(() => makeCharacter(
  21246. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21247. {
  21248. front: {
  21249. height: math.unit(7 + 2 / 12, "feet"),
  21250. weight: math.unit(300, "lb"),
  21251. name: "Front",
  21252. image: {
  21253. source: "./media/characters/reban/front.svg",
  21254. extra: 516 / 487,
  21255. bottom: 42.82 / 558.356
  21256. }
  21257. },
  21258. dick: {
  21259. height: math.unit(7 / 5, "feet"),
  21260. name: "Dick",
  21261. image: {
  21262. source: "./media/characters/reban/dick.svg"
  21263. }
  21264. },
  21265. },
  21266. [
  21267. {
  21268. name: "Natural Height",
  21269. height: math.unit(7 + 2 / 12, "feet")
  21270. },
  21271. {
  21272. name: "Macro",
  21273. height: math.unit(500, "feet"),
  21274. default: true
  21275. },
  21276. {
  21277. name: "Canon Height",
  21278. height: math.unit(50, "AU")
  21279. },
  21280. ]
  21281. ))
  21282. characterMakers.push(() => makeCharacter(
  21283. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21284. {
  21285. front: {
  21286. height: math.unit(6, "feet"),
  21287. weight: math.unit(150, "lb"),
  21288. name: "Front",
  21289. image: {
  21290. source: "./media/characters/terrance-keayes/front.svg",
  21291. extra: 1.005,
  21292. bottom: 151 / 1615
  21293. }
  21294. },
  21295. side: {
  21296. height: math.unit(6, "feet"),
  21297. weight: math.unit(150, "lb"),
  21298. name: "Side",
  21299. image: {
  21300. source: "./media/characters/terrance-keayes/side.svg",
  21301. extra: 1.005,
  21302. bottom: 129.4 / 1544
  21303. }
  21304. },
  21305. back: {
  21306. height: math.unit(6, "feet"),
  21307. weight: math.unit(150, "lb"),
  21308. name: "Back",
  21309. image: {
  21310. source: "./media/characters/terrance-keayes/back.svg",
  21311. extra: 1.005,
  21312. bottom: 58.4 / 1557.3
  21313. }
  21314. },
  21315. dick: {
  21316. height: math.unit(6 * 0.208, "feet"),
  21317. name: "Dick",
  21318. image: {
  21319. source: "./media/characters/terrance-keayes/dick.svg"
  21320. }
  21321. },
  21322. },
  21323. [
  21324. {
  21325. name: "Canon Height",
  21326. height: math.unit(35, "miles"),
  21327. default: true
  21328. },
  21329. ]
  21330. ))
  21331. characterMakers.push(() => makeCharacter(
  21332. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21333. {
  21334. front: {
  21335. height: math.unit(6, "feet"),
  21336. weight: math.unit(150, "lb"),
  21337. name: "Front",
  21338. image: {
  21339. source: "./media/characters/ofelia/front.svg",
  21340. extra: 546 / 541,
  21341. bottom: 39 / 583
  21342. }
  21343. },
  21344. back: {
  21345. height: math.unit(6, "feet"),
  21346. weight: math.unit(150, "lb"),
  21347. name: "Back",
  21348. image: {
  21349. source: "./media/characters/ofelia/back.svg",
  21350. extra: 564 / 559.5,
  21351. bottom: 8.69 / 573.02
  21352. }
  21353. },
  21354. maw: {
  21355. height: math.unit(1, "feet"),
  21356. name: "Maw",
  21357. image: {
  21358. source: "./media/characters/ofelia/maw.svg"
  21359. }
  21360. },
  21361. foot: {
  21362. height: math.unit(1.949, "feet"),
  21363. name: "Foot",
  21364. image: {
  21365. source: "./media/characters/ofelia/foot.svg"
  21366. }
  21367. },
  21368. },
  21369. [
  21370. {
  21371. name: "Canon Height",
  21372. height: math.unit(2000, "miles"),
  21373. default: true
  21374. },
  21375. ]
  21376. ))
  21377. characterMakers.push(() => makeCharacter(
  21378. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21379. {
  21380. front: {
  21381. height: math.unit(6, "feet"),
  21382. weight: math.unit(150, "lb"),
  21383. name: "Front",
  21384. image: {
  21385. source: "./media/characters/samuel/front.svg",
  21386. extra: 265 / 258,
  21387. bottom: 2 / 266.1566
  21388. }
  21389. },
  21390. },
  21391. [
  21392. {
  21393. name: "Macro",
  21394. height: math.unit(100, "feet"),
  21395. default: true
  21396. },
  21397. {
  21398. name: "Full Size",
  21399. height: math.unit(1000, "miles")
  21400. },
  21401. ]
  21402. ))
  21403. characterMakers.push(() => makeCharacter(
  21404. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21405. {
  21406. front: {
  21407. height: math.unit(6, "feet"),
  21408. weight: math.unit(300, "lb"),
  21409. name: "Front",
  21410. image: {
  21411. source: "./media/characters/beishir-kiel/front.svg",
  21412. extra: 569 / 547,
  21413. bottom: 41.9 / 609
  21414. }
  21415. },
  21416. maw: {
  21417. height: math.unit(6 * 0.202, "feet"),
  21418. name: "Maw",
  21419. image: {
  21420. source: "./media/characters/beishir-kiel/maw.svg"
  21421. }
  21422. },
  21423. },
  21424. [
  21425. {
  21426. name: "Macro",
  21427. height: math.unit(300, "feet"),
  21428. default: true
  21429. },
  21430. ]
  21431. ))
  21432. characterMakers.push(() => makeCharacter(
  21433. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21434. {
  21435. front: {
  21436. height: math.unit(5 + 8 / 12, "feet"),
  21437. weight: math.unit(120, "lb"),
  21438. name: "Front",
  21439. image: {
  21440. source: "./media/characters/logan-grey/front.svg",
  21441. extra: 2539 / 2393,
  21442. bottom: 97.6 / 2636.37
  21443. }
  21444. },
  21445. frontAlt: {
  21446. height: math.unit(5 + 8 / 12, "feet"),
  21447. weight: math.unit(120, "lb"),
  21448. name: "Front (Alt)",
  21449. image: {
  21450. source: "./media/characters/logan-grey/front-alt.svg",
  21451. extra: 958 / 893,
  21452. bottom: 15 / 970.768
  21453. }
  21454. },
  21455. back: {
  21456. height: math.unit(5 + 8 / 12, "feet"),
  21457. weight: math.unit(120, "lb"),
  21458. name: "Back",
  21459. image: {
  21460. source: "./media/characters/logan-grey/back.svg",
  21461. extra: 958 / 893,
  21462. bottom: 2.1881 / 970.9788
  21463. }
  21464. },
  21465. dick: {
  21466. height: math.unit(1.437, "feet"),
  21467. name: "Dick",
  21468. image: {
  21469. source: "./media/characters/logan-grey/dick.svg"
  21470. }
  21471. },
  21472. },
  21473. [
  21474. {
  21475. name: "Normal",
  21476. height: math.unit(5 + 8 / 12, "feet")
  21477. },
  21478. {
  21479. name: "The 500 Foot Femboy",
  21480. height: math.unit(500, "feet"),
  21481. default: true
  21482. },
  21483. {
  21484. name: "Megmacro",
  21485. height: math.unit(20, "miles")
  21486. },
  21487. ]
  21488. ))
  21489. characterMakers.push(() => makeCharacter(
  21490. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21491. {
  21492. front: {
  21493. height: math.unit(8 + 2 / 12, "feet"),
  21494. weight: math.unit(275, "lb"),
  21495. name: "Front",
  21496. image: {
  21497. source: "./media/characters/draganta/front.svg",
  21498. extra: 1177 / 1135,
  21499. bottom: 33.46 / 1212.1
  21500. }
  21501. },
  21502. },
  21503. [
  21504. {
  21505. name: "Normal",
  21506. height: math.unit(8 + 6 / 12, "feet"),
  21507. default: true
  21508. },
  21509. {
  21510. name: "Macro",
  21511. height: math.unit(150, "feet")
  21512. },
  21513. {
  21514. name: "Megamacro",
  21515. height: math.unit(1000, "miles")
  21516. },
  21517. ]
  21518. ))
  21519. characterMakers.push(() => makeCharacter(
  21520. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21521. {
  21522. front: {
  21523. height: math.unit(1.72, "m"),
  21524. weight: math.unit(80, "lb"),
  21525. name: "Front",
  21526. image: {
  21527. source: "./media/characters/voski/front.svg",
  21528. extra: 2076.22 / 2022.4,
  21529. bottom: 102.7 / 2177.3866
  21530. }
  21531. },
  21532. frontNsfw: {
  21533. height: math.unit(1.72, "m"),
  21534. weight: math.unit(80, "lb"),
  21535. name: "Front (NSFW)",
  21536. image: {
  21537. source: "./media/characters/voski/front-nsfw.svg",
  21538. extra: 2076.22 / 2022.4,
  21539. bottom: 102.7 / 2177.3866
  21540. }
  21541. },
  21542. back: {
  21543. height: math.unit(1.72, "m"),
  21544. weight: math.unit(80, "lb"),
  21545. name: "Back",
  21546. image: {
  21547. source: "./media/characters/voski/back.svg",
  21548. extra: 2104 / 2051,
  21549. bottom: 10.45 / 2113.63
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(1.72, "m")
  21557. },
  21558. {
  21559. name: "Macro",
  21560. height: math.unit(55, "m"),
  21561. default: true
  21562. },
  21563. {
  21564. name: "Macro+",
  21565. height: math.unit(300, "m")
  21566. },
  21567. {
  21568. name: "Macro++",
  21569. height: math.unit(700, "m")
  21570. },
  21571. {
  21572. name: "Macro+++",
  21573. height: math.unit(4500, "m")
  21574. },
  21575. {
  21576. name: "Macro++++",
  21577. height: math.unit(45, "km")
  21578. },
  21579. {
  21580. name: "Macro+++++",
  21581. height: math.unit(1220, "km")
  21582. },
  21583. ]
  21584. ))
  21585. characterMakers.push(() => makeCharacter(
  21586. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21587. {
  21588. front: {
  21589. height: math.unit(2.3, "m"),
  21590. weight: math.unit(304, "kg"),
  21591. name: "Front",
  21592. image: {
  21593. source: "./media/characters/icowom-lee/front.svg",
  21594. extra: 985 / 955,
  21595. bottom: 25.4 / 1012
  21596. }
  21597. },
  21598. fronttentacles: {
  21599. height: math.unit(2.3, "m"),
  21600. weight: math.unit(304, "kg"),
  21601. name: "Front-tentacles",
  21602. image: {
  21603. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21604. extra: 985 / 955,
  21605. bottom: 25.4 / 1012
  21606. }
  21607. },
  21608. back: {
  21609. height: math.unit(2.3, "m"),
  21610. weight: math.unit(304, "kg"),
  21611. name: "Back",
  21612. image: {
  21613. source: "./media/characters/icowom-lee/back.svg",
  21614. extra: 975 / 954,
  21615. bottom: 9.5 / 985
  21616. }
  21617. },
  21618. backtentacles: {
  21619. height: math.unit(2.3, "m"),
  21620. weight: math.unit(304, "kg"),
  21621. name: "Back-tentacles",
  21622. image: {
  21623. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21624. extra: 975 / 954,
  21625. bottom: 9.5 / 985
  21626. }
  21627. },
  21628. frontDressed: {
  21629. height: math.unit(2.3, "m"),
  21630. weight: math.unit(304, "kg"),
  21631. name: "Front (Dressed)",
  21632. image: {
  21633. source: "./media/characters/icowom-lee/front-dressed.svg",
  21634. extra: 3076 / 2933,
  21635. bottom: 51.4 / 3125.1889
  21636. }
  21637. },
  21638. rump: {
  21639. height: math.unit(0.776, "meters"),
  21640. name: "Rump",
  21641. image: {
  21642. source: "./media/characters/icowom-lee/rump.svg"
  21643. }
  21644. },
  21645. genitals: {
  21646. height: math.unit(0.78, "meters"),
  21647. name: "Genitals",
  21648. image: {
  21649. source: "./media/characters/icowom-lee/genitals.svg"
  21650. }
  21651. },
  21652. },
  21653. [
  21654. {
  21655. name: "Normal",
  21656. height: math.unit(2.3, "meters"),
  21657. default: true
  21658. },
  21659. {
  21660. name: "Macro",
  21661. height: math.unit(94, "meters"),
  21662. default: true
  21663. },
  21664. ]
  21665. ))
  21666. characterMakers.push(() => makeCharacter(
  21667. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21668. {
  21669. front: {
  21670. height: math.unit(22, "meters"),
  21671. weight: math.unit(21000, "kg"),
  21672. name: "Front",
  21673. image: {
  21674. source: "./media/characters/shock-diamond/front.svg",
  21675. extra: 2204 / 2053,
  21676. bottom: 65 / 2239.47
  21677. }
  21678. },
  21679. frontNude: {
  21680. height: math.unit(22, "meters"),
  21681. weight: math.unit(21000, "kg"),
  21682. name: "Front (Nude)",
  21683. image: {
  21684. source: "./media/characters/shock-diamond/front-nude.svg",
  21685. extra: 2514 / 2285,
  21686. bottom: 13 / 2527.56
  21687. }
  21688. },
  21689. },
  21690. [
  21691. {
  21692. name: "Normal",
  21693. height: math.unit(3, "meters")
  21694. },
  21695. {
  21696. name: "Macro",
  21697. height: math.unit(22, "meters"),
  21698. default: true
  21699. },
  21700. ]
  21701. ))
  21702. characterMakers.push(() => makeCharacter(
  21703. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21704. {
  21705. front: {
  21706. height: math.unit(5 + 4 / 12, "feet"),
  21707. weight: math.unit(120, "lb"),
  21708. name: "Front",
  21709. image: {
  21710. source: "./media/characters/rory/front.svg",
  21711. extra: 589 / 556,
  21712. bottom: 45.7 / 635.76
  21713. }
  21714. },
  21715. frontNude: {
  21716. height: math.unit(5 + 4 / 12, "feet"),
  21717. weight: math.unit(120, "lb"),
  21718. name: "Front (Nude)",
  21719. image: {
  21720. source: "./media/characters/rory/front-nude.svg",
  21721. extra: 589 / 556,
  21722. bottom: 45.7 / 635.76
  21723. }
  21724. },
  21725. side: {
  21726. height: math.unit(5 + 4 / 12, "feet"),
  21727. weight: math.unit(120, "lb"),
  21728. name: "Side",
  21729. image: {
  21730. source: "./media/characters/rory/side.svg",
  21731. extra: 597 / 564,
  21732. bottom: 55 / 653
  21733. }
  21734. },
  21735. back: {
  21736. height: math.unit(5 + 4 / 12, "feet"),
  21737. weight: math.unit(120, "lb"),
  21738. name: "Back",
  21739. image: {
  21740. source: "./media/characters/rory/back.svg",
  21741. extra: 620 / 585,
  21742. bottom: 8.86 / 630.43
  21743. }
  21744. },
  21745. dick: {
  21746. height: math.unit(0.86, "feet"),
  21747. name: "Dick",
  21748. image: {
  21749. source: "./media/characters/rory/dick.svg"
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Normal",
  21756. height: math.unit(5 + 4 / 12, "feet"),
  21757. default: true
  21758. },
  21759. {
  21760. name: "Macro",
  21761. height: math.unit(100, "feet")
  21762. },
  21763. {
  21764. name: "Macro+",
  21765. height: math.unit(140, "feet")
  21766. },
  21767. {
  21768. name: "Macro++",
  21769. height: math.unit(300, "feet")
  21770. },
  21771. ]
  21772. ))
  21773. characterMakers.push(() => makeCharacter(
  21774. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21775. {
  21776. front: {
  21777. height: math.unit(5 + 9 / 12, "feet"),
  21778. weight: math.unit(190, "lb"),
  21779. name: "Front",
  21780. image: {
  21781. source: "./media/characters/sprisk/front.svg",
  21782. extra: 1225 / 1180,
  21783. bottom: 42.7 / 1266.4
  21784. }
  21785. },
  21786. frontNsfw: {
  21787. height: math.unit(5 + 9 / 12, "feet"),
  21788. weight: math.unit(190, "lb"),
  21789. name: "Front (NSFW)",
  21790. image: {
  21791. source: "./media/characters/sprisk/front-nsfw.svg",
  21792. extra: 1225 / 1180,
  21793. bottom: 42.7 / 1266.4
  21794. }
  21795. },
  21796. back: {
  21797. height: math.unit(5 + 9 / 12, "feet"),
  21798. weight: math.unit(190, "lb"),
  21799. name: "Back",
  21800. image: {
  21801. source: "./media/characters/sprisk/back.svg",
  21802. extra: 1247 / 1200,
  21803. bottom: 5.6 / 1253.04
  21804. }
  21805. },
  21806. },
  21807. [
  21808. {
  21809. name: "Tiny",
  21810. height: math.unit(2, "inches")
  21811. },
  21812. {
  21813. name: "Normal",
  21814. height: math.unit(5 + 9 / 12, "feet"),
  21815. default: true
  21816. },
  21817. {
  21818. name: "Mini Macro",
  21819. height: math.unit(18, "feet")
  21820. },
  21821. {
  21822. name: "Macro",
  21823. height: math.unit(100, "feet")
  21824. },
  21825. {
  21826. name: "MACRO",
  21827. height: math.unit(50, "miles")
  21828. },
  21829. {
  21830. name: "M A C R O",
  21831. height: math.unit(300, "miles")
  21832. },
  21833. ]
  21834. ))
  21835. characterMakers.push(() => makeCharacter(
  21836. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21837. {
  21838. side: {
  21839. height: math.unit(15.6, "meters"),
  21840. weight: math.unit(700000, "kg"),
  21841. name: "Side",
  21842. image: {
  21843. source: "./media/characters/bunsen/side.svg",
  21844. extra: 1644 / 358
  21845. }
  21846. },
  21847. foot: {
  21848. height: math.unit(1.611 * 1644 / 358, "meter"),
  21849. name: "Foot",
  21850. image: {
  21851. source: "./media/characters/bunsen/foot.svg"
  21852. }
  21853. },
  21854. },
  21855. [
  21856. {
  21857. name: "Small",
  21858. height: math.unit(10, "feet")
  21859. },
  21860. {
  21861. name: "Normal",
  21862. height: math.unit(15.6, "meters"),
  21863. default: true
  21864. },
  21865. ]
  21866. ))
  21867. characterMakers.push(() => makeCharacter(
  21868. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21869. {
  21870. front: {
  21871. height: math.unit(4 + 11 / 12, "feet"),
  21872. weight: math.unit(140, "lb"),
  21873. name: "Front",
  21874. image: {
  21875. source: "./media/characters/sesh/front.svg",
  21876. extra: 3420 / 3231,
  21877. bottom: 72 / 3949.5
  21878. }
  21879. },
  21880. },
  21881. [
  21882. {
  21883. name: "Normal",
  21884. height: math.unit(4 + 11 / 12, "feet")
  21885. },
  21886. {
  21887. name: "Grown",
  21888. height: math.unit(15, "feet"),
  21889. default: true
  21890. },
  21891. {
  21892. name: "Macro",
  21893. height: math.unit(1500, "feet")
  21894. },
  21895. {
  21896. name: "Megamacro",
  21897. height: math.unit(30, "miles")
  21898. },
  21899. {
  21900. name: "Continental",
  21901. height: math.unit(3000, "miles")
  21902. },
  21903. {
  21904. name: "Gravity Mass",
  21905. height: math.unit(300000, "miles")
  21906. },
  21907. {
  21908. name: "Planet Buster",
  21909. height: math.unit(30000000, "miles")
  21910. },
  21911. {
  21912. name: "Big",
  21913. height: math.unit(3000000000, "miles")
  21914. },
  21915. ]
  21916. ))
  21917. characterMakers.push(() => makeCharacter(
  21918. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21919. {
  21920. front: {
  21921. height: math.unit(9, "feet"),
  21922. weight: math.unit(350, "lb"),
  21923. name: "Front",
  21924. image: {
  21925. source: "./media/characters/pepper/front.svg",
  21926. extra: 1448 / 1312,
  21927. bottom: 9.4 / 1457.88
  21928. }
  21929. },
  21930. back: {
  21931. height: math.unit(9, "feet"),
  21932. weight: math.unit(350, "lb"),
  21933. name: "Back",
  21934. image: {
  21935. source: "./media/characters/pepper/back.svg",
  21936. extra: 1423 / 1300,
  21937. bottom: 4.6 / 1429
  21938. }
  21939. },
  21940. maw: {
  21941. height: math.unit(0.932, "feet"),
  21942. name: "Maw",
  21943. image: {
  21944. source: "./media/characters/pepper/maw.svg"
  21945. }
  21946. },
  21947. },
  21948. [
  21949. {
  21950. name: "Normal",
  21951. height: math.unit(9, "feet"),
  21952. default: true
  21953. },
  21954. ]
  21955. ))
  21956. characterMakers.push(() => makeCharacter(
  21957. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21958. {
  21959. front: {
  21960. height: math.unit(6, "feet"),
  21961. weight: math.unit(150, "lb"),
  21962. name: "Front",
  21963. image: {
  21964. source: "./media/characters/maelstrom/front.svg",
  21965. extra: 2100 / 1883,
  21966. bottom: 94 / 2196.7
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "Less Kaiju",
  21973. height: math.unit(200, "feet")
  21974. },
  21975. {
  21976. name: "Kaiju",
  21977. height: math.unit(400, "feet"),
  21978. default: true
  21979. },
  21980. {
  21981. name: "Kaiju-er",
  21982. height: math.unit(600, "feet")
  21983. },
  21984. ]
  21985. ))
  21986. characterMakers.push(() => makeCharacter(
  21987. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21988. {
  21989. front: {
  21990. height: math.unit(6 + 5 / 12, "feet"),
  21991. weight: math.unit(180, "lb"),
  21992. name: "Front",
  21993. image: {
  21994. source: "./media/characters/lexir/front.svg",
  21995. extra: 180 / 172,
  21996. bottom: 12 / 192
  21997. }
  21998. },
  21999. back: {
  22000. height: math.unit(6 + 5 / 12, "feet"),
  22001. weight: math.unit(180, "lb"),
  22002. name: "Back",
  22003. image: {
  22004. source: "./media/characters/lexir/back.svg",
  22005. extra: 183.84 / 175.5,
  22006. bottom: 3.1 / 187
  22007. }
  22008. },
  22009. },
  22010. [
  22011. {
  22012. name: "Very Smal",
  22013. height: math.unit(1, "nm")
  22014. },
  22015. {
  22016. name: "Normal",
  22017. height: math.unit(6 + 5 / 12, "feet"),
  22018. default: true
  22019. },
  22020. {
  22021. name: "Macro",
  22022. height: math.unit(1, "mile")
  22023. },
  22024. {
  22025. name: "Megamacro",
  22026. height: math.unit(50, "miles")
  22027. },
  22028. ]
  22029. ))
  22030. characterMakers.push(() => makeCharacter(
  22031. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22032. {
  22033. front: {
  22034. height: math.unit(1.5, "meters"),
  22035. weight: math.unit(100, "lb"),
  22036. name: "Front",
  22037. image: {
  22038. source: "./media/characters/maksio/front.svg",
  22039. extra: 1549 / 1531,
  22040. bottom: 123.7 / 1674.5429
  22041. }
  22042. },
  22043. back: {
  22044. height: math.unit(1.5, "meters"),
  22045. weight: math.unit(100, "lb"),
  22046. name: "Back",
  22047. image: {
  22048. source: "./media/characters/maksio/back.svg",
  22049. extra: 1541 / 1509,
  22050. bottom: 97 / 1639
  22051. }
  22052. },
  22053. hand: {
  22054. height: math.unit(0.621, "feet"),
  22055. name: "Hand",
  22056. image: {
  22057. source: "./media/characters/maksio/hand.svg"
  22058. }
  22059. },
  22060. foot: {
  22061. height: math.unit(1.611, "feet"),
  22062. name: "Foot",
  22063. image: {
  22064. source: "./media/characters/maksio/foot.svg"
  22065. }
  22066. },
  22067. },
  22068. [
  22069. {
  22070. name: "Shrunken",
  22071. height: math.unit(10, "cm")
  22072. },
  22073. {
  22074. name: "Normal",
  22075. height: math.unit(150, "cm"),
  22076. default: true
  22077. },
  22078. ]
  22079. ))
  22080. characterMakers.push(() => makeCharacter(
  22081. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22082. {
  22083. front: {
  22084. height: math.unit(100, "feet"),
  22085. name: "Front",
  22086. image: {
  22087. source: "./media/characters/erza-bear/front.svg",
  22088. extra: 2449 / 2390,
  22089. bottom: 46 / 2494
  22090. }
  22091. },
  22092. back: {
  22093. height: math.unit(100, "feet"),
  22094. name: "Back",
  22095. image: {
  22096. source: "./media/characters/erza-bear/back.svg",
  22097. extra: 2489 / 2430,
  22098. bottom: 85.4 / 2480
  22099. }
  22100. },
  22101. tail: {
  22102. height: math.unit(42, "feet"),
  22103. name: "Tail",
  22104. image: {
  22105. source: "./media/characters/erza-bear/tail.svg"
  22106. }
  22107. },
  22108. tongue: {
  22109. height: math.unit(8, "feet"),
  22110. name: "Tongue",
  22111. image: {
  22112. source: "./media/characters/erza-bear/tongue.svg"
  22113. }
  22114. },
  22115. dick: {
  22116. height: math.unit(10.5, "feet"),
  22117. name: "Dick",
  22118. image: {
  22119. source: "./media/characters/erza-bear/dick.svg"
  22120. }
  22121. },
  22122. dickVertical: {
  22123. height: math.unit(16.9, "feet"),
  22124. name: "Dick (Vertical)",
  22125. image: {
  22126. source: "./media/characters/erza-bear/dick-vertical.svg"
  22127. }
  22128. },
  22129. },
  22130. [
  22131. {
  22132. name: "Macro",
  22133. height: math.unit(100, "feet"),
  22134. default: true
  22135. },
  22136. ]
  22137. ))
  22138. characterMakers.push(() => makeCharacter(
  22139. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22140. {
  22141. front: {
  22142. height: math.unit(172, "cm"),
  22143. weight: math.unit(73, "kg"),
  22144. name: "Front",
  22145. image: {
  22146. source: "./media/characters/violet-flor/front.svg",
  22147. extra: 1530 / 1442,
  22148. bottom: 61.9 / 1588.8
  22149. }
  22150. },
  22151. back: {
  22152. height: math.unit(180, "cm"),
  22153. weight: math.unit(73, "kg"),
  22154. name: "Back",
  22155. image: {
  22156. source: "./media/characters/violet-flor/back.svg",
  22157. extra: 1692 / 1630,
  22158. bottom: 20 / 1712
  22159. }
  22160. },
  22161. },
  22162. [
  22163. {
  22164. name: "Normal",
  22165. height: math.unit(172, "cm"),
  22166. default: true
  22167. },
  22168. ]
  22169. ))
  22170. characterMakers.push(() => makeCharacter(
  22171. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22172. {
  22173. front: {
  22174. height: math.unit(6, "feet"),
  22175. weight: math.unit(220, "lb"),
  22176. name: "Front",
  22177. image: {
  22178. source: "./media/characters/lynn-rhea/front.svg",
  22179. extra: 310 / 273
  22180. }
  22181. },
  22182. back: {
  22183. height: math.unit(6, "feet"),
  22184. weight: math.unit(220, "lb"),
  22185. name: "Back",
  22186. image: {
  22187. source: "./media/characters/lynn-rhea/back.svg",
  22188. extra: 310 / 273
  22189. }
  22190. },
  22191. dicks: {
  22192. height: math.unit(0.9, "feet"),
  22193. name: "Dicks",
  22194. image: {
  22195. source: "./media/characters/lynn-rhea/dicks.svg"
  22196. }
  22197. },
  22198. slit: {
  22199. height: math.unit(0.4, "feet"),
  22200. name: "Slit",
  22201. image: {
  22202. source: "./media/characters/lynn-rhea/slit.svg"
  22203. }
  22204. },
  22205. },
  22206. [
  22207. {
  22208. name: "Micro",
  22209. height: math.unit(1, "inch")
  22210. },
  22211. {
  22212. name: "Macro",
  22213. height: math.unit(60, "feet"),
  22214. default: true
  22215. },
  22216. {
  22217. name: "Megamacro",
  22218. height: math.unit(2, "miles")
  22219. },
  22220. {
  22221. name: "Gigamacro",
  22222. height: math.unit(3, "earths")
  22223. },
  22224. {
  22225. name: "Galactic",
  22226. height: math.unit(0.8, "galaxies")
  22227. },
  22228. ]
  22229. ))
  22230. characterMakers.push(() => makeCharacter(
  22231. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22232. {
  22233. front: {
  22234. height: math.unit(1600, "feet"),
  22235. weight: math.unit(85758785169, "kg"),
  22236. name: "Front",
  22237. image: {
  22238. source: "./media/characters/valathos/front.svg",
  22239. extra: 1451 / 1339
  22240. }
  22241. },
  22242. },
  22243. [
  22244. {
  22245. name: "Macro",
  22246. height: math.unit(1600, "feet"),
  22247. default: true
  22248. },
  22249. ]
  22250. ))
  22251. characterMakers.push(() => makeCharacter(
  22252. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22253. {
  22254. front: {
  22255. height: math.unit(7 + 5 / 12, "feet"),
  22256. weight: math.unit(300, "lb"),
  22257. name: "Front",
  22258. image: {
  22259. source: "./media/characters/azula/front.svg",
  22260. extra: 3208 / 2880,
  22261. bottom: 80.2 / 3277
  22262. }
  22263. },
  22264. back: {
  22265. height: math.unit(7 + 5 / 12, "feet"),
  22266. weight: math.unit(300, "lb"),
  22267. name: "Back",
  22268. image: {
  22269. source: "./media/characters/azula/back.svg",
  22270. extra: 3169 / 2822,
  22271. bottom: 150.6 / 3321
  22272. }
  22273. },
  22274. },
  22275. [
  22276. {
  22277. name: "Normal",
  22278. height: math.unit(7 + 5 / 12, "feet"),
  22279. default: true
  22280. },
  22281. {
  22282. name: "Big",
  22283. height: math.unit(20, "feet")
  22284. },
  22285. ]
  22286. ))
  22287. characterMakers.push(() => makeCharacter(
  22288. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22289. {
  22290. front: {
  22291. height: math.unit(5 + 1 / 12, "feet"),
  22292. weight: math.unit(110, "lb"),
  22293. name: "Front",
  22294. image: {
  22295. source: "./media/characters/rupert/front.svg",
  22296. extra: 1549 / 1495,
  22297. bottom: 54.2 / 1604.4
  22298. }
  22299. },
  22300. },
  22301. [
  22302. {
  22303. name: "Normal",
  22304. height: math.unit(5 + 1 / 12, "feet"),
  22305. default: true
  22306. },
  22307. ]
  22308. ))
  22309. characterMakers.push(() => makeCharacter(
  22310. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22311. {
  22312. front: {
  22313. height: math.unit(8 + 4 / 12, "feet"),
  22314. weight: math.unit(350, "lb"),
  22315. name: "Front",
  22316. image: {
  22317. source: "./media/characters/sheera-castellar/front.svg",
  22318. extra: 1957 / 1894,
  22319. bottom: 26.97 / 1975.017
  22320. }
  22321. },
  22322. side: {
  22323. height: math.unit(8 + 4 / 12, "feet"),
  22324. weight: math.unit(350, "lb"),
  22325. name: "Side",
  22326. image: {
  22327. source: "./media/characters/sheera-castellar/side.svg",
  22328. extra: 1957 / 1894
  22329. }
  22330. },
  22331. back: {
  22332. height: math.unit(8 + 4 / 12, "feet"),
  22333. weight: math.unit(350, "lb"),
  22334. name: "Back",
  22335. image: {
  22336. source: "./media/characters/sheera-castellar/back.svg",
  22337. extra: 1957 / 1894
  22338. }
  22339. },
  22340. angled: {
  22341. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22342. weight: math.unit(350, "lb"),
  22343. name: "Angled",
  22344. image: {
  22345. source: "./media/characters/sheera-castellar/angled.svg",
  22346. extra: 1807 / 1707,
  22347. bottom: 68 / 1875
  22348. }
  22349. },
  22350. genitals: {
  22351. height: math.unit(2.2, "feet"),
  22352. name: "Genitals",
  22353. image: {
  22354. source: "./media/characters/sheera-castellar/genitals.svg"
  22355. }
  22356. },
  22357. },
  22358. [
  22359. {
  22360. name: "Normal",
  22361. height: math.unit(8 + 4 / 12, "feet")
  22362. },
  22363. {
  22364. name: "Macro",
  22365. height: math.unit(150, "feet"),
  22366. default: true
  22367. },
  22368. {
  22369. name: "Macro+",
  22370. height: math.unit(800, "feet")
  22371. },
  22372. ]
  22373. ))
  22374. characterMakers.push(() => makeCharacter(
  22375. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22376. {
  22377. front: {
  22378. height: math.unit(6, "feet"),
  22379. weight: math.unit(150, "lb"),
  22380. name: "Front",
  22381. image: {
  22382. source: "./media/characters/jaipur/front.svg",
  22383. extra: 3860 / 3731,
  22384. bottom: 287 / 4140
  22385. }
  22386. },
  22387. back: {
  22388. height: math.unit(6, "feet"),
  22389. weight: math.unit(150, "lb"),
  22390. name: "Back",
  22391. image: {
  22392. source: "./media/characters/jaipur/back.svg",
  22393. extra: 4060 / 3930,
  22394. bottom: 151 / 4200
  22395. }
  22396. },
  22397. },
  22398. [
  22399. {
  22400. name: "Normal",
  22401. height: math.unit(1.85, "meters"),
  22402. default: true
  22403. },
  22404. {
  22405. name: "Macro",
  22406. height: math.unit(150, "meters")
  22407. },
  22408. {
  22409. name: "Macro+",
  22410. height: math.unit(0.5, "miles")
  22411. },
  22412. {
  22413. name: "Macro++",
  22414. height: math.unit(2.5, "miles")
  22415. },
  22416. {
  22417. name: "Macro+++",
  22418. height: math.unit(12, "miles")
  22419. },
  22420. {
  22421. name: "Macro++++",
  22422. height: math.unit(120, "miles")
  22423. },
  22424. {
  22425. name: "Macro+++++",
  22426. height: math.unit(1200, "miles")
  22427. },
  22428. ]
  22429. ))
  22430. characterMakers.push(() => makeCharacter(
  22431. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22432. {
  22433. front: {
  22434. height: math.unit(6, "feet"),
  22435. weight: math.unit(150, "lb"),
  22436. name: "Front",
  22437. image: {
  22438. source: "./media/characters/sheila-wolf/front.svg",
  22439. extra: 1931 / 1808,
  22440. bottom: 29.5 / 1960
  22441. }
  22442. },
  22443. dick: {
  22444. height: math.unit(1.464, "feet"),
  22445. name: "Dick",
  22446. image: {
  22447. source: "./media/characters/sheila-wolf/dick.svg"
  22448. }
  22449. },
  22450. muzzle: {
  22451. height: math.unit(0.513, "feet"),
  22452. name: "Muzzle",
  22453. image: {
  22454. source: "./media/characters/sheila-wolf/muzzle.svg"
  22455. }
  22456. },
  22457. },
  22458. [
  22459. {
  22460. name: "Macro",
  22461. height: math.unit(70, "feet"),
  22462. default: true
  22463. },
  22464. ]
  22465. ))
  22466. characterMakers.push(() => makeCharacter(
  22467. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22468. {
  22469. front: {
  22470. height: math.unit(32, "meters"),
  22471. weight: math.unit(300000, "kg"),
  22472. name: "Front",
  22473. image: {
  22474. source: "./media/characters/almor/front.svg",
  22475. extra: 1408 / 1322,
  22476. bottom: 94.6 / 1506.5
  22477. }
  22478. },
  22479. },
  22480. [
  22481. {
  22482. name: "Macro",
  22483. height: math.unit(32, "meters"),
  22484. default: true
  22485. },
  22486. ]
  22487. ))
  22488. characterMakers.push(() => makeCharacter(
  22489. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22490. {
  22491. front: {
  22492. height: math.unit(7, "feet"),
  22493. weight: math.unit(200, "lb"),
  22494. name: "Front",
  22495. image: {
  22496. source: "./media/characters/silver/front.svg",
  22497. extra: 472.1 / 450.5,
  22498. bottom: 26.5 / 499.424
  22499. }
  22500. },
  22501. },
  22502. [
  22503. {
  22504. name: "Normal",
  22505. height: math.unit(7, "feet"),
  22506. default: true
  22507. },
  22508. {
  22509. name: "Macro",
  22510. height: math.unit(800, "feet")
  22511. },
  22512. {
  22513. name: "Megamacro",
  22514. height: math.unit(250, "miles")
  22515. },
  22516. ]
  22517. ))
  22518. characterMakers.push(() => makeCharacter(
  22519. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22520. {
  22521. front: {
  22522. height: math.unit(6, "feet"),
  22523. weight: math.unit(150, "lb"),
  22524. name: "Front",
  22525. image: {
  22526. source: "./media/characters/pliskin/front.svg",
  22527. extra: 1469 / 1359,
  22528. bottom: 70 / 1540
  22529. }
  22530. },
  22531. },
  22532. [
  22533. {
  22534. name: "Micro",
  22535. height: math.unit(3, "inches")
  22536. },
  22537. {
  22538. name: "Normal",
  22539. height: math.unit(5 + 11 / 12, "feet"),
  22540. default: true
  22541. },
  22542. {
  22543. name: "Macro",
  22544. height: math.unit(120, "feet")
  22545. },
  22546. ]
  22547. ))
  22548. characterMakers.push(() => makeCharacter(
  22549. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22550. {
  22551. front: {
  22552. height: math.unit(6, "feet"),
  22553. weight: math.unit(150, "lb"),
  22554. name: "Front",
  22555. image: {
  22556. source: "./media/characters/sammy/front.svg",
  22557. extra: 1193 / 1089,
  22558. bottom: 30.5 / 1226
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Macro",
  22565. height: math.unit(1700, "feet"),
  22566. default: true
  22567. },
  22568. {
  22569. name: "Examacro",
  22570. height: math.unit(2.5e9, "lightyears")
  22571. },
  22572. ]
  22573. ))
  22574. characterMakers.push(() => makeCharacter(
  22575. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22576. {
  22577. front: {
  22578. height: math.unit(21, "meters"),
  22579. weight: math.unit(12, "tonnes"),
  22580. name: "Front",
  22581. image: {
  22582. source: "./media/characters/kuru/front.svg",
  22583. extra: 4301 / 3785,
  22584. bottom: 371.3 / 4691
  22585. }
  22586. },
  22587. },
  22588. [
  22589. {
  22590. name: "Macro",
  22591. height: math.unit(21, "meters"),
  22592. default: true
  22593. },
  22594. ]
  22595. ))
  22596. characterMakers.push(() => makeCharacter(
  22597. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22598. {
  22599. front: {
  22600. height: math.unit(23, "meters"),
  22601. weight: math.unit(12.2, "tonnes"),
  22602. name: "Front",
  22603. image: {
  22604. source: "./media/characters/rakka/front.svg",
  22605. extra: 4670 / 4169,
  22606. bottom: 301 / 4968.7
  22607. }
  22608. },
  22609. },
  22610. [
  22611. {
  22612. name: "Macro",
  22613. height: math.unit(23, "meters"),
  22614. default: true
  22615. },
  22616. ]
  22617. ))
  22618. characterMakers.push(() => makeCharacter(
  22619. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22620. {
  22621. front: {
  22622. height: math.unit(6, "feet"),
  22623. weight: math.unit(150, "lb"),
  22624. name: "Front",
  22625. image: {
  22626. source: "./media/characters/rhys-feline/front.svg",
  22627. extra: 2488 / 2308,
  22628. bottom: 35.67 / 2519.19
  22629. }
  22630. },
  22631. },
  22632. [
  22633. {
  22634. name: "Really Small",
  22635. height: math.unit(1, "nm")
  22636. },
  22637. {
  22638. name: "Micro",
  22639. height: math.unit(4, "inches")
  22640. },
  22641. {
  22642. name: "Normal",
  22643. height: math.unit(4 + 10 / 12, "feet"),
  22644. default: true
  22645. },
  22646. {
  22647. name: "Macro",
  22648. height: math.unit(100, "feet")
  22649. },
  22650. {
  22651. name: "Megamacto",
  22652. height: math.unit(50, "miles")
  22653. },
  22654. ]
  22655. ))
  22656. characterMakers.push(() => makeCharacter(
  22657. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22658. {
  22659. side: {
  22660. height: math.unit(30, "feet"),
  22661. weight: math.unit(35000, "kg"),
  22662. name: "Side",
  22663. image: {
  22664. source: "./media/characters/alydar/side.svg",
  22665. extra: 234 / 222,
  22666. bottom: 6.5 / 241
  22667. }
  22668. },
  22669. front: {
  22670. height: math.unit(30, "feet"),
  22671. weight: math.unit(35000, "kg"),
  22672. name: "Front",
  22673. image: {
  22674. source: "./media/characters/alydar/front.svg",
  22675. extra: 223.37 / 210.2,
  22676. bottom: 22.3 / 246.76
  22677. }
  22678. },
  22679. top: {
  22680. height: math.unit(64.54, "feet"),
  22681. weight: math.unit(35000, "kg"),
  22682. name: "Top",
  22683. image: {
  22684. source: "./media/characters/alydar/top.svg"
  22685. }
  22686. },
  22687. anthro: {
  22688. height: math.unit(30, "feet"),
  22689. weight: math.unit(9000, "kg"),
  22690. name: "Anthro",
  22691. image: {
  22692. source: "./media/characters/alydar/anthro.svg",
  22693. extra: 432 / 421,
  22694. bottom: 7.18 / 440
  22695. }
  22696. },
  22697. maw: {
  22698. height: math.unit(11.693, "feet"),
  22699. name: "Maw",
  22700. image: {
  22701. source: "./media/characters/alydar/maw.svg"
  22702. }
  22703. },
  22704. head: {
  22705. height: math.unit(11.693, "feet"),
  22706. name: "Head",
  22707. image: {
  22708. source: "./media/characters/alydar/head.svg"
  22709. }
  22710. },
  22711. headAlt: {
  22712. height: math.unit(12.861, "feet"),
  22713. name: "Head (Alt)",
  22714. image: {
  22715. source: "./media/characters/alydar/head-alt.svg"
  22716. }
  22717. },
  22718. wing: {
  22719. height: math.unit(20.712, "feet"),
  22720. name: "Wing",
  22721. image: {
  22722. source: "./media/characters/alydar/wing.svg"
  22723. }
  22724. },
  22725. wingFeather: {
  22726. height: math.unit(9.662, "feet"),
  22727. name: "Wing Feather",
  22728. image: {
  22729. source: "./media/characters/alydar/wing-feather.svg"
  22730. }
  22731. },
  22732. countourFeather: {
  22733. height: math.unit(4.154, "feet"),
  22734. name: "Contour Feather",
  22735. image: {
  22736. source: "./media/characters/alydar/contour-feather.svg"
  22737. }
  22738. },
  22739. },
  22740. [
  22741. {
  22742. name: "Diplomatic",
  22743. height: math.unit(13, "feet"),
  22744. default: true
  22745. },
  22746. {
  22747. name: "Small",
  22748. height: math.unit(30, "feet")
  22749. },
  22750. {
  22751. name: "Normal",
  22752. height: math.unit(95, "feet"),
  22753. default: true
  22754. },
  22755. {
  22756. name: "Large",
  22757. height: math.unit(285, "feet")
  22758. },
  22759. {
  22760. name: "Incomprehensible",
  22761. height: math.unit(450, "megameters")
  22762. },
  22763. ]
  22764. ))
  22765. characterMakers.push(() => makeCharacter(
  22766. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22767. {
  22768. side: {
  22769. height: math.unit(11, "feet"),
  22770. weight: math.unit(1750, "kg"),
  22771. name: "Side",
  22772. image: {
  22773. source: "./media/characters/selicia/side.svg",
  22774. extra: 440 / 396,
  22775. bottom: 24.8 / 465.979
  22776. }
  22777. },
  22778. maw: {
  22779. height: math.unit(4.665, "feet"),
  22780. name: "Maw",
  22781. image: {
  22782. source: "./media/characters/selicia/maw.svg"
  22783. }
  22784. },
  22785. },
  22786. [
  22787. {
  22788. name: "Normal",
  22789. height: math.unit(11, "feet"),
  22790. default: true
  22791. },
  22792. ]
  22793. ))
  22794. characterMakers.push(() => makeCharacter(
  22795. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22796. {
  22797. side: {
  22798. height: math.unit(2 + 6 / 12, "feet"),
  22799. weight: math.unit(30, "lb"),
  22800. name: "Side",
  22801. image: {
  22802. source: "./media/characters/layla/side.svg",
  22803. extra: 244 / 188,
  22804. bottom: 18.2 / 262.1
  22805. }
  22806. },
  22807. back: {
  22808. height: math.unit(2 + 6 / 12, "feet"),
  22809. weight: math.unit(30, "lb"),
  22810. name: "Back",
  22811. image: {
  22812. source: "./media/characters/layla/back.svg",
  22813. extra: 308 / 241.5,
  22814. bottom: 8.9 / 316.8
  22815. }
  22816. },
  22817. cumming: {
  22818. height: math.unit(2 + 6 / 12, "feet"),
  22819. weight: math.unit(30, "lb"),
  22820. name: "Cumming",
  22821. image: {
  22822. source: "./media/characters/layla/cumming.svg",
  22823. extra: 342 / 279,
  22824. bottom: 595 / 938
  22825. }
  22826. },
  22827. dickFlaccid: {
  22828. height: math.unit(2.595, "feet"),
  22829. name: "Flaccid Genitals",
  22830. image: {
  22831. source: "./media/characters/layla/dick-flaccid.svg"
  22832. }
  22833. },
  22834. dickErect: {
  22835. height: math.unit(2.359, "feet"),
  22836. name: "Erect Genitals",
  22837. image: {
  22838. source: "./media/characters/layla/dick-erect.svg"
  22839. }
  22840. },
  22841. },
  22842. [
  22843. {
  22844. name: "Micro",
  22845. height: math.unit(1, "inch")
  22846. },
  22847. {
  22848. name: "Small",
  22849. height: math.unit(1, "foot")
  22850. },
  22851. {
  22852. name: "Normal",
  22853. height: math.unit(2 + 6 / 12, "feet"),
  22854. default: true
  22855. },
  22856. {
  22857. name: "Macro",
  22858. height: math.unit(200, "feet")
  22859. },
  22860. {
  22861. name: "Megamacro",
  22862. height: math.unit(1000, "miles")
  22863. },
  22864. {
  22865. name: "Planetary",
  22866. height: math.unit(8000, "miles")
  22867. },
  22868. {
  22869. name: "True Layla",
  22870. height: math.unit(200000 * 7, "multiverses")
  22871. },
  22872. ]
  22873. ))
  22874. characterMakers.push(() => makeCharacter(
  22875. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22876. {
  22877. back: {
  22878. height: math.unit(10.5, "feet"),
  22879. weight: math.unit(800, "lb"),
  22880. name: "Back",
  22881. image: {
  22882. source: "./media/characters/knox/back.svg",
  22883. extra: 1486 / 1089,
  22884. bottom: 107 / 1601.4
  22885. }
  22886. },
  22887. side: {
  22888. height: math.unit(10.5, "feet"),
  22889. weight: math.unit(800, "lb"),
  22890. name: "Side",
  22891. image: {
  22892. source: "./media/characters/knox/side.svg",
  22893. extra: 244 / 218,
  22894. bottom: 14 / 260
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Compact",
  22901. height: math.unit(10.5, "feet"),
  22902. default: true
  22903. },
  22904. {
  22905. name: "Dynamax",
  22906. height: math.unit(210, "feet")
  22907. },
  22908. {
  22909. name: "Full Macro",
  22910. height: math.unit(850, "feet")
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22916. {
  22917. front: {
  22918. height: math.unit(6, "feet"),
  22919. weight: math.unit(152, "lb"),
  22920. name: "Front",
  22921. image: {
  22922. source: "./media/characters/shin-pikachu/front.svg",
  22923. extra: 1574 / 1480,
  22924. bottom: 53.3 / 1626
  22925. }
  22926. },
  22927. hand: {
  22928. height: math.unit(1.055, "feet"),
  22929. name: "Hand",
  22930. image: {
  22931. source: "./media/characters/shin-pikachu/hand.svg"
  22932. }
  22933. },
  22934. foot: {
  22935. height: math.unit(1.1, "feet"),
  22936. name: "Foot",
  22937. image: {
  22938. source: "./media/characters/shin-pikachu/foot.svg"
  22939. }
  22940. },
  22941. collar: {
  22942. height: math.unit(0.386, "feet"),
  22943. name: "Collar",
  22944. image: {
  22945. source: "./media/characters/shin-pikachu/collar.svg"
  22946. }
  22947. },
  22948. },
  22949. [
  22950. {
  22951. name: "Smallest",
  22952. height: math.unit(0.5, "inches")
  22953. },
  22954. {
  22955. name: "Micro",
  22956. height: math.unit(6, "inches")
  22957. },
  22958. {
  22959. name: "Normal",
  22960. height: math.unit(6, "feet"),
  22961. default: true
  22962. },
  22963. {
  22964. name: "Macro",
  22965. height: math.unit(150, "feet")
  22966. },
  22967. ]
  22968. ))
  22969. characterMakers.push(() => makeCharacter(
  22970. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22971. {
  22972. front: {
  22973. height: math.unit(28, "feet"),
  22974. weight: math.unit(10500, "lb"),
  22975. name: "Front",
  22976. image: {
  22977. source: "./media/characters/kayda/front.svg",
  22978. extra: 1536 / 1428,
  22979. bottom: 68.7 / 1603
  22980. }
  22981. },
  22982. back: {
  22983. height: math.unit(28, "feet"),
  22984. weight: math.unit(10500, "lb"),
  22985. name: "Back",
  22986. image: {
  22987. source: "./media/characters/kayda/back.svg",
  22988. extra: 1557 / 1464,
  22989. bottom: 39.5 / 1597.49
  22990. }
  22991. },
  22992. dick: {
  22993. height: math.unit(3.858, "feet"),
  22994. name: "Dick",
  22995. image: {
  22996. source: "./media/characters/kayda/dick.svg"
  22997. }
  22998. },
  22999. },
  23000. [
  23001. {
  23002. name: "Macro",
  23003. height: math.unit(28, "feet"),
  23004. default: true
  23005. },
  23006. ]
  23007. ))
  23008. characterMakers.push(() => makeCharacter(
  23009. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23010. {
  23011. front: {
  23012. height: math.unit(10 + 11 / 12, "feet"),
  23013. weight: math.unit(1400, "lb"),
  23014. name: "Front",
  23015. image: {
  23016. source: "./media/characters/brian/front.svg",
  23017. extra: 737 / 692,
  23018. bottom: 55.4 / 785
  23019. }
  23020. },
  23021. },
  23022. [
  23023. {
  23024. name: "Normal",
  23025. height: math.unit(10 + 11 / 12, "feet"),
  23026. default: true
  23027. },
  23028. ]
  23029. ))
  23030. characterMakers.push(() => makeCharacter(
  23031. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23032. {
  23033. front: {
  23034. height: math.unit(5 + 8 / 12, "feet"),
  23035. weight: math.unit(140, "lb"),
  23036. name: "Front",
  23037. image: {
  23038. source: "./media/characters/khemri/front.svg",
  23039. extra: 4780 / 4059,
  23040. bottom: 80.1 / 4859.25
  23041. }
  23042. },
  23043. },
  23044. [
  23045. {
  23046. name: "Micro",
  23047. height: math.unit(6, "inches")
  23048. },
  23049. {
  23050. name: "Normal",
  23051. height: math.unit(5 + 8 / 12, "feet"),
  23052. default: true
  23053. },
  23054. ]
  23055. ))
  23056. characterMakers.push(() => makeCharacter(
  23057. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23058. {
  23059. front: {
  23060. height: math.unit(13, "feet"),
  23061. weight: math.unit(1700, "lb"),
  23062. name: "Front",
  23063. image: {
  23064. source: "./media/characters/felix-braveheart/front.svg",
  23065. extra: 1222 / 1157,
  23066. bottom: 53.2 / 1280
  23067. }
  23068. },
  23069. back: {
  23070. height: math.unit(13, "feet"),
  23071. weight: math.unit(1700, "lb"),
  23072. name: "Back",
  23073. image: {
  23074. source: "./media/characters/felix-braveheart/back.svg",
  23075. extra: 1277 / 1203,
  23076. bottom: 50.2 / 1327
  23077. }
  23078. },
  23079. feral: {
  23080. height: math.unit(6, "feet"),
  23081. weight: math.unit(400, "lb"),
  23082. name: "Feral",
  23083. image: {
  23084. source: "./media/characters/felix-braveheart/feral.svg",
  23085. extra: 682 / 625,
  23086. bottom: 6.9 / 688
  23087. }
  23088. },
  23089. },
  23090. [
  23091. {
  23092. name: "Normal",
  23093. height: math.unit(13, "feet"),
  23094. default: true
  23095. },
  23096. ]
  23097. ))
  23098. characterMakers.push(() => makeCharacter(
  23099. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23100. {
  23101. side: {
  23102. height: math.unit(5 + 11 / 12, "feet"),
  23103. weight: math.unit(1400, "lb"),
  23104. name: "Side",
  23105. image: {
  23106. source: "./media/characters/shadow-blade/side.svg",
  23107. extra: 1726 / 1267,
  23108. bottom: 58.4 / 1785
  23109. }
  23110. },
  23111. },
  23112. [
  23113. {
  23114. name: "Normal",
  23115. height: math.unit(5 + 11 / 12, "feet"),
  23116. default: true
  23117. },
  23118. ]
  23119. ))
  23120. characterMakers.push(() => makeCharacter(
  23121. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23122. {
  23123. front: {
  23124. height: math.unit(1 + 6 / 12, "feet"),
  23125. weight: math.unit(25, "lb"),
  23126. name: "Front",
  23127. image: {
  23128. source: "./media/characters/karla-halldor/front.svg",
  23129. extra: 1459 / 1383,
  23130. bottom: 12 / 1472
  23131. }
  23132. },
  23133. },
  23134. [
  23135. {
  23136. name: "Normal",
  23137. height: math.unit(1 + 6 / 12, "feet"),
  23138. default: true
  23139. },
  23140. ]
  23141. ))
  23142. characterMakers.push(() => makeCharacter(
  23143. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23144. {
  23145. front: {
  23146. height: math.unit(6 + 2 / 12, "feet"),
  23147. weight: math.unit(160, "lb"),
  23148. name: "Front",
  23149. image: {
  23150. source: "./media/characters/ariam/front.svg",
  23151. extra: 714 / 617,
  23152. bottom: 23.4 / 737,
  23153. }
  23154. },
  23155. squatting: {
  23156. height: math.unit(4.1, "feet"),
  23157. weight: math.unit(160, "lb"),
  23158. name: "Squatting",
  23159. image: {
  23160. source: "./media/characters/ariam/squatting.svg",
  23161. extra: 2617 / 2112,
  23162. bottom: 61.2 / 2681,
  23163. }
  23164. },
  23165. },
  23166. [
  23167. {
  23168. name: "Normal",
  23169. height: math.unit(6 + 2 / 12, "feet"),
  23170. default: true
  23171. },
  23172. {
  23173. name: "Normal+",
  23174. height: math.unit(4, "meters")
  23175. },
  23176. {
  23177. name: "Macro",
  23178. height: math.unit(50, "meters")
  23179. },
  23180. {
  23181. name: "Macro+",
  23182. height: math.unit(100, "meters")
  23183. },
  23184. {
  23185. name: "Megamacro",
  23186. height: math.unit(20, "km")
  23187. },
  23188. ]
  23189. ))
  23190. characterMakers.push(() => makeCharacter(
  23191. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23192. {
  23193. front: {
  23194. height: math.unit(1.67, "meters"),
  23195. weight: math.unit(140, "lb"),
  23196. name: "Front",
  23197. image: {
  23198. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23199. extra: 438 / 410,
  23200. bottom: 0.75 / 439
  23201. }
  23202. },
  23203. },
  23204. [
  23205. {
  23206. name: "Shrunken",
  23207. height: math.unit(7.6, "cm")
  23208. },
  23209. {
  23210. name: "Human Scale",
  23211. height: math.unit(1.67, "meters")
  23212. },
  23213. {
  23214. name: "Wolxi Scale",
  23215. height: math.unit(36.7, "meters"),
  23216. default: true
  23217. },
  23218. ]
  23219. ))
  23220. characterMakers.push(() => makeCharacter(
  23221. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23222. {
  23223. front: {
  23224. height: math.unit(1.73, "meters"),
  23225. weight: math.unit(240, "lb"),
  23226. name: "Front",
  23227. image: {
  23228. source: "./media/characters/izue-two-mothers/front.svg",
  23229. extra: 469 / 437,
  23230. bottom: 1.24 / 470.6
  23231. }
  23232. },
  23233. },
  23234. [
  23235. {
  23236. name: "Shrunken",
  23237. height: math.unit(7.86, "cm")
  23238. },
  23239. {
  23240. name: "Human Scale",
  23241. height: math.unit(1.73, "meters")
  23242. },
  23243. {
  23244. name: "Wolxi Scale",
  23245. height: math.unit(38, "meters"),
  23246. default: true
  23247. },
  23248. ]
  23249. ))
  23250. characterMakers.push(() => makeCharacter(
  23251. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23252. {
  23253. front: {
  23254. height: math.unit(1.55, "meters"),
  23255. weight: math.unit(120, "lb"),
  23256. name: "Front",
  23257. image: {
  23258. source: "./media/characters/teeku-love-shack/front.svg",
  23259. extra: 387 / 362,
  23260. bottom: 1.51 / 388
  23261. }
  23262. },
  23263. },
  23264. [
  23265. {
  23266. name: "Shrunken",
  23267. height: math.unit(7, "cm")
  23268. },
  23269. {
  23270. name: "Human Scale",
  23271. height: math.unit(1.55, "meters")
  23272. },
  23273. {
  23274. name: "Wolxi Scale",
  23275. height: math.unit(34.1, "meters"),
  23276. default: true
  23277. },
  23278. ]
  23279. ))
  23280. characterMakers.push(() => makeCharacter(
  23281. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23282. {
  23283. front: {
  23284. height: math.unit(1.83, "meters"),
  23285. weight: math.unit(135, "lb"),
  23286. name: "Front",
  23287. image: {
  23288. source: "./media/characters/dejma-the-red/front.svg",
  23289. extra: 480 / 458,
  23290. bottom: 1.8 / 482
  23291. }
  23292. },
  23293. },
  23294. [
  23295. {
  23296. name: "Shrunken",
  23297. height: math.unit(8.3, "cm")
  23298. },
  23299. {
  23300. name: "Human Scale",
  23301. height: math.unit(1.83, "meters")
  23302. },
  23303. {
  23304. name: "Wolxi Scale",
  23305. height: math.unit(40, "meters"),
  23306. default: true
  23307. },
  23308. ]
  23309. ))
  23310. characterMakers.push(() => makeCharacter(
  23311. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23312. {
  23313. front: {
  23314. height: math.unit(1.78, "meters"),
  23315. weight: math.unit(65, "kg"),
  23316. name: "Front",
  23317. image: {
  23318. source: "./media/characters/aki/front.svg",
  23319. extra: 452 / 415
  23320. }
  23321. },
  23322. frontNsfw: {
  23323. height: math.unit(1.78, "meters"),
  23324. weight: math.unit(65, "kg"),
  23325. name: "Front (NSFW)",
  23326. image: {
  23327. source: "./media/characters/aki/front-nsfw.svg",
  23328. extra: 452 / 415
  23329. }
  23330. },
  23331. back: {
  23332. height: math.unit(1.78, "meters"),
  23333. weight: math.unit(65, "kg"),
  23334. name: "Back",
  23335. image: {
  23336. source: "./media/characters/aki/back.svg",
  23337. extra: 452 / 415
  23338. }
  23339. },
  23340. rump: {
  23341. height: math.unit(2.05, "feet"),
  23342. name: "Rump",
  23343. image: {
  23344. source: "./media/characters/aki/rump.svg"
  23345. }
  23346. },
  23347. dick: {
  23348. height: math.unit(0.95, "feet"),
  23349. name: "Dick",
  23350. image: {
  23351. source: "./media/characters/aki/dick.svg"
  23352. }
  23353. },
  23354. },
  23355. [
  23356. {
  23357. name: "Micro",
  23358. height: math.unit(15, "cm")
  23359. },
  23360. {
  23361. name: "Normal",
  23362. height: math.unit(178, "cm"),
  23363. default: true
  23364. },
  23365. {
  23366. name: "Macro",
  23367. height: math.unit(214, "m")
  23368. },
  23369. {
  23370. name: "Macro+",
  23371. height: math.unit(534, "m")
  23372. },
  23373. ]
  23374. ))
  23375. characterMakers.push(() => makeCharacter(
  23376. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23377. {
  23378. front: {
  23379. height: math.unit(5 + 5 / 12, "feet"),
  23380. weight: math.unit(120, "lb"),
  23381. name: "Front",
  23382. image: {
  23383. source: "./media/characters/ari/front.svg",
  23384. extra: 714.5 / 682,
  23385. bottom: 8 / 722.5
  23386. }
  23387. },
  23388. },
  23389. [
  23390. {
  23391. name: "Normal",
  23392. height: math.unit(5 + 5 / 12, "feet")
  23393. },
  23394. {
  23395. name: "Macro",
  23396. height: math.unit(100, "feet"),
  23397. default: true
  23398. },
  23399. {
  23400. name: "Megamacro",
  23401. height: math.unit(100, "miles")
  23402. },
  23403. {
  23404. name: "Gigamacro",
  23405. height: math.unit(80000, "miles")
  23406. },
  23407. ]
  23408. ))
  23409. characterMakers.push(() => makeCharacter(
  23410. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23411. {
  23412. side: {
  23413. height: math.unit(9, "feet"),
  23414. weight: math.unit(400, "kg"),
  23415. name: "Side",
  23416. image: {
  23417. source: "./media/characters/bolt/side.svg",
  23418. extra: 1126 / 896,
  23419. bottom: 60 / 1187.3,
  23420. }
  23421. },
  23422. },
  23423. [
  23424. {
  23425. name: "Micro",
  23426. height: math.unit(5, "inches")
  23427. },
  23428. {
  23429. name: "Normal",
  23430. height: math.unit(9, "feet"),
  23431. default: true
  23432. },
  23433. {
  23434. name: "Macro",
  23435. height: math.unit(700, "feet")
  23436. },
  23437. {
  23438. name: "Max Size",
  23439. height: math.unit(1.52e22, "yottameters")
  23440. },
  23441. ]
  23442. ))
  23443. characterMakers.push(() => makeCharacter(
  23444. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23445. {
  23446. front: {
  23447. height: math.unit(4.53, "meters"),
  23448. weight: math.unit(3, "tons"),
  23449. name: "Front",
  23450. image: {
  23451. source: "./media/characters/draekon-sylviar/front.svg",
  23452. extra: 1228 / 1068,
  23453. bottom: 41 / 1270
  23454. }
  23455. },
  23456. tail: {
  23457. height: math.unit(1.772, "meter"),
  23458. name: "Tail",
  23459. image: {
  23460. source: "./media/characters/draekon-sylviar/tail.svg"
  23461. }
  23462. },
  23463. head: {
  23464. height: math.unit(1.331, "meter"),
  23465. name: "Head",
  23466. image: {
  23467. source: "./media/characters/draekon-sylviar/head.svg"
  23468. }
  23469. },
  23470. hand: {
  23471. height: math.unit(0.564, "meter"),
  23472. name: "Hand",
  23473. image: {
  23474. source: "./media/characters/draekon-sylviar/hand.svg"
  23475. }
  23476. },
  23477. foot: {
  23478. height: math.unit(0.621, "meter"),
  23479. name: "Foot",
  23480. image: {
  23481. source: "./media/characters/draekon-sylviar/foot.svg",
  23482. bottom: 32 / 324
  23483. }
  23484. },
  23485. dick: {
  23486. height: math.unit(61, "cm"),
  23487. name: "Dick",
  23488. image: {
  23489. source: "./media/characters/draekon-sylviar/dick.svg"
  23490. }
  23491. },
  23492. dickseparated: {
  23493. height: math.unit(61, "cm"),
  23494. name: "Dick-separated",
  23495. image: {
  23496. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23497. }
  23498. },
  23499. },
  23500. [
  23501. {
  23502. name: "Small",
  23503. height: math.unit(4.53 / 2, "meters"),
  23504. default: true
  23505. },
  23506. {
  23507. name: "Normal",
  23508. height: math.unit(4.53, "meters"),
  23509. default: true
  23510. },
  23511. {
  23512. name: "Large",
  23513. height: math.unit(4.53 * 2, "meters"),
  23514. },
  23515. ]
  23516. ))
  23517. characterMakers.push(() => makeCharacter(
  23518. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23519. {
  23520. front: {
  23521. height: math.unit(6 + 2 / 12, "feet"),
  23522. weight: math.unit(180, "lb"),
  23523. name: "Front",
  23524. image: {
  23525. source: "./media/characters/brawler/front.svg",
  23526. extra: 3301 / 3027,
  23527. bottom: 138 / 3439
  23528. }
  23529. },
  23530. },
  23531. [
  23532. {
  23533. name: "Normal",
  23534. height: math.unit(6 + 2 / 12, "feet"),
  23535. default: true
  23536. },
  23537. ]
  23538. ))
  23539. characterMakers.push(() => makeCharacter(
  23540. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23541. {
  23542. front: {
  23543. height: math.unit(11, "feet"),
  23544. weight: math.unit(1000, "lb"),
  23545. name: "Front",
  23546. image: {
  23547. source: "./media/characters/alex/front.svg",
  23548. bottom: 44.5 / 620
  23549. }
  23550. },
  23551. },
  23552. [
  23553. {
  23554. name: "Micro",
  23555. height: math.unit(5, "inches")
  23556. },
  23557. {
  23558. name: "Normal",
  23559. height: math.unit(11, "feet"),
  23560. default: true
  23561. },
  23562. {
  23563. name: "Macro",
  23564. height: math.unit(9.5e9, "feet")
  23565. },
  23566. {
  23567. name: "Max Size",
  23568. height: math.unit(1.4e283, "yottameters")
  23569. },
  23570. ]
  23571. ))
  23572. characterMakers.push(() => makeCharacter(
  23573. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23574. {
  23575. female: {
  23576. height: math.unit(29.9, "m"),
  23577. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23578. name: "Female",
  23579. image: {
  23580. source: "./media/characters/zenari/female.svg",
  23581. extra: 3281.6 / 3217,
  23582. bottom: 72.2 / 3353
  23583. }
  23584. },
  23585. male: {
  23586. height: math.unit(27.7, "m"),
  23587. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23588. name: "Male",
  23589. image: {
  23590. source: "./media/characters/zenari/male.svg",
  23591. extra: 3008 / 2991,
  23592. bottom: 54.6 / 3069
  23593. }
  23594. },
  23595. },
  23596. [
  23597. {
  23598. name: "Macro",
  23599. height: math.unit(29.7, "meters"),
  23600. default: true
  23601. },
  23602. ]
  23603. ))
  23604. characterMakers.push(() => makeCharacter(
  23605. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23606. {
  23607. female: {
  23608. height: math.unit(23.8, "m"),
  23609. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23610. name: "Female",
  23611. image: {
  23612. source: "./media/characters/mactarian/female.svg",
  23613. extra: 2662 / 2569,
  23614. bottom: 73 / 2736
  23615. }
  23616. },
  23617. male: {
  23618. height: math.unit(23.8, "m"),
  23619. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23620. name: "Male",
  23621. image: {
  23622. source: "./media/characters/mactarian/male.svg",
  23623. extra: 2673 / 2600,
  23624. bottom: 76 / 2750
  23625. }
  23626. },
  23627. },
  23628. [
  23629. {
  23630. name: "Macro",
  23631. height: math.unit(23.8, "meters"),
  23632. default: true
  23633. },
  23634. ]
  23635. ))
  23636. characterMakers.push(() => makeCharacter(
  23637. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23638. {
  23639. female: {
  23640. height: math.unit(19.3, "m"),
  23641. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23642. name: "Female",
  23643. image: {
  23644. source: "./media/characters/umok/female.svg",
  23645. extra: 2186 / 2078,
  23646. bottom: 87 / 2277
  23647. }
  23648. },
  23649. male: {
  23650. height: math.unit(19.5, "m"),
  23651. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23652. name: "Male",
  23653. image: {
  23654. source: "./media/characters/umok/male.svg",
  23655. extra: 2233 / 2140,
  23656. bottom: 24.4 / 2258
  23657. }
  23658. },
  23659. },
  23660. [
  23661. {
  23662. name: "Macro",
  23663. height: math.unit(19.3, "meters"),
  23664. default: true
  23665. },
  23666. ]
  23667. ))
  23668. characterMakers.push(() => makeCharacter(
  23669. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23670. {
  23671. female: {
  23672. height: math.unit(26.15, "m"),
  23673. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23674. name: "Female",
  23675. image: {
  23676. source: "./media/characters/joraxian/female.svg",
  23677. extra: 2912 / 2824,
  23678. bottom: 36 / 2956
  23679. }
  23680. },
  23681. male: {
  23682. height: math.unit(25.4, "m"),
  23683. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23684. name: "Male",
  23685. image: {
  23686. source: "./media/characters/joraxian/male.svg",
  23687. extra: 2877 / 2721,
  23688. bottom: 82 / 2967
  23689. }
  23690. },
  23691. },
  23692. [
  23693. {
  23694. name: "Macro",
  23695. height: math.unit(26.15, "meters"),
  23696. default: true
  23697. },
  23698. ]
  23699. ))
  23700. characterMakers.push(() => makeCharacter(
  23701. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23702. {
  23703. female: {
  23704. height: math.unit(21.6, "m"),
  23705. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23706. name: "Female",
  23707. image: {
  23708. source: "./media/characters/sthara/female.svg",
  23709. extra: 2516 / 2347,
  23710. bottom: 21.5 / 2537
  23711. }
  23712. },
  23713. male: {
  23714. height: math.unit(24, "m"),
  23715. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23716. name: "Male",
  23717. image: {
  23718. source: "./media/characters/sthara/male.svg",
  23719. extra: 2732 / 2607,
  23720. bottom: 23 / 2732
  23721. }
  23722. },
  23723. },
  23724. [
  23725. {
  23726. name: "Macro",
  23727. height: math.unit(21.6, "meters"),
  23728. default: true
  23729. },
  23730. ]
  23731. ))
  23732. characterMakers.push(() => makeCharacter(
  23733. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23734. {
  23735. front: {
  23736. height: math.unit(6 + 4 / 12, "feet"),
  23737. weight: math.unit(175, "lb"),
  23738. name: "Front",
  23739. image: {
  23740. source: "./media/characters/luka-bryzant/front.svg",
  23741. extra: 311 / 289,
  23742. bottom: 4 / 315
  23743. }
  23744. },
  23745. back: {
  23746. height: math.unit(6 + 4 / 12, "feet"),
  23747. weight: math.unit(175, "lb"),
  23748. name: "Back",
  23749. image: {
  23750. source: "./media/characters/luka-bryzant/back.svg",
  23751. extra: 311 / 289,
  23752. bottom: 3.8 / 313.7
  23753. }
  23754. },
  23755. },
  23756. [
  23757. {
  23758. name: "Micro",
  23759. height: math.unit(10, "inches")
  23760. },
  23761. {
  23762. name: "Normal",
  23763. height: math.unit(6 + 4 / 12, "feet"),
  23764. default: true
  23765. },
  23766. {
  23767. name: "Large",
  23768. height: math.unit(12, "feet")
  23769. },
  23770. ]
  23771. ))
  23772. characterMakers.push(() => makeCharacter(
  23773. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23774. {
  23775. front: {
  23776. height: math.unit(5 + 7 / 12, "feet"),
  23777. weight: math.unit(185, "lb"),
  23778. name: "Front",
  23779. image: {
  23780. source: "./media/characters/aman-aquila/front.svg",
  23781. extra: 1013 / 976,
  23782. bottom: 45.6 / 1057
  23783. }
  23784. },
  23785. side: {
  23786. height: math.unit(5 + 7 / 12, "feet"),
  23787. weight: math.unit(185, "lb"),
  23788. name: "Side",
  23789. image: {
  23790. source: "./media/characters/aman-aquila/side.svg",
  23791. extra: 1054 / 1011,
  23792. bottom: 15 / 1070
  23793. }
  23794. },
  23795. back: {
  23796. height: math.unit(5 + 7 / 12, "feet"),
  23797. weight: math.unit(185, "lb"),
  23798. name: "Back",
  23799. image: {
  23800. source: "./media/characters/aman-aquila/back.svg",
  23801. extra: 1026 / 970,
  23802. bottom: 12 / 1039
  23803. }
  23804. },
  23805. head: {
  23806. height: math.unit(1.211, "feet"),
  23807. name: "Head",
  23808. image: {
  23809. source: "./media/characters/aman-aquila/head.svg",
  23810. }
  23811. },
  23812. },
  23813. [
  23814. {
  23815. name: "Minimicro",
  23816. height: math.unit(0.057, "inches")
  23817. },
  23818. {
  23819. name: "Micro",
  23820. height: math.unit(7, "inches")
  23821. },
  23822. {
  23823. name: "Mini",
  23824. height: math.unit(3 + 7 / 12, "feet")
  23825. },
  23826. {
  23827. name: "Normal",
  23828. height: math.unit(5 + 7 / 12, "feet"),
  23829. default: true
  23830. },
  23831. {
  23832. name: "Macro",
  23833. height: math.unit(157 + 7 / 12, "feet")
  23834. },
  23835. {
  23836. name: "Megamacro",
  23837. height: math.unit(1557 + 7 / 12, "feet")
  23838. },
  23839. {
  23840. name: "Gigamacro",
  23841. height: math.unit(15557 + 7 / 12, "feet")
  23842. },
  23843. ]
  23844. ))
  23845. characterMakers.push(() => makeCharacter(
  23846. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23847. {
  23848. front: {
  23849. height: math.unit(3 + 2 / 12, "inches"),
  23850. weight: math.unit(0.3, "ounces"),
  23851. name: "Front",
  23852. image: {
  23853. source: "./media/characters/hiphae/front.svg",
  23854. extra: 1931 / 1683,
  23855. bottom: 24 / 1955
  23856. }
  23857. },
  23858. },
  23859. [
  23860. {
  23861. name: "Normal",
  23862. height: math.unit(3 + 1 / 2, "inches"),
  23863. default: true
  23864. },
  23865. ]
  23866. ))
  23867. characterMakers.push(() => makeCharacter(
  23868. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23869. {
  23870. front: {
  23871. height: math.unit(5 + 10 / 12, "feet"),
  23872. weight: math.unit(165, "lb"),
  23873. name: "Front",
  23874. image: {
  23875. source: "./media/characters/nicky/front.svg",
  23876. extra: 3144 / 2886,
  23877. bottom: 45.6 / 3192
  23878. }
  23879. },
  23880. back: {
  23881. height: math.unit(5 + 10 / 12, "feet"),
  23882. weight: math.unit(165, "lb"),
  23883. name: "Back",
  23884. image: {
  23885. source: "./media/characters/nicky/back.svg",
  23886. extra: 3055 / 2804,
  23887. bottom: 28.4 / 3087
  23888. }
  23889. },
  23890. frontclothed: {
  23891. height: math.unit(5 + 10 / 12, "feet"),
  23892. weight: math.unit(165, "lb"),
  23893. name: "Front-clothed",
  23894. image: {
  23895. source: "./media/characters/nicky/front-clothed.svg",
  23896. extra: 3184.9 / 2926.9,
  23897. bottom: 86.5 / 3239.9
  23898. }
  23899. },
  23900. foot: {
  23901. height: math.unit(1.16, "feet"),
  23902. name: "Foot",
  23903. image: {
  23904. source: "./media/characters/nicky/foot.svg"
  23905. }
  23906. },
  23907. feet: {
  23908. height: math.unit(1.34, "feet"),
  23909. name: "Feet",
  23910. image: {
  23911. source: "./media/characters/nicky/feet.svg"
  23912. }
  23913. },
  23914. maw: {
  23915. height: math.unit(0.9, "feet"),
  23916. name: "Maw",
  23917. image: {
  23918. source: "./media/characters/nicky/maw.svg"
  23919. }
  23920. },
  23921. },
  23922. [
  23923. {
  23924. name: "Normal",
  23925. height: math.unit(5 + 10 / 12, "feet"),
  23926. default: true
  23927. },
  23928. {
  23929. name: "Macro",
  23930. height: math.unit(60, "feet")
  23931. },
  23932. {
  23933. name: "Megamacro",
  23934. height: math.unit(1, "mile")
  23935. },
  23936. ]
  23937. ))
  23938. characterMakers.push(() => makeCharacter(
  23939. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23940. {
  23941. side: {
  23942. height: math.unit(10, "feet"),
  23943. weight: math.unit(600, "lb"),
  23944. name: "Side",
  23945. image: {
  23946. source: "./media/characters/blair/side.svg",
  23947. bottom: 16.6 / 475,
  23948. extra: 458 / 431
  23949. }
  23950. },
  23951. },
  23952. [
  23953. {
  23954. name: "Micro",
  23955. height: math.unit(8, "inches")
  23956. },
  23957. {
  23958. name: "Normal",
  23959. height: math.unit(10, "feet"),
  23960. default: true
  23961. },
  23962. {
  23963. name: "Macro",
  23964. height: math.unit(180, "feet")
  23965. },
  23966. ]
  23967. ))
  23968. characterMakers.push(() => makeCharacter(
  23969. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23970. {
  23971. front: {
  23972. height: math.unit(5 + 4 / 12, "feet"),
  23973. weight: math.unit(125, "lb"),
  23974. name: "Front",
  23975. image: {
  23976. source: "./media/characters/fisher/front.svg",
  23977. extra: 444 / 390,
  23978. bottom: 2 / 444.8
  23979. }
  23980. },
  23981. },
  23982. [
  23983. {
  23984. name: "Micro",
  23985. height: math.unit(4, "inches")
  23986. },
  23987. {
  23988. name: "Normal",
  23989. height: math.unit(5 + 4 / 12, "feet"),
  23990. default: true
  23991. },
  23992. {
  23993. name: "Macro",
  23994. height: math.unit(100, "feet")
  23995. },
  23996. ]
  23997. ))
  23998. characterMakers.push(() => makeCharacter(
  23999. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24000. {
  24001. front: {
  24002. height: math.unit(6.71, "feet"),
  24003. weight: math.unit(200, "lb"),
  24004. capacity: math.unit(1000000, "people"),
  24005. name: "Front",
  24006. image: {
  24007. source: "./media/characters/gliss/front.svg",
  24008. extra: 2347 / 2231,
  24009. bottom: 113 / 2462
  24010. }
  24011. },
  24012. hammerspaceSize: {
  24013. height: math.unit(6.71 * 717, "feet"),
  24014. weight: math.unit(200, "lb"),
  24015. capacity: math.unit(1000000, "people"),
  24016. name: "Hammerspace Size",
  24017. image: {
  24018. source: "./media/characters/gliss/front.svg",
  24019. extra: 2347 / 2231,
  24020. bottom: 113 / 2462
  24021. }
  24022. },
  24023. },
  24024. [
  24025. {
  24026. name: "Normal",
  24027. height: math.unit(6.71, "feet"),
  24028. default: true
  24029. },
  24030. ]
  24031. ))
  24032. characterMakers.push(() => makeCharacter(
  24033. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24034. {
  24035. side: {
  24036. height: math.unit(1.44, "m"),
  24037. weight: math.unit(80, "kg"),
  24038. name: "Side",
  24039. image: {
  24040. source: "./media/characters/dune-anderson/side.svg",
  24041. bottom: 49 / 1426
  24042. }
  24043. },
  24044. },
  24045. [
  24046. {
  24047. name: "Wolf-sized",
  24048. height: math.unit(1.44, "meters")
  24049. },
  24050. {
  24051. name: "Normal",
  24052. height: math.unit(5.05, "meters"),
  24053. default: true
  24054. },
  24055. {
  24056. name: "Big",
  24057. height: math.unit(14.4, "meters")
  24058. },
  24059. {
  24060. name: "Huge",
  24061. height: math.unit(144, "meters")
  24062. },
  24063. ]
  24064. ))
  24065. characterMakers.push(() => makeCharacter(
  24066. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24067. {
  24068. front: {
  24069. height: math.unit(7, "feet"),
  24070. weight: math.unit(425, "lb"),
  24071. name: "Front",
  24072. image: {
  24073. source: "./media/characters/hind/front.svg",
  24074. extra: 2091 / 1860,
  24075. bottom: 129 / 2220
  24076. }
  24077. },
  24078. back: {
  24079. height: math.unit(7, "feet"),
  24080. weight: math.unit(425, "lb"),
  24081. name: "Back",
  24082. image: {
  24083. source: "./media/characters/hind/back.svg",
  24084. extra: 2091 / 1860,
  24085. bottom: 24.6 / 2309
  24086. }
  24087. },
  24088. tail: {
  24089. height: math.unit(2.8, "feet"),
  24090. name: "Tail",
  24091. image: {
  24092. source: "./media/characters/hind/tail.svg"
  24093. }
  24094. },
  24095. head: {
  24096. height: math.unit(2.55, "feet"),
  24097. name: "Head",
  24098. image: {
  24099. source: "./media/characters/hind/head.svg"
  24100. }
  24101. },
  24102. },
  24103. [
  24104. {
  24105. name: "XS",
  24106. height: math.unit(0.7, "feet")
  24107. },
  24108. {
  24109. name: "Normal",
  24110. height: math.unit(7, "feet"),
  24111. default: true
  24112. },
  24113. {
  24114. name: "XL",
  24115. height: math.unit(70, "feet")
  24116. },
  24117. ]
  24118. ))
  24119. characterMakers.push(() => makeCharacter(
  24120. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24121. {
  24122. front: {
  24123. height: math.unit(6, "feet"),
  24124. weight: math.unit(150, "lb"),
  24125. name: "Front",
  24126. image: {
  24127. source: "./media/characters/dylan-skaven/front.svg",
  24128. extra: 2318 / 2063,
  24129. bottom: 93.4 / 2410
  24130. }
  24131. },
  24132. },
  24133. [
  24134. {
  24135. name: "Nano",
  24136. height: math.unit(1, "mm")
  24137. },
  24138. {
  24139. name: "Micro",
  24140. height: math.unit(1, "cm")
  24141. },
  24142. {
  24143. name: "Normal",
  24144. height: math.unit(2.1, "meters"),
  24145. default: true
  24146. },
  24147. ]
  24148. ))
  24149. characterMakers.push(() => makeCharacter(
  24150. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24151. {
  24152. front: {
  24153. height: math.unit(7 + 5 / 12, "feet"),
  24154. weight: math.unit(357, "lb"),
  24155. name: "Front",
  24156. image: {
  24157. source: "./media/characters/solex-draconov/front.svg",
  24158. extra: 1993 / 1865,
  24159. bottom: 117 / 2111
  24160. }
  24161. },
  24162. },
  24163. [
  24164. {
  24165. name: "Natural Height",
  24166. height: math.unit(7 + 5 / 12, "feet"),
  24167. default: true
  24168. },
  24169. {
  24170. name: "Macro",
  24171. height: math.unit(350, "feet")
  24172. },
  24173. {
  24174. name: "Macro+",
  24175. height: math.unit(1000, "feet")
  24176. },
  24177. {
  24178. name: "Megamacro",
  24179. height: math.unit(20, "km")
  24180. },
  24181. {
  24182. name: "Megamacro+",
  24183. height: math.unit(1000, "km")
  24184. },
  24185. {
  24186. name: "Gigamacro",
  24187. height: math.unit(2.5, "Gm")
  24188. },
  24189. {
  24190. name: "Teramacro",
  24191. height: math.unit(15, "Tm")
  24192. },
  24193. {
  24194. name: "Galactic",
  24195. height: math.unit(30, "Zm")
  24196. },
  24197. {
  24198. name: "Universal",
  24199. height: math.unit(21000, "Ym")
  24200. },
  24201. {
  24202. name: "Omniversal",
  24203. height: math.unit(9.861e50, "Ym")
  24204. },
  24205. {
  24206. name: "Existential",
  24207. height: math.unit(1e300, "meters")
  24208. },
  24209. ]
  24210. ))
  24211. characterMakers.push(() => makeCharacter(
  24212. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24213. {
  24214. side: {
  24215. height: math.unit(25, "feet"),
  24216. weight: math.unit(90000, "lb"),
  24217. name: "Side",
  24218. image: {
  24219. source: "./media/characters/mandarax/side.svg",
  24220. extra: 614 / 332,
  24221. bottom: 55 / 630
  24222. }
  24223. },
  24224. head: {
  24225. height: math.unit(11.4, "feet"),
  24226. name: "Head",
  24227. image: {
  24228. source: "./media/characters/mandarax/head.svg"
  24229. }
  24230. },
  24231. belly: {
  24232. height: math.unit(33, "feet"),
  24233. name: "Belly",
  24234. capacity: math.unit(500, "people"),
  24235. image: {
  24236. source: "./media/characters/mandarax/belly.svg"
  24237. }
  24238. },
  24239. dick: {
  24240. height: math.unit(8.46, "feet"),
  24241. name: "Dick",
  24242. image: {
  24243. source: "./media/characters/mandarax/dick.svg"
  24244. }
  24245. },
  24246. top: {
  24247. height: math.unit(28, "meters"),
  24248. name: "Top",
  24249. image: {
  24250. source: "./media/characters/mandarax/top.svg"
  24251. }
  24252. },
  24253. },
  24254. [
  24255. {
  24256. name: "Normal",
  24257. height: math.unit(25, "feet"),
  24258. default: true
  24259. },
  24260. ]
  24261. ))
  24262. characterMakers.push(() => makeCharacter(
  24263. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24264. {
  24265. front: {
  24266. height: math.unit(5, "feet"),
  24267. weight: math.unit(90, "lb"),
  24268. name: "Front",
  24269. image: {
  24270. source: "./media/characters/pixil/front.svg",
  24271. extra: 2000 / 1618,
  24272. bottom: 12.3 / 2011
  24273. }
  24274. },
  24275. },
  24276. [
  24277. {
  24278. name: "Normal",
  24279. height: math.unit(5, "feet"),
  24280. default: true
  24281. },
  24282. {
  24283. name: "Megamacro",
  24284. height: math.unit(10, "miles"),
  24285. },
  24286. ]
  24287. ))
  24288. characterMakers.push(() => makeCharacter(
  24289. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24290. {
  24291. front: {
  24292. height: math.unit(7 + 2 / 12, "feet"),
  24293. weight: math.unit(200, "lb"),
  24294. name: "Front",
  24295. image: {
  24296. source: "./media/characters/angel/front.svg",
  24297. extra: 1830 / 1737,
  24298. bottom: 22.6 / 1854,
  24299. }
  24300. },
  24301. },
  24302. [
  24303. {
  24304. name: "Normal",
  24305. height: math.unit(7 + 2 / 12, "feet"),
  24306. default: true
  24307. },
  24308. {
  24309. name: "Macro",
  24310. height: math.unit(1000, "feet")
  24311. },
  24312. {
  24313. name: "Megamacro",
  24314. height: math.unit(2, "miles")
  24315. },
  24316. {
  24317. name: "Gigamacro",
  24318. height: math.unit(20, "earths")
  24319. },
  24320. ]
  24321. ))
  24322. characterMakers.push(() => makeCharacter(
  24323. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24324. {
  24325. front: {
  24326. height: math.unit(5, "feet"),
  24327. weight: math.unit(180, "lb"),
  24328. name: "Front",
  24329. image: {
  24330. source: "./media/characters/mekana/front.svg",
  24331. extra: 1671 / 1605,
  24332. bottom: 3.5 / 1691
  24333. }
  24334. },
  24335. side: {
  24336. height: math.unit(5, "feet"),
  24337. weight: math.unit(180, "lb"),
  24338. name: "Side",
  24339. image: {
  24340. source: "./media/characters/mekana/side.svg",
  24341. extra: 1671 / 1605,
  24342. bottom: 3.5 / 1691
  24343. }
  24344. },
  24345. back: {
  24346. height: math.unit(5, "feet"),
  24347. weight: math.unit(180, "lb"),
  24348. name: "Back",
  24349. image: {
  24350. source: "./media/characters/mekana/back.svg",
  24351. extra: 1671 / 1605,
  24352. bottom: 3.5 / 1691
  24353. }
  24354. },
  24355. },
  24356. [
  24357. {
  24358. name: "Normal",
  24359. height: math.unit(5, "feet"),
  24360. default: true
  24361. },
  24362. ]
  24363. ))
  24364. characterMakers.push(() => makeCharacter(
  24365. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24366. {
  24367. front: {
  24368. height: math.unit(4 + 6 / 12, "feet"),
  24369. weight: math.unit(80, "lb"),
  24370. name: "Front",
  24371. image: {
  24372. source: "./media/characters/pixie/front.svg",
  24373. extra: 1924 / 1825,
  24374. bottom: 22.4 / 1946
  24375. }
  24376. },
  24377. },
  24378. [
  24379. {
  24380. name: "Normal",
  24381. height: math.unit(4 + 6 / 12, "feet"),
  24382. default: true
  24383. },
  24384. {
  24385. name: "Macro",
  24386. height: math.unit(40, "feet")
  24387. },
  24388. ]
  24389. ))
  24390. characterMakers.push(() => makeCharacter(
  24391. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24392. {
  24393. front: {
  24394. height: math.unit(2.1, "meters"),
  24395. weight: math.unit(200, "lb"),
  24396. name: "Front",
  24397. image: {
  24398. source: "./media/characters/the-lascivious/front.svg",
  24399. extra: 1 / 0.893,
  24400. bottom: 3.5 / 573.7
  24401. }
  24402. },
  24403. },
  24404. [
  24405. {
  24406. name: "Human Scale",
  24407. height: math.unit(2.1, "meters")
  24408. },
  24409. {
  24410. name: "Wolxi Scale",
  24411. height: math.unit(46.2, "m"),
  24412. default: true
  24413. },
  24414. {
  24415. name: "Boinker of Buildings",
  24416. height: math.unit(10, "km")
  24417. },
  24418. {
  24419. name: "Shagger of Skyscrapers",
  24420. height: math.unit(40, "km")
  24421. },
  24422. {
  24423. name: "Banger of Boroughs",
  24424. height: math.unit(4000, "km")
  24425. },
  24426. {
  24427. name: "Screwer of States",
  24428. height: math.unit(100000, "km")
  24429. },
  24430. {
  24431. name: "Pounder of Planets",
  24432. height: math.unit(2000000, "km")
  24433. },
  24434. ]
  24435. ))
  24436. characterMakers.push(() => makeCharacter(
  24437. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24438. {
  24439. front: {
  24440. height: math.unit(6, "feet"),
  24441. weight: math.unit(150, "lb"),
  24442. name: "Front",
  24443. image: {
  24444. source: "./media/characters/aj/front.svg",
  24445. extra: 2039 / 1562,
  24446. bottom: 40 / 2079
  24447. }
  24448. },
  24449. },
  24450. [
  24451. {
  24452. name: "Normal",
  24453. height: math.unit(11 + 6 / 12, "feet"),
  24454. default: true
  24455. },
  24456. {
  24457. name: "Megamacro",
  24458. height: math.unit(60, "megameters")
  24459. },
  24460. ]
  24461. ))
  24462. characterMakers.push(() => makeCharacter(
  24463. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24464. {
  24465. side: {
  24466. height: math.unit(31 + 8 / 12, "feet"),
  24467. weight: math.unit(75000, "kg"),
  24468. name: "Side",
  24469. image: {
  24470. source: "./media/characters/koros/side.svg",
  24471. extra: 1442 / 1297,
  24472. bottom: 122.7 / 1562
  24473. }
  24474. },
  24475. dicksKingsCrown: {
  24476. height: math.unit(6, "feet"),
  24477. name: "Dicks (King's Crown)",
  24478. image: {
  24479. source: "./media/characters/koros/dicks-kings-crown.svg"
  24480. }
  24481. },
  24482. dicksTailSet: {
  24483. height: math.unit(3, "feet"),
  24484. name: "Dicks (Tail Set)",
  24485. image: {
  24486. source: "./media/characters/koros/dicks-tail-set.svg"
  24487. }
  24488. },
  24489. dickCumming: {
  24490. height: math.unit(7.98, "feet"),
  24491. name: "Dick (Cumming)",
  24492. image: {
  24493. source: "./media/characters/koros/dick-cumming.svg"
  24494. }
  24495. },
  24496. dicksBack: {
  24497. height: math.unit(5.9, "feet"),
  24498. name: "Dicks (Back)",
  24499. image: {
  24500. source: "./media/characters/koros/dicks-back.svg"
  24501. }
  24502. },
  24503. dicksFront: {
  24504. height: math.unit(3.72, "feet"),
  24505. name: "Dicks (Front)",
  24506. image: {
  24507. source: "./media/characters/koros/dicks-front.svg"
  24508. }
  24509. },
  24510. dicksPeeking: {
  24511. height: math.unit(3.0, "feet"),
  24512. name: "Dicks (Peeking)",
  24513. image: {
  24514. source: "./media/characters/koros/dicks-peeking.svg"
  24515. }
  24516. },
  24517. eye: {
  24518. height: math.unit(1.7, "feet"),
  24519. name: "Eye",
  24520. image: {
  24521. source: "./media/characters/koros/eye.svg"
  24522. }
  24523. },
  24524. headFront: {
  24525. height: math.unit(11.69, "feet"),
  24526. name: "Head (Front)",
  24527. image: {
  24528. source: "./media/characters/koros/head-front.svg"
  24529. }
  24530. },
  24531. headSide: {
  24532. height: math.unit(14, "feet"),
  24533. name: "Head (Side)",
  24534. image: {
  24535. source: "./media/characters/koros/head-side.svg"
  24536. }
  24537. },
  24538. leg: {
  24539. height: math.unit(17, "feet"),
  24540. name: "Leg",
  24541. image: {
  24542. source: "./media/characters/koros/leg.svg"
  24543. }
  24544. },
  24545. mawSide: {
  24546. height: math.unit(12.8, "feet"),
  24547. name: "Maw (Side)",
  24548. image: {
  24549. source: "./media/characters/koros/maw-side.svg"
  24550. }
  24551. },
  24552. mawSpitting: {
  24553. height: math.unit(17, "feet"),
  24554. name: "Maw (Spitting)",
  24555. image: {
  24556. source: "./media/characters/koros/maw-spitting.svg"
  24557. }
  24558. },
  24559. slit: {
  24560. height: math.unit(2.8, "feet"),
  24561. name: "Slit",
  24562. image: {
  24563. source: "./media/characters/koros/slit.svg"
  24564. }
  24565. },
  24566. stomach: {
  24567. height: math.unit(6.8, "feet"),
  24568. capacity: math.unit(20, "people"),
  24569. name: "Stomach",
  24570. image: {
  24571. source: "./media/characters/koros/stomach.svg"
  24572. }
  24573. },
  24574. wingspanBottom: {
  24575. height: math.unit(114, "feet"),
  24576. name: "Wingspan (Bottom)",
  24577. image: {
  24578. source: "./media/characters/koros/wingspan-bottom.svg"
  24579. }
  24580. },
  24581. wingspanTop: {
  24582. height: math.unit(104, "feet"),
  24583. name: "Wingspan (Top)",
  24584. image: {
  24585. source: "./media/characters/koros/wingspan-top.svg"
  24586. }
  24587. },
  24588. },
  24589. [
  24590. {
  24591. name: "Normal",
  24592. height: math.unit(31 + 8 / 12, "feet"),
  24593. default: true
  24594. },
  24595. ]
  24596. ))
  24597. characterMakers.push(() => makeCharacter(
  24598. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24599. {
  24600. front: {
  24601. height: math.unit(18 + 5 / 12, "feet"),
  24602. weight: math.unit(3750, "kg"),
  24603. name: "Front",
  24604. image: {
  24605. source: "./media/characters/vexx/front.svg",
  24606. extra: 426 / 396,
  24607. bottom: 31.5 / 458
  24608. }
  24609. },
  24610. maw: {
  24611. height: math.unit(6, "feet"),
  24612. name: "Maw",
  24613. image: {
  24614. source: "./media/characters/vexx/maw.svg"
  24615. }
  24616. },
  24617. },
  24618. [
  24619. {
  24620. name: "Normal",
  24621. height: math.unit(18 + 5 / 12, "feet"),
  24622. default: true
  24623. },
  24624. ]
  24625. ))
  24626. characterMakers.push(() => makeCharacter(
  24627. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24628. {
  24629. front: {
  24630. height: math.unit(17 + 6 / 12, "feet"),
  24631. weight: math.unit(150, "lb"),
  24632. name: "Front",
  24633. image: {
  24634. source: "./media/characters/baadra/front.svg",
  24635. extra: 3137 / 2890,
  24636. bottom: 168.4 / 3305
  24637. }
  24638. },
  24639. back: {
  24640. height: math.unit(17 + 6 / 12, "feet"),
  24641. weight: math.unit(150, "lb"),
  24642. name: "Back",
  24643. image: {
  24644. source: "./media/characters/baadra/back.svg",
  24645. extra: 3142 / 2890,
  24646. bottom: 220 / 3371
  24647. }
  24648. },
  24649. head: {
  24650. height: math.unit(5.45, "feet"),
  24651. name: "Head",
  24652. image: {
  24653. source: "./media/characters/baadra/head.svg"
  24654. }
  24655. },
  24656. headAngry: {
  24657. height: math.unit(4.95, "feet"),
  24658. name: "Head (Angry)",
  24659. image: {
  24660. source: "./media/characters/baadra/head-angry.svg"
  24661. }
  24662. },
  24663. headOpen: {
  24664. height: math.unit(6, "feet"),
  24665. name: "Head (Open)",
  24666. image: {
  24667. source: "./media/characters/baadra/head-open.svg"
  24668. }
  24669. },
  24670. },
  24671. [
  24672. {
  24673. name: "Normal",
  24674. height: math.unit(17 + 6 / 12, "feet"),
  24675. default: true
  24676. },
  24677. ]
  24678. ))
  24679. characterMakers.push(() => makeCharacter(
  24680. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24681. {
  24682. front: {
  24683. height: math.unit(7 + 3 / 12, "feet"),
  24684. weight: math.unit(180, "lb"),
  24685. name: "Front",
  24686. image: {
  24687. source: "./media/characters/juri/front.svg",
  24688. extra: 1401 / 1237,
  24689. bottom: 18.5 / 1418
  24690. }
  24691. },
  24692. side: {
  24693. height: math.unit(7 + 3 / 12, "feet"),
  24694. weight: math.unit(180, "lb"),
  24695. name: "Side",
  24696. image: {
  24697. source: "./media/characters/juri/side.svg",
  24698. extra: 1424 / 1242,
  24699. bottom: 18.5 / 1447
  24700. }
  24701. },
  24702. sitting: {
  24703. height: math.unit(6, "feet"),
  24704. weight: math.unit(180, "lb"),
  24705. name: "Sitting",
  24706. image: {
  24707. source: "./media/characters/juri/sitting.svg",
  24708. extra: 1270 / 1143,
  24709. bottom: 100 / 1343
  24710. }
  24711. },
  24712. back: {
  24713. height: math.unit(7 + 3 / 12, "feet"),
  24714. weight: math.unit(180, "lb"),
  24715. name: "Back",
  24716. image: {
  24717. source: "./media/characters/juri/back.svg",
  24718. extra: 1377 / 1240,
  24719. bottom: 23.7 / 1405
  24720. }
  24721. },
  24722. maw: {
  24723. height: math.unit(2.8, "feet"),
  24724. name: "Maw",
  24725. image: {
  24726. source: "./media/characters/juri/maw.svg"
  24727. }
  24728. },
  24729. stomach: {
  24730. height: math.unit(0.89, "feet"),
  24731. capacity: math.unit(4, "liters"),
  24732. name: "Stomach",
  24733. image: {
  24734. source: "./media/characters/juri/stomach.svg"
  24735. }
  24736. },
  24737. },
  24738. [
  24739. {
  24740. name: "Normal",
  24741. height: math.unit(7 + 3 / 12, "feet"),
  24742. default: true
  24743. },
  24744. ]
  24745. ))
  24746. characterMakers.push(() => makeCharacter(
  24747. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24748. {
  24749. fox: {
  24750. height: math.unit(5 + 6 / 12, "feet"),
  24751. weight: math.unit(140, "lb"),
  24752. name: "Fox",
  24753. image: {
  24754. source: "./media/characters/maxene-sita/fox.svg",
  24755. extra: 146 / 138,
  24756. bottom: 2.1 / 148.19
  24757. }
  24758. },
  24759. foxLaying: {
  24760. height: math.unit(1.70, "feet"),
  24761. weight: math.unit(140, "lb"),
  24762. name: "Fox (Laying)",
  24763. image: {
  24764. source: "./media/characters/maxene-sita/fox-laying.svg",
  24765. extra: 910/572,
  24766. bottom: 71/981
  24767. }
  24768. },
  24769. kitsune: {
  24770. height: math.unit(10, "feet"),
  24771. weight: math.unit(800, "lb"),
  24772. name: "Kitsune",
  24773. image: {
  24774. source: "./media/characters/maxene-sita/kitsune.svg",
  24775. extra: 185 / 176,
  24776. bottom: 4.7 / 189.9
  24777. }
  24778. },
  24779. hellhound: {
  24780. height: math.unit(10, "feet"),
  24781. weight: math.unit(700, "lb"),
  24782. name: "Hellhound",
  24783. image: {
  24784. source: "./media/characters/maxene-sita/hellhound.svg",
  24785. extra: 1600/1545,
  24786. bottom: 81/1681
  24787. }
  24788. },
  24789. },
  24790. [
  24791. {
  24792. name: "Normal",
  24793. height: math.unit(5 + 6 / 12, "feet"),
  24794. default: true
  24795. },
  24796. ]
  24797. ))
  24798. characterMakers.push(() => makeCharacter(
  24799. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24800. {
  24801. front: {
  24802. height: math.unit(3 + 4 / 12, "feet"),
  24803. weight: math.unit(70, "lb"),
  24804. name: "Front",
  24805. image: {
  24806. source: "./media/characters/maia/front.svg",
  24807. extra: 227 / 219.5,
  24808. bottom: 40 / 267
  24809. }
  24810. },
  24811. back: {
  24812. height: math.unit(3 + 4 / 12, "feet"),
  24813. weight: math.unit(70, "lb"),
  24814. name: "Back",
  24815. image: {
  24816. source: "./media/characters/maia/back.svg",
  24817. extra: 237 / 225
  24818. }
  24819. },
  24820. },
  24821. [
  24822. {
  24823. name: "Normal",
  24824. height: math.unit(3 + 4 / 12, "feet"),
  24825. default: true
  24826. },
  24827. ]
  24828. ))
  24829. characterMakers.push(() => makeCharacter(
  24830. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24831. {
  24832. front: {
  24833. height: math.unit(5 + 10 / 12, "feet"),
  24834. weight: math.unit(197, "lb"),
  24835. name: "Front",
  24836. image: {
  24837. source: "./media/characters/jabaro/front.svg",
  24838. extra: 225 / 216,
  24839. bottom: 5.06 / 230
  24840. }
  24841. },
  24842. back: {
  24843. height: math.unit(5 + 10 / 12, "feet"),
  24844. weight: math.unit(197, "lb"),
  24845. name: "Back",
  24846. image: {
  24847. source: "./media/characters/jabaro/back.svg",
  24848. extra: 225 / 219,
  24849. bottom: 1.9 / 227
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Normal",
  24856. height: math.unit(5 + 10 / 12, "feet"),
  24857. default: true
  24858. },
  24859. ]
  24860. ))
  24861. characterMakers.push(() => makeCharacter(
  24862. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24863. {
  24864. front: {
  24865. height: math.unit(5 + 8 / 12, "feet"),
  24866. weight: math.unit(139, "lb"),
  24867. name: "Front",
  24868. image: {
  24869. source: "./media/characters/risa/front.svg",
  24870. extra: 270 / 260,
  24871. bottom: 11.2 / 282
  24872. }
  24873. },
  24874. back: {
  24875. height: math.unit(5 + 8 / 12, "feet"),
  24876. weight: math.unit(139, "lb"),
  24877. name: "Back",
  24878. image: {
  24879. source: "./media/characters/risa/back.svg",
  24880. extra: 264 / 255,
  24881. bottom: 4 / 268
  24882. }
  24883. },
  24884. },
  24885. [
  24886. {
  24887. name: "Normal",
  24888. height: math.unit(5 + 8 / 12, "feet"),
  24889. default: true
  24890. },
  24891. ]
  24892. ))
  24893. characterMakers.push(() => makeCharacter(
  24894. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24895. {
  24896. front: {
  24897. height: math.unit(2 + 11 / 12, "feet"),
  24898. weight: math.unit(30, "lb"),
  24899. name: "Front",
  24900. image: {
  24901. source: "./media/characters/weatley/front.svg",
  24902. bottom: 10.7 / 414,
  24903. extra: 403.5 / 362
  24904. }
  24905. },
  24906. back: {
  24907. height: math.unit(2 + 11 / 12, "feet"),
  24908. weight: math.unit(30, "lb"),
  24909. name: "Back",
  24910. image: {
  24911. source: "./media/characters/weatley/back.svg",
  24912. bottom: 10.7 / 414,
  24913. extra: 403.5 / 362
  24914. }
  24915. },
  24916. },
  24917. [
  24918. {
  24919. name: "Normal",
  24920. height: math.unit(2 + 11 / 12, "feet"),
  24921. default: true
  24922. },
  24923. ]
  24924. ))
  24925. characterMakers.push(() => makeCharacter(
  24926. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24927. {
  24928. front: {
  24929. height: math.unit(5 + 2 / 12, "feet"),
  24930. weight: math.unit(50, "kg"),
  24931. name: "Front",
  24932. image: {
  24933. source: "./media/characters/mercury-crescent/front.svg",
  24934. extra: 1088 / 1033,
  24935. bottom: 18.9 / 1109
  24936. }
  24937. },
  24938. },
  24939. [
  24940. {
  24941. name: "Normal",
  24942. height: math.unit(5 + 2 / 12, "feet"),
  24943. default: true
  24944. },
  24945. ]
  24946. ))
  24947. characterMakers.push(() => makeCharacter(
  24948. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24949. {
  24950. front: {
  24951. height: math.unit(2, "feet"),
  24952. weight: math.unit(15, "kg"),
  24953. name: "Front",
  24954. image: {
  24955. source: "./media/characters/diamond-jones/front.svg",
  24956. bottom: 16 / 568
  24957. }
  24958. },
  24959. },
  24960. [
  24961. {
  24962. name: "Normal",
  24963. height: math.unit(2, "feet"),
  24964. default: true
  24965. },
  24966. ]
  24967. ))
  24968. characterMakers.push(() => makeCharacter(
  24969. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24970. {
  24971. front: {
  24972. height: math.unit(3, "feet"),
  24973. weight: math.unit(30, "kg"),
  24974. name: "Front",
  24975. image: {
  24976. source: "./media/characters/sweet-bit/front.svg",
  24977. extra: 675 / 567,
  24978. bottom: 27.7 / 703
  24979. }
  24980. },
  24981. },
  24982. [
  24983. {
  24984. name: "Normal",
  24985. height: math.unit(3, "feet"),
  24986. default: true
  24987. },
  24988. ]
  24989. ))
  24990. characterMakers.push(() => makeCharacter(
  24991. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24992. {
  24993. side: {
  24994. height: math.unit(9.178, "feet"),
  24995. weight: math.unit(500, "lb"),
  24996. name: "Side",
  24997. image: {
  24998. source: "./media/characters/umbrazen/side.svg",
  24999. extra: 1730 / 1473,
  25000. bottom: 34.6 / 1765
  25001. }
  25002. },
  25003. },
  25004. [
  25005. {
  25006. name: "Normal",
  25007. height: math.unit(9.178, "feet"),
  25008. default: true
  25009. },
  25010. ]
  25011. ))
  25012. characterMakers.push(() => makeCharacter(
  25013. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25014. {
  25015. front: {
  25016. height: math.unit(10, "feet"),
  25017. weight: math.unit(750, "lb"),
  25018. name: "Front",
  25019. image: {
  25020. source: "./media/characters/arlist/front.svg",
  25021. extra: 961 / 778,
  25022. bottom: 6.2 / 986
  25023. }
  25024. },
  25025. },
  25026. [
  25027. {
  25028. name: "Normal",
  25029. height: math.unit(10, "feet"),
  25030. default: true
  25031. },
  25032. ]
  25033. ))
  25034. characterMakers.push(() => makeCharacter(
  25035. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25036. {
  25037. front: {
  25038. height: math.unit(5 + 1 / 12, "feet"),
  25039. weight: math.unit(110, "lb"),
  25040. name: "Front",
  25041. image: {
  25042. source: "./media/characters/aradel/front.svg",
  25043. extra: 324 / 303,
  25044. bottom: 3.6 / 329.4
  25045. }
  25046. },
  25047. },
  25048. [
  25049. {
  25050. name: "Normal",
  25051. height: math.unit(5 + 1 / 12, "feet"),
  25052. default: true
  25053. },
  25054. ]
  25055. ))
  25056. characterMakers.push(() => makeCharacter(
  25057. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25058. {
  25059. front: {
  25060. height: math.unit(3 + 8 / 12, "feet"),
  25061. weight: math.unit(50, "lb"),
  25062. name: "Front",
  25063. image: {
  25064. source: "./media/characters/serryn/front.svg",
  25065. extra: 1792 / 1656,
  25066. bottom: 43.5 / 1840
  25067. }
  25068. },
  25069. },
  25070. [
  25071. {
  25072. name: "Normal",
  25073. height: math.unit(3 + 8 / 12, "feet"),
  25074. default: true
  25075. },
  25076. ]
  25077. ))
  25078. characterMakers.push(() => makeCharacter(
  25079. { name: "Xavier Thyme" },
  25080. {
  25081. front: {
  25082. height: math.unit(7 + 10 / 12, "feet"),
  25083. weight: math.unit(255, "lb"),
  25084. name: "Front",
  25085. image: {
  25086. source: "./media/characters/xavier-thyme/front.svg",
  25087. extra: 3733 / 3642,
  25088. bottom: 131 / 3869
  25089. }
  25090. },
  25091. frontRaven: {
  25092. height: math.unit(7 + 10 / 12, "feet"),
  25093. weight: math.unit(255, "lb"),
  25094. name: "Front (Raven)",
  25095. image: {
  25096. source: "./media/characters/xavier-thyme/front-raven.svg",
  25097. extra: 4385 / 3642,
  25098. bottom: 131 / 4517
  25099. }
  25100. },
  25101. },
  25102. [
  25103. {
  25104. name: "Normal",
  25105. height: math.unit(7 + 10 / 12, "feet"),
  25106. default: true
  25107. },
  25108. ]
  25109. ))
  25110. characterMakers.push(() => makeCharacter(
  25111. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25112. {
  25113. front: {
  25114. height: math.unit(1.6, "m"),
  25115. weight: math.unit(50, "kg"),
  25116. name: "Front",
  25117. image: {
  25118. source: "./media/characters/kiki/front.svg",
  25119. extra: 4682 / 3610,
  25120. bottom: 115 / 4777
  25121. }
  25122. },
  25123. },
  25124. [
  25125. {
  25126. name: "Normal",
  25127. height: math.unit(1.6, "meters"),
  25128. default: true
  25129. },
  25130. ]
  25131. ))
  25132. characterMakers.push(() => makeCharacter(
  25133. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25134. {
  25135. front: {
  25136. height: math.unit(50, "m"),
  25137. weight: math.unit(500, "tonnes"),
  25138. name: "Front",
  25139. image: {
  25140. source: "./media/characters/ryoko/front.svg",
  25141. extra: 4632 / 3926,
  25142. bottom: 193 / 4823
  25143. }
  25144. },
  25145. },
  25146. [
  25147. {
  25148. name: "Normal",
  25149. height: math.unit(50, "meters"),
  25150. default: true
  25151. },
  25152. ]
  25153. ))
  25154. characterMakers.push(() => makeCharacter(
  25155. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25156. {
  25157. front: {
  25158. height: math.unit(30, "m"),
  25159. weight: math.unit(22, "tonnes"),
  25160. name: "Front",
  25161. image: {
  25162. source: "./media/characters/elio/front.svg",
  25163. extra: 4582 / 3720,
  25164. bottom: 236 / 4828
  25165. }
  25166. },
  25167. },
  25168. [
  25169. {
  25170. name: "Normal",
  25171. height: math.unit(30, "meters"),
  25172. default: true
  25173. },
  25174. ]
  25175. ))
  25176. characterMakers.push(() => makeCharacter(
  25177. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25178. {
  25179. front: {
  25180. height: math.unit(6 + 3 / 12, "feet"),
  25181. weight: math.unit(120, "lb"),
  25182. name: "Front",
  25183. image: {
  25184. source: "./media/characters/azura/front.svg",
  25185. extra: 1149 / 1135,
  25186. bottom: 45 / 1194
  25187. }
  25188. },
  25189. frontClothed: {
  25190. height: math.unit(6 + 3 / 12, "feet"),
  25191. weight: math.unit(120, "lb"),
  25192. name: "Front (Clothed)",
  25193. image: {
  25194. source: "./media/characters/azura/front-clothed.svg",
  25195. extra: 1149 / 1135,
  25196. bottom: 45 / 1194
  25197. }
  25198. },
  25199. },
  25200. [
  25201. {
  25202. name: "Normal",
  25203. height: math.unit(6 + 3 / 12, "feet"),
  25204. default: true
  25205. },
  25206. {
  25207. name: "Macro",
  25208. height: math.unit(20 + 6 / 12, "feet")
  25209. },
  25210. {
  25211. name: "Megamacro",
  25212. height: math.unit(12, "miles")
  25213. },
  25214. {
  25215. name: "Gigamacro",
  25216. height: math.unit(10000, "miles")
  25217. },
  25218. {
  25219. name: "Teramacro",
  25220. height: math.unit(900000, "miles")
  25221. },
  25222. ]
  25223. ))
  25224. characterMakers.push(() => makeCharacter(
  25225. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25226. {
  25227. front: {
  25228. height: math.unit(12, "feet"),
  25229. weight: math.unit(1, "ton"),
  25230. capacity: math.unit(660000, "gallons"),
  25231. name: "Front",
  25232. image: {
  25233. source: "./media/characters/zeus/front.svg",
  25234. extra: 5005 / 4717,
  25235. bottom: 363 / 5388
  25236. }
  25237. },
  25238. },
  25239. [
  25240. {
  25241. name: "Normal",
  25242. height: math.unit(12, "feet")
  25243. },
  25244. {
  25245. name: "Preferred Size",
  25246. height: math.unit(0.5, "miles"),
  25247. default: true
  25248. },
  25249. {
  25250. name: "Giga Horse",
  25251. height: math.unit(300, "miles")
  25252. },
  25253. {
  25254. name: "Riding Planets",
  25255. height: math.unit(30, "megameters")
  25256. },
  25257. {
  25258. name: "Cosmic Giant",
  25259. height: math.unit(3, "zettameters")
  25260. },
  25261. {
  25262. name: "Breeding God",
  25263. height: math.unit(9.92e22, "yottameters")
  25264. },
  25265. ]
  25266. ))
  25267. characterMakers.push(() => makeCharacter(
  25268. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25269. {
  25270. side: {
  25271. height: math.unit(9, "feet"),
  25272. weight: math.unit(1500, "kg"),
  25273. name: "Side",
  25274. image: {
  25275. source: "./media/characters/fang/side.svg",
  25276. extra: 924 / 866,
  25277. bottom: 47.5 / 972.3
  25278. }
  25279. },
  25280. },
  25281. [
  25282. {
  25283. name: "Normal",
  25284. height: math.unit(9, "feet"),
  25285. default: true
  25286. },
  25287. {
  25288. name: "Macro",
  25289. height: math.unit(75 + 6 / 12, "feet")
  25290. },
  25291. {
  25292. name: "Teramacro",
  25293. height: math.unit(50000, "miles")
  25294. },
  25295. ]
  25296. ))
  25297. characterMakers.push(() => makeCharacter(
  25298. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25299. {
  25300. front: {
  25301. height: math.unit(10, "feet"),
  25302. weight: math.unit(2, "tons"),
  25303. name: "Front",
  25304. image: {
  25305. source: "./media/characters/rekhit/front.svg",
  25306. extra: 2796 / 2590,
  25307. bottom: 225 / 3022
  25308. }
  25309. },
  25310. },
  25311. [
  25312. {
  25313. name: "Normal",
  25314. height: math.unit(10, "feet"),
  25315. default: true
  25316. },
  25317. {
  25318. name: "Macro",
  25319. height: math.unit(500, "feet")
  25320. },
  25321. ]
  25322. ))
  25323. characterMakers.push(() => makeCharacter(
  25324. { name: "Dahlia Verrick" },
  25325. {
  25326. front: {
  25327. height: math.unit(7 + 6.451 / 12, "feet"),
  25328. weight: math.unit(310, "lb"),
  25329. name: "Front",
  25330. image: {
  25331. source: "./media/characters/dahlia-verrick/front.svg",
  25332. extra: 1488 / 1365,
  25333. bottom: 6.2 / 1495
  25334. }
  25335. },
  25336. back: {
  25337. height: math.unit(7 + 6.451 / 12, "feet"),
  25338. weight: math.unit(310, "lb"),
  25339. name: "Back",
  25340. image: {
  25341. source: "./media/characters/dahlia-verrick/back.svg",
  25342. extra: 1472 / 1351,
  25343. bottom: 5.28 / 1477
  25344. }
  25345. },
  25346. frontBusiness: {
  25347. height: math.unit(7 + 6.451 / 12, "feet"),
  25348. weight: math.unit(200, "lb"),
  25349. name: "Front (Business)",
  25350. image: {
  25351. source: "./media/characters/dahlia-verrick/front-business.svg",
  25352. extra: 1478 / 1381,
  25353. bottom: 5.5 / 1484
  25354. }
  25355. },
  25356. frontCasual: {
  25357. height: math.unit(7 + 6.451 / 12, "feet"),
  25358. weight: math.unit(200, "lb"),
  25359. name: "Front (Casual)",
  25360. image: {
  25361. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25362. extra: 1478 / 1381,
  25363. bottom: 5.5 / 1484
  25364. }
  25365. },
  25366. },
  25367. [
  25368. {
  25369. name: "Travel-Sized",
  25370. height: math.unit(7.45, "inches")
  25371. },
  25372. {
  25373. name: "Normal",
  25374. height: math.unit(7 + 6.451 / 12, "feet"),
  25375. default: true
  25376. },
  25377. {
  25378. name: "Hitting the Town",
  25379. height: math.unit(37 + 8 / 12, "feet")
  25380. },
  25381. {
  25382. name: "Stomp in the Suburbs",
  25383. height: math.unit(964 + 9.728 / 12, "feet")
  25384. },
  25385. {
  25386. name: "Sit on the City",
  25387. height: math.unit(61747 + 10.592 / 12, "feet")
  25388. },
  25389. {
  25390. name: "Glomp the Globe",
  25391. height: math.unit(252919327 + 4.832 / 12, "feet")
  25392. },
  25393. ]
  25394. ))
  25395. characterMakers.push(() => makeCharacter(
  25396. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25397. {
  25398. front: {
  25399. height: math.unit(6 + 4 / 12, "feet"),
  25400. weight: math.unit(320, "lb"),
  25401. name: "Front",
  25402. image: {
  25403. source: "./media/characters/balina-mahigan/front.svg",
  25404. extra: 447 / 428,
  25405. bottom: 18 / 466
  25406. }
  25407. },
  25408. back: {
  25409. height: math.unit(6 + 4 / 12, "feet"),
  25410. weight: math.unit(320, "lb"),
  25411. name: "Back",
  25412. image: {
  25413. source: "./media/characters/balina-mahigan/back.svg",
  25414. extra: 445 / 428,
  25415. bottom: 4.07 / 448
  25416. }
  25417. },
  25418. arm: {
  25419. height: math.unit(1.88, "feet"),
  25420. name: "Arm",
  25421. image: {
  25422. source: "./media/characters/balina-mahigan/arm.svg"
  25423. }
  25424. },
  25425. backPort: {
  25426. height: math.unit(0.685, "feet"),
  25427. name: "Back Port",
  25428. image: {
  25429. source: "./media/characters/balina-mahigan/back-port.svg"
  25430. }
  25431. },
  25432. hoofpaw: {
  25433. height: math.unit(1.41, "feet"),
  25434. name: "Hoofpaw",
  25435. image: {
  25436. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25437. }
  25438. },
  25439. leftHandBack: {
  25440. height: math.unit(0.938, "feet"),
  25441. name: "Left Hand (Back)",
  25442. image: {
  25443. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25444. }
  25445. },
  25446. leftHandFront: {
  25447. height: math.unit(0.938, "feet"),
  25448. name: "Left Hand (Front)",
  25449. image: {
  25450. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25451. }
  25452. },
  25453. rightHandBack: {
  25454. height: math.unit(0.95, "feet"),
  25455. name: "Right Hand (Back)",
  25456. image: {
  25457. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25458. }
  25459. },
  25460. rightHandFront: {
  25461. height: math.unit(0.95, "feet"),
  25462. name: "Right Hand (Front)",
  25463. image: {
  25464. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25465. }
  25466. },
  25467. },
  25468. [
  25469. {
  25470. name: "Normal",
  25471. height: math.unit(6 + 4 / 12, "feet"),
  25472. default: true
  25473. },
  25474. ]
  25475. ))
  25476. characterMakers.push(() => makeCharacter(
  25477. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25478. {
  25479. front: {
  25480. height: math.unit(6, "feet"),
  25481. weight: math.unit(320, "lb"),
  25482. name: "Front",
  25483. image: {
  25484. source: "./media/characters/balina-mejeri/front.svg",
  25485. extra: 517 / 488,
  25486. bottom: 44.2 / 561
  25487. }
  25488. },
  25489. },
  25490. [
  25491. {
  25492. name: "Normal",
  25493. height: math.unit(6 + 4 / 12, "feet")
  25494. },
  25495. {
  25496. name: "Business",
  25497. height: math.unit(155, "feet"),
  25498. default: true
  25499. },
  25500. ]
  25501. ))
  25502. characterMakers.push(() => makeCharacter(
  25503. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25504. {
  25505. kneeling: {
  25506. height: math.unit(6 + 4 / 12, "feet"),
  25507. weight: math.unit(300 * 20, "lb"),
  25508. name: "Kneeling",
  25509. image: {
  25510. source: "./media/characters/balbarian/kneeling.svg",
  25511. extra: 922 / 862,
  25512. bottom: 42.4 / 965
  25513. }
  25514. },
  25515. },
  25516. [
  25517. {
  25518. name: "Normal",
  25519. height: math.unit(6 + 4 / 12, "feet")
  25520. },
  25521. {
  25522. name: "Treasured",
  25523. height: math.unit(18 + 9 / 12, "feet"),
  25524. default: true
  25525. },
  25526. {
  25527. name: "Macro",
  25528. height: math.unit(900, "feet")
  25529. },
  25530. ]
  25531. ))
  25532. characterMakers.push(() => makeCharacter(
  25533. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25534. {
  25535. front: {
  25536. height: math.unit(6 + 4 / 12, "feet"),
  25537. weight: math.unit(325, "lb"),
  25538. name: "Front",
  25539. image: {
  25540. source: "./media/characters/balina-amarini/front.svg",
  25541. extra: 415 / 403,
  25542. bottom: 19 / 433.4
  25543. }
  25544. },
  25545. back: {
  25546. height: math.unit(6 + 4 / 12, "feet"),
  25547. weight: math.unit(325, "lb"),
  25548. name: "Back",
  25549. image: {
  25550. source: "./media/characters/balina-amarini/back.svg",
  25551. extra: 415 / 403,
  25552. bottom: 13.5 / 432
  25553. }
  25554. },
  25555. overdrive: {
  25556. height: math.unit(6 + 4 / 12, "feet"),
  25557. weight: math.unit(400, "lb"),
  25558. name: "Overdrive",
  25559. image: {
  25560. source: "./media/characters/balina-amarini/overdrive.svg",
  25561. extra: 269 / 259,
  25562. bottom: 12 / 282
  25563. }
  25564. },
  25565. },
  25566. [
  25567. {
  25568. name: "Boom",
  25569. height: math.unit(9 + 10 / 12, "feet"),
  25570. default: true
  25571. },
  25572. {
  25573. name: "Macro",
  25574. height: math.unit(280, "feet")
  25575. },
  25576. ]
  25577. ))
  25578. characterMakers.push(() => makeCharacter(
  25579. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25580. {
  25581. goddess: {
  25582. height: math.unit(600, "feet"),
  25583. weight: math.unit(2000000, "tons"),
  25584. name: "Goddess",
  25585. image: {
  25586. source: "./media/characters/lady-kubwa/goddess.svg",
  25587. extra: 1240.5 / 1223,
  25588. bottom: 22 / 1263
  25589. }
  25590. },
  25591. goddesser: {
  25592. height: math.unit(900, "feet"),
  25593. weight: math.unit(20000000, "lb"),
  25594. name: "Goddess-er",
  25595. image: {
  25596. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25597. extra: 899 / 888,
  25598. bottom: 12.6 / 912
  25599. }
  25600. },
  25601. },
  25602. [
  25603. {
  25604. name: "Macro",
  25605. height: math.unit(600, "feet"),
  25606. default: true
  25607. },
  25608. {
  25609. name: "Megamacro",
  25610. height: math.unit(250, "miles")
  25611. },
  25612. ]
  25613. ))
  25614. characterMakers.push(() => makeCharacter(
  25615. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25616. {
  25617. front: {
  25618. height: math.unit(7 + 7 / 12, "feet"),
  25619. weight: math.unit(250, "lb"),
  25620. name: "Front",
  25621. image: {
  25622. source: "./media/characters/tala-grovehorn/front.svg",
  25623. extra: 2636 / 2525,
  25624. bottom: 147 / 2781
  25625. }
  25626. },
  25627. back: {
  25628. height: math.unit(7 + 7 / 12, "feet"),
  25629. weight: math.unit(250, "lb"),
  25630. name: "Back",
  25631. image: {
  25632. source: "./media/characters/tala-grovehorn/back.svg",
  25633. extra: 2635 / 2539,
  25634. bottom: 100 / 2732.8
  25635. }
  25636. },
  25637. mouth: {
  25638. height: math.unit(1.15, "feet"),
  25639. name: "Mouth",
  25640. image: {
  25641. source: "./media/characters/tala-grovehorn/mouth.svg"
  25642. }
  25643. },
  25644. dick: {
  25645. height: math.unit(2.36, "feet"),
  25646. name: "Dick",
  25647. image: {
  25648. source: "./media/characters/tala-grovehorn/dick.svg"
  25649. }
  25650. },
  25651. slit: {
  25652. height: math.unit(0.61, "feet"),
  25653. name: "Slit",
  25654. image: {
  25655. source: "./media/characters/tala-grovehorn/slit.svg"
  25656. }
  25657. },
  25658. },
  25659. [
  25660. ]
  25661. ))
  25662. characterMakers.push(() => makeCharacter(
  25663. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25664. {
  25665. front: {
  25666. height: math.unit(7 + 7 / 12, "feet"),
  25667. weight: math.unit(225, "lb"),
  25668. name: "Front",
  25669. image: {
  25670. source: "./media/characters/epona/front.svg",
  25671. extra: 2445 / 2290,
  25672. bottom: 251 / 2696
  25673. }
  25674. },
  25675. back: {
  25676. height: math.unit(7 + 7 / 12, "feet"),
  25677. weight: math.unit(225, "lb"),
  25678. name: "Back",
  25679. image: {
  25680. source: "./media/characters/epona/back.svg",
  25681. extra: 2546 / 2408,
  25682. bottom: 44 / 2589
  25683. }
  25684. },
  25685. genitals: {
  25686. height: math.unit(1.5, "feet"),
  25687. name: "Genitals",
  25688. image: {
  25689. source: "./media/characters/epona/genitals.svg"
  25690. }
  25691. },
  25692. },
  25693. [
  25694. {
  25695. name: "Normal",
  25696. height: math.unit(7 + 7 / 12, "feet")
  25697. },
  25698. ]
  25699. ))
  25700. characterMakers.push(() => makeCharacter(
  25701. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25702. {
  25703. front: {
  25704. height: math.unit(7, "feet"),
  25705. weight: math.unit(518, "lb"),
  25706. name: "Front",
  25707. image: {
  25708. source: "./media/characters/avia-bloodbourn/front.svg",
  25709. extra: 1466 / 1350,
  25710. bottom: 65 / 1527
  25711. }
  25712. },
  25713. },
  25714. [
  25715. ]
  25716. ))
  25717. characterMakers.push(() => makeCharacter(
  25718. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25719. {
  25720. front: {
  25721. height: math.unit(9.35, "feet"),
  25722. weight: math.unit(600, "lb"),
  25723. name: "Front",
  25724. image: {
  25725. source: "./media/characters/amera/front.svg",
  25726. extra: 891 / 818,
  25727. bottom: 30 / 922.7
  25728. }
  25729. },
  25730. back: {
  25731. height: math.unit(9.35, "feet"),
  25732. weight: math.unit(600, "lb"),
  25733. name: "Back",
  25734. image: {
  25735. source: "./media/characters/amera/back.svg",
  25736. extra: 876 / 824,
  25737. bottom: 6.8 / 884
  25738. }
  25739. },
  25740. dick: {
  25741. height: math.unit(2.14, "feet"),
  25742. name: "Dick",
  25743. image: {
  25744. source: "./media/characters/amera/dick.svg"
  25745. }
  25746. },
  25747. },
  25748. [
  25749. {
  25750. name: "Normal",
  25751. height: math.unit(9.35, "feet"),
  25752. default: true
  25753. },
  25754. ]
  25755. ))
  25756. characterMakers.push(() => makeCharacter(
  25757. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25758. {
  25759. kneeling: {
  25760. height: math.unit(3 + 4 / 12, "feet"),
  25761. weight: math.unit(90, "lb"),
  25762. name: "Kneeling",
  25763. image: {
  25764. source: "./media/characters/rosewen/kneeling.svg",
  25765. extra: 1835 / 1571,
  25766. bottom: 27.7 / 1862
  25767. }
  25768. },
  25769. },
  25770. [
  25771. {
  25772. name: "Normal",
  25773. height: math.unit(3 + 4 / 12, "feet"),
  25774. default: true
  25775. },
  25776. ]
  25777. ))
  25778. characterMakers.push(() => makeCharacter(
  25779. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25780. {
  25781. front: {
  25782. height: math.unit(5 + 10 / 12, "feet"),
  25783. weight: math.unit(200, "lb"),
  25784. name: "Front",
  25785. image: {
  25786. source: "./media/characters/sabah/front.svg",
  25787. extra: 849 / 763,
  25788. bottom: 33.9 / 881
  25789. }
  25790. },
  25791. },
  25792. [
  25793. {
  25794. name: "Normal",
  25795. height: math.unit(5 + 10 / 12, "feet"),
  25796. default: true
  25797. },
  25798. ]
  25799. ))
  25800. characterMakers.push(() => makeCharacter(
  25801. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25802. {
  25803. front: {
  25804. height: math.unit(3 + 5 / 12, "feet"),
  25805. weight: math.unit(40, "kg"),
  25806. name: "Front",
  25807. image: {
  25808. source: "./media/characters/purple-flame/front.svg",
  25809. extra: 1577 / 1412,
  25810. bottom: 97 / 1694
  25811. }
  25812. },
  25813. frontDressed: {
  25814. height: math.unit(3 + 5 / 12, "feet"),
  25815. weight: math.unit(40, "kg"),
  25816. name: "Front (Dressed)",
  25817. image: {
  25818. source: "./media/characters/purple-flame/front-dressed.svg",
  25819. extra: 1577 / 1412,
  25820. bottom: 97 / 1694
  25821. }
  25822. },
  25823. headphones: {
  25824. height: math.unit(0.85, "feet"),
  25825. name: "Headphones",
  25826. image: {
  25827. source: "./media/characters/purple-flame/headphones.svg"
  25828. }
  25829. },
  25830. },
  25831. [
  25832. {
  25833. name: "Really Small",
  25834. height: math.unit(5, "cm")
  25835. },
  25836. {
  25837. name: "Micro",
  25838. height: math.unit(1 + 5 / 12, "feet")
  25839. },
  25840. {
  25841. name: "Normal",
  25842. height: math.unit(3 + 5 / 12, "feet"),
  25843. default: true
  25844. },
  25845. {
  25846. name: "Minimacro",
  25847. height: math.unit(125, "feet")
  25848. },
  25849. {
  25850. name: "Macro",
  25851. height: math.unit(0.5, "miles")
  25852. },
  25853. {
  25854. name: "Megamacro",
  25855. height: math.unit(50, "miles")
  25856. },
  25857. {
  25858. name: "Gigantic",
  25859. height: math.unit(750, "miles")
  25860. },
  25861. {
  25862. name: "Planetary",
  25863. height: math.unit(15000, "miles")
  25864. },
  25865. ]
  25866. ))
  25867. characterMakers.push(() => makeCharacter(
  25868. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25869. {
  25870. front: {
  25871. height: math.unit(14, "feet"),
  25872. weight: math.unit(959, "lb"),
  25873. name: "Front",
  25874. image: {
  25875. source: "./media/characters/arsenal/front.svg",
  25876. extra: 2357 / 2157,
  25877. bottom: 93 / 2458
  25878. }
  25879. },
  25880. },
  25881. [
  25882. {
  25883. name: "Normal",
  25884. height: math.unit(14, "feet"),
  25885. default: true
  25886. },
  25887. ]
  25888. ))
  25889. characterMakers.push(() => makeCharacter(
  25890. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25891. {
  25892. front: {
  25893. height: math.unit(6, "feet"),
  25894. weight: math.unit(150, "lb"),
  25895. name: "Front",
  25896. image: {
  25897. source: "./media/characters/adira/front.svg",
  25898. extra: 1078 / 1029,
  25899. bottom: 87 / 1166
  25900. }
  25901. },
  25902. },
  25903. [
  25904. {
  25905. name: "Micro",
  25906. height: math.unit(4, "inches"),
  25907. default: true
  25908. },
  25909. {
  25910. name: "Macro",
  25911. height: math.unit(50, "feet")
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25917. {
  25918. front: {
  25919. height: math.unit(16, "feet"),
  25920. weight: math.unit(1000, "lb"),
  25921. name: "Front",
  25922. image: {
  25923. source: "./media/characters/grim/front.svg",
  25924. extra: 622 / 614,
  25925. bottom: 18.1 / 642
  25926. }
  25927. },
  25928. back: {
  25929. height: math.unit(16, "feet"),
  25930. weight: math.unit(1000, "lb"),
  25931. name: "Back",
  25932. image: {
  25933. source: "./media/characters/grim/back.svg",
  25934. extra: 610.6 / 602,
  25935. bottom: 40.8 / 652
  25936. }
  25937. },
  25938. hunched: {
  25939. height: math.unit(9.75, "feet"),
  25940. weight: math.unit(1000, "lb"),
  25941. name: "Hunched",
  25942. image: {
  25943. source: "./media/characters/grim/hunched.svg",
  25944. extra: 304 / 297,
  25945. bottom: 35.4 / 394
  25946. }
  25947. },
  25948. },
  25949. [
  25950. {
  25951. name: "Normal",
  25952. height: math.unit(16, "feet"),
  25953. default: true
  25954. },
  25955. ]
  25956. ))
  25957. characterMakers.push(() => makeCharacter(
  25958. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25959. {
  25960. front: {
  25961. height: math.unit(2.3, "meters"),
  25962. weight: math.unit(300, "lb"),
  25963. name: "Front",
  25964. image: {
  25965. source: "./media/characters/sinja/front-sfw.svg",
  25966. extra: 1393 / 1294,
  25967. bottom: 70 / 1463
  25968. }
  25969. },
  25970. frontNsfw: {
  25971. height: math.unit(2.3, "meters"),
  25972. weight: math.unit(300, "lb"),
  25973. name: "Front (NSFW)",
  25974. image: {
  25975. source: "./media/characters/sinja/front-nsfw.svg",
  25976. extra: 1393 / 1294,
  25977. bottom: 70 / 1463
  25978. }
  25979. },
  25980. back: {
  25981. height: math.unit(2.3, "meters"),
  25982. weight: math.unit(300, "lb"),
  25983. name: "Back",
  25984. image: {
  25985. source: "./media/characters/sinja/back.svg",
  25986. extra: 1393 / 1294,
  25987. bottom: 70 / 1463
  25988. }
  25989. },
  25990. head: {
  25991. height: math.unit(1.771, "feet"),
  25992. name: "Head",
  25993. image: {
  25994. source: "./media/characters/sinja/head.svg"
  25995. }
  25996. },
  25997. slit: {
  25998. height: math.unit(0.8, "feet"),
  25999. name: "Slit",
  26000. image: {
  26001. source: "./media/characters/sinja/slit.svg"
  26002. }
  26003. },
  26004. },
  26005. [
  26006. {
  26007. name: "Normal",
  26008. height: math.unit(2.3, "meters")
  26009. },
  26010. {
  26011. name: "Macro",
  26012. height: math.unit(91, "meters"),
  26013. default: true
  26014. },
  26015. {
  26016. name: "Megamacro",
  26017. height: math.unit(91440, "meters")
  26018. },
  26019. {
  26020. name: "Gigamacro",
  26021. height: math.unit(60960000, "meters")
  26022. },
  26023. {
  26024. name: "Teramacro",
  26025. height: math.unit(9144000000, "meters")
  26026. },
  26027. ]
  26028. ))
  26029. characterMakers.push(() => makeCharacter(
  26030. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26031. {
  26032. front: {
  26033. height: math.unit(1.7, "meters"),
  26034. weight: math.unit(130, "lb"),
  26035. name: "Front",
  26036. image: {
  26037. source: "./media/characters/kyu/front.svg",
  26038. extra: 415 / 395,
  26039. bottom: 5 / 420
  26040. }
  26041. },
  26042. head: {
  26043. height: math.unit(1.75, "feet"),
  26044. name: "Head",
  26045. image: {
  26046. source: "./media/characters/kyu/head.svg"
  26047. }
  26048. },
  26049. foot: {
  26050. height: math.unit(0.81, "feet"),
  26051. name: "Foot",
  26052. image: {
  26053. source: "./media/characters/kyu/foot.svg"
  26054. }
  26055. },
  26056. },
  26057. [
  26058. {
  26059. name: "Normal",
  26060. height: math.unit(1.7, "meters")
  26061. },
  26062. {
  26063. name: "Macro",
  26064. height: math.unit(131, "feet"),
  26065. default: true
  26066. },
  26067. {
  26068. name: "Megamacro",
  26069. height: math.unit(91440, "meters")
  26070. },
  26071. {
  26072. name: "Gigamacro",
  26073. height: math.unit(60960000, "meters")
  26074. },
  26075. {
  26076. name: "Teramacro",
  26077. height: math.unit(9144000000, "meters")
  26078. },
  26079. ]
  26080. ))
  26081. characterMakers.push(() => makeCharacter(
  26082. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26083. {
  26084. front: {
  26085. height: math.unit(7 + 1 / 12, "feet"),
  26086. weight: math.unit(250, "lb"),
  26087. name: "Front",
  26088. image: {
  26089. source: "./media/characters/joey/front.svg",
  26090. extra: 1791 / 1537,
  26091. bottom: 28 / 1816
  26092. }
  26093. },
  26094. },
  26095. [
  26096. {
  26097. name: "Micro",
  26098. height: math.unit(3, "inches")
  26099. },
  26100. {
  26101. name: "Normal",
  26102. height: math.unit(7 + 1 / 12, "feet"),
  26103. default: true
  26104. },
  26105. ]
  26106. ))
  26107. characterMakers.push(() => makeCharacter(
  26108. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26109. {
  26110. front: {
  26111. height: math.unit(165, "cm"),
  26112. weight: math.unit(140, "lb"),
  26113. name: "Front",
  26114. image: {
  26115. source: "./media/characters/sam-evans/front.svg",
  26116. extra: 3417 / 3230,
  26117. bottom: 41.3 / 3417
  26118. }
  26119. },
  26120. frontSixTails: {
  26121. height: math.unit(165, "cm"),
  26122. weight: math.unit(140, "lb"),
  26123. name: "Front-six-tails",
  26124. image: {
  26125. source: "./media/characters/sam-evans/front-six-tails.svg",
  26126. extra: 3417 / 3230,
  26127. bottom: 41.3 / 3417
  26128. }
  26129. },
  26130. back: {
  26131. height: math.unit(165, "cm"),
  26132. weight: math.unit(140, "lb"),
  26133. name: "Back",
  26134. image: {
  26135. source: "./media/characters/sam-evans/back.svg",
  26136. extra: 3227 / 3032,
  26137. bottom: 6.8 / 3234
  26138. }
  26139. },
  26140. face: {
  26141. height: math.unit(0.68, "feet"),
  26142. name: "Face",
  26143. image: {
  26144. source: "./media/characters/sam-evans/face.svg"
  26145. }
  26146. },
  26147. },
  26148. [
  26149. {
  26150. name: "Normal",
  26151. height: math.unit(165, "cm"),
  26152. default: true
  26153. },
  26154. {
  26155. name: "Macro",
  26156. height: math.unit(100, "meters")
  26157. },
  26158. {
  26159. name: "Macro+",
  26160. height: math.unit(800, "meters")
  26161. },
  26162. {
  26163. name: "Macro++",
  26164. height: math.unit(3, "km")
  26165. },
  26166. {
  26167. name: "Macro+++",
  26168. height: math.unit(30, "km")
  26169. },
  26170. ]
  26171. ))
  26172. characterMakers.push(() => makeCharacter(
  26173. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26174. {
  26175. front: {
  26176. height: math.unit(10, "feet"),
  26177. weight: math.unit(750, "lb"),
  26178. name: "Front",
  26179. image: {
  26180. source: "./media/characters/juliet-a/front.svg",
  26181. extra: 1766 / 1720,
  26182. bottom: 43 / 1809
  26183. }
  26184. },
  26185. back: {
  26186. height: math.unit(10, "feet"),
  26187. weight: math.unit(750, "lb"),
  26188. name: "Back",
  26189. image: {
  26190. source: "./media/characters/juliet-a/back.svg",
  26191. extra: 1781 / 1734,
  26192. bottom: 35 / 1810,
  26193. }
  26194. },
  26195. },
  26196. [
  26197. {
  26198. name: "Normal",
  26199. height: math.unit(10, "feet"),
  26200. default: true
  26201. },
  26202. {
  26203. name: "Dragon Form",
  26204. height: math.unit(250, "feet")
  26205. },
  26206. {
  26207. name: "Macro",
  26208. height: math.unit(1000, "feet")
  26209. },
  26210. {
  26211. name: "Megamacro",
  26212. height: math.unit(10000, "feet")
  26213. }
  26214. ]
  26215. ))
  26216. characterMakers.push(() => makeCharacter(
  26217. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26218. {
  26219. regular: {
  26220. height: math.unit(7 + 3 / 12, "feet"),
  26221. weight: math.unit(260, "lb"),
  26222. name: "Regular",
  26223. image: {
  26224. source: "./media/characters/wild/regular.svg",
  26225. extra: 97.45 / 92,
  26226. bottom: 6.8 / 104.3
  26227. }
  26228. },
  26229. biggums: {
  26230. height: math.unit(8 + 6 / 12, "feet"),
  26231. weight: math.unit(425, "lb"),
  26232. name: "Biggums",
  26233. image: {
  26234. source: "./media/characters/wild/biggums.svg",
  26235. extra: 97.45 / 92,
  26236. bottom: 7.5 / 132.34
  26237. }
  26238. },
  26239. mawRegular: {
  26240. height: math.unit(1.24, "feet"),
  26241. name: "Maw (Regular)",
  26242. image: {
  26243. source: "./media/characters/wild/maw.svg"
  26244. }
  26245. },
  26246. mawBiggums: {
  26247. height: math.unit(1.47, "feet"),
  26248. name: "Maw (Biggums)",
  26249. image: {
  26250. source: "./media/characters/wild/maw.svg"
  26251. }
  26252. },
  26253. },
  26254. [
  26255. {
  26256. name: "Normal",
  26257. height: math.unit(7 + 3 / 12, "feet"),
  26258. default: true
  26259. },
  26260. ]
  26261. ))
  26262. characterMakers.push(() => makeCharacter(
  26263. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26264. {
  26265. front: {
  26266. height: math.unit(2.5, "meters"),
  26267. weight: math.unit(200, "kg"),
  26268. name: "Front",
  26269. image: {
  26270. source: "./media/characters/vidar/front.svg",
  26271. extra: 2994 / 2795,
  26272. bottom: 56 / 3061
  26273. }
  26274. },
  26275. back: {
  26276. height: math.unit(2.5, "meters"),
  26277. weight: math.unit(200, "kg"),
  26278. name: "Back",
  26279. image: {
  26280. source: "./media/characters/vidar/back.svg",
  26281. extra: 3131 / 2928,
  26282. bottom: 13.5 / 3141.5
  26283. }
  26284. },
  26285. feral: {
  26286. height: math.unit(2.5, "meters"),
  26287. weight: math.unit(2000, "kg"),
  26288. name: "Feral",
  26289. image: {
  26290. source: "./media/characters/vidar/feral.svg",
  26291. extra: 2790 / 1765,
  26292. bottom: 6 / 2796
  26293. }
  26294. },
  26295. },
  26296. [
  26297. {
  26298. name: "Normal",
  26299. height: math.unit(2.5, "meters"),
  26300. default: true
  26301. },
  26302. {
  26303. name: "Macro",
  26304. height: math.unit(100, "meters")
  26305. },
  26306. ]
  26307. ))
  26308. characterMakers.push(() => makeCharacter(
  26309. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26310. {
  26311. front: {
  26312. height: math.unit(5 + 9 / 12, "feet"),
  26313. weight: math.unit(120, "lb"),
  26314. name: "Front",
  26315. image: {
  26316. source: "./media/characters/ash/front.svg",
  26317. extra: 2189 / 1961,
  26318. bottom: 5.2 / 2194
  26319. }
  26320. },
  26321. },
  26322. [
  26323. {
  26324. name: "Normal",
  26325. height: math.unit(5 + 9 / 12, "feet"),
  26326. default: true
  26327. },
  26328. ]
  26329. ))
  26330. characterMakers.push(() => makeCharacter(
  26331. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26332. {
  26333. front: {
  26334. height: math.unit(9, "feet"),
  26335. weight: math.unit(10000, "lb"),
  26336. name: "Front",
  26337. image: {
  26338. source: "./media/characters/gygabite/front.svg",
  26339. bottom: 31.7 / 537.8,
  26340. extra: 505 / 370
  26341. }
  26342. },
  26343. },
  26344. [
  26345. {
  26346. name: "Normal",
  26347. height: math.unit(9, "feet"),
  26348. default: true
  26349. },
  26350. ]
  26351. ))
  26352. characterMakers.push(() => makeCharacter(
  26353. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26354. {
  26355. front: {
  26356. height: math.unit(12, "feet"),
  26357. weight: math.unit(35000, "lb"),
  26358. name: "Front",
  26359. image: {
  26360. source: "./media/characters/p0tat0/front.svg",
  26361. extra: 1065 / 921,
  26362. bottom: 55.7 / 1121.25
  26363. }
  26364. },
  26365. },
  26366. [
  26367. {
  26368. name: "Normal",
  26369. height: math.unit(12, "feet"),
  26370. default: true
  26371. },
  26372. ]
  26373. ))
  26374. characterMakers.push(() => makeCharacter(
  26375. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26376. {
  26377. side: {
  26378. height: math.unit(6.5, "feet"),
  26379. weight: math.unit(800, "lb"),
  26380. name: "Side",
  26381. image: {
  26382. source: "./media/characters/dusk/side.svg",
  26383. extra: 615 / 373,
  26384. bottom: 53 / 664
  26385. }
  26386. },
  26387. sitting: {
  26388. height: math.unit(7, "feet"),
  26389. weight: math.unit(800, "lb"),
  26390. name: "Sitting",
  26391. image: {
  26392. source: "./media/characters/dusk/sitting.svg",
  26393. extra: 753 / 425,
  26394. bottom: 33 / 774
  26395. }
  26396. },
  26397. head: {
  26398. height: math.unit(6.1, "feet"),
  26399. name: "Head",
  26400. image: {
  26401. source: "./media/characters/dusk/head.svg"
  26402. }
  26403. },
  26404. },
  26405. [
  26406. {
  26407. name: "Normal",
  26408. height: math.unit(7, "feet"),
  26409. default: true
  26410. },
  26411. ]
  26412. ))
  26413. characterMakers.push(() => makeCharacter(
  26414. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26415. {
  26416. front: {
  26417. height: math.unit(15, "feet"),
  26418. weight: math.unit(7000, "lb"),
  26419. name: "Front",
  26420. image: {
  26421. source: "./media/characters/jay-direwolf/front.svg",
  26422. extra: 1810 / 1732,
  26423. bottom: 66 / 1892
  26424. }
  26425. },
  26426. },
  26427. [
  26428. {
  26429. name: "Normal",
  26430. height: math.unit(15, "feet"),
  26431. default: true
  26432. },
  26433. ]
  26434. ))
  26435. characterMakers.push(() => makeCharacter(
  26436. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26437. {
  26438. front: {
  26439. height: math.unit(4 + 9 / 12, "feet"),
  26440. weight: math.unit(130, "lb"),
  26441. name: "Front",
  26442. image: {
  26443. source: "./media/characters/anchovie/front.svg",
  26444. extra: 382 / 350,
  26445. bottom: 25 / 409
  26446. }
  26447. },
  26448. back: {
  26449. height: math.unit(4 + 9 / 12, "feet"),
  26450. weight: math.unit(130, "lb"),
  26451. name: "Back",
  26452. image: {
  26453. source: "./media/characters/anchovie/back.svg",
  26454. extra: 385 / 352,
  26455. bottom: 16.6 / 402
  26456. }
  26457. },
  26458. frontDressed: {
  26459. height: math.unit(4 + 9 / 12, "feet"),
  26460. weight: math.unit(130, "lb"),
  26461. name: "Front (Dressed)",
  26462. image: {
  26463. source: "./media/characters/anchovie/front-dressed.svg",
  26464. extra: 382 / 350,
  26465. bottom: 25 / 409
  26466. }
  26467. },
  26468. backDressed: {
  26469. height: math.unit(4 + 9 / 12, "feet"),
  26470. weight: math.unit(130, "lb"),
  26471. name: "Back (Dressed)",
  26472. image: {
  26473. source: "./media/characters/anchovie/back-dressed.svg",
  26474. extra: 385 / 352,
  26475. bottom: 16.6 / 402
  26476. }
  26477. },
  26478. },
  26479. [
  26480. {
  26481. name: "Micro",
  26482. height: math.unit(6.4, "inches")
  26483. },
  26484. {
  26485. name: "Normal",
  26486. height: math.unit(4 + 9 / 12, "feet"),
  26487. default: true
  26488. },
  26489. ]
  26490. ))
  26491. characterMakers.push(() => makeCharacter(
  26492. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26493. {
  26494. front: {
  26495. height: math.unit(2, "meters"),
  26496. weight: math.unit(180, "lb"),
  26497. name: "Front",
  26498. image: {
  26499. source: "./media/characters/acidrenamon/front.svg",
  26500. extra: 987 / 890,
  26501. bottom: 22.8 / 1009
  26502. }
  26503. },
  26504. back: {
  26505. height: math.unit(2, "meters"),
  26506. weight: math.unit(180, "lb"),
  26507. name: "Back",
  26508. image: {
  26509. source: "./media/characters/acidrenamon/back.svg",
  26510. extra: 983 / 891,
  26511. bottom: 8.4 / 992
  26512. }
  26513. },
  26514. head: {
  26515. height: math.unit(1.92, "feet"),
  26516. name: "Head",
  26517. image: {
  26518. source: "./media/characters/acidrenamon/head.svg"
  26519. }
  26520. },
  26521. rump: {
  26522. height: math.unit(1.72, "feet"),
  26523. name: "Rump",
  26524. image: {
  26525. source: "./media/characters/acidrenamon/rump.svg"
  26526. }
  26527. },
  26528. tail: {
  26529. height: math.unit(4.2, "feet"),
  26530. name: "Tail",
  26531. image: {
  26532. source: "./media/characters/acidrenamon/tail.svg"
  26533. }
  26534. },
  26535. },
  26536. [
  26537. {
  26538. name: "Normal",
  26539. height: math.unit(2, "meters"),
  26540. default: true
  26541. },
  26542. {
  26543. name: "Minimacro",
  26544. height: math.unit(7, "meters")
  26545. },
  26546. {
  26547. name: "Macro",
  26548. height: math.unit(200, "meters")
  26549. },
  26550. {
  26551. name: "Gigamacro",
  26552. height: math.unit(0.2, "earths")
  26553. },
  26554. ]
  26555. ))
  26556. characterMakers.push(() => makeCharacter(
  26557. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26558. {
  26559. front: {
  26560. height: math.unit(6, "feet"),
  26561. weight: math.unit(150, "lb"),
  26562. name: "Front",
  26563. image: {
  26564. source: "./media/characters/kenzie-lee/front.svg",
  26565. extra: 1525 / 1465,
  26566. bottom: 45 / 1570
  26567. }
  26568. },
  26569. side: {
  26570. height: math.unit(6, "feet"),
  26571. weight: math.unit(150, "lb"),
  26572. name: "Side",
  26573. image: {
  26574. source: "./media/characters/kenzie-lee/side.svg",
  26575. extra: 5505 / 5383,
  26576. bottom: 60 / 5573
  26577. }
  26578. },
  26579. },
  26580. [
  26581. {
  26582. name: "Normal",
  26583. height: math.unit(152, "feet"),
  26584. default: true
  26585. },
  26586. {
  26587. name: "Megamacro",
  26588. height: math.unit(7, "miles")
  26589. },
  26590. {
  26591. name: "Gigamacro",
  26592. height: math.unit(8000, "miles")
  26593. },
  26594. ]
  26595. ))
  26596. characterMakers.push(() => makeCharacter(
  26597. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26598. {
  26599. side: {
  26600. height: math.unit(6, "feet"),
  26601. weight: math.unit(150, "lb"),
  26602. name: "Side",
  26603. image: {
  26604. source: "./media/characters/withers/side.svg",
  26605. extra: 1830 / 1728,
  26606. bottom: 96 / 1927
  26607. }
  26608. },
  26609. front: {
  26610. height: math.unit(6, "feet"),
  26611. weight: math.unit(150, "lb"),
  26612. name: "Front",
  26613. image: {
  26614. source: "./media/characters/withers/front.svg",
  26615. extra: 1514 / 1438,
  26616. bottom: 118 / 1632
  26617. }
  26618. },
  26619. },
  26620. [
  26621. {
  26622. name: "Macro",
  26623. height: math.unit(168, "feet"),
  26624. default: true
  26625. },
  26626. {
  26627. name: "Megamacro",
  26628. height: math.unit(15, "miles")
  26629. }
  26630. ]
  26631. ))
  26632. characterMakers.push(() => makeCharacter(
  26633. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26634. {
  26635. front: {
  26636. height: math.unit(6 + 7 / 12, "feet"),
  26637. weight: math.unit(250, "lb"),
  26638. name: "Front",
  26639. image: {
  26640. source: "./media/characters/nemoskii/front.svg",
  26641. extra: 2270 / 1734,
  26642. bottom: 86 / 2354
  26643. }
  26644. },
  26645. back: {
  26646. height: math.unit(6 + 7 / 12, "feet"),
  26647. weight: math.unit(250, "lb"),
  26648. name: "Back",
  26649. image: {
  26650. source: "./media/characters/nemoskii/back.svg",
  26651. extra: 1845 / 1788,
  26652. bottom: 10.5 / 1852
  26653. }
  26654. },
  26655. head: {
  26656. height: math.unit(1.31, "feet"),
  26657. name: "Head",
  26658. image: {
  26659. source: "./media/characters/nemoskii/head.svg"
  26660. }
  26661. },
  26662. },
  26663. [
  26664. {
  26665. name: "Normal",
  26666. height: math.unit(6 + 7 / 12, "feet"),
  26667. default: true
  26668. },
  26669. ]
  26670. ))
  26671. characterMakers.push(() => makeCharacter(
  26672. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26673. {
  26674. front: {
  26675. height: math.unit(1, "mile"),
  26676. weight: math.unit(265261.9, "lb"),
  26677. name: "Front",
  26678. image: {
  26679. source: "./media/characters/shui/front.svg",
  26680. extra: 1633 / 1564,
  26681. bottom: 91.5 / 1726
  26682. }
  26683. },
  26684. },
  26685. [
  26686. {
  26687. name: "Macro",
  26688. height: math.unit(1, "mile"),
  26689. default: true
  26690. },
  26691. ]
  26692. ))
  26693. characterMakers.push(() => makeCharacter(
  26694. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26695. {
  26696. front: {
  26697. height: math.unit(12 + 6 / 12, "feet"),
  26698. weight: math.unit(1342, "lb"),
  26699. name: "Front",
  26700. image: {
  26701. source: "./media/characters/arokh-takakura/front.svg",
  26702. extra: 1089 / 1043,
  26703. bottom: 77.4 / 1176.7
  26704. }
  26705. },
  26706. back: {
  26707. height: math.unit(12 + 6 / 12, "feet"),
  26708. weight: math.unit(1342, "lb"),
  26709. name: "Back",
  26710. image: {
  26711. source: "./media/characters/arokh-takakura/back.svg",
  26712. extra: 1046 / 1019,
  26713. bottom: 102 / 1150
  26714. }
  26715. },
  26716. },
  26717. [
  26718. {
  26719. name: "Big",
  26720. height: math.unit(12 + 6 / 12, "feet"),
  26721. default: true
  26722. },
  26723. ]
  26724. ))
  26725. characterMakers.push(() => makeCharacter(
  26726. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26727. {
  26728. front: {
  26729. height: math.unit(5 + 6 / 12, "feet"),
  26730. weight: math.unit(150, "lb"),
  26731. name: "Front",
  26732. image: {
  26733. source: "./media/characters/theo/front.svg",
  26734. extra: 1184 / 1131,
  26735. bottom: 7.4 / 1191
  26736. }
  26737. },
  26738. },
  26739. [
  26740. {
  26741. name: "Micro",
  26742. height: math.unit(5, "inches")
  26743. },
  26744. {
  26745. name: "Normal",
  26746. height: math.unit(5 + 6 / 12, "feet"),
  26747. default: true
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26753. {
  26754. front: {
  26755. height: math.unit(5 + 9 / 12, "feet"),
  26756. weight: math.unit(130, "lb"),
  26757. name: "Front",
  26758. image: {
  26759. source: "./media/characters/cecelia-swift/front.svg",
  26760. extra: 502 / 484,
  26761. bottom: 23 / 523
  26762. }
  26763. },
  26764. back: {
  26765. height: math.unit(5 + 9 / 12, "feet"),
  26766. weight: math.unit(130, "lb"),
  26767. name: "Back",
  26768. image: {
  26769. source: "./media/characters/cecelia-swift/back.svg",
  26770. extra: 499 / 485,
  26771. bottom: 12 / 511
  26772. }
  26773. },
  26774. head: {
  26775. height: math.unit(0.90, "feet"),
  26776. name: "Head",
  26777. image: {
  26778. source: "./media/characters/cecelia-swift/head.svg"
  26779. }
  26780. },
  26781. rump: {
  26782. height: math.unit(1.75, "feet"),
  26783. name: "Rump",
  26784. image: {
  26785. source: "./media/characters/cecelia-swift/rump.svg"
  26786. }
  26787. },
  26788. },
  26789. [
  26790. {
  26791. name: "Normal",
  26792. height: math.unit(5 + 9 / 12, "feet"),
  26793. default: true
  26794. },
  26795. {
  26796. name: "Big",
  26797. height: math.unit(50, "feet")
  26798. },
  26799. {
  26800. name: "Macro",
  26801. height: math.unit(100, "feet")
  26802. },
  26803. {
  26804. name: "Macro+",
  26805. height: math.unit(500, "feet")
  26806. },
  26807. {
  26808. name: "Macro++",
  26809. height: math.unit(1000, "feet")
  26810. },
  26811. ]
  26812. ))
  26813. characterMakers.push(() => makeCharacter(
  26814. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26815. {
  26816. front: {
  26817. height: math.unit(6, "feet"),
  26818. weight: math.unit(150, "lb"),
  26819. name: "Front",
  26820. image: {
  26821. source: "./media/characters/kaunan/front.svg",
  26822. extra: 2890 / 2523,
  26823. bottom: 49 / 2939
  26824. }
  26825. },
  26826. },
  26827. [
  26828. {
  26829. name: "Macro",
  26830. height: math.unit(150, "feet"),
  26831. default: true
  26832. },
  26833. ]
  26834. ))
  26835. characterMakers.push(() => makeCharacter(
  26836. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26837. {
  26838. front: {
  26839. height: math.unit(175, "cm"),
  26840. weight: math.unit(60, "kg"),
  26841. name: "Front",
  26842. image: {
  26843. source: "./media/characters/fei/front.svg",
  26844. extra: 2581 / 2400,
  26845. bottom: 82.2 / 2663
  26846. }
  26847. },
  26848. },
  26849. [
  26850. {
  26851. name: "Mortal",
  26852. height: math.unit(175, "cm")
  26853. },
  26854. {
  26855. name: "Normal",
  26856. height: math.unit(3500, "m"),
  26857. default: true
  26858. },
  26859. {
  26860. name: "Stroll",
  26861. height: math.unit(17.5, "km")
  26862. },
  26863. {
  26864. name: "Showoff",
  26865. height: math.unit(175, "km")
  26866. },
  26867. ]
  26868. ))
  26869. characterMakers.push(() => makeCharacter(
  26870. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26871. {
  26872. front: {
  26873. height: math.unit(7, "feet"),
  26874. weight: math.unit(1000, "kg"),
  26875. name: "Front",
  26876. image: {
  26877. source: "./media/characters/edrax/front.svg",
  26878. extra: 2838 / 2550,
  26879. bottom: 130 / 2968
  26880. }
  26881. },
  26882. },
  26883. [
  26884. {
  26885. name: "Small",
  26886. height: math.unit(7, "feet")
  26887. },
  26888. {
  26889. name: "Normal",
  26890. height: math.unit(1500, "meters")
  26891. },
  26892. {
  26893. name: "Mega",
  26894. height: math.unit(12000000, "km"),
  26895. default: true
  26896. },
  26897. {
  26898. name: "Megamacro",
  26899. height: math.unit(10600000, "lightyears")
  26900. },
  26901. {
  26902. name: "Hypermacro",
  26903. height: math.unit(256, "yottameters")
  26904. },
  26905. ]
  26906. ))
  26907. characterMakers.push(() => makeCharacter(
  26908. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26909. {
  26910. front: {
  26911. height: math.unit(10, "feet"),
  26912. weight: math.unit(750, "lb"),
  26913. name: "Front",
  26914. image: {
  26915. source: "./media/characters/clove/front.svg",
  26916. extra: 2031 / 1860,
  26917. bottom: 47.8 / 2080
  26918. }
  26919. },
  26920. back: {
  26921. height: math.unit(10, "feet"),
  26922. weight: math.unit(750, "lb"),
  26923. name: "Back",
  26924. image: {
  26925. source: "./media/characters/clove/back.svg",
  26926. extra: 2025 / 1859,
  26927. bottom: 46 / 2071
  26928. }
  26929. },
  26930. },
  26931. [
  26932. {
  26933. name: "Normal",
  26934. height: math.unit(10, "feet")
  26935. },
  26936. ]
  26937. ))
  26938. characterMakers.push(() => makeCharacter(
  26939. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26940. {
  26941. front: {
  26942. height: math.unit(4, "feet"),
  26943. weight: math.unit(50, "lb"),
  26944. name: "Front",
  26945. image: {
  26946. source: "./media/characters/alex-rabbit/front.svg",
  26947. extra: 507 / 458,
  26948. bottom: 18.5 / 527
  26949. }
  26950. },
  26951. back: {
  26952. height: math.unit(4, "feet"),
  26953. weight: math.unit(50, "lb"),
  26954. name: "Back",
  26955. image: {
  26956. source: "./media/characters/alex-rabbit/back.svg",
  26957. extra: 502 / 460,
  26958. bottom: 18.9 / 521
  26959. }
  26960. },
  26961. },
  26962. [
  26963. {
  26964. name: "Normal",
  26965. height: math.unit(4, "feet"),
  26966. default: true
  26967. },
  26968. ]
  26969. ))
  26970. characterMakers.push(() => makeCharacter(
  26971. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26972. {
  26973. front: {
  26974. height: math.unit(1 + 3 / 12, "feet"),
  26975. weight: math.unit(80, "lb"),
  26976. name: "Front",
  26977. image: {
  26978. source: "./media/characters/zander-rose/front.svg",
  26979. extra: 916 / 797,
  26980. bottom: 17 / 933
  26981. }
  26982. },
  26983. back: {
  26984. height: math.unit(1 + 3 / 12, "feet"),
  26985. weight: math.unit(80, "lb"),
  26986. name: "Back",
  26987. image: {
  26988. source: "./media/characters/zander-rose/back.svg",
  26989. extra: 903 / 779,
  26990. bottom: 31 / 934
  26991. }
  26992. },
  26993. },
  26994. [
  26995. {
  26996. name: "Normal",
  26997. height: math.unit(1 + 3 / 12, "feet"),
  26998. default: true
  26999. },
  27000. ]
  27001. ))
  27002. characterMakers.push(() => makeCharacter(
  27003. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27004. {
  27005. anthro: {
  27006. height: math.unit(6, "feet"),
  27007. weight: math.unit(150, "lb"),
  27008. name: "Anthro",
  27009. image: {
  27010. source: "./media/characters/razz/anthro.svg",
  27011. extra: 1437 / 1343,
  27012. bottom: 48 / 1485
  27013. }
  27014. },
  27015. feral: {
  27016. height: math.unit(6, "feet"),
  27017. weight: math.unit(150, "lb"),
  27018. name: "Feral",
  27019. image: {
  27020. source: "./media/characters/razz/feral.svg",
  27021. extra: 2569 / 1385,
  27022. bottom: 95 / 2664
  27023. }
  27024. },
  27025. },
  27026. [
  27027. {
  27028. name: "Normal",
  27029. height: math.unit(6, "feet"),
  27030. default: true
  27031. },
  27032. ]
  27033. ))
  27034. characterMakers.push(() => makeCharacter(
  27035. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27036. {
  27037. front: {
  27038. height: math.unit(9 + 4 / 12, "feet"),
  27039. weight: math.unit(500, "lb"),
  27040. name: "Front",
  27041. image: {
  27042. source: "./media/characters/morrigan/front.svg",
  27043. extra: 2707 / 2579,
  27044. bottom: 156 / 2863
  27045. }
  27046. },
  27047. },
  27048. [
  27049. {
  27050. name: "Normal",
  27051. height: math.unit(9 + 4 / 12, "feet"),
  27052. default: true
  27053. },
  27054. ]
  27055. ))
  27056. characterMakers.push(() => makeCharacter(
  27057. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27058. {
  27059. front: {
  27060. height: math.unit(5, "stories"),
  27061. weight: math.unit(4000, "lb"),
  27062. name: "Front",
  27063. image: {
  27064. source: "./media/characters/jenene/front.svg",
  27065. extra: 1780 / 1710,
  27066. bottom: 57 / 1837
  27067. }
  27068. },
  27069. },
  27070. [
  27071. {
  27072. name: "Normal",
  27073. height: math.unit(5, "stories"),
  27074. default: true
  27075. },
  27076. ]
  27077. ))
  27078. characterMakers.push(() => makeCharacter(
  27079. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27080. {
  27081. front: {
  27082. height: math.unit(6, "feet"),
  27083. weight: math.unit(150, "lb"),
  27084. name: "Front",
  27085. image: {
  27086. source: "./media/characters/vix-archaser/front.svg",
  27087. extra: 2767 / 2562,
  27088. bottom: 36 / 2803
  27089. }
  27090. },
  27091. },
  27092. [
  27093. {
  27094. name: "Micro",
  27095. height: math.unit(1, "foot")
  27096. },
  27097. {
  27098. name: "Normal",
  27099. height: math.unit(6 + 5 / 12, "feet")
  27100. },
  27101. {
  27102. name: "Minimacro",
  27103. height: math.unit(500, "feet")
  27104. },
  27105. {
  27106. name: "Macro",
  27107. height: math.unit(4, "miles")
  27108. },
  27109. {
  27110. name: "Megamacro",
  27111. height: math.unit(250, "miles"),
  27112. default: true
  27113. },
  27114. {
  27115. name: "Gigamacro",
  27116. height: math.unit(1, "universe")
  27117. },
  27118. {
  27119. name: "Endgame",
  27120. height: math.unit(100, "multiverses")
  27121. }
  27122. ]
  27123. ))
  27124. characterMakers.push(() => makeCharacter(
  27125. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27126. {
  27127. taurSfw: {
  27128. height: math.unit(10, "meters"),
  27129. weight: math.unit(17500, "kg"),
  27130. name: "Taur",
  27131. image: {
  27132. source: "./media/characters/faey/taur-sfw.svg",
  27133. extra: 1200 / 968,
  27134. bottom: 41 / 1241
  27135. }
  27136. },
  27137. chestmaw: {
  27138. height: math.unit(2.01, "meters"),
  27139. name: "Chestmaw",
  27140. image: {
  27141. source: "./media/characters/faey/chestmaw.svg"
  27142. }
  27143. },
  27144. foot: {
  27145. height: math.unit(2.43, "meters"),
  27146. name: "Foot",
  27147. image: {
  27148. source: "./media/characters/faey/foot.svg"
  27149. }
  27150. },
  27151. jaws: {
  27152. height: math.unit(1.66, "meters"),
  27153. name: "Jaws",
  27154. image: {
  27155. source: "./media/characters/faey/jaws.svg"
  27156. }
  27157. },
  27158. tongues: {
  27159. height: math.unit(2.01, "meters"),
  27160. name: "Tongues",
  27161. image: {
  27162. source: "./media/characters/faey/tongues.svg"
  27163. }
  27164. },
  27165. },
  27166. [
  27167. {
  27168. name: "Small",
  27169. height: math.unit(10, "meters"),
  27170. default: true
  27171. },
  27172. {
  27173. name: "Big",
  27174. height: math.unit(500000, "km")
  27175. },
  27176. ]
  27177. ))
  27178. characterMakers.push(() => makeCharacter(
  27179. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27180. {
  27181. front: {
  27182. height: math.unit(7, "feet"),
  27183. weight: math.unit(275, "lb"),
  27184. name: "Front",
  27185. image: {
  27186. source: "./media/characters/roku/front.svg",
  27187. extra: 903 / 878,
  27188. bottom: 37 / 940
  27189. }
  27190. },
  27191. },
  27192. [
  27193. {
  27194. name: "Normal",
  27195. height: math.unit(7, "feet"),
  27196. default: true
  27197. },
  27198. {
  27199. name: "Macro",
  27200. height: math.unit(500, "feet")
  27201. },
  27202. {
  27203. name: "Megamacro",
  27204. height: math.unit(200, "miles")
  27205. },
  27206. ]
  27207. ))
  27208. characterMakers.push(() => makeCharacter(
  27209. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27210. {
  27211. front: {
  27212. height: math.unit(6 + 2 / 12, "feet"),
  27213. weight: math.unit(150, "lb"),
  27214. name: "Front",
  27215. image: {
  27216. source: "./media/characters/lira/front.svg",
  27217. extra: 1727 / 1605,
  27218. bottom: 26 / 1753
  27219. }
  27220. },
  27221. back: {
  27222. height: math.unit(6 + 2 / 12, "feet"),
  27223. weight: math.unit(150, "lb"),
  27224. name: "Back",
  27225. image: {
  27226. source: "./media/characters/lira/back.svg",
  27227. extra: 1713 / 159,
  27228. bottom: 20 / 1733
  27229. }
  27230. },
  27231. hand: {
  27232. height: math.unit(0.75, "feet"),
  27233. name: "Hand",
  27234. image: {
  27235. source: "./media/characters/lira/hand.svg"
  27236. }
  27237. },
  27238. maw: {
  27239. height: math.unit(0.65, "feet"),
  27240. name: "Maw",
  27241. image: {
  27242. source: "./media/characters/lira/maw.svg"
  27243. }
  27244. },
  27245. pawDigi: {
  27246. height: math.unit(1.6, "feet"),
  27247. name: "Paw Digi",
  27248. image: {
  27249. source: "./media/characters/lira/paw-digi.svg"
  27250. }
  27251. },
  27252. pawPlanti: {
  27253. height: math.unit(1.4, "feet"),
  27254. name: "Paw Planti",
  27255. image: {
  27256. source: "./media/characters/lira/paw-planti.svg"
  27257. }
  27258. },
  27259. },
  27260. [
  27261. {
  27262. name: "Normal",
  27263. height: math.unit(6 + 2 / 12, "feet"),
  27264. default: true
  27265. },
  27266. {
  27267. name: "Macro",
  27268. height: math.unit(100, "feet")
  27269. },
  27270. {
  27271. name: "Macro²",
  27272. height: math.unit(1600, "feet")
  27273. },
  27274. {
  27275. name: "Planetary",
  27276. height: math.unit(20, "earths")
  27277. },
  27278. ]
  27279. ))
  27280. characterMakers.push(() => makeCharacter(
  27281. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27282. {
  27283. front: {
  27284. height: math.unit(6, "feet"),
  27285. weight: math.unit(150, "lb"),
  27286. name: "Front",
  27287. image: {
  27288. source: "./media/characters/hadjet/front.svg",
  27289. extra: 1480 / 1346,
  27290. bottom: 26 / 1506
  27291. }
  27292. },
  27293. frontNsfw: {
  27294. height: math.unit(6, "feet"),
  27295. weight: math.unit(150, "lb"),
  27296. name: "Front (NSFW)",
  27297. image: {
  27298. source: "./media/characters/hadjet/front-nsfw.svg",
  27299. extra: 1440 / 1358,
  27300. bottom: 52 / 1492
  27301. }
  27302. },
  27303. },
  27304. [
  27305. {
  27306. name: "Macro",
  27307. height: math.unit(10, "stories"),
  27308. default: true
  27309. },
  27310. {
  27311. name: "Megamacro",
  27312. height: math.unit(1.5, "miles")
  27313. },
  27314. {
  27315. name: "Megamacro+",
  27316. height: math.unit(5, "miles")
  27317. },
  27318. ]
  27319. ))
  27320. characterMakers.push(() => makeCharacter(
  27321. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27322. {
  27323. side: {
  27324. height: math.unit(106, "feet"),
  27325. weight: math.unit(500, "tonnes"),
  27326. name: "Side",
  27327. image: {
  27328. source: "./media/characters/kodran/side.svg",
  27329. extra: 553 / 480,
  27330. bottom: 33 / 586
  27331. }
  27332. },
  27333. front: {
  27334. height: math.unit(132, "feet"),
  27335. weight: math.unit(500, "tonnes"),
  27336. name: "Front",
  27337. image: {
  27338. source: "./media/characters/kodran/front.svg",
  27339. extra: 667 / 643,
  27340. bottom: 42 / 709
  27341. }
  27342. },
  27343. flying: {
  27344. height: math.unit(350, "feet"),
  27345. weight: math.unit(500, "tonnes"),
  27346. name: "Flying",
  27347. image: {
  27348. source: "./media/characters/kodran/flying.svg"
  27349. }
  27350. },
  27351. foot: {
  27352. height: math.unit(33, "feet"),
  27353. name: "Foot",
  27354. image: {
  27355. source: "./media/characters/kodran/foot.svg"
  27356. }
  27357. },
  27358. footFront: {
  27359. height: math.unit(19, "feet"),
  27360. name: "Foot (Front)",
  27361. image: {
  27362. source: "./media/characters/kodran/foot-front.svg",
  27363. extra: 261 / 261,
  27364. bottom: 91 / 352
  27365. }
  27366. },
  27367. headFront: {
  27368. height: math.unit(53, "feet"),
  27369. name: "Head (Front)",
  27370. image: {
  27371. source: "./media/characters/kodran/head-front.svg"
  27372. }
  27373. },
  27374. headSide: {
  27375. height: math.unit(65, "feet"),
  27376. name: "Head (Side)",
  27377. image: {
  27378. source: "./media/characters/kodran/head-side.svg"
  27379. }
  27380. },
  27381. throat: {
  27382. height: math.unit(79, "feet"),
  27383. name: "Throat",
  27384. image: {
  27385. source: "./media/characters/kodran/throat.svg"
  27386. }
  27387. },
  27388. },
  27389. [
  27390. {
  27391. name: "Large",
  27392. height: math.unit(106, "feet"),
  27393. default: true
  27394. },
  27395. ]
  27396. ))
  27397. characterMakers.push(() => makeCharacter(
  27398. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27399. {
  27400. side: {
  27401. height: math.unit(11, "feet"),
  27402. weight: math.unit(150, "lb"),
  27403. name: "Side",
  27404. image: {
  27405. source: "./media/characters/pyxaron/side.svg",
  27406. extra: 305 / 195,
  27407. bottom: 17 / 322
  27408. }
  27409. },
  27410. },
  27411. [
  27412. {
  27413. name: "Normal",
  27414. height: math.unit(11, "feet")
  27415. },
  27416. ]
  27417. ))
  27418. characterMakers.push(() => makeCharacter(
  27419. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27420. {
  27421. front: {
  27422. height: math.unit(6, "feet"),
  27423. weight: math.unit(150, "lb"),
  27424. name: "Front",
  27425. image: {
  27426. source: "./media/characters/meep/front.svg",
  27427. extra: 88 / 80,
  27428. bottom: 6 / 94
  27429. }
  27430. },
  27431. },
  27432. [
  27433. {
  27434. name: "Fun Sized",
  27435. height: math.unit(2, "inches"),
  27436. default: true
  27437. },
  27438. {
  27439. name: "Friend Sized",
  27440. height: math.unit(8, "inches")
  27441. },
  27442. ]
  27443. ))
  27444. characterMakers.push(() => makeCharacter(
  27445. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27446. {
  27447. front: {
  27448. height: math.unit(15, "feet"),
  27449. weight: math.unit(2500, "lb"),
  27450. name: "Front",
  27451. image: {
  27452. source: "./media/characters/holly-rabbit/front.svg",
  27453. extra: 1433 / 1233,
  27454. bottom: 125 / 1558
  27455. }
  27456. },
  27457. dick: {
  27458. height: math.unit(4.6, "feet"),
  27459. name: "Dick",
  27460. image: {
  27461. source: "./media/characters/holly-rabbit/dick.svg"
  27462. }
  27463. },
  27464. },
  27465. [
  27466. {
  27467. name: "Normal",
  27468. height: math.unit(15, "feet"),
  27469. default: true
  27470. },
  27471. {
  27472. name: "Macro",
  27473. height: math.unit(250, "feet")
  27474. },
  27475. {
  27476. name: "Macro+",
  27477. height: math.unit(2500, "feet")
  27478. },
  27479. ]
  27480. ))
  27481. characterMakers.push(() => makeCharacter(
  27482. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27483. {
  27484. front: {
  27485. height: math.unit(3.02, "meters"),
  27486. weight: math.unit(500, "kg"),
  27487. name: "Front",
  27488. image: {
  27489. source: "./media/characters/drena/front.svg",
  27490. extra: 282 / 243,
  27491. bottom: 8 / 290
  27492. }
  27493. },
  27494. side: {
  27495. height: math.unit(3.02, "meters"),
  27496. weight: math.unit(500, "kg"),
  27497. name: "Side",
  27498. image: {
  27499. source: "./media/characters/drena/side.svg",
  27500. extra: 280 / 245,
  27501. bottom: 10 / 290
  27502. }
  27503. },
  27504. back: {
  27505. height: math.unit(3.02, "meters"),
  27506. weight: math.unit(500, "kg"),
  27507. name: "Back",
  27508. image: {
  27509. source: "./media/characters/drena/back.svg",
  27510. extra: 278 / 243,
  27511. bottom: 2 / 280
  27512. }
  27513. },
  27514. foot: {
  27515. height: math.unit(0.75, "meters"),
  27516. name: "Foot",
  27517. image: {
  27518. source: "./media/characters/drena/foot.svg"
  27519. }
  27520. },
  27521. maw: {
  27522. height: math.unit(0.82, "meters"),
  27523. name: "Maw",
  27524. image: {
  27525. source: "./media/characters/drena/maw.svg"
  27526. }
  27527. },
  27528. rump: {
  27529. height: math.unit(0.93, "meters"),
  27530. name: "Rump",
  27531. image: {
  27532. source: "./media/characters/drena/rump.svg"
  27533. }
  27534. },
  27535. },
  27536. [
  27537. {
  27538. name: "Normal",
  27539. height: math.unit(3.02, "meters"),
  27540. default: true
  27541. },
  27542. ]
  27543. ))
  27544. characterMakers.push(() => makeCharacter(
  27545. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27546. {
  27547. front: {
  27548. height: math.unit(6 + 4 / 12, "feet"),
  27549. weight: math.unit(250, "lb"),
  27550. name: "Front",
  27551. image: {
  27552. source: "./media/characters/remmyzilla/front.svg",
  27553. extra: 4033 / 3588,
  27554. bottom: 123 / 4156
  27555. }
  27556. },
  27557. back: {
  27558. height: math.unit(6 + 4 / 12, "feet"),
  27559. weight: math.unit(250, "lb"),
  27560. name: "Back",
  27561. image: {
  27562. source: "./media/characters/remmyzilla/back.svg",
  27563. extra: 2687 / 2555,
  27564. bottom: 48 / 2735
  27565. }
  27566. },
  27567. frontFancy: {
  27568. height: math.unit(6 + 4 / 12, "feet"),
  27569. weight: math.unit(250, "lb"),
  27570. name: "Front (Fancy)",
  27571. image: {
  27572. source: "./media/characters/remmyzilla/front-fancy.svg",
  27573. extra: 4119 / 3419,
  27574. bottom: 237 / 4356
  27575. }
  27576. },
  27577. paw: {
  27578. height: math.unit(1.73, "feet"),
  27579. name: "Paw",
  27580. image: {
  27581. source: "./media/characters/remmyzilla/paw.svg"
  27582. }
  27583. },
  27584. maw: {
  27585. height: math.unit(1.73, "feet"),
  27586. name: "Maw",
  27587. image: {
  27588. source: "./media/characters/remmyzilla/maw.svg"
  27589. }
  27590. },
  27591. },
  27592. [
  27593. {
  27594. name: "Normal",
  27595. height: math.unit(6 + 4 / 12, "feet")
  27596. },
  27597. {
  27598. name: "Minimacro",
  27599. height: math.unit(12 + 8 / 12, "feet")
  27600. },
  27601. {
  27602. name: "Normal",
  27603. height: math.unit(640, "feet"),
  27604. default: true
  27605. },
  27606. {
  27607. name: "Megamacro",
  27608. height: math.unit(6400, "feet")
  27609. },
  27610. {
  27611. name: "Gigamacro",
  27612. height: math.unit(64000, "miles")
  27613. },
  27614. ]
  27615. ))
  27616. characterMakers.push(() => makeCharacter(
  27617. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27618. {
  27619. front: {
  27620. height: math.unit(2.5, "meters"),
  27621. weight: math.unit(300, "lb"),
  27622. name: "Front",
  27623. image: {
  27624. source: "./media/characters/lawrence/front.svg",
  27625. extra: 357 / 335,
  27626. bottom: 30 / 387
  27627. }
  27628. },
  27629. back: {
  27630. height: math.unit(2.5, "meters"),
  27631. weight: math.unit(300, "lb"),
  27632. name: "Back",
  27633. image: {
  27634. source: "./media/characters/lawrence/back.svg",
  27635. extra: 357 / 338,
  27636. bottom: 16 / 373
  27637. }
  27638. },
  27639. head: {
  27640. height: math.unit(0.9, "meter"),
  27641. name: "Head",
  27642. image: {
  27643. source: "./media/characters/lawrence/head.svg"
  27644. }
  27645. },
  27646. maw: {
  27647. height: math.unit(0.7, "meter"),
  27648. name: "Maw",
  27649. image: {
  27650. source: "./media/characters/lawrence/maw.svg"
  27651. }
  27652. },
  27653. footBottom: {
  27654. height: math.unit(0.5, "meter"),
  27655. name: "Foot (Bottom)",
  27656. image: {
  27657. source: "./media/characters/lawrence/foot-bottom.svg"
  27658. }
  27659. },
  27660. footTop: {
  27661. height: math.unit(0.5, "meter"),
  27662. name: "Foot (Top)",
  27663. image: {
  27664. source: "./media/characters/lawrence/foot-top.svg"
  27665. }
  27666. },
  27667. },
  27668. [
  27669. {
  27670. name: "Normal",
  27671. height: math.unit(2.5, "meters"),
  27672. default: true
  27673. },
  27674. {
  27675. name: "Macro",
  27676. height: math.unit(95, "meters")
  27677. },
  27678. {
  27679. name: "Megamacro",
  27680. height: math.unit(150, "km")
  27681. },
  27682. ]
  27683. ))
  27684. characterMakers.push(() => makeCharacter(
  27685. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27686. {
  27687. front: {
  27688. height: math.unit(4.2, "meters"),
  27689. name: "Front",
  27690. image: {
  27691. source: "./media/characters/sydney/front.svg",
  27692. extra: 1323 / 1277,
  27693. bottom: 111 / 1434
  27694. }
  27695. },
  27696. },
  27697. [
  27698. {
  27699. name: "Normal",
  27700. height: math.unit(4.2, "meters")
  27701. },
  27702. ]
  27703. ))
  27704. characterMakers.push(() => makeCharacter(
  27705. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27706. {
  27707. back: {
  27708. height: math.unit(201, "feet"),
  27709. name: "Back",
  27710. image: {
  27711. source: "./media/characters/jessica/back.svg",
  27712. extra: 273 / 259,
  27713. bottom: 7 / 280
  27714. }
  27715. },
  27716. },
  27717. [
  27718. {
  27719. name: "Normal",
  27720. height: math.unit(201, "feet"),
  27721. default: true
  27722. },
  27723. {
  27724. name: "Megamacro",
  27725. height: math.unit(8, "miles")
  27726. },
  27727. ]
  27728. ))
  27729. characterMakers.push(() => makeCharacter(
  27730. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27731. {
  27732. side: {
  27733. height: math.unit(320, "cm"),
  27734. name: "Side",
  27735. image: {
  27736. source: "./media/characters/victoria/side.svg",
  27737. extra: 778 / 346,
  27738. bottom: 56 / 834
  27739. }
  27740. },
  27741. maw: {
  27742. height: math.unit(5.9, "feet"),
  27743. name: "Maw",
  27744. image: {
  27745. source: "./media/characters/victoria/maw.svg"
  27746. }
  27747. },
  27748. },
  27749. [
  27750. {
  27751. name: "Normal",
  27752. height: math.unit(320, "cm"),
  27753. default: true
  27754. },
  27755. ]
  27756. ))
  27757. characterMakers.push(() => makeCharacter(
  27758. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27759. {
  27760. front: {
  27761. height: math.unit(5 + 6 / 12, "feet"),
  27762. name: "Front",
  27763. image: {
  27764. source: "./media/characters/cat/front.svg",
  27765. extra: 1374 / 1257,
  27766. bottom: 59 / 1433
  27767. }
  27768. },
  27769. back: {
  27770. height: math.unit(5 + 6 / 12, "feet"),
  27771. name: "Back",
  27772. image: {
  27773. source: "./media/characters/cat/back.svg",
  27774. extra: 1337 / 1226,
  27775. bottom: 34 / 1371
  27776. }
  27777. },
  27778. taur: {
  27779. height: math.unit(7, "feet"),
  27780. name: "Taur",
  27781. image: {
  27782. source: "./media/characters/cat/taur.svg",
  27783. extra: 1345 / 1231,
  27784. bottom: 66 / 1411
  27785. }
  27786. },
  27787. lucario: {
  27788. height: math.unit(4, "feet"),
  27789. name: "Lucario",
  27790. image: {
  27791. source: "./media/characters/cat/lucario.svg",
  27792. extra: 1470 / 1318,
  27793. bottom: 65 / 1535
  27794. }
  27795. },
  27796. megaLucario: {
  27797. height: math.unit(4, "feet"),
  27798. name: "Mega Lucario",
  27799. image: {
  27800. source: "./media/characters/cat/mega-lucario.svg",
  27801. extra: 1515 / 1319,
  27802. bottom: 63 / 1578
  27803. }
  27804. },
  27805. nickit: {
  27806. height: math.unit(2, "feet"),
  27807. name: "Nickit",
  27808. image: {
  27809. source: "./media/characters/cat/nickit.svg",
  27810. extra: 1980 / 1585,
  27811. bottom: 102 / 2082
  27812. }
  27813. },
  27814. lopunnyFront: {
  27815. height: math.unit(5, "feet"),
  27816. name: "Lopunny (Front)",
  27817. image: {
  27818. source: "./media/characters/cat/lopunny-front.svg",
  27819. extra: 1782 / 1469,
  27820. bottom: 38 / 1820
  27821. }
  27822. },
  27823. lopunnyBack: {
  27824. height: math.unit(5, "feet"),
  27825. name: "Lopunny (Back)",
  27826. image: {
  27827. source: "./media/characters/cat/lopunny-back.svg",
  27828. extra: 1660 / 1490,
  27829. bottom: 25 / 1685
  27830. }
  27831. },
  27832. },
  27833. [
  27834. {
  27835. name: "Really small",
  27836. height: math.unit(1, "nm")
  27837. },
  27838. {
  27839. name: "Micro",
  27840. height: math.unit(5, "inches")
  27841. },
  27842. {
  27843. name: "Normal",
  27844. height: math.unit(5 + 6 / 12, "feet"),
  27845. default: true
  27846. },
  27847. {
  27848. name: "Macro",
  27849. height: math.unit(50, "feet")
  27850. },
  27851. {
  27852. name: "Macro+",
  27853. height: math.unit(150, "feet")
  27854. },
  27855. {
  27856. name: "Megamacro",
  27857. height: math.unit(100, "miles")
  27858. },
  27859. ]
  27860. ))
  27861. characterMakers.push(() => makeCharacter(
  27862. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27863. {
  27864. front: {
  27865. height: math.unit(63.4, "meters"),
  27866. weight: math.unit(3.28349e+6, "kilograms"),
  27867. name: "Front",
  27868. image: {
  27869. source: "./media/characters/kirina-violet/front.svg",
  27870. extra: 2812/2725,
  27871. bottom: 0/2812
  27872. }
  27873. },
  27874. back: {
  27875. height: math.unit(63.4, "meters"),
  27876. weight: math.unit(3.28349e+6, "kilograms"),
  27877. name: "Back",
  27878. image: {
  27879. source: "./media/characters/kirina-violet/back.svg",
  27880. extra: 2812/2725,
  27881. bottom: 0/2812
  27882. }
  27883. },
  27884. mouth: {
  27885. height: math.unit(4.35, "meters"),
  27886. name: "Mouth",
  27887. image: {
  27888. source: "./media/characters/kirina-violet/mouth.svg"
  27889. }
  27890. },
  27891. paw: {
  27892. height: math.unit(5.6, "meters"),
  27893. name: "Paw",
  27894. image: {
  27895. source: "./media/characters/kirina-violet/paw.svg"
  27896. }
  27897. },
  27898. tail: {
  27899. height: math.unit(18, "meters"),
  27900. name: "Tail",
  27901. image: {
  27902. source: "./media/characters/kirina-violet/tail.svg"
  27903. }
  27904. },
  27905. },
  27906. [
  27907. {
  27908. name: "Macro",
  27909. height: math.unit(63.4, "meters"),
  27910. default: true
  27911. },
  27912. ]
  27913. ))
  27914. characterMakers.push(() => makeCharacter(
  27915. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  27916. {
  27917. front: {
  27918. height: math.unit(60, "feet"),
  27919. name: "Front",
  27920. image: {
  27921. source: "./media/characters/cat-gigachu/front.svg",
  27922. extra: 1024/780,
  27923. bottom: 23/1047
  27924. }
  27925. },
  27926. back: {
  27927. height: math.unit(60, "feet"),
  27928. name: "Back",
  27929. image: {
  27930. source: "./media/characters/cat-gigachu/back.svg",
  27931. extra: 1024/780,
  27932. bottom: 23/1047
  27933. }
  27934. },
  27935. },
  27936. [
  27937. {
  27938. name: "Dynamax",
  27939. height: math.unit(60, "feet"),
  27940. default: true
  27941. },
  27942. ]
  27943. ))
  27944. characterMakers.push(() => makeCharacter(
  27945. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  27946. {
  27947. front: {
  27948. height: math.unit(6, "feet"),
  27949. weight: math.unit(150, "lb"),
  27950. name: "Front",
  27951. image: {
  27952. source: "./media/characters/sfaiyan/front.svg",
  27953. extra: 999/978,
  27954. bottom: 5/1004
  27955. }
  27956. },
  27957. },
  27958. [
  27959. {
  27960. name: "Normal",
  27961. height: math.unit(1.82, "meters")
  27962. },
  27963. {
  27964. name: "Giant",
  27965. height: math.unit(2.27, "km"),
  27966. default: true
  27967. },
  27968. ]
  27969. ))
  27970. characterMakers.push(() => makeCharacter(
  27971. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  27972. {
  27973. front: {
  27974. height: math.unit(179, "cm"),
  27975. weight: math.unit(100, "kg"),
  27976. name: "Front",
  27977. image: {
  27978. source: "./media/characters/raunehkeli/front.svg",
  27979. extra: 1934/1926,
  27980. bottom: 0/1934
  27981. }
  27982. },
  27983. },
  27984. [
  27985. {
  27986. name: "Normal",
  27987. height: math.unit(179, "cm")
  27988. },
  27989. {
  27990. name: "Maximum",
  27991. height: math.unit(575, "meters"),
  27992. default: true
  27993. },
  27994. ]
  27995. ))
  27996. characterMakers.push(() => makeCharacter(
  27997. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  27998. {
  27999. front: {
  28000. height: math.unit(6, "feet"),
  28001. weight: math.unit(150, "lb"),
  28002. name: "Front",
  28003. image: {
  28004. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28005. extra: 2625/2518,
  28006. bottom: 60/2685
  28007. }
  28008. },
  28009. },
  28010. [
  28011. {
  28012. name: "Normal",
  28013. height: math.unit(6 + 2/12, "feet"),
  28014. default: true
  28015. },
  28016. {
  28017. name: "Macro",
  28018. height: math.unit(1180, "feet")
  28019. },
  28020. ]
  28021. ))
  28022. characterMakers.push(() => makeCharacter(
  28023. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28024. {
  28025. front: {
  28026. height: math.unit(5 + 6/12, "feet"),
  28027. weight: math.unit(108, "lb"),
  28028. name: "Front",
  28029. image: {
  28030. source: "./media/characters/lilith-zott/front.svg",
  28031. extra: 2510/2238,
  28032. bottom: 100/2610
  28033. }
  28034. },
  28035. frontDressed: {
  28036. height: math.unit(5 + 6/12, "feet"),
  28037. weight: math.unit(108, "lb"),
  28038. name: "Front (Dressed)",
  28039. image: {
  28040. source: "./media/characters/lilith-zott/front-dressed.svg",
  28041. extra: 2510/2238,
  28042. bottom: 100/2610
  28043. }
  28044. },
  28045. },
  28046. [
  28047. {
  28048. name: "Normal",
  28049. height: math.unit(5 + 6/12, "feet")
  28050. },
  28051. {
  28052. name: "Macro",
  28053. height: math.unit(200, "feet"),
  28054. default: true
  28055. },
  28056. {
  28057. name: "Macro+",
  28058. height: math.unit(1030, "feet")
  28059. },
  28060. ]
  28061. ))
  28062. characterMakers.push(() => makeCharacter(
  28063. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28064. {
  28065. front: {
  28066. height: math.unit(6, "feet"),
  28067. weight: math.unit(150, "lb"),
  28068. name: "Front",
  28069. image: {
  28070. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28071. extra: 2567/2435,
  28072. bottom: 39/2606
  28073. }
  28074. },
  28075. frontSuper: {
  28076. height: math.unit(6, "feet"),
  28077. name: "Front (Super)",
  28078. image: {
  28079. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28080. extra: 2567/2435,
  28081. bottom: 39/2606
  28082. }
  28083. },
  28084. },
  28085. [
  28086. {
  28087. name: "Normal",
  28088. height: math.unit(5 + 10/12, "feet")
  28089. },
  28090. {
  28091. name: "Macro",
  28092. height: math.unit(220, "feet"),
  28093. default: true
  28094. },
  28095. {
  28096. name: "Macro+",
  28097. height: math.unit(1100, "feet")
  28098. },
  28099. ]
  28100. ))
  28101. characterMakers.push(() => makeCharacter(
  28102. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28103. {
  28104. front: {
  28105. height: math.unit(100, "miles"),
  28106. name: "Front",
  28107. image: {
  28108. source: "./media/characters/sona/front.svg",
  28109. extra: 2433/2201,
  28110. bottom: 53/2486
  28111. }
  28112. },
  28113. foot: {
  28114. height: math.unit(16.1, "miles"),
  28115. name: "Foot",
  28116. image: {
  28117. source: "./media/characters/sona/foot.svg"
  28118. }
  28119. },
  28120. },
  28121. [
  28122. {
  28123. name: "Macro",
  28124. height: math.unit(100, "miles"),
  28125. default: true
  28126. },
  28127. ]
  28128. ))
  28129. characterMakers.push(() => makeCharacter(
  28130. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28131. {
  28132. front: {
  28133. height: math.unit(6, "feet"),
  28134. weight: math.unit(150, "lb"),
  28135. name: "Front",
  28136. image: {
  28137. source: "./media/characters/bailey/front.svg",
  28138. extra: 1778/1724,
  28139. bottom: 30/1808
  28140. }
  28141. },
  28142. },
  28143. [
  28144. {
  28145. name: "Micro",
  28146. height: math.unit(4, "inches")
  28147. },
  28148. {
  28149. name: "Normal",
  28150. height: math.unit(5 + 5/12, "feet"),
  28151. default: true
  28152. },
  28153. {
  28154. name: "Macro",
  28155. height: math.unit(250, "feet")
  28156. },
  28157. {
  28158. name: "Megamacro",
  28159. height: math.unit(100, "miles")
  28160. },
  28161. ]
  28162. ))
  28163. characterMakers.push(() => makeCharacter(
  28164. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28165. {
  28166. front: {
  28167. height: math.unit(5 + 2/12, "feet"),
  28168. weight: math.unit(120, "lb"),
  28169. name: "Front",
  28170. image: {
  28171. source: "./media/characters/snaps/front.svg",
  28172. extra: 2370/2177,
  28173. bottom: 48/2418
  28174. }
  28175. },
  28176. back: {
  28177. height: math.unit(5 + 2/12, "feet"),
  28178. weight: math.unit(120, "lb"),
  28179. name: "Back",
  28180. image: {
  28181. source: "./media/characters/snaps/back.svg",
  28182. extra: 2408/2258,
  28183. bottom: 15/2423
  28184. }
  28185. },
  28186. },
  28187. [
  28188. {
  28189. name: "Micro",
  28190. height: math.unit(9, "inches")
  28191. },
  28192. {
  28193. name: "Normal",
  28194. height: math.unit(5 + 2/12, "feet"),
  28195. default: true
  28196. },
  28197. {
  28198. name: "Mini Macro",
  28199. height: math.unit(10, "feet")
  28200. },
  28201. ]
  28202. ))
  28203. characterMakers.push(() => makeCharacter(
  28204. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28205. {
  28206. front: {
  28207. height: math.unit(1.8, "meters"),
  28208. weight: math.unit(85, "kg"),
  28209. name: "Front",
  28210. image: {
  28211. source: "./media/characters/azteck/front.svg",
  28212. extra: 2815/2625,
  28213. bottom: 89/2904
  28214. }
  28215. },
  28216. back: {
  28217. height: math.unit(1.8, "meters"),
  28218. weight: math.unit(85, "kg"),
  28219. name: "Back",
  28220. image: {
  28221. source: "./media/characters/azteck/back.svg",
  28222. extra: 2856/2648,
  28223. bottom: 85/2941
  28224. }
  28225. },
  28226. frontDressed: {
  28227. height: math.unit(1.8, "meters"),
  28228. weight: math.unit(85, "kg"),
  28229. name: "Front (Dressed)",
  28230. image: {
  28231. source: "./media/characters/azteck/front-dressed.svg",
  28232. extra: 2147/2003,
  28233. bottom: 68/2215
  28234. }
  28235. },
  28236. head: {
  28237. height: math.unit(0.47, "meters"),
  28238. weight: math.unit(85, "kg"),
  28239. name: "Head",
  28240. image: {
  28241. source: "./media/characters/azteck/head.svg"
  28242. }
  28243. },
  28244. },
  28245. [
  28246. {
  28247. name: "Bite sized",
  28248. height: math.unit(16, "cm")
  28249. },
  28250. {
  28251. name: "Normal",
  28252. height: math.unit(1.8, "meters"),
  28253. default: true
  28254. },
  28255. ]
  28256. ))
  28257. characterMakers.push(() => makeCharacter(
  28258. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28259. {
  28260. front: {
  28261. height: math.unit(6, "feet"),
  28262. weight: math.unit(150, "lb"),
  28263. name: "Front",
  28264. image: {
  28265. source: "./media/characters/pidge/front.svg",
  28266. extra: 620/588,
  28267. bottom: 9/629
  28268. }
  28269. },
  28270. back: {
  28271. height: math.unit(6, "feet"),
  28272. weight: math.unit(150, "lb"),
  28273. name: "Back",
  28274. image: {
  28275. source: "./media/characters/pidge/back.svg",
  28276. extra: 620/588,
  28277. bottom: 9/629
  28278. }
  28279. },
  28280. },
  28281. [
  28282. {
  28283. name: "Macro",
  28284. height: math.unit(1, "mile"),
  28285. default: true
  28286. },
  28287. ]
  28288. ))
  28289. characterMakers.push(() => makeCharacter(
  28290. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28291. {
  28292. front: {
  28293. height: math.unit(6, "feet"),
  28294. weight: math.unit(150, "lb"),
  28295. name: "Front",
  28296. image: {
  28297. source: "./media/characters/en/front.svg",
  28298. extra: 1697/1563,
  28299. bottom: 103/1800
  28300. }
  28301. },
  28302. back: {
  28303. height: math.unit(6, "feet"),
  28304. weight: math.unit(150, "lb"),
  28305. name: "Back",
  28306. image: {
  28307. source: "./media/characters/en/back.svg",
  28308. extra: 1700/1570,
  28309. bottom: 51/1751
  28310. }
  28311. },
  28312. frontDressed: {
  28313. height: math.unit(6, "feet"),
  28314. weight: math.unit(150, "lb"),
  28315. name: "Front (Dressed)",
  28316. image: {
  28317. source: "./media/characters/en/front-dressed.svg",
  28318. extra: 1697/1563,
  28319. bottom: 103/1800
  28320. }
  28321. },
  28322. backDressed: {
  28323. height: math.unit(6, "feet"),
  28324. weight: math.unit(150, "lb"),
  28325. name: "Back (Dressed)",
  28326. image: {
  28327. source: "./media/characters/en/back-dressed.svg",
  28328. extra: 1700/1570,
  28329. bottom: 51/1751
  28330. }
  28331. },
  28332. },
  28333. [
  28334. {
  28335. name: "Macro",
  28336. height: math.unit(210, "feet"),
  28337. default: true
  28338. },
  28339. ]
  28340. ))
  28341. characterMakers.push(() => makeCharacter(
  28342. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28343. {
  28344. front: {
  28345. height: math.unit(6, "feet"),
  28346. weight: math.unit(150, "lb"),
  28347. name: "Front",
  28348. image: {
  28349. source: "./media/characters/haze-orris/front.svg",
  28350. extra: 3975/3525,
  28351. bottom: 137/4112
  28352. }
  28353. },
  28354. },
  28355. [
  28356. {
  28357. name: "Micro",
  28358. height: math.unit(150, "mm"),
  28359. default: true
  28360. },
  28361. ]
  28362. ))
  28363. characterMakers.push(() => makeCharacter(
  28364. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28365. {
  28366. front: {
  28367. height: math.unit(6, "feet"),
  28368. weight: math.unit(150, "lb"),
  28369. name: "Front",
  28370. image: {
  28371. source: "./media/characters/casselene-yaro/front.svg",
  28372. extra: 4721/4541,
  28373. bottom: 82/4803
  28374. }
  28375. },
  28376. back: {
  28377. height: math.unit(6, "feet"),
  28378. weight: math.unit(150, "lb"),
  28379. name: "Back",
  28380. image: {
  28381. source: "./media/characters/casselene-yaro/back.svg",
  28382. extra: 4569/4377,
  28383. bottom: 69/4638
  28384. }
  28385. },
  28386. frontDressed: {
  28387. height: math.unit(6, "feet"),
  28388. weight: math.unit(150, "lb"),
  28389. name: "Front-dressed",
  28390. image: {
  28391. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28392. extra: 4721/4541,
  28393. bottom: 82/4803
  28394. }
  28395. },
  28396. },
  28397. [
  28398. {
  28399. name: "Macro",
  28400. height: math.unit(190, "feet")
  28401. },
  28402. ]
  28403. ))
  28404. characterMakers.push(() => makeCharacter(
  28405. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28406. {
  28407. front: {
  28408. height: math.unit(6, "feet"),
  28409. weight: math.unit(150, "lb"),
  28410. name: "Front",
  28411. image: {
  28412. source: "./media/characters/myra-rue-delore/front.svg",
  28413. extra: 1340/1308,
  28414. bottom: 67/1407
  28415. }
  28416. },
  28417. back: {
  28418. height: math.unit(6, "feet"),
  28419. weight: math.unit(150, "lb"),
  28420. name: "Back",
  28421. image: {
  28422. source: "./media/characters/myra-rue-delore/back.svg",
  28423. extra: 1341/1310,
  28424. bottom: 40/1381
  28425. }
  28426. },
  28427. frontDressed: {
  28428. height: math.unit(6, "feet"),
  28429. weight: math.unit(150, "lb"),
  28430. name: "Front (Dressed)",
  28431. image: {
  28432. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28433. extra: 1340/1308,
  28434. bottom: 67/1407
  28435. }
  28436. },
  28437. },
  28438. [
  28439. {
  28440. name: "Macro",
  28441. height: math.unit(150, "feet")
  28442. },
  28443. ]
  28444. ))
  28445. characterMakers.push(() => makeCharacter(
  28446. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28447. {
  28448. front: {
  28449. height: math.unit(10, "feet"),
  28450. weight: math.unit(15015, "lb"),
  28451. name: "Front",
  28452. image: {
  28453. source: "./media/characters/fem!plat/front.svg",
  28454. extra: 2799/2604,
  28455. bottom: 149/2948
  28456. }
  28457. },
  28458. },
  28459. [
  28460. {
  28461. name: "Normal",
  28462. height: math.unit(10, "feet"),
  28463. default: true
  28464. },
  28465. {
  28466. name: "Macro",
  28467. height: math.unit(100, "feet")
  28468. },
  28469. {
  28470. name: "Megamacro",
  28471. height: math.unit(1000, "feet")
  28472. },
  28473. ]
  28474. ))
  28475. characterMakers.push(() => makeCharacter(
  28476. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28477. {
  28478. front: {
  28479. height: math.unit(15 + 5/12, "feet"),
  28480. weight: math.unit(4600, "lb"),
  28481. name: "Front",
  28482. image: {
  28483. source: "./media/characters/neapolitan-ananassa/front.svg",
  28484. extra: 2903/2736,
  28485. bottom: 0/2903
  28486. }
  28487. },
  28488. side: {
  28489. height: math.unit(15 + 5/12, "feet"),
  28490. weight: math.unit(4600, "lb"),
  28491. name: "Side",
  28492. image: {
  28493. source: "./media/characters/neapolitan-ananassa/side.svg",
  28494. extra: 2925/2719,
  28495. bottom: 0/2925
  28496. }
  28497. },
  28498. back: {
  28499. height: math.unit(15 + 5/12, "feet"),
  28500. weight: math.unit(4600, "lb"),
  28501. name: "Back",
  28502. image: {
  28503. source: "./media/characters/neapolitan-ananassa/back.svg",
  28504. extra: 2903/2736,
  28505. bottom: 0/2903
  28506. }
  28507. },
  28508. },
  28509. [
  28510. {
  28511. name: "Normal",
  28512. height: math.unit(15 + 5/12, "feet"),
  28513. default: true
  28514. },
  28515. {
  28516. name: "Post-Millenium",
  28517. height: math.unit(35 + 5/12, "feet")
  28518. },
  28519. {
  28520. name: "Post-Era",
  28521. height: math.unit(450 + 5/12, "feet")
  28522. },
  28523. ]
  28524. ))
  28525. characterMakers.push(() => makeCharacter(
  28526. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28527. {
  28528. front: {
  28529. height: math.unit(300, "meters"),
  28530. weight: math.unit(125000, "tonnes"),
  28531. name: "Front",
  28532. image: {
  28533. source: "./media/characters/pazuzu/front.svg",
  28534. extra: 877/794,
  28535. bottom: 47/924
  28536. }
  28537. },
  28538. },
  28539. [
  28540. {
  28541. name: "Macro",
  28542. height: math.unit(300, "meters"),
  28543. default: true
  28544. },
  28545. ]
  28546. ))
  28547. characterMakers.push(() => makeCharacter(
  28548. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28549. {
  28550. side: {
  28551. height: math.unit(10 + 7/12, "feet"),
  28552. weight: math.unit(2.5, "tons"),
  28553. name: "Side",
  28554. image: {
  28555. source: "./media/characters/aasha/side.svg",
  28556. extra: 1345/1245,
  28557. bottom: 111/1456
  28558. }
  28559. },
  28560. back: {
  28561. height: math.unit(10 + 7/12, "feet"),
  28562. weight: math.unit(2.5, "tons"),
  28563. name: "Back",
  28564. image: {
  28565. source: "./media/characters/aasha/back.svg",
  28566. extra: 1133/1057,
  28567. bottom: 257/1390
  28568. }
  28569. },
  28570. },
  28571. [
  28572. {
  28573. name: "Normal",
  28574. height: math.unit(10 + 7/12, "feet"),
  28575. default: true
  28576. },
  28577. ]
  28578. ))
  28579. characterMakers.push(() => makeCharacter(
  28580. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28581. {
  28582. front: {
  28583. height: math.unit(6 + 3/12, "feet"),
  28584. name: "Front",
  28585. image: {
  28586. source: "./media/characters/nevan/front.svg",
  28587. extra: 704/704,
  28588. bottom: 28/732
  28589. }
  28590. },
  28591. back: {
  28592. height: math.unit(6 + 3/12, "feet"),
  28593. name: "Back",
  28594. image: {
  28595. source: "./media/characters/nevan/back.svg",
  28596. extra: 714/714,
  28597. bottom: 21/735
  28598. }
  28599. },
  28600. frontFlaccid: {
  28601. height: math.unit(6 + 3/12, "feet"),
  28602. name: "Front (Flaccid)",
  28603. image: {
  28604. source: "./media/characters/nevan/front-flaccid.svg",
  28605. extra: 704/704,
  28606. bottom: 28/732
  28607. }
  28608. },
  28609. frontErect: {
  28610. height: math.unit(6 + 3/12, "feet"),
  28611. name: "Front (Erect)",
  28612. image: {
  28613. source: "./media/characters/nevan/front-erect.svg",
  28614. extra: 704/704,
  28615. bottom: 28/732
  28616. }
  28617. },
  28618. backFlaccid: {
  28619. height: math.unit(6 + 3/12, "feet"),
  28620. name: "Back (Flaccid)",
  28621. image: {
  28622. source: "./media/characters/nevan/back-flaccid.svg",
  28623. extra: 714/714,
  28624. bottom: 21/735
  28625. }
  28626. },
  28627. },
  28628. [
  28629. {
  28630. name: "Normal",
  28631. height: math.unit(6 + 3/12, "feet"),
  28632. default: true
  28633. },
  28634. ]
  28635. ))
  28636. characterMakers.push(() => makeCharacter(
  28637. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28638. {
  28639. front: {
  28640. height: math.unit(4, "feet"),
  28641. name: "Front",
  28642. image: {
  28643. source: "./media/characters/arhan/front.svg",
  28644. extra: 3368/3133,
  28645. bottom: 0/3368
  28646. }
  28647. },
  28648. side: {
  28649. height: math.unit(4, "feet"),
  28650. name: "Side",
  28651. image: {
  28652. source: "./media/characters/arhan/side.svg",
  28653. extra: 3347/3105,
  28654. bottom: 0/3347
  28655. }
  28656. },
  28657. tongue: {
  28658. height: math.unit(1.42, "feet"),
  28659. name: "Tongue",
  28660. image: {
  28661. source: "./media/characters/arhan/tongue.svg"
  28662. }
  28663. },
  28664. head: {
  28665. height: math.unit(0.85, "feet"),
  28666. name: "Head",
  28667. image: {
  28668. source: "./media/characters/arhan/head.svg"
  28669. }
  28670. },
  28671. },
  28672. [
  28673. {
  28674. name: "Normal",
  28675. height: math.unit(4, "feet"),
  28676. default: true
  28677. },
  28678. ]
  28679. ))
  28680. characterMakers.push(() => makeCharacter(
  28681. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28682. {
  28683. front: {
  28684. height: math.unit(5 + 7.5/12, "feet"),
  28685. weight: math.unit(120, "lb"),
  28686. name: "Front",
  28687. image: {
  28688. source: "./media/characters/digi-duncan/front.svg",
  28689. extra: 330/326,
  28690. bottom: 16/346
  28691. }
  28692. },
  28693. side: {
  28694. height: math.unit(5 + 7.5/12, "feet"),
  28695. weight: math.unit(120, "lb"),
  28696. name: "Side",
  28697. image: {
  28698. source: "./media/characters/digi-duncan/side.svg",
  28699. extra: 341/337,
  28700. bottom: 1/342
  28701. }
  28702. },
  28703. back: {
  28704. height: math.unit(5 + 7.5/12, "feet"),
  28705. weight: math.unit(120, "lb"),
  28706. name: "Back",
  28707. image: {
  28708. source: "./media/characters/digi-duncan/back.svg",
  28709. extra: 330/326,
  28710. bottom: 12/342
  28711. }
  28712. },
  28713. },
  28714. [
  28715. {
  28716. name: "Speck",
  28717. height: math.unit(0.25, "mm")
  28718. },
  28719. {
  28720. name: "Micro",
  28721. height: math.unit(5, "mm")
  28722. },
  28723. {
  28724. name: "Tiny",
  28725. height: math.unit(0.5, "inches"),
  28726. default: true
  28727. },
  28728. {
  28729. name: "Human",
  28730. height: math.unit(5 + 7.5/12, "feet")
  28731. },
  28732. {
  28733. name: "Minigiant",
  28734. height: math.unit(8 + 5.25, "feet")
  28735. },
  28736. {
  28737. name: "Giant",
  28738. height: math.unit(2000, "feet")
  28739. },
  28740. {
  28741. name: "Mega",
  28742. height: math.unit(371.1, "miles")
  28743. },
  28744. ]
  28745. ))
  28746. characterMakers.push(() => makeCharacter(
  28747. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28748. {
  28749. front: {
  28750. height: math.unit(2, "meters"),
  28751. weight: math.unit(350, "kg"),
  28752. name: "Front",
  28753. image: {
  28754. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28755. extra: 898/838,
  28756. bottom: 9/907
  28757. }
  28758. },
  28759. },
  28760. [
  28761. {
  28762. name: "Micro",
  28763. height: math.unit(8, "meters")
  28764. },
  28765. {
  28766. name: "Normal",
  28767. height: math.unit(50, "meters"),
  28768. default: true
  28769. },
  28770. {
  28771. name: "Macro",
  28772. height: math.unit(500, "meters")
  28773. },
  28774. ]
  28775. ))
  28776. characterMakers.push(() => makeCharacter(
  28777. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28778. {
  28779. front: {
  28780. height: math.unit(6 + 6/12, "feet"),
  28781. name: "Front",
  28782. image: {
  28783. source: "./media/characters/khardesh/front.svg",
  28784. extra: 888/797,
  28785. bottom: 25/913
  28786. }
  28787. },
  28788. },
  28789. [
  28790. {
  28791. name: "Normal",
  28792. height: math.unit(6 + 6/12, "feet"),
  28793. default: true
  28794. },
  28795. {
  28796. name: "Normal+",
  28797. height: math.unit(4, "meters")
  28798. },
  28799. {
  28800. name: "Macro",
  28801. height: math.unit(50, "meters")
  28802. },
  28803. {
  28804. name: "Macro+",
  28805. height: math.unit(100, "meters")
  28806. },
  28807. {
  28808. name: "Megamacro",
  28809. height: math.unit(20, "km")
  28810. },
  28811. ]
  28812. ))
  28813. characterMakers.push(() => makeCharacter(
  28814. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28815. {
  28816. front: {
  28817. height: math.unit(6, "feet"),
  28818. weight: math.unit(150, "lb"),
  28819. name: "Front",
  28820. image: {
  28821. source: "./media/characters/kosho/front.svg",
  28822. extra: 1847/1847,
  28823. bottom: 86/1933
  28824. }
  28825. },
  28826. },
  28827. [
  28828. {
  28829. name: "Second-stage micro",
  28830. height: math.unit(0.5, "inches")
  28831. },
  28832. {
  28833. name: "First-stage micro",
  28834. height: math.unit(6, "inches")
  28835. },
  28836. {
  28837. name: "Normal",
  28838. height: math.unit(6, "feet"),
  28839. default: true
  28840. },
  28841. {
  28842. name: "First-stage macro",
  28843. height: math.unit(72, "feet")
  28844. },
  28845. {
  28846. name: "Second-stage macro",
  28847. height: math.unit(864, "feet")
  28848. },
  28849. ]
  28850. ))
  28851. characterMakers.push(() => makeCharacter(
  28852. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  28853. {
  28854. normal: {
  28855. height: math.unit(4 + 6/12, "feet"),
  28856. name: "Normal",
  28857. image: {
  28858. source: "./media/characters/hydra/normal.svg",
  28859. extra: 2833/2634,
  28860. bottom: 68/2901
  28861. }
  28862. },
  28863. smol: {
  28864. height: math.unit(0.705, "inches"),
  28865. name: "Smol",
  28866. image: {
  28867. source: "./media/characters/hydra/smol.svg",
  28868. extra: 2715/2540,
  28869. bottom: 0/2715
  28870. }
  28871. },
  28872. },
  28873. [
  28874. {
  28875. name: "Normal",
  28876. height: math.unit(4 + 6/12, "feet"),
  28877. default: true
  28878. }
  28879. ]
  28880. ))
  28881. characterMakers.push(() => makeCharacter(
  28882. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  28883. {
  28884. front: {
  28885. height: math.unit(0.6, "cm"),
  28886. name: "Front",
  28887. image: {
  28888. source: "./media/characters/daz/front.svg",
  28889. extra: 1682/1164,
  28890. bottom: 42/1724
  28891. }
  28892. },
  28893. },
  28894. [
  28895. {
  28896. name: "Normal",
  28897. height: math.unit(0.6, "cm"),
  28898. default: true
  28899. },
  28900. ]
  28901. ))
  28902. //characters
  28903. function makeCharacters() {
  28904. const results = [];
  28905. characterMakers.forEach(character => {
  28906. results.push(character());
  28907. });
  28908. return results;
  28909. }